.dm-serif-display-regular {
    font-family: "DM Serif Display", serif;
    font-weight: 400;
    font-style: normal;
}

.dm-serif-display-regular-italic {
    font-family: "DM Serif Display", serif;
    font-weight: 400;
    font-style: italic;
}

.roboto-thin {
    font-family: "Roboto", sans-serif;
    font-weight: 100;
    font-style: normal;
}

.roboto-light {
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    font-style: normal;
}

.roboto-regular {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.roboto-medium {
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-style: normal;
}

.roboto-bold {
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.roboto-black {
    font-family: "Roboto", sans-serif;
    font-weight: 900;
    font-style: normal;
}

.roboto-thin-italic {
    font-family: "Roboto", sans-serif;
    font-weight: 100;
    font-style: italic;
}

.roboto-light-italic {
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    font-style: italic;
}

.roboto-regular-italic {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-style: italic;
}

.roboto-medium-italic {
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-style: italic;
}

.roboto-bold-italic {
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-style: italic;
}

.roboto-black-italic {
    font-family: "Roboto", sans-serif;
    font-weight: 900;
    font-style: italic;
}
body {
    /*color: #6d6d6d !important;*/
    color: #2d2d2d !important;
    font-family: "Montserrat","Roboto", sans-serif;
    font-size: 1rem;
}
h6, .h6, h3, .h3, h2, .h2, h1, .h1 {
    /*font-family: "DM Serif Display" !important;*/
    font-family: "Playfair Display" !important;
    font-weight: 400 !important;
    font-style: normal;
}
h4, .h4, h5, .h5 {
    font-family: "Montserrat", Arial, sans-serif !important;
    font-weight: 400 !important;
    font-style: normal;
}
/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 99;
}

/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50%;
}

.btn.btn-primary {
    box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.btn.btn-primary:hover {
    box-shadow: inset 300px 0 0 0 var(--bs-light) !important;
    color: var(--bs-primary) !important;
}
/*** Section Title Start ***/
.section-title {
    max-width: 900px;
    text-align: center;
    margin: 0 auto;
}

.section-title .sub-style {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
}

.section-title .sub-style::before {
    content: "";
    width: 100px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-top: 8px;
    margin-left: -100px;
    border: 1px solid var(--bs-primary) !important;
}

.section-title .sub-style::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-bottom: 5px;
    margin-left: -50px;
    border: 1px solid var(--bs-primary) !important;
}

.sub-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: #dc3b73;
}

    .sub-title::before {
        content: "";
        width: 100px;
        position: absolute;
        top: 50%;
        right: 0;
        transform: translateY(-50%);
        margin-top: 8px;
        margin-right: -100px;
        border: 1px solid #dc3b73 !important;
    }

    .sub-title::after {
        content: "";
        width: 50px;
        position: absolute;
        top: 50%;
        right: 0;
        transform: translateY(-50%);
        margin-bottom: 8px;
        margin-right: -50px;
        /*border: 1px solid var(--bs-primary) !important;*/
        border: 1px solid #dc3b73 !important;
    }
/*** Carousel Hero Header Start ***/
.header-carousel {
    position: relative; 
}

.header-carousel .owl-nav .owl-prev {
    position: absolute;
    width: 45px;
    height: 45px;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    border-radius: 50%;
    background: var(--bs-primary);
    color: var(--bs-white);
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.header-carousel .owl-nav .owl-next {
    position: absolute;
    width: 45px;
    height: 45px;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    border-radius: 50%;
    background: var(--bs-primary);
    color: var(--bs-white);
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    transition: 0.5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    box-shadow: inset 150px 0 0 0 var(--bs-light) !important;
    color: var(--bs-primary) !important;
}
@media (max-width: 992px) {
    .display-3 {
        font-size: calc(1rem + 3.3vw);
    }
    
    .header-carousel .owl-nav .owl-prev,
    .header-carousel .owl-nav .owl-next {
        top: 550px;
        transition: 0.5s;
    }
}
 @media (max-width: 576px) {
        .header-carousel .owl-nav .owl-prev {
            width: 40px;
            height: 40px;
            font-size: 18px;
        }

        .header-carousel .owl-nav .owl-next {
            width: 40px;
            height: 40px;
            font-size: 18px;
        }

        .header-carousel .owl-nav .owl-prev,
        .header-carousel .owl-nav .owl-next {
            top: 370px;
            transition: 0.5s;
        }

        .header-carousel .header-carousel-item .carousel-caption .carousel-caption-content {
            width: 100% !important;
        }
    }

    .header-carousel .header-carousel-item,
    .header-carousel .header-carousel-item img {
        position: relative;
        width: 100%;
        height: 700px;
        /*margin-top: 95px;*/
        display: block;
        object-fit: cover;
        transition: 0.4s;
    }

    

    .header-carousel .header-carousel-item .carousel-caption {
        width: 65%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 40%;
        padding: 100px 0;
        display: flex;
        align-items: center;
        justify-content: center;
        /*background: rgba(0, 0, 0, .35);*/
    }

        .header-carousel .header-carousel-item .carousel-caption .carousel-caption-content {
            position: relative;
            width: 75%;
        }
@media (max-width: 992px) {
    .header-carousel .header-carousel-item .carousel-caption {
        width: 70%;
    }

        .header-carousel .header-carousel-item .carousel-caption .carousel-caption-content {
            width: 100%;
        }
    .header-carousel .header-carousel-item,
    .header-carousel .header-carousel-item img {
        margin-top: 0;
        transition: 0.5s;
    }
}

@media (min-width: 992px) {
    .header-carousel .owl-nav .owl-prev,
    .header-carousel .owl-nav .owl-next {
        margin-top: 50px;
    }
}
@media (max-width: 767px) {
    .header-carousel .header-carousel-item .carousel-caption {
        width: 100%;
        padding: 75px 0;
        left: 0%;
        align-items: flex-start;
        justify-content: flex-start;
    }

        .header-carousel .header-carousel-item .carousel-caption .carousel-caption-content {
            width: 100%;
        }

    .header-carousel .header-carousel-item,
    .header-carousel .header-carousel-item img {
        margin-top: 0;
        transition: 0.5s;
    }
}
    /*** Carousel Hero Header End ***/
    /*** Service Start ***/
    .service .service-item {
        box-shadow: 0 0 45px rgba(0, 0, 0, .2);
    }

        .service .service-item .service-img {
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

            .service .service-item .service-img img {
                transition: 0.5s;
            }

            .service .service-item .service-img::before {
                width: 100%;
                height: 0;
                position: absolute;
                content: "";
                top: 0;
                left: 0;
                border-top-right-radius: 10px;
                border-top-left-radius: 10px;
                transition: 0.5s;
                z-index: 5;
            }

            .service .service-item .service-img:hover img {
                transform: scale(1.3);
            }

        .service .service-item .service-content {
            position: relative;
            z-index: 2;
        }

            .service .service-item .service-content::before {
                width: 100%;
                height: 8px;
                position: absolute;
                content: "";
                bottom: 0;
                left: 0;
                border-bottom-left-radius: 10px;
                border-bottom-right-radius: 10px;
                /*background: rgba(21, 185, 217, .5);*/
                background: rgba(220, 59, 115, .5);
                transition: 0.5s;
                z-index: 3;
            }

            .service .service-item .service-content .service-content-inner {
                transition: 0.5s;
            }
@media (max-width: 767px) {
    .service p{ font-size: 1rem;}
}
    /*** Service End ***/

    /*** About Start ***/
    .about .about-img {
        position: relative;
        overflow: hidden;
        height: 100%;
        border-radius: 10px;
    }

        .about .about-img .about-img-inner {
            position: absolute;
            left: 0;
            bottom: 0;
            border: 10px solid;
            border-color: var(--bs-white) var(--bs-white) var(--bs-white) var(--bs-white);
            border-radius: 50%;
        }

        .about .about-img .about-experience {
            position: absolute;
            top: 125px;
            left: -120px;
            transform: rotate(-90deg);
            background: transparent;
            color: var(--bs-primary);
            font-size: 20px;
            font-weight: 600;
            letter-spacing: 4px;
        }
    /*** About End ***/
    /*** Feature Start ***/
    .feature .feature-item {
        position: relative;
        display: flex;
        border: 1px solid var(--bs-primary);
        border-radius: 10px;
        background: var(--bs-light);
        transition: 0.5s;
    }

        .feature .feature-item::before {
            width: 0;
            height: 100%;
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            border-radius: 10px;
            transition: 0.5s;
        }

        .feature .feature-item:hover::before {
            width: 100%;
            background: var(--bs-primary);
        }

        .feature .feature-item .feature-icon {
            display: inline-flex;
            border-radius: 10px;
            transition: 0.5s;
        }

        .feature .feature-item:hover .feature-icon {
            position: relative;
            z-index: 2;
        }

        .feature .feature-item:hover .feature-content {
            position: relative;
            color: var(--bs-white);
            z-index: 2;
        }

            .feature .feature-item:hover .feature-content h5 {
                color: var(--bs-white);
            }
@media (max-width: 767px) {
    .feature h5{ font-size: 1.1rem;}
    .feature p { font-size: 1rem;}
}
    /*** Feature End ***/
    /*** Appointment Start ***/
    .appointment .appointment-form {
        background: rgba(239, 162, 134, 0.1);
    }

.appointment .appointment-form .btn.btn-primary {
    box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.appointment .appointment-form .btn.btn-primary:hover {
    box-shadow: inset 600px 0 0 0 var(--bs-light) !important;
    color: var(--bs-primary) !important;
}

    /*** Footer Start ***/
    .footer {
        background-color: rgba(0, 0, 0, 0.9);
    }
        /*.footer {
    background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)), url(../img/carousel-2.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}*/
        .footer .footer-item a {
            line-height: 35px;
            color: var(--bs-body);
            transition: 0.5s;
        }

        .footer .footer-item p {
            line-height: 25px;
            width: 75%;
        }

    @media (max-width: 768px) {
        .footer .footer-item p {
            width: 100%;
        }
    }

    .footer .footer-item.cont i {
        color: #dc3b73;
    }

    .copyright {
        background: #333 !important;
    }

    #hero {
        width: 100%;
        height: 80vh;
        background: url("../img/slider.webp") center center;
        background-size: cover;
        position: relative;
        padding: 0;
    }

        #hero:before {
            content: "";
            position: absolute;
            bottom: 0;
            top: 0;
            left: 0;
            right: 0;
        }

        #hero .container {
            z-index: 2;
        }

        #hero h1 {
            margin: 0 0 10px 0;
            font-size: 60px;
            font-weight: 700;
            line-height: 65px;
            color: #000;
        }

        #hero h2 {
            color: #000;
            margin-top: 40px;
            font-size: 24px;
            font-family: roboto, Arial, sans-serif !important;
        }

        #hero .btn-get-started {
            font-family: "Poppins", sans-serif;
            font-weight: 400;
            font-size: 13px;
            letter-spacing: 2px;
            display: inline-block;
            padding: 12px 28px;
            border-radius: 4px;
            transition: ease-in-out 0.3s;
            color: #fff;
            background: #dc3b73;
            text-transform: uppercase;
        }

            #hero .btn-get-started:hover {
                background: #4ea5e0;
            }

    .box-list .box-list-icon {
        line-height: 1.5rem;
        float: left;
        margin-right: 7px;
    }

    .box-list p {
        overflow: hidden;
        margin-bottom: 8px;
    }

    @media (max-width: 992px) {
        #hero {
            height: calc(60vh - 70px);
        }

            #hero h1 {
                font-size: 42px;
                line-height: 38px;
            }

        .display-5 {
            font-size: calc(1.375rem + 1.5vw);
        }
    }

    @media (max-width: 767px) {
        #hero {
            background: url("../img/banner_mob.webp") center center;
        }

        #hero {
            height: calc(70vh - 70px);
        }

            #hero h1 {
                font-size: 30px;
                line-height: 36px;
            }

            #hero h2 {
                font-size: 18px;
                line-height: 24px;
                margin-top: 20px;
                margin-bottom: 30px;
            }

        .section-title .sub-style::before, .section-title .sub-style::after, .sub-title::before, .sub-title::after {
            border: none !important;
        }

        h4, .h4 {
            font-size: calc(1.2rem + 0.3vw);
        }
    }

    @media (max-width: 400px) {
        #hero {
            height: calc(80vh - 70px);
        }

            #hero h1 {
                font-size: 27px;
            }

        .appt.btn {
            font-size: 0.85rem;
        }

        .navbar-brand {
            margin-right: 0rem;
        }

        .display-5 {
            font-size: calc(1.275rem + 1.5vw);
        }
    }

    .what_btn {
        background-color: #00a332;
        width: 45px;
        height: 45px;
        color: #fff;
        position: fixed;
        left: 25px;
        bottom: 120px;
        cursor: pointer;
        z-index: 999;
        border-radius: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 300ms ease-in-out;
        box-shadow: 0 3px 10px rgb(0 0 0 / 16%), 0px 3px 10px rgb(0 0 0 / 16%);
    }

.call_btn {
    background-color: #fff;
    width: 45px;
    height: 45px;
    color: #fff;
    position: fixed;
    left: 25px;
    bottom: 45px;
    cursor: pointer;
    z-index: 999;
    /*border: 2px solid green;*/
    border: 2px solid #dc3b73;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 300ms ease-in-out;
    box-shadow: 0 3px 10px rgb(0 0 0 / 16%), 0px 3px 10px rgb(0 0 0 / 16%);
}
.text-justify {
    text-align: justify !important;
}
.blue-color {
    color: #dc3b73;
}
#statistic-1 {
    background-image: url(../img/statistic.webp);
    padding-top: 80px;
    padding-bottom: 40px;
}

.statistic-block {
    text-align: center;
    margin-bottom: 40px;
}

.statistic-holder .statistic-block {
    text-align: center;
    margin-bottom: 0;
}

.statistic-holder {
    margin-top: 45px;
}

.statistic-block h5 {
    font-size: 2.85rem;
    line-height: 1;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-top: 20px;
    margin-bottom: 15px;
}

.statistic-holder .statistic-block h5 {
    font-size: 2rem;
    line-height: 1;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-top: 22px;
    margin-bottom: 10px;
}

.statistic-block p {
    font-size: 1.05rem;
    font-family: "Lato", sans-serif;
    margin-bottom: 0;
}

.statistic-holder .statistic-block p {
    color: #757575;
    font-size: 0.925rem;
}
.form-control:disabled, .form-control:read-only {
    background-color: transparent;
    opacity: 1;
}
.video-preview {
    position: relative;
    text-align: center;
}

.video-block {
    width: 100px;
    height: 100px;
    position: relative;
    display: inline-block;
}

.video-btn {
    width: 65px;
    height: 65px;
    position: absolute !important;
    top: 55%;
    left: 55%;
    margin-top: -50px;
    margin-left: -50px;
    display: inline-block;
    text-align: center;
    background-color: transparent;
    color: #fff;
    line-height: 75px !important;
    border: 4px solid transparent;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
}

    .video-btn i {
        font-size: 2rem;
        line-height: px !important;
        margin-left: 8px;
        -webkit-transition: all 400ms ease-in-out;
        -moz-transition: all 400ms ease-in-out;
        -o-transition: all 400ms ease-in-out;
        -ms-transition: all 400ms ease-in-out;
        transition: all 400ms ease-in-out;
    }

    .video-btn:before {
        content: "";
        position: absolute;
        left: -5px;
        right: -5px;
        top: -5px;
        bottom: -5px;
        background: rgba(255, 255, 255, 0.2);
        opacity: 0;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        border-radius: 50%;
        -webkit-transition: all 400ms ease-in-out;
        -moz-transition: all 400ms ease-in-out;
        -o-transition: all 400ms ease-in-out;
        -ms-transition: all 400ms ease-in-out;
        transition: all 400ms ease-in-out;
    }

    .video-btn:hover i {
        -moz-transform: scale(0.9);
        -ms-transform: scale(0.9);
        -webkit-transform: scale(0.9);
        -o-transform: scale(0.9);
        transform: scale(0.9);
    }

    .video-btn:hover:before {
        opacity: 0.75;
        left: -25px;
        right: -25px;
        top: -25px;
        bottom: -25px;
    }

    .video-btn.play-icon-lime {
        background-color: #dc3b73;
        border-color: #dc3b73;
    }
.accordion-button,.accordion-button:not(.collapsed) {
    color: #1d1d1d;
    font-size: 1.5rem;
}
    .accordion-button:not(.collapsed) {
    background-color: rgba(239, 162, 134, 0.1);
    box-shadow: inset 0 -1px 0 rgb(239 162 134 / .125);
}
.embed-responsive-item {
    width: 100%;
    height: 315px !important;
}
@media (max-width: 767px) 
{
    .embed-responsive-item {
        width: 100%;
        height: 215px !important;
    }
    .accordion-button, .accordion-button:not(.collapsed) {
        color: #1d1d1d;
        font-size: 1.2rem;
    }
}