/********** Template CSS **********/
:root {
    --primary: #FE5D37;
    --light: #FFF5F3;
    --dark: #103741;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 17px;
    bottom: 5px;
    z-index: 9999;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50px;
}


/*** Heading ***/
h1,
h2,
h3,
h4,
.h1,
.h2,
.h3,
.h4,
.display-1,
.display-2,
.display-3,
.display-4,
.display-5,
.display-6 {
    font-family: 'Lobster Two', cursive;
    font-weight: 700;
}

h5,
h6,
.h5,
.h6 {
    font-weight: 600;
}


.font-secondary {
    font-family: 'Lobster Two', cursive;
}

.navbar img {
    width: 70%;
}

.navbar-light .navbar-brand {
    color: rgba(0, 0, 0, 0.9);
    width: 20%;
}

.top-header {
    background-color: #231658;
    height: 35px;
    align-items: center;
}


.mobile {
    padding-top: 5px;
    padding-right: 40px;
}

.mobile a {
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
}

.icon a i {
    color: #fff;
    font-size: 20px;
}

.icon {
    padding: 6px 0 0 12px;
}

.mobiles {
    padding-top: 5px;
    padding-right: 20px;
}

.mobiles a {
    color: #231658;
    text-decoration: none;
    font-size: 15px;
    border-radius: 25px;
    padding: 0 13px;
    font-weight: 800;
    background-color: #fff;
}

.mobile a {
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
}

.right {
    display: flex;
    justify-content: end;
}

.left {
    display: flex;
    justify-content: start;
}


/*** Navbar ***/
.navbar .navbar-nav .nav-link {
    padding: 30px 15px;
    color: #231658;
    font-weight: 500;
    outline: none;
}

.dropdown-item:hover,
.dropdown-item:focus {
    color: #ffffff;
    background-color: #302173;
}


.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: #e89699;
}

.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

.btn-primary {
    color: #000;
    background-color: #231658;
    border-color: #231658;
}

.btn-primary:hover {
    color: #231658;
    background-color: #e89699;
    border-color: #e89699;
}


.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 5px;
    transition: .5s;
}

.navbar .dropdown-toggle[aria-expanded=true]::after {
    transform: rotate(-180deg);
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        margin-top: 15px;
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        top: calc(100% - 15px);
        margin-top: 0;
        opacity: 0;
        visibility: hidden;
        transition: .5s;

    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.header-carousel::before,
.header-carousel::after,
.page-header::before,
.page-header::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 10px;
    top: 0;
    left: 0;
    background: url(../img/bg-header-top.png) center center repeat-x;
    z-index: 1;
}


@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 180px;
    }

    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .header-carousel .owl-carousel-item p {
        font-size: 14px !important;
        font-weight: 600 !important;
    }

    .header-carousel .owl-carousel-item h1 {
        font-size: 25px;
        font-weight: 600;
        margin: 0 !important;
    }

    .h-100 {
        height: 100% !important;
        padding-top: 36px !important;
    }
}

.header-carousel .owl-nav {
    position: absolute;
    top: 50%;
    right: 8%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    margin: 7px 0;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: transparent;
    border: 1px solid #FFFFFF;
    border-radius: 45px;
    font-size: 22px;
    transition: .5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: #e89699;
    border-color: #e89699;
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .2), rgba(0, 0, 0, .2)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, .5);
}


/*** Facility ***/


.containers-xxl {
    background-image: url(../img/banner/design.png);
    margin-top: -65px;
    position: absolute;
    background-size: cover;
    z-index: 999;
    background-repeat: no-repeat;
    width: 100%;
}

.benefits {
    background-image: url(../img/design-service.png);
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 320px;
    margin-top: 45px;
}

.text-icon {
    text-align: center;
    padding-top: 45px;
}

.text-icon p {
    padding: 0 55px;
    font-size: 17px;
    padding-bottom: 40px;
    margin: 0;
}

.text-icon a {
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    background-color: #231658;
    padding: 4px 15px 4px 15px;
    border-radius: 5px;
}

.text-icon a:hover {
    color: #231658;
    background-color: #e89699;
}


/*** About ***/
.about-img img {
    transition: .5s;
}

.containerss-xxl.py-5 {
    margin-top: 32%;
}

h1.mb-4 {
    color: #231658;
}

.about-img img:hover {
    background: #e89699 !important;
}


/*** Classes ***/
.classes-item {
    transition: .5s;
}

.text-sty img {
    width: 20%;
    padding-top: 15px;
}

.heding-content {
    margin-top: 70px;
}

.text-center p {
    padding: 0 150px;
}

p.fs-5.fw-medium.text-white.mb-4.pb-2.text-center {
    padding: 0;
}

.text-sty h6 {
    color: #231658;
    font-size: 16px;
    padding-top: 11px;
    font-weight: 800;
}

.text-sty p {
    padding: 5px 25px 22px 25px;
}

.classes-item:hover {
    margin-top: -10px;
}

.icon-and-text {
    text-align: center;
}


.image-gallery {
    overflow: hidden;
    border-radius: 10px;
    border: 10px solid #e8979a;
}

.image-gallery img {
    width: 100%;
    height: auto;
    transition: transform 0.4s ease;
}

.image-gallery:hover img {
    transform: scale(1.2);
    cursor: pointer;
}


/*** Testimonial ***/
.testimonial-carousel {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

@media (min-width: 576px) {
    .testimonial-carousel {
        padding-left: 4rem;
        padding-right: 4rem;
    }
}

.testimonial-carousel .testimonial-item .border {
    border: 1px dashed rgba(0, 185, 142, .3) !important;
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 100%;
    height: 45px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    z-index: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: #231658;
    border-radius: 45px;
    font-size: 20px;
    transition: .5s;
}

#e89699

/*** Footer ***/
.footer .btn.btn-social {
    margin-right: 5px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 45px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    border-color: #231658;
    background: #231658;
}

.btn-outline-light:hover {
    color: #e89699 !important;
    background-color: #FFF5F3;
    border-color: #FFF5F3;
}


.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #000 !important;
    font-size: 16px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: #231658 !important;
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .form-control {
    border-color: rgba(255, 255, 255, 0.5);
}

.btns-primary:hover {
    color: #e89699;
    background-color: #231658;
    border-color: #e89699;
}

.btns-primary {
    color: #e89699;
    background-color: #231658;
    border-color: #e89699;
}

.btn-outline-light {
    color: #FFF5F3;
    border-color: #231658;
}

.make img {
    width: 25%;
}


.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: #FFFFFF;
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .copyright a:hover,
.footer .footer-menu a:hover {
    color: var(--primary) !important;
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

.icon-and-text.shadow:hover {
    cursor: pointer;
    transform: translateY(-10px);
    transition: 1.01s;
}

a.btn.btn-lg.btn-primary.btn-lg-square.back-to-top {
    z-index: 9999;
}
.d-flex a.btn.btn-outline-light.btn-social {
    margin-right: 10px;
}

@media only screen and (max-width: 600px) {

    .benefits {
        width: 100%;
        height: 300px;
    }

     .sticky-social {
        position: fixed;
        top: 380px !important;
        right: 0;
        padding: 0px;
        margin: 0px;
        z-index: 9999;
    }

    .owl-prev {
    position: relative;
    left: -300px;
    top: 40px;
}

    .make img {
    width: 45%;
}

    .text-icon {
        text-align: center;
        padding-top: 45px;
    }

    .text-icon p {
        padding: 0 25px;
        font-size: 17px;
        padding-bottom: 20px;
        margin: 0;
    }

    .containerss-xxl.py-5 {
        margin-top: 335%;
    }


    h1.mb-4 {
        color: #231658;
        text-align: center;
        font-size: 30px;
    }

    .about-img img {
        transition: .5s;
        width: 100%;
    }

    .container-xxl.pt-5 {
        padding-top: 0px !important;
    }

    .col-lg-3.mb-5.wow.fadeIn.me-5 {
        margin-right: 0 !important;
    }

    .text-center p {
        padding: 0 0;
    }

    .testimonial-item.bg-light.rounded.p-5 {
        padding: 10px !important;
    }

    .testimonial-item p.fs-8 {
        font-size: 14px;
    }

    .testimonial-carousel .owl-nav {
        position: absolute;
        width: 100%;
        height: 45px;
        top: 50%;
        left: 0;
        transform: translateY(-50%);
        display: flex;
        justify-content: space-between;
        z-index: 1;
    }

    .testimonial-carousel .owl-nav .owl-prev {
        left: -20px;
        top: 0;
        width: 40px;
        font-size: 20px;
        height: 40px;
    }

    .testimonial-carousel .owl-nav .owl-next {
        right: -20px;
        top: 0;
        width: 40px;
        font-size: 20px;
        height: 40px;
    }

    img.img-fluid.flex-shrink-0.rounded-circle {
        width: 40px !important;
        height: 40px !important;
    }

    .ps-3 h3.mb-1 {
        font-size: 17px;
    }

    .h-100.d-flex.flex-column.justify-content-center.p-5 {
        padding: 8px !important;
    }

    .header-carousel .owl-nav .owl-prev,
    .header-carousel .owl-nav .owl-next {
        margin: 7px 0;
        width: 25px;
        height: 25px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #FFFFFF;
        background: transparent;
        border: 1px solid #FFFFFF;
        border-radius: 45px;
        font-size: 15px;
        transition: .5s;
    }

    .header-carousel .owl-nav {
        position: absolute;
        top: 50%;
        right: 5%;
        transform: translateY(-50%);
        display: flex;
        flex-direction: column;
    }

    .containers-xxl {
        margin-top: -10px;
    }


    h4.display-2.text-white.animated.slideInDown.mb-4 {
        font-size: 25px;
        margin: 0 !important;
    }

    .navbar-light .navbar-brand {
        color: rgba(0, 0, 0, 0.9);
        width: 60%;
    }

    .top-header {
        background-color: #231658;
        height: 35px;
        align-items: center;
        display: none;
    }

    .admission-img img {
        width: 100%;
    }

    .banner-about {
        background-size: cover;
        height: 22vh !important;
        display: flex;
        width: 100%;
        background-repeat: no-repeat;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .headings h1.mb-4 {
        color: #fff;
        font-size: 26px;
    }

    .side-img {
        margin-top: 30px;
    }

    .banner-abouts {
        background-image: url(../img/banner/wmremove-transformed.jpeg);
        background-size: cover;
        height: 22vh !important;
        display: flex;
        width: 100%;
        background-repeat: no-repeat;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .banners-abouts {
        background-image: url(../img/banner/background8.webp);
        background-size: cover;
        height: 22vh !important;
        display: flex;
        width: 100%;
        background-repeat: no-repeat;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .admission-img img {
        width: 100% !important;
    }

    .bannerr-abouts {
        background-image: url(../img/banner/sports.jpg);
        background-size: cover;
        height: 22vh !important;
        display: flex;
        width: 100%;
        background-repeat: no-repeat;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

   


}


.sticky-social {
    position: fixed;
    top: 320px;
    right: 0;
    padding: 0px;
    margin: 0px;
    z-index: 9999;
}

.box-sha.shadow.py-3 {
    height: 185px;
}

.social {
    list-style: none;
}

.social li {
    padding: 10px 15px;
    font-size: 25px;
}

li.fb {
    background-color: #231658;
}

.social li a {
    color: #fff;
}

.whats {
    background-color: #18e43a;
}

.banner-about {
    background-image: url(../img/banner/background6.jpg);
    background-size: cover;
    height: 80vh;
    display: flex;
    width: 100%;
    background-repeat: no-repeat;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.headings h1.mb-4 {
    color: #fff;
}

.side-img {
    margin-top: 90px;
}

.banner-abouts {
    background-image: url(../img/banner/wmremove-transformed.jpeg);
    background-size: cover;
    height: 80vh;
    display: flex;
    width: 100%;
    background-repeat: no-repeat;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.banners-abouts {
    background-image: url(../img/banner/background8.webp);
    background-size: cover;
    height: 60vh;
    display: flex;
    width: 100%;
    background-repeat: no-repeat;
    align-items: center;
    justify-content: center;
    text-align: center;
}


.form-label {
    margin-bottom: .5rem;
    color: #231658;
}


.form-control {
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #231658;
    background-color: #ffffff9c;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    appearance: none;
    border-radius: 10px;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.admission-img img {
    width: 126%;
}


.banneer-abouts {
    background-image: url(../img/banner/advantege.jpg);
    background-size: cover;
    height: 80vh;
    display: flex;
    width: 100%;
    background-repeat: no-repeat;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.advantages img {
    width: 70%;
}

.advantages {
    text-align: center;
}

.bannerr-abouts {
    background-image: url(../img/banner/sports.jpg);
    background-size: cover;
    height: 80vh;
    display: flex;
    width: 100%;
    background-repeat: no-repeat;
    align-items: center;
    justify-content: center;
    text-align: center;
}

iframe {
    height: 420px;
}