﻿@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..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-bar {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 9990;
}

.top-header {
    width: 100%;
    position: unset;
    top: 0;
    background-color: #fff;
    display: flex;
    padding: 15px 0;
}

    .top-header #navbarSupportedContent {
        display: flex;
        justify-content: flex-end;
        align-items: center;
    }

.monogram-home {
    font-size: 16px;
    margin-right: -18px;
    color: #135a12;
}

    .monogram-home:hover {
        color: #135a12;
    }

.menu-sub-header-menu-container {
    display: flex;
    justify-content: center;
}

.top-header ul#menu-sub-header-menu {
    width: auto;
    display: inline-block;
    text-align: right;
    margin-bottom: 0;
}

    .top-header ul#menu-sub-header-menu li.menu-item {
        display: inline-block;
        padding: 0 10px;
    }

        .top-header ul#menu-sub-header-menu li.menu-item a {
            font-size: 17px;
            padding: 0;
            line-height: 20px;
            color: #135a12;
            font-weight: 500;
        }

.link-has-menu {
    position: relative;
}


.ctm-branch-mtab ul.sub-menu {
    columns: 2;
    column-gap: 50px;
    width: 350px;
    background: #fff;
    padding-left: 15px;
    padding-right: 30px;
    padding-top: 8px;
    padding-bottom: 20px;
    display: none;
}

.header {
    background: #135a12;
    transition: all 0.5s;
    z-index: 997;
    padding: 9px 0;
    height: 68px;
}

a.header-logo {
    position: absolute;
    top: 0;
    left: 55px;
    background-color: #fff;
    border-radius: 0 0 15px 15px;
    padding: 0px 4px;
    width: 160px;
    height: 157px;
    box-shadow: 0px 0px 26px 0px rgb(0 0 0 / 25%);
    flex-wrap: wrap;
    text-align: center;
    justify-content: center;
    z-index: 999999;
}

.header-logo img {
    height: 145px;
}

.header-details-content {
    position: relative;
}

a.header-logo-mob {
    display: none !important;
}

.navbar {
    padding: 0;
}

    .navbar ul {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center;
    }

    .navbar li {
        position: relative;
        padding: 0 7px;
    }

    .navbar a, .navbar a:focus {
        display: flex;
        align-items: center;
        justify-content: start;
        padding: 0 3px;
        font-size: 15px;
        font-weight: 600;
        color: #ffffff;
        white-space: nowrap;
        transition: 0.15s;
        position: relative;
    }

    .navbar .dropdown ul {
        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;
    }

        .navbar .dropdown ul li {
            min-width: max-content;
        }

        .navbar .dropdown ul a {
            padding: 10px 9px;
            font-size: 15px;
            text-transform: none;
            font-weight: 400;
            color: #000000;
        }

    .navbar .menu > li:hover > a, .navbar .menu > li.current-menu-item > a {
        color: #fff !important;
        border-bottom: 3px solid #fffc;
    }

.header .btn-book-a-table, .header .btn-book-a-table:focus {
    font-size: 16px;
    color: #fff;
    background: #135a12;
    padding: 3px 20px;
    margin-left: 0px;
    transition: 0.3s;
    font-family: var(--font-title);
    border: 2px solid #fff;
}

.mobile-nav-show, .mobile-nav-hide {
    display: none;
}

.nav-link {
    display: block;
    text-decoration: none;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out;
}

.navbar .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.mr-2 {
    margin-left: 4px;
}


.header-mid {
    position: relative;
    background-color: #135a12;
    height: 30px;
}

.notice-board {
    display: flex !important;
}

.header-mid strong {
    color: #fff;
    position: relative;
    font-size: 16px;
    font-weight: 700;
    top: 2px;
    width: 160px;
}

.header-mid marquee {
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    margin-top: 3px;
    margin-bottom: 0px;
}
/*================= 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: #135a12;
}

.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: #135a12;
}

.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: #135a12;
        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 #135a12;
    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: #135a12;
        border-radius: 5px;
        color: #fff;
        padding: 15px;
        border: 1px solid #135a12;
    }

.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: #135a12;
        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/building.jpg);
    background-position: center center;
    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: #c20702d6;
}



    .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: #c20702;
    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 ========================*/

footer {
    padding: 50px 0 20px;
    background: url(../images/building.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 1;
}

    footer::before {
        position: absolute;
        content: "";
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        z-index: -1;
        background: rgba(154,6,11,.8);
    }

    footer .footer-img {
        height: 165px;
        border-radius: 5px;
        filter: brightness(0) invert(1);
    }

.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: #135a12 !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: 550px;
    object-fit: cover;
}

.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: #135a12;
        border-radius: 50%;
    }

        .th-menu-wrapper .th-menu-toggle:hover {
            background-color: #135a12;
            color: #fff;
        }

    .th-menu-wrapper .th-menu-area {
        width: 100%;
        max-width: 310px;
        background-color: #fff;
        border-right: 3px solid #135a12;
        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: #135a12;
            }

                .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;
}



@media screen and (max-width:767px) {
    span.content__popup {
        width: 220px;
    }

    .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;
    }

    .img-and-content img {
        width: 320px;
        height: 320px;
    }
    .about-img img {
        width: 100% !important;
        float: none;
        margin-left: 0;
    }
}
