* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@media all and (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transition: .3s;
        margin-top: 0;
    }

    .navbar .nav-item:hover .nav-link {
        color: #fff;
    }

    .navbar .dropdown-menu.fade-down {
        top: 80%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
    }

    .navbar .dropdown-menu.fade-up {
        top: 180%;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transition: .3s;
        opacity: 1;
        visibility: visible;
        top: 100%;
        transform: rotateX(0deg);
    }
}

.container,
.container-lg,
.container-md,
.container-sm,
.container-xl {
    max-width: 95%;
}

body {
    font-family: 'Poppins', sans-serif;
}

h1,
h2,
h3,
h4 {
    font-family: 'Merriweather', serif;
}

a:hover {
    text-decoration: none;
}


.alert.alert-message {
    padding: 10px 40px 10px 12px;
    border-radius: 0;
    font-size: 15px;
    line-height: 20px;
}

.alert.alert-message button.close {
    padding: 5px 16px !important;
    font-size: 30px;
}

/*------------- Mobile Menu Start ---------------*/
body.offcanvas-active {
    overflow: hidden;
}

nav.mobile-offcanvas .mobile-logo img {
    width: 140px;
}

.offcanvas-header button.btn-close {
    background: transparent;
    border: 0;
    padding: 0;
    color: #fff;
    font-size: 34px;
}

nav.mobile-offcanvas ul.navbar-nav li ul.dropdown-menu {
    background: #082958;
    border-radius: 0;
    margin-top: 0;
    border: 0;
}

nav.mobile-offcanvas ul.navbar-nav li ul.dropdown-menu li a.dropdown-item {
    position: relative;
    color: #fff;
    padding: 8px 16px 8px 25px;
    border-bottom: 2px solid #0a2d60;
    font-size: 17px;
    line-height: 23px;
    font-weight: 400;
    white-space: normal;
}

nav.mobile-offcanvas ul.navbar-nav li ul.dropdown-menu li a.dropdown-item i {
    margin-right: 3px;
    position: absolute;
    left: 10px;
    top: 9px;
}

nav.mobile-offcanvas ul.navbar-nav li ul.dropdown-menu li:last-child a.dropdown-item {
    border-bottom: 0;
}

nav.mobile-offcanvas ul.navbar-nav li a.nav-link {
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    padding: 10px 0;
    border-bottom: 2px solid #082958;
    text-transform: uppercase;
}

nav.mobile-offcanvas ul.navbar-nav li a.nav-link i {
    position: relative;
    top: 3px;
}

nav.mobile-offcanvas ul.navbar-nav {
    width: 100%;
    margin-top: 40px;
}

nav.mobile-offcanvas {
    background: #07234b;
    padding: 20px 20px 30px;
}

.offcanvas-header {
    display: none;
}

.screen-overlay {
    width: 0%;
    height: 100%;
    z-index: 9999;
    position: fixed;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    background-color: rgba(34, 34, 34, 0.6);
    transition: opacity .2s linear, visibility .1s, width 1s ease-in;
}

.screen-overlay.show {
    transition: opacity .5s ease, width 0s;
    opacity: 1;
    width: 100%;
    visibility: visible;
}

.mobile-address {
    margin-top: 20px;
}

.mobile-address p {
    font-size: 16px;
    line-height: 21px;
    color: #fff;
    font-weight: 200;
    margin-bottom: 0;
}

.mobile-address div a i {
    font-size: 14px;
    margin-right: 3px;
}

.mobile-address div a {
    color: #fff;
    font-weight: 200;
    font-size: 16px;
}

.mobile-address div {
    margin-top: 7px;
}

ul.mobile-social-media {
    list-style-type: none;
    display: flex;
    margin-top: 30px;
    margin-bottom: 0;
}

ul.mobile-social-media li a {
    color: #fff;
    margin-right: 10px;
    font-size: 16px;
    border: 1px solid #fff;
    padding: 4px 9px;
    border-radius: 2px;
}

@media all and (max-width:1301px) {
    .offcanvas-header {
        display: block;
    }

    .mobile-offcanvas {
        visibility: hidden;
        transform: translateX(-100%);
        border-radius: 0;
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        height: 100%;
        z-index: 9999;
        width: 80%;
        overflow-y: scroll;
        overflow-x: hidden;
        transition: visibility .2s ease-in-out, transform .2s ease-in-out;
    }

    .mobile-offcanvas.show {
        visibility: visible;
        transform: translateX(0);
    }
}

/*------------- Mobile Menu End ---------------*/


.enquire-fixed-btn {
    transform: rotate(270deg);
    position: fixed;
    top: 50%;
    right: -61px;
    z-index: 999;
    cursor: pointer;
    background-color: #ffcb24;
    border-color: #ffcb24;
    border-radius: 5px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    box-shadow: 0 3px 10px rgb(0 0 0 / 0.2);
}

.enquire-fixed-btn a {
    color: #161616;
    padding: 6px 20px;
    font-size: 17px;
    display: inline-block;
    font-weight: 600;
    text-transform: uppercase;
}

.whatsapp-fixed-btn {
    position: fixed;
    bottom: 4%;
    right: 2.5%;
    z-index: 999;
    box-shadow: 0 3px 10px rgb(0 0 0 / 20%);
    border-radius: 50%;
}

.whatsapp-fixed-btn a img {
    width: 50px;
    border: 2px solid #fff;
    border-radius: 50%;
}

/*********************** Preloader Start ***********************/
.preloader {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
    text-align: center;
    -webkit-transition: 0.2s;
    transition: 0.2s;
}

.preloader .loader {
    position: absolute;
    top: 35%;
    left: 0;
    right: 0;
    -webkit-transform: translateY(-43%);
    transform: translateY(-43%);
    text-align: center;
    margin: 0 auto;
    -webkit-transition: 0.6s;
    transition: 0.6s;
}

.preloader .box {
    width: 100%;
    height: 100%;
    background: #fff;
    -webkit-animation: animate 0.5s linear infinite;
    animation: animate 0.5s linear infinite;
    position: absolute;
    top: 0;
    left: 0;
}

.preloader .shadow {
    width: 100%;
    height: 5px;
    background: #000;
    opacity: 0.1;
    position: absolute;
    top: 59px;
    left: 0;
    border-radius: 50%;
    -webkit-animation: shadow 0.5s linear infinite;
    animation: shadow 0.5s linear infinite;
}

.preloader::after,
.preloader::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: #fff;
    -webkit-transition: 0.6s;
    transition: 0.6s;
}

.preloader .box img {
    background: 0 0;
    width: 250px;
    border-radius: 4px;
}

.preloader::after {
    left: auto;
    right: 0;
}

.preloader.preloader-deactivate {
    visibility: hidden;
}

.preloader.preloader-deactivate::after,
.preloader.preloader-deactivate::before {
    width: 100%;
    opacity: 0;
    visibility: hidden;
}

.preloader.preloader-deactivate .loader {
    opacity: 0;
    visibility: hidden;
}

/*********************** Preloader End ***********************/

/*********************** Header Start ***********************/
.topHeader {
    padding: 8px 10px;
}

.header nav.navbar {
    padding: 0;
    margin-left: 40px;
}

.topAddress a {
    font-size: 17px;
    color: #fff;
    display: inline-block;
    font-weight: 300;
}

.topAddress span {
    color: #fff;
    padding: 0 10px;
}

.topAddress a i {
    position: relative;
    font-size: 15px;
    margin-right: 4px;
    top: 0px;
    color: #e5e5e5;
}

.header nav.navbar ul.navbar-nav li a.nav-link {
    font-size: 17px;
    color: #fff;
    font-weight: 400;
    padding: 11px 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.header {
    padding: 40px 0 30px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    background: linear-gradient(180deg, rgb(0, 0, 0, .7), transparent);
}

.header .main-logo a {
    display: block;
    width: 200px;
}

.header nav.navbar ul.navbar-nav li ul.dropdown-menu {
    border-radius: 0;
    box-shadow: 0 3px 10px rgb(0 0 0 / 20%);
    min-width: 12rem;
    left: 20px;
    background: rgb(255, 255, 255, 1);
}

.header nav.navbar ul.navbar-nav li ul.dropdown-menu a.dropdown-item {
    font-size: 16px;
    color: #333;
    font-weight: 500;
    padding: 6px 16px;
    text-transform: capitalize;
    border-bottom: 1px solid #ddd;
}

.header nav.navbar ul.navbar-nav li ul.dropdown-menu li:last-child a.dropdown-item {
    border-bottom: 0;
}

.header nav.navbar ul.navbar-nav li ul.dropdown-menu .dropdown-item.active,
.header nav.navbar ul.navbar-nav li ul.dropdown-menu .dropdown-item:active {
    color: #111;
    background-color: #f4f4f4;
}

.header nav.navbar .navbar-box {
    background: rgb(7, 35, 75, .8);
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
}

/*********************** Header End ***********************/

/*********************** Slider Start ***********************/
.main-slider {
    position: relative;
    overflow: hidden;
}

.main-slider .carousel-item img.sliderimages {
    height: 87vh;
    object-fit: cover;
    object-position: top;
    width: 100%;
    animation: pulse 20s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.2);
    }
}

.main-slider .carousel-caption {
    text-align: left;
    left: 0;
    right: 0;
    bottom: 0;
    padding-top: 40px;
    padding-right: 5%;
    padding-bottom: 40px;
    padding-left: 5%;
    background: linear-gradient(0deg, rgba(0, 0, 0, .8), transparent);
}

.main-slider .carousel-caption.carousel-caption1 {
    padding: 60px 6% 25px;
}

.main-slider .carousel-caption h1 {
    font-size: 40px;
    text-transform: capitalize;
    font-weight: 300;
    margin-bottom: 6px;
    font-family: 'Poppins', sans-serif;
}

.main-slider .carousel-caption h4 {
    font-size: 26px;
    font-weight: 300;
    text-align: right;
    margin-bottom: 0;
    display: flex;
    vertical-align: middle;
    align-items: end;
    font-style: italic;
    text-shadow: 1px 1px 30px #000;
}

.main-slider .carousel-caption h2 {
    font-size: 30px;
    font-weight: 300;
    margin-bottom: 0;
    font-family: 'Poppins', sans-serif;
    color: white;
    text-transform: capitalize;
}

.main-slider .carousel-caption h3 {
    font-size: 44px;
    font-weight: 400;
    margin-bottom: 0;
    color: white;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
    text-shadow: 1px 1px 30px #000;
}

.main-slider .carousel-caption h3 span {
    color: #ffcb24;
    font-style: normal;
    font-weight: 400;
    font-size: 28px;
    margin-top: 12px;
}

.main-slider .carousel-item {
    position: relative;
}

.caption-text {
    justify-content: space-between;
}

.main-slider .carousel-caption a {
    background: #ffcb24;
    color: #000;
    font-size: 17px;
    padding: 8px 22px 6px;
    display: inline-block;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 4px;
}

.main-slider .carousel-item:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.1);
}

.main-slider .carousel-control-next,
.main-slider .carousel-control-prev {
    position: absolute;
    width: 25px;
    bottom: 0;
    top: auto;
    height: 100px;
    background: rgba(255, 255, 255, 0.7);
    padding: 0;
    color: #000000;
    text-align: center;
    opacity: 1;
    transition: opacity .15s ease;
}

.main-slider .carousel-control-next:hover,
.main-slider .carousel-control-prev:hover {
    color: #000 !important;
}

.main-slider .carousel-control-prev {
    left: -50px;
    transition: .6s ease-in-out;
}

.main-slider:hover .carousel-control-prev {
    left: 0;
}

.main-slider .carousel-control-next {
    right: -50px;
    transition: .6s ease-in-out;
}

.main-slider:hover .carousel-control-next {
    right: 0;
}

/*********************** Slider End ***********************/

section {
    padding: 70px 0;
}

.bg1 {
    background: #f7f7f7;
}

.about-section-img img {
    height: 100vh;
    width: 100%;
    object-fit: cover;
}

.about-section.about-tabs .about-section-img img {
    height: 100vh;
}

.about-section.about-tabs {
    overflow: inherit;
}

.about-section.about-tabs .about-section-img {
    position: sticky;
    top: 0;
}

.about-section-content {
    padding: 70px 50px 70px 70px;
}

.about-section.about-tabs .about-section-content {
    padding: 70px 30px 70px 70px;
}

.about-section-content.about-section-content2 {
    padding: 40px 60px 40px 12px;
}

.mainHeading h2 {
    font-size: 46px;
    line-height: 52px;
    color: #111;
    margin-bottom: 12px;
    font-weight: 600;
}

.mainHeading h2 span {
    display: block;
    font-weight: 400;
}

.mainHeading p {
    font-size: 18px;
    text-align: justify;
    color: #000000;
    font-weight: 400;
    line-height: 31px;
    margin-bottom: 0;
}

.mainHeading p b {
    font-weight: 500;
}

.services-sidebar a.main-btn {
    background: #f7f7f7;
    color: #000000;
    padding: 8px 16px;
    display: inline-block;
    font-size: 18px;
    font-weight: 500;
    position: absolute;
    width: 100%;
    border: 2px solid #ffcb24 !important;
    left: 0;
    bottom: 40px;
    border-radius: 50px;
}

a.main-btn {
    background: #fff;
    color: #222222;
    padding: 6px 12px;
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
    border: 1px solid #9b9b9b;
}

/*.school-content h1:before {
    content: '';
    position: absolute;
    top: 17px;
    left: 0;
    width: 30px;
    height: 4px;
    background: #ffcc2a;
}*/
.school-content h1 {
    margin-bottom: 0;
    font-size: 26px;
    color: #ffcb24;
    font-weight: 400;
    position: relative;
    *padding-left: 35px;
    font-family: 'Poppins', sans-serif;
}

.about-section {
    overflow: hidden;
    position: relative;
}


.boarding_school_carousel .owl-nav {
    position: absolute;
    top: 50%;
    right: 100px;
    transform: translate(-50%, -50%);
}

.boarding_school_carousel .owl-nav button.owl-prev {
    display: none;
}

.boarding_school_carousel .owl-nav button.owl-next {
    color: #222 !important;
    background: #fff !important;
    padding: 10px 18px;
    font-size: 20px !important;
    box-shadow: 0 3px 10px rgb(0 0 0 / 20%);
    border: 1px solid #d7d7d7 !important;
    transform: translateX(500%);
    opacity: 0;
    transition: .4s ease-in-out;
}

.boarding_school_carousel:hover .owl-nav button.owl-next {
    transform: translateX(0%);
    opacity: 1;
}

.boarding-school-box img {
    height: 400px;
    object-fit: cover;
    width: 100%;
    transition: .1s ease-in-out;
}

.boarding-school-box:hover img {
    transform: scale(1.1);
}

.boarding-school-box {
    clip-path: polygon(6% 0, 100% 0%, 94% 100%, 0% 100%);
    margin: 0 -9px;
}

/*********************** Services Start ***********************/
.services-block {
    cursor: pointer;
}

.services-block svg {
    width: 50px;
    margin-bottom: 12px;
    fill: #ffc200;
    transition: .6s ease-in-out;
}

.services-block:hover svg {
    transform: translateX(5px);
}

.services-block h3 {
    font-size: 19px;
    color: #111;
    margin-bottom: 4px;
    font-weight: 600;
    letter-spacing: .5px;
}

.services-block p {
    color: #111;
    font-size: 15.5px;
    font-weight: 400;
    margin-bottom: 0;
    line-height: 22px;
}

.services-block p b {
    font-weight: 500;
}

.services-sidebar h1 {
    color: #111;
    font-size: 30px;
    line-height: 38px;
    font-weight: 500;
    margin-bottom: 12px;
    position: relative;
    top: -40px;
    font-family: 'Poppins', sans-serif;
    border-radius: 30px;
    border: 4px solid #ffcb24;
    display: inline-block;
    padding: 6px 25px;
    text-transform: uppercase;
}

.services-sidebar p {
    color: #fff;
    font-weight: 300;
    font-size: 19px;
    line-height: 26px;
    margin-bottom: 20px;
}

.services-sidebar a.main-btn {
    border: 1px solid;
}

.services-content {
    padding: 40px 30px 40px 20px;
    position: relative;
    left: -30px;
}

.services-block {
    padding: 16px 18px;
    background: #fff;
    box-shadow: 0 1px 14px rgb(0 0 0 / 2%);
    height: 100%;
}

.services-sidebar:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../images/our-services.jpg);
    background-size: cover;
    background-position: center;
    /* filter: opacity(0.1); */
}

.services-sidebar {
    padding: 130px 40px 30px;
    height: 100%;
    /* background: #07234b; */
    text-align: center;
    margin-right: 12%;
    position: relative;
}

h1.sub-head.sub-head2 {
    background: #91cff6;
    padding: 8px 12px;
    border-bottom: 6px solid #017ed9;
    display: inline-block;
    font-weight: 600;
    color: #36000d;
}

h6.highlight-text {
    margin-top: 10px;
    font-size: 18px;
    text-align: center;
    color: #111;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0;
    padding: 10px 40px;
    background: #ffeaa9;
    clip-path: polygon(3% 0, 100% 0%, 97% 100%, 0% 100%);
    display: inline-block;
    border: 2px solid #ffd147;
}

/*********************** Services End ***********************/
hr.center-diamond {
    background: #c0d9ff;
    position: relative;
    width: 110px;
    margin: 10px auto;
    border-top: 3px solid rgba(0, 0, 0, .1);
}

hr.center-diamond:before {
    content: "";
    width: 10px;
    height: 10px;
    background: #123566;
    display: inline-block;
    border: 2px solid #c0d9ff;
    position: absolute;
    top: -7px;
    left: 50%;
    margin: 0 0 0 -3px;
    transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}

/*********************** Boarding School Start ***********************/
.boarding-section {
    background: #07234b;
}

h1.main-title {
    color: #000;
    font-size: 46px;
    line-height: 52px;
    font-weight: 300;
    margin-bottom: 8px;
}

.title-box.title-box2 h1.main-title {
    font-weight: 500;
}

.title-box p {
    font-size: 21px;
    color: #404040;
    font-weight: 300;
    line-height: 28px;
    margin-bottom: 0;
}

.title-box.title-box2 p {
    font-weight: 400;
}

.boarding-block {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.boarding-block img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    transition: .6s ease-in-out;
}

.boarding-block:hover img {
    transform: scale(1.2);
}

.boarding-box-content {
    padding: 16px 12px;
    background: #fff;
    position: relative;
}

.boarding-box-content h2 {
    font-size: 18px;
    color: #000;
    font-weight: 400;
    margin-bottom: 6px;
}

.boarding-box-content h5 {
    font-size: 14px;
    color: #222;
    line-height: 17px;
    font-weight: 400;
    margin-bottom: 5px;
    position: relative;
    padding-left: 16px;
}

.boarding-box-content h5 i {
    position: absolute;
    top: 1px;
    left: 0;
    color: #878787;
}

.boarding-box-content p {
    font-size: 15px;
    color: #000;
    line-height: 21px;
    margin-bottom: 0;
}

.title-box {
    margin-bottom: 35px;
}

.boarding-box-content a {
    display: none;
    margin-top: 8px;
    color: #fff;
    font-size: 12px;
    background: #262f3c;
    font-weight: 300;
    padding: 6px 8px;
}

.boarding-box-content a i {
    font-size: 11px;
}

.owl-carousel.owl-theme.boarding_carousel .owl-nav {
    margin-top: 25px;
    text-align: center;
}

.owl-carousel.owl-theme.boarding_carousel .owl-nav button.owl-prev,
.owl-carousel.owl-theme.boarding_carousel .owl-nav button.owl-next {
    font-size: 15px;
    padding: 4px 10px;
    background: #fff;
    margin: 3px;
    color: #002626;
}

/*********************** Boarding School End ***********************/

/*********************** School Logo Start ***********************/
.school-logo {
    padding: 15px 0;
    background: #07234b;
}

.owl-carousel.owl-theme.school_icons {
    padding-left: 20px;
}

.owl-carousel.owl-theme.school_icons img {
    width: 90px;
    margin: auto;
    background: #fff;
    *filter: grayscale(1);
    transition: .6s ease-in-out;
    cursor: pointer;
    padding: 2px;
    border-radius: 4px;
}

.owl-carousel.owl-theme.school_icons img:hover {
    filter: grayscale(0);
}

/*********************** School Logo End ***********************/

/*********************** Testimonial Start ***********************/
.testimonial-box {
    text-align: center;
    background: linear-gradient(180deg, #fff, transparent);
    padding: 30px 20px;
}

.testimonial-box img {
    width: 85px !important;
    height: 85px;
    border-radius: 50%;
    object-fit: cover;
    margin: auto;
    margin-bottom: 12px;
    border: 4px solid #ffe697;
}

.testimonial-box svg {
    width: 60px;
    transform: rotate(180deg);
    position: absolute;
    top: 20px;
    left: 20px;
    fill: #07234b;
    filter: opacity(0.15);
}

.testimonial-box h1 {
    font-size: 19px;
    font-weight: 600;
    color: #111;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.testimonial-box h1 small {
    font-size: 13px;
    line-height: 16px;
    font-weight: 500;
    color: #707070;
    margin-top: 0;
}

.testimonial-box p {
    font-size: 16px;
    line-height: 21px;
    color: #000;
    font-weight: 400;
    font-style: italic;
    margin-bottom: 0;
}

.owl-carousel.owl-theme.testimonial_carousel .owl-nav button.owl-prev,
.owl-carousel.owl-theme.testimonial_carousel .owl-nav button.owl-next {
    padding: 4px 10px;
    font-size: 20px;
    margin: 3px;
    color: #424242;
    background: #fff;
    position: absolute;
    top: 50%;
    transform: translate(0%, -50%);
}

.owl-carousel.owl-theme.testimonial_carousel .owl-nav button.owl-prev {
    left: -20px;
}

.owl-carousel.owl-theme.testimonial_carousel .owl-nav button.owl-next {
    right: -20px;
}

/*********************** Testimonial End ***********************/

/*********************** Counter Start ***********************/
.counter-block {
    position: relative;
}

.counter-block ul {
    list-style-type: none;
    padding-inline-start: 0;
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    text-align: center;
    background: #262f3c;
    z-index: 99;
    position: relative;
    margin-bottom: -65px;
    border: 4px solid #fff;
    border-radius: 6px;
}

.counter-block ul li.counter:last-child {
    border-right: 0;
}

.counter-block ul li.counter {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
    padding: 14px 16px;
    border-right: 4px solid #fff;
}

.counter-block ul li.counter i {
    font-size: 28px;
    color: #ffd655;
}

.counter-inner {
    display: flex;
    justify-content: center;
}

.counter-block ul li.counter h2 {
    font-family: 'Poppins', sans-serif;
    margin-bottom: 0;
    margin-top: 12px;
    font-size: 30px;
    line-height: 28px;
    font-weight: 400;
    color: #ffffff;
}

.counter-block ul li.counter p.count-text {
    margin-bottom: 0;
    font-size: 17px;
    line-height: 24px;
    font-weight: 300;
    font-style: italic;
    color: #fff;
}

/*********************** Counter End ***********************/

/*********************** Boarding Section Start ***********************/
.boarding-box ul.nav {
    justify-content: center;
    background: #07234b;
    margin-bottom: 25px;
}

.boarding-box ul li.nav-item button.active {
    background: #133a70;
}

.boarding-box ul li.nav-item button {
    border: 0;
    border-radius: 0;
    background: #07234b;
    color: #fff;
    font-size: 17px;
    padding: 12px 14px;
    font-weight: 300;
    text-transform: uppercase;
    border-right: 1px solid #133a70;
    border-left: 1px solid #133a70;
    position: relative;
}

.boarding-box ul li.nav-item button.active:before {
    content: '';
    position: absolute;
    bottom: -14px;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #133a70;
    display: block;
}

.boarding-box ul li.nav-item button:before {
    display: none;
}

.boarding-box ul li.nav-item:last-child button {
    border-right: 0;
}

ul.boarding-content {
    list-style-type: none;
    padding-inline-start: 0;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 0;
    padding-top: 10px;
}

ul.boarding-content li {
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
}

.boarding-img {
    text-align: center;
    border: 2px solid #f7f7f7;
    padding: 8px 15px;
    background: #ffffff;
    height: 100%;
}

.boarding-img img {
    width: 110px;
}

.boarding-img h2 {
    font-size: 16px;
    line-height: 21px;
    margin-bottom: 0;
    margin-top: 10px;
    font-family: 'Poppins', sans-serif;
    color: #000;
    font-weight: 500;
    text-transform: uppercase;
}

.boarding-sidebar {
    writing-mode: vertical-rl;
    width: 100%;
}

.boarding-sidebar h1 {
    font-size: 50px;
    line-height: 52px;
    font-weight: 600;
    margin: 0;
    color: #07234b;
    filter: opacity(0.3);
    margin-bottom: 0;
    position: relative;
    letter-spacing: 1px;
    text-transform: uppercase;
    transform: rotate(180deg);
    padding: 30px 25px;
    word-spacing: 10px;
    text-align: center;
}

h1.boarding-text {
    font-size: 27px;
    text-transform: uppercase;
    color: #4e4e4e;
    margin-bottom: 0;
    text-align: center;
    font-weight: 600;
}

/*********************** Boarding Section End ***********************/

.inner-header .header {
    background: #123566;
    position: relative;
    padding: 0;
}

.inner-header .header .main-logo a {
    width: 160px;
}

.inner-header .header nav.navbar .navbar-box {
    background: transparent;
    border-radius: 0;
}

.inner-header .header .topHeader {
    padding: 8px 10px;
    display: none !important;
}

.inner-header .header .main-logo {
    position: absolute;
    background: #123566;
    top: 0;
    padding: 10px;
    border-radius: 8px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.inner-header .header nav.navbar ul.navbar-nav li a.nav-link {
    padding: 24px 16px 16px;
}

.inner-header .header .col-lg-10 {
    justify-content: flex-end;
}

.inner-banner {
    position: relative;
    padding: 280px 0 30px;
}

.inner-banner:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, .7), transparent);
}

.inner-banner h1:before {
    position: absolute;
    content: '';
    top: 50%;
    transform: translate(0%, -50%);
    left: 0;
    background: white;
    width: 45px;
    height: 6px;
}

.inner-banner h1 {
    color: #fff;
    font-size: 52px;
    font-weight: 400;
    margin-bottom: 0;
    position: relative;
    padding-left: 50px;
}


ul.team-block {
    list-style-type: none;
    display: flex;
    margin-bottom: 0;
    flex-wrap: wrap;
    justify-content: center;
}

ul.team-block li {
    flex: 0 0 20%;
    max-width: 20%;
}

ul.team-block li .team-box {
    margin: 0 20px 30px;
    position: relative;
}

ul.team-block li .team-box img {
    height: 250px;
    object-fit: cover;
    width: 100%;
    transition: .2s ease-in-out;
}

ul.team-block li .team-box:hover img {
    transform: scale(1.1);
}

ul.team-block li .team-box-info {
    padding: 20px 0 0;
    text-align: center;
}

ul.team-block li .team-box-info h1 {
    font-size: 18px;
    color: #282828;
    margin-bottom: 5px;
    text-transform: uppercase;
    font-weight: 600;
}

ul.team-block li .team-box-info p {
    font-size: 15px;
    line-height: 20px;
    font-weight: 400;
    color: #000;
    margin-bottom: 0;
}

ul.team-block li .team-box-info p b {
    font-weight: 500;
}

ul.team-block li .team-box-img {
    position: relative;
    overflow: hidden;
    box-shadow: 8px 8px 0 #ffe48d;
    border-radius: 6px;
}

.main-head.overseas-head {
    background: url(../images/overseas-admissions.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 280px 0 30px;
}

.main-head {
    padding: 80px 0 30px;
    background: #111;
    position: relative;
}

.main-head.overseas-head:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, .7), transparent);
}

.main-head-block h1 {
    font-size: 48px;
    color: #fff;
    margin-bottom: 0;
    font-weight: 300;
}

.main-head.main-head2 {
    background: #f7f7f7;
}

.main-head.main-head2 h1 {
    color: #000;
    font-weight: 400;
}

ul.main-ul {
    list-style-type: none;
    margin-bottom: 0;
}

ul.main-ul li {
    position: relative;
    font-size: 20px;
    color: #000000;
    font-weight: 400;
    line-height: 30px;
    margin-bottom: 12px;
    padding-left: 25px;
}

ul.main-ul li i {
    position: absolute;
    top: 5px;
    left: 0;
    color: #3461a1;
    font-size: 18px;
}

.about-section-stickyimg {
    position: sticky;
    top: 0;
}

.about-section-stickyimg img {
    height: 100vh;
}

.enquire-modal .modal-dialog {
    width: 330px;
    margin: 0 auto;
    position: absolute;
    right: 20px;
    bottom: 20px;
    box-shadow: 0 3px 10px rgb(0 0 0 / 20%);
}

.enquire-modal .modal-content {
    border: 0;
    border-radius: 0;
    padding: 25px 20px;
}

.modal-backdrop {
    background-color: transparent;
}

.enquire-form .form-control {
    height: calc(1.5em + 0.75rem + 6px);
    border-top: 0;
    border-left: 0;
    border-right: 0;
    border-bottom: 1px solid #d9d9d9;
    border-radius: 0;
    font-size: 16px;
    color: #262626;
    padding: 8px 0;
}

.form-control:focus {
    box-shadow: none;
}

.enquire-form {
    padding-top: 20px;
}

.enquire-modal h5.modal-title {
    font-size: 20px;
    color: #262626;
    font-weight: 500;
}

.btn.focus,
.btn:focus {
    box-shadow: none;
}

button.btn {
    background: #07234b;
    border-radius: 0;
    color: #fff;
    font-size: 16px;
    padding: 5px 15px;
    font-weight: 300;
}

.enquire-form button.btn:hover {
    color: #fff;
}

.modal-open {
    overflow-y: revert;
    padding-right: 0 !important;
}


.boarding-school-block {
    clip-path: polygon(8% 0, 100% 0%, 92% 100%, 0% 100%);
    margin: 0 -16px;
}

.boarding-school-block img {
    height: 350px;
    width: 100%;
    object-fit: cover;
}

.boarding-school-block h1 {
    font-size: 18px;
    line-height: 23px;
    color: #fff;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    padding: 12px 16px;
    position: relative;
    background: #123566;
    margin: -30px 30px 0;
    text-transform: uppercase;
    z-index: 999;
    min-height: 70px;
    border-radius: 2px;
}

h3.main-h3 {
    position: relative;
    color: #222;
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 7px;
    font-weight: 600;
}

h4.main-h4 {
    background: #ffffff;
    text-align: center;
    color: #222;
    padding: 9px 20px;
    font-weight: 600;
    font-size: 26px;
    border-radius: 30px;
    border: 4px solid #ffcb24;
}

.owl-carousel.owl-theme.boarding_img_carousel .owl-nav {
    text-align: center;
    margin: 25px 0 0;
}

.owl-carousel.owl-theme.boarding_img_carousel .owl-nav button.owl-prev,
.owl-carousel.owl-theme.boarding_img_carousel .owl-nav button.owl-next {
    background: #fff;
    padding: 5px 12px;
    border: 1px solid #d5d5d5;
    margin: 0 5px;
    font-size: 16px;
    color: #123566;
}

h1.sub-head {
    text-align: center;
    font-size: 30px;
    margin-bottom: 25px;
    color: #000;
    text-transform: uppercase;
}

.boarding-fig-block {
    border: 6px solid #e7e7e7;
    background: #fff;
    border-radius: 6px;
}

.owl-carousel.owl-theme.boarding_graph_carousel .owl-nav button.owl-prev {
    display: none;
}

.owl-carousel.owl-theme.boarding_graph_carousel .owl-nav button.owl-next {
    position: absolute;
    top: 50%;
    right: 80px;
    transform: translate(-50%, -50%);
    color: #fff !important;
    background: #123566 !important;
    padding: 10px 18px;
    font-size: 20px !important;
    box-shadow: 0 3px 10px rgb(0 0 0 / 20%);
    border: 2px solid #ffffff !important;
    transition: .4s ease-in-out;
    opacity: 0;
}

.owl-carousel.owl-theme.boarding_graph_carousel:hover .owl-nav button.owl-next {
    opacity: 1;
}


ul.block-ul {
    list-style-type: none;
    margin-bottom: 0;
}

ul.block-ul .wrap-box {
    background: #123566;
    padding: 20px 20px;
    margin-bottom: 12px;
    display: flex;
    border-radius: 3px;
    border-bottom: 4px solid #1d4d8f;
}

ul.block-ul .wrap-box .wrap-box1 {
    padding-left: 8px;
    border-left: 2px solid #153c72;
    margin-left: 8px;
}

ul.block-ul .wrap-box .wrap-icon img {
    width: 50px;
    filter: opacity(0.7);
}

ul.block-ul .wrap-box .wrap-icon i {
    font-size: 36px;
    color: #1d4d8f;
}

ul.block-ul .wrap-box h1 {
    font-size: 19px;
    font-weight: 300;
    color: #ffe9a4;
    letter-spacing: .5px;
    margin-bottom: 5px;
    line-height: 25px;
}

ul.block-ul .wrap-box p {
    font-size: 17px;
    margin-bottom: 0;
    color: #fff;
    font-weight: 300;
    line-height: 26px;
}

ul.block-ul .wrap-box ul {
    list-style-type: square;
    padding-inline-start: 25px;
    margin-top: 16px;
}

ul.block-ul .wrap-box ul li {
    font-size: 18px;
    margin-bottom: 0;
    color: #fff;
    font-weight: 300;
    line-height: 24px;
    margin-top: 4px;
}

.owl-carousel.owl-theme.boarding_school_carousel {
    border: 4px solid #ffffff;
}

.main-team {
    margin-bottom: 80px;
    box-shadow: 10px 10px 0 #123566;
    border-bottom-right-radius: 30px;
}

.main-team .main-team-info {
    background: #c9e0ff;
    height: 100%;
    padding: 40px 30px;
    border-bottom-right-radius: 30px;
}

.main-team .main-team-info h1 {
    font-size: 24px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 10px;
    color: #282828;
}

.main-team .main-team-info p {
    font-size: 16px;
    color: #000;
    line-height: 22px;
    margin-bottom: 10px;
}

.main-team .main-team-info p b {
    font-weight: 500;
}

.main-team .main-team-img img {
    height: 280px;
    object-fit: cover;
    width: 100%;
    transition: .3s ease-in-out;
}

.main-team .main-team-img {
    overflow: hidden;
    border-bottom: 6px solid #f7f7f7;
    border-right: 6px solid #f7f7f7;
    height: 100%;
}

.main-team:hover .main-team-img img {
    transform: scale(1.1);
}


.oversease-page ul.soft-skills-ul li:first-child {
    flex: 0 0 100%;
    max-width: 100%;
}

.oversease-page ul.soft-skills-ul li {
    background: #f9f9f9;
}

.oversease-page ul.soft-skills-ul li img {
    filter: none;
}

.oversease-page ul.soft-skills-ul li h1 {
    color: #000;
    font-weight: 400;
}

.oversease-page ul.soft-skills-ul li h1 span {
    background: #ffcb24;
    padding: 3px 16px 1px;
    display: inline-block;
    border-radius: 30px;
}

.owl-carousel.owl-theme.flag_icons img {
    width: 110px;
    height: 110px;
    object-fit: cover;
    border-radius: 50%;
    margin: auto;
}

.owl-carousel.owl-theme.flag_icons h1 {
    font-size: 19px;
    color: #000;
    margin-top: 10px;
    text-transform: uppercase;
}

.oversease-page form {
    padding: 40px 30px;
}

.overseas-enquiry-content {
    background: #0a2a56;
    height: 100%;
    padding: 60px 20px 30px;
}

.overseas-enquiry-content img {
    width: 70px;
    filter: invert(1) opacity(0.5);
    margin-bottom: 8px;
}

.overseas-enquiry-content h1 {
    color: #fff;
    font-size: 38px;
    margin-bottom: 0;
}

.program-block {
    border: 2px solid #d3e5ff;
    padding: 20px 16px;
    background: #eaf3ff;
    height: 100%;
}

.program-block ul {
    list-style-type: none;
    margin-bottom: 0;
    display: flex;
    flex-wrap: wrap;
}

.program-block ul li {
    font-size: 17px;
    color: #000;
    margin-bottom: 10px;
    position: relative;
    background: #fff;
    border: 1px solid #bed9ff;
    border-radius: 30px;
    padding: 4px 16px 3px;
    margin-right: 10px;
    *padding-left: 30px;
}

.program-block h1.sub-head {
    text-transform: none;
}

.program-block ul li i {
    color: #1e549f;
    margin-right: 2px;
    position: absolute;
    left: 0;
    top: 5px;
    display: none;
}

/*------------- Contact Us Start---------------*/
.google-maps iframe {
    height: 350px;
    position: relative;
}

.contact-form {
    padding: 35px 30px;
    box-shadow: 0px 0px 30px 0px rgb(0 0 0 / 8%);
    margin-left: 40px;
    border: 1px solid #f3f3f3;
    background: #fff;
    border-bottom-right-radius: 50px;
}

.contact-form form input,
.contact-form form select,
.contact-form form textarea {
    height: calc(1.5em + 0.75rem + 12px);
    padding: 8px 12px;
    border-radius: 0;
    font-size: 17px;
    color: #000;
    font-weight: 400;
    border: 0;
    border-bottom: 1px solid #b1b1b1;
}

.contact-form form textarea {
    height: 100px;
}

.contact-form .form-control:focus {
    border-color: #a1a1a1;
    box-shadow: none;
}

.contact-form .btn.focus,
.contact-form .btn:focus {
    box-shadow: none;
}

.contact-form form button.btn {
    background: #123566;
    border-radius: 0;
    margin-top: 20px;
    color: #fff;
    font-size: 16px;
    padding: 6px 20px 7px;
    text-transform: uppercase;
    transition: .6s ease-in-out;
    width: 100%;
    border-radius: 50px;
    font-weight: 300;
}

.contact-form form button.btn:hover {
    color: #fff;
    opacity: .9;
}

.contact-form form button.btn i {
    transform: rotate(45deg);
    margin-left: 5px;
    position: relative;
    top: 1px;
}

::placeholder {
    color: #444 !important;
}

.contact-info h1 {
    font-size: 20px;
    line-height: 25px;
    font-style: oblique;
    color: #626262;
    margin-bottom: 0px;
    font-weight: 400;
}

.contact-info h2 {
    font-size: 37px;
    line-height: 43px;
    font-weight: 500;
    position: relative;
    margin-top: 6px;
    margin-bottom: 30px;
    text-transform: capitalize;
    color: #000;
}

.contact-info h2:before {
    content: "";
    position: absolute;
    width: 70px;
    height: 6px;
    left: 0;
    display: block;
    background: #ffcb24;
    bottom: -6px;
}

.about-section.remove-container-pl.contact-section .about-section-stickyimg {
    top: 50px;
}

.about-section-content a.main-btn {
    border-radius: 30px;
    background: #262f3c;
    color: #fff;
    font-weight: 300;
    border: 1px solid;
}

.contact-info-box {
    display: flex;
    width: 100%;
    margin-top: 12px;
    background: #262f3c;
    padding: 20px 16px;
    border-left: 8px solid #1c222c;
    border-radius: 4px;
}

.contact-info-box i {
    font-size: 22px;
    margin-right: 15px;
    color: #ffd347;
    position: relative;
    top: 2px;
}

.contact-info-box p,
.contact-info-box a {
    margin-bottom: 0;
    font-size: 16px;
    line-height: 22px;
    font-weight: 200;
    transition: .6s ease-in-out;
    color: #fff;
}

.contact-info-box p b {
    font-weight: 400;
}

.contact-info-box a:hover {
    color: #fff;
}

.contact-info-box1 h3 {
    font-size: 17px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 2px;
    font-family: 'Poppins', sans-serif;
}

.contact-calltoAction .caltoAction_space {
    padding: 0;
}

.contact-counter .counter-block {
    margin-top: -75px;
}

/*------------- Contact Us End---------------*/

.remove-container-pl .container-fluid {
    padding-left: 0;
}

.remove-container-pr .container-fluid {
    padding-right: 0;
}

ul.soft-skills-ul {
    list-style-type: none;
    padding-inline-start: 0;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 0;
    justify-content: center;
}

ul.soft-skills-ul li {
    flex: 0 0 20%;
    max-width: 20%;
    text-align: center;
    border: 1px solid #dfdfdf;
    padding: 16px 12px;
    background: #07234b;
}

ul.soft-skills-ul li img {
    width: 80px;
    filter: opacity(0.3) invert(1);
}

ul.soft-skills-ul li h1 {
    font-size: 19px;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-weight: 200;
    margin-bottom: 0;
    margin-top: 10px;
}

ul.block-ul.overseas-admission-ul {
    display: flex;
    flex-wrap: wrap;
}

ul.block-ul.overseas-admission-ul li {
    flex: 0 0 33.33%;
    max-width: 33.33%;
    padding: 0 8px;
    margin-bottom: 16px;
}

ul.block-ul.overseas-admission-ul li .wrap-box {
    height: 100%;
    padding: 16px 20px;
}

ul.block-ul.overseas-admission-ul .wrap-box .wrap-box1 {
    display: flex;
    align-self: center;
}

.enquiry-banner {
    background: #171d24;
    padding: 20px 0;
}

.enquiry-banner-head {
    text-align: right;
    border-right: 2px solid #424b56;
    padding: 25px 30px 25px 0;
}

.enquiry-banner-head h1 {
    margin-bottom: 0;
    color: #fff;
    font-size: 40px;
    font-weight: 300;
}

.enquiry-banner-btn a {
    display: inline-block;
    background: #123566;
    color: #fff;
    font-weight: 400;
    padding: 8px 20px 10px;
    font-size: 18px;
}

.enquiry-banner-btn a i {
    transform: rotate(45deg);
    margin-left: 5px;
    position: relative;
    top: 1px;
}

/*********************** Footer Start ***********************/
.footer {
    background: #07234b;
}

.footerWidgit {
    padding: 120px 0 30px;
}

.footerWidgit ul {
    list-style-type: none;
    padding-inline-start: 0;
    margin-bottom: 0;
}

.footerWidgit h3 {
    color: #fff;
    margin-bottom: 16px;
    font-size: 22px;
    font-weight: 300;
    border-bottom: 2px solid #0b274e;
    padding-bottom: 6px;
}

.footerWidgit li {
    margin-bottom: 3px;
}

.footerWidgit ul li a {
    color: #fff;
    font-size: 15px;
    font-weight: 200;
    display: inline-block;
}

.footerWidgit ul li a i {
    margin-right: 3px;
    font-size: 15px;
    color: #b1b1b1;
}

.footerBottom {
    background: #051428;
    padding: 10px 0;
}

.footerBottom p {
    font-size: 15px;
    color: #bfbfbf;
    font-weight: 300;
}

.footerBottom p a,
.footerBottom p a:hover {
    color: #fff;
    font-weight: 300;
}

.footerWidgit img.footer-logo {
    width: 150px;
    margin-bottom: 12px;
}

.footerWidgit p {
    color: #fff;
    font-weight: 200;
    margin-bottom: 0;
    font-size: 16px;
    line-height: 24px;
}

.footerWidgit address {
    font-size: 15px;
    line-height: 22px;
    font-weight: 200;
    color: #fff;
    margin-bottom: 8px;
}

.footerWidgit-cont a {
    font-size: 16px;
    display: inline-block;
    color: #fff;
    font-weight: 200;
    margin-bottom: 10px;
}

.footerWidgit-cont a i {
    font-size: 13px;
    margin-right: 3px;
    color: #b1b1b1;
}

.footerWidgitMiddle {
    padding: 100px 30px 20px;
    background: #051428;
    height: 100%;
}

ul.social-media {
    display: flex;
    justify-content: center;
    margin-top: 16px;
}

ul.social-media li a {
    margin: 0 7px;
}

ul.social-media li a i {
    font-size: 18px;
}

/*********************** Footer End ***********************/

.video-block h1 {
    font-size: 18px;
    text-align: center;
    color: #000;
    margin-top: 12px;
}

.kasiga-logo img {
    position: relative;
    top: -26px;
    right: -13px;
    height: 90px;
}