:root {
    --primary-color: #FD91A6;
    --secondary-color: #1B1464;
    --txt-color: #000;
    --txt-color-white: #fff;
    --bg-color: #eee;
    --bg-color-1: var(--secondary-color);
    --bg-color-2: #FFD900;
    --bg-color-3: #FD91A6;
    --alert-color: #dc3545;
}

* {
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Montserrat", sans-serif;
    color: var(--txt-color);
    font-weight: 600;
    -webkit-font-smoothing: antialiased;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    word-break: break-word;
    background-color: var(--bg-color);
}

strong {
    font-weight: 800;
}

img {
    max-width: 100%;
    height: auto;
}

a,
a:hover {
    color: var(--primary-color);
    outline: none;
}

a:hover {
    text-decoration: none;
}

ul {
    margin-bottom: 0;
    list-style: none;
}

.overflow-h {
    position: fixed;
    overflow: hidden;
    width: 100%;
}

.h2,
h2 {
    margin-bottom: 1.5rem;
    font-size: 40px;
    font-weight: 800;
    line-height: 1.2;
}

.h3,
h3 {
    margin-bottom: 1.5rem;
    font-size: 24px;
    font-weight: 800;
    line-height: 1.2;
}

.bg1 {
    background-color: var(--bg-color-1);
}

.bg2 {
    background-color: var(--bg-color-2);
}

.bg3 {
    background: url(../img/pattern-bg.png) top left repeat fixed #fff;
    background-size: contain;
}

.bg4 {
    background-size: contain;
    background-color: #000;
}

.errorMsg {
    margin-top: 4px;
    font-size: 14px;
    font-weight: 500;
    color: var(--alert-color);
}

.overflow-h {
    position: fixed;
    overflow: hidden;
    width: 100%;
}

.transition {
    transition: all 0.3s ease;
}

.bullet-list li {
    padding-left: 15px;
    color: var(--txt-color);
    position: relative;
}

.bullet-list li+li {
    /* margin-top: 10px; */
    margin-bottom: 10px;
}

.bullet-list li span {
    color: var(--txt-color);
    position: absolute;
    left: 0;
    top: 0;
    font-size: 20px;
    line-height: 1;
}

.btn {
    padding: 15px 30px;
    border-radius: 30px;
    font-size: 16px;
    text-transform: uppercase;
    min-width: 150px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 50px;
}

.btn-o {
    color: var(--txt-color-white) !important;
    border-color: var(--txt-color-white);
}

.btn-secondary-o {
    color: var(--secondary-color) !important;
    border-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-secondary-o:hover {
    color: var(--txt-color-white) !important;
}

.btn-primary {
    color: var(--txt-color-white) !important;
    border-color: var(--primary-color);
    background-color: var(--primary-color);
}

.btn-third {
    color: var(--txt-color-white) !important;
    border-color: var(--secondary-color);
    background-color: var(--secondary-color);
}

.btn-third:hover {
    color: var(--txt-color-white) !important;
    border-color: var(--primary-color);
    background-color: var(--primary-color);
}

.btn-primary:hover,
.btn-o:hover,
.btn-secondary-o:hover {
    border-color: var(--secondary-color);
    background-color: var(--secondary-color);
}

.btn-primary-hover:hover {
    color: var(--txt-color-white) !important;
    border-color: var(--primary-color);
    background-color: var(--primary-color);
}

.fullBtn {
    width: 100%;
}

.mainWrapper {
    padding-top: 132px;
}

header {
    padding: 16px 20px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    transition: padding .3s ease-in;
}

header nav li {
    margin-left: 32px;
}

header nav a {
    display: inline-flex;
    text-decoration: none;
    color: var(--txt-color-white);
    border-bottom: 2px solid transparent;
    text-transform: uppercase;
}

header nav a:hover,
header nav a.active {
    color: var(--txt-color-white);
    border-bottom-color: var(--txt-color-white);
}

header .right .btn {
    margin-left: 24px;
}

header.fixed {
    padding: 8px 20px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    background-color: var(--secondary-color);
}

header.fixed .btn:hover {
    color: var(--secondary-color) !important;
    background-color: var(--txt-color-white);
}


/* header.fixed nav a {
display: inline-flex;
text-decoration: none;
color: var(--txt-color);
}

header.fixed nav a:hover {
color: var(--txt-color);
border-bottom-color: var(--txt-color);
}

header.fixed .btn-o {
color: var(--secondary-color) !important;
border-color: var(--secondary-color);
}

header.fixed .btn-o:hover {
color: var(--txt-color-white) !important;
} */

header .logo img {
    width: 200px;
}

header.fixed .logo img {
    width: 150px;
}

.menuCloseBtn {
    opacity: 0;
    visibility: hidden;
}

.menuOverlay {
    opacity: 0;
    visibility: hidden;
}

.hamburger-box {
    margin-left: 15px;
    position: relative;
    width: 49px;
    height: 49px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.hamburger-inner {
    top: 50%;
}

.hamburger-inner,
.hamburger-inner:after,
.hamburger-inner:before {
    position: absolute;
    width: 20px;
    height: 2px;
    transition-timing-function: ease;
    transition-duration: 0.15s;
    transition-property: transform;
    background-color: var(--txt-color-white);
}

.hamburger-inner:after,
.hamburger-inner:before {
    display: block;
    content: "";
}

.hamburger-inner:before {
    top: -7px;
}

.hamburger-inner:after {
    bottom: -6px;
}

.mobMenuDrawer {
    top: 0;
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 100;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
}

.mobMenuDrawer.show {
    opacity: 1;
    visibility: visible;
}

.mobMenuDrawer.show .links {
    transform: translateX(0);
}

.mobMenuDrawer .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.8;
    cursor: pointer;
    background-color: #000;
}

.mobMenuDrawer .clseBtn {
    position: absolute;
    top: 0;
    right: 290px;
    color: #fff;
    cursor: pointer;
    font-size: 40px;
    z-index: 2;
}

.mobMenuDrawer .links {
    position: absolute;
    right: 0;
    top: 0;
    border-top: 1px solid var(--txt-color-light);
    width: 280px;
    height: 100%;
    overflow-y: auto;
    transition: all 0.3s ease;
    transform: translateX(200%);
    background-color: #fff;
}

.mobMenuDrawer .links li {
    border-bottom: 1px solid var(--txt-color-light);
}

.mobMenuDrawer .links li a {
    padding: 20px 28px;
    display: block;
    position: relative;
    font-size: 15px;
    line-height: normal;
    color: var(--txt-color-dark);
    font-weight: 800;
}

.mobMenuDrawer .links li a i {
    position: absolute;
    top: 26px;
    right: 18px;
    font-size: 10px;
    display: block;
    transition: transform 0.3s ease;
    transform: rotate(270deg);
}

.mobMenuDrawer .links .submenu {
    padding: 0 0 10px 25px;
}

.mobMenuDrawer .links .submenu a {
    padding: 10px 15px;
    font-size: 14px;
    border-top: 1px solid #dcdcdc;
    font-weight: 400;
}

.mobMenuDrawer .links a[aria-expanded="true"] i {
    transform: rotate(90deg);
}

.mobMenuDrawer .links .submenu a:hover {
    background-color: #f9f9f9;
}

.mobMenuDrawer .links li h4 {
    font-weight: bold;
    color: var(--primary-color);
}

.patternBg {
    background: url(../img/pattern-bg.png) top left no-repeat;
    background-size: cover;
}

.bannerBox {
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 100vh;
    /* background: url(../img/banner-bg.png) top left no-repeat; */
    background-size: cover;
    overflow: hidden;
}

.bannerBox:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0) 100%);
}

.bannerBox h1 {
    position: relative;
    font-weight: 700;
    font-size: 9vw;
    line-height: 9vw;
    color: var(--txt-color-white);
}

.bannerBox h1 span {
    display: block;
    margin-left: 25.5vw;
}

.bannerBox .scrollDownArrow {
    position: absolute;
    bottom: 48px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: 2px solid #fff;
    border-radius: 50%;
}

.bannerBox .container {
    position: relative;
}

.bannerBox .info {
    max-width: 800px;
    font-size: 24px;
    /* text-transform: uppercase; */
    font-weight: 800;
}

.scrollingContentBox {
    padding: 61px 0;
    overflow: hidden;
}

.scrollingContentBox ul {
    display: flex;
    align-items: center;
    width: 100%;
}

.scrollingContentBox li {
    margin: 0 20px;
    font-size: 37px;
    font-weight: 800;
    text-transform: uppercase;
    white-space: nowrap;
    letter-spacing: 3px;
    color: var(--secondary-color);
    text-shadow: -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff, 1px 1px 0 #fff;
}

.scrollingContentBox img {
    min-width: 334px;
}

.scrollingContentBox .ellipse img {
    min-width: 22px;
}

.section {
    padding: 104px 0;
}

.cardBox .item img {
    width: 100%;
}

.cardBox .item {
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
}

.cardBox .item:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 42.19%, rgba(0, 0, 0, 0.8) 100%);
}

.cardBox .content {
    padding: 32px 16px;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    color: #fff;
    text-align: center;
    transition: bottom .3s ease;
}

.cardBox .item:hover .content {
    bottom: 0;
}

.cardBox h4 {
    margin-bottom: 1.5rem;
    font-size: 24px;
    font-weight: 700;
    /* text-transform: uppercase; */
}

.cardBox p {
    margin-bottom: 1.5rem;
}

.cardBox h5 {
    margin: 0 0 24px;
    font-size: 16px;
    /* text-transform: uppercase; */
    font-weight: 700;
}

.teamsDetailPopup .bg2 {
    padding: 2rem;
    margin-bottom: 1rem;
    position: relative;
}

.teamsDetailPopup .clseBtn {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    cursor: pointer;
    top: 0;
    right: 0;
    font-size: 40px;
    width: 50px;
    height: 50px;
    color: var(--txt-color-white);
    background-color: var(--secondary-color);
}

.teamsDetailPopup .col-md-5 img {
    width: 100%;
}

.wf-section {
    position: static;
    height: 400vh;
}

.wf-section-inner {
    position: sticky;
    left: 0%;
    top: 0%;
    right: 0%;
    bottom: 0%;
    display: flex;
    width: 100%;
    height: 100vh;
    margin-top: auto;
    margin-bottom: auto;
    justify-content: space-around;
    flex-wrap: wrap;
    align-items: center;
}

.wf-section-inner-div {
    display: flex;
    margin-top: auto;
    margin-bottom: auto;
    padding-top: 0vh;
    -ms-flex-pack: start;
    justify-content: flex-start;
    flex: 0 auto;
}

.facilitiesSliderBox {
    margin: 0 auto;
    position: relative;
}

.facilitiesSliderBox .slider {
    position: relative;
}

.facilitiesSliderBox .content {
    position: absolute;
    bottom: 180px;
    left: 0;
    width: 100%;
}

.facilitiesSliderBox h3 {
    margin-bottom: 0;
    line-height: normal;
    color: #fff;
    /* text-transform: uppercase; */
    max-width: 832px;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.15);
}

.facilitiesNavWrapper {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

.facilitiesSliderBox .slick-arrow {
    position: absolute;
    bottom: calc(100% + 10px);
    right: 15px;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 50%;
    cursor: pointer;
    background-color: #fff;
}

.facilitiesSliderBox .slick-arrow:hover {
    background-color: var(--primary-color);
}

.facilitiesSliderBox .slick-prev {
    right: 65px;
}

.facilities-nav .item {
    margin: 0 8px;
}

.facilitiesSliderBox .sliderTitle {
    position: absolute;
    left: 0;
    top: calc(100% - 160px);
    width: 100%;
}

.facilitiesSliderBox .sliderTitle h4 {
    margin-bottom: 0;
    font-size: 18px;
    font-weight: 500;
    /* text-transform: uppercase; */
    color: var(--txt-color-white);
}

.facilitiesSliderBox .sliderTitle .line {
    margin: 0 106px 0 16px;
    flex: 1;
    height: 1px;
    background-color: var(--txt-color-white);
}

.facilities-for .item img {
    height: 600px;
    object-fit: cover;
    width: 100%;
    background: #000000;
    background: -webkit-linear-gradient(top, #000000, #000000);
    background: -moz-linear-gradient(top, #000000, #000000);
    background: linear-gradient(to bottom, #000000, #000000);
}

.facilities-nav .item img {
    height: 112px;
    object-fit: cover;
    width: 100%;
}

.approachCategoryBox {
    position: relative;
}

.approachCategoryBox .category {
    /* position: sticky; */
    top: 93px;
}

.approachCategoryBox h2,
.approachCategoryBox h3 {
    font-size: 32px;
    text-transform: uppercase;
    color: #fff;
}

.approachCategoryBox h3 {
    font-size: 26px;
    color: #fff;
}

.approachCategoryBox li {
    color: #fff;
}

.approachCategoryBox .applyBtn {
    padding: 0 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 50px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--txt-color-dark);
    border-radius: 30px;
    border: 2px solid #000;
}

.approachCategoryBox .applyBtn:hover {
    color: var(--txt-color-white);
    border: 2px solid #000;
    background-color: #000;
}

.approachCategoryBox li+li {
    margin-top: 16px;
}

.studentsAreaBox h3 {
    margin: 6rem 0;
}

.studentsAreaBox .contentCard {
    position: relative;
    margin-bottom: 340px;
}

.studentsAreaBox .contentCard img {
    width: 100%;
}

.studentsAreaBox .playgroup {
    margin-bottom: 240px;
}

.studentsAreaBox .content {
    padding: 40px;
    margin-top: -50%;
    max-width: 504px;
    color: #fff;
    position: absolute;
    background-color: var(--secondary-color);
}

.studentsAreaBox .content h3 {
    margin: 0 0 1rem;
    color: #fff;
}

.partnerBox h4 {
    font-size: 24px;
    font-weight: 800;
    text-transform: uppercase;
}

.testiomonialsBox {
    text-align: center;
    background-color: #eee;
}

.testiomonialsBox .container {
    position: relative;
}

.testiomonialsBox .content {
    margin: 0 auto 120px;
    max-width: 868px;
    width: 100%;
}

.testiomonialsBox .quote {
    position: absolute;
    width: 92px;
}

.testiomonialsBox .quote-left {
    top: 0;
    left: 0;
}

.testiomonialsBox .quote-right {
    bottom: -60px;
    right: 0;
    transform: scale(-1, -1);
}

.testiomonialsBox .slick-arrow {
    position: absolute;
    bottom: -120px;
    z-index: 1;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border: 0;
    border-radius: 50%;
    cursor: pointer;
    background-color: #fff;
}

.testiomonialsBox .slick-arrow:hover {
    background-color: var(--primary-color);
}

.testiomonialsBox .slick-prev {
    left: calc(50% - 40px);
}

.testiomonialsBox .slick-next {
    left: calc(50% + 40px);
}

.teachersSayBox .info {
    padding: 4rem;
    display: flex;
    justify-content: center;
    flex-direction: column;
    max-width: 50%;
    min-width: 50%;
    background-color: var(--bg-color-2);
}

.teachersSayBox p {
    font-size: 16px;
    /* text-transform: uppercase; */
    /* font-weight: 800; */
}

.teachersSayBox .info h4 {
    font-size: 16px;
    text-transform: uppercase;
}

.teachersSayBox figure {
    min-width: 50%;
}

.teachersSayBox figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.teachersSayBox-1 .info {
    padding: 4rem;
    display: flex;
    justify-content: center;
    flex-direction: column;
    max-width: 50%;
    min-width: 50%;
    background-color: var(--bg-color-2);
}

.teachersSayBox-1 p {
    font-size: 16px;
    /* text-transform: uppercase; */
    /* font-weight: 800; */
}

.teachersSayBox-1 .info h4 {
    font-size: 16px;
    text-transform: uppercase;
}

.teachersSayBox-1 figure {
    min-width: 100%;
}

.teachersSayBox-1 figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.topHeaderSpacing {
    padding-top: 15rem;
}

.contactusBox {
    padding: 13rem 0 5rem;
}

.contactusBox h2 {
    font-size: 32px;
    text-transform: uppercase;
}

.contactusBox h3 {
    font-size: 24px;
    text-transform: uppercase;
}

.contactusBox .container {
    max-width: 816px;
}

.contactusBox .form-control {
    padding: 0 20px;
    border-width: 2px;
    border-color: #000;
    border-radius: 30px;
    color: #000;
    height: 54px;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 14px;
    background-color: transparent;
}

.contactusBox select.form-control {
    background: url(../img/select-arrow.png) calc(100% - 20px) no-repeat;
    background-size: 16px;
}

.contactusBox .form-control::placeholder {
    color: #000;
}

.contactusBox .btn-o {
    border-width: 2px;
    width: 300px;
    line-height: 1;
    border-color: #000;
    color: #000 !important;
}

.contactusBox .btn-o:hover {
    background-color: var(--txt-color) !important;
    color: #fff !important;
}

.contactusBox .btn:hover {
    background-color: #fd6a87;
}

.contactusBox .addBtn {
    margin-left: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 54px;
    min-height: 54px;
    max-width: 54px;
    max-height: 54px;
    border-radius: 50%;
    color: #000;
    border: 2px solid var(--txt-color)
}

.contactusBox .addBtn:hover {
    color: #fff;
    background-color: var(--txt-color);
}

.contactusBox .addBtn:hover svg {
    stroke: #fff;
}

.contactusBox textarea.form-control {
    padding: 20px;
    height: 300px;
}

footer {
    padding: 104px 0;
    color: #fff;
    font-size: 14px;
}

footer h4 {
    margin-bottom: 32px;
    font-size: 16px;
    font-weight: 700;
}

footer a {
    color: #fff;
    text-decoration: none;
}

footer ul {
    padding-left: 0;
}

footer ul li+li {
    margin-top: 32px;
}

footer address div {
    display: flex;
    align-items: flex-start;
}

footer address div+div {
    margin-top: 32px;
}

footer address div img {
    margin-right: 16px;
    width: 24px;
}

.align-mine {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: space-between;
    align-items: center;
}
.home-video-iframe {height:100vh;}
.bannerBox-home:before {content:none !important;}
@media screen and (min-width: 992px) {
    .content-left-padding {
        padding-left: 52px;
    }
    .aboutTeacherSticky {
        position: sticky;
        top: 93px;
    }
    .aboutTeacher {
        position: relative;
    }
}

@media screen and (min-width: 768px) {
    .cardBox .content {
        bottom: -82px;
    }
}

@media screen and (max-width: 1399px) {
    .menuOverlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        transition: all .3s ease;
        filter: blur(8px);
        background-color: rgba(0, 0, 0, 0.75);
    }
    .showMenu .menuOverlay {
        opacity: 1;
        visibility: visible;
    }
    nav {
        padding: 16px 16px 32px;
        transition: right .3s ease;
        position: fixed;
        top: 0;
        right: -100%;
        width: 320px;
        height: 100%;
        overflow-y: auto;
        z-index: 1;
        background-color: #fff;
    }
    .showMenu nav {
        right: 0;
    }
    .menuCloseBtn {
        opacity: 1;
        visibility: visible;
        position: fixed;
        top: 16px;
        right: -100%;
        color: #fff;
        font-size: 40px;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: right .3s ease;
        font-weight: 500;
        cursor: pointer;
    }
    .showMenu .menuCloseBtn {
        right: 330px;
    }
    header nav ul {
        padding-left: 0;
        margin-bottom: 16px;
        flex-direction: column;
    }
    header nav li {
        margin: 0;
    }
    header nav li a {
        padding: 16px;
        display: flex;
    }
    header nav a {
        color: var(--txt-color);
    }
    header nav a:hover,
    header nav a.active {
        color: var(--primary-color);
    }
    .studentsAreaBox h3 {
        margin: 2rem 0;
    }
    .studentsAreaBox .content {
        margin-top: 0;
        position: static;
        max-width: 100%;
    }
    .studentsAreaBox .contentCard {
        margin-bottom: 24px;
    }
}

@media screen and (max-width: 1024px) {
    header,
    header.fixed {
        padding: 8px 0;
    }
    header .logo img,
    header.fixed .logo img {
        width: 110px;
    }
    .h2,
    h2 {
        font-size: 32px;
    }
    .h3,
    h3 {
        font-size: 28px;
    }
    .bannerBox h1 {
        font-size: 54px;
        line-height: normal;
    }
    .bannerBox h1 span {
        margin-left: 30px;
    }
    .section {
        padding: 48px 0;
    }
    .topHeaderSpacing {
        padding-top: 83px;
    }
    .cardBox h4 {
        margin-bottom: 1rem;
        font-size: 24px;
    }
    .cardBox .item {
        margin-bottom: 1rem;
    }
    .facilitiesSliderBox .sliderTitle h4,
    .partnerBox h4 {
        font-size: 18px;
    }
    .facilitiesNavWrapper .slick-list {
        display: none;
    }
    .facilitiesSliderBox .sliderTitle {
        top: auto;
        bottom: 20px;
    }
    .facilitiesSliderBox .content {
        bottom: 80px;
    }
    .testiomonialsBox .quote {
        width: 42px;
    }
    .testiomonialsBox .content {
        margin-bottom: 80px;
    }
    .testiomonialsBox .slick-arrow {
        bottom: -80px;
    }
    footer {
        padding: 56px 0;
    }
    footer .logo img {
        width: 110px;
    }
    footer .footerCol {
        margin-bottom: 40px;
    }
    footer .footerCol:first-child {
        margin-bottom: 30px;
    }
    footer ul li+li {
        margin-top: 16px;
    }
    footer h4 {
        margin-bottom: 16px;
    }
    footer .footerCol .col-md-6 {
        margin-bottom: 16px;
    }
    footer address div+div {
        margin-top: 16px;
    }
}

@media screen and (max-width: 991px) {
    .teachersSayBox .info {
        padding: 1rem;
        max-width: 100%;
    }
    .teachersSayBox p,
    .teachersSayBox .info h4 {
        font-size: 16px;
    }
    .approachCategoryBox .category {
        position: static;
    }
    .approachCategoryBox .content {
        margin-top: 30px;
    }
    .approachCategoryBox h2 {
        margin-bottom: 0;
        font-size: 28px;
    }
    .approachCategoryBox h3 {
        font-size: 20px;
    }
}

@media screen and (max-width: 767px) {
    .bannerBox .info {
        font-size: 18px;
    }
    .contactusBox {
        padding-top: 8rem;
    }
    .contactusBox h2 {
        font-size: 26px;
    }
    .contactusBox h3 {
        font-size: 20px;
    }
    .cardBox .slick-dots {
        padding: 0;
        margin: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .cardBox .slick-dots button {
        margin: 0 5px;
        border: 0;
        width: 10px;
        height: 10px;
        text-indent: -9999px;
        border-radius: 50%;
        background-color: #fff;
    }
    .cardBox .slick-slider {
        padding: 0 15px;
    }
    .cardBox .slick-active button {
        background-color: var(--secondary-color);
    }
    .teamsDetailPopup .bg2 {
        padding: 3rem .2rem 2rem;
    }
    .cardMobileSlider .slick-list {
        padding-left: 15px;
    }
    .cardMobileSlider .item {
        margin-right: 16px;
        max-width: 306px;
    }
}

@media (min-width: 320px) and (max-width: 600px) {
    .h2,
    h2 {
        font-size: 24px;
    }
    body {
        font-size: 14px;
    }
    .btn {
        font-size: 12px;
    }
    .h3,
    h3 {
        font-size: 20px;
    }
    .teachersSayBox p,
    .teachersSayBox .info h4 {
        font-size: 14px;
    }
    .section {
        padding: 40px 20px;
    }
    .facilities-for .item img {
        height: 400px;
    }
    html {
        scroll-behavior: smooth;
    }
     :target:before {
        content: "";
        display: block;
        height: 80px;
        margin: -80px 0 0;
    }
    .bannerBox {
        background-position: 25% 75%;
    }
}