﻿@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');


:root {
    --icon-font: "Font Awesome 6 Pro";
}

* {
    font-family: "Roboto", sans-serif;
}

a {
    text-decoration: none;
}

ul li {
    list-style: none;
}

html, body {
    width: 100%;
    overflow-x: hidden;
}

/* ================= Header ================= */

.main-header {
    padding: 0px 0 0;
}

    .main-header .upper-logo {
        display: flex;
        align-items: center;
        column-gap: 15px;
        padding-left: 45px;
    }

        .main-header .upper-logo img {
            height: 80px;
        }

.upper-logo-heading {
    text-align: center;
}

    .upper-logo-heading h1 {
        line-height: 1.3;
        font-weight: 900;
        border-bottom: 2px solid #000;
        margin-bottom: 5px;
        font-family: sans-serif;
        font-size: 34px;
        color: rgba(0,33,94,.9);
    }

    .upper-logo-heading p {
        margin: 0;
        font-size: 15px;
        line-height: 1.3;
        font-weight: 600;
        color: rgba(0,33,94,.9);
        text-transform: uppercase;
    }

.main-header .upper-contact {
    display: flex;
    flex-direction: column;
    row-gap: 0px;
}

    .main-header .upper-contact a {
        font-size: 20px;
        font-weight: 600;
        color: rgba(0,33,94,.9);
    }

.upper-social-icon {
    padding: 0;
    display: flex;
    column-gap: 10px;
}

    .upper-social-icon li {
        border-right: 1px solid gray;
        padding-right: 10px;
    }

        .upper-social-icon li:last-child {
            border-right: none;
        }

        .upper-social-icon li a img {
            height: 35px;
            width: 35px;
            border-radius: 50%;
        }

.main-navber {
    background: #050540;
    margin-top: 5px;
}

.navbar {
    justify-content: center;
}

.main-navber .menu {
    display: flex;
    column-gap: 20px;
    margin-bottom: 0;
    justify-content: center;
    padding-left: 0;
}

    .main-navber .menu li {
        padding: 8px 8px;
        position: relative;
    }

        .main-navber .menu li a {
            color: #fff;
            font-size: 16px;
        }

        .main-navber .menu li .sub-menu {
            display: block;
            position: absolute;
            left: 10px;
            top: calc(100% + 30px);
            margin: 0;
            padding: 5px 0;
            z-index: 99;
            opacity: 0;
            visibility: hidden;
            background: #fff;
            box-shadow: 0px 0px 30px rgb(127 137 161 / 25%);
            transition: 0.3s;
            border-radius: 3px;
            width: 220px;
        }

            .main-navber .menu li .sub-menu li a {
                color: #000;
            }

            .main-navber .menu li .sub-menu li {
                border-bottom: 1px solid #000;
                padding-bottom: 4px;
            }

        .main-navber .menu li:hover > .sub-menu {
            opacity: 1;
            top: 100%;
            visibility: visible;
        }
/*================= About ===================*/

.about-section {
    background-color: #000;
    background-image: url(../images/slider-2.jpg);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    color: #fff;
    z-index: 1;
}

    .about-section::before {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        background-color: #fff0;
        background-image: linear-gradient(239deg,#090000 0%,#AC2120 100%);
        opacity: .85;
        transition: background 0.3s,border-radius 0.3s,opacity 0.3s;
        z-index: -1;
    }

.inner-about h2 {
    text-transform: uppercase;
    font-size: 25px;
    font-weight: 700;
}

.inner-about p {
    text-align: justify;
}

.inner-about .knows-More {
    color: #fff;
    font-size: 16px;
    text-decoration: underline;
    text-transform: uppercase;
}

.inner-about a:hover {
    color: #fff;
}

.inner-about {
    padding: 60px 0;
}

.about-carousal img {
    border-radius: 15px;
    height: 280px;
}

.admi-content {
    margin-top: 25px;
}

    .admi-content h1 {
        font-size: 45px;
        font-weight: 900;
        text-align: center;
        color: #FFFFFFD1;
    }

.add-enquiry {
    background: #fff;
    border-radius: 5px;
    margin-top: 25px;
}

    .add-enquiry ul {
        display: flex;
        margin: 0;
        padding: 15px 20px;
        justify-content: center;
        column-gap: 50px;
    }

        .add-enquiry ul a {
            color: #000;
            font-size: 16px;
            text-transform: uppercase;
        }

            .add-enquiry ul a:hover {
                color: #000;
            }


/*================ education ====================*/

.bg-blue {
    background: #0a5391;
}

.py-80 {
    padding-top: 80px;
    padding-bottom: 80px;
}

.side-space {
    padding-right: 40px;
    padding-left: 40px;
}

.common-heading {
    font-size: 35px;
    color: #fff;
    text-transform: capitalize;
    line-height: 26px;
    font-weight: 500;
}

.sub-heading-para {
    font-size: 17px;
    text-align: center;
    font-weight: 300;
    color: #fff;
    line-height: 30px;
    width: 865px;
}

.side-space-160 {
    padding-right: 40px;
    padding-left: 40px;
}

.box-overlay {
    margin: 0px auto;
    position: relative;
    overflow: hidden;
    z-index: 5;
}

    .box-overlay::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #000;
        z-index: 99;
        transform: translateX(0);
        transition: transform 2s ease;
    }

    .box-overlay.transparent::before {
        transform: translateX(100%);
    }

.addition-card {
    position: relative;
    width: 100%;
    overflow: hidden;
    cursor: pointer;
    border: 0;
    border-radius: 0;
}

    .addition-card img {
        width: 100%;
        height: 440px;
        object-fit: cover;
    }

.bg-white {
    background: #fff;
}

.overlay {
    position: absolute;
    bottom: -27%;
    left: 0;
    width: 100%;
    height: 40%;
    background: #fff;
    color: white;
    transition: bottom 0.5s ease;
    text-align: left;
    padding: 15px;
}

    .overlay .description {
        margin-top: 0px;
    }

.description h3 {
    font-size: 20px;
    text-align: center;
    color: #000;
    line-height: 24px;
    font-family: poppins;
    margin-bottom: 0;
    font-weight: 500;
}

.opacity-text {
    opacity: 0;
}

.box-info-btn {
    position: relative;
    display: inline-block;
    padding: 10px 0px;
    color: black;
    background-color: #ffffff00;
    text-decoration: none;
    overflow: hidden;
    transition: background-color 0.4s;
    border-radius: 0px;
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
    width: 150px;
    display: flex;
    align-items: center;
    justify-content: start;
}

    .box-info-btn span {
        position: relative;
        z-index: 1;
    }

    .box-info-btn::after {
        background-color: #333;
        content: "";
        display: block;
        height: 2px;
        width: 100%;
        position: absolute;
        bottom: 0;
        left: 0;
        -webkit-transition: all 0.5s ease-in-out;
        -o-transition: all 0.5s ease-in-out;
        transition: all 0.5s ease-in-out;
    }

.addition-card:hover .overlay {
    bottom: 0;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0.9;
}

.addition-card:hover .opacity-text {
    opacity: 1;
}

.bg-yellow {
    background: #ffc700;
}

.bg-red {
    background: #ce373b;
}

.bg-gray {
    background: #a9abae;
}

.box-info-btn:hover {
    color: #000;
}

    .box-info-btn:hover:after {
        right: 0;
        left: auto;
        width: 0;
    }

.bg-red .box-info-btn::after {
    background-color: #fff;
}

.modal-close {
    text-align: end;
    display: flex;
    justify-content: end;
}

.btn-close-popup, .btn-close-popup:hover {
    background: #333;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    position: relative;
    top: 20px;
    z-index: 1;
    left: 20px;
    border: 2px solid #fff;
    opacity: 1;
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 26px;
    color: #fff;
    transition: all 0.3s linear;
}

/* ================== Principal Message =================== */
.text-justify {
    text-align: justify;
}

.home-social {
    padding: 100px 30px 50px;
}

    .home-social > .fsElementContent {
        position: relative;
        margin: 0 auto;
        max-width: 1180px;
    }

.principr_msg_main {
    display: flex;
    column-gap: 50px;
}

.princpl_img {
    width: 40%;
    text-align: center;
    position: relative;
}

.inner-photto {
    height: 370px;
    width: 345px;
    background: #fff;
    box-shadow: 0px 0px 5px;
    transform: rotate(-7deg);
    border-radius: 5px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.outer-photo {
    border: 5px solid #fff;
    border-radius: 5px;
    transform: rotate(7deg);
    height: 100%;
    width: 100%;
    box-shadow: 0px 0px 5px;
    object-fit: fill;
}

.principr_msg_main .sec-content {
    width: 60%;
}

.title {
    font-weight: 400;
    font-size: 35px;
    line-height: 1;
    color: #0a5391;
}

.mb-25 {
    margin-bottom: 25px !important;
}

span.titleborder {
    display: table;
    width: 100%;
}

.fs_style_36 {
    text-decoration: none;
    font-size: 18px;
    line-height: 1em;
    font-weight: 700;
    text-transform: uppercase;
    position: relative;
    color: #2c2a29;
    transition: .3s;
    margin: 0 30px 30px 0;
    padding-right: 70px;
    overflow: hidden;
    display: inline-block;
}

    .fs_style_36:hover {
        color: #000;
    }


/* ====================== Facilities ===========================*/

.section-p {
    padding: 50px 0;
}

.sec-programs .bg-white {
    background: #F1F1F1 !important;
}

.sec-programs .nav-tabs {
    border-bottom: 0;
    display: block;
}

    .sec-programs .nav-tabs .nav-item {
        border-bottom: 1px solid transparent;
        width: 100%;
    }

    .sec-programs .nav-tabs .nav-link {
        background: #0a5391;
        color: #fff;
        border-radius: 0;
        font-size: 16px;
        text-transform: uppercase;
    }

    .sec-programs .nav-tabs .nav-item.active {
        border-radius: 0;
        border-color: transparent;
    }

    .sec-programs .nav-tabs .nav-link {
        padding: 16px 20px;
        font-size: 16px;
        font-weight: 700;
        color: #fff;
        text-transform: uppercase;
    }

        .sec-programs .nav-tabs .nav-link.active {
            background: #F1F1F1;
            color: #000;
        }


.sec-programs .tab-content h3 {
    font-weight: 1000;
    text-transform: uppercase;
    margin-top: 20px;
    margin-bottom: 20px;
}

    .sec-programs .tab-content h3 span {
        font-weight: 400 !important;
    }

.sec-programs .tab-content h4 {
    font-size: 20px;
    font-weight: 700;
    margin-top: 20px;
    margin-bottom: 10px;
}

.pro-list {
    margin: 0;
    padding-left: 15px;
}

.sec-programs .tab-content p {
    font-size: 17px;
    text-align: justify;
}

.pro-list li {
    list-style: square !important;
    line-height: 30px;
}

    .pro-list li a {
        font-size: 16px;
        color: #fff;
    }

.content-img img {
    width: 100%;
    height: 200px;
    border-radius: 5px;
    margin-bottom: 10px;
}

/* =================== Student Update ======================== */

.fp-section {
    background-image: url(../images/bg/explore-bg.jpg);
    background-color: #b5b2b2;
    background-blend-mode: overlay;
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: cover;
    padding-top: 5.5em;
    padding-bottom: 5.5em;
}

.main-heading {
    font-size: 25px;
    padding-bottom: 15px;
    text-align: center;
    color: #002c39;
    font-weight: 700;
    position: relative;
}

.lineclass {
    padding: 0 0 0 15px;
}


    .lineclass::before {
        content: "";
        position: absolute;
        width: 5px;
        background: #000;
        height: 40px;
        animation: none;
        height: 30px;
        top: -3px;
    }

.main-heading .sub-heading {
    font-size: 25px;
    font-weight: 600;
    line-height: 26.82px;
    font-style: normal;
    text-align: center;
    text-transform: uppercase;
    vertical-align: middle;
    ;
    position: relative;
    display: inline-block;
    color: #7b7b7b;
    margin-top: -5px;
    padding: 0 0 0 15px;
}

.my-custom-school-updates .nav-fill .nav-item, .my-custom-school-updates .custom-tab > .custom-tab {
    margin-right: 10px;
    flex: 1 1 auto;
    text-align: center;
}

.my-custom-school-updates .nav-tabs .nav-item .custom-tab, .my-custom-school-updates .nav-tabs .custom-tab {
    border-radius: 5px;
    color: #000;
    padding: 15px;
    border: 1px solid #0a5391;
    font-size: 18px;
    font-weight: 700;
}

    .my-custom-school-updates .nav-tabs .nav-item.show .custom-tab, .my-custom-school-updates .nav-tabs .custom-tab.active {
        background-color: #0a5391;
        border-radius: 5px;
        color: #fff;
        padding: 15px;
        border: 1px solid #0a5391;
    }

.my-custom-school-updates .nav-fill .nav-item .custom-tab, .my-custom-school-updates .nav-justified .nav-item .custom-tab {
    width: 100% !important;
    margin: 5px;
}

.my-custom-school-updates .tab-pane1 {
    display: none;
}

    .my-custom-school-updates .tab-pane1.active {
        display: block;
    }



/* ======================= Gallery =======================*/


.quik_links {
    padding-left: 0;
    list-style: none;
    text-align: center;
}

.codepen-box {
    position: relative;
    border-radius: 6px;
    padding: 0 15px;
    overflow: hidden;
    margin: 0 auto;
    margin-bottom: 15px;
}

    .codepen-box::before {
        content: "";
        position: absolute;
        left: 15px;
        border-radius: 10px;
        right: 15px;
        bottom: 50px;
        top: 0;
        background-color: #0a5391;
        transform-origin: right 40%;
        z-index: -2;
        transition: 0.5s ease-in-out all;
        height: 100%;
    }


.quik_links .codepen-box {
    padding: 15px;
}

.quik_links_wrp_cnt {
    position: relative;
    background-color: inherit;
    height: auto;
    bottom: 0;
    left: 15px;
    width: calc(100% - 30px);
}

    .quik_links_wrp_cnt a.quik_links_wrp {
        color: #fff;
        padding-left: 15px;
        display: inline-block;
        padding-top: 6px;
    }

.quik_links a.quik_links_wrp h5 {
    font-size: 25px;
    margin: 0;
    font-weight: 700;
    margin-bottom: 5px;
    color: #fff;
}

a.quik_links_wrp {
    scale: 1;
    display: block;
    transition: 0.5s ease-in-out all;
}



.quik_links_wrp_img img, .quik_links_wrp_img iframe {
    width: 100%;
    height: 270px;
    padding: 15px;
    border-radius: 20px;
}

.read_btn {
    font-size: 14px;
    padding: 5px 25px;
    color: #fff;
    background-color: #c20702;
    font-weight: 500;
    box-shadow: 0 3px 5px rgb(0 0 0 / 10%) !important;
    margin-top: 10px;
    border-color: #c20702;
}

    .read_btn:hover {
        color: #fff;
    }

/* =================== Topper ===================*/
.parent-trust {
    padding: 50px 0;
    background: url(../../images/bg/bg-3.jpg) top center no-repeat;
    background-size: cover;
}

.topper-heding {
    font-size: 28px;
    font-weight: bold;
    text-align: center;
}

.heading-blue {
    text-align: center;
    font-weight: 700;
    margin: 0;
}

.web-section-sub-title {
    text-align: center;
    margin-bottom: 40px;
}

.mb-15 {
    margin-bottom: 15px;
}

.gfuhiuh_tri {
    height: 300px;
}

.sc-image-card {
    position: relative;
    padding: 0 12px;
    height: 300px;
}

    .sc-image-card img {
        box-shadow: rgba(0,0,0,.19) 0px 10px 20px, rgba(0,0,0,.23) 0px 6px 6px;
        display: block;
        margin: 0 auto;
        border: 3px solid #c20702;
        height: 280px;
    }

    .sc-image-card.aa-card .details {
        bottom: -10%;
    }

    .sc-image-card .details {
        position: absolute;
        left: 0;
        bottom: 4px;
        width: 100%;
        padding: 8px 10px;
        box-shadow: rgba(50,50,93,.25) 0px 50px 100px -20px, rgba(0,0,0,.3) 0px 30px 60px -30px, rgba(10,37,64,.35) 0px -2px 6px 0px inset;
        text-align: center;
        background: #fff;
        border-radius: 50px;
    }


/*========================= testimonial ==========================*/
.testimonial {
    background-color: #000;
    background-image: url(https://jbms.in/wp-content/uploads/2023/03/testimonial.webp);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 1;
    padding: 50px 0;
}

    .testimonial::before {
        content: '';
        height: 100%;
        width: 100%;
        top: 0;
        left: 0;
        position: absolute;
        background-color: #fff0;
        background-image: linear-gradient(270deg,#00000030 50%,#930000F0 0%);
        opacity: .95;
        transition: background 0.3s,border-radius 0.3s,opacity 0.3s;
        z-index: -1;
    }

    .testimonial h1 {
        font-size: 25px;
        color: #fff;
        font-weight: 500;
        margin-bottom: 30px;
    }

.textimonial-details {
    background: #fff;
    padding: 20px;
    border-radius: 5px;
}

    .textimonial-details img {
        height: 65px;
        width: 70px !important;
        border-radius: 50%;
        margin-bottom: 15px;
    }

    .textimonial-details p:first-child {
        margin-top: 10px;
        text-align: justify;
    }

    .textimonial-details .second {
        margin-bottom: 0;
    }

    .textimonial-details p:last-child {
        margin-bottom: 0;
    }


/*================ breadcrumbs ===========================*/
.pageBanner {
    position: relative;
    background: url(../../images/slider-1.jpeg);
    background-position: top;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 1;
    height: 250px;
    width: 100%;
}

    .pageBanner::before {
        content: '';
        position: absolute;
        height: 100%;
        width: 100%;
        top: 0;
        left: 0;
        z-index: -1;
        background-color: #0f101a91;
    }



    .pageBanner .bannerTitle {
        font-size: 35px;
        line-height: 58px;
        color: #fff;
        font-family: var(--body-font);
        margin: 77px 0 64px;
    }

    .pageBanner .breadcrumbs {
        display: inline-block;
        background: #F8F8FA;
        border-radius: 5px 5px 0px 0px;
        color: #000;
        font-size: 15px;
        line-height: 26px;
        margin: 0;
        padding: 13px 32px 12px 30px;
    }

.breadcrumbs a {
    color: #000;
}

.pageBanner .breadcrumbs span {
    margin: 0 4px;
    color: #000;
}

/*========================= Contact ========================*/


.contact-information {
    border: 2px solid #F5F5F5;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 24px;
    background: #FFFFFF;
    box-shadow: 0px 10px 20px -5px rgb(76 64 237 / 8%);
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    align-items: center;
    height: 210px;
}

.contact-icon {
    height: 70px;
    width: 70px;
    border-radius: 50%;
    background: #0d388b;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .contact-icon i {
        font-size: 22px;
        color: #fff;
    }

.address-text {
    text-align: center;
}

    .address-text h5 {
        margin: 0;
        font-size: 22px;
    }

    .address-text p {
        font-size: 16px;
        font-weight: 500;
    }

/*======================= career ====================*/

.cf th {
    text-align: center;
    font-weight: bold;
}

.default-btn {
    padding: 10px 25px;
    text-align: center;
    color: #fff;
    font-size: 19px;
    font-weight: bold;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    z-index: 0;
    font-size: 18px;
    background: #68246D;
    -webkit-box-shadow: none;
    box-shadow: none;
    overflow: hidden;
    white-space: nowrap;
    border-radius: 30px;
}

    .default-btn:hover {
        color: #fff;
    }

.set1 {
    width: 100%;
    height: 40px;
    border: 1px solid #000;
    padding: 5px;
}

.career {
    padding: 30px 100px;
    box-shadow: 0px 0px 11px rgb(0 0 0 / 50%);
    background: #fff;
}

    .career label {
        font-weight: 700;
        font-size: 18px;
    }

@media screen and (max-width:900px) {
    .career {
        padding: 20px 20px;
    }
}


/*==========================Page-section ============================*/

.aboutsec {
    padding: 80px 0;
}

.message-title span {
    display: table;
    width: 100%;
}

.aboutsec p {
    text-align: justify;
}


.leader_b {
    background: #ffffff;
    padding: 10px;
    box-shadow: 0 0 10px rgba(34, 34, 34, 0.2);
    transition: all 0.3s ease 0s;
    overflow: hidden;
    margin-bottom: 15px;
}

    .leader_b .normal-text h4 {
        margin-bottom: 0px;
        margin-top: 10px;
        color: #000;
    }

        .leader_b .normal-text h4 a {
            color: #000;
            font-size: 18px;
            font-weight: 600;
        }

    .leader_b .normal-text {
        text-align: center;
    }

    .leader_b img {
        height: 240px;
        width: 100%;
    }

.ul-custom li {
    list-style: number;
    padding-left: 15px;
    margin-bottom: 10px;
    font-size: 16px;
    text-align: justify;
}

.parent-say-img {
    width: 370px;
    border-radius: 5px;
    float: right;
    margin-left: 15px;
}

/* ========================= Footer ========================*/

.border-right {
    border-right: 1px solid #fff;
}

    .border-right:last-child {
        border-right: none;
    }

.address ul {
    padding-left: 10px;
}

    .address ul li {
        display: flex;
        gap: 15px;
        color: #fff;
        font-size: 18px;
        line-height: 1.2;
        margin-bottom: 15px;
    }

        .address ul li a {
            color: #fff;
        }

            .address ul li a:hover {
                color: #fff;
            }

.quick-link {
    padding-top: 20px;
}

    .quick-link ul {
        display: flex;
        column-gap: 25px;
    }

        .quick-link ul li a {
            color: #fff;
            font-size: 18px;
            font-weight: 700;
            margin: 0;
        }

.bottom-content {
    padding-top: 20px;
    padding-left: 28px;
}

    .bottom-content p {
        font-size: 19px;
        font-weight: 700;
        margin: 0;
        color: #fff;
    }

.lm {
    text-align: right;
}

.social-icon {
    display: flex;
    column-gap: 20px;
    justify-content: end;
}

    .social-icon li {
        position: relative;
    }

        .social-icon li img {
            filter: brightness(0) invert(1);
        }

        .social-icon li .icon-item {
            position: absolute;
            top: 8px;
            left: 0;
            right: 0;
            text-align: center;
        }

#fix-rig {
    top: 44%;
    right: -60px;
    font-size: 16px;
    background: rgb(239, 239, 239);
    color: rgb(0, 64, 128);
    padding: 8px 13px 10px;
    transform: rotate(-90deg);
    box-shadow: rgb(0 12 105 / 44%) 0px 2px 15px 0px;
    z-index: 999 !important;
    cursor: pointer;
    border-top-right-radius: 8px;
    border-bottom-left-radius: 8px;
}

    #fix-rig span {
        margin-right: 7px;
        background: rgb(0, 64, 128);
        height: 21px;
        border-radius: 5px;
        width: 21px;
    }

    #fix-rig img {
        animation-name: equ_right_call;
        animation-duration: 1.5s;
        animation-iteration-count: infinite;
        animation-timing-function: linear;
        animation-delay: 5s;
        width: 13px;
    }

@keyframes equ_right_call {
    0%, 20%, 26%, 32%, 38%, 44%, 50%, 56%, 62%, 68%, 74%, 80% {
        transform: rotate(0deg);
    }

    23%, 35%, 47%, 59%, 71% {
        transform: rotate(15deg);
    }

    29%, 41%, 53%, 65%, 77% {
        transform: rotate(-15deg);
    }
}

.ani-pio {
    width: 250px;
    top: 37.5%;
    right: -250px;
    transition: all 0.5s ease 0.1s;
    box-shadow: rgb(0 12 105 / 17%) 0px 0px 20px 0px;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}

.z-1 {
    z-index: 1 !important;
}

.ani-pio .closebtn {
    position: absolute;
    top: 0px;
    right: 14px;
    font-size: 28px;
    cursor: pointer;
    line-height: 1.2em;
}

.fw-semibold {
    font-weight: 600 !important;
}

.fix-contact .fix-indian .fix-indian-left p, .fix-contact .fix-internatioanl .fix-international-left p {
    font-size: 11px;
    margin: 0px;
}

.fix-indian-left a, .fix-international-left a {
    color: #000;
    font-weight: 900;
}

.fix-indian {
    margin-bottom: 10px;
}

.fix-indian-right i, .fix-international-right i {
    background: #1a519e;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 26px;
}


#fix-rig2 {
    bottom: 0px;
    right: 0px;
    z-index: 999;
    font-size: 17px;
    color: rgb(255, 255, 255);
    font-weight: 500;
    width: 320px;
    box-shadow: rgb(112 112 112 / 40%) 0px 0px 5px 0px;
}

.bottom-enquiry .card {
    background-color: #c20702;
}

.bottom-enquiry .card-header {
    cursor: pointer;
}

.card-header > .heading-equiry-pop > i {
    cursor: pointer;
    transition: all 0.9s ease 0s;
}

.card-header > .heading-equiry-pop.collapsed > i {
    transform: rotate(177deg);
    transition: all 0.9s ease 0s;
}

.form-label {
    color: #000;
    font-weight: 400;
    font-size: 14px;
    margin-top: 10px;
    margin-bottom: 0;
}

.fw-semibold a {
    color: #000;
    font-weight: 900;
    font-size: 16px;
}

.phone-b-pop span {
    color: #000;
    font-size: 12px;
}

.pos-form-details {
    background: #fff;
    box-shadow: 0 0 20px #ccc;
    padding: 15px !important;
}

.abttitle {
    color: #363636;
    font-size: 1.7rem;
    text-align: center;
    font-weight: 600;
    line-height: 1.125;
    margin-bottom: 11px;
    position: relative;
    padding-bottom: 15px;
}

.pos-res-for-sec-1 .abttitle:before {
    position: absolute;
    content: '';
    left: 44%;
    bottom: 0;
    border: 0;
    height: 2px;
    width: 127px;
    background: #204A7F !important;
}

.panel-heading {
    margin-top: 10px;
    padding: 10px 15px;
    border-bottom: 1px solid transparent;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
    background-color: #ededed;
    border-radius: 6px 6px 0 0;
    color: #363636;
    font-size: 1.25em;
    font-weight: 700;
    line-height: 1.25;
}

.panel-title {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 16px;
    color: inherit;
}

.form-group {
    margin-bottom: 12px;
}

label {
    color: black;
    font-size: 16px;
    display: inline-block;
    max-width: 100%;
    margin-bottom: 5px;
    font-weight: 500;
}

.btn-one {
    position: relative;
    border: 2px solid #1d2d67;
    display: inline-block;
    background-color: #1d2d67;
    color: #ffffff;
    font-size: 14px;
    line-height: 18px;
    font-weight: 400;
    padding: 10px 30px;
    text-transform: capitalize;
    border-radius: 5px;
    transition: all 500ms ease;
    border-radius: 3px;
}

.process-box {
    transition-duration: 0.5s;
    border-radius: 3px 3px 3px 3px;
    box-shadow: 0 5px 15px 0 rgb(0 0 0 / 17%);
    position: relative;
}

.inner-process-box img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    border-radius: 3px 3px 3px 3px;
}

.inner-process-box h3 {
    font-size: 18px;
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    text-align: center;
    background: #1d2d67;
    color: #fff;
    padding: 13px 0;
    border-radius: 0px 0px 3px 3px;
}

.bottom-process {
    font-size: 18px;
    margin-top: 13px;
    text-align: center;
}

.process-box::before {
    content: "";
    position: absolute;
    width: 90%;
    height: 90%;
    border: 1px solid #e1e1e1;
    z-index: 9;
    top: 10px;
    left: 15px;
}

.process-box:hover {
    top: 10px;
    transition: 0.5s ease-in-out;
}

table {
    background: #fff;
}

table, th, td {
    border: 1px solid #000;
}

    table th, table td {
        text-align: center;
    }

    table th {
        background: #172a86 !important;
        color: #fff;
    }

.inner-p {
    font-weight: bold;
}

.abtsection {
    padding: 50px 0;
}

    .abtsection .innerAbtCntnt {
        background: #fff;
        padding: 30px;
        border-radius: 1px;
        box-shadow: 0 5px 24px 3px rgb(44 32 32 / 79%);
    }

.infraDiv .row {
    margin-bottom: 20px;
}

.alignCenter {
    display: flex;
    align-items: center;
}

.infraInnertxt {
    padding: 20px;
    border: 1px solid #ccc;
    width: 100%;
}

.infraDiv .infraInnertxt h3 {
    font-size: 18px;
    font-weight: 600;
}

.infraDiv .infraInnertxt p {
    font-size: 15px;
    line-height: 25px;
    text-align: justify;
    margin: 0;
}

.infraDiv .foogallery-pile {
    position: relative;
    z-index: 10;
}

    .infraDiv .foogallery-pile:before, .infraDiv .foogallery-pile:after {
        content: "";
        width: 100%;
        height: 100%;
        position: absolute;
        border: 8px solid #b01c15;
        left: 0;
        -webkit-box-shadow: 0 1px 4px rgb(0 0 0 / 30%);
        -moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
        box-shadow: 0 1px 4px rgb(0 0 0 / 30%);
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }

    .infraDiv .foogallery-pile:before {
        top: -3px;
        z-index: -10;
        -webkit-transform: rotate(2deg);
        -moz-transform: rotate(2deg);
        transform: rotate(2deg);
    }

    .infraDiv .foogallery-pile:after {
        top: -2px;
        z-index: -20;
        -webkit-transform: rotate(-2deg);
        -moz-transform: rotate(-2deg);
        transform: rotate(-2deg);
    }

    .infraDiv .foogallery-pile .foogallery-pile-inner {
        border: 8px solid #b01c15;
        -webkit-box-shadow: 0 1px 4px rgb(0 0 0 / 40%);
        -moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
        box-shadow: 0 1px 4px rgb(0 0 0 / 40%);
        overflow: hidden;
        line-height: 0;
    }

.foogallery-pile-inner img {
    max-width: 100%;
    object-fit: cover;
    width: 100%;
    height: 300px;
}

.download-img {
    height: 32px;
}

.filter-button {
    width: 239px;
    font-size: 17px;
    border: 2px solid #1d2d67;
    padding: 5px 6px;
    text-align: center;
    color: #fff;
    margin-bottom: 20px;
    background: transparent;
    display: inline-block;
    background-color: #1d2d67;
    cursor: pointer;
    border-radius: 30px;
}

    .filter-button:hover,
    .filter-button:focus,
    .filter-button.active {
        background-color: #1d2d67;
    }


.filter {
    margin-bottom: 20px;
    margin-top: 5px;
}

@media screen and (max-width:425px) {
    .filter-button {
        width: 100%;
        font-size: 16px;
        padding: 3px 6px;
        text-align: center;
        margin-bottom: 27px;
        display: inline-block;
    }
}

.custom-slider {
    height: 650px;
}

.quick-link ul li a i {
    display: none;
}

.th-menu-toggle {
    border: none;
    background: no-repeat;
}

.th-menu-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.6);
    z-index: 999999;
    width: 0;
    width: 100%;
    height: 100%;
    -webkit-transition: all ease 0.8s;
    transition: all ease 0.8s;
    opacity: 0;
    visibility: hidden;
}

    .th-menu-wrapper .mobile-logo {
        padding-bottom: 30px;
        padding-top: 40px;
        display: block;
        text-align: center;
        background-color: #F5F5F5;
    }

        .th-menu-wrapper .mobile-logo svg {
            max-width: 185px;
        }

    .th-menu-wrapper .th-menu-toggle {
        border: none;
        font-size: 22px;
        position: absolute;
        right: -16.5px;
        top: 25px;
        padding: 0;
        line-height: 1;
        width: 33px;
        height: 33px;
        line-height: 35px;
        font-size: 18px;
        z-index: 1;
        color: #fff;
        background-color: #0a5391;
        border-radius: 50%;
    }

        .th-menu-wrapper .th-menu-toggle:hover {
            background-color: #0a5391;
            color: #fff;
        }

    .th-menu-wrapper .th-menu-area {
        width: 100%;
        max-width: 310px;
        background-color: #fff;
        border-right: 3px solid #0a5391;
        height: 100%;
        position: relative;
        left: -110%;
        opacity: 0;
        visibility: hidden;
        -webkit-transition: all ease 1s;
        transition: all ease 1s;
        z-index: 1;
    }

    .th-menu-wrapper.th-body-visible {
        opacity: 1;
        visibility: visible;
    }

        .th-menu-wrapper.th-body-visible .th-menu-area {
            left: 0;
            opacity: 1;
            visibility: visible;
        }

.th-mobile-menu {
    overflow-y: scroll;
    max-height: calc(100vh - 20px);
    padding-bottom: 40px;
    margin-top: 33px;
    text-align: left;
}

    .th-mobile-menu ul {
        margin: 0;
        padding: 0 0;
    }

        .th-mobile-menu ul li {
            border-bottom: 1px solid #fdedf1;
            list-style-type: none;
        }

            .th-mobile-menu ul li li:first-child {
                border-top: 1px solid #fdedf1;
            }

            .th-mobile-menu ul li a {
                display: block;
                position: relative;
                padding: 12px 0;
                line-height: 1.4;
                font-size: 16px;
                text-transform: capitalize;
                color: #1A1A1A;
                padding-left: 18px;
            }

                .th-mobile-menu ul li a:before {
                    content: '\f105';
                    font-family: var(--icon-font);
                    position: absolute;
                    left: 0;
                    top: 12px;
                    margin-right: 10px;
                    display: inline-block;
                }

            .th-mobile-menu ul li.th-active > a {
                color: #0a5391;
            }

                .th-mobile-menu ul li.th-active > a:before {
                    -webkit-transform: rotate(90deg);
                    -ms-transform: rotate(90deg);
                    transform: rotate(90deg);
                }

            .th-mobile-menu ul li ul li {
                padding-left: 20px;
            }

                .th-mobile-menu ul li ul li:last-child {
                    border-bottom: none;
                }

        .th-mobile-menu ul .menu-item-has-children > a .th-mean-expand {
            position: absolute;
            right: 0;
            top: 50%;
            font-weight: 400;
            font-size: 12px;
            width: 25px;
            height: 25px;
            line-height: 25px;
            margin-top: -12.5px;
            display: inline-block;
            text-align: center;
            background-color: #F6F2F1;
            color: #1A1A1A;
            box-shadow: 0 0 20px -8px rgba(173,136,88,0.5);
            border-radius: 50%;
        }

            .th-mobile-menu ul .menu-item-has-children > a .th-mean-expand:before {
                content: '\f067';
                font-family: var(--icon-font);
            }

        .th-mobile-menu ul .menu-item-has-children > a:after {
            content: "\f067";
            font-family: var(--icon-font);
            width: 22px;
            height: 22px;
            line-height: 22px;
            display: inline-block;
            text-align: center;
            font-size: 12px;
            border-radius: 50px;
            background-color: #F6F2F1;
            float: right;
            margin-top: 1px;
        }

        .th-mobile-menu ul .menu-item-has-children.th-active > a .th-mean-expand:before {
            content: '\f068';
        }

        .th-mobile-menu ul .menu-item-has-children.th-active > a:after {
            content: "\f068";
        }

    .th-mobile-menu > ul {
        padding: 0 40px;
    }

        .th-mobile-menu > ul > li:last-child {
            border-bottom: none;
        }

.custom-height-testimonial {
    height: 180px;
    overflow-y: scroll;
    text-align: justify;
}

    .custom-height-testimonial::-webkit-scrollbar {
        width: 3px;
        height: 2px !important;
    }

    .custom-height-testimonial::-webkit-scrollbar-track {
        background: #f1f1f1;
    }

    .custom-height-testimonial::-webkit-scrollbar-thumb {
        background-color: #023c5b;
        border-radius: 6px;
    }

/*.overlay-main {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: rgb(0 0 0 /50%);
    z-index: 9999999;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.overlay-main-content {
    z-index: 999;
}

.close-button {
    text-align: right;
}

    .close-button i {
        position: relative;
        top: 0;
        right: 0;
        color: #000;
        background: #fff;
        border-radius: 50%;
        width: 25px;
        height: 25px;
        font-size: 15px;
        line-height: 1.5;
        text-align: center;
        border: 2px solid #000;
        cursor: pointer;
    }

.img-and-content {
    background-color: #fff;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    cursor: pointer;
    align-items: center;
    padding: 10px;
    box-shadow: 0px 0px 11px 0px #ccc;
    text-decoration: none !important;
}

    .img-and-content img {
        width: 550px;
        height: 450px;
        padding: 0;
    }

span.content__popup {
    width: 290px;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    margin-right: 10px;
}

.img-and-content .text-popup {
    font-size: 14px;
    font-family: 'Glory', sans-serif;
    text-align: center;
    margin-bottom: 0;
    margin-right: 10px;
    letter-spacing: 0px;
    font-style: normal;
    color: #000;
    line-height: 22px;
}

.see_morew__btn {
    line-height: 1;
    border: 1px solid #ccc;
    border-radius: 20px;
    padding: 2px 10px 3px 10px;
    font-weight: 600;
    text-shadow: 0 0 black;
    font-size: 12px;
    font-style: italic;
    width: auto;
    margin-top: 4px !important;
    margin: 0 auto;
    font-family: 'Glory', sans-serif;
    color: #000;
    display: inline-block;
    white-space: nowrap;
    text-align: center;
    letter-spacing: 1px;
    transition: ease all 500ms;
}

span.see_morew__btn:hover {
    color: green;
    transition: ease all 500ms;
}*/

.topheadingpopup {
    font-family: 'Glory', sans-serif;
    font-weight: 500;
    text-align: center;
    color: #333;
    font-size: 15px;
    line-height: 22px;
}

.event-img {
    border-radius: 5px;
    height: 210px;
    width: 100%;
}

.event-content {
    padding-bottom: 15px;
    border-bottom: 1px solid #000;
    padding-top: 15px;
}

.sticky-icon {
    z-index: 999;
    position: fixed;
    top: 40%;
    left: 0%;
    width: 90px;
    display: flex;
    flex-direction: column;
}

    .sticky-icon a {
        transform: translate(-30px,0px);
        border-radius: 0px 50px 50px 0px;
        text-align: left;
        margin: 2px;
        text-decoration: none;
        text-transform: uppercase;
        padding: 10px 0 10px 0;
        font-size: 22px;
        transition: all 0.8s;
        display: flex;
        flex-direction: row-reverse;
    }

.Instagram {
    background-color: #c40804;
    color: #FFF;
}

.sticky-icon a i.fa-instagram {
    background-color: #FFF;
    color: #FD1D1D;
}

.sticky-icon a i {
    height: 30px;
    width: 30px;
    text-align: center;
    line-height: 30px;
    border-radius: 50%;
    margin-right: 20px;
    transition: all 0.5s;
}

.Facebook {
    background-color: #2C80D3;
    color: #FFF;
}

.sticky-icon a i.fa-facebook-f {
    background-color: #FFF;
    color: #2C80D3;
}

.Youtube {
    background-color: #fa0910;
    color: #FFF;
}

.sticky-icon a i.fa-youtube {
    background-color: #FFF;
    color: #fa0910;
}

.sticky-icon a:hover {
    color: #FFF;
    transform: translate(-10px,0px);
}

    .sticky-icon a:hover i {
        transform: rotate(360deg);
    }


.fee-table td {
    text-align: start;
}

.faci-ul li {
    list-style: disc;
    font-size: 15px;
}

/*================== Event Gallery ================= */
.photoGallerySection {
    height: auto;
    overflow: hidden;
}

.photoGalleryImg {
    position: relative;
}

    .photoGalleryImg:before {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        z-index: 1;
        width: 100%;
        height: 100%;
        background: linear-gradient(0deg,#f1f1f1,transparent);
    }

    .photoGalleryImg img {
        width: 100%;
        height: 600px;
        -o-object-fit: cover;
        object-fit: cover;
        filter: grayscale(1);
        border-radius: 10px 10px 0 0;
    }

.Our-pointer-events {
    position: relative;
    margin-right: 180px;
    margin-top: -620px;
}


.photoGalleryInfo {
    position: relative;
    padding: 0 0 40px 0;
}

    .photoGalleryInfo h2 {
        font-size: 110px;
        line-height: 1;
        font-weight: 700;
        letter-spacing: -.5px;
        color: rgba(0,33,94,.3);
        text-transform: uppercase;
        margin-bottom: 30px;
        font-family: "Quicksand", sans-serif;
    }

.gallerySwiperBlock {
    position: relative;
}

    .gallerySwiperBlock span.numberCount {
        font-family: Quicksand,sans-serif;
        position: absolute;
        top: 12px;
        left: 12px;
        display: block;
        font-size: 62px;
        line-height: 62px;
        z-index: 99;
        font-weight: 700;
        color: transparent;
        -webkit-text-stroke-width: 1px;
        -webkit-text-stroke-color: #fff;
    }

.gallerySwiperBlockImg {
    position: relative;
    margin-bottom: 12px;
    transition: .2s ease-in-out;
}

.gallerySwiperBlock span.dateSpan {
    position: absolute;
    left: 50%;
    bottom: 10px;
    width: 120px;
    text-align: center;
    transform: translate(-50%,0);
    z-index: 9;
    font-size: 14px;
    line-height: 20px;
    color: #000;
    font-weight: 700;
    background: rgba(255,255,255,.9);
    padding: 4px 12px;
    border-radius: 50px;
    text-transform: uppercase;
}

.gallerySwiperBlock img {
    width: 100%;
    height: 340px;
    -o-object-fit: cover;
    object-fit: cover;
    transition: .2s ease-in-out;
    border-radius: 6px;
    filter: brightness(.8);
}

.gallerySwiperBlock h3 {
    font-family: "Open Sans",sans-serif;
    font-size: 17px;
    line-height: 22px;
    color: #000;
    font-weight: 700;
    margin-bottom: 0;
    margin-top: 4px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: -.2px;
    position: relative;
    overflow: hidden;
    height: 42px;
}

.gallerySwiperBlock:hover img {
    filter: grayscale(0) brightness(.8);
}

.gallerySwiperBlock:hover .gallerySwiperBlockImg img {
    transform: rotate(4deg) scale(.98);
}

.topper-carousal .owl-carousel .owl-nav button.owl-prev {
}


.update-button-important {
    position: fixed;
    background: rgba(0,33,94,.9);
    bottom: 0;
    z-index: 999;
    left: 0;
    right: 0;
    padding: 9px 12px;
}

    .update-button-important .container-fluid {
        background: #fff;
        padding-top: 2px;
        padding-left: 2px;
        padding-bottom: 2px;
    }

    .update-button-important p {
        margin-bottom: 0;
        background: #c20702;
        color: #fff;
        padding: 4px;
        font-weight: 700;
        text-transform: uppercase;
        text-align: center;
        font-size: 14px;
    }

.welcome_main {
    padding: 45px 0 !important;
}

.image-column .inner-column {
    position: relative;
    text-align: right;
    padding-right: 30px;
    padding-bottom: 180px;
}

.image-column .kids-title {
    position: absolute;
    left: -30px;
    top: 2px;
    color: #ffd200;
    line-height: 1em;
    font-size: 135px;
    z-index: 1;
    text-transform: uppercase;
    font-family: 'Pacifico', cursive;
    text-shadow: 0 0 10px rgb(0 0 0 / 25%);
}

.image-column .kids-title {
    font-size: 125px;
}

.image-column .kids-title {
    top: 65px !important;
}

.image-column .pattern-layer {
    position: absolute;
    content: '';
    left: -90px;
    top: 0px;
    width: 590px;
    height: 528px;
    background-repeat: no-repeat;
    background-size: 90%;
}

.patternleftright {
    position: absolute;
    content: '';
    left: 0;
    bottom: 53px;
    width: 241px;
    height: 388px;
    background-repeat: no-repeat;
    animation-name: float_left_right_two;
    animation-duration: 5s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

.patternleftright {
    left: unset !important;
    right: 30px !important;
}

.image-column .image-one {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    display: inline-block;
    box-shadow: 0 0 17px rgb(0 0 0 / 15%);
}

    .image-column .image-one img {
        width: 480px;
        height: 380px;
        object-fit: cover;
    }

.home_video_section {
    width: 100%;
    height: auto;
    border-radius: 10px;
    position: absolute;
    left: -53px;
    bottom: 53px;
    z-index: 9;
    border: 10px solid rgb(0, 64, 128);
    line-height: 0;
}

    .home_video_section img {
        height: 260px;
        width: 100%;
        object-fit: cover;
        object-position: top;
    }

.sec-title-two h2 {
    font-size: 28px;
    color: #000;
    line-height: 1.1em;
    font-weight: 700;
}

    .sec-title-two h2 .hedingone {
        color: #034ea1;
    }

.content-column .dark-text {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 25px;
    color: #666666;
    text-align: justify;
}

.content-column .feature-column {
    position: relative;
    margin-bottom: 15px;
}

    .content-column .feature-column .feature-inner {
        padding-left: 60px;
        font-size: 16px;
        line-height: 24px;
        position: relative;
        color: #666666;
    }

        .content-column .feature-column .feature-inner .icon {
            position: absolute;
            left: 0px;
            top: 0px;
            line-height: 1em;
        }

.feature-inner .icon img {
    width: 40px;
}

.content-column .feature-column .feature-inner strong {
    position: relative;
    display: block;
    color: #666666;
    font-size: 20px;
    font-weight: 600;
    opacity: 1;
    margin-bottom: 5px;
}

.showlinethree {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.feature-inner .showlinethree p {
    margin: 0 !important;
    text-align: justify;
    font-size: 15px;
}

section.aboutHpSection {
    background: rgba(0,33,94,.062745098);
    padding: 100px 0 70px;
    position: relative;
}

    section.aboutHpSection:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url(../images/bg/education-pattern.jpg);
        filter: opacity(.3);
        background-size: cover;
        background-position: center;
    }

ul.welcomeUl {
    display: flex;
    flex-wrap: wrap;
}

    ul.welcomeUl li {
        flex: 0 0 auto;
        width: 33.3%;
    }

.aboutHpBox {
    position: relative;
    overflow: hidden;
    border: 6px solid #fff;
    width: 320px;
    margin: 0 auto;
    box-shadow: 0 0 12px 7px rgb(0 0 0 / 12%);
    transition: .6s ease-in-out;
}

ul.welcomeUl li:nth-child(1) .aboutHpBox {
    transform: rotate(-8deg) scale(1.05);
}

ul.welcomeUl li:nth-child(2) .aboutHpBox {
    transform: scale(1.05) translateY(-50px);
}

ul.welcomeUl li:nth-child(3) .aboutHpBox {
    transform: rotate(6deg) scale(1.05) translateY(-10px);
}


ul.welcomeUl li:nth-child(1) .aboutHpBox:hover {
    transform: rotate(8deg) scale(1.15);
}

ul.welcomeUl li:nth-child(2) .aboutHpBox:hover {
    transform: scale(1.15) translateY(-50px);
}

ul.welcomeUl li:nth-child(3) .aboutHpBox:hover {
    transform: rotate(-6deg) scale(1.15) translateY(-10px);
}


.aboutHpBox:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    z-index: 9;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.3137254902);
    transition: .6s ease-in-out;
}

.aboutHpBox:hover::before {
    background: rgba(166,32,57,.67);
    transition: .6s ease-in-out;
}

.aboutHpBox img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: top;
    transition: .6s ease-in-out;
}

.aboutHpBoxContent {
    position: absolute;
    bottom: 0;
    left: 50%;
    z-index: 10;
    transform: translate(-50%,0) translateY(65%);
    width: 100%;
    text-align: center;
    padding: 25px 16px 16px;
    transition: .6s ease-in-out;
}

.aboutHpBox:hover .aboutHpBoxContent {
    transform: translate(-50%,0) translateY(0);
}

.aboutHpBoxContent h3 {
    font-size: 22px;
    line-height: 24px;
    text-transform: uppercase;
    color: #fff;
    font-weight: 700;
    margin-bottom: 16px;
    text-shadow: 1px 1px 20px #000;
}

.aboutHpBoxContent p {
    font-family: Quicksand,sans-serif;
    color: #fff;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 0;
    text-shadow: 1px 1px 20px #000;
    transition: .6s ease-in-out;
}

.chairperson {
    padding: 40px 0;
    overflow: hidden;
    position: relative;
}

#chairperson {
    background: #EFEBF7;
}

.awards {
    background: #EFEBF7 0% 0% no-repeat padding-box;
    border-radius: 0 250px 0 0;
    background-size: cover;
    padding: 40px 0;
}

.chairperson-left {
    position: relative;
}

.team-bg-left-settle {
    position: relative;
}

.awards h2 {
    color: #522980;
}

    .awards h2 span {
        color: #c20702;
        font-weight: 700;
    }

.text-blue {
    color: #767676;
    font-weight: 600;
    font-size: 18px;
    font-style: italic;
}



.purple-text {
    color: #522980;
    font-size: 125%;
    font-weight: 500;
}

.onfocus .chairperson-img {
    border-radius: 30px;
    margin-top: 10px;
}

    .onfocus .chairperson-img img {
        width: 100%;
        border-radius: 30px;
        height: 310px;
        object-fit: cover;
        object-position: top;
    }

.newsHpSection {
    background: #f1f1f1;
    padding: 80px 0;
}

.calendarBlock {
    position: relative;
    background: rgba(0,33,94,.9);
    padding: 70px 40px;
    margin-right: 30px;
    border-radius: 300px;
    height: 600px;
}

    .calendarBlock h2 {
        font-size: 25px;
        line-height: 48px;
        font-weight: 700;
        color: #121212;
        text-transform: uppercase;
        margin-bottom: 30px;
    }

.upcomingCalendar {
    position: relative;
}

    .upcomingCalendar .upcomingCalendarBox {
        position: relative;
        background: #fff;
        display: flex;
        margin-bottom: 8px;
        border-radius: 4px;
        padding: 6px;
    }

        .upcomingCalendar .upcomingCalendarBox span.startDateUpcomingBox {
            font-family: Quicksand,sans-serif;
            text-align: center;
            font-size: 34px;
            line-height: 34px;
            font-weight: 700;
            color: #b0203c;
            width: 50px;
            margin-right: 8px;
            background: rgba(176,32,60,.15);
            padding: 4px;
            border-radius: 4px;
        }

        .upcomingCalendar .upcomingCalendarBox:first-child span.startDateUpcomingBox {
            background: rgba(25,135,84,.2509803922);
            color: #005d00;
        }

        .upcomingCalendar .upcomingCalendarBox span.startDateUpcomingBox small {
            font-size: 32%;
            line-height: 12px;
            text-transform: uppercase;
            font-weight: 600;
        }

        /*.upcomingCalendar .upcomingCalendarBox h4 {
            font-family: "Open Sans",sans-serif;
            font-size: 15px;
            line-height: 18px;
            font-weight: 700;
            color: #222;
            text-transform: uppercase;
            margin-bottom: 0;
            align-self: center;
            width: calc(100% - 50px);
            position: relative;
            overflow: hidden;
            height: 55px;
        }*/

        .upcomingCalendar .upcomingCalendarBox h4 {
            font-family: "Open Sans", sans-serif;
            font-size: 14px;
            line-height: 18px;
            font-weight: 500;
            color: #222;
            margin-bottom: 0;
            width: calc(100% - 50px);
            position: relative;
            overflow: hidden;
            display: -webkit-box;
            -webkit-line-clamp: 7; 
            -webkit-box-orient: vertical;
            text-align:justify;
            /*height:55px;*/
        }

    .calendarBtn {
        position: relative;
        margin-top: 30px;
    }

    .calendarBtn a {
        display: inline-block;
        padding: 12px 20px;
        margin: 0 6px;
        border-radius: 50px;
        font-size: 15px;
        line-height: 20px;
        background: #333;
        color: #fff;
        font-weight: 700;
        text-transform: uppercase;
        border: 1px solid #fff;
        transition: .4s ease-in-out;
    }

        .calendarBtn a:nth-child(1) {
            background: #c20702;
            color: #fff;
            border-color: #c20702;
        }

        .calendarBtn a svg {
            width: 18px;
            fill: #fff;
            position: relative;
            top: -1px;
            transition: .4s ease-in-out;
        }

.awards-box {
    background: #FFF 0% 0% no-repeat padding-box;
    box-shadow: 0 10px 15px 5px #00000017;
    border-top-left-radius: 35px;
    border-top-right-radius: 35px;
    transition: 0.3s;
    overflow: hidden;
    position: relative;
    display: flex;
    padding: 30px 30px 10px;
    background: rgba(0,33,94,.9);
}

    .awards-box img {
        overflow: hidden;
        position: relative;
        border: 4px solid #fff;
    }

    .awards-box h2 {
        margin: 10px 0 0 0;
        font-size: 21px;
        text-transform: uppercase;
        color: #fff;
        font-weight: 600;
    }



.sectionSubtitle {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.5;
    color: #000;
    font-family: "Lato", sans-serif;
}


.titleHL:before {
    content: '';
    width: 5px;
    height: 24px;
    display: inline-block;
    background: #f6d123;
    margin-right: 8px;
}

.infra-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(3, 1fr);
    grid-column-gap: 10px;
    grid-row-gap: 10px;
}

    .infra-grid .div1 {
        grid-area: 1 / 1 / 3 / 2;
    }

    .infra-grid .div2 {
        grid-area: 1 / 2 / 2 / 3;
    }

    .infra-grid .div3 {
        grid-area: 1 / 5 / 2 / 6;
    }

    .infra-grid .div4 {
        grid-area: 1 / 3 / 2 / 5;
    }

    .infra-grid .div5 {
        grid-area: 2 / 2 / 3 / 4;
    }

    .infra-grid .div6 {
        grid-area: 2 / 4 / 3 / 6;
    }

    .infra-grid .div7 {
        grid-area: 3 / 1 / 4 / 3;
    }

    .infra-grid .div8 {
        grid-area: 3 / 3 / 4 / 4;
    }

    .infra-grid .div9 {
        grid-area: 3 / 4 / 4 / 6;
    }


.statBox {
    width: 100%;
    height: 100%;
    min-height: 200px;
    display: block;
    background-color: #174D99;
    background-repeat: no-repeat;
    border-radius: 10px;
    color: #fff;
    position: relative;
    overflow: hidden;
    transition: all .5s ease;
}

    .statBox:before, .statBox:after {
        content: '';
        width: 100%;
        height: 100%;
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 1;
        transition: all .5s ease;
    }

    .statBox:before {
        background: linear-gradient(-55deg, rgba(51, 131, 250, 0) 20%, rgb(6, 52, 117) 100%);
    }

    .statBox:after {
        background: linear-gradient(-55deg, rgba(51, 131, 250, 0) 20%, rgb(63, 143, 255) 100%);
        opacity: 0;
    }

    .statBox img {
        width: 100%;
        height: 100%;
        position: absolute;
        right: 0;
        bottom: 0;
        object-fit: cover;
        object-position: center;
        z-index: 0;
    }

    .statBox .sfimg_library, .statBox .sfimg_online {
        object-position: center top;
    }

.statFigure {
    width: 100%;
    line-height: 1;
    font-size: 16px;
    position: relative;
    padding: 20px;
    z-index: 2;
}

.sfText {
    font-size: 18px;
    text-transform: uppercase;
    font-family: "Lato", sans-serif;
    color: #fff;
}

.statBox:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 20px rgb(0 0 0 / 30%);
    z-index: 2;
}

    .statBox:hover:before {
        opacity: 0;
    }

    .statBox:hover:after {
        opacity: 1;
    }

.homeFacultySection {
    background-color: #042c64;
    transition: all 4s linear;
}

.sectionHead {
    font-weight: 600;
    line-height: 1.2;
    font-family: "Lato", sans-serif;
    font-size: 42px;
    margin-bottom: 0;
}

.hfsIntro p {
    font-size: 18px;
    line-height: 2;
    font-family: "Lato", sans-serif;
}

.yellowBtn {
    min-width: 150px;
    display: inline-block;
    border-radius: 8px;
    padding: 10px 10px;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    line-height: 1.5;
    text-align: center;
    transition: all .4s ease;
    box-shadow: 0 0 0 rgb(0 0 0 / 30%);
    background: #c20702;
    color: #fff;
    border: 1px solid #c20702;
}

    .yellowBtn:hover {
        color: #fff;
    }

.facultyCarousel {
    padding: 10px 60px;
    position: relative;
}

.facultySwiper .swiper-slide {
    overflow: hidden;
}

.facultyBox {
    width: 100%;
    aspect-ratio: 2/3;
    position: relative;
    text-align: center;
    border: 1px solid #f1f1f1;
    border-radius: 15px;
    overflow: hidden;
    background: #fff;
}

.facultyImg {
    width: 100%;
    height: 100%;
    filter: grayscale(100%);
    object-fit: cover;
    object-position: center;
}

.facultyBox a {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
}

.swiper-slide-active .facultyImg {
    filter: grayscale(0);
}

.swiper-slide-active a {
    pointer-events: unset;
}

.facultyCarousel .facultyNaviBtns {
    display: none;
}

    .facultyCarousel .facultyNaviBtns::after {
        font-size: 40px;
        color: #666;
    }


.facultyName {
    padding: 50px 15px 20px;
    display: block;
    position: absolute;
    bottom: -100px;
    left: 0;
    right: 0;
    color: #fff;
    font-size: 20px;
    letter-spacing: .02rem;
    background: linear-gradient(0deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
    opacity: 0;
    transition: all .3s ease;
    margin: 0;
}


.facultySwiper .swiper-slide-active .facultyBox .facultyImg {
    filter: grayscale(0) brightness(100%);
}

.facultySwiper .swiper-slide-active .facultyName {
    opacity: 1;
    bottom: 0;
    transition-delay: .3s;
}

.facultySwiper .swiper-slide-active a {
    pointer-events: unset;
}

.facultySwiper .swiper-slide-active {
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, .5));
}

.facultyCarousel .facultyNaviBtns {
    display: none;
}

    .facultyCarousel .facultyNaviBtns::after {
        font-size: 35px;
        color: #fff;
    }

.facultySwiper .swiper-slide-active .facultyBox:hover .facultyImg {
    filter: grayscale(0) brightness(110%);
}

.photoGallerySection .topper-carousal .owl-nav button.owl-prev {
    position: absolute;
    left: 0;
    top: 40%;
    background: rgba(176,32,60,.9);
    padding: 10px 18px !important;
    border-radius: 4px;
}

.photoGallerySection .topper-carousal .owl-nav button.owl-next {
    position: absolute;
    left: auto;
    right: 0;
    top: 40%;
    background: rgba(176,32,60,.9);
    padding: 10px 18px !important;
    border-radius: 4px;
}

    .photoGallerySection .topper-carousal .owl-nav button.owl-prev i, .photoGallerySection .topper-carousal .owl-nav button.owl-next i {
        color: #fff;
    }


.carousal-slider .owl-nav .owl-prev {
    position: absolute;
    left: 15px !important;
    top: 40%;
    background: rgba(176,32,60,.9) !important;
    padding: 10px 18px !important ;
    border-radius: 4px !important;
}

.carousal-slider .owl-nav .owl-next {
    position: absolute;
    left: auto;
    right: 15px !important;
    top: 40%;
    background: rgba(176,32,60,.9) !important;
    padding: 10px 18px !important;
    border-radius: 4px !important;
}

    .carousal-slider .owl-nav .owl-prev i, .carousal-slider .owl-nav .owl-next i {
        color: #fff;
    }

/*=================== footer =======================*/

.site-footer {
    width: 100%;
    float: left;
    background: #0b3e86;
    color: #C8C8C8;
    border-top: 0px solid #fff;
    padding: 40px 0px 40px 0px;
    font-style: normal;
    font-weight: 100;
    display: block;
    margin-bottom: 40px;
}

.span12 {
    width: 1170px;
}

.span2 {
    width: 170px;
    float: left;
    min-height: 1px;
    margin-left: 30px;
}

.span5 {
    width: 530px;
    float: left;
    min-height: 1px;
    margin-left: 30px;
}

    .span5 b {
        color: #fff;
        font-weight: 600;
    }

.soc-link {
    width: 49px;
    height: 49px;
    line-height: 49px;
    text-align: center;
    background: #fff;
    border-radius: 50px;
    font-size: 20px;
    margin-left: 5px;
}

.ft-social {
    display: flex;
    justify-content: end;
    margin-top: 25px;
}

.ft-last-box {
    text-align: end;
}

    .ft-last-box p {
        font-size: 17px;
        margin-top: 5px;
        color: #fff;
        font-weight: 500;
        line-height: 1.2;
    }

.widget-title {
    font-size: 20px;
    color: #fff;
    margin-right: 15px;
}

.visit-counter {
    color: #fff;
    font-size: 20px;
    font-weight: 500;
}

    .visit-counter:hover {
        color: #fff;
    }

.whatsapp-flex {
    position: fixed;
    left: 30px;
    bottom: 70px;
    z-index: 9999;
}

    

.pr-3 {
    padding-right: 5px;
}

.fixredRit {
    display: flex;
    flex-wrap: wrap;
    position: fixed;
    right: 5px;
    width: 40px;
    z-index: 9;
    bottom: 40%;
    transition: all .1s;
    padding: 0;
    margin: 0;
}

    .fixredRit li {
        width: 100%;
    }

        .fixredRit li:not(:last-of-type) {
            margin-bottom: 8px;
        }

    .fixredRit .socialBtn {
        transition: all .5s;
        display: -ms-flexbox;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 7px;
        width: 35px;
        height: 35px;
    }

        .fixredRit .socialBtn .icon {
            width: 100%;
            height: 100%;
            display: flex;
            max-width: 20px;
        }

            .fixredRit .socialBtn .icon svg {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }

    .fixredRit li .socialBtn {
        background: #af014a;
    }

    .fixredRit li .admSnBTn {
        width: 100%;
        height: fit-content;
        writing-mode: vertical-lr;
        display: flex;
        align-items: center;
        background: #f0132b;
        color: #fff;
        padding-inline: 10px;
        font-size: 14px;
        letter-spacing: 2px;
        border-radius: 5px;
        width: 35px;
        transition: all .5s;
    }

a.mainLink {
    position: relative;
    right: 0;
    top: 0;
    transform: none;
    width: auto;
    height: auto;
    padding: 8px 16px;
    border-radius: 50px;
    border: 1px solid #000;
    z-index: 9;
    display: inline-block;
    text-align: center;
    background: rgba(255,255,255,.7607843137);
    color: #000;
    font-size: 15px;
    line-height: 20px;
    font-weight: 600;
    text-transform: uppercase;
    transition: .4s ease-in-out;
}


.faculty-single {
    padding: 20px;
    background: rgb(241 241 241);
    text-align: center;
    height: 300px;
    overflow: hidden;
    border-radius: 5px;
    transition: .5s;
}

    .faculty-single:hover {
        background: #C00415;
    }

    .faculty-single figure {
        width: 160px;
        height: 160px;
        margin: 0 auto 20px;
        border-radius: 50%;
        overflow: hidden;
        border: 4px solid #C00415;
        transition: .7s;
        background: #bbb;
    }

    .faculty-single:hover figure {
        width: 70px;
        height: 70px;
        border: 2px solid #fff;
    }

    .faculty-single figure img {
        width: 100%;
    }

.faculty-details div {
    opacity: 0;
    transition: 1s;
    margin-bottom: -30%;
    padding-top: 10px;
}

.faculty-single:hover div {
    opacity: 1;
    margin-bottom: -0%;
}

.faculty-single h3 {
    font-size: 22px;
    color: #333;
    line-height: normal;
    font-weight: 600;
    transition: .7s;
}

    .faculty-single h3 small {
        font-weight: 500;
        display: block;
        line-height: 16px;
        margin: 0 0 10px 0;
        font-size: 15px;
        transition: .7s;
        color: #C00415;
    }

.faculty-single:hover h3, .faculty-single:hover h3 small, .faculty-single:hover p {
    color: #fff;
}

.faculty-single p {
    font-size: 15px;
    line-height: normal;
    transition: .7s;
    text-align: center;
}


/*============== Footer ======================*/

.main-footer {
    position: relative;
    padding: 50px 0 0;
    background-color: #01083a;
    margin-bottom: 50px;
}

    .main-footer:before {
        position: absolute;
        content: '';
        left: 0;
        top: 0;
        right: 0;
        bottom: 0;
        background-color: #01083a;
    }


    .main-footer svg:not(:root) {
        overflow: hidden;
    }

    .main-footer svg {
        position: absolute;
        height: 100%;
        top: 0;
        width: 100%;
    }

    .main-footer .widgets-section {
        position: relative;
    }

.widget_bunch_about_us .footer-widget {
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    background: #01083a;
    padding: 0px 25px 30px;
    margin-bottom: 0;
    height: 100%;
}

.main-footer .logo-widget .logo1 {
    position: relative;
    margin-bottom: 20px;
    text-align: center;
    background: #fff;
    border-radius: 5px;
}

.main-footer .logo-widget img {
    margin: 10px 0 10px 0;
}

.main-footer .list-style-one {
    position: relative;
}

    .main-footer .list-style-one li {
        position: relative;
        color: #fff;
        font-size: 15px;
        padding-left: 30px;
        font-weight: 500;
        margin-bottom: 10px;
        line-height: 1.4em;
        transition: all .3s ease;
    }


        .main-footer .list-style-one li .icon {
            position: absolute;
            left: 0;
            top: 0px;
            font-size: 20px;
            color: #fff;
        }

.main-footer .footer-widget ul li a {
    position: relative;
    padding-bottom: 5px;
    margin-bottom: 5px;
    transition: all .4s ease;
    font-size: 17px;
    color: #fff;
}

.footer-bottom.socialbottom {
    border: 0;
    background: transparent;
    padding: 0;
    display: flex;
    flex-direction: column;
    position: relative;
}

.main-footer .footer-bottom .footer-nav {
    position: relative;
    text-align: left;
}

.main-footer .footer-nav h2 {
    display: block;
    text-align: left;
}

.main-footer .footer-widget h2 {
    position: relative;
    font-size: 22px;
    letter-spacing: 1px;
    font-weight: 600;
    color: #fff;
    line-height: 1.2em;
    margin-bottom: 30px;
    padding-bottom: 18px;
    text-transform: capitalize;
}

.main-footer .footer-bottom .footer-nav li {
    position: relative;
    margin-left: 2px;
    display: inline-block;
}

.main-footer .footer-widget h2:after {
    position: absolute;
    content: '';
    left: 0;
    bottom: 0;
    height: 3px;
    width: 100%;
    background-color: #d81b1b;
}

.main-footer .footer-nav .fb {
    background-color: #3c5a9a;
}

.main-footer .footer-bottom .footer-nav li a {
    position: relative;
    color: #fff;
    font-size: 16px;
    transition: all .5s ease;
    width: 35px;
    height: 35px;
    line-height: 35px;
    display: block;
    text-align: center;
    border-radius: 100px;
}

.main-footer .footer-nav .tw {
    background-color: #1da1f2;
}

.main-footer .footer-nav .li {
    background: #007ab9;
}

.main-footer .footer-nav .in {
    background-image: -webkit-linear-gradient(90deg, #db8c40 0, #c32869 48%, #7324c1 100%);
}

.main-footer .footer-nav .yo {
    background: #ce101c;
}

.city-heading {
    position: relative;
    font-size: 16px;
    letter-spacing: 1px;
    font-weight: 600;
    color: #fff;
    line-height: 1.2em;
    padding-bottom: 15px;
    text-transform: uppercase;
}

ul.city-branches {
    margin: 0 0 0px;
    text-align: center;
}

    ul.city-branches li {
        text-align: center;
        display: inline-block;
        margin: 10px 20px;
    }

        ul.city-branches li a {
            color: #fff;
        }

        ul.city-branches li img {
            width: 80px !important;
            margin-bottom: 6px;
            height: 80px;
            border: 2px solid #ec3e45;
            background: #fff;
            display: block;
            border-radius: 50%;
            filter: grayscale(100%);
        }

.main-footer .footer-bottom-lower {
    position: relative;
    padding: 18px 0;
    background-color: #d81b1b;
}

    .main-footer .footer-bottom-lower .copyright {
        position: relative;
        color: #fff;
        margin-top: 2px;
        font-size: 17px;
        border: none;
        padding: 0px 0;
    }

        .main-footer .footer-bottom-lower .copyright a {
            color: #fff;
        }


@media screen and (max-width:767px) {
    span.content__popup {
        width: 220px;
    }

    .read_btn{
        padding: 5px 18px;
    }
    .topheadingpopup {
        font-size: 14px;
        line-height: 18px;
    }

    .img-and-content .text-popup {
        font-size: 13px;
        margin-right: 0px;
        line-height: 18px;
    }

    .see_morew__btn {
        font-size: 11px;
    }

   

    .about-img img {
        width: 100% !important;
        float: none;
        margin-left: 0;
    }

    .whatsapp-flex {
        left: 10px;
        bottom: 80px;
    }

    .main-header .upper-logo {
        padding-left: 0;
    }

        .main-header .upper-logo img {
            height: 60px;
        }

    .upper-logo-heading h1 {
        font-size: 15px;
    }

    .mobile-none {
        display: none;
    }

    .upper-logo-heading p {
        font-size: 10px;
    }

    .main-header .upper-contact {
        justify-content: center;
        column-gap: 10px;
        margin-top: 4px;
        flex-direction: row;
    }

        .main-header .upper-contact a {
            font-size: 13px;
        }

    .mobile-padding-left {
        margin-left: 24px;
        display: block;
    }

    .upper-social-icon {
        display: none;
    }

    .mobile-padding-none {
        padding-left: 0 !important;
    }

    .infra-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: auto;
    }

        .infra-grid > div {
            grid-area: auto !important;
        }

    .sfText {
        font-size: 13px;
    }

    .span5 {
        width: 100%;
        float: none;
        margin-left: 15px;
    }

    .ft-social {
        justify-content: start;
        margin-top: 0;
    }

    .soc-link {
        margin-left: 0;
        margin-right: 5px;
    }

    .ft-last-box {
        text-align: start;
        padding-top: 10px;
    }

    .span12 {
        display: none;
    }

    .site-footer {
        padding: 0px 0px 40px 0px;
        margin-bottom: 50px;
    }

    .ft-last-box p {
        font-size: 14px;
    }

    .Our-pointer-events {
        margin-right: 0;
        margin-top: 0;
    }

    .photoGalleryInfo h2 {
        font-size: 50px;
        font-weight: 900;
        text-align: center;
    }

    .calendarBlock {
        margin-right: 0;
    }

    .image-column .kids-title {
        display: none;
    }

    .carousal-slider .owl-nav .owl-prev{
        padding: 4px 8px !important;
        top: 30%;
    }

    .carousal-slider .owl-nav .owl-next{
        padding: 4px 8px !important;
        top: 30%;
    }

    .photoGallerySection .topper-carousal .owl-nav button.owl-prev{
        padding: 4px 8px !important;
    }

    .photoGallerySection .topper-carousal .owl-nav button.owl-next{
        padding: 4px 8px !important;
    }
    .header-top .inner-container{
        padding-left:0;
    }
    .image-column .inner-column{
        padding-right:0;
    }
    .main-footer .container-fuild{
        padding-right:0 !important;
    }
    

    .footer-widget{
        padding: 0 30px;
        margin-bottom:20px;
    }
    .main-footer .footer-bottom-lower .copyright{
        font-size:13px;
    }
    .main-footer{
        margin-bottom: 63px;
        padding-top: 10px;
    }

    .gallerySwiperBlock img{
        height:180px;
    }

    .welcome_main .content-column{
        margin-top:-30px;
    }
}


