:root{
    --gray-3 :#ACB5BD;
    --white:#ffff;
    --gray-2:#DDE2E5;
    --primary:#E89B94;
    --green:#07524D;
} 
body{
    margin: 0px;
    padding: 0px;
}


*{
    font-family: Poppins;
}
#wrapper{
    background-image: url('../../../img/kenaan-bin-tahir-YNCK2CHz6So-unsplash 2.png'); 
    padding: 20px 0px;
    height: 100%;
    min-height: 100vh;
    width: 100%;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    
}
.inner-wrapper{
    width: 90%;
    margin: 0 auto;
}
.contact-label{
    font-size: 24px;
    line-height: 26px;
    text-align: center;
    color: white;
    margin: 0px 15px;
}.contact-label:hover{
    color: var(--gray-2);
}
.h_input{
    background: #FFFFFF;
    border: 1px solid #ACB5BD;
    border-radius: 8px;
    width: 100%;
    margin: 10px 0px;
    padding: 10px;
    font-weight: 500;
    font-size: 12px;
    color: var(--gray-3);
}
.h_input:focus{
    outline: none;
}
.h_forms{
    background: var(--white);
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 8px;
    padding: 6%;
    width: 80%;
    margin: 0 auto;
}
.form-heading{
    font-style: normal;
    font-weight: bold;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
}
.h_button{
    background-color: var(--primary);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 5px 70px;
    outline:none !important;
}
.header-text{
    font-style: normal;
    font-weight: bold;
    font-size: 28px;
    line-height: 55px;
    color: white;
}



.animate-down-once div {
  height: 5rem;
  margin-bottom: -5rem;
  opacity: 0;
  padding:0px 10px;
  text-align: left;
}
.animate-down-once div:first-child{
  animation: slideDownThrough 6s linear  infinite;
   animation-delay: 0s;
   animation-fill-mode: forwards;
}
.animate-down-once div:nth-child(2) {
   animation: slideDownThrough 6s linear infinite;
     animation-delay: 2s;
     animation-fill-mode: forwards;
}
.animate-down-once div:last-child {
  animation: slideDownThrough 6s linear  infinite;
    animation-delay: 4s;
    animation-fill-mode: forwards;
}

.header-text-container{
    width:100%;
    display:block;
    height:100%;
}

@keyframes slideDownThrough {
  0% {
    opacity: 0;
  }
  2% {
    opacity: 0;
    transform: translateY(-4px);
  }
  5% {
    opacity: 1;
    transform: translateY(0px);
  }
  17% {
    opacity: 1;
    transform: translateY(0px);
  }
  20% {
    opacity: 0;
    transform: translateY(4px);
  }
  80% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

/* checkbox */
 
  
  .radiobtn {
    position: relative;
    margin: 10px 0px;
  }
  .radiobtn label {
    display: block;
    background: white;
    color: #444;
    border-radius: 8px;
    padding: 10px 20px;
    border: 1px solid #ACB5BD; 
    cursor: pointer;
  }
  .radiobtn label:after, .radiobtn label:before {
    content: "";
    position: absolute;
    right: 11px;
    top: 11px;
    width: 22px;
    height: 22px;
    border-radius: 3px;
  }
  .radiobtn label:before {
    background: transparent;
    -webkit-transition: 0.1s width cubic-bezier(0.075, 0.82, 0.165, 1) 0s, 0.3s height cubic-bezier(0.075, 0.82, 0.165, 2) 0.1s;
    transition: 0.1s width cubic-bezier(0.075, 0.82, 0.165, 1) 0s, 0.3s height cubic-bezier(0.075, 0.82, 0.165, 2) 0.1s;
    z-index: 2;
    overflow: hidden;
    background-repeat: no-repeat;
    background-size: 13px;
    background-position: center;
    width: 0;
    height: 0;
    background-image: url('../media/check.png');
    position: absolute;
    top: -8px;
    right: -8px;
}
  .radiobtn input[type="radio"] {
    display: none;
    position: absolute;
    width: 100%;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
  }
  .radiobtn input[type="radio"]:checked + label {
    background: white;
    -webkit-animation-name: blink;
            animation-name: blink;
    -webkit-animation-duration: 1s;
            animation-duration: 1s;
  }
  .radiobtn input[type="radio"]:checked + label:after {
   
  }
  .radiobtn input[type="radio"]:checked + label:before {
    width: 22px;
    height: 22px;
    color: #ffff;
    background-color: var(--primary);
  }
  .radiobtn span{
    font-style: normal;
    font-weight: 400;
    font-size: 9px;
    line-height: 21px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color:var(--gray-3);
    margin-left: 2px;
  }
/* end checkbox */
.alert{
    
    padding: 0.10rem 1.25rem;
    margin-bottom: 0.2rem;
    border-radius: .25rem;
    font-size: 12px;
}
@media (min-width: 768px){
    .contact-label {

        font-size:16px;
    }
}
@media only screen and (max-width:1024px) and (min-width:600px){
 
}
/*mobile*/

@media only screen and (max-width: 600px) {
  .h_forms{
      width:100%;
  }.contact-label{
      display:block;
      margin:5px 0px;
      text-align:left;
      font-size:14px;
  }.contact-label img{
      width:18px;
  }.header-text {
      font-size:16px;
      line-height:30px; 
    }.header-text-container{
        margin:-20px 0px;
    }
    .logo{
       width: 120px;
       height: 25px;
       margin-top: 4px;
    }
}

@media (max-width:320px){
    .logo{    width: 90px;
    height: 20px;
    }
}


/**/

.nav-tabs{
    border:none;
    width:100%;
    text-align:center;
    margin-bottom:6%;
}

.nav-tabs li{
    width:50%;
}
.nav-tabs li a{
    font-style: normal;
    font-weight: bold;
    font-size: 18px;
    line-height: 24px;
    text-align: center;
    text-decoration:none;
    color:black;
    padding-bottom:1.5%;
}

.nav-tabs li .active{
    border-bottom:4px solid #E89B94;
}