/*Index page and Registration page CSS*/
/*Index page CSS*/
/*BackGround Image*/
html, body {
  margin: 0; padding: 0;
  height: auto;
}

#bg {
    -moz-transform: scale(1.0);
    -webkit-transform: scale(1.0);
    -ms-transform: scale(1.0);
    transform: scale(1.0);
    -webkit-backface-visibility: hidden;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 1;
  }
  
    #bg:before, #bg:after {
      content: '';
      display: block;
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  
    #bg:before {
      -moz-transition: background-color 2.5s ease-in-out;
      -webkit-transition: background-color 2.5s ease-in-out;
      -ms-transition: background-color 2.5s ease-in-out;
      transition: background-color 2.5s ease-in-out;
      -moz-transition-delay: 0.75s;
      -webkit-transition-delay: 0.75s;
      -ms-transition-delay: 0.75s;
      transition-delay: 0.75s;
      background-image: linear-gradient(to top, rgba(19, 21, 25, 0.5), rgba(19, 21, 25, 0.5)), url("../images/overlay.png");
      background-size: auto, 256px 256px;
      background-position: center, center;
      background-repeat: no-repeat, repeat;
      z-index: 2;
    }
  
    #bg:after {
      -moz-transform: scale(1.125);
      -webkit-transform: scale(1.125);
      -ms-transform: scale(1.125);
      transform: scale(1.125);
      -moz-transition: -moz-transform 0.325s ease-in-out, -moz-filter 0.325s ease-in-out;
      -webkit-transition: -webkit-transform 0.325s ease-in-out, -webkit-filter 0.325s ease-in-out;
      -ms-transition: -ms-transform 0.325s ease-in-out, -ms-filter 0.325s ease-in-out;
      transition: transform 0.325s ease-in-out, filter 0.325s ease-in-out;
      background-image: url("../images/1.jpg");
      background-position: center;
      background-size: cover;
      background-repeat: no-repeat;
      z-index: 1;
    }
  
.form{
    width: 100%;
    position: relative;
    margin: 25px auto;    
}
.input{
    width: 100%;
    height: 50px;
    position: relative;
    margin: 15px auto;
}

/* Icons for username and password */
.fa{
    position: absolute;
    right: 15px;
    top: 12px;
    font-size: 22px;
    color: gray;
}

/*Focus for username and password */
input[type="text"]:focus,
input[type="password"]:focus{
    border:2px solid #0AC986;
}

/* .success{
    border:2px solid #0AC986;
} */

/* Shake effect */
.error{
    position: relative;
    animation: shake 0.2s;
    color: red;
}
@keyframes shake{
    0%, 100%{
        left: 0px;
    }
    20%, 80%{
        left: -15px;
    }
    40%, 60%{
        left: 15px;
    }
}
/*Modal Heading h3 adjustments*/
.white{
    color: white;
}
/*Modal size adjustments*/
.modal {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.modal-backdrop {
    background-color: rgba(0,0,0,.0001) !important;
}

/* aboutUs Image banner */
.image-content{
    max-width: 800px;
}

/*for FAQs*/
.item{
	padding-bottom: 20px;
	margin-bottom: 20px;
	border-bottom: 0px dashed #dedede;
}
.itemtitle{
	padding: 5px 0px 5px;	
	color: #000000;
	font-size: 16px;
}

.itemtype{
	padding: 0;
	color: rgb(70, 70, 70);
}

/*ContactUs form*/
.contact-form{ margin-top:15px;}
.contact-form .textarea{ min-height:220px; resize:none;}
.main-btn{ background:#6e6a6ab6; border-color:#000000; color:rgb(0, 0, 0);}
.main-btn:hover{ background:#6c757d;color:rgb(0, 0, 0);}
.form-control-feedback {
line-height: 50px;
top: 0px;
}
#contactName{
    display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
#contactName:focus{
    color: #495057;
    background-color: #fff;
    border-color: #80bdff;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.major{
    width: -moz-max-content;
    width: -webkit-max-content;
    width: -ms-max-content;
    width: max-content;
    letter-spacing: 3px;
}
.success{
    color: green;
    text-align: center;
    font-weight: bold;
    font-size: 14px;
}

/*Make PlaceHolder Text ITALICS*/
::-webkit-input-placeholder {
    font-style: italic;
 }
 :-moz-placeholder {
    font-style: italic;  
 }
 ::-moz-placeholder {
    font-style: italic;  
 }
 :-ms-input-placeholder {  
    font-style: italic; 
 }

/*Fixing contact icons*/
ul.icons {
    cursor: default;
    list-style: none;
    padding-left: 1rem;
}
ul.icons li {
    display: inline-block;
    padding: 0 0.75em 0 0;
}
ul.icons li:last-child {
    padding-right: 0;
}
ul.icons li a {
    border-radius: 100%;
    box-shadow: inset 0 0 0 1px #000000;
    display: inline-block;
    height: 2.25rem;
    line-height: 2.25rem;
    text-align: center;
    width: 2.25rem;
}
ul.icons li a:hover {
    background-color: #6c757d;
}
ul.icons li a:active {
    background-color: rgba(255, 255, 255, 0.175);
}
.icon {
    text-decoration: none;
    border-bottom: none;
    position: relative;
}
.icon:before {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-transform: none !important;
}
.icon > .label {
    display: none;
}  

/* For Quick Links Tiles*/
@import url('https://fonts.googleapis.com/css?family=Pacifico');
.xop-section {
	max-width: 960px;
	margin: 0 auto;
	padding: 6% 2%;
}
 
.xop-grid {
	margin: 20px 0 0 0;
	padding: 0;
	list-style: none;
	display: block;
	text-align: center;
	width: 100%;
}
 
.xop-grid:after {
	clear: both;
}
 
.xop-grid:after, .xop-box:before {
	content: '';
	display: table;
}
 
.xop-grid li {
	width: 150px;
	height: 150px;
	display: inline-block;
	margin: 20px;
}
 
.xop-box {
	width: 100%;
	height: 100%;
	position: relative;
	cursor: pointer;
    border-radius: 10px;
    -webkit-transition: 0.3s ease-in-out, 
    -webkit-transform 0.3s ease-in-out;
	-moz-transition:  0.3s ease-in-out, 
    -moz-transform 0.3s ease-in-out;
    transition: all 0.3s ease-in-out, 
    transform 0.3s ease-in-out, ;
}
 
.xop-box:hover {
    transform: scale(1.05); 
    background:#6c757d;color:rgb(0, 0, 0);
}
.xop-img-1 {
	background: linear-gradient( #6c757d, rgba(0, 0, 0, 0.10)), /* bottom, image */
	url(/images/2.jpg);
}
 
.xop-img-2 {
	background: linear-gradient( rgba(0, 0, 0, 0.50), rgba(0, 0, 0, 0.10)), /* bottom, image */
	url(images/2.jpg);
}
 
.xop-img-3 {
	background: linear-gradient( rgba(0, 0, 0, 0.50), rgba(0, 0, 0, 0.10)), /* bottom, image */
	url(images/2.jpg);
}
 
.xop-img-4 {
	background: linear-gradient( rgba(0, 0, 0, 0.50), rgba(0, 0, 0, 0.10)), /* bottom, image */
	url(images/2.jpg);
}
 
.xop-info {
	position: absolute;
	width: inherit;
	height: inherit;
}
 
.xop-info h3 {
	font-family: Arial, sans-serif;
	font-weight: 250;
	color: #fff;
	text-align: center;
	font-size: 20px;
	/* margin: 0 35px; */
	padding: 15px 0 0 0;
	line-height: 1.5;
}
 
.xop-info p {
	font-family: Arial, sans-serif;
	color: rgb(0, 0, 0);
	padding: 4px 5px;
	margin: 0 30px;
	font-size: 14px;
	line-height: 2;
}

/*Captcha setting*/
#loginform input.captcha {
	/* display: inline; */
	width: 120px;
    text-align: center;
    color: black;
}
.col1 {
    /* background-color: #ddf; */
    width: 20%;
    /* float: left; */
}
.input-container {
    background: url("../images/7.jpg");
    background-repeat:no-repeat;
    width:20px;
    height:45px;
}
#loginform div.relative{
    position: relative;
    /* left: 80px; */
    /* padding-top: 5px; */
    /* width: 120px; */
}
#loginform div.relativecaptcha{
    position: relative;
    /* left: 40px; */
    /* padding-top: 3px; */
    width: 90px;
    height: 40px;
}
#loginform div.reload{
    position: relative;
    left: 0px;
    padding-top: 10px;
}
.row {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-right: -15px;
	margin-left: -15px;
}
.pointer {
    cursor: pointer;
}
/* Forgot Username Page*/
.padding{
    padding-left: 1rem;
    color:red;
}

/* --------------------- PRASAD's WORK REGISTRATION PAGE------------------- */
@media(max-width: 992px){
}
@media(max-width: 768px){
}
@media(max-width: 576px){
}

html, body {
  margin: 0; padding: 0px;
}
/*Disable Spinner on INPUT TYPE=NUMBER*/
input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button { 
  -webkit-appearance: none; 
  margin: 0; 
}

#ImageBackground img {
  position:absolute;
  left:0;
  -webkit-transition: opacity 1s ease-in-out;
  -moz-transition: opacity 1s ease-in-out;
  -o-transition: opacity 1s ease-in-out;
  transition: opacity 1s ease-in-out;
}

#ImageBackground img.top {
animation-name: cf3FadeInOut;
animation-timing-function: ease-in-out;
animation-iteration-count: infinite;
animation-duration: 10s;
animation-direction: alternate;
}

 @keyframes cf3FadeInOut {
     0% {
         opacity:1;
        }
        45% {
            opacity:1;
        }
        55% {
            opacity:0.3;
        }
        100% {
            opacity:0;
        }
    }


/*Turn Opacity of Card in Registration page low*/
.card-body{
  	background-color: rgba(245, 245, 245, 1);
    opacity: 1;
}

.modal-backdrop {
     background-color: rgba(0,0,0,.0001) !important;
}
.modal-lg {
    max-width: 50% !important;
}

/*********************************************************************************************************************
*****************************************************BEGIN REGISTRATION PAGE******************************************
*********************************************************************************************************************/
.loader {
  border: 16px solid #f3f3f3;
  border-radius: 50%;
  border-top: 16px solid #3498db;
  width: 120px;
  height: 120px;
  -webkit-animation: spin 2s linear infinite; /* Safari */
  animation: spin 2s linear infinite;
}

/* Safari */
@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/*Password Info
*/
.PasswordHelp{
  display: none;
}
.invalid {
    background:url(../images/cross.svg) no-repeat 0 50%;
    padding-left:22px;
    line-height:24px;
    color:#ec3f41;
}
.valid {
    background:url(../images/check.svg) no-repeat 0 50%;
    padding-left:22px;
    line-height:24px;
    color:#3a7d34;
}
.help{
  display: none;
}
#myModal{
  padding-top: 40px;
}