/* @import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100&display=swap');
@import url('https://fonts.cdnfonts.com/css/cabinet-grotesk'); */
:root {
    --color-white: #fff;
    --color-black: #000;
    --color-light-green-1: #ccf1c1;
    --color-light-green-2: #8BC34A;
    --color-light-green-3: #ecfef2;
    --color-primary-green: #1B756B;

    --font-poppins: 'Poppins', sans-serif;
    --font-CabinetGrotesk-Regular: 'CabinetGrotesk-Regular', sans-serif;
    --font-CabinetGrotesk-Medium: 'CabinetGrotesk-Medium', sans-serif;
    --font-CabinetGrotesk-Extrabold: 'CabinetGrotesk-Extrabold', sans-serif;
}

@font-face {
    font-family: 'CabinetGrotesk-Regular';
    src:url('../fonts/CabinetGrotesk.ttf') format('truetype');
  }

@font-face {
    font-family: 'CabinetGrotesk-Medium';
    src: url('../fonts/CabinetGrotesk-Medium.ttf') format('truetype');
  }
@font-face {
    font-family: 'CabinetGrotesk-Extrabold';
    src: url('../fonts/CabinetGrotesk-Extrabold.ttf') format('truetype');
  }


body {
    font-family: var(--font-poppins);
    letter-spacing: 0px;
    line-height: 1.47059;
    font-weight: 400;
    letter-spacing: -0.03em;
    background-color: rgb(255, 255, 255);
    color: rgb(29, 29, 31);
    font-style: normal;
    -moz-font-feature-settings: "kern";
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    direction: ltr;
    text-align: left;
}
.ps-80 {padding-left: 120px;}
a {
    color:var(--color-primary-green);
    text-decoration: none;
}
.form-check-input:checked {
    background-color: var(--color-primary-green);
    border-color: var(--color-primary-green);
}

input[type=radio] {
    accent-color: var(--color-primary-green);
}
ul{
    list-style: none;
}
img{
    max-width: 100%;
}

/*footer*/
footer{
    border-top: 1px solid #1b756b4a;
    padding-top: 25px;
    background-color: #d8f9e459;
}
.footer_row {
    display: grid;
    grid-template-columns: repeat(4, auto);
    gap: 50px;
    justify-content: space-between;
}
.footer_row .footer_cell {
    color: #555;
    max-width: 270px;
}

.footer_row .footer_cell p {
    font-size: 14px;
}
.footer_row .footer_cell ul {
    padding: 0;
}
.footer_row .footer_cell ul h4 {
    font-size: 16px;
    margin-bottom: 10px;
}
.footer_row .footer_cell ul li {
    margin-bottom: 10px;
}

.footer_row .footer_cell ul li a {
    color: var(--color-primary-green);
    font-size: 14px;
}
.footer_social {
    width: 160px;
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.footer_social a {
    width: 30px;
    height: 30px;
    border: solid 1px #777;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.btn-last-update {
    border-color: #777 !important;
    margin-top: 15px;
    padding: 10px 7px !important;
    font-size: 13px !important;
}
.pb-30 {
    padding-bottom: 30px;
}
/* header */

.navbar-toggler .navbar-toggler-icon {
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    vertical-align: middle;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
}
.page_bd{
     min-height: calc(100vh - 102px);
}
  @media (max-width: 768px){
.desktop-hamburger, 
.close_mobile_menu {
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50% !important;
    border: none !important;
    padding: 0 !important;
    background-color: #d7f9e4 !important;
}

.nav_custom .navbar-collapse {
    position: absolute;
    left: -512px;
    padding: 0px 20px 30px;
    top: 0;
    background: rgb(255, 255, 255);
    width: 100%;
    min-height: calc(100vh + 184px);
    transition: all 300ms ease 0s;
}
.nav_custom .collapse.show {
    flex-direction: column;
    align-items: flex-start;
    left: 0;
    z-index: 9;
}
.nav_custom .navbar{
  position: static !important;
}
.nav_custom .navbar-nav {
    padding-top: 50px;
}
.nav_custom .navbar-nav .nav-link {
    color: #000;
    font-size: 18px !important;
}
.nav_custom .btn {
    width: 100%;
}
.nav_custom .navbar-toggler:focus{
  box-shadow: 0 0 0 0.25rem #1b756b;
}
.close_mobile_menu {
    position: absolute;
    right: 7px;
    top: 6px;
    background-color: #000 !important;
}
.close_mobile_menu img {
    width: 32px;
    height: 32px;
}
  }
header{
    position: sticky;
    top: 0;
    z-index: 9999;
}
.vl {
    border-left: 1px solid var(--color-primary-green);
    margin-inline: 7px;
  }
.main-header {
    background: var(--color-white);
}
.header-top{
    background: #1B756B;
    border-bottom: 1px solid #d2d2d2;
    position: relative;
  }
  .header-top button{
    cursor: pointer;
  }
  .header-top button:focus{
    border: 0;
    outline: 0;
}
  .header-top .goi {
    line-height: 40px;
    font-style: normal;
    font-weight: 500;
  
    a {
      line-height: 40px;
      color: var(--color-white);
      font-size: 12px;
      text-decoration: none;
  
      strong {
        font-weight: 500;
      }
    }
  
    img {
      margin-right: 10px;
    }
  }
  
  .header-top .skip01,.reader,.acessible {
    color: #fff;
    line-height: 39px;
    padding: 0 12px;
    display: inline-block;
    transition: all 1s ease-out;
  font-weight: normal;
    &:hover {
      background-color: rgba(255, 255, 255, 0.15);
      text-decoration: none;
      color: var(--color-white);
    }
  
    strong {
      font-weight: 500;
      font-size: 14px;
    }
  }

  .header-top .partition {
    color: #EBEBEB;
    opacity: 0.4;
  }
  
  .header-top .font01 {
    font-size: 16px;
    height: 40px;
    width: 40px;
    color: #fff;
    transition: all 1s ease-out;
    background: none;
    border: none;
  }
  
  .header-top .font01:hover {
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.15);
    transition: all 1s ease-out;
  }
  
  .header-top .language01 {
    font-size: 14px;
    height: 40px;
    display: inline-block;
    padding: 10px 5px 10px 8px;
  
  }
  
  .header-top .language01 {
    color: var(--color-white);
    option {
      color: var(--color-white);
      background-color: var(--color-primary-green);
    }   
  
    &:hover {
      transition: all 1s ease-out;
      background-color: rgba(255, 255, 255, 0.15);
  
    }
  
    select {
      background: transparent;
      color: #fff;
      cursor: pointer;
      border:none;
  
      /* &:hover {
        background-color: none;
      } */
    }
  }
  .light_mode {
    opacity: 0;
    position: absolute;
  }
  body.dark .light_dark_icon .fa-moon-stars {
    display: block;
  }
  
  .light_dark_icon .fa-moon-stars {
    color: #e7df0d;
    display: none;
  }
  
  body.dark .light_dark_icon .fa-sun {
    display: none;
  }
  body.dark {
    .error_main{
        background: var(--color-black) !important;
        background-image: none !important;
    
  }
  }
  
  .light_dark_icon .fa-sun {
    color: #f39c12;
  }
  .checkbox-label {
    background-color: var(--color-black-1);
    height: 26px;
    width: 26px;
    border-radius: 50px;
    position: relative;
    padding: 5px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0;
    margin-left: 8px;
    margin-right: 8px;
}
/* header end */



@media(max-width:767px) {  
    .error_main{
        position: relative;
        top: 0;
    }
    .header-top .goi{
        font-size: 11px !important;
    }
    .resbtn{display: block !important; margin: auto !important;}
    .about-section p{margin-bottom:20px !important;}
    .login_digi {padding-left: 0px !important;}
    .top_banner h3{
        text-align: center !important;
    }
}

/* home page css */
.logo-panel,
.top_nav {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.total_no ul {
    display: flex;
    gap: 50px;
}

.total_no ul li {
    background-color: var(--color-white);
    margin-left: 0;
	border-radius:10px;
}
.total_no ul li p{
    font-family: var(--font-CabinetGrotesk-Medium);
}



.hr-w-936 {
    max-width: 936px;
    margin: 0 auto;
}


/* exiting css style.css*/
/* home page style */
.banner{
    background: linear-gradient(180deg, #D7F9E4 13.66%, rgba(219, 238, 226, 0.00) 99.68%);
}

.top_banner{
    background: linear-gradient(180deg, #D7F9E4 13.66%, rgba(219, 238, 226, 0.00) 99.68%);
    padding-top: 50px;
    padding-bottom: 50px;
}
.top_banner h3 {
    color: #272727;
    font-size: 40px;
    font-weight: bolder;
    margin-bottom: 15px;
    font-family: 'CabinetGrotesk-Extrabold';
    text-align: start;
}
.top_banner span {
    color: var(--color-primary-green);
}
.student_1 .account_1 {
    padding-top: 99px;
    padding-bottom: 60px;
    margin-bottom: 60px;
    border-bottom: 1px solid #1b756b69;
}



.total_no ul li {
    padding: 25px;
    text-align: center;
    flex: 1;
}

.account_2 .appan_1 {
    margin-top: 60px;
}
/* padding */
.pt-80 {
    padding-top: 80px;
}
.pt-100 {
    padding-top: 20px;
}
.pt-130 {
    padding-top: 130px;
}
.pt-20 {
    padding-top: 20px;
}
.pt-103{
    padding-top: 103px;
}
.pt-135{
    padding-top: 103px;
}

/* margin */
.learn_1{
    font-family: var(--font-CabinetGrotesk-Medium);
}
.about-section h3,
.student_1 h3 {
    color: #272727;
    font-size: 40px;
    font-weight: bolder;
    margin-bottom: 15px;
    font-family: 'CabinetGrotesk-Extrabold';
}

.student_1 h3 span,
.about-section h3 span {
    color: var(--color-primary-green);
}

.student_1 p,
.about-section p {
    color: #525252;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 40px;
    font-family: var(--font-CabinetGrotesk-Medium);
}
.banner-head{
    color: var(--color-primary-green);
    font-size: 19px;
    margin-bottom: 20px;
    letter-spacing: -0.05em;
}

.app_hover {
    transition: transform 0.3s ease-out;
}

.app_hover:hover img {
    transform: translateY(-21px);
    transition: transform 0.3s;
}

.app_hover img {
    transform: translateY(0);
    transition: transform 0.3s;
}

.app_hover1 img {
    transition: margin-left 0.3s ease;
    margin-bottom: 10px;
    position: relative;
    right: -10px;
    max-width: 466px;
    min-height: 431px;

}
.app-banner-img{
    margin-top: -120px
}

.app_hover1 {
    background-image: linear-gradient(to right bottom, #52aba2, #459d94, #389086, #2a8278, #1b756b);    min-height: 445px; 
    max-width: 400px;
border-radius: 12px;
}


.btn:hover{
    background: #1B756B;
}
 .btn {
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: 0.1px;
    border-radius: 100px;
    background: #1B756B;
    display: inline-flex;
    padding: 10px 24px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-color: #edfcf3;
}

.learn_1 {
    color: #272727;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
}

.student_1.pt-28 {
    padding-top: 28px;
    padding-bottom: 50px;
}

.total_no {
    margin-top: 35px;
    margin-bottom: 50px;
}

/* .total_no ul li:hover img{
    transform: translateY(-3px);
} */


.how_get .login_digi li {
    list-style: none;
    text-align: center;
}

.total_no ul li:hover,
.how_get .login_digi li:hover {
    box-shadow: 0px 4px 30px 0px rgba(138, 138, 138, 0.3);
}
.total_no ul li {
   color: var(--color-primary-green);
}
.how_get h4 {
    color: #272727;
    font-size: 20px;
    font-weight: 700;
    line-height: 26px;
}

.how_get p {
    color: #5B5470;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
}

.total_no h4 {
    color: var(--color-primary-green);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    margin-top: 5px;
}

.total_no p {
    color: #5B5470;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    width: 100%;
    margin-bottom: 0px;
}

.bg-white {
    background-color: #ffff;
}

.get_started {
    margin-bottom: 40px;
    margin-top: 100px
}

.get_started .col-sm-4 {
    padding: 25px;
}

.get_started .col-sm-4 .cradit_1 {
    border-radius: 12px;
    background: #F4FFF4;
    box-shadow: 0px 7px 28px 0px rgba(19, 92, 84, 0.18);
    text-align: center;
    padding: 25px;
}

.get_started .col-sm-4 #cradit_1 {
    border-radius: 12px;
    background: linear-gradient(329deg, #1B756B 24.13%, #5CB6AC 104.55%);

}

.get_started .col-sm-4 #cradit_1 h5,
.get_started .col-sm-4 #cradit_1 p {
    color: #FFF !important;
}

.get_started .col-sm-4 #cradit_1 p::after {
    content: " ";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    width: 50%;
    border-bottom: 1px solid #ffff;
}

.get_started .col-sm-4 .cradit_1 h5 {
    color: var(--color-primary-green);
    text-align: center;
    font-size: 20px;
    font-weight: 500;
    line-height: 32px;
    margin-bottom: 16px;
}

.get_started .col-sm-4 .cradit_1 p {
    color: var(--color-primary-green);
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    line-height: 19px;
    padding-bottom: 10px;
    position: relative;

}
.how_get {
    padding-top: 50px;
}
.how_get .get_name{
padding-top: 50px;
}
.how_get .get_name li {
    position: relative;
}

.how_get .get_name li::after {
    content: " ";
    position: absolute;
    bottom: 34px;
    left: 100%;
    transform: translateX(-50%);
    z-index: 999;
    width: 75%;
    border-bottom-style: dotted;
}

.get_started .col-sm-4 .cradit_1 p::after {
    content: " ";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    width: 50%;
    border-bottom: 1px solid #1B756BAD;
}

.how_get .get_name li:last-child::after {
    border-bottom-style: none !important
}

.get_started .col-sm-4 .cradit_1 p:last-child::after {
    border-bottom: none !important
}

.get_started .col-sm-4:nth-child(3) {
    margin-top: 95px;
}

.get_started .col-sm-4:nth-child(1) {
    margin-top: 95px;
}

.get_started .btn-light {
    color: var(--color-primary-green);
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: 0.1px;
    border-radius: 95px;
    background: #FFF;
    box-shadow: 0px 7px 28px 0px rgba(27, 117, 107, 0.20);
    display: inline-flex;
    padding: 10px 24px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin: 32px auto;
    display: block;
}

.how_get {
    text-align: center;
}

.how_get h3 {
    color: #272727;
    font-size: 40px;
    font-weight: 800;
}



.how_get h3 span {
    color: #1B756B !important;
}

.how_get .login_digi li {
    padding: 40px 20px 15px;
    transition: transform .3s;
}

.how_get .login_digi li img {
    margin-bottom: 17px;
}

.how_get .login_digi li:hover h4 {
    color: var(--color-primary-green);
}

/* .how_get  .login_digi li:hover img{
    transform: scale(1.60);
    transition: transform .3s;
} */
/* .how_get  .login_digi li:hover .original-image, .how_get  .login_digi li:hover .original-image1, .how_get  .login_digi li:hover .original-image2, .how_get  .login_digi li:hover .original-image3 {
    transform: scale(1.09);
}

.how_get  .login_digi li:hover .hover-image, .how_get  .login_digi li:hover .hover-image1, .how_get  .login_digi li:hover .hover-image2, .how_get  .login_digi li:hover .hover-image3 {
    transform: scale(1.09);
} */
.original-image,
.original-image1,
.original-image2,
.original-image3,
.original-image4,
.original-image5 {
    position: relative;
    left: 34px;
    transition: transform 0.3s ease-out, opacity 0.3s ease-out;
}

.hover-image,
.hover-image1,
.hover-image2,
.hover-image3,
.hover-image4 {
    position: relative;
    top: 0;
    left: -28px;
    opacity: 0;
    transition: transform 0.3s ease-out, opacity 0.3s ease-out;
}

.hover-image5 {
    position: relative;
    top: 0;
    left: -30px;
    opacity: 0;
    transition: transform 0.3s ease-out, opacity 0.3s ease-out;
}

.hover-image6,
.hover-image7,
.hover-image8 {
    position: relative;
    top: 0;
    left: -33px;
    opacity: 0;
    transition: transform 0.3s ease-out, opacity 0.3s ease-out;
}

.original-image6,
.original-image7,
.original-image8 {
    position: relative;
    left: 25px;
    transition: transform 0.3s ease-out, opacity 0.3s ease-out;
}

.how_get .login_digi li:hover .original-image,
.how_get .login_digi li:hover .original-image1,
.how_get .login_digi li:hover .original-image2,
.how_get .login_digi li:hover .original-image3,
.total_no ul li:hover .original-image4,
.total_no ul li:hover .original-image5,
.total_no ul li:hover .original-image6,
.total_no ul li:hover .original-image7,
.total_no ul li:hover .original-image8 {
    opacity: 0;
    transform: scale(1.09);
}

.how_get .login_digi li:hover .hover-image,
.how_get .login_digi li:hover .hover-image1,
.how_get .login_digi li:hover .hover-image2,
.how_get .login_digi li:hover .hover-image3,
.total_no ul li:hover .hover-image5,
.total_no ul li:hover .hover-image6,
.total_no ul li:hover .hover-image7,
.total_no ul li:hover .hover-image8 {
    opacity: 1;
    /* transform: scale(1.09); */
    transform: scale(1.09) translateY(-10px);
}

.total_no ul li:hover .hover-image5,
.total_no ul li:hover .hover-image6,
.total_no ul li:hover .hover-image7,
.total_no ul li:hover .hover-image8 {
    opacity: 1;
    /* transform: scale(1.09); */
    transform: scale(1.03) translateY(-2px);
}

.total_no ul li:hover .hover-image4 {
    opacity: 1;
    transform: scale(1.09) translateY(-3px);
}

.how_get .login_digi li p {
    transition: transform 0.3s ease;
}

.how_get .login_digi li:hover p {
    transform: translateY(3px);
}

.how_get .get_name {
    display: flex;
}

.how_get .get_name li {
    list-style: none;
    width: 100%;
}

.have_question h5 {
    color: #272727;
    font-size: 40px;
    font-weight: 800;
    text-align: left;

}
.have_question h3{
    font-weight: 800;
    margin-bottom: 25px;
    font-size: 35px;
    font-family: 'Cabinet Grotesk', sans-serif;
}
.have_question h3 span {
    color: #1B756B !important;
}

.have_question .accordion-header {
    background: #FFF !important;
}

.have_question .accordion-button p {
    color: #555 !important;
     font-weight: 500;
    margin-bottom: 0px;

}

.have_question .accordion-button{
    padding: 1.3rem 1.25rem !important;
}

.accordion-button:focus {
    border-color: #86b7fe03;
    box-shadow: 0 0 0 0.25rem rgb(13 110 253 / 0%);
}

.accordion-button:not(.collapsed) {
    color: #555 !important;
}

.have_question .accordion-item {
    border-bottom: 1px solid #DEDEDE !important;
    border-left: none;
    border-right: none;
    border-radius: 0;
}

.accordion-button:not(.collapsed){
    background-color: #F4FFF4;
}

.have_question .accordion-body p {
    color: #555;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 0px;
}

.have_question {
    margin-bottom: 100px;
    margin-top: 60px;
}

.have_question .all_faq {
    text-align: center;
    margin: 20px;
}

.how_get .mt-45 {
    margin-top: 45px;
}


.mb-45 {
    margin-bottom: 45px;
}
@media only screen and (max-width:759px) {
    .total_no ul {
        padding-left: 0px !important;
    }

    .footer-links h5,
    .no-style-list li {
        text-align: center !important;
    }

    .student_1 .container .pt-80 {
        padding-top: 0px !important;
    }

    .student_1 .account_1 {
        padding-top: 65px !important;
    }

    .have_question .accordion-button {
        font-size: 17px;
    }

    .student_1 h3 {
        font-size: 27px;
    }

    .apaar_hover1 {
        margin-bottom: 50px;
    }

    .get_started .col-sm-4:nth-child(1) {
        margin-top: 0px;
    }

    .get_started {
        margin-top: 0px;
    }

    .how_get h3,
    .have_question h3 {
        font-size: 27px;
    }

    .get_started .col-sm-4:nth-child(3) {
        margin-top: 0px;
    }

    .student_1 p {
        font-size: 16px;
        width: 100%;
        margin-bottom: 30px;
    }

    .apaar_hover {
        margin-top: 25px !important;
    }

    .student_1 .account_1 {
        padding-bottom: initial !important;
    }



    .total_no {
        margin-top: 10px;
    }

    .apaar_hover img {
        margin-bottom: 25px;
        margin-top: 0px;
    }

    .student_1 h4 {
        font-size: 13px;
    }

    .learn_1 {
        white-space: nowrap;
        overflow: hidden;
        font-size: 16px;
    }
}

.main_logo {
    width: 108px;
    height: 48px;
}

.learn_1:hover{
color: var(--color-primary-green);
}

@media only screen and (min-width:1000px) {
    .login_1s {
        display: none;
    }
}

@media only screen and (max-width:999px) {
    .how_get .get_name {
        padding-left: 0px;
        display: none;
    }

    .login_digi .login_1s {
        position: relative;
    }

    .login_digi .login_1s .image-container {
        position: relative;
    }

    .login_digi .login_1s .image-container::after {
        content: " ";
        position: absolute;
        bottom: 33px;
        left: 50%;
        transform: translateX(-50%);
        z-index: -999;
        width: 75%;
        border-bottom: 2px dotted #000;
        /* Adjust border properties */
    }


}

@media only screen and (max-width:403px) {
    .learn_1 {
        margin: auto;
        display: block;
        text-align: center;
    }

    .main_logo {
        width: 50%;
    }

    .student_1 .container .btn {
        margin: auto;
        display: block;
    }

    .btn_get_apaar {
        font-size: 10px;
        white-space: nowrap;
        overflow: hidden;
    }
}

@media only screen and (min-width:760px) {

    .total_no ul,
    .how_get .login_digi {
        display: flex;
        padding-left: 0px;
    }

    .app_hover1:hover img {
        margin-left: 30px;
    }

    
    .how_get .login_digi li {
        margin-left: 40px;
        width: 100%;
    }
}

/* footer style */
.no-style-list li {
    list-style: none;
    text-align: left;
}

.terns_of ul {    
    margin-top: 18px;
    margin-bottom: 18px;
    gap: 20px;
    list-style: none;
}
.terns_of ul li a:hover{    
    color: var(--color-light-green-1);
}


.fw-normal1 {
    font-size: 14px;
    color: #373737;
    font-weight: 400;
}

.no-style-list .fw-normal a {
    color: #525C66 !important;
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    text-align: left;
}

.footer-area-1 .footer-top {
    background: #FFF !important;
}

.footer-links h5 {
    color: #343F4A;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 0.15px;
    text-align: left;
}

.footer_bt {
    background: #1B756B;
    color: var(--color-white);

}

.footer_bt ul li a {
    color: #FFF;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: 0.1px;
    text-decoration: none;
}

.footer-contact .fa {
    text-decoration: none;
    border-radius: 50%;
    color: #696769;
    border: 1px solid #696769;
    line-height: 26px;
    font-size: 15px;
    width: 28px;
    height: 28px;
    margin-top: 30px;
}

.bglinear {
    background: linear-gradient(180deg, #D7F9E4 13.66%, rgba(219, 238, 226, 0.00) 99.68%);
}

.hdrgap {
    padding-top: 50px;
    padding-bottom: 50px;
}
.nav_custom img {
    width: 102px;
}
/* exiting css end*/

@media(max-width:767px) {
    .total_no ul {
        flex-direction: column;
        margin-top: 30px;
    }
    .footer_bt{
        text-align: center;
    }
    .terns_of ul{
        justify-content: center !important;
    }

    .top_apar_get .pt-135{
        padding-top: 0;
    }

   
    .apar_get{
        min-height: calc(100vh - 200px);
    }
    .nav_custom img{
        width: 75px;
        }

        .app-banner-img{
            margin-top: 0px !important
        }
}



/* apaar get css old */
/* #langForm{
    margin-bottom: 5px;
    cursor: pointer;
}
#changeLang, .button-a{
    cursor: pointer;
}
strong {
font-size: 1.000em;
line-height: 25px;
font-weight: 700;
}

.text-left {
color: #fff !important;
font-size: 12px;
}

#dtr-header-global a {
padding-right: 10px;
}
#dtr-header-global a {
padding-right: 10px;
}
.text-left {
color: #fff !important;
font-size: 12px;
}

.flag-img {
height: 15px;
margin-right: 5px;
}
.flag-img {
height: 15px;
margin-right: 5px;
}
img {
max-width: 100%;
}

.dtr-header-left {
min-width: 110px;
}

a, a:hover {
text-decoration: none;
}

.button-a {
color: #fff !important;
font-size: 12px;
}
.partition {
color: #fff;
margin-right: 15px;
}
.globe-font {
color: #fff !important;
padding: 2px 3px 0px 0px;
}
#dtr-header-global select {
padding: 0 0;
color: #fff;
background-color: #1B756B;
border: none;
font-size: 12px;
}

#dtr-header-global {
background-color: #fff;
}
.btn_get_apaar{
background: #1B756B;
padding: 10px 20px;
border-radius: 25px;
color: #fff;
}

* {
    transition: background-color 300ms ease, color 300ms ease;
}
*:focus {
  
    outline: none;
}
html, body {
    color: rgba(33, 37, 41, 1);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
    font-size: 16px;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

section h1 {
    margin-bottom: 2.5rem;
}
section h2 {
    font-size: 120%;
    line-height: 2.5rem;
    padding-top: 1.5rem;
}
section pre {
    background-color: rgba(247, 248, 249, 1);
    border: 1px solid rgba(242, 242, 242, 1);
    display: block;
    font-size: .9rem;
    margin: 2rem 0;
    padding: 1rem 1.5rem;
    white-space: pre-wrap;
    word-break: break-all;
}
section code {
    display: block;
}
section a {
    color: rgba(221, 72, 20, 1);
}
section svg {
    margin-bottom: -5px;
    margin-right: 5px;
    width: 25px;
}
.further {
    background-color: rgba(247, 248, 249, 1);
    border-bottom: 1px solid rgba(242, 242, 242, 1);
    border-top: 1px solid rgba(242, 242, 242, 1);
}
.further h2:first-of-type {
    padding-top: 0;
}
footer {
    background-color: rgba(221, 72, 20, .8);
    text-align: center;
}
footer .environment {
    color: rgba(255, 255, 255, 1);
    padding: 2rem 1.75rem;
}
footer .copyrights {
    background-color: rgba(62, 62, 62, 1);
    color: rgba(200, 200, 200, 1);
    padding: .25rem 1.75rem;
}
@media (max-width: 629px) {
    header ul {
        padding: 0;
    }
    header .menu-toggle {
        padding: 0 1rem;
    }
    header .menu-item {
        background-color: rgba(244, 245, 246, 1);
        border-top: 1px solid rgba(242, 242, 242, 1);
        margin: 0 15px;
        width: calc(100% - 30px);
    }
    header .menu-toggle {
        display: block;
    }
    header .hidden {
        display: none;
    }
    header li.menu-item a {
        background-color: rgba(221, 72, 20, .1);
    }
    header li.menu-item a:hover,
    header li.menu-item a:focus {
        background-color: rgba(221, 72, 20, .7);
        color: rgba(255, 255, 255, .8);
    }
  
}
@media only screen and (max-width:759px) {
    #top_nav{
        display:none;
    }
}
 #myModal .modal-dialog{
   max-width: 594px;
  } */

/* get apaar css*/
  
/* @media only screen and (max-width:600px) 
{ 
    .apar_get{
    margin-top: 60px !important;
 }

} */
.footer-area-1{
    display:none;
}
.account_1 {
    border-bottom: none !important
}

 .apar_get{
    /* background-image: url('https://nd-devnad-apaar.dl6.in/htmltheam/public/image/apaar_card_bg.png'); */
    background-size: cover;
    background-repeat: no-repeat;
    min-height: calc(100vh - 102px);
    /* background-color: var(--color-light-green-3); */ background: -webkit-linear-gradient(110deg, #C9F0D8 60%, #D8F9E4 60%);
    background: -o-linear-gradient(110deg, #C9F0D8 60%, #D8F9E4 60%);
    background: -moz-linear-gradient(110deg, #C9F0D8 60%, #D8F9E4 60%);
    background: linear-gradient(110deg, #C9F0D8 60%, #D8F9E4 60%);
 }

 .apar_get h3{
        color: #272727;
        font-size: 30px;
        font-weight: 900;
        margin-bottom: 5px;
        font-family: var(--font-CabinetGrotesk-Extrabold);
 }
 .apar_get h3 span {
    color: #1B756B;
}
 .top_apar_get ul li{
    margin-bottom: 10px;
    display: block;
    font-family: var(--font-CabinetGrotesk-Medium);
    color: #272727;
    font-weight: 500;
    font-size: 20px;
 }
 .top_apar_get ul li::before{
    width: 10px;
    height: 10px;
    background: var(--color-primary-green);
    content: '';
    display: inline-block;
    border-radius: 50%;
    margin-right: 10px;

 }
 /* .apar_get{
    margin-top: 102px;
 } */
 .inner-page .card_get{
    max-width: 100%;
 }
 .card_get{
       
        box-shadow: 8px 9px 63px 0px rgba(0, 0, 0, 0.07);
         padding: 40px;
         max-width: 530px;
         width: 100%;
         border-radius: 12px;
         border: none;
         margin: 0 auto;
         background-color: var(--color-white);
         margin-bottom: 40px;
    }
    .card_get a {
        color: var(--color-black);
        text-decoration: none;
    }
    
    .card_get form .btn{
        
        font-style: normal;
        font-weight: 500;
        line-height: 20px;
        letter-spacing: 0.1px;
        border-radius: 5px;
        background: var(--color-primary-green);
        display: inline-flex;
        padding: 10px 24px;
        justify-content: center;
        align-items: center;
        gap: 8px;
        border-color: #edfcf3;
        width: 100%;
        margin-top: 24px!important;
        color: var(--color-white);
    }

    .card_get form .btn:hover{
        
        border-color:var(--color-primary-green);
       
    }
    .card_get form .form-label{
              color: var(--color-primary-green);
    font-family: var(--font-CabinetGrotesk-Medium);
    font-size: 16px;
    font-weight: bold;
        
    }
    .card_get form .form-control{
        margin-bottom: 10px;
    }
    .card_get form small{
        color: #525252;
        font-size: 14px;
        
    }
    .card_get .form-control {
        height: 43px;
    }
    .card_get .btn-success{
        background: #1B756B !important;
    }
    .card_get .btn-light{
        color: #1B756B !important;
        background: #ffff !important;
        border-radius: 4px !important;
        border: 1px solid #1B756B !important;
    }
    .card_get .btn-light .pr-20{
        padding-right:20px;
    }
    .apar_get .mt-80{
        margin-top:40px;
    }
    .apar_get .mt-80 ul{
        margin-left: 0px;
        margin-bottom: 20px;
        margin-top: 20px;
        list-style: disc;
    }
    
    form{
        margin-bottom:0px;
    }
    .card_get{

        font-family: var(--font-CabinetGrotesk-Medium);
    }
    .card_get h3{
        color: #272727;
        font-size: 30px;
        font-weight: 900;
        margin-bottom: 5px;
    font-family: var(--font-CabinetGrotesk-Extrabold);
    
    }
    .card_get h3 span{
        color: #1B756B;
    }
    .card_get p span{
        color: #1B756B;
    }
    .card_get p{
        color: #525252;  
        font-weight: 500;
        margin-bottom: 15px;
       
    }
    .inputs input{
        width: 60px;
        height: 60px !important;
    }
    #otp input[type=number]::-webkit-inner-spin-button, #otp input[type=number]::-webkit-outer-spin-button{-webkit-appearance: none;-moz-appearance: none;appearance: none;margin: 0}.card-2{background-color:#fff;padding:10px;width:350px;height:100px;bottom:-50px;left:20px;position:absolute;border-radius:5px}.card-2 .content{margin-top:50px}.card-2 .content a{color:red}.validate{border-radius:20px;height:40px;background-color:red;border:1px solid red;width:140px}
    #step_2 .card_get{
    margin-top: 50px;
}
.hoverImg img{
position: absolute;top: 190px;width: 111px;
visibility: hidden;
}
.hoverImg:hover img{
visibility: inherit !important;
}
/* apaar get css old end */

.welcome_head {
    margin-bottom: 20px;
}

.welcome_head strong{
font-size: 24px;
}
.welcome_head strong span{
    color: #007C32;
    }
.welcome_head p{
    margin-bottom: 15px;
} 
.welcome_head p i {
   color: #007C32;
    }
.welcome_card_get h3{
    margin-bottom: 5px;
}
.welcome-radio{
    margin-top: 10px;
}
.welcome-radio input{
    width: 20px;
    height: 20px;
}
.welcome-radio  .form-check-input:checked {
    background-color: var(--color-primary-green);
    border-color: var(--color-primary-green);
}
.welcome-radio  .form-check-input:checked{
    box-shadow:0 0 0 0.25rem #c9f0d8;    
}
.welcome-radio .form-check-input{
border: solid 2px rgba(0,0,0,.25);
}
.welcome-radio .form-check .form-check-label{
    color: #141414;
    opacity: 0.6;
}

/* loader */
.loader_main{
    background-color: #EAFDF0E8;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    flex-direction: column;
    padding: 15px;
    text-align: center;
}
.loader_main .loader {
    width: 48px;
    height: 48px;
    border: 5px solid var(--color-light-green-2);
    border-bottom-color: var(--color-primary-green);
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
    
    }

    @keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
} 
.loader_main p{
    color: var(--color-primary-green);
    margin-top: 50px;
    font-weight: bold;
  font-size: 20px;
}
