@font-face {
    font-family: Poppins;
    src: url(../font/Poppins/Poppins-Light.ttf);
}

body {
    font-family: Poppins;
}

a {
    text-decoration: none;
    color: inherit;
}

a:hover {
    text-decoration: none;
    color: inherit;
}

.div__banner{
    position: relative;
    min-height: 220px;
}

.div__banner > .banner-background {
    position: absolute;
    background-image: url(../images/banner.png);
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100%;
}

.div__banner .overlay__banner {
    position: absolute;
    background: #00466A 0% 0% no-repeat padding-box;
    mix-blend-mode: hard-light;
    top: 0px;
    right: 0px;
    height: 100%;
    z-index: 999;
}

.div__banner .overlay__banner div > [class^='banner-'] {
    position: relative;
    color: #fff;
    text-shadow: 0px 3px 6px #00000029;
}

.__content {
    position: relative;
    background: #F9FAFC 0% 0% no-repeat padding-box !important;
}

.__content .div__content_bg {
    padding-right: 0px !important;
}

.__content .content-img {
    width: 100%;
}

.div__form {
    padding-left: 0px !important;
}

.div__form > form{
    line-height: 0px;
}  

.div__form .form-header {
    display: flex;
    align-items: center;
}

.div__form .form-img-logo {
    max-width: 40%;
}

.div__form .logo-Bupa, .div__form .logo-axa{
    max-width: 20% !important;
}

.div__form .form-title {
    font-size: 18px;
    font-weight: bold;
}

.div__form > form .form-group{
    position: relative;
}

.div__form form .form-group label {
    position: absolute;
    top: 0;
    left: 0;
    padding: 23px 20px;
    font-size: 16px;
    color: #252525;
    pointer-events: none;
    transition: .5s;
    display: inline-block;
    margin-bottom: 0.5rem;
    width: 100%;
}

.div__form .form-checkbox:focus, .div__form .form-checkbox {
    font-size: 11px;
    padding: 10px;
    border-radius: 5px;
}

.div__form .form-checkbox:focus, .div__form .form-checkbox input {
    margin: 0px 5px;
    vertical-align: bottom;
    position: relative;
    top: -6px;
    overflow: hidden;
}

.div__form .form-checkbox.active {
    background: #1D91D0 0% 0% no-repeat padding-box;
    border: 1px solid #8DD7FF;
    color: #fff;
    transition: .5s;
}

.div__form form .form-checkbox label {
    line-height: 2;
    display: block;
    text-indent: 5px;
}

.div__form form .form-checkbox label:hover {
    cursor: pointer;
}

/* The container */
.div__form form .form-checkbox {
    display: block;
    position: relative;
    padding-left: 35px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  
  /* Hide the browser's default checkbox */
  .div__form form .form-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
  }
  
  /* Create a custom checkbox */
  .div__form form .checkmark {
    position: absolute;
    left: 10px;
    height: 20px;
    width: 20px;
    background-color: #eee;
    border: 1px solid #ccc;
    border-radius: 5px;
  }

  .div__form form .circle{
    border-radius: 10px !important;
  }

  .div__form form .form-checkbox .circle:after {
    left: 4px !important;
    top: 4px !important;
    border-width: 5px !important;
    border-radius: 10px !important;
}
  
  /* On mouse-over, add a grey background color */
  .div__form form .form-checkbox:hover input ~ .checkmark {
    background-color: #ccc;
    transition: .5s;
  }
  
  /* When the checkbox is checked, add a blue background */
  .div__form form .form-checkbox input:checked ~ .checkmark {
    background-color: #1D91D0;
    transition: .5s;
  }

  .div__form form .form-checkbox input[type="checkbox"]:checked ~ .checkmark {
    border: 1px solid #1D91D0 !important;
  }
  
  /* Create the checkmark/indicator (hidden when not checked) */
  .div__form form .checkmark:after {
    content: "";
    position: absolute;
    display: none;
  }
  
  /* Show the checkmark when checked */
  .div__form form .form-checkbox input:checked ~ .checkmark:after,
  .div__form form .form-checkbox input:hover ~ .checkmark:after {
    display: block;
  }
  
  /* Style the checkmark/indicator */
  .div__form form .form-checkbox .checkmark:after {
    left: 7px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }

.div__form form select ~ label {
}

.div__form form label > i{
    float: right;
    line-height: 0;
    transition: .5s;
}

.div__form form .form-control{
    padding: 1.25rem 0.75rem 0.35rem 0.75rem !important;
}

.div__form form select.form-control{
    padding: 0.75rem !important;
}

.div__form form .form-group input:focus ~ label, 
.div__form form .form-group input:hover ~ label, 
.div__form form .form-group input.has-value ~ label{
    top: -10px !important;
    left: -3px !important;
    font-size: 8px !important;
    color: #1D91D0 !important;
}

.div__form form .form-group select:focus ~ label, 
.div__form form .form-group select:hover ~ label, 
.div__form form .form-group select.has-value ~ label{
    color: #1D91D0 !important;
}

.div__form form .form-group .input-default:focus ~ label i, 
.div__form form .form-group .input-default:hover ~ label i, 
.div__form form .form-group .input-default.has-value ~ label i{
    font-size: inherit !important;
    color: #1D91D0 !important;
    transform: rotate(180deg) !important;
}

.div__form form .form-group .textarea-default{
    width:100%; 
    flex-direction: column; 
    resize: none;
    padding: 0.5rem 0.75rem 0.35rem 0.75rem !important;
}

.div__form form input:focus, .div__form form input:hover,
.div__form form select:focus, .div__form form select:hover {   
    border-color: #1D91D0 !important;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px #1D91D0 !important;
    outline: 0 none !important;
    transition: .5s;
}

/* width */
.div__form form textarea::-webkit-scrollbar, 
.div__form form select::-webkit-scrollbar {
    width: 5px;
}

/* Track */
.div__form form textarea::-webkit-scrollbar-track, 
.div__form form select::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px #F2F2F2; 
    border-radius: 10px;
}

/* Handle */
.div__form form textarea::-webkit-scrollbar-thumb,
.div__form form select::-webkit-scrollbar-thumb {
    background: #1D91D0; 
    border-radius: 10px;
}

.div__form .invalid {
    border-color: #D95353 !important;
}

.div__form .invalid ~ label {
    color: #D95353 !important;
}

.div__form p {
    font-size: 12px;
}

.div__form > form button{
    background-color: #25598B;
    color: #fff !important;
    border-radius: 7px !important;
} 

.div__form > form button:hover{
    background-color: #F4A01C;
} 

.div__form .icon-mark{
    width: 50px;
}

.div__form .text-title-thankyou {
    font-size: 56px !important;
    color: #015984;
    font-weight: bold;
}

.div__form .text-sub-title-thankyou {
    font-size: 20px !important;
    color: #707070;
}

.__footer {
    font-size: 12px;
    color: #fff;
    background: #00466A 0% 0% no-repeat padding-box;
}