*{
    margin: 0px;
    padding: 0px;
    font-family: Open Sans, sans-serif;
}

/* Loading CSS Animation */
.loader {
    position: fixed;
    z-index: 99;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader.hidden {
   display: none;
}

.lds-ring {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
  }
  .lds-ring div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 64px;
    height: 64px;
    margin: 8px;
    border: 8px solid #fff;
    border-radius: 50%;
    animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: #fff transparent transparent transparent;
  }
  .lds-ring div:nth-child(1) {
    animation-delay: -0.45s;
  }
  .lds-ring div:nth-child(2) {
    animation-delay: -0.3s;
  }
  .lds-ring div:nth-child(3) {
    animation-delay: -0.15s;
  }
  @keyframes lds-ring {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }

@keyframes fadeOut {
    75% {
        opacity: 0;
        visibility: hidden;
    }
    100% {
        opacity: 1;
        visibility: hidden;
    }
}
 /* Loading CSS End Here  */

.main{
    margin-top: 4%;
}
.img-left{
    background-image: url("ims1.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #90E0EF;
}
    @media screen and (max-width:767px){
        .img-left{
        background-position: top center;
        min-height: 600px;
    }
}
.heading{
    font-weight: bold;
    font-size: 24px;
    line-height: 28px;
    text-align: center;
    color: #023E8A;
}
.typography{
    font-size: 17px;
    line-height: 25px;
    text-align: justify;
    color: #0077B6;
}
.top-header{
    font-size: 18px;
    line-height: 21px;
    color: #023E8A;
}
.privacy{
    color: #023E8A;
    font-size: 17px;
    font-weight: bold;
}
.lead{
    line-height: 30px;
    margin: 5px 0px 5px 0px;
    font-weight: bold !important;
    color: #023E8A;
}
.small-text{
    font-size: 15px !important;
    line-height: 15px !important;
}
.btn1,.btn2{
    color: white !important;
    border: 2px solid #00B4D8 !important;
    box-sizing: border-box !important;
    border-radius: 35px !important;
    line-height: 30px !important;
}
.btn1{
    background: #00B4D8 !important;   
}
.btn2{
    background: #023E8A !important;
} 
.btn1:hover{
    background-color: #0096C7 !important;
}
.btn2:hover{
    background-color: #03045E !important;
}
.guest-btn,
.next-btn{
    box-sizing: border-box !important;
    border-radius: 35px !important;
    outline: none !important;
    font-size: 15px !important;
    line-height: 20px !important;
}
.guest-btn{
    background: #FFFFFF !important;
    color: #023E8A !important;
    border: 2px solid #023E8A !important;
}
.next-btn{
    background: #023E8A !important;
    color: #FFFFFF !important;
    border: 2px solid #00B4D8 !important;
}
.guest-btn:hover{
    background: #0062E6 !important;
    color: #FFFFFF !important;
}
.next-btn:hover{
    background: #FFFFFF !important;
    color: #023E8A !important;
}
.form-check-label, .reference{
    color: #00B4D8;
}
.input-data{
    font-size: 17px;
    line-height: 20px;
    position: relative;
}
.input,.email{
    /* color:#0096C7; */
    padding: 0px 0px 5px;
    outline: none;
    border: none;
    border-bottom: 1px solid #023E8A;
}
.country-label{
    color: #00abce;
}
/* Intel Input */
#phone{
    /* color: #00abce; */
    outline: none;
    border: none;
    width: 100%;
    border-bottom: 1px solid #023E8A;
}
.iti, .iti--allow-dropdown{
    width: 100%;  
}
.iti__selected-flag{
    height: 20px !important;
    position: absolute !important;
}

/* input Errors */
label.error {
    color: red;
    font-size: 13px;
}
input.error, select.error, textarea.error {
    border-bottom: 1px solid red!important;
}
/* Label focus Animation  */
.label-animation{
    position: absolute;
    top: 0px;
    left: 0;
    color: #00abce;
    pointer-events: none;
    transition: all 0.2s ease;
    z-index: 1;
}
.input:focus ~ .label-animation,
.input:valid ~ .label-animation,
.email:focus ~ .label-animation,
.email:valid ~ .label-animation,
.email:not(:placeholder-shown) ~ .label-animation{
    transform: translateY(-20px);
    /* color: #023E8A; */
    color: #00abce;
}
.eye{
	position: absolute;
	top: -1%;
	right: 25px;
}
.fa-eye-slash , .eye a{
    font-size: 13px;
    color: #023E8A;
}
::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color:#0096C7;
    opacity: 1;
}
:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color:#0096C7;
}
::-ms-input-placeholder { /* Microsoft Edge */
    color:#0096C7;
}