body{
    margin: 0;
    font-family: Inter;
}

:root {
    --primary-color: #a0c814;
    --secondary-color: #ef5f43;
    --body-font-color: #635959;
    --white-color: #ffffff;
    --black-color: #000000;
    --heading-colors: #151C25;
    --light-bg: #FAFBFF;
    --footer-bg: #0b0916;
    --innersubtitle: #0c043d;
    --sec-bg-color:#eaeaea;
}

p{
    font-size: 16px;    
}

.space-p-t {
    padding-top:60px;
}

.space-p-b {
    padding-bottom:60px;
}

.space-p-tb {
    padding:60px 0;
}

.space-m-t {
    margin-top:60px;
}

.space-m-b {
    margin-bottom:60px;
}

.space-m-tb {
    margin:60px 0;
}

.ctm-disclamer {
    background: var(--primary-color);
    color: #000;
    padding: 15px 0px;
    font-size: 14px;
}

/* Header Css Start*/
#header {
    padding:20px 0 15px;
    border-bottom:1px solid #838383;
    /* height:100px;*/
}

.bshadow {
    box-shadow: 0 3px 5px rgb(0 0 0 / 30%);
    background-color: #061314e6;
    padding: 16px 0 16px !important;
}

.extra-mrt {
    margin-top: 100px;
}
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/

.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}

.navbar li {
    position: relative;
}

.navbar a,
.navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 25px;
    font-size: calc(13px + (18 - 13) * ((100vw - 300px) / (1920 - 300)));
    color: var(--white-color);
    white-space: nowrap;
    transition: 0.8s;
    font-weight: 400;
    text-transform: uppercase;
    text-decoration: none;
}

.navbar a i,
.navbar a:focus i {
  font-size:13px;
  line-height:0;
  font-weight:600;
  margin-left:5px;
  margin-top:2px;
  color:#fff;
}
.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
  color: var(--primary-color)!important;
}

.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: -30px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 0px 0;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    background: var(--white-color);
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    /*box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.75);*/
    transition: 0.3s;
}

.navbar .dropdown ul li {
   min-width: 200px;
    /*height: 48px;*/
    padding: 0;
    border-bottom:1px solid #bebebec9;
}

.navbar .dropdown ul a {
   padding: 10px 15px;
   text-transform: none;
   font-size: 16px;
   color:var(--black-color);

}

.navbar .dropdown ul a i {
  font-size: 12px;
}
.navbar .dropdown ul {
    background-color:var(--white-color);

}
.navbar .dropdown ul li a {
    color: var(--body-font-color);
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover > a {
    color:var(--white-color)!important;
  background-color: var(--primary-color);
}

.navbar .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
}

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }

    .navbar .dropdown .dropdown:hover > ul {
        left: -100%;
    }
    .navbar a, .navbar a:focus{
        padding:10px 18px;
    }
}

.brand-logo img {
    max-width: 190px;
}
/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
    color: var(--white-color);
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

    .mobile-nav-toggle.bi-x {
        color: #fff;
    }

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }

    .big-box {
        margin-bottom: 15px !important;
    }

    .navbar ul {
        display: none;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgb(4 12 21 / 77%);
    transition: 0.3s;
    z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
    display: block;
    position: absolute;
   top: 55px;
   right: 15px;
   bottom: 15px;
   left: 15px;
   padding: 10px 0;
   background-color: var(--primary-color);
   overflow-y: auto;
   transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
   padding: 10px 20px;
   font-size: 15px;
   color: var(--white-color);
   border-bottom: 1px solid #fff;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
   color: #fff !important;
 }

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
   margin: 15px;
}

    .navbar-mobile .dropdown ul {
        position: static;
        display: none;
        margin: 0px 4px;
        padding: 0px 0;
        z-index: 99;
        opacity: 1;
        visibility: visible;
        background: var(--white-color);
        box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    }

.navbar-mobile .dropdown ul li {
     min-width: 200px;
     padding:0;

  
}

.navbar-mobile .dropdown ul a {
     padding: 10px 10px;
}

.navbar-mobile .dropdown ul a i {
   font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover > a {
  color: var(--white-color)!important;
  background-color: var(--primary-color);
}

.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

.nav-holder {
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.dropdown-menu.show {
    display: block;
    min-width: 180px;
    background-color: #313333;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    font-size: 14px;
    font-weight: 400;

}

.dropdown-menu .nav-link {
    padding: 0;
    margin: 0;
}


.navbar-nav .nav-link {
    color: #fff;
}

.dropend .dropdown-toggle {
    color: salmon;
    margin-left: 1em;
}

.dropdown-item:hover {
    background-color: lightsalmon;
    color: #fff;
}

.dropdown .dropdown-menu {
    display: none;
}

.dropdown:hover > .dropdown-menu,
.dropend:hover > .dropdown-menu {
    display: block;
    margin-top: 0.125em;
    margin-left: 0.125em;
}

@media screen and (min-width: 769px) {
    .dropend:hover > .dropdown-menu {
        position: absolute;
        top: 0;
        left: 100%;
    }

    .dropend .dropdown-toggle {
        margin-left: 0.5em;
    }
}

/* Header Css Start*/
/* Common Btns*/
.header-right {
    display: flex;
    justify-content: end;
    gap: 14px;
}

.header-btn {
    font-size: 13px;
    color: #383a3c;
    font-weight: 500;
    padding: 12px 25px;
    text-decoration: none;
    border: 0;
    border-radius: 0px;
    margin-bottom: 0;
    text-align: center;
    background: var(--primary-color);
    display: inline-block;
    border-radius:4px;
}
    .header-btn:hover {
        background: var(--secondary-color);
    }


    .main-banner {
        padding-top: 150px;
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        min-height: 600px;
        display: flex;
        align-items: center;
        position: relative;
        z-index: 99;
    }

    .bannerForm span {
        color: #000;
        font-weight: 600;
        font-size: 20px;
    }

.step-btn {
    display: flex;
    justify-content: center;
    gap: 20px;
}
/* .main-banner::before {
        content:"";
        background: linear-gradient(180deg, #000000CC 0%,#000000 100%);
        position:absolute;
        left:0;
        top:0;
        width:100%;
        height:100%;
        z-index:-1;
    
    } */
.banner-sec {
    background-image: url(/assets/images/banner.jpg);
    background-position: center;
    background-size: cover;
    min-height: 100%;
    background-color: linear-gradient(180deg, #000000CC 0%, var(--e-global-color-044b931) 100%);
    opacity: 1;
}


.main-banner h1 {
    font-size: 55px;
    font-weight: 700;
    color: var(--white-color);
    font-family: "Rasa", serif;
    line-height:1;
}

.main-banner h1 span {
    color: var(--primary-color);
}


.main-banner p{
    color:var(--white-color);
}

.formdiv {
    max-width: 475px;
    margin: 0 auto;
}

.banner-btn{
        font-size: 13px;
        color: #383a3c;
        font-weight: 500;
        padding: 12px 25px;
        text-decoration: none;
        border: 0;
        border-radius: 0px;
        margin-bottom: 0;
        text-align: center;
        background: var(--primary-color);
        display: inline-block;
        transition: 0.3s ease-in-out;
        border-radius:4px;
}

.banner-btn:hover {
        background: var(--secondary-color);
    
}

.btns-holder {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.cerdital-form {
    background-color: #fff;
    position: relative;
    padding: 30px 30px 40px;
    border-radius: 6px;
    margin-bottom: 50px;
}
    .cerdital-form p{
        margin:0;
    }
    .cerdital-form label {
        display: block;
        font-size: calc(13px + (16 - 13) * (100vw - 320px) / (1920 - 320));
        font-weight: 400;
        color: #000;
        margin-bottom: 8px;
    }

    .cerdital-form input,
    .cerdital-form select {
        border: 1px solid #F2F2F2;
        width: 100%;
        height: 48px;
        padding: 2px 10px;
        background-color: #F2F2F2;
        border-radius: 6px;
    }

        .cerdital-form input, .cerdital-form select input[type="email"] {
            border: 1px solid #F2F2F2;
            width: 100%;
            height: 48px;
            padding: 2px 10px;
            background-color: #F2F2F2;
            border-radius: 6px;
        }


    .cerdital-form .banner-btn {
     
    }

    .cerdital-form span {
        color: #000;
        font-weight: 600;
        font-size: 12px;
    }

    .cerdital-form .form-control:focus {
        border-color: #86b7fe !important;
        outline: 0;
        box-shadow: 0 0 0 .25rem rgba(13, 110, 253, .25) !important;
    }

    .cerdital-form input input[type="email"] {
        background-color: var(--bs-body-bg);
        border-color: #86b7fe !important;
        outline: 0;
        box-shadow: 0 0 0 .25rem rgba(13, 110, 253, .25) !important;
    }

/* --------------- Who We Are Section Start ------------------- */
.whoWe-ImgDiv {
    position: relative;
    z-index: 1;
}

.whoWe-section {
    background: #eaeaea;
    padding-top: 100px;
}

.greenBackBox {
    background: var(--primary-color);
    width: 360px;
    height: 306px;
    position: absolute;
    z-index: -1;
    top: 150px;
    left: -35px;
}


.whoWe-content h2 {
    color: var(--secondary-color);
    font-size: 16px;
    font-weight: 700;
    line-height: 2.5rem;
}

.main-heading {
    font-size: 44px;
    font-weight: 700;
    line-height: 1;
}

.whoWe-WhiteBox {
    position: absolute;
    bottom: -60px;
    right: -110px;
    background-color: #fff;
    z-index: 100;
    width: 290px;
    padding: 30px 27px;
    text-align: center;
}

.Wb-iconDiv {
    margin-bottom:15px;
}

.Wb-icon {
    fill: var(--secondary-color);
    color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.Wb-icon i.fa-regular.fa-bookmark {
    font-size: 30px;
}

.whoWe-WhiteBox h4 {
    font-size: 28px;
    font-weight: 600;
}

/* -------------------- Card section Start ------------ */
.cardBody {
    display: flex;
    gap: 20px;
    background: #fff;
    padding: 40px 30px;
}

.coloredBg {
    background-color: #eaeaea;
}

.cardBodyGreen {
    display: flex;
    gap: 20px;
    background: var(--primary-color);
    padding: 40px 30px;
}

.cardBody .cardIconGreen {
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px;
    height: 100px;
    padding: 20px;
}

.cardBody .cardIconWhite {
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px;
    height: 100px;
    padding: 20px;
}

.cardIconWhite {
    background: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px;
    height: 100px;
    padding: 20px;
}

.cardIconWhite img {
    filter: brightness(0) saturate(100%) invert(78%) sepia(68%) saturate(1726%) hue-rotate(23deg) brightness(96%) contrast(84%);
}

.cardContent h4 {
    font-size: 23px;
    font-weight: 700;
}


/* ------------------ Counter Section start -------------------- */

.counter-container .counter {
    font-size: 70px;
    color: var(--primary-color);
    font-weight: 700;
}

.counter-container h5 {
    font-size: 23px;
    font-weight: 700;
    padding-right: 33px;
    line-height: 1.3;
}


.studenImg {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.activeStudents {
    background: #fff;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: -33px;
    top: 78px;
}

.activeStudents span {
    font-size: 55px;
    font-weight: 700;
    color: var(--primary-color);
}

.activeStudents p {
    color: #383a3c;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 0;
}


.sec-bg-color{
    background-color: var(--sec-bg-color);
}
.ctm-simple-box {
    min-height: 250px;
    padding: 40px;
    text-align: center;
    position: relative;
}
.ctm-simple-box h3{
    font-size: 35px;
    margin-bottom: 15px;
    font-weight: 700;
}

.ctm-icon-box h3 {
    font-size: 28px;
    font-weight: 600;
}

.arrow-btn {
    position: absolute;
    left: 0;
    bottom: -28px;
    right: 0;
    margin: auto;
    width: 60px;
    height: 60px;
    border-radius: 60px;
    -webkit-border-radius: 60px;
    -moz-border-radius: 60px;
    -ms-border-radius: 60px;
    -o-border-radius: 60px;
    box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: 0.3s ease-in;
    -webkit-transition: 0.3s ease-in;
    -moz-transition: 0.3s ease-in;
    -ms-transition: 0.3s ease-in;
    -o-transition: 0.3s ease-in;
    background-color: #ffff;
    font-size: 20px;
    color:black;
}
.arrow-btn i{
    transition: 0.3s ease-in;
    -webkit-transition: 0.3s ease-in;
    -moz-transition: 0.3s ease-in;
    -ms-transition: 0.3s ease-in;
    -o-transition: 0.3s ease-in;
    color: #000;
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
}
.arrow-btn:hover i{
    transform: rotate(-35deg);
    -webkit-transform: rotate(-35deg);
    -moz-transform: rotate(-35deg);
    -ms-transform: rotate(-35deg);
    -o-transform: rotate(-35deg);
}
.ctm-icon-box {
    text-align: center;
    max-width: 360px;
    margin: 0 auto;
}
.ctm-icon-holder {
    width: 80px;
    height: 80px;
    background-color: #A0C814;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border-radius: 50px;
    font-size: 42px;
    color: #fff;
}
.ctm-icon-box p{
    margin-bottom: 0;
}

.cta-sec-1{
    min-height: 450px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center center;
    position: relative;
    z-index: 1;
}
.cta-title{
    font-size: 50px;
    line-height: 1;
    margin-bottom: 30px;
    font-weight: 700;
}
.ctm-overlay:after {
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    width: 100%;
    height: 100%;
    background-color: #000000a1;
    z-index: -1;
}
.global-btn {
    transition: 0.3s ease-in;
    background-color: #A0C814;
    padding: 10px 38px;
    font-size: 18px;
    text-decoration: none;
    color: #fff;
    margin-top: 10px;
    display: inline-block;
    -webkit-transition: 0.3s ease-in;
    -moz-transition: 0.3s ease-in;
    -ms-transition: 0.3s ease-in;
    -o-transition: 0.3s ease-in;
}
.global-btn:hover {
    background-color: #000;
    color: #fff;
}

.stepsNumb span {
    font-size: 55px;
    font-weight: 700;
    color: var(--primary-color);
}

.stepscont h5 {
    font-size: 35px;
    font-weight: 700;
    margin-bottom: 20px;
}

.easyStep-row {
    border-bottom: 1px solid #dcdcde;
    padding: 60px 10px 20px 20px;
}



.ctm-vid-box {
    display: flex;
}
.ctm-vid-box .vid-cont-holder{
    flex: 1 0 50%;
    max-width: 50%;
}
.vid-img-holder{
    min-height: 520px;
}
.vid-img-holder img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.vid-cont {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}
.vid-cont h3 {
    font-size: 37px;
    line-height: 1;
    margin-bottom: 20px;
}
.bg-green{
    background-color: #A0C814;
}
.bg-orange{
    background-color: #EF5F43;
}
.vid-cont-holder {
    padding: 40px 24px;
}


/* ----------------------- Testimonial Section Start ----------------- */

.testImg {
    position: relative;
    z-index: 1;
}

.testImg img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: center;
}

.testGreenBox{
    background: var(--primary-color);
    width: 360px;
    height: 330px;
    position: absolute;
    z-index: -1;
    bottom: -38px;
    left: -35px;
}

.testCont h5 {
    position: relative;
    font-size: 35px;
    font-weight: 700;
}

.testName {
    margin-top: 60px;
    position: relative;
}

.testCont:after {
    position: absolute;
    content: "";
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
    bottom: 0;
    left: 0;
}

.testCont h5:after {
    position: absolute;
    content: "";
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
    bottom: -30px;
    left: 0;
}

.testName h5 {
    position: relative;
    font-size: 23px;
    font-weight: 700;
    left: 35px;
    color: #383A3C;
}

.testName h5:before {
    position: absolute;
    content: "";
    width: 26px;
    height: 3px;
    background-color: #383A3C;
    left: -33px;
    top: 12px;
}

.testName span {
    color: var(--secondary-color);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ------------------ FAQ Section Start ------------------ */

.faqAccord .accordion-button {
    padding: 18px;
}

.faqAccord .accordion-body {
    padding: 18px;
}

.faqAccord .accordion-item {
    margin-bottom: 10px;
}

.faqAccord .accordion-button:not(.collapsed) {
    color: #000;
    background-color: var(--primary-color);
    box-shadow: var(--primary-color);
}

.accordion-button {
    transition: all 0.5s;   
}

.faqAccord .accordion-button:not(.collapsed)::after {
    background-color: #fff;
}

.faqAccord .accordion-button::after { 
    background-repeat: no-repeat;
    background-size: 14px;
    transition: var(--bs-accordion-btn-icon-transition);
    background-color: #a0c814;
    border-radius: 20px;
    background-position:center center;
}

.faqCont h5 {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 16px;
}

/*--------------- Privacy policy ----------------*/

.privacy-sec {
    margin-top: 80px;
}

.mid-title {
    font-size: 24px;
    font-weight: 600;
}

.ctm-btn-white {
    border: 1px solid #ffff;
    color: #fff;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    padding: 10px 10px;
    margin-top: 14px;
    transition:0.3s ease-in;
    border-radius:4px;
}

.ctm-btn-white:hover {
    background-color:#000;
    border-color:#000;
}


/* -------------------- Footer Start ----------------- */

footer {
    background-color: #121212;
    padding: 20px 0;
}

.footerLogo span {
    display: inline-block;
    color: #fff;
    padding-top: 6px;
}

.footerLogo a {
    color: #fff;
    display: flex;
    gap: 6px;
    align-items: center;
    text-decoration: none;
    padding-top: 6px;
}

.footerLogo img {
    padding-bottom: 20px;
}

.footerLogo a i {
    color: var(--primary-color);
}

.fooMenu h6 {
    color: #fff;
    font-size: 23px;
    font-weight: 700;
    margin-bottom: 20px;
}

.fooMenu ul li {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.fooMenu ul {
    list-style: none;
    padding: 0;
}

.fooMenu span a {
    text-decoration: none;
    color: #fff;
    padding-top: 6px;
    display: inline-block;
    font-size: 14px;
}

.fooMenu ul li i {
    color: var(--primary-color);
}

.fooMenu ul li {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.fooMenu span a:hover {
    color: var( --secondary-color);
}





/* ------------------ Company Logos Start ----------------------- */



hd h3.sty-2, .hd .h3.sty-2 {
    font-weight: 700;
    font-size: 42px;
    line-height: 1;
    margin-bottom: 50px;
}

.hd .h3 strong {
  font-weight: 700;
}
.hd .h3 span {
  font-weight: 300;
}
h3 span, .h3 span {
  color: var(--primaryColor);
  font-weight: 400;
}
.cl-iSecondary {
  color: var(--primary-color);
  line-height: 1.5;
}
.c-box {
  text-align: center;
}

.img-area {
    border-right: 1px solid #DEDEDE;
    min-height: 140px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.c-box img {
  height: auto;
  width: 100px;
  display: block;
  margin: 0 auto;
  margin-bottom: 10px;
}


.country-area .c-box img {
    height: 110px;
    width: 100px;
    display: block;
    margin: 0 auto;
    margin-bottom: 10px;
}
.img-area img {
    border-radius: 10px;

}
.country-area .c-box p {
  font-size: calc(13px + (16 - 13) * (100vw - 320px) / (1920 - 320));
  line-height: 1.3;
}
.logo-slider .swiper{
  padding: 30px 0 0 0;
}

.carousel-sec svg {
    color: #fff;
}

.carousel-sec .swiper-button-prev1 {
  position: absolute;
  background: var(--primaryColor);
  border-radius: 137.5px;
  border: none;
  top: 63%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 33px;
  height: 33px;
  padding: 0;
  left: 0;
  margin: 0 -60px;
  overflow: hidden;
  z-index: 2;
  opacity: 1;
  transition: 0.3s ease-in;
  -webkit-transition: 0.3s ease-in;
  -moz-transition: 0.3s ease-in;
  -ms-transition: 0.3s ease-in;
  -o-transition: 0.3s ease-in;
}

.carousel-sec .swiper-button-next1 {
  position: absolute;
 
  background: var(--primaryColor);
  border-radius: 137.5px;
  border: none;
  top: 63%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 33px;
  height: 33px;
  padding: 0;
  right: 0;
  margin: 0 -60px;
  overflow: hidden;
  z-index: 2;
  opacity: 1;
  transition: 0.3s ease-in;
  -webkit-transition: 0.3s ease-in;
  -moz-transition: 0.3s ease-in;
  -ms-transition: 0.3s ease-in;
  -o-transition: 0.3s ease-in;  
}

/* .carousel-sec .swiper-button-next1:hover, 
.carousel-sec .swiper-button-prev1:hover{
    background-color: var(--blackColor);
} */


.sliderArrows button.slick-arrow.slick-next {
  right: 0;
  left: auto;
}
.ic-02:before {
  content: "\e938";
}
.sb-nav{
  display: flex  ;
      justify-content: center;
      align-items: center;
  }
  .sb-nav i{
    color:white;
    line-height: 1;
  }

  .btn.btn-secondary {
    background-color: var(--primaryColor);
    border-color: var(--primaryColor);
    font-size: calc(14px + (18 - 14) * (100vw - 320px) / (1920 - 320));
    padding: 5px 35px;
    color: #fff;
    font-weight: 600;
    border-radius: 0;
}
.mt-30, .mtb-30 {
  margin-top: 30px;
}

.company-holder .swiper {
  position: relative !important;
  z-index: 2;
  -webkit-box-shadow: -5px 10px 30px rgba(0, 0, 0, 0.25);
  box-shadow: -5px 10px 30px rgba(0, 0, 0, 0.25);
  background-color: #fff;
}
.company-holder .swiper-wrapper{
  height: 100%;
  background-color: #fff;
  position: relative;
  padding: 40px 10px 20px;
}

.company-holder::before{
  content: '';
  position: absolute;
  height: 100%;
  background: #fff;
  right: 0;
  top: 0;
  width: 14px;
  z-index: 2;
}

.stripe-11 {
  padding: 50px 0 50px;
  position: relative;
}
.ctm-bg-gray {
  background-color: #f6f6f6;
}
.company-holder .swiper-slide .company-box {
    margin-bottom: 20px;
}
.company-box{
    margin-bottom: 20px;
  text-align: center;
    /* padding: 10px; */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    border-right: 1px solid #C7C7C7;
    min-height: 150px;

}
.company-box span{
  display: block;
  font-size: calc(15px + (16 - 15) * (100vw - 320px) / (1920 - 320));
  margin-bottom: 10px;
  font-weight: 600;
  cursor: pointer;
  color:black;
}
.company-box img{
  margin: 10px auto 0;
}

.carousel-sec .swiper-button-prev1 {
    position: absolute;
    background: #a0c814;
    border-radius: 137.5px;
    border: none;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 33px;
    height: 33px;
    padding: 0;
    left: 0;
    margin: 0 -60px;
    overflow: hidden;
    z-index: 2;
    opacity: 1;
    transition: 0.3s ease-in;
    -webkit-transition: 0.3s ease-in;
    -moz-transition: 0.3s ease-in;
    -ms-transition: 0.3s ease-in;
    -o-transition: 0.3s ease-in;
  }
.carousel-sec .swiper-button-next1:hover {
    background: var(--secondary-color);
}
.carousel-sec .swiper-button-prev1:hover {
    background: var(--secondary-color);
}


    .carousel-sec .swiper-button-next1 {
        position: absolute;
        background: #a0c814;
        border-radius: 137.5px;
        border: none;
        top: 50%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        width: 33px;
        height: 33px;
        padding: 0;
        right: 0;
        margin: 0 -60px;
        overflow: hidden;
        z-index: 2;
        opacity: 1;
        transition: 0.3s ease-in;
        -webkit-transition: 0.3s ease-in;
        -moz-transition: 0.3s ease-in;
        -ms-transition: 0.3s ease-in;
        -o-transition: 0.3s ease-in;
    }
   
  
  .sliderArrows button.slick-arrow.slick-next {
    right: 0;
    left: auto;
  }

  .Comp-logo-slider {
    box-shadow: -5px 10px 30px rgba(0, 0, 0, 0.25);
    padding: 30px 14px 10px;
}

/* .brands-box>.company-slide .li span {
    font-size: calc(15px + (16 - 15) * (100vw - 320px) / (1920 - 320));
    margin-bottom: 10px;
    font-weight: 600;
} */



.cardCarousel-div {
    margin: 0 10px;
    text-align: center;
}

.cardCarousel-div h4 {
    font-size: 22px;
    font-weight: 600;
    color: #3f444b;
}

.cardCarousel-cont p {
    padding: 0 10px;
}

.cardCarousel-cont {
    padding: 20px 2px;;
    background-color: #fff;
}

.card-btn {
    font-size: 13px;
    color: #000;
    padding: 8px 20px;
    text-decoration: none;
    border: 0;
    border-radius: 0px;
    margin-bottom: 0;
    text-align: center;
    background: transparent;
    border: 1px solid #a0c814;
    display: inline-block;
    transition: 0.3s ease-in-out;
    border-radius:4px;
}

.card-btn:hover {
    background: var(--secondary-color);
    color: #fff;
    border: 1px solid var(--secondary-color);
}

.rightsdiv span {
    color: #fff;
    font-size: 13px;
}

.fooNav ul {
    list-style: none;
    display: inline-flex;
    gap: 12px;
    margin: 0;
}

.fooNav ul a {
    text-decoration: none;
    color: #fff;
    font-size: 13px;
}



/* ----------------- Responsive Screens ------------------ */

@media (max-width: 1399.98px) {

   

    .main-banner h1 {
        font-size: 48px;
    }

    .main-banner {
        padding-top: 120px;
        min-height: 700px;
    }

    .main-heading {
        font-size: 38px;
        line-height: 1.2;
    }

    .carousel-sec .swiper-button-next1 {
        right: 28px;
        top: 60%;
    }

    .carousel-sec .swiper-button-prev1 {
        left: 30px;
        top: 60%;
    }
    
    .vid-cont-holder {
        padding: 20px;
    }
    
    .vid-cont h3 {
        font-size: 34px;
    }
    
    .cardCarousel-cont {
        padding: 20px 2px;
    }

    .cardCarousel-cont p {
        padding: 0;
    }
    
    
    .whoWe-WhiteBox {
        right: -42px;
        bottom: -70px;
        width: 277px;
        padding: 18px 14px;
    }
    
    .greenBackBox {
        width: 300px;
        height: 245px;
        top: 147px;
        left: -30px;
    }

    .cardCarousel-div h4 {
        font-size: 20px;
    }

    .ctm-simple-box h3 {
        font-size: 30px;
    }

    .ctm-simple-box {
        min-height: 250px;
    }

    .ctm-icon-box h3 {
        font-size: 24px;
        font-weight: 600;
    }

    .easyStep-row {
        padding: 50px 10px 20px 20px;
    }

    .stepscont h5 {
        font-size: 28px;
        margin-bottom: 12px;
    }

 }


@media (max-width: 1199.98px) {

    .space-p-tb {
        padding: 40px 0;
    }

    .space-p-t {
        padding-top: 40px;
    }

    .space-p-b {
        padding-bottom: 40px;
    }

    .main-banner h1 {
        font-size: 38px;
    }

    .cerdital-form {
        padding: 20px 14px 36px;
    }

        .cerdital-form .banner-btn {
            bottom: 16px;
            right: 155px;
        }

        .cerdital-form span {
        }

    .whoWe-WhiteBox {
        right: -18px;
        bottom: -70px;
        width: 277px;
    }

    .greenBackBox {
        height: 188px;
    }

    .main-heading {
        font-size: 33px;
    }

    .ctm-simple-box {
        padding: 26px;
        min-height: 234px;
    }

        .ctm-simple-box h3 {
            font-size: 26px;
        }

    .vid-cont h3 {
        font-size: 27px;
    }

    .vid-img-holder {
        min-height: 450px;
    }

    .slideArrows {
        display: none;
    }

    .slick-dots li.slick-active button:before {
        color: var(--primary-color);
        font-size: 12px;
    }

    .slick-dots li button:before {
        font-size: 8px;
    }

    .slick-dots {
        bottom: -40px;
    }

}

@media (max-width: 991.98px) {

    .space-p-tb {
        padding: 30px 0;
    }

    .space-p-t {
        padding-top: 30px;
    }

    .space-p-b {
        padding-bottom: 30px;
    }

    .carousel-sec .swiper-button-prev1 {
        bottom: 20px;
        left: 50%;
    }

    .carousel-sec .swiper-button-next1 {
        top: 100%;
        right: 50%;
    }

    .Comp-logo-slider {
        margin-bottom: 50px;
    }

    .formdiv {
        display: none;
    }

    .cerdital-form .banner-btn {
        bottom: 16px;
        right: 260px;
    }

    .greenBackBox {
        display: none;
    }

    .whoWe-WhiteBox {
        width: 100%;
        right: 0;
        bottom: 0;
    }

    .whoWe-content {
        padding-top: 40px;
    }

    .cardCarousel-cont {
        min-height: auto;
    }

    .ctm-simple-box {
        padding: 20px 10px;
        min-height: 244px;
    }

    .counter-container .counter {
        font-size: 50px;
    }

    .counter-container h5 {
        font-size: 16px;
        padding-right: 0;
    }


    .ctm-icon-holder img {
        width: 40px !important;
    }

    .ctm-icon-holder {
        width: 70px;
        height: 70px;
    }

    .ctm-icon-box h3 {
        font-size: 17px;
    }

    .stepscont h5 {
        font-size: 24px;
        margin-bottom: 8px;
    }

    .stepsNumb span {
        font-size: 46px;
    }

    .studenImg {
        max-width: 350px;
    }

    .activeStudents {
        left: -50px;
        top: 40px;
        width: 160px;
        height: 160px;
    }

        .activeStudents span {
            font-size: 42px;
        }

    .arrow-btn {
        width: 42px;
        height: 42px;
        font-size: 16px;
        bottom: -20px;
    }

    .ctm-simple-box h3 {
        font-size: 20px;
        margin-bottom: 8px;
    }

}

@media (max-width: 767.98px) {
    .main-banner{
        margin-bottom:0;
    }
    .ctm-simple-box {
        min-height: auto;
        margin-bottom: 38px;
    }

    .ctm-icon-box {
        margin-bottom: 10px;
    }

    .easyStep-row {
        padding: 22px 10px 10px 20px;
    }

}

@media (max-width: 575.98px) {

    .header-right {       
        gap: 5px;
    }

    .ctm-h-btn {
        display:none;
    }

    .ctm-disclamer {
        font-size: 12px;
    }

    .cerdital-form input, .cerdital-form select {
        height: 38px;
    }

        .cerdital-form input, .cerdital-form select::placeholder {
            font-size: 14px;
        }

    .form-select {
        font-size: 14px;
    }

    .main-banner {
        padding-top: 108px;
        min-height: auto;
        padding-bottom:0;
    }

    .brand-logo img {
        max-width: 115px;
    }

    .header-btn {
        font-size: 10px;
        padding: 9px 12px;
    }

    .img-area {
        border-right: transparent;
    }

    .counter-container h5 {
        border-bottom: 1px solid #ccc;
        margin-bottom: 10px;
        padding-bottom: 10px;
    }

    .main-banner h1 {
        font-size: 24px;
    }

    .main-banner p {
        font-size: 14px;
    }

    .cerdital-form span {
        font-size: 18px;
        margin-top: 10px;
    }

    .cerdital-form .banner-btn {
        left: 70px;
        width: 150px;
        padding: 10px 0px;
    }

    .cerdital-form {
        padding: 20px 14px 25px;
    }

    .whoWe-WhiteBox h4 {
        font-size: 20px;
    }

    .whoWe-WhiteBox {
        padding: 5px 6px;
        
    }

    .whoWe-content {
        padding-top: 10px;
    }

    .main-heading {
        font-size: 20px;
    }

    .space-p-tb {
        padding: 20px 0;
    }

    .cardCarousel-cont {
        min-height: auto;
        padding:16px 10px;
    }

    .studenImg {
        max-width: 224px;
    }

    .activeStudents span {
        font-size: 30px;
    }

    .activeStudents {
        left: -49px;
        width: 120px;
        height: 120px;
        top: 17px;
    }

    .space-p-b {
        padding-bottom: 20px;
    }

    .ctm-simple-box h3 {
        font-size: 18px;
    }

    .vid-img-holder img {
    }

    

    .ctm-vid-box .vid-cont-holder {
        max-width: 100%;
    }

    .company-box {
        border-right: transparent;
    }

    .Comp-logo-slider {
        margin-bottom: 10px;
    }

    .easyStep-row {
        margin-bottom: 10px;
        padding: 10px 0px 0px 0px;
    }

    .faqAccord .accordion-button {
    }

    .faqAccord .accordion-button {
        padding: 10px;
    }

    .faqAccord .accordion-body {
        padding: 10px;
    }

    .cerdital-form input, .cerdital-form select {
        height: 38px;
    }

        .cerdital-form input, .cerdital-form select::placeholder {
            font-size: 14px;
        }

    .form-select {
        font-size: 14px;
    }

}


/*popup*/


/* Popup Form Styling */


.ctm-close-btn {
    position: absolute;
    right: 12px;
    top: 8px;
}
/*.copuncotnent{
    text-align:center;
}
*/
.copuncotnent h2 span {
    display: block;
    font-size: calc(22px + (28 - 22) * ((100vw - 300px) / (1920 - 300)));
    color: var(--pri-color);
    text-transform: uppercase;
    font-weight: 700;
}

.copuncotnent h2 {
    font-size: calc(20px + (24 - 20) * ((100vw - 300px) / (1920 - 300)));
    font-weight: 700;
    color: var(--black-color);
}

.copuncotnent p {
    font-size: calc(13px + (16 - 13) * ((100vw - 300px) / (1920 - 300)));
    font-weight: 600;
    color: var(--black-color);
}

    .copuncotnent p span {
        font-weight: 700;
        color: var(--pri-color);
        font-size:13px;
    }


.right_form input, .right_form textarea, .send-form .form-select {
    height: 55px;
    border-radius: 5px;
    padding: 0 15px;
    font-family: system-ui;
    font-weight: 400;
    border: 1px solid #c5c5c5;
    margin: 0 0 15px;
    width: 100%;
    background-color: var(--white-color);
}
    .right_form input[type=text], .right_form input[type=tel], .right_form input[type=email] {
        background: rgb(241 248 255);
        border-radius: 6px;
        border: 1px rgb(241 248 255) solid;
        backdrop-filter: blur(254px);
        height: 42px;
        position: relative;
        padding-left: 15px;
        margin-bottom: 15px;
    }
.right_form .form-select {
    background-color: rgb(241 248 255);
    border-radius: 6px;
    border: 1px rgb(241 248 255);
    /* backdrop-filter: blur(254px);*/
    height: 42px;
    position: relative;
    padding-left: 10px;
    margin-bottom: 15px;
}

.right_form .popup_new_btn {
    width: 100%;
    background: var(--pri-color);
    border: none;
    text-transform: capitalize;
    font-weight: 500;
    color: #fff;
    text-transform: uppercase;
    height: 50px;
    border-radius: 0 !important;
    font-size: 18px;
}

#lp-popup .modal-content {
    border-radius: 21px;
}

.ctm-btn-dark {
    width: 100%;
    margin: 0 auto;
    padding: 10px 40px;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 0;
    border-radius: 5px;
    background-color: var(--primary-color) !important;
    color: #fff;
    font-weight: 500;
}

.modal .form-btn-submit {
    width: 100%;
    margin: 0 auto;
    padding: 10px 40px;
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 0;
    border-radius: 5px;
}

.ctm-green-text {
    color:var(--primary-color) !important;
}
/* Popup Form Styling End */
/*popup end*/






/*thank you css Start*/

.thanks-ban h1 {
    font-weight: 600;
    font-size: 50px;
    line-height: 58px;
    text-align: center;
    color: #A0C814;
}

.thanks-ban h2 {
    font-weight: 600;
    font-size: 49px;
    line-height: 58px;
    text-align: center;
    color: #FFFFFF;
    margin-bottom: 18px;
}

.thanks-ban span {
    display: inline-block;
    background: #A0C814;
    border-radius: 30px;
    font-weight: 400;
    font-size: 19px;
    line-height: 28px;
    text-align: center;
    color: #FFFFFF;
    padding: 10px 36px;
}

.education-box h3 {
    font-weight: 500;
    font-size: 37px;
    line-height: 58px;
    text-align: center;
    color: #3B3934;
    margin-bottom: 50px;
}

.edu-box-inner span {
    display: inline-block;
    font-weight: 500;
    font-size: 23px;
    line-height: 40px;
    color: #3B3934;
    position: relative;
    margin-bottom: 8px;
}

    .edu-box-inner span:before {
        content: '';
        position: absolute;
        
        background-image: url('images/icons/tic-icon.webp');
        width: 21px;
        height: 21px;
        left: -28px;
        top: 11px;
    }

.edu-box-inner p {
    font-weight: 400;
    font-size: 16px;
    line-height: 31px;
    color: #7E7979;
}

.why-opt-top h3 {
    font-weight: 500;
    font-size: 37px;
    line-height: 58px;
    text-align: center;
    color: #3B3934;
    margin-bottom: 15px;
}

.why-opt-top p {
    font-weight: 400;
    font-size: 16px;
    line-height: 31px;
    text-align: center;
    color: #7E7979;
    margin-bottom: 40px;
}

.why-opt {
    background-color: #EBEBEC;
}

.why-box {
    background: #FFFFFF;
    border-radius: 15px;
}

    .why-box h4 {
        font-weight: 500;
        font-size: 27px;
        line-height: 28px;
        color: #3B3934;
    }

.why-box {
    display: flex;
    gap: 10px;
    background-color: white;
    padding: 10px 25px 12px 12px;
    align-items: center;
}
.why-img-cover img{
    border-radius:15px;
}
.why-box p {
    font-weight: 400;
    font-size: 16px;
    line-height: 27px;
    color: #7E7979;
}

.acc-logo h5 {
    font-weight: 500;
    font-size: 37px;
    line-height: 58px;
    text-align: center;
    color: #3B3934;
    margin-bottom: 15px;
}

.acc-logo p {
    font-weight: 400;
    font-size: 16px;
    line-height: 31px;
    text-align: center;
    color: #7E7979;
    margin-bottom: 35px;
}

.thank-testi {
    background-color: #EBEBEC;
}

    .thank-testi h5 {
        font-weight: 500;
        font-size: 37px;
        line-height: 58px;
        text-align: center;
        color: #3B3934;
    }

    .thank-testi .testi-parah {
        font-weight: 400;
        font-size: 16px;
        line-height: 31px;
        text-align: center;
        color: #7E7979;
        margin-bottom: 50px;
    }
.oad-ban {
    min-height: 512px;
    display: flex;
    align-items: center;
    text-align: center;
}
.thanks-ban {
    padding-top: 100px;
}
.testimonial-slider-item {
    padding: 41px;
    margin-bottom: 25px;
    background-color: #faf7f2;
}
    .testimonial-slider-item .star-icon {
        margin-bottom: 15px;
    }
    .testimonial-slider-item p {
        color: #5b5952;
        margin-bottom: 30px;
        font-style: italic;
        font-weight: 500;
    }

    .testimonial-slider-item .user .image {
        flex: 0 0 auto;
        display: block;
        margin-right: 15px;
    }
    .testimonial-slider-item .quote-icon {
        font-size: 22px;
        color: var(--primaryColor);
    }
    .testimonial-slider-item .star-icon li svg {
        font-size: 18px;
        color: rgb(243, 168, 2);
    }
    .testimonial-slider-item .user .image {
        flex: 0 0 auto;
        display: block;
        margin-right: 15px;
    }
        .testimonial-slider-item .user .image img {
            width: 48px;
            height: 48px;
            border-radius: 100%;
        }
    .testimonial-slider-item .user .content h3 {
        margin-bottom: 5px;
        font-size: 16px;
        font-weight: 700;
    }
    .testimonial-slider-item .user .content span {
        font-size: 14px;
        color: rgba(85, 85, 85, 0.8);
    }

    .testimonial-slider-item p {
        min-height: 144px;
        line-height: 1.8;
    }
    .testimonial-slider-item .quote-icon {
        font-size: 22px;
        color: #A0C814;
    }
/* the slides */
.testi-slider-1 .slick-slide {
    margin: 0 10px;
}
/* the parent */
.testi-slider-1 .slick-list {
    margin: 0 -10px;
}
.testi-slider-1 .swiper-btn .swiper-button-next::before {
    content: "\f10a";
}
.testi-slider-1 .swiper-btn .swiper-button-prev::before {
    content: "\f10b";
}
.testi-slider-1 .swiper-btn .swiper-button-next {
    right: 49%;
}
.testi-slider-1 .swiper-btn .swiper-button-prev {
    left: 51%;
}
.testi-slider-1 .swiper-btn .swiper-button-next, .testi-slider-1 .swiper-btn .swiper-button-prev {
    top: 110%;
    font-size: 26px;
    margin-right: 20px;
    color: var(--blackColor);
    transition: var(--transition);
}
.testi-slider-1 .swiper-btn .swiper-button-next, .testi-slider-1 .swiper-btn .swiper-button-prev {
    top: 110%;
    font-size: 26px;
    margin-right: 20px;
    color: var(--blackColor);
    transition: var(--transition);
}
.swiper-btn {
    display: flex;
    gap: 20px;
    justify-content:center;
}
    /*thank  you css end*/

.logo-slide-holder{
    display:flex;
    justify-content:center;
    align-items:center;
}
.acc-logo-box {
    display: flex;
    justify-content: center;
}
@media (max-width: 1599.98px) {
    .carousel-sec .swiper-button-next1{
        right:20px;
    }
    .carousel-sec .swiper-button-prev1{
        left:20px;
    }
    .whoWe-WhiteBox{
        right:-42px;
    }
}

    @media (max-width: 1399.98px) {
        .why-opt-top p {
            font-size: 17px;
        }

        .acc-logo p {
            font-size: 17px;
        }
    }

    @media (max-width: 1199.98px) {
        .thanks-ban h2 {
            font-size: 47px;
        }

        .why-box h4 {
            font-size: 22px;
        }

        .why-opt-top p {
            font-size: 14px;
            line-height: 25px;
        }

        .why-opt-top h3 {
            margin-bottom: 0;
        }

        .acc-logo h5 {
            font-size: 32px;
            line-height: 40px;
            margin-bottom: 5px;
        }

        .acc-logo p {
            font-size: 14px;
            line-height: 25px;
        }

        .vid-img-holder {
            min-height: 450px;
        }
    }

@media (max-width: 991.98px) {
    .thanks-ban h1 {
        font-size: 39px;
    }

    .thanks-ban span {
        font-size: 15px;
    }

    .thanks-ban h2 {
        font-size: 35px;
    }

    .education-box h3 {
        font-size: 30px;
        margin-bottom: 10px;
    }

    .edu-box-inner span {
        font-size: 20px;
        margin-bottom: 0;
    }

    .edu-box-inner p {
        font-size: 16px;
        margin-bottom: 0;
    }

    .why-box {
        gap: 25px;
    }

    .why-opt-top p {
        font-size: 12px;
        line-height: 21px;
        margin-bottom: 20px;
    }

    .why-opt-top h3 {
        font-size: 30px;
    }

    .ctm-vid-box {
        flex-direction: column-reverse;
        margin-bottom: 16px;
    }

        .ctm-vid-box .vid-cont-holder {
            max-width: 100%;
        }

    .vid-img-holder {
        min-height: auto;
    }

    .whoWe-WhiteBox {
        position: relative;
    }
    .whoWe-WhiteBox {
        right: 0px;
    }
    .student-sec{
        padding-bottom:20px;
    }
    }

    @media (max-width: 767.98px) {
        .thanks-ban h1 {
            font-size: 29px;
            line-height: 30px;
        }

        .thanks-ban h2 {
            font-size: 25px;
            line-height: 30px;
        }

        .thanks-ban span {
            padding: 10px 10px;
        }

        .thanks-ban span {
            font-size: 12px;
        }

        .education-box h3 {
            font-size: 22px;
            margin-bottom: 0px;
        }

        .edu-box-inner span {
            font-size: 17px;
            margin-bottom: 0;
        }

        .edu-box-inner p {
            font-size: 14px;
            margin-bottom: 0;
        }

        .acc-logo h5 {
            font-size: 30px;
        }

        .acc-logo p {
            font-size: 13px;
            line-height: 23px;
        }

        .thank-testi h5 {
            font-size: 30px;
        }

        .thank-testi .testi-parah {
            font-size: 20px;
        }

        .rightsdiv {
            text-align: center;
        }
    }

    @media (max-width: 575.98px) {
        .thanks-ban h1 {
            font-size: 23px;
            line-height: 27px;
        }

        .thanks-ban h2 br {
            display: none;
        }

        .thanks-ban h2 {
            font-size: 18px;
            line-height: 23px;
        }

        .thanks-ban span {
            line-height: 15px;
        }

        .thanks-ban {
            padding-top: 80px;
        }

        .oad-ban {
            min-height: 369px;
        }

        .education-box h3 {
            font-size: 20px;
            line-height: 30px;
            margin-bottom: 10px;
        }

        .edu-box-inner span {
            font-size: 16px;
            margin-bottom: 0;
        }

        .edu-box-inner p {
            font-size: 12px;
            margin-bottom: 0;
            line-height: 22px;
        }

        .edu-box-inner span {
            line-height: 30px;
        }

        .why-box {
            flex-direction: column;
        }

        .why-opt-top h3 {
            font-size: 21px;
            line-height: 34px;
        }

        .acc-logo h5 {
            font-size: 26px;
        }

        .acc-logo p {
            font-size: 12px;
            line-height: 20px;
        }

        .thank-testi h5 {
            font-size: 22px;
            line-height: 35px;
        }

        .thank-testi .testi-parah {
            font-size: 15px;
            line-height: 22px;
            margin-bottom: 25px;
        }
    }

    @media (max-width: 479.98px) {
        .step-btn {
            flex-direction: column;
            gap: 10px;
        }
    }









