@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Noto Sans", sans-serif;
}
html{
    font-size: 16px;
}
:root{
    --primaryColor: #001965;
    --secondaryColor: #4b0390;
    --black: black;


}
a{
    text-decoration: none;
}
img{
    width: 100%;
}
.row{
    width: 96%;
    margin: auto;
}
.nnlogo{
    width: 80px;
}
a{
    text-decoration: none;
}

/* required css */
.heading{
    font-size: clamp(0.9rem, 1.3vw, 1.6vw);
}
.heading-1{
    font-size: clamp(0.75rem, 1.3vw, 1.8vw);
}
.heading-1_5{
    font-size: 1.5rem;
}
.heading-2{
    font-size: clamp(0.6rem, 1vw, 1.5vw);

}
.small_text{
    font-size: clamp(0.5rem, 0.8vw, 1.2vw);
}

.heading-2_5{
    font-size: 2.5rem;
}
.heading-3{
    font-size: 3rem;
}

.primaryColor{
    color: var(--primaryColor);
}
.secondaryColor{
    color: var(--secondaryColor);
}
.black{
    color: var(--black);
}
.white{
    color: white !important;
}
.mt_rem-1{
    margin-top: 1rem;
}
.mt_rem-2{
    margin-top: 2rem;
}
.mt_rem-3{
    margin-top: 3rem;
}
.mt_rem-4{
    margin-top: 4rem;
}
.mt_rem-5{
    margin-top: 5rem;
}
.mt_rem-6{
    margin-top: 6rem;
}
.mt_rem-7{
    margin-top: 7rem;
}
.mt_rem-8{
    margin-top: 8rem;
}

.container-fluid{
    padding-left: 0px !important;
    padding-right: 0px !important;
}
body{
    background-color: var(--secondaryColor);
}
/* banner start */
.banner img{
    width: 100%;
}

button{
    border-radius: 30px;
    border: 4px solid white;
    background-color: var(--secondaryColor);
    position: relative;
    overflow: hidden;
}
button::before{
    position: absolute;
    content: '';
    width: 20px;
    height: 38px;
    background: rgba( 255, 255, 255, 0.25 );
    box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );
    backdrop-filter: blur( 4px );
    -webkit-backdrop-filter: blur( 4px );
    border: 1px solid rgba( 255, 255, 255, 0.18 );
    transform: skewX(20deg);
    left: -17px;
    top: 0;
    opacity: 0.6;
    overflow: hidden;
    z-index: 111111;
    animation: 2s anima linear;
    animation-iteration-count: infinite;
    transition: all 2s;
}
@keyframes anima{
    0%{
        left: -17px;
    }
  
    100%{
        left: 120px;
    }
}
/* baneer end */


/* form style start */
.form_input{
    display: flex;
    flex-direction: column;
    row-gap: 8px;
}
.form_input input{
    padding: 6px 20px;
    border: 5px solid #b542ff;
    border-radius: 30px;
    outline: none;
}
/* form style end */

.error, #error{
    color: red;
    margin-top: -6px;
}
/* custom radio button */
.xyz{
    display: flex;
    gap: 20px;
    align-item: center;
    
  }
  
  [type="radio"]:checked,
  [type="radio"]:not(:checked) {
      position: absolute;
      left: -9999px;
  }
  [type="radio"]:checked + label,
  [type="radio"]:not(:checked) + label
  {
      position: relative;
      padding-right: 28px;
      cursor: pointer;
      line-height: 20px;
      display: inline-block;
      color: #001965;
  }
  [type="radio"]:checked + label:before,
  [type="radio"]:not(:checked) + label:before {
      content: '';
      position: absolute;
      /* left: 18px; */
      left: 20px;
      top: -3px;
      width: 26px;
      height: 26px;
      border: 4px solid #b542ff;
      border-radius: 100%;
      background: #fff;
      margin-left: 6px;
  }
  [type="radio"]:checked + label:after,
  [type="radio"]:not(:checked) + label:after {
      content: '';
      width: 14px;
      height: 14px;
      background: #001965;
      position: absolute;
      top: 4px;
      left: 40px;
      border-radius: 100%;
      -webkit-transition: all 0.2s ease;
      transition: all 0.2s ease;
  }
  [type="radio"]:not(:checked) + label:after {
      opacity: 0;
      -webkit-transform: scale(0);
      transform: scale(0);
  }
  [type="radio"]:checked + label:after {
      opacity: 1;
      -webkit-transform: scale(1);
      transform: scale(1);
  }

  input[type="checkbox"]{
    width: 25px;
    height: 25px;
    outline: none;
    border: none;
  }
  .form_contain_text{
    /* padding-left: 10px; */
  }
  .form_contain_text_sub{
    font-size: smaller;
  }
  .checkbox_text{
    font-size: smaller;
  }


/* custom radio button */
.icon_calender{
    color: var(--nnBlue);
    width: 50px;
    height: 50px;
    margin: auto;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    transition: o.4s all;
    cursor: pointer;
    margin: 10px auto;
  }
  input::-webkit-outer-spin-button,
  input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
  }
  input{
    color: var(--primaryColor);
  }
 
  @media screen and (max-width: 450px) {
    .left_logo{
     justify-content: center !important;
    }
    .sub_logo{
     width: 180px !important;
     margin-bottom: 10px;
     margin-top: 20px;
    }
    .nn_logo{
     justify-content: center !important;
     margin-top: 15px;
    }
    .nn_logo img{
     width: 80px;
    }
    .mt_rem-6 {
     margin-top: 2rem;
    }
    .form_input input {
     padding: 2px 15px;
     } 
     .error, #error{
         font-size: 12px;
     }
   }
 
  @media screen and (max-width: 1200px){
    [type="radio"]:checked + label:after, [type="radio"]:not(:checked) + label:after {
        content: '';
        width: 14px;
        height: 14px;
        background: #001965;
        position: absolute;
        top: 3px;
        left: 32px;
        border-radius: 100%;
        -webkit-transition: all 0.2s ease;
        transition: all 0.2s ease;
    }
  }
  
  @media screen and (min-width: 1201px) and (max-width: 1399px){
    [type="radio"]:checked + label:after, [type="radio"]:not(:checked) + label:after {
        content: '';
        width: 14px;
        height: 14px;
        background: #001965;
        position: absolute;
        /* top: 3px; */
        top: 3px;
        left: 32px;
        border-radius: 100%;
        -webkit-transition: all 0.2s ease;
        transition: all 0.2s ease;
    }
  }
  
   @media screen and (min-width: 1400px){
    [type="radio"]:checked + label:before, [type="radio"]:not(:checked) + label:before {
        left: 28px;
        top: -2px;
    }
    [type="radio"]:checked + label, [type="radio"]:not(:checked) + label {
        padding-right: 35px;
    }
  }

  @media screen and (min-width: 2200px){
    [type="radio"]:checked + label:before, [type="radio"]:not(:checked) + label:before {
        left: 50px;
        top: -2px;
    }
    [type="radio"]:checked + label, [type="radio"]:not(:checked) + label {
        padding-right: 50px;
    }
  }
  @media screen and (min-width: 445px) and (max-width: 768px){
    .left_logo{
        justify-content: center !important;
       }
       .sub_logo{
        width: 180px !important;
        margin-bottom: 10px;
        margin-top: 20px;
       }
       .nn_logo{
        justify-content: center !important;
        margin-top: 15px;
       }
       .nn_logo img{
        width: 80px;
       }
       .mt_rem-6 {
        margin-top: 2rem;
       }
       .form_input input {
        padding: 2px 15px;
        } 
        .error, #error{
            font-size: 12px;
        }
  }
