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

.lato-thin {
    font-family: "Lato", sans-serif;
    font-weight: 100;
    font-style: normal;
  }
  
  .lato-light {
    font-family: "Lato", sans-serif;
    font-weight: 300;
    font-style: normal;
  }
  
  .lato-regular {
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-style: normal;
  }
  
  .lato-bold {
    font-family: "Lato", sans-serif;
    font-weight: 700;
    font-style: normal;
  }
  
  .lato-black {
    font-family: "Lato", sans-serif;
    font-weight: 900;
    font-style: normal;
  }
  
  .lato-thin-italic {
    font-family: "Lato", sans-serif;
    font-weight: 100;
    font-style: italic;
  }
  
  .lato-light-italic {
    font-family: "Lato", sans-serif;
    font-weight: 300;
    font-style: italic;
  }
  
  .lato-regular-italic {
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-style: italic;
  }
  
  .lato-bold-italic {
    font-family: "Lato", sans-serif;
    font-weight: 700;
    font-style: italic;
  }
  
  .lato-black-italic {
    font-family: "Lato", sans-serif;
    font-weight: 900;
    font-style: italic;
  }

:root{
    --open-sans: "Public Sans", sans-serif;
    --lato: "Lato", sans-serif;
}

body{
    font-family: var(--lato);
    font-weight: 400;
}
.container{
    max-width: 1240px;
    width: 100%;
}

/* utilities */
.page-section{
    margin: 2.5rem 0;
}
.section-title-1{
    font-size: 1.875rem;
    font-weight: bold;
    line-height: 1.3;
    margin-bottom: 5px;
    color: #000000;
}
.section-title-1 span{
    color: rgba(61, 177, 151, 1);
}
.section-title-2{
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 27.5px;
    margin-bottom: 18px;
    color: #000000;
}
.section-title-2 span{
    color: rgba(61, 177, 151, 1);
}
.section-para-1{
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 24px;
    color: rgba(27, 27, 27, 0.6);
    letter-spacing: 0.025rem;
    margin-bottom: 20px;
}
.btn-purple{
    color: #ffffff;
    background: linear-gradient(45deg, rgba(98, 20, 111, 1) 15%, rgb(115, 60, 170) 35%, rgba(132, 61, 203, 1) 45%);
}
.btn-purple:hover{
    color: #ffffff;
}
.btn-clyn{
    color: #ffffff;
    background: rgba(61, 177, 151, 1);
}
.btn-clyn:hover{
    color: #ffffff;
    background: rgba(61, 177, 151, 1);
}
.mid-btn-wrapper{
    display: flex;
    justify-content: center;
    margin-top: 30px;
}
.mid-btn-wrapper .btn{
    padding: 16px 36px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 64px;
    display: inline-flex;
    align-items: center;
    transition: 0.3s ease-in-out;
}


/* header */
header{
    margin-bottom: 40px;
    /* position: relative; */
    background: #ffffff;
}
/* header-top */
.header-top{
    /* max-width: 1600px; */
    width: 100%;
    height: 40px;
    margin: 0 auto;
    display: flex;
}
.header-top .news-events-wrapper{
    /* max-width: 62.5%; */
    width: 100%;
    height: 100%;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.24);
    overflow-x: hidden;
    display: flex;
    background: #eeeeee;
}
.header-top .news-events-wrapper .side-wrapper{
    width: 284px;
    height: 100%;
    background: linear-gradient(96deg, #ffffff 0%, #eeeeee 100%);
    z-index: 9;
    display: flex;
    overflow-y: hidden;
}
.header-top .news-events-wrapper .side-wrapper .triangle{
    clip-path: polygon(0 0, 100% 0%, 25% 100%, 0% 100%);
    background: linear-gradient(60deg, #3D7ECB, #3DCB7C);
    height: 100%;
    width: 15px;
}
.header-top .news-events-wrapper .side-wrapper .parallelgram{
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    background: linear-gradient(60deg, #3D7ECB, #3DCB7C);
    height: 100%;
    width: 7px;
    transform: rotate(18deg) scaleY(1.5);
    margin-right: 4px;
}
.header-top .news-events-wrapper .side-wrapper .text-wrapper{
    background: linear-gradient(90deg, #3D7ECB, #3DCB7C);
    height: 100%;
    width: calc(100% - 30px);
    clip-path: polygon(5% 0, 100% 0, 95% 100%, 0% 100%);
    margin-left: -4px;
}
.header-top .news-events-wrapper .side-wrapper .text-wrapper p{
    margin-bottom: 0;
    font-size: 24px;
    font-weight: bold;
    line-height: 20px;
    text-transform: uppercase;
    color: #eeeeee;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}
.header-top .news-events-wrapper .marquee{
    white-space: nowrap;
    overflow: hidden;
    height: 100%;
    animation: marquee 25s linear infinite;
    display: flex;
    gap: 15px;
    align-items: center;
}
@keyframes marquee {
    0% {
      transform: translateX(100%);
    }
    100% {
      transform: translateX(-100%);
    }
}
.header-top .news-events-wrapper .marquee:hover {
    animation-play-state: paused;
}
.header-top .news-events-wrapper .marquee .link{
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 0;
    color: #1B1B1B;
}
.header-top .news-events-wrapper .marquee .link::after{
    content: "";
    width: 2px;
    height: 18px;
    background-color: #313131;
    margin-left: 15px;
}
.header-top .news-events-wrapper .marquee .link:last-child:after{
    display: none;
}
.header-top .news-events-wrapper .marquee .link .new-tag{
    background-color: #D43343;
    color: #ffffff;
    border-radius: 4px;
    line-height: 10px;
    font-size: 14px;
    font-weight: bolder;
    padding: 3px 5px;
    height: max-content;
    text-transform: capitalize;
    margin-right: 5px;
}
.header-top .content-wrapper{
    width: fit-content;
    height: 100%;
    background: linear-gradient(65deg, #3D7ECB, #3DCB7C);
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.24);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 0 60px;
}
.header-top .content-wrapper a{
    text-decoration: none;
    color: #ffffff;
    font-size: 20px;
    font-weight: bold;
    line-height: 13.4px;
    margin: 0;
    display: flex;
    align-items: center;
}
.header-top .content-wrapper a i{
    font-size: 24px;
    margin-right: 8px;
}



/* nav-bar */
.nav-menubar{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 60px;
}
/* header-logo */
.nav-menubar .header-logo{
    width: 174px;
    height: auto;
    display: inline-block;
}
/* mobile-menu-bar */
.nav-menubar .mobile-menu-btn{
    padding: 5px 3px;
    border-radius: 0;
    display: none;
}
.nav-menubar .mobile-menu-btn i{
    color: #3DB197;
}
.nav-menu{
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 60px;    
}
.nav-menu .menu-item{
    position: relative;
}
.nav-menu .menu-item .menu-link{
    text-decoration: none;
    font-size: 20px;  
    font-weight: 400;
    color: #150101;
}

.nav-menu .menu-item .sub-menu{
    list-style: none;
    padding: 0;
    position: absolute;
    top: 100%;
    left: calc(100% - 26px);
    width: 267px;
    background-color: #ffffff;
    transition: 0.3s;
    display: none;
}
.nav-menu .menu-item:hover > .sub-menu{
    display: block;
}
.nav-menu .sub-menu .sub-menu-item,
.nav-menu .deep-sub-menu .deep-submenu-item{
    position: relative;
    padding: 8px 12px;
    transition: 0.3s;
}
.nav-menu .sub-menu .sub-menu-item:hover,
.nav-menu .deep-sub-menu .deep-submenu-item:hover{
    background-color: rgba(196, 230, 222, 1);
}
.sub-menu-item .sub-menu-link,
.deep-submenu-item .deep-submenu-link{
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
}
.nav-menu .sub-menu-item .deep-sub-menu{
    list-style: none;
    padding: 0;
    position: absolute;
    top: 0;
    left: 100%;
    width: 267px;
    background-color: #ffffff;
    transition: 0.3s;
    display: none;
}
.nav-menu .sub-menu-item:hover > .deep-sub-menu{
    display: block;
}
.sub-menu-item .sub-menu-link .title,
.deep-submenu-item .deep-submenu-link .title{
    margin: 0;
    font-size: 16px;
    line-height: 22px;
    font-family: var(--open-sans);
    font-weight: 500;
    color: rgba(27, 27, 27, 1);
}
.sub-menu-item .sub-menu-link .para,
.deep-submenu-item .deep-submenu-link .para{
    margin: 0;
    font-size: 14px;
    line-height: 18px;
    font-family: var(--open-sans);
    font-weight: 500;
    color: rgba(27, 27, 27, 0.6);
}
.sub-menu-item .sub-menu-link i, 
.deep-submenu-item .deep-submenu-link i{
 color: rgba(27, 27, 27, 0.6);
}





.header-btn{
    text-decoration: none;
    border-radius: 64px;
    min-width: 179px;
    padding-inline: 12px;
    height: 40px;
    border-radius: 64px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(65deg, #3D7ECB, #3DCB7C);
    color: #ffffff;
    font-size: 20px;
    font-weight: 500;
    transition: all 0.3s ease;
}
.header-btn:hover{
    background: linear-gradient(210deg, #3D7ECB, #3DCB7C);
    transition: all 0.3s ease;
}

/* mobile-menu-wrapper */
.mobile-menu-wrapper{
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    position: fixed;
    top: 40px;
    left: -100%;
    z-index: 9;
    transition: 0.3s;
    display: flex;
}
.mobile-menu-wrapper.open{
    left: 0;
}

.mobile-menu-wrapper .close-btn{
    background-color: rgba(239, 242, 244, 1);
    border-radius: 50%;
    width: 22px;
    height: 22px;
    padding: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 24px auto 24px;
}
.mobile-menu-wrapper .close-btn i{
    color: #3DB197;
}
.mobile-menu-wrapper .mobile-nav-menu{
    width: calc(100% - 70px);
    background-color: #ffffff;
    height: 100%;
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.mobile-menu-wrapper .mobile-nav-menu .header-logo{
    width: 100px;
    display: block;
}
.mobile-menu-wrapper .mobile-nav-menu .mobile-menu-list{
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.mobile-menu-wrapper .mobile-nav-menu .mobile-menu-list .link{
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    line-height: 20px;
    color: #111B29;
}
.mobile-menu-list details summary i{
    transition: 0.3s;
}
.mobile-menu-list details[open] > summary i{
    rotate: 90deg;
}
.mobile-menu-list .mobile-submenu-list{
    list-style: none;
    padding: 20px 0 0 12px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
/* .mobile-menu-list .mobile-submenu-list a{
    text-decoration: none;
} */
.mobile-menu-list .mobile-submenu-list .title{
    margin: 0;
    font-size: 12px;
    line-height: 18px;
    font-weight: 500;
    color: #1B1B1B;
}
.mobile-menu-list .mobile-submenu-list .para{
    margin: 0;
    font-size: 10px;
    line-height: 15px;
    font-weight: 500;
    color: rgba(27, 27, 27, 0.6);
}





/* top-banner */
.top-banner{
    width: 100%;
    height: 720px;
    background: rgb(61,126,203);
    background: linear-gradient(65deg, rgba(61,126,203,1) 25%, rgba(61,203,124,1) 66%);
    border-radius: 14px;
    overflow: hidden;
    margin: 0;
}
.top-banner .banner-content{
    padding-left: 5%;
    /* padding-top: 7%; */
    /* margin-top: auto; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}
.top-banner .banner-content h2{
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 1.4;
    color: #ffffff;
    margin-bottom: 0.5rem;
    padding-top: 32px;
}
.top-banner .banner-content p{
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.35;
    /* margin-bottom: 29px; */
    color: #ffffff;
}
.top-banner .banner-content .desktop-img{
    width: 420px;
    margin: 0 auto;
    margin-top: auto;
}

.top-banner .img-wrapper.mobile-img{
    display: none;
}
.top-banner .banner-form{
    /* padding: 44px 54px; */
    display: flex;
    align-items: center;
    height: 100%;
}
.top-banner .banner-form .form-wrapper{
    padding: 24px 32px;
    width: 510px;
    background: #ffffff;
    box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.1);
    /* -webkit-text-stroke: 1px rgba(0, 142, 110, 1); */
    border-radius: 5px;
    margin: 0 auto;
}
.top-banner .banner-form .form-wrapper h4{
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 10px;
    color: rgba(24, 30, 75, 1);
}

.top-banner .banner-form .form-wrapper h5{
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 10px;
    color: rgba(24, 30, 75, 1);
}
.top-banner .banner-form .form-wrapper p{
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 1.25rem;
    color: rgba(94, 98, 130, 1);
}
.top-banner .banner-form .form-wrapper p span{
    color: rgba(61, 177, 151, 1);
}
.top-banner .banner-form .form-wrapper .input-wrapper{
    margin-bottom: 1px;
}
.top-banner .banner-form .form-wrapper .form-label{
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 10px;
    line-height: 19px;
}
.top-banner .banner-form .form-wrapper .form-control{
    font-size: 14px;
    font-weight: 500;
    line-height: 32px;
    color: rgba(94, 98, 130, 1);
    padding: 3px 14px;
}
.top-banner .banner-form .form-wrapper .form-control:focus{
    border: 1px solid rgba(61, 177, 151, 1);
    box-shadow: none;
}
.top-banner .banner-form .form-wrapper .form-control.input-error,
.top-banner .banner-form .form-wrapper .form-select.input-error{
    border: 1px solid #EE0004;
}
.top-banner .banner-form .form-wrapper .form-select{
    font-size: 14px;
    font-weight: 500;
    line-height: 32px;
    color: rgba(94, 98, 130, 1);
    padding: 4px 14px;
}
.top-banner .banner-form .form-wrapper .form-select:focus{
    border: 1.5px solid rgba(61, 177, 151, 1);
    box-shadow: none;
}
.top-banner .banner-form .form-wrapper .btn{
    margin-top: 1.9rem;
    width: 100%;
    border-radius: 67px;
    font-size: 14px;
    font-weight: bold;
    line-height: 25px;
    padding: 9px 12px;
}
.top-banner .banner-form .form-wrapper .error-wrapper{
    display: flex;
    gap: 5px;
    justify-content: flex-start;
    align-items: flex-end;
}
.top-banner .banner-form .form-wrapper .error-wrapper .error_message{
    font-size: 10px;
    line-height: 14px;
    height: 12px;
    color: #EE0004;
    font-weight: 500;
    margin-bottom: 0;
}
.top-banner .banner-form .form-wrapper .error-wrapper .error-icon{
    width: 10px;
    height: 10px;
    display: none;
}


/* course-mode-card */
.course-mode-card .card-wrapper{
    --bs-gutter-x: 45px;
    --bs-gutter-y: 45px;
}
.course-mode-card .card-wrapper .card{
    height: 228px;
    border: none;
    border-radius: 10px;
    padding: 0;
    overflow: hidden;
    position: relative;

    &:has(.repeater){
        min-height: 276px;
    }
}
/* .course-mode-card .card-wrapper .card .image-wrapper{
    position: relative;
} */
.course-mode-card .card-wrapper .card .image-wrapper img{
    object-fit: contain;
    position: absolute;
}
.course-mode-card .card-wrapper .card-div:nth-child(1) .card{
    background: #F0E8D5;
}
.course-mode-card .card-wrapper .card-div:nth-child(1) .card .image-wrapper img{
    right: 0;
}

.course-mode-card .card-wrapper .card-div:nth-child(1) .card:has(.repeater) .image-wrapper img{
    bottom: 0;
}

.course-mode-card .card-wrapper .card-div:nth-child(2) .card{
    background: #F0D8D5;
}
.course-mode-card .card-wrapper .card-div:nth-child(2) .card .image-wrapper img{
    left: 0;
}

.course-mode-card .card-wrapper .card-div:nth-child(2) .card:has(.repeater) .image-wrapper img{
    bottom: 0;
}

.course-mode-card .card-wrapper .card-div:nth-child(3) .card{
    background: #DCF0D5;
}
.course-mode-card .card-wrapper .card-div:nth-child(3) .card .image-wrapper img{
    right: 0;
    bottom: 0;
}
.course-mode-card .card-wrapper .card .text-wrapper{
    padding: 20px 42px 20px 26px;
}
.course-mode-card .card-wrapper .card .text-wrapper h4{
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 28px;
    color: rgba(37, 61, 78, 1);
    margin-bottom: 0;
}
.course-mode-card .card-wrapper .card .text-wrapper h6{
    font-size: 1rem;
    font-weight: 400;
    line-height: auto;
    color: rgba(94, 98, 130, 1);
    margin-bottom: 0;
}

/* page-nav-tags */
.page-nav-tags{
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.page-nav-tags .tag{
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border: 1px solid rgba(27, 27, 27, 0.1);
    border-radius: 0.5rem;
    font-size: 14px;
    font-weight: 400;
    color: rgba(27, 27, 27, 0.6);
    background-color: #ffffff;
    line-height: 24px;
    text-decoration: none;
    transition: 0.3s;
}
.page-nav-tags .tag:hover{
    border: 1px solid rgba(40, 120, 235, 1);
    color: rgba(40, 120, 235, 1);
    background-color: rgba(236, 252, 255, 0.9);
}
/* rank-booster */
.rank-booster .list-items{
    list-style: none;
    padding-left: 6px;
}
.rank-booster .list-items li{
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.rank-booster .list-items li img{
    margin-right: 1.25rem;
    width: 25px;
    height: 25px;
}
.rank-booster .list-items li p{
    margin-bottom: 0;
    color: rgba(18, 20, 22, 1);
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.25rem;
}

/* apply-coaching */
.apply-coaching{
    background: rgba(238, 238, 238, 1);
    padding: 1.25rem 0;
    box-shadow: 0 0 3.3px 0 rgba(0, 0, 0, 0.24);
    max-width: 1920px;
    width: 100%;
    margin: 0 auto;
}
.apply-coaching .div-wrapper{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.apply-coaching .text-wrapper h3{
    font-size: 30px;
    line-height: 22px;
    color: rgba(26, 26, 26, 1);
    font-weight: 300;
    font-style: normal;
}
.apply-coaching .text-wrapper h3 span{
    color: rgba(132, 61, 203, 1);
    font-weight: 500;
}
.apply-coaching .btns-wrapper{
    display: flex;
    gap: 26px;
}
.apply-coaching .btns-wrapper .btn{
    padding: 7px 15px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 64px;
    display: inline-flex;
    align-items: center;
    transition: 0.3s ease-in-out;
}

/* know-about */
.know-about{
    background: rgba(61, 67, 203, 1);
    background: linear-gradient(65deg, rgba(61, 67, 203, 1) 25%, rgba(183, 61, 203, 1) 66%);
    position: relative;
    height: 548px;
    border-radius: 14px;
    margin: 0;
}
.know-about .banner-bg-img{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    padding: 0;
}
.know-about .banner-bg-img img{
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.know-about .img-wrapper{
    /* display: flex; */
    /* align-items: flex-end; */
    /* height: 100%; */
    position: absolute;
    /* right: 0; */
    bottom: -4px;
    width: 520px;
    height: 548px;
    left: -70px;
}
.know-about .content-wrapper{
    margin: 0;
    padding: 62px 0;
    justify-content: space-evenly;
    /* --bs-gutter-x: 62px; */
    /* --bs-gutter-y: ; */
    /* gap: 62px 30px; */
    /* --bs-gutter-y: 30px; */
}
.know-about .content-wrapper .col-12{
    padding: 0;
}
.know-about .content-wrapper .content-div {
    display: flex;
    gap: 1rem;
    margin-bottom: 30px;
}
.know-about .content-wrapper .content-div .divider{
    background-color: rgba(0, 0, 0, 1);
    width: 8px;
    height: 48px;
}
.know-about .content-wrapper .content-div .content h4{
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 27.2px;
    letter-spacing: 0.21px;
    color: #ffffff;
    margin-bottom: 0.5rem;
}
.know-about .content-wrapper .content-div .content p{
    font-size: 1rem;
    font-weight: 500;
    line-height: 25.1px;
    letter-spacing: 0.1px;
    color: rgba(235, 235, 235, 1);
    margin-bottom: 0;
}


/* crash-course-features */
.crash-course-features{
    --bs-gutter-x: 38px;
    --bs-gutter-y: 40px;
}
.crash-course-features .card{
    align-items: center;
    padding: 30px 14px;
    border-color: rgba(235, 235, 235, 1);
    border-radius: 15px;
    transition: 0.3s;
    height: 100%;
}
.crash-course-features .card:hover{
    box-shadow: 0 50px 80px 0 rgba(0, 0, 0, 0.05);
    border-color: transparent;
}
.crash-course-features .card img{
    height: 50px;
    width: 48px;
    margin-bottom: 1.25rem;
}
.crash-course-features .card h4{
   font-size: 1.5rem;
   font-weight: 600;
   color: rgba(10, 3, 60, 1);
   margin-bottom: 11px;
   text-align: center;
}
.crash-course-features .card p{
    font-size: 1rem;
    letter-spacing: 2%;
    font-weight: 400;
    color: rgba(93, 90, 111, 1);
    margin-bottom: 0;
    text-align: center;
}





/* modes-of-course */
.modes-of-course .top-img{
    position: relative;
    margin-bottom: 30px;
}
.modes-of-course .top-img .bg-image{
    width: 100%;
    object-fit: cover;
}
.modes-of-course .top-img .play-btn-icon{
    width: 93px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.modes-of-course .nav-tabs,
.modes-of-course .nav-tabs .nav-link,
.modes-of-course .nav-tabs .nav-link.active,
.modes-of-course .nav-tabs .nav-link:hover {
    color: #000000;
    background-color: transparent;
    border: none;
    border-color: transparent;
}
.modes-of-course .nav-tabs{
    gap: 60px;
    margin-bottom: 30px;
}
.modes-of-course .nav-tabs .nav-link{
    padding: 0;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 38px;
    border-bottom: 3px solid transparent;
    transition: 0.2s;
}
.modes-of-course .nav-tabs .nav-link.active,
.modes-of-course .nav-tabs .nav-link:hover{
    border-bottom: 3px solid rgba(197, 50, 42, 1);
}
.modes-of-course .tab-content{
    margin-bottom: 30px;
}
.modes-of-course .tab-content .tab-pane .title{
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 33px;
    color: #000000;
    margin-bottom: 24px;
}
.modes-of-course .tab-content .tab-pane .para{
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 28px;
    color: rgba(27, 27, 27, 0.6);
    margin-bottom: 0.5rem;
    text-align: justify;
}
.modes-of-course .btn{
    width: 100%;
    border-radius: 14px;
    background-color: brown;
    color: #ffffff;
    font-size: 30px;
    font-weight: 500;
    line-height: 22.5px;
    padding: 27px;
}
.modes-of-course .btn img{
    width: 2.5rem;
    height: 2.5rem;
    margin-left: 52px;
}


/* course-mode-card-list */
.course-mode-card-list .card-wrapper{
    --bs-gutter-x: 45px;
    --bs-gutter-y: 45px;
}
.course-mode-card-list .card-wrapper .card{
    padding: 0;
    border: transparent;
    box-shadow: 0 5px 5px 0 rgba(192, 189, 189, 0.25);
    border-radius: 6px;
    height: 100%;
}
.course-mode-card-list .card-wrapper .card .card-top{
    height: 228px;
    border: none;
    border-radius: 10px;
    padding: 0;
    overflow: hidden;
    position: relative;
}
.course-mode-card-list .card-wrapper .card .card-top .image-wrapper img{
    object-fit: contain;
    position: absolute;
}
.course-mode-card-list .card-wrapper .card-div:nth-child(1) .card .card-top{
    background: #F0E8D5;
}
.course-mode-card-list .card-wrapper .card-div:nth-child(1) .card .card-top .image-wrapper img{
    right: 0;
}
.course-mode-card-list .card-wrapper .card-div:nth-child(2) .card .card-top{
    background: #F0D8D5;
}
.course-mode-card-list .card-wrapper .card-div:nth-child(2) .card .card-top .image-wrapper img{
    left: 0;
}
.course-mode-card-list .card-wrapper .card-div:nth-child(3) .card .card-top{
    background: #DCF0D5;
}
.course-mode-card-list .card-wrapper .card-div:nth-child(3) .card .card-top .image-wrapper img{
    right: 0;
    bottom: 0;
}
.course-mode-card-list .card-wrapper .card .card-top .text-wrapper{
    padding: 20px 42px 20px 26px;
}
.course-mode-card-list .card-wrapper .card .card-top .text-wrapper h4{
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 28px;
    color: rgba(37, 61, 78, 1);
    margin-bottom: 0;
}
.course-mode-card-list .card-wrapper .card .card-top .text-wrapper h6{
    font-size: 1rem;
    font-weight: 400;
    line-height: auto;
    color: rgba(94, 98, 130, 1);
    margin-bottom: 0;
}
.course-mode-card-list .card-wrapper .card .card-content{
    padding: 20px 32px 20px 22px;
}
.course-mode-card-list .card-wrapper .card .card-content p{
    font-size: 1rem;
    font-weight: 500;
    color: rgba(113, 128, 150, 1);
    margin-bottom: 8px;
}
.course-mode-card-list .card-wrapper .card .card-content ul{
    padding-left: 24px;
}
.course-mode-card-list .card-wrapper .card .card-content ul li{
    font-size: 1rem;
    font-weight: 500;
    color: rgba(113, 128, 150, 1);
    margin-bottom: 0;
}

/* count-down-wrapper  */
.count-down-wrapper{
    background: rgba(13, 11, 108, 1);
    margin: 10px 0;
    border-radius: 15px;
    align-items: center;
}
.count-down-wrapper .content{
    padding: 44px 8% 44px 15%;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}
.count-down-wrapper .content h3{
   color: rgba(249, 124, 0, 1);
   font-size: 32px;
   font-weight: bold;
   letter-spacing: 3px;
   text-transform: uppercase;
   margin-bottom: 23px;
}
.count-down-wrapper .count-down{
    display: flex;
    align-items: flex-end;
    margin-bottom: 0.5rem;
}
.count-down-wrapper .count-down .count-down-div{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.count-down-wrapper .count-down .count-down-div .text{
    font-size: 13px;
    font-weight: 500;
    color: rgba(218, 218, 218, 1);
    margin-bottom: 0;
}
.count-down-wrapper .count-down .count-down-div .number{
    font-size: 65px;
    font-weight: 500;
    color: rgb(255, 255, 255);
    margin-bottom: 0;
}
.count-down-wrapper .count-down .couln-div{
    margin: 0 0.5rem;
}
.count-down-wrapper .count-down .couln-div p{
    font-size: 65px;
    font-weight: 500;
    color: rgb(255, 255, 255);
    margin-bottom: 0;
}
.count-down-wrapper .content p{
    color: rgb(255, 255, 255);
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 30px;
}
.count-down-wrapper .content .btn{
    color: rgb(255, 255, 255);
    background: rgba(240, 107, 2, 1);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0;
    padding: 11px 12px;
    border-radius: 46px;
}
.count-down-wrapper .img-div img{
    object-fit: cover;
    width: 100%;
    height: 100%;
    transform: scaleY(1.14);
}



/* weekly-schedule */
.weekly-schedule .content-wrapper h2{
    font-size: 48px;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 20px;
    color: rgba(37, 61, 78, 1);
}
.weekly-schedule .content-wrapper h2 span{
    color: rgba(61, 177, 151, 1);
}
.weekly-schedule .content-wrapper p{
    font-size: 1rem;
    line-height: 22.9px;
    color: rgba(126, 126, 126, 1);
    font-weight: 500;
    margin-bottom: 20px;
}
.weekly-schedule .content-wrapper h5{
    font-size: 1rem;
    line-height: 22.9px;
    color: rgba(37, 61, 78, 1);
    font-weight: bold;
    margin-bottom: 6px;
}
.weekly-schedule .content-wrapper h5 span{
    color: rgba(126, 126, 126, 1);
    font-weight: 500;
}
.weekly-schedule .right-div{
    margin-top: 52px;
    --bs-gutter-y: 20px;
    margin-left: 0;
    margin-right: 0;
}
.weekly-schedule .div-wrapper h3{
    font-size: 1.4rem;
    line-height: 1.4;
    font-weight: bold;
    margin-bottom: 20px;
    color: rgba(37, 61, 78, 1);
}
.weekly-schedule .div-wrapper h3.active{
    color: rgba(61, 177, 151, 1);
}
.weekly-schedule .div-wrapper h5{
    font-size: 1rem;
    line-height: 22.9px;
    font-weight: bold;
    margin-bottom: 6px;
    color: rgba(37, 61, 78, 1);
}
.weekly-schedule .div-wrapper h5 span{
    color: rgba(126, 126, 126, 1);
    font-weight: 500;
}





/* career-counselling */
.career-counselling{
    gap: 20px;
}
.career-counselling .card{
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 35px;
    padding: 16px 55px 22px 23px;
    border-color: rgba(232, 232, 232, 1);
    border-radius: 14px;
    transition: 0.3s;
}
.career-counselling .card:hover{
    box-shadow: 0 1px 20px 0 rgba(0, 0, 0, 0.1);
    border-color: transparent;
}
.career-counselling .card .content h4{
    font-size: 18px;
    line-height: 170%;
    font-weight: 600;
    color: rgba(61, 177, 151, 1);
    margin-bottom: 0;
}
.career-counselling .card .content p{
    font-size: 14px;
    line-height: 170%;
    font-weight: 400;
    color: rgba(27, 27, 27, 0.6);
    margin-bottom: 0;
}
/* banner-2 */
.banner-2{
    background: rgba(198, 229, 233, 1);
    border-radius: 14px;
    position: relative;
    height: 270px;
}
.banner-2 .banner-bg-img{
    position: absolute;
    left: 5%;
    top: 0;
    width: 85%;
    height: 100%;
}
.banner-2 .banner-bg-img img{
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.banner-2 .content{
    padding: 27px 0 52px 29px;
}
.banner-2 .content .tags{
    display: flex;
    gap: 7px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}
.banner-2 .content .tags a{
    font-size: 12px;
    line-height: 17.4px;
    font-weight: 500;
    color: rgba(27, 27, 27, 1);
    background: rgba(255, 255, 255, 0.8);
    border-radius: 6px;
    border: 1px solid rgba(27, 27, 27, 0.3);
    padding: 7px 13px;
    text-decoration: none;
}
.banner-2 .content h3{
    font-size: 2.5rem;
    line-height: 50px;
    color: rgba(75, 75, 75, 1);
    margin-bottom: 10px;
    font-weight: bold;
}
.banner-2 .content h5{
    font-size: 18px;
    line-height: 24px;
    color: rgba(44, 44, 44, 1);
    margin-bottom: 0;
    font-weight: 500;
}
/* .banner-2 .img-wrapper{
    position: relative;
} */
.banner-2 .img-wrapper img{
    object-fit: contain;
    width: 100%;
    height: 100%;
    transform: scale(1.2, 1.2);
    position: relative;
    bottom: 10%;
    right: 5%;  
}


/* course-syllabus */
.course-syllabus .nav-tabs,
.course-syllabus .nav-tabs .nav-link,
.course-syllabus .nav-tabs .nav-link.active,
.course-syllabus .nav-tabs .nav-link:hover {
    color: #000000;
    /* background-color: transparent; */
    border: 1px solid none;
    /* border-color: transparent; */
}
.course-syllabus .nav-tabs .nav-link:hover{
    border-color: none;
    border: 1px solid transparent;
}
.course-syllabus .nav-tabs{
    background: rgba(196, 230, 222, 1);
    border-radius: 14px 14px 0 0;
}
.course-syllabus .nav-tabs .nav-item .nav-link.active{
    border-radius: 0;
    background: #ffffff;
    border: 1px solid none;
}
.course-syllabus .nav-tabs:nth-child(1) .nav-item .nav-link.active{
    border-radius: 14px 0 0 0;
    border: 1px solid rgba(232, 232, 232, 1);
}
.course-syllabus .nav-tabs .nav-link{
    padding: 8px 32px;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 37.5px;
    color: #000000;
    text-transform: uppercase;
}
.course-syllabus .tab-content{
    margin-top: 20px;
}
.course-syllabus .tab-content .tab-pane{
    border: 1px solid rgba(232, 232, 232, 1);
    border-radius: 14px;
    overflow: hidden;
}
.course-syllabus .tab-content .tab-pane table{
    width: 100%;
}
.course-syllabus .tab-content .tab-pane table tr{
    border-bottom: 1px solid rgba(232, 232, 232, 1);
}
.course-syllabus .tab-content .tab-pane table tr:last-child{
    border: none;
}
.course-syllabus .tab-content .tab-pane table th,
.course-syllabus .tab-content .tab-pane table td{
    padding: 1rem 2rem;
    width: 50%;
}
.course-syllabus .tab-content .tab-pane table th{
    font-size: 18px;
    line-height: 150%;
    font-weight: bold;
    color: rgba(61, 177, 151, 1);
}
.course-syllabus .tab-content .tab-pane table td{
    font-size: 1rem;
    line-height: 150%;
    font-weight: 500;
    color: rgb(0, 0, 0);
}
.course-syllabus .tab-content .tab-pane table tr:nth-child(even){
    background-color: rgba(196, 230, 222, 1);
}





/* block-cards */
.block-cards{
    --bs-gutter-x: 58px;
    --bs-gutter-y: 52px;
}
.block-cards .card{
    position: relative;
    background: transparent;
    padding: 20px 20px 30px 20px;
    color: #ffffff;
    height: 632px;
    border-radius: 18px;
    border: 1px solid transparent;
    overflow: overlay;
}
.block-cards .card .bg-img{
    width: 100%;
    height: 100%;
    z-index: -9;
    position: absolute;
    left: 0;
    top: 0;
    transform: translate(0 ,0);
}
.block-cards .card .bg-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.block-cards .card .img-overlay{
    background: linear-gradient(rgba(54, 54, 54, 0), rgba(0, 0, 0, 0.88));
    width: 100%;
    height: 100%;
    z-index: -5;
    position: absolute;
    left: 0;
    top: 0;
    transform: translate(0 ,0);
}
.block-cards .card .content{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}
.block-cards .card .tag a{
    display: inline-block;
    background: rgba(61, 203, 177, 1);
    color: #ffffff;
    padding: 7px 11px;
    border: 1px solid rgba(27, 27, 27, 0.3);
    border-radius: 6px;
    font-size: 14px;
    font-weight: bold;
    line-height: 17.4px;
    text-decoration: none;
}
.block-cards .card .content-wrapper h3{
    font-size: 2rem;
    line-height: 42px;
    font-weight: bold;
    width: 65%;
    margin-bottom: 1.25rem;
}
.block-cards .card .content-wrapper p{
    font-size: 1rem;
    line-height: 130%;
    font-weight: 500;
    margin-bottom: 1.25rem;
}
.block-cards .card .content-wrapper .btn{
    font-size: 1rem;
    line-height: 25px;
    font-weight: bold;
    background: rgba(61, 203, 177, 1);
    color: #ffffff;
    padding: 9px 22px;
    width: 100%;
    border-radius: 67px;
}

/* content-wrapper */
.book-banner{
 border-radius: 15px;
 box-shadow: 0 1px 20px 0 rgba(0, 0, 0, 0.1);
 margin-top: 125px;
 margin-bottom: 82px;
 height: 500px;
}
.book-banner .content-wrapper{
    padding: 45px 29px;
}
.book-banner .content-wrapper h2{
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 50px;
    margin-bottom: 10px;
    color: rgba(75, 75, 75, 1);
    width: 90%;
}
.book-banner .content-wrapper h5{
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
    margin-bottom: 54px;
    color: rgba(44, 44, 44, 1);
    width: 70%;
}
.book-banner .content-wrapper .btn{
    background: rgba(240, 107, 2, 1);
    border-radius: 46px;
    font-size: 1rem;
    font-weight: 400;
    line-height: auto;
    color: rgb(255, 255, 255);
    padding: 11px 18px;
    width: 209px;
}
.book-banner .img-wrapper img{
    width: auto;
    height: auto;
    object-fit: contain;
    transform: scale(1, 1.05);
    position: relative;
    bottom: 62px;
}


/* app-banner */
.app-banner{
    /* background: url(""); */
    position: relative;
    padding: 48px 32px;
}
.app-banner::before{
    content: '';
    position: absolute;
    background: linear-gradient(308deg, rgba(81, 82, 87, 0.5) 0%, rgba(0, 16, 102, 0.8) 100%);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.app-banner .bg-img{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
.app-banner .bg-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.app-banner .app-banner-content{
    z-index: 3;
    position: relative;
}
.app-banner .app-banner-content h2{
    font-size: 40px;
    line-height: 50px;
    font-family: var(--lato);
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 10px;
}
.app-banner .app-banner-content p{
    font-size: 18px;
    line-height: 24px;
    font-family: var(--lato);
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 10px;
}
.app-banner .app-banner-content .btn{
    background: #ffffff;
    width: 234px;
    height: 70px;
    margin-top: 48px;
    margin-bottom: 24px;
}
.app-banner .app-banner-content .qr-scanner{
    width: 232px;
    height: 232px;
    object-fit: contain;
}
.app-banner .img-wrapper{
    z-index: 3;
    position: relative;
}
.app-banner .img-wrapper img{
    object-fit: contain;
}
.app-banner .socials-icon-wrapper{
    z-index: 3;
    position: relative;
    list-style: none;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 30px;
    margin-top: 28px;
}
.app-banner .socials-icon-wrapper li a .social-img{
    width: 26px;
    height: 26px;
}



/* faqs */
.faqs .accordion{
    margin-top: 20px;
}
.faqs .accordion-button,
.faqs .accordion-button:not(.collapsed) {
    color: #000000;
    background-color: #ffffff;
    box-shadow: none;
    padding: 36px 0;
    font-size: 1.5rem;
    font-weight: bold;
}

.faqs .accordion-item {
    color: #000000;
    background-color: #ffffff;
    border: none;
    border-bottom: 1px solid rgba(27, 27, 27, 0.1);
    border-radius: 0;
}
.faqs .accordion-item:last-child{
    border: none;
}
.faqs .accordion-body{
    padding: 0;
    margin-bottom: 12px;
    font-size: 1rem;
    font-weight: 500;
    line-height: 160%;
}


/* footer */
footer{
    background: #ffffff;
    padding: 0 60px 40px 60px;
    /* font-family: "DM Sans", sans-serif; */
    /* border-top: 1px solid rgba(228, 228, 228, 1); */
    /* border-width: calc(100% - 120px); */
}
footer a{
    text-decoration: none;
}
.footer-top{
    justify-content: space-between;
    margin-top: 80px;
}
.footer-bottom{
    row-gap: 40px;
    margin: 40px 0;
}
.footer-heading-1{
    font-size: 16px;
    font-weight: bold;
    line-height: 28px;
    color: #000;
    margin-bottom: 20px;
}
.footer-para{
    font-size: 14px;
    font-weight: 400;
    color: rgba(10, 20, 47, 1);
    margin-bottom: 20px;
}
.footer-contact i{
    margin-right: 8px;
    color: #0081FE;
    font-size: 19px;
    height: 24px;
    width: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.footer-contact{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-contact h6{
    font-size: 14px;
    font-weight: 600;
    color: rgba(10, 20, 47, 1);
    font-family: var(--lato);
    margin-bottom: 0;
    line-height: 22px;
}
.footer-contact .location-link,
.footer-contact .link{
    color: rgba(0, 129, 254, 1);
    font-size: 14px;
    font-weight: 600;
    font-family: var(--lato);
    margin-bottom: 0;
    line-height: 22px;
}
.footer-contact .link{
    color: rgba(10, 20, 47, 1);
}
.footer-contact span{
    font-size: 14px;
    font-weight: 600;
    color: rgba(10, 20, 47, 1);
    font-family: var(--lato);
    margin-bottom: 0;
    line-height: 22px;
    margin: 0 3px;
}
.footer-nav-links{
    list-style: none;
    padding: 0;
}
.footer-nav-links li{
    margin-bottom: 10px;
}
.footer-nav-links li a{
    font-size: 16px;
    font-weight: 500;
    color: rgba(10, 20, 47, 1);
}
.footer-copyright{
    padding: 20px 0px;
    border-top: 1px solid rgba(157, 157, 157, 0.28);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-mid{
    /* display: flex;
    align-items: center;
    justify-content: space-evenly; */
    margin-left: 0;
    margin-right: 0;
}
.footer-mid .social-links-wrapper{
    gap: 78px;
    justify-content: center;
    /* align-items: center; */
    padding-top: 40px;
    padding-bottom: 40px;
}
.footer-mid .social-links-wrapper .heading{
    font-size: 24px;
    font-weight: bold;
    line-height: 1.1;
    margin-bottom: 0;
    color: rgba(10, 20, 47, 1);
}
.footer-mid .play-store-wrapper{
    /* max-width: 270px;
    width: 100%; */
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}


.footer-mid .social-wrapper{
    /* max-width: 662px;
    width: 100%; */
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.footer-mid .social-wrapper .social-icon-list{
    list-style: none;
    padding: 0;
    margin-bottom: 0;
    display: flex;
    gap: 40px;
}
.footer-mid .social-wrapper .social-img{
    width: 47px;
    height: 47px;
}

.footer-mid .play-store-wrapper .btn{
    border: 2px solid rgba(166, 166, 166, 1);
    border-radius: 9px;
    padding: 11px 16px;
    max-width: 268px;
    width: 100%;
}


.footer-mid .contact-by{
    background: rgba(238, 238, 238, 1);
    /* border: 1px solid rgba(0, 0, 0, 0.24);
    border-left: transparent;
    border-right: transparent; */
    box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.24);
    /* filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.24)); */
    /* display: flex; */
    align-items: center;
    justify-content: space-evenly;
    padding-top: 19px;
    padding-bottom: 19px;
}
.footer-mid .contact-by h3{
    font-size: 30px;
    font-weight: 500;
    font-family: var(--lato);
    color: #843DCB;
    margin-bottom: 0;
}
.footer-mid .contact-by .btn-wrapper{
    display: inline-flex;
    gap: 26px;
    align-items: center;
    justify-content: flex-end;
}
.footer-mid .contact-by .btn-wrapper .btn{
    padding: 7px 24px;
    border-radius: 64px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}
.footer-mid .contact-by .btn-wrapper .btn span{
    font-size: 18px;
    font-weight: bold;
    line-height: 22px;
    font-family: var(--lato);
}
.footer-mid .contact-by .btn-wrapper .btn svg {
    width: 24px;
    height: auto;
}
.footer-logo{
    width: 140px;
    display: inline-block;
}
.footer-copyright .footer-nav-links{
    display: flex;
    align-items: center;
    gap: 32px;
    margin-bottom: 0;
}
.footer-copyright .footer-nav-links li a{
    color: rgba(92, 95, 102, 1);
    line-height: 16px;
    font-size: 16px;
}
.footer-copyright .copyright-text{
    font-size: 16px;
    font-weight: 600;
    line-height: 16px;
    color: rgba(166, 167, 171, 1);
    font-family: var(--lato);
    margin-bottom: 0;
}

/* feedback-review */
.feedback-review{
    overflow-x: hidden;
    position: relative;
}
.feedback-review .swiper-wrapper{
    align-items: center;
    padding-top: 26px;
    padding-bottom: 26px;
}
.feedback-review .swiper-slide{
    box-shadow: 0px 2px 25px rgba(27, 27, 27, 0.37);
    padding: 24px 20px;
    border-radius: 16px;
}
.feedback-review .swiper-slide .slider-top{
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 10px;
}
.feedback-review .swiper-slide .slider-top .avatar{
    width: 48px;
    height: 48px;
    border-radius: 50%;
}
.feedback-review .swiper-slide .slider-top .avatar-name{
    font-size: 16px;
    line-height: 23px;
    font-weight: 500;
    color: #0C062C;
    margin-bottom: 5px;
}
.feedback-review .swiper-slide .slider-top .star-wrapper i{
    font-size: 12px;
    color: rgba(61, 177, 151, 1);
}
.feedback-review .swiper-slide .title{
    font-size: 16px;
    font-weight: 600;
    line-height: 26px;
    color: #000000;
    margin-bottom: 11px;
}
.feedback-review .swiper-slide .desc{
    font-size: 16px;
    font-weight: 400;
    line-height: 21px;
    color: rgba(12, 6, 44, 1);
    margin-bottom: 6px;
}
.feedback-review .navigation-wrapper{
    position: relative;
    height: 36px;
    width: 180px;
    margin: 0 auto;
    overflow: hidden;
    display: flex;
    align-items: center;
}
/* .feedback-review .navigation-wrapper .swiper-pagination-bullet{
    background: rgb(138, 182, 172);
    width: 14px;
    height: 14px;
    margin: 0 2px;
} 
.feedback-review .navigation-wrapper .swiper-pagination-bullet-active{
    background: #3DB197;
} */
.feedback-review .navigation-wrapper .swiper-button-prev:after,
.feedback-review .navigation-wrapper .swiper-button-next:after  {
    font-weight: bold;
    font-size: 18px;
    color: #3DB197;
    /* height: max-content; */
}