﻿* {
    font-family: 'Sora';
}

:root {
    --primary: #700d0d;
    --light: #FFF5F3;
    --dark: #103741;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

p {
    font-family: 'Sora';
    color: #252525;
}
/*** 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: 29px;
    height: 29px;
}

.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: 'Sora';
    font-weight: 700;
}

h5,
h6,
.h5,
.h6 {
    font-weight: 600;
}

.font-secondary {
    font-family: 'Sora';
}


/*** Navbar ***/
.navbar .navbar-nav {
    gap: 5px;
}

    .navbar .navbar-nav .nav-link {
        padding: 3px 5px;
        color: #700d0d;
        font-weight: 500;
        outline: none;
        transition: 1s;
        font-family: 'Sora';
        font-size: 15px;
        text-transform:capitalize;
    }

        .navbar .navbar-nav .nav-link i {
            color: white;
            font-size: 13px;
            width: 20px;
            height: 20px;
            display: flex;
            justify-content: center;
            align-items: center;
            float: left;
            margin-right: 3px;
            font-weight: normal !important;
        }

        .navbar .navbar-nav .nav-link:hover,
        .navbar .navbar-nav .nav-link.active {
            border-bottom: unset;
        }

.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

.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: 7px;
    top: 0;
    left: 0;
    background: url(../img/bg-header-top.png) center center repeat-x;
    z-index: 1;
}

.header-carousel::after,
.page-header::after {
    height: 19px;
    top: auto;
    bottom: 0;
    background: url(../img/bg-header-bottom.png) center center repeat-x;
}

@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 500px;
    }

        .header-carousel .owl-carousel-item img {
            position: absolute;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .header-carousel .owl-carousel-item p {
            font-size: 16px !important;
            font-weight: 400 !important;
        }

        .header-carousel .owl-carousel-item h1 {
            font-size: 30px;
            font-weight: 600;
        }
}

.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: rgb(112, 13, 13);
        }

.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 ***/
.facility-item .facility-icon {
    position: relative;
    margin: 0 auto;
    width: 100px;
    height: 100px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .facility-item .facility-icon::before {
        position: absolute;
        content: "";
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background: rgba(255, 255, 255, .9);
        transition: .5s;
        z-index: 1;
    }

    .facility-item .facility-icon span {
        position: absolute;
        content: "";
        width: 15px;
        height: 30px;
        top: 0;
        left: 0;
        border-radius: 50%;
    }

        .facility-item .facility-icon span:last-child {
            left: auto;
            right: 0;
        }

    .facility-item .facility-icon i {
        position: relative;
        z-index: 2;
    }

.facility-item .facility-text {
    position: relative;
    min-height: 250px;
    padding: 30px;
    border-radius: 100%;
    display: flex;
    text-align: center;
    justify-content: center;
    flex-direction: column;
}

    .facility-item .facility-text::before {
        position: absolute;
        content: "";
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background: rgba(255, 255, 255, .9);
        transition: .5s;
        z-index: 1;
    }

    .facility-item .facility-text * {
        position: relative;
        z-index: 2;
    }

.facility-item:hover .facility-icon::before,
.facility-item:hover .facility-text::before {
    background: transparent;
}

.facility-item * {
    transition: .5s;
}

.facility-item:hover * {
    color: #FFFFFF !important;
}


/*** About ***/
.about-img img {
    transition: .5s;
}

    .about-img img:hover {
        background: var(--primary) !important;
    }


/*** Classes ***/
.classes-item {
    transition: .5s;
}

    .classes-item:hover {
        margin-top: -10px;
    }


/*** Team ***/
.team-item .team-text {
    position: absolute;
    width: 250px;
    height: 250px;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: #FFFFFF;
    border: 17px solid var(--light);
    border-radius: 250px;
    transition: .5s;
}

.team-item:hover .team-text {
    border-color: var(--primary);
}


/*** Testimonial ***/
.testimonial-carousel {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

@media (min-width: 576px) {
    .testimonial-carousel {
        padding-left: 4rem;
        padding-right: 4rem;
    }
}

.testimonial-item {
    border: 2px solid #700d0d;
}

.testimonial-carousel .testimonial-item .border {
    border: 1px dashed rgba(226, 4, 19, 0.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: var(--primary);
        border-radius: 45px;
        font-size: 20px;
        transition: .5s;
    }

        .testimonial-carousel .owl-nav .owl-prev:hover,
        .testimonial-carousel .owl-nav .owl-next:hover {
            background: var(--dark);
        }


/*** 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: var(--primary);
        background: var(--primary);
    }

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    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: #fff;
        letter-spacing: 1px;
        box-shadow: none;
    }

.footer .form-control {
    border-color: rgba(255, 255, 255, 0.5);
}

.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;
    }

.modal .btn-close {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 18px;
    background: #343f64;
    opacity: 1;
    color: #fff;
    text-shadow: none;
    display: inline-block;
    padding: 0 4px 12px 12px;
    border-radius: 0 0 0 42px;
    cursor: pointer;
    z-index: 22;
}

    .modal .btn-close i {
        font-size: 12px;
        position: absolute;
        right: 7px;
    }

.homepagecard {
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transform-style: preserve-3d;
    /* important for tilt */
    transition: box-shadow 0.3s ease;
    border: 3px solid #700d0db6;
    position: relative;
    /* background: url("../img/delhipolice.webp"); */
    background: #ffffff82;
}

    .homepagecard:hover {
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    }

    .homepagecard .pin {
        position: absolute;
        right: 5px;
        top: 5px;
        max-width: 30px;
    }

/* Modern Button */
/* From Uiverse.io by Voxybuns */
button {
    /* Variables */
    --button_radius: 0.75em;
    --button_color: #e8e8e8;
    --button_outline_color: #700d0d;
    font-size: 17px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    border-radius: var(--button_radius);
    background: var(--button_outline_color);
}

.button_top {
    display: block;
    box-sizing: border-box;
    border: 2px solid var(--button_outline_color);
    border-radius: var(--button_radius);
    padding: 0.75em 1.5em;
    background: var(--button_color);
    color: var(--button_outline_color);
    transform: translateY(-0.2em);
    transition: transform 0.1s ease;
}

button:hover .button_top {
    /* Pull the button upwards when hovered */
    transform: translateY(-0.33em);
}

button:active .button_top {
    /* Push the button downwards when pressed */
    transform: translateY(0);
}

/* Notice  */
.notice-circular .card {
    border: none;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-radius: 30px;
    height: 100%;
    position: relative;
}

    .notice-circular .card h3 {
        color: #fff;
        font-size: 28px;
        padding: 10px 30px;
        background: #700d0d;
        border-radius: 30px 30px 0 0;
    }

    .notice-circular .card .notices {
        padding: 21px 34px;
        display: flex;
        flex-direction: column;
        gap: 17px;
    }

.vertical-marquee {
    height: 300px;
    overflow: hidden;
    position: relative;
}

.vertical-marquee-content {
    position: absolute;
    width: 100%;
    animation: scrollUp 10s linear infinite;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.notice-circular .card .innercrd {
    padding: 12px 18px;
    border: 1px solid #D8D8D8;
    background: rgb(255 112 112 / 8%);
    border-radius: 14px;
}

    .notice-circular .card .innercrd p,
    .slogan {
        font-size: 16px !important;
        line-height: 25px;
        margin: 0;
        color: #700d0d;
        font-family: 'Sora';
        font-weight: 400;
    }

.socialsidelinks {
    display: flex;
    z-index: 999;
    gap: 5px;
    list-style: none !important;
    position: relative !important;
    margin-top: 10px;
    padding: 0;
}

.sociallinksfooter li a i {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    padding: 18px;
    border: 1px solid #fff;
    background: transparent;
}

.tophdr {
    padding-top: 10px;
    padding-bottom: 10px;
    background-color: #185f40;
}

    .tophdr .right {
        display: flex;
        gap: 10px;
        justify-content: end;
    }

        .tophdr .right a {
            background-color: #ff3b3b;
            color: white;
            border: none;
            padding: 5px 10px;
            font-size: 14px;
            border-radius: 2px;
            cursor: pointer;
            animation: blink 1s infinite;
        }


@media (min-width: 992px) {

    /* show dropdown on hover */
    .navbar .dropdown:hover .dropdown-menu {
        display: block;
    }

    /* outline caret arrow (down) */
    .navbar .dropdown .arrow {
        display: inline-block;
        width: 8px;
        height: 8px;
        border-right: 2px solid currentColor;
        border-bottom: 2px solid currentColor;
        transform: rotate(45deg); /* makes it look like ˅ */
        transition: transform 0.2s ease;
        margin-left: 4px;
        margin-top: 2px;
    }

    /* arrow flips up (caret ^) */
    .navbar .dropdown:hover .arrow {
        transform: rotate(-135deg); /* looks like ^ */
    }
}

.auto-container {
    position: static;
    width: 90%;
    padding: 0px 15px;
    margin: 0 auto;
}

.about-one_image-column {
    position: relative;
    margin-bottom: 30px;
}

.about-two_list {
    position: relative;
    list-style: none;
    padding: 0;
    margin: 0;
}

    .about-two_list li i {
        font-weight: 800;
        font-style: normal;
        color: #185f40;
        font-size: 14px;
    }


.btn-style-two {
    position: relative;
    font-weight: 700;
    overflow: hidden;
    text-align: center;
    border-radius: 3px;
    padding: 12px 18px;
    display: inline-block;
    letter-spacing: 1px;
    color: #fff;
    font-size: 14px;
    text-transform: uppercase;
    background-color: #185f40;
    transition: .7s ease all;
    font-family: Sora;
}

    .btn-style-two:hover {
        background: #083679;
        color: #fff;
    }

.service-one {
    position: relative;
    z-index: 10;
    margin-top: -100px;
    padding-top: 0px;
    padding-bottom: 50px;
}

.service-block_one {
    position: relative;
}

.service-block_one-inner {
    position: relative;
    padding: 0;
    overflow: hidden;
    background: #fff;
    margin: 15px;
    border: 3px dotted #cb3638;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    transition: transform 0.3s ease;
    border-radius: 15px;
    min-height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
    .service-block_one-inner img{
        max-width:60px;
    }

    .service-block_one-inner a {
        font-size: 20px;
        font-weight: 400;
        color: #000000;
    }

    .service-block_one-inner:hover {
        transform: scale(1.05);
    }

.service-block_one-text {
    position: relative;
    line-height: 23px;
    font-size: 15px;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.service-block_one-heading {
    font-weight: 700;
}

    .service-block_one-heading a {
        position: relative;
        color: var(--color-two);
        -webkit-transition: all 500ms ease;
        -moz-transition: all 500ms ease;
        -ms-transition: all 500ms ease;
        -o-transition: all 500ms ease;
        transition: all 500ms ease;
        font-size:20px;
    }

.img-container img {
    width: 55px;
}

.discoverbtn {
    border-radius: 3px;
    position: absolute;
    top: 80%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    padding: 5px 12px;
    background-color: #185f40;
    color: white;
    display: inline-block;
    text-align: center;
    font-size: 14px;
    cursor: pointer;
    font-weight: normal;
    font-family: 'Sora';
    text-transform: uppercase;
    transition: .7s ease all;
}

    .discoverbtn:hover {
        background: #083679;
    }

.dppsname {
    font-weight: 600;
    color: #185f40;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sec-title_heading {
    font-weight: 700;
    color: #101a4d;
    margin-top: 2px;
}

.inner-page-banner {
    position: relative;
}

    .inner-page-banner img {
        width: 100%;
        min-height: 150px;
    }

.page-name {
    position: absolute;
    z-index: 1000;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    background: #000000a6;
    padding: 10px 30px;
    /* fade left/right edges */
    -webkit-mask-image: linear-gradient(to right, transparent, black 20%, black 80%, transparent);
    mask-image: linear-gradient(to right, transparent, black 20%, black 80%, transparent);
    text-align: center;
}

.mainhead {
    font-weight: bold;
    line-height: 1;
    font-size: 30px;
    margin-top: 0;
    border-left: 4px solid #cb6536;
    padding: 2px 10px;
    display: inline-block;
    margin-bottom: 30px;
}

.affi-no {
    padding: 20px 10px;
    background: #115f43;
    color: #ffffff;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
    border: 6px double white;
}

.affimg {
    margin: 0 auto;
    display: block;
    margin-bottom: 20px;
}

.border1 {
    padding: 5px;
    box-shadow: rgb(38 57 77 / 42%) 0px 20px 30px -10px;
    transition: 0.5s;
    margin-bottom: 15px;
    border: 1px solid #d5d5d5;
}

.subhead {
    font-size: 22px;
    color: #075f45;
    margin-bottom: 15px;
    font-weight: 600;
    line-height: 28px;
    margin-top: 10PX;
}

.fourblk {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 25px;
}

    .fourblk .blk {
        padding: 15px 10px;
        height: 200px;
        display: flex;
        justify-content: center;
        align-items: center;
        box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
        width: 260px;
        text-align: center;
        border-radius: 10px;
    }

.bdr1 {
    border: 4px double #008cfb;
}

.bdr2 {
    border: 4px double #258903;
}

.bdr3 {
    border: 4px double #f15d45;
}

.bdr4 {
    border: 4px double #ddda0a;
}

.quote {
    background: #fff7de;
    padding: 25px;
    width: 60%;
    border: 15px double white;
}

    .quote img {
        width: 35px;
        display: block;
    }


.message {
    float: right;
    position: relative;
    width: 30%;
    margin-left: 50px;
    margin-bottom: 14px;
}

    .message .messageimg {
        height: 400px;
        object-fit: cover;
        object-position: top;
        box-shadow: 0 0 25px rgb(0 0 0 / 13%);
        border-radius: 20px;
        position: relative;
        z-index: 22;
        max-height: 700px;
    }

.back__shape__1 {
    position: absolute;
    left: -39px;
    top: 60px;
    -webkit-animation: slide-top 5000ms linear infinite alternate;
    animation: slide-top 5000ms linear infinite alternate;
    z-index: 1;
}

.copyright {
    padding: 10px 0;
    border-bottom: 1px solid #a52a2a;
}

    .copyright p {
        font-size: 13px;
    }

        .copyright p a {
            color: #a52a2a;
            font-weight: bold;
        }


.modal-content {
    width: auto !important;
}

.service-detail_list {
    margin-top: 30px;
    list-style: none;
    padding-left: 0;
}

    .service-detail_list li {
        position: relative;
        font-weight: 600;
        color: rgb(20 27 49);
        font-size: 17px;
        padding-left: 30px;
        margin-bottom: 15px;
    }

        .service-detail_list li span {
            position: absolute;
            left: 0px;
            top: 2px;
            font-weight: 800;
            color: #185f40;
            display: inline-block;
        }

.testimonial-block_one-outer {
    border: 1px solid #cb3638;
    position: relative;
    padding: 10px;
}

.cardinnercntnt {
    padding: 20px;
}

    .cardinnercntnt .right-box {
        width: 100%;
    }

    .cardinnercntnt .post-item {
        display: flex;
        align-items: center;
        margin-bottom: 15px;
        width: 100%;
        border-bottom: 1px solid #d5d5d5;
        padding-bottom: 5px;
    }

        .cardinnercntnt .post-item .event-meta {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
        }

    .cardinnercntnt .albumttl {
        font-family: 'Sora';
        color: #cb3638;
        font-size: 14px;
    }

    .cardinnercntnt .date {
        color: #0d6efd;
        font-size: 13px;
        font-family: 'Sora';
    }

    .cardinnercntnt .viewmoreinnergallery {
        color: #0d6efd;
        font-size: 14px;
        font-family: 'Sora';
        border-bottom: 1px solid;
    }

    .cardinnercntnt .gllryimg {
        height: 50px;
        width: 60px;
    }


.calltoactbtn {
    color: #cb3638;
    padding: 10px 20px;
    border: 2px solid;
    background: #f5f5dc63;
    font-size: 17px;
    border-radius: 3px;
    cursor:pointer;
}