
*{
    
    margin: 0; padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    outline: none;
    list-style: none; 
    color: #000000;
   
}

h1,h2,h3,h4,h5,p{
    margin: 0;
    padding: 0;
}
.container{
    max-width: 1300px !important;
    width: 100%;
}
.main-nav{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    transition: all .3s linear;
    z-index: 100;
}
.main-nav.bgchange{
    /* background: rgb(198, 210, 212); */
    background: linear-gradient(90deg, #19171E 0%, #1A171D 100%);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    transition: all .3s linear;
}
.main-nav .navbar{
    height: 80px;
    align-items: center !important;
    flex-wrap: nowrap;
    position: unset;
    transition: all .3s linear;
}
.pt-80{
    padding-top: 80px;
}
.main-nav .nav-items{
    display: flex;
    align-items: center;
    gap: 48px;
}
.nav-items a{
    font-family: Outfit;
    font-size: 16px;
    font-weight: 600;
    line-height: 44px;
    text-align: left;
    color: #FFFFFF;    
    text-decoration: none;
    padding: unset;
    height: 40px;
}
.nav-items a:hover{
    color: white;
}
.nav-items a.active{
    border-bottom: 2px solid #00AFEF;
    color: var(--global_blue);
}
.main-nav #nav-toggler{
    display: none;
}

.hero-section{
    height: 1500px;
    background: rgb(6, 231, 175);
}
.home_hero_sec{
    background-image: url(../images/home_hero_bg2.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    /* height: 100vh; */
    height: 100%;
    padding: 100px 0px 20px 0px;
    display: flex;
    align-items: center;
}
.home_hero_main{
    display: flex;
    align-items: center;
    gap: 100px;
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
    justify-content: center;
    /* justify-content: space-between; */
}
.home_hero_image{
    position: relative;
}
.home_hero_image img {
    /* position: absolute; */
    animation: randomMotion 10s infinite;
}
@keyframes randomMotion {
    0% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(10px, -10px);
    }
    50% {
        transform: translate(-10px, 10px);
    }
    75% {
        transform: translate(-10px, -10px);
    }
    100% {
        transform: translate(0, 0);
    }
}
@keyframes randomDotsMotion {
    0% {
        transform: translate(20, -10);
    }
    25% {
        transform: translate(30px, -20px);
    }
    50% {
        transform: translate(-40px, -23px);
    }
    75% {
        transform: translate(-50px, 20px);
    }
    100% {
        transform: translate(10, -40);
    }
}
.dots {
    position: absolute;
    width: 50px;
    height: 50px;
}

.dots img {
    /* width: 50% !important; */
    height: auto;
}
.d_1 img{
    position: absolute;
    top: 100px;
    left: 230px;
    width: 36px !important;
    height: 36px !important; 
}
.dots:nth-child(2) {
    top: 50px;
    right: 200px;
    animation: randomDotsMotion 6s infinite;
}
.d_3 img{
    width: 26px !important;
    height: 26px !important; 
}
.dots:nth-child(3) {
    bottom: 100px;
    left: 0;
    animation: randomDotsMotion 7s infinite;
}
.d_2 img{
    width: 26px !important;
    height: 26px !important; 
}
.dots:nth-child(4) {
    top: 100px;
    left: 0;
    animation: randomDotsMotion 8s infinite;
}
.d_4 img{
    width: 44px !important;
    height: 44px !important; 
}
.dots:nth-child(5) {
    bottom: 0;
    right: 0;
    animation: randomDotsMotion 9s infinite;
}
.d_5 img{
    width: 22px !important;
    height: 22px !important; 
}
.dots:nth-child(6) {
    bottom: 0%;
    left: 20%;
    animation: randomDotsMotion 10s infinite;
}
.our__partner_main {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
}
.swiper-slide{
    display: flex;
    text-align: center;
    justify-content: center;
    margin: 0 auto;
}
.home_hero_image img{
    width: 100%;
    max-width: 500px;
}
.nav_login_btn{
    width: 131px;
    height: 42px !important;
    background-color: #00AFEF;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}
.nav_login_btn:hover{
    color: #00AFEF !important;
}
.nav_login_btn:hover{
    color: var(--global_blue);
    background-color: #FFFFFF;
    transition: linear all .3s;
    border: none !important;
}
.home_hero_content{
    max-width: 401px;
}
.home_hero_content h2{
    font-family: Inter;
    font-size: 52px;
    font-weight: 600;
    line-height: 60px;
    text-align: left;
    color: #D9D9D9;
}
.home_hero_content p{
    font-family: Outfit;
    font-size: 18px;
    font-weight: 300;
    line-height: 27px;
    text-align: left;
    color: #FFFFFF;
    padding-top: 50px;
}
.start_now_btn{
    width: 151px;
    height: 60px;
    border: 1px solid #A6B2EF;
    border-radius: 4px;
    background-color: #A6B2EF26;
    font-family: Outfit;
    font-size: 18px;
    font-weight: 400;
    line-height: 22px;
    text-align: center;
    color: #FFFFFF;
    margin-top: 30px;
    text-decoration: none;
    align-items: center;
    display: flex;
    justify-content: center;
}
.start_now_btn:hover{
    background-color: black;
    color: white;
    transition: linear all .3s;
    border: 1px solid white
}
.our__partner_main h3{
    font-family: Outfit;
    font-size: 14px;
    font-weight: 500;
    line-height: 21px;
    text-align: center;
    color: #FFFFFFAD;
}
.our__partner_main{
    text-align: center;
}
.partner_bx{
    width: fit-content;
    background-color: #FFFFFF;
    height: 77px;
    border-radius: 10px;
}
.partner_bx img{
    width: 70%;
    height: 100%;
    object-fit: scale-down;
}
.partner__1{
    max-width: 229px;
    width: 100%;
    padding: 6px ;
}
.partner__2{
    max-width: 249px;
    width: 100%;
    padding: 6px ;
}
.our__partner_sub_main{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    margin-top: 30px;
}
.our__partner_main{
    margin-top: 70px;
}
.why_balela_sec{
    /* background-image: url(../images/lines__bg.png); */
    background-repeat: no-repeat;
    /* background-size: 50% 150% 100px; */
    background-position: left;
    /* height: 400px; */
    /* width: 400px; */
    padding: 50px 0px;
    background-color: #19161D;
}
.why_balela_image img{
    width: 100%;
    max-width: 500px;
    /* height: 550px; */
}
.why_balela_image{
    position: relative;
}
.why_balela_image__bx{
    width: 150px;
    height: 120px;
    background-color: #00000099;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: absolute;
    top: 0px;
    left: 52px;
}
.why_balela_main{
    display: flex;
    align-items: center;
    gap: 70px;
    justify-content: center;
}
.why_balela_image__bx h2{
    font-family: Outfit;
    font-size: 49px;
    font-weight: 600;
    line-height: 59px;
    text-align: center;
    color: white;
}
.why_balela_image__bx p{
    font-family: Outfit;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    text-align: center;
    color: #FFFFFF;
}
.why_balela_content{
    max-width: 570px;
}
.why_balela_content p{
    font-family: Outfit;
    font-size: 14px;
    font-weight: 500;
    line-height: 18.2px;
    letter-spacing: 1px;
    text-align: left;
    color: #FFFFFFAD;
}
.why_balela_content h2{
    font-family: Outfit;
    font-size: 48px;
    font-weight: 500;
    line-height: 50px;
    letter-spacing: -0.699999988079071px;
    text-align: left;
    color: #FFFFFF;
    padding-top: 5px;
}
.why_balela_content h3{
    font-family: Outfit;
    font-size: 18px;
    font-weight: 300;
    line-height: 23px;
    text-align: left;
    color: #FFFFFFAD;
    padding-top: 20px;
}
.why_balela_content a{
    font-family: Outfit;
    font-size: 16px;
    font-weight: 500;
    line-height: 36px;
    text-align: left;
    color: var(--global_blue);
    width: fit-content;
    text-decoration: none;
    text-decoration: underline;
    display: flex;
    align-items: center;
    gap: 4px;
}
.why_balela_content__image2{
    position: relative;
}
.why_balela_content__image2 img{
    width: 100%;
    max-width: 430px;
    height: 270px;
    margin-top: 30px;
}
.why_balela_content__image2__bx{
    position: absolute;
    bottom: 0;
    right: 24.5%;
    width: 180px;
    height: 130px;
    background-color: #00000099;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.why_balela_content__image2__bx h2{
    font-family: Outfit;
    font-size: 49px;
    font-weight: 600;
    line-height: 59px;
    text-align: center;
    color: white;
}
.why_balela_content__image2__bx p{
    font-family: Outfit;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    text-align: center;
    color: #FFFFFF;
}
.marquee__slider_sec{
    background-color: #19161D;
    padding: 20px 0px;
}
.marquee__slider_sec marquee{
    font-family: Outfit;
    font-size: 50px;
    font-weight: 500;
    line-height: 50px;
    text-align: left;
    color: #A6B2EF36;
    padding: 10px 0px;
}
.marquee__slider_sec marquee .bx{
    display: inline-block;
    width: 13px;
    height: 13px;
    border-radius: 50px;
    background-color: #A6B2EF36;
}
.balela_possibilities_sec{
    background-image: url(../images/balela_possibilities_sec_bg.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    padding: 40px 0px 100px 0px;
}
.balela_possibilities_main p{
    font-family: Outfit;
    font-size: 14px;
    font-weight: 500;
    line-height: 18.2px;
    letter-spacing: 1px;
    text-align: left;
    color: #FFFFFFAD;
}
.balela_possibilities_main h2{
    font-family: Outfit;
    font-size: 48px;
    font-weight: 500;
    line-height: 57.6px;
    letter-spacing: -0.699999988079071px;
    text-align: left;
    color: #FFFFFF;
}
.balela_possibilities_main span{
    color: #808080;
}
.balela_cards{
    max-width: 330px;
    padding: 30px 32px;
    text-align: center;
    border-left: 1px solid #A6B2EF26;
}
.balela_cards h2{
    font-family: Outfit;
    font-size: 24px;
    font-weight: 500;
    line-height: 28.8px;
    text-align: center;
    color: #FFFFFF;
    padding-top: 20px;
}
.balela_cards p{
    font-family: Outfit;
    font-size: 18px;
    font-weight: 400;
    line-height: 27px;
    text-align: center;
    color: #FFFFFF99;
    padding-top: 20px;
}
.balela_possibilities_cards_main{
    display: flex;
    align-items: center;
    margin-top: 40px;
}
.students_reviews_sec{
    padding: 100px 0px 20px 0px;
    background-image: url(../images/students_reviews_sec_bg.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
}
.students_reviews_cards{
    padding: 31px;
    border: 1px solid #A6B2EF26;
    background-color: #A6B2EF26;
    border-radius: 10px;
    max-width: 452px;
}
.students_reviews_cards h2{
    font-family: Outfit;
    font-size: 14px;
    font-weight: 600;
    line-height: 18.2px;
    letter-spacing: 1px;
    text-align: left;
    color: #FFFFFF;
    padding-top: 19px;
    text-transform: uppercase;
}
.students_reviews_cards p{
    font-family: Outfit;
    font-size: 18px;
    font-weight: 300;
    line-height: 27px;
    text-align: left;
    color: #D0D0D0;
    padding-top: 19px;
}
.students_reviews_image img{
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 50px;
}
.students_reviews_slider{
    margin-top: 50px;
    padding-bottom: 50px;
    padding-left: 20px;
    padding-right: 20px;
}
.swiper-pagination-bullet-active{
    background-color: #6473c2;
}
.swiper-pagination-bullet{
    background-color: #A6B2EF4A;
}
.faq__main{
    margin-top: 70px;
    display: flex;
    align-items: center;
    gap: 60px;
    justify-content: center;
}
.accordion {
    color: #444;
    cursor: pointer;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
    transition: 0.4s;
    height: 104px;
    border-bottom: 1px solid #A6B2EF26;
}
.panel {
    display: none;
    overflow: hidden;
    border-bottom: 1px solid #A6B2EF26;
}
.accordion.active{
    border: 0;
}
button.accordion:after{
    content: '\002B';
    color: #777;
    font-weight: bold;
    float: left;
    margin-left: 5px;
    padding-right: 12px;
}
button.accordion.active:after {
    content: "\2212";
    color: #A6B2EF;
}
.faq__main .accordion{
    font-family: Outfit;
    font-size: 20px;
    font-weight: 500;
    line-height: 24px;
    text-align: left;
    color: #FFFFFF;
    background: transparent;
}
.accordion.active{
    color: #00AFEF;
}
.faq__main .panel p{
    font-family: Outfit;
    font-size: 18px;
    font-weight: 400;
    line-height: 27px;
    text-align: left;
    color: #FFFFFF69;
    padding: 0px 0px 20px 27px;
}
.faq__image img{
    max-width: 500px;
    height: 600px;
}
.blogs__sec{
    background-image: url(../images/blog_bg.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    padding: 109px 0px 90px 0px;
}
.title a{
    font-family: Outfit;
    font-size: 16px;
    font-weight: 500;
    line-height: 36px;
    text-align: left;
    color: var(--global_blue);
    width: fit-content;
    text-decoration: none;
    text-decoration: underline;
    display: flex;
    align-items: center;
    gap: 4px;
}
.blogs__cards{
    max-width: 377px;
}
.blogs__cards h2{
    font-family: Outfit;
    font-size: 24px;
    font-weight: 500;
    line-height: 31.2px;
    text-align: left;
    color: #FFFFFF;
}
.blogs__card_content{
    padding: 19px 10px;
}
.blogs__card_content p{
    font-family: DM Sans;
    font-size: 14px;
    font-weight: 400;
    line-height: 15.6px;
    letter-spacing: 0.5px;
    text-align: left;
    color: #00AFEF;
}
.blogs__cards_main{
    display: flex;
    gap: 30px;
}
.blogs__uper{
    display: flex;
    gap: 30px;
}
.mx_407{
    max-width: 407px;
}
.blogs__cards img{
    max-width: 373px;
    height: auto;
    object-fit: cover;
}
.innovation_sec{
    background-image: url(../images/innovation_bg.jpg);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    padding: 94px 20px;
    border-radius: 10px;
    text-align: center;
    margin-top: 100px;
}
.innovation_sec h2{
    font-family: Outfit;
    font-size: 61px;
    font-weight: 500;
    line-height: 79.4px;
    letter-spacing: -0.4000000059604645px;
    text-align: center;
    color: #000000;
}
.innovation_sec p{
    font-family: Outfit;
    font-size: 20px;
    font-weight: 300;
    line-height: 32px;
    text-align: center;
    color: #000000;
    padding-top: 10px;
}
.start__now__btn{
    padding: 19px 37px;
    font-family: Outfit;
    font-size: 18px;
    font-weight: 400;
    line-height: 22px;
    text-align: center;
    color: #FFFFFF;
    border: 1px solid #00AFEF;
    background-color: #00AFEF;
    border-radius: 4px;
    margin-top: 70px;
    text-decoration: none;
}
.start__now__btn:hover{
    background-color: white;
    color: var(--global_blue);
    border: 1px solid white;
    transition: linear all .3s;
}
.footer_sec{
    box-shadow: 0px 24px 100px 0px #FFFFFF1A;
    background: linear-gradient(90deg, #19171E 0%, #1A171D 100%);
    padding: 46px 50px;
}
.footer__logo{
    max-width: 420px;
}

.quick-links {
    position: relative;
    display: inline-block;
    font-size: 24px;
    color: white;
    background-color: #1a1a1a; /* Assuming the background color */
  }
  
  .quick-links::before,
  .quick-links::after {
    content: '';
    position: absolute;
    bottom: -15px; /* Adjust based on the desired position */
    height: 1.5px;
  }
  
  .quick-links::before {
    left: 0;
    width: 28px; /* Length of the yellow line */
    background-color: #FFB400; /* Yellow color */
  }
  
  .quick-links::after {
    left: 39px; /* Start position of the white line */
    right: 0;
    background-color: #FFFFFF; /* White color */
  }
.footer__logo p{
    font-family: Poppins;
    font-size: 14px;
    font-weight: 400;
    line-height: 28px;
    text-align: left;
    color: #FFFFFF;
    padding-top: 24px;
}
.footer__logo{
    max-width: 420px;
} 
.footer__contact{
    padding-top: 27px;
}
.footer__contact p{
    font-family: Poppins;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-align: left;
    color: #FFFFFFCC;
    padding-top: 0;
}
.footer_links_main a{
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-family: Poppins;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-align: left;
}
.footer_links_main p{
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-family: Poppins;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-align: left;
    color: #FFFFFFCC;
}
.footer_links_main a>p{
    color: #FFFFFFCC;
}
.footer_links_main{
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 50px;
}
.footer__news{
    max-width: 300px;
}
.footer__links h2{
    font-family: Poppins;
    font-size: 18px;
    font-weight: 600;
    line-height: 27px;
    text-align: left;
    color: #FFFFFF;
}
.footer_main{
    display: flex;
    justify-content: space-between;
    padding-bottom: 60px;
    border-bottom: 1px solid #FFFFFF33;
}
.footer__links{
    margin-top: 70px;
}
.mail__bx{
    width: 46px;
    height: 46px;
    border-radius: 50px;
    background-color: #00AFEF;
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer__mail input{
    width: 100%;
    border: 1px solid #FFFFFF33;
    border-radius: 50px;
    height: 56px;
    background-color: transparent;
    font-family: Poppins;
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    text-align: left;
    color: #FFFFFF;
    padding: 0px 60px 0px 25px ;
}
.footer__mail input::placeholder{
    font-family: Poppins;
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    text-align: left;
    color: #FFFFFF;
}
.footer__mail{
    position: relative;
    margin-top: 4px;
}
.footer__mail button{
    position: absolute;
    top: 5px;
    right: 5px;
}
.footer__social{
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 12px;
}
.footer__social_title{
    display: flex;
    align-items: center;
    gap: 10px;
}
.footer__social_title span{
    display: inline-block;
    width: 20px;
    height: 1px;
    background-color: #FFFFFF;
}
.footer__social_title h2{
    font-family: Poppins;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    text-align: left;
    color: #FFFFFF;
}
.social__links_main{
    display: flex;
    align-items: center;
    gap: 16px;
}
.footer_bar{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding-top: 20px;
}
.footer_bar p,
.footer_bar a{
    font-family: Poppins;
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    text-align: left;
    color: #FFFFFF;

}
.footer_bar a{
    text-decoration: none;
    
}
.about__us_hero_sec{
    /* background-image: url(../images/about__us_hero_sec.png); */
    background-color: #19161D;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    /* height: 100vh; */
    height: 100%;
    /* padding: 100px 0px 20px 0px; */
    margin-top: -60px;
    display: flex;
    align-items: center;
    flex-direction: column;
}
.about__us_title{
    max-width: 696px;
    width: 100%;
    margin: 0 auto;
    margin-top: 30px;
}
.about__us_title p{
    font-family: Outfit;
    font-size: 15px;
    font-weight: 500;
    line-height: 21px;
    letter-spacing: 1px;
    text-align: center;
    color: #00AFEF;
}
.about__us_title h2{
    font-family: Outfit;
    font-size: 54px;
    font-weight: 600;
    line-height: 59.4px;
    text-align: center;
    color: #FFFFFF;
    padding-top: 19px;
}
.about__us_hero_bg{
    height: 100%;
    width: 100%;
}
.about__us_hero_bg img{
    height: 50vh;
    width: 100% !important;
    margin-top: 24px;
}
.about__count_down{
    background-color: #19161D;
    padding: 35px 0px;
}
.about__count_main{
    max-width: 1120px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.about__count h2{
    font-family: Outfit;
    font-size: 48px;
    font-weight: 500;
    line-height: 48px;
    text-align: center;
    color: #FFFFFF;
}
.about__count p{
    font-family: Outfit;
    font-size: 14px;
    font-weight: 500;
    line-height: 21px;
    letter-spacing: 0.5px;
    text-align: center;
    color: #FFFFFF;
    padding-top: 10px;
}
.about__count{
    max-width: 273px;
    width: 100%;
}
.our_mission_sec{
    background-color: #19161D;
    padding: 67px 0px;
    border-top: 1px solid #FFFFFF33;
    
}
.our_mission_title p{
    font-family: Outfit;
    font-size: 15px;
    font-weight: 500;
    line-height: 21px;
    letter-spacing: 1px;
    text-align: center;
    color: #00AFEF;
}
.our_mission_title h2{
    font-family: Outfit;
    font-size: 40px;
    font-weight: 500;
    line-height: 50px;
    text-align: center;
    color: #FFFFFF;
}
.our_mission_title span{
    color: #808080;
}
.our_mission_title{
    max-width: 1440px;
}
.ceo_message{
    padding-top: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.ceo_message img{
    width: 61px;
    height: 61px;
    border-radius: 50px;
}
.ceo_message p{
    font-family: Outfit;
    font-size: 18px;
    font-weight: 300;
    line-height: 28.8px;
    text-align: center;
    color: #FFFFFF;
}
.ceo__card{
    max-width: 395px;
    padding: 40px 23px;
    background-color: #FFFFFF1A;
    border-radius: 20px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.ceo__card_bx{
    width: 80px;
    height: 80px;
    border-radius: 50px;
    background-color: #00AFEF;
    align-items: center;
    display: flex;
    justify-content: center;
}
.ceo__card h2{
    font-family: Outfit;
    font-size: 25px;
    font-weight: 500;
    line-height: 37.5px;
    letter-spacing: -0.30000001192092896px;
    text-align: center;
    color: #FFFFFF;
    padding-top: 19px;
}
.ceo__card p{
    font-family: Outfit;
    font-size: 17px;
    font-weight: 300;
    line-height: 27.2px;
    text-align: center;
    color: #FFFFFF9C;
    padding-top: 15px;
}
.ceo__cards_main{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
}
.why_us_sec{
    background-color: #19161D;
    border-bottom: 1px solid #FFFFFF33;
    padding-bottom: 86px;
}
.why_us_title p{
    font-family: Outfit;
    font-size: 15px;
    font-weight: 500;
    line-height: 21px;
    letter-spacing: 1px;
    text-align: left;
    color: #999999;
}
.why_us_title h2{
    font-family: Outfit;
    font-size: 48px;
    font-weight: 600;
    line-height: 52.8px;
    text-align: left;
    color: #FFFFFF;
    padding-top: 19px;
}
.why_us_title{
    max-width: 1239px;
    width: 100%;
    margin: 0 auto;
    padding-top: 30px;
}
.why_us_images{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 21px;
    margin-top: 100px;
    padding: 0px 20px;
}
.why_us_images img{
    width: 100%;
}
.our_team_sec{
    padding: 67px 0px 119px 0px;
    background-color: #19171E;
}
.our_team_title{
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}
.our_team_title p{
    font-family: Outfit;
    font-size: 15px;
    font-weight: 500;
    line-height: 21px;
    letter-spacing: 1px;
    text-align: center;
    color: #98B854;
}
.our_team_title h2{
    font-family: Outfit;
    font-size: 48px;
    font-weight: 500;
    line-height: 52.8px;
    text-align: center;
    color: #FFFFFF;
}
.o_team{
    max-width: 406px;
    text-align: center;
}
.o_team>img{
    width: 100%;
    max-width: 272px;
    height: 272px;
    border-radius: 50%;
    object-fit: cover;
}
.o_team h2{
    font-family: Outfit;
    font-size: 24px;
    font-weight: 600;
    line-height: 36px;
    text-align: center;
    color: #FFFFFF;
    padding-top: 20px;
}
.o_team p{
    font-family: Outfit;
    font-size: 18px;
    font-weight: 300;
    line-height: 30.6px;
    text-align: center;
    color: #FFFFFF;
    padding-top: 9px;
}
.team_social{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}
.team_social_bx{
    width: 36px;
    height: 36px;
    border-radius: 50px;
    background-color: #00AFEF;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
}
.our_team_main{
    /* display: grid; */
    display: flex;
    /* grid-template-columns: 1fr; */
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1440px;
    row-gap: 80px;
    margin-top: 70px;
}
.services__hero_sec{
    background-image: url(../images/services_hero_bg.png);
    /* background-color: #19161D; */
    background-repeat: no-repeat;
    background-size: 100% 100%;
    height: 100vh;
    /* height: 100%; */
    /* padding: 100px 0px 20px 0px; */
    margin-top: 80px;
    display: flex;
    align-items: center;
    flex-direction: column;
}
.services_title{
    max-width: 852px;
    width: 100%;
    margin: 0 auto;
    padding-top: 100px;
}
.services_title p{
    font-family: Outfit;
font-size: 15px;
font-weight: 500;
line-height: 21px;
letter-spacing: 1px;
text-align: center;
color: #00AFEF;
}
.services_title h2{
    font-family: Outfit;
    font-size: 54px;
    font-weight: 600;
    line-height: 59.4px;
    text-align: center;
    color: #FFFFFF;
    padding-top: 20px;
}
.services_title h3{
    font-family: Outfit;
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    text-align: center;
    color: #FFFFFF;
    padding-top: 15px;
}
.services__cards_sec{
    background-color: #19161D;
    padding: 40px 0px 100px 0px;
}
.ser__card{
    max-width: 470px;
    width: 100%;
    padding: 40px 55px;
    background-color: #FFFFFF1A;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.ser__card_bx{
    width: 74px;
    height: 74px;
    border-radius: 50px;
    background-color: #00AFEF;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ser__card h2{
    font-family: Barlow;
    font-size: 26px;
    font-weight: 600;
    line-height: 31.2px;
    text-align: center;
    color: #FFFFFF;
    padding-top: 8px;
}
.ser__card p{
    font-family: Lato;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    text-align: center;
    color: #A6A6A6;
    padding-top: 10px;
}
.services__cards_main{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    row-gap: 40px;
    column-gap: 44px;
}
.our_team_hero{
    background-color: #19161D;
    padding-top: 100px;
    padding-bottom: 140px;
}
.our_team__title{
    max-width: 1161px;
    width: 100%;
    margin: 0 auto;
    margin-top: 15px;
}
.our_team__title p{
    font-family: Outfit;
    font-size: 15px;
    font-weight: 500;
    line-height: 21px;
    letter-spacing: 1px;
    text-align: center;
    color: #00AFEF;
}
.our_team__title h2{
    font-family: Outfit;
    font-size: 48px;
    font-weight: 500;
    line-height: 52.8px;
    text-align: center;
    color: #FFFFFF;
}
.our_team__title h3{
    font-family: Outfit;
    font-size: 20px;
    font-weight: 300;
    line-height: 25.2px;
    text-align: center;
    color: #FFFFFF;
    padding-top: 20px;
    max-width: 823px;
    width: 100%;
    margin: 0 auto;
}
.blogs__hero_sec{
    background-image: url(../images/blogs_bg.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    height: 55vh;
    margin-top: 80px;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}
.blogs__hero__title{
    max-width: 723px;
    width: 100%;
    margin: 0 auto;
}
.blogs__hero__title h2{
    font-family: Outfit;
    font-size: 68px;
    font-weight: 600;
    line-height: 108.8px;
    letter-spacing: -0.5px;
    text-align: center;
    color: #FFFFFF;
}
.blogs__hero__title p{
    font-family: Lato;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    text-align: center;
    color: #FFFFFF;
}
.blogs_detail{
    max-width: 1132px;
    width: 100%;
    justify-content: center;
    margin: 0 auto;
    padding-bottom: 30px;
}
.blogs_details_main{
    margin: 0 auto;
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    padding-top: 30px;
    padding-bottom: 70px;
}
.blogs_details_sec{
    background-color: #19161D;
}
.blogs_reviews_info p{
    font-family: Outfit;
    font-size: 14px;
    font-weight: 500;
    line-height: 21px;
    text-align: left;
    color: #FFFFFF;
}
.bb_info{
    display: flex;
    align-items: center;
    gap: 7px;

}
.blogs__decs{
    font-family: Outfit;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-align: left;
    color: #FFFFFF;
    padding-top: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;  
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
}
.blogs_detail h2{
    font-family: Outfit;
    font-size: 34px;
    font-weight: 500;
    line-height: 42.5px;
    letter-spacing: -0.5px;
    text-align: left;
    color: #FFFFFF;
    padding-top: 29px;
}
.blogs_detail a{
    text-decoration: none;
}
.blogs_reviews_info{
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 10px;
}
.page-link{
    background-color: transparent;
    border: 1px solid #EBF1F2 !important;
    font-family: Outfit;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-align: center;
    color: #FFFFFF;
    padding: 7px 17px;
}
.pagination {
    gap: 8px;
    border-top: 1px solid #EBF1F2;
    padding-top: 15px;
}
.page-item .page-link{
    border-radius: 4px !important;
}
.page-item.active{
color: #00AFEF !important;
}
.page-item.active .page-link{
    background-color: transparent;
    color: #00AFEF;
}
.page-link:focus{
    box-shadow: none;
}
.about__us_hero_sec{
    padding: 100px 0px 20px 0px;
    background-color: #19161D;
}
.contact_form_main{
    max-width: 1320px;
    width: 100%;
    margin: 0 auto;
    background-color: #FFFFFF0D;
    display: flex;
    border-radius: 12px;
}
.contact_image img{
    max-width: 661px;
    width: 100%;
    height: 100%;
    border-radius: 0px 12px 12px 0px;
}
.contact_form{
    width: 100%;
    max-width: 660px;
    padding: 60px 60px 40px 60px;
}
.contact_m_card{
    width: 100%;
    max-width: 259px;
    text-align: center;
    align-items: center;
    display: flex;
    flex-direction: column;
}
.contact_m_card_bx{
    width: 71px;
    height: 71px;
    border-radius: 50px;
    background-color: #00AFEF;
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact_form_sec{
    background-color: #19161D;
    padding-bottom: 100px;
    border-bottom: 1px solid #FFFFFF33;
}
.contact_m_card h2{
    font-family: Outfit;
    font-size: 24px;
    font-weight: 500;
    line-height: 36px;
    text-align: center;
    color: #FFFFFF;
    padding-top: 11px;
}
.contact_m_card p{
    font-family: Outfit;
    font-size: 14px;
    font-weight: 400;
    line-height: 22.4px;
    letter-spacing: 0.5px;
    text-align: center;
    color: #FFFFFFD9;
    padding-top: 7px;
}
.conatct__method{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    max-width: 1140px;
    margin: 80px auto 0px auto;
}
.conatct_faq__sec{
    padding: 60px 0px 72px 0px;
    background-color: #19161D;
}
.conatct_faq__title{
    max-width: 628px;
    margin: 0 auto;
    width: 100%;
}
.conatct_faq__title p{
    font-family: Outfit;
    font-size: 14px;
    font-weight: 600;
    line-height: 21px;
    letter-spacing: 1px;
    text-align: center;
    color: #00AFEF;
}
.conatct_faq__title h2{
    font-family: Outfit;
    font-size: 48px;
    font-weight: 500;
    line-height: 57.6px;
    letter-spacing: -0.699999988079071px;
    text-align: center;
    color: #FFFFFF;
    padding-top: 19px;
}
.conatct_faq__title h3{
    font-family: Outfit;
    font-size: 20px;
    font-weight: 300;
    line-height: 34px;
    text-align: center;
    color: #FFFFFFC2;
    padding-top: 19px;
}
.field_data label{
    width: 100%;
    font-family: Outfit;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-align: left;
    color: #FFFFFF;
}
.field_data input{
    max-width: 435px;
    width: 100%;
    height: 53px;
    border-radius: 4px;
    border: 1px solid #E8E8E9;
    background-color: transparent;
    padding: 0px 15px;
    font-family: Outfit;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-align: left;
    color: #FFFFFF;
}
.field_data textarea{
    max-width: 435px;
    width: 100%;
    height: 53px;
    border-radius: 4px;
    height: 243px;
    resize: none;
    border: 1px solid #E8E8E9;
    background-color: transparent;
    font-family: Outfit;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-align: left;
    color: #FFFFFF;
    padding: 10px 15px;
}
#contactForm{
    margin-top: 40px;
}
.contact_form h2{
    font-family: Outfit;
    font-size: 28px;
    font-weight: 600;
    line-height: 35px;
    text-align: left;
    color: #FFFFFF;
}
.form__btn{
    width: 111px;
    height: 52px;
    border-radius: 4px;
    background-color: #00AFEF;
    margin-top: 30px;
    border: 0;
    font-family: Outfit;
    font-size: 18px;
    font-weight: 400;
    line-height: 22px;
    text-align: center;
    color: #FFFFFF;
}
#name-error,
#email-error,
#message-error{
    font-family: Outfit;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-align: left;
    color: red;
    position: absolute;
    left: 0;
    bottom: -25px;
}
.field_data{
    position: relative;
}
.blogs_detail>img{
    width: 100%;
}
.video-container {
    position: relative;
    width: 100%;
    /* max-width: 800px; */
    height: 620px;
    margin: auto;
}
.thumbnail {
    width: 100%;
    display: block;
    height: 100%;
}
.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 50px;
    color: white;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    padding: 10px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: #00000066;
    display: flex;
    align-items: center;
    justify-content: center;
}
.video {
    display: none;
    width: 100%;
}

.main-nav .nav-items.show ~ .top-progress-bar {
    background-color: transparent !important;
}


/* Top progress bar */
.top-progress-bar {
    position: fixed;
    top: -5px;
    left: 0;
    width: 0%;
    height: 5px;
    z-index: 10000;
    background: #00AFEF;
    transition: width 0.2s ease;
    }
    /* Add gradient border to bottom */
    .top-progress-bar::after {
    content: '';
    position: absolute;
    bottom: 4px; /* Adjust based on border thickness */
    left: 0;
    width: 100%;
    height: 4px; /* Border thickness */
    background: #00AFEF
    }
    .top-progress-bar {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px; /* Adjust height as needed */
        background-color: #00AFEF; /* Example background color */
        z-index: 9999; /* Ensure it's above other content */
        opacity: 0; /* Initially hidden */
        transition: opacity 200ms ease-out; /* Smooth transition */
      }
      
      .paginacontainer {
        position: fixed;
        right: 20px;
        bottom: 105px;
        height: 46px;
        width: 46px;
        cursor: pointer;
        display: block;
        border-radius: 50px;
        box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.1);
        z-index: 10000;
        opacity: 0; /* Initially hidden */
        visibility: hidden; /* Initially hidden */
        transform: translateY(15px);
        transition: all 200ms linear;
      }
      
      .paginacontainer.active-progress {
        opacity: 1; /* Show when active */
        visibility: visible; /* Show when active */
        transform: translateY(0);
        z-index: 2;
      }
      
      .progress-wrap::after {
        position: absolute;
        /* Remove the font-family and content properties */
        /* font-family: 'unicons'; */
        content: '';
        text-align: center;
        line-height: 46px;
        font-size: 24px;
        /* color: rgb(238, 8, 8);  */
        background-image: url('../images/icons/down-arrow.svg'); /* Add your image URL here */
        background-repeat: no-repeat;
        background-size: 100% 100%; /* Ensure the image covers the element */
        left: 15px;
        top: 15px;
        height: 15px;
        width: 15px;
        cursor: pointer;
        display: block;
        z-index: 1;
        transition: all 200ms linear;
        /* transform: rotate(-180deg); */
      }
      
      
      .progress-wrap::before {
        position: absolute;
        font-family: 'unicons';
        content: '\e84b';
        text-align: center;
        line-height: 46px;
        font-size: 24px;
        opacity: 0;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        left: 0;
        top: 0;
        height: 46px;
        width: 46px;
        cursor: pointer;
        display: block;
        z-index: 2;
        transition: all 200ms linear;
      }
      
      .progress-wrap:hover::before {
        opacity: 1;
      }
      
      .progress-wrap svg path {
        fill: none;
      }
      
      .progress-wrap svg.progress-circle path {
        stroke-width: 4;
        box-sizing: border-box;
        transition: all 200ms linear;
      }
      
      .progress-circle {
        transform: rotate(-90deg);
        transform-origin: 50% 50%;
      }








@media screen and (max-width: 1440px){
    .about__us_title h2 {
        font-size: 35px;
        line-height: 35px;
    }
    .our_team__title h2 {
        font-size: 35px;
        line-height: 40px;
    }
    .why_us_title h2 {
        font-size: 35px;
        line-height: 35px;
    }
    .conatct_faq__title h2{
        font-size: 35px;
        line-height: 40px;
    }
    .blogs__hero__title h2 {
        font-size: 50px;
        line-height: 80px;
    }
    .services_title h2 {
        font-size: 40px;
        line-height: 32px;
    }
    .why_balela_content h2,
    .balela_possibilities_main h2 {
        font-size: 35px;
        line-height: 35px;
    }
    .title h2{
        font-size: 43px !important;
        line-height: 43px !important;
    }
}
@media screen and (max-width: 1200px){
    .why_balela_main{
        flex-wrap: wrap;
    }
    .play-button{
        width: 70px;
        height: 70px;
    }
    .play-button img{
        width: 30%;
    }
    .video-container{
        height: 400px;
    }

    .balela_possibilities_cards_main{
        flex-wrap: wrap;
        justify-content: center;
    }
    .home_hero_content h2 {
        font-size: 43px;
        line-height: 50px;
    }
    .home_hero_content p {
        font-size: 15px;
        line-height: 22px;
        padding-top: 25px;
    }
    .start_now_btn{
        width: 140px;
        height: 50px;
        font-size: 15px;
    }
    .marquee__slider_sec{
        font-size: 14px;
    }
    .b_0_1200{
        border: 0;
    }

    .faq__main .accordion{
        font-size: 18px;
    }
    .faq__main .panel p{
        font-size: 14px;
        line-height: 24px;
    }
    .accordion {
        height: 75px;
    }
    .title h3{
        font-size: 18px;
        line-height: 25px;
    }
    .blogs__cards h2 {
        font-size: 20px;
        line-height: 28px;
    }
    .innovation_sec h2 {
        font-size: 45px;
        line-height: 40px;
    }
    .innovation_sec p{
        font-size: 18px;
        line-height: 25px;
    }
    .start__now__btn{
        padding: 11px 28px;
        font-size: 14px;
        margin-top: 45px;
    }
    .footer__links h2{
        font-size: 16px;
    }
    .quick-links::before{
        width: 18px;
    }
    .quick-links::after{
        left: 27px;
    }
    .footer_links_main p {
        font-size: 14px;
        line-height: 22px;
    }
    .footer__logo {
        max-width: 300px;
    }
    .footer_logo_im{
        width: 30%;
    }
    .blogs__uper{
        flex-wrap: wrap;
    }
    .mx_407 {
        max-width: unset;
    }
    .footer_main{
        padding-bottom: 26px;
    }
    .footer_sec {
        padding: 46px 0px;
        padding-bottom: 20px;
    }
    .footer_links_main {
        gap: 12px;
    }
    .blogs__sec{
        padding: 60px 0px 60px 0px;
    }
    .students_reviews_sec{
        padding: 60px 0px 20px 0px;
    }
    .innovation_sec{
        margin-top: 60px;
        padding: 60px 20px;
    }
    .footer_bar p, .footer_bar a{
        font-size: 14px;
    }
    .about__us_hero_sec .about__us_title{
        margin-top: 70px;
    }

    .about__us_hero_sec{
        padding-top: 65px;
        padding-bottom: 20px;
    }
    .about__count h2 {
        font-size: 35px;
        line-height: 32px;
    }
    .our_mission_title h2 {
        font-size: 35px;
        line-height: 40px;
    }

    .why_us_images{
        margin-top: 50px;
    }
    .why_us_sec {
        padding-bottom: 50px;
    }
    .our_team_title h2 {
        font-size: 35px;
        line-height: 40px;
    }
    .o_team h2 {
        font-size: 20px;
        line-height: 20px;
    }

    .our_team__title h3 {
        font-size: 18px;
        padding-top: 14px;
    }

    .blogs_detail h2 {
        font-size: 32px;
        line-height: 35px;
    }
    .blogs__decs {
        font-size: 15px;
        line-height: 23px;
    }
    .services_title {
        padding-top: 50px;
    }

    .services_title h3{
        font-size: 18px;
        line-height: 24px;
        padding-top: 13px;
    }
    .services__hero_sec{
        height: 70vh;
    }
    .ser__card{
        padding: 40px 30px;
    }
    .services__cards_main {
        row-gap: 22px;
        column-gap: 22px;
    }
    .ser__card h2 {
        font-size: 16px;
        line-height: 22px;
        padding-top: 13px;
    }
    .contact_form{
        max-width: 600px;
    }

    .conatct_faq__title h3 {
        font-size: 18px;
        line-height: 27px;
        padding-top: 13px;
    }
}
@media screen and (max-width: 1024px){
    .footer_main{
        gap: 30px;
        flex-wrap: wrap;
    }
    .home_hero_main{
        flex-wrap: wrap;
        flex-direction: column-reverse;
    }
    .contact_form{
        max-width: 550px;
    }
    .why_us_images{
        grid-template-columns: 1fr 1fr;
    }
    .our_team__title {
        margin-top: 40px;
    }
    .services__cards_main{
        grid-template-columns: 1fr 1fr;
    }
}
@media screen and (max-width: 1013px){
    .b_0_1013{
        border: 0;
    }
}
@media screen and (max-width: 683px){
    .b_0_683{
        border: 0;
    }
    .services__cards_main{
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
}
@media screen and (max-width: 992px){

@keyframes randomDotsMotion {
    0% {
        transform: translate(35, 10);
    }
    25% {
        transform: translate(-8px, -5px);
    }
    50% {
        transform: translate(-40px, -23px);
    }
    75% {
        transform: translate(-50px, 20px);
    }
    100% {
        transform: translate(10, -40);
    }
}
    .d_1 img{
        position: absolute;
        top: 50px;
        left: 70px;
        width: 36px !important;
        height: 36px !important; 
    }
    .dots:nth-child(2) {
        top: 50px;
        right: 50px;
        animation: randomDotsMotion 6s infinite;
    }
    .d_3 img{
        width: 26px !important;
        height: 26px !important; 
    }
    .dots:nth-child(3) {
        bottom: 100px;
        left: 100px;
        animation: randomDotsMotion 7s infinite;
    }
    .d_2 img{
        width: 26px !important;
        height: 26px !important; 
    }
    .dots:nth-child(4) {
        top: 100px;
        left: 80px;
        animation: randomDotsMotion 8s infinite;
    }
    .d_4 img{
        width: 30px !important;
        height: 30px !important; 
    }
    .dots:nth-child(5) {
        bottom: 0;
        right: 0;
        animation: randomDotsMotion 9s infinite;
    }
    .d_5 img{
        width: 22px !important;
        height: 22px !important; 
    }
    .dots:nth-child(6) {
        bottom: -10%;
        left: 30%;
        animation: randomDotsMotion 10s infinite;
    }
    .main-nav #nav-toggler{
        display: block;
        font-size: 20px;
        color: white;
    }
    .video-container{
        height: fit-content;
    }
    .faq__main {
        margin-top: 15px;
        gap: 0;
    }
    .contact_form_sec {
        padding-bottom: 50px;
    }
    .conatct__method{
        flex-wrap: wrap;
        justify-content: center;
    }
    .contact_image img{
        max-width: 661px;
        width: 100%;
        height: 100%;
        border-radius: 12px 12px 12px 12px;
    }
    .contact_form{
        padding: 30px 0px;
    }
    .contact_form_main{
        padding: 20px;
    }
    .contact_form_main{
        flex-wrap: wrap;
        justify-content: center;
        flex-direction: column-reverse;
    }
    .field_data input{
        width: 100% !important;
        max-width: unset;
    }
    .field_data textarea{
        width: 100% !important;
        max-width: unset !important;
    }
    #contactForm{
        width: 100% !important;
    }
    .contact_form{
        max-width: unset;
    }
    .field_data{
        width: 100%;
    }
    .main-nav .nav-items{
        background: #19161D !important;
        gap: 10px;
    }
    .our_team_main{
        grid-template-columns: 1fr 1fr;
    }
    .o_team>img{
        width: 70%;
    }
    .ceo__cards_main{
        flex-wrap: wrap;
    }
    .our__partner_sub_main{flex-wrap: wrap;}
    .blogs__cards_main{
        flex-wrap: wrap;
        justify-content: center;
        margin: 0 auto;
    }
    .faq__main{
        flex-wrap: wrap;
    }
    .main-nav .nav-items{
        position: absolute;
        top: 104%;
        left: 0;
        right: 0;
        height: auto;
        width: 100%;
        background: #ffffff;
        flex-direction: column;
        align-items: center;
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);

        transition: all .3s linear;
    }

    .main-nav .nav-items.show{
        clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
        border-radius: 0px 0px 30px 30px;
        transition: all .5s linear;
        height: 100vh;
        z-index: 1;
    }
}
@media screen and (max-width: 992px){

    .navbar-collapse.show{
        clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
    }
    .navbar-light .navbar-toggler {
    color: rgba(0,0,0,.55);
    border-color: rgba(0,0,0,.1);
    padding: 0;
    border: none;
    outline: none;
    box-shadow: none;
}
}
@media screen and (max-width: 550px){
    .faq__image img{
        width: 100%;
        height: 450px;
    }
    .blogs_detail>img{
        height: 50vh;
    }
    .our_team_main{
        grid-template-columns: 1fr;
    }
    .home_hero_content h2 {
        font-size: 35px;
        line-height: 45px;
    }
    .why_balela_content__image2__bx{
        right: 0;
    }
    .home_hero_sec{
        background-position: bottom;
        background-size: 232% 100% ;
    }
    .why_balela_image img{
        max-width: unset;
    }
    .why_balela_image__bx{
        left: 10.2%;
    }
    .blogs__cards>img{
        width: 100%;
    }
    .innovation_sec h2{
        font-size: 32px;
        line-height: 32px;
    }
    .start__now__btn{
        margin-top: 27px;
    }
    .footer__links {
        margin-top: 12px;
    }
    .footer_bar{
        flex-wrap: wrap;
    }
    .footer_bar p, .footer_bar a{
        font-size: 10px;
    }
    .footer_bar .gap-4 {
        gap: .7rem !important;
    }
    .title h2{
        font-size: 35px !important;
        line-height: 40px !important;
    }
    .title h3{
        font-size: 16px !important;
        line-height: 25px !important;
        padding-top: 12px !important;
    }
    .mx_567 {
        padding-top: 20px;
    }
    .faq__main .accordion {
        font-size: 14px;
    }
    .accordion{
        height: 60px;
    }
    .faq__main .panel p{
        font-size: 13px;
        line-height: 22px;
    }
    .faq__main{
        margin-top: 35px;
    }
    .balela_possibilities_sec {
        padding: 30px 0px 30px 0px;
    }
    .balela_cards p {
        font-size: 14px;
        line-height: 24px;
        padding-top: 12px;
    }
    .balela_possibilities_main h2{
        font-size: 23px;
    }
    .marquee__slider_sec marquee {
        font-size: 22px;
    }
    .marquee__slider_sec{
        padding: 0;
    }
    .why_balela_sec{
        padding-bottom: 20px;
    }
    .marquee__slider_sec marquee .bx{
        width: 10px;
        height: 10px;
    }
    .why_us_title h2 {
        font-size: 22px;
        line-height: 32px;
        font-weight: 500;
    }
    .why_us_images {
        grid-template-columns: 1fr;
    }
    .our_team_title h2{
        font-size: 24px;
        line-height: 32px;
    }
    .our_team_main{
        margin-top: 40px;
    }
    .our_team_sec {
        padding: 45px 0px 55px 0px;
    }
    .footer__mail input {
        padding: 0px 60px 0px 20px;
    }
    .o_team>img{
        width: 60%;
        height: 60%;
    }
    .our_team_hero{
        padding-bottom: 60px;
    }
    .our_team_main {
        row-gap: 50px;
    }
    .o_team p {
        font-size: 15px;
        padding-top: 6px;
    }
    .about__count h2{
        font-size: 25px;
    }
    .about__count_main{
        justify-content: center;
        gap: 30px;
        flex-wrap: wrap;
    }
    .about__count_down{
        padding-top: 25px;
    }
    .about__count p{
        font-weight: 400;
        padding-top: 6px;
    }
    .our_mission_title h2,
    .our_team__title h2 {
        font-size: 22px;
        line-height: 32px;
    }
    .about__us_title h2{
        font-size: 22px;
        line-height: 32px;
        padding-top: 10px;
    }
    .contact_us__page .about__us_hero_sec .about__us_title{
        margin-top: 80px !important;
    }
    .our_team__title {
        margin-top: 12px;
    }
    .our_team__title h3 {
        font-size: 16px;
    }
    .blogs_detail h2 {
        font-size: 19px !important;
        line-height: 22px !important;
    }
    .page-link{
        font-size: 11px;
    }
    .pagination{
        justify-content: center;
        flex-wrap: wrap;
    }
    .page-link {
        padding: 4px 12px;
    }
    .blogs_reviews_info p{
        font-size: 12px;
        font-weight: 400;
    }
    .blogs__hero__title h2{
        font-size: 36px;
        line-height: 60px;
    }
    .blogs_details_main {
        padding-bottom: 20px;
    }
    .services_title h2{
        font-size: 28px;
        line-height: 20px;
        padding-top: 12px;
    }
    .services_title h3{
        font-size: 14px;
        line-height: 20px;
    }
    .ser__card {
        padding: 40px 22px;
    }
    .contact_form{
        padding: 20px 0px;
    }
    #name-error,
    #email-error,
    #message-error{
        font-size: 14px;
    }
    .form__btn{
        height: 45px;
        font-size: 15px;
    }
    .conatct_faq__title h2{
        font-size: 22px;
        line-height: 12px;
    }
    .conatct_faq__title h3 {
        font-size: 15px;
        line-height: 23px;
    }
    .conatct_faq__sec{
        padding: 35px 0px 40px 0px;
    }
    .paginacontainer {
        bottom: 80px;
    }
    .nav_login_btn{
        margin-top: 20px;
    }
    .blogs__sec{
        background-size: cover;
    }
    .blogs__hero_sec {
        height: 45vh;
    }
    .services__hero_sec {
        height: 45vh;
    }
}

@media screen and (max-width: 350px){
    .page-link {
        padding: 4px 9px;
    }
}