﻿:root {
    --bs-font-montserrat: "Montserrat", serif;
    --bs-font-alice: "Alice", serif;
    --bs-font-rubik-dirt: "Rubik Dirt", serif;
    --bs-font-open-sans: "Open Sans", serif;
    --light-black: #333333;
    --light-pink: #bfb0b5;
    --light-brown: #cbb9a8;
    --bs-font-sans-serif: 'Poppins', sans-serif;
    --blue: #0089ca; /**/
    --dark-blue: #0079ca; /**/
    --gray: #909091; /**/
    --light-gray: #efefef; /**/
    --text-color-gray: #292f36; /**/
    --text-color-dark-gray: #292f36;
    --light-gray: #f2f2f2; /**/
    --light: #cce4f5; /**/


    --info: #0075ba;
    --warning: #f9aa0b;
    --white: #fff;
    --text-dark: #212529;
    --google: #ea4335;
    --facebook: #1877f2;
    --twitter: #1da1f2;
    --youtube: #ff0000;
    --linkedin: #0077b5;
    --pinterest: #e60023;
    --instagram: #e1306c;
    --yelp: #af0606;
    --sharecare: #1aba9c;
    --healthgrades: #0202ea;
    --covid-info-bg: #ffed76;
    --covid-info-color: #8a6d3b;
    --implants-gray-color: #808184;
    --guru-gray-color: #6d6e70;
    --screw-gray-color: #58595b;
    --gray-6c6c6c: #6c6c6c;
    --Carattere-font: 'Carattere', cursive;
}


.btn1 {
    background: var(--light-pink);
    color: var(--white);
    font-family: var(--bs-font-montserrat);
    font-weight: 500;
    transition: all 0.5s ease !important;
}

    .btn1:hover {
        background: var(--light-brown);
        color: var(--white);
        font-family: var(--bs-font-montserrat);
        font-weight: 500;
        transition: all 0.5s ease !important;
    }

.btn3 {
    background: #e0c588;
    color: #000;
    font-family: var(--bs-font-montserrat);
    font-weight: 500;
    transition: all 0.5s ease !important;
}

/*========================================== nav-bar ===============================================*/
.navbar {

    background-image: linear-gradient(131deg, #f4f0e9f5 30%, rgba(244, 240, 233, 0) 77%) !important;
}

.navbar-collapse{
    margin-left:40px;
}
.nav-img{
    width:160px;
}
.nav-link {
    color: #333333;
    font-family: var(--bs-font-open-sans);
  text-transform:uppercase;
    font-weight: 600;
}
 .nav-link.active,
 .show > .nav-link {
    color: var(--light-pink);
    
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='gray' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}
#header-nav > div {
    padding: 10px 0px;
}

.navbar-collapse {
    flex-grow: 0;
}

#header-nav .nav-item a {
    color: #755560;
    font-size: 16px;
    font-family: var(--bs-font-open-sans);
    text-transform: capitalize;
}

    #header-nav .nav-item a.active {
        color: var(--primary);
    }

    #header-nav .nav-item a:hover {
        color: var(--primary);
    }

.navbar-toggler, .navbar-toggler:focus {
    border: 0px solid transparent;
    box-shadow: 0 0 0 0;
}

.toggler {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 40px;
    height: 30px;
    cursor: pointer;
    position: relative;
    z-index: 1000;
}

.bar {
    width: 100%;
    height: 4px;
    background-color: #333333;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Toggler animation - Open state */
.toggler.open {
    transform: rotate(3deg);
}

    .toggler.open .bar:nth-child(1) {
        transform: translateY(15px) rotate(48deg);
    }

    .toggler.open .bar:nth-child(2) {
        opacity: 0;
    }

    .toggler.open .bar:nth-child(3) {
        transform: translateY(-10px) rotate(-56deg);
    }

/* Show menu when toggler is active */
.menu.active {
    display: block;
}


/*========================================== main-slider ===============================================*/
.main-slider {
    background-image: linear-gradient(131deg, #f4f0e9f5 30%, rgba(244, 240, 233, 0) 77%), url(/img/main-slider/main-slider-bg.jpg) !important;
    height:77vh;
    background-size: cover;
}

    .main-slider h2 {
        font-size: 81px;
        font-family: var(--bs-font-alice);
        color: var(--light-black);
    }
    .main-slider h3 {
        font-size: 41px;
        font-family: var(--bs-font-alice);
        color: var(--light-black);
    }
    .main-slider h3 span{
        font-size: 21px;
        font-family: var(--bs-font-alice);
        color: var(--light-black);
    }

    .main-slider p {
        font-size: 22px;
        font-family: var(--bs-font-alice);
    }



/*========================================== .social-media ===============================================*/

.social-media {
    background: var(--light-pink);
    padding-top: 50px;
    padding-bottom: 50px;
}

    .social-media img {
        height: 40px;
    }

    .social-media h2 {
        font-family: var(--bs-font-alice);
        color: var(--white);
        font-weight: 500;
    }


/*========================================== .why-us ===============================================*/

.why-us {
    padding: 100px 0px 100px 0px;
}

    .why-us h2 {
        font-family: var(--bs-font-alice);
        font-size: 38px;
    }

    .why-us h4 {
        font-family: var(--bs-font-open-sans);
    }

    .why-us p {
        font-family: var(--bs-font-open-sans);
        font-size: 18px;
    }


/*========================================== offer ===============================================*/
.offer {
    background-image: linear-gradient(85deg, #ddd6d8 30%, rgba(244, 240, 233, 0) 50%), url(/img/offer.jpg) !important;
    height: 60vh;
    background-size: cover;
}

    .offer h4 {
        font-family: var(--bs-font-open-sans);
        font-weight: 700;
        font-size: 16px;
        color: #666666;
    }

    .offer h2 {
        font-family: var(--bs-font-open-sans);
        font-weight: 700;
        font-size: 80px;
    }

        .offer h2 span {
            font-family: var(--bs-font-open-sans);
            font-size: 30px;
        }

    .offer p {
        font-family: var(--bs-font-open-sans);
        font-weight: 500;
    }



/*========================================== our-services ===============================================*/
.our-services {
    padding: 100px 0px 100px 0px;
}

    .our-services h2 {
        font-family: var(--bs-font-alice);
        font-size: 38px;
        text-align: center;
    }

    .our-services p {
        font-family: var(--bs-font-open-sans);
        font-size: 18px;
    }

    .our-services h5 {
        font-family: var(--bs-font-open-sans);
    }


.service-item {
    position: relative;
    transition: transform 0.3s ease;
}

    .service-item img {
        transition: opacity 0.3s ease;
    }

    .service-item h5 {
        position: relative;
        top: 20px;
        transition: top 0.3s ease, color 0.3s ease;
    }

    .service-item:hover img {
        opacity: 0.8; /* Fade the image */
    }

    .service-item:hover h5 {
        top: 0px; /* Slide the text up */
        color: #c49b63; /* Change text color on hover */
    }


/*========================================== review-section ===============================================*/
.review-section {
    padding: 100px 0px 100px 0px;
    background: #f9f6f5;
}

    .review-section h2 {
        font-family: var(--bs-font-alice);
        font-size: 38px;
        text-align: center;
        /*  color:var(--white);*/
    }

    .review-section h4 {
        font-family: var(--bs-font-open-sans);
    }

    .review-section p {
        font-family: var(--bs-font-open-sans);
        font-size: 18px;
    }
/*.review-part p {
    background:
    
}*/
.review-part .review-content {
    font-family: var(--bs-font-open-sans);
    font-weight: 500;
    letter-spacing: 1px;
    line-height: 24px;
    position: relative;
    left: -81px;
    background: #f9f6f5;
    padding: 40px;
    font-size: 18px;
}

.review-part h6 {
    font-family: var(--bs-font-open-sans);
    font-weight: 500;
    letter-spacing: 1px;
    line-height: 24px;
    font-size: 18px;
}


.client-name {
    font-size: 20px;
    margin-top: 20px;
    font-family: var(--bs-font-open-sans);
    color: #bfb0b5;
}

.review-content-2 {
    font-family: var(--bs-font-open-sans);
    font-weight: 500;
    letter-spacing: 1px;
    line-height: 24px;
    position: relative;
    top: -81px;
    background: #f9f6f5;
    padding: 40px;
    font-size: 18px;
    width: 67%;
    text-align: center;
}

.review-part .review-content-3 {
    font-family: var(--bs-font-open-sans);
    font-weight: 500;
    letter-spacing: 1px;
    line-height: 24px;
    position: relative;
    left: 81px;
    background: #f9f6f5;
    padding: 40px;
    font-size: 18px;
}

.review-content-4 {
    font-family: var(--bs-font-open-sans);
    font-weight: 500;
    letter-spacing: 1px;
    line-height: 24px;
    position: relative;
    top: -24px;
    background: #f9f6f5;
    padding: 20px;
    font-size: 18px;
    width: 93%;
    text-align: center;
}


/*.review-content-3 h6,h5{
    text-align:end;
}*/
/*========================================== img-section ===============================================*/
.img-section {
    background-image: linear-gradient(90deg, #F0EDEE 65%, #F9F6F5 65%), url(/img/main-slider/main-slider-bg.jpg) !important;
    height: 50vh;
}

/*========================================== banner ===============================================*/


/*
background-image: linear-gradient(90deg, rgba(235, 235, 235, 0) 0%, #ebebeb 70%), url(https://www.elegantthemes.com/layouts/wp-content/uploads/2019/10/florist-02.jpg) !important;
}*/

.banner {
    background-image: linear-gradient(273deg, rgba(235, 235, 235, 0) 0%, #ddd6d8 60%), url(/img/banner.webp) !important;
    height: 60vh;
    background-size: cover;
}

    .banner h4 {
        font-family: var(--bs-font-open-sans);
        font-weight: 700;
        font-size: 16px;
        color: #666666;
    }

    .banner h2 {
        font-family: var(--bs-font-open-sans);
        font-weight: 700;
        font-size: 44px;
    }

        .banner h2 span {
            font-family: var(--bs-font-open-sans);
            font-size: 30px;
        }

    .banner p {
        font-family: var(--bs-font-open-sans);
        font-weight: 500;
    }



/*================================== faq-section ===============================================*/
.faq-section {
    padding: 100px 0px 100px 0px;
    background: #f9f6f5;
}
    .faq-section h5 {
        color: var(--white);
        font-family: var(--bs-font-open-sans);
        font-size:20px;
    }
    .faq-section .main-p {
        font-family: var(--bs-font-open-sans);
        line-height:28px;
        font-size:18px;
    }
    .faq-section h2{
        font-family:var(--bs-font-alice);
        font-size:38px;
    }
    .faq-section .accordion-button::after {
        display: none;
    }




.faq-section .faq-icon {
    display: inline-block;
    /*    margin-right: 10px;*/
    width: 20px;
    height: 20px;
    position: relative;
    color:#fff !important;
}

    .faq-section .faq-icon .verticle-line,
    .faq-section .faq-icon .horizontal-line {
        position: absolute;
        background-color: #000;
        transition: all 0.3s ease-in-out;
    }

    .faq-section .faq-icon .verticle-line {
        width: 2px;
        height: 20px;
        left: 50%;
        top: 0;
        transform: translateX(-50%);
        opacity: 1;
    }

    .faq-section .faq-icon .horizontal-line {
        width: 20px;
        height: 2px;
        top: 50%;
        left: 0;
        transform: translateY(-50%);
        opacity: 1;
    }

.faq-section .accordion-button {
    justify-content: space-between;
    color: black;
    /*    font-weight: 400;*/
}

    .faq-section .accordion-button:not(.collapsed) {
        color: black;
    }

        .faq-section .accordion-button:not(.collapsed) .faq-icon .verticle-line {
            transform: rotate(90deg);
        }

.faq-section .accordion-button, .faq-section .accordion-body {
    background-color: var(--light-pink);
    color:var(--white);
    font-family:var(--bs-font-open-sans);
}

.faq-section .accordion-item {
    border: none;
    border-bottom: 1px solid #3333;
}

    .faq-section .accordion-body {
        border-bottom: 1px solid #fff;
 
    }
/*=================================== footer =============================*/


footer {
    background: var(--light-pink);
    color: #fff;
    padding-top: 50px;
    padding-bottom: 50px;
}
  

    footer ul li {
        list-style-type: none;
        font-size: 30px;
    }
    footer .icons {
       width:40px;
    }
.ml-117 {
    margin-left: 117px;
}
    footer h2 {
        color: var(--gold);
        font-family: var(--bs-font-alice);
        font-weight: 500;
        font-size:50px;
    }
    footer h2 span {
        color: var(--gold);
        font-family: var(--bs-font-alice);
        font-weight: 500;
        font-size:20px;
    }
    footer h4 {
        color: var(--gold);
        font-family: var(--bs-font-open-sans);
        font-weight: 500;
    }

    footer i {
        color: var(--gold);
    }


    footer a {
        color: var(--text-color) !important;
        font-family: var(--bs-font-montserrat);
        text-decoration: none;
    }

        footer a:hover {
            color: #000 !important;
            font-family: var(--bs-font-montserrat);
            text-decoration: none;
        }

    footer p {
        color: var(--text-color) !important;
        font-family: var(--bs-font-open-sans);
        text-decoration: none;
    }

        footer p:hover {
            color: var(--gold) !important;
            font-family: var(--bs-font-montserrat);
            text-decoration: none;
        }

    footer span {
        color: var(--text-color) !important;
        font-family: var(--bs-font-montserrat);
    }



/*=================================== back-to-top  =============================*/


.back-to-top i {
    color: var(--white);
    height: 35px;
    width: 35px;
    line-height: 35px;
    font-size: 20px;
    text-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px;
    text-align: center;
    background: none 0px 0px repeat scroll rgba(0, 0, 0, 0.2);
    padding: 0px;
    border-radius: 20px;
}

.fa {
    display: inline-block;
    font: normal normal normal 14px / 1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}


.backToTopIsvisible .back-to-top {
    visibility: visible;
    opacity: 1;
}


.back-to-top {
    position: fixed;
    bottom: 10px;
    right: 10px;
    visibility: hidden;
    opacity: 0;
    z-index: 4;
    overflow: hidden;
}
.backToTopIsvisible .back-to-top {
    visibility: visible;
    opacity: 1;
}


/*=================================== .mainslider-two  =============================*/


.mainslider-two {
    background-image: linear-gradient(90deg, rgba(244, 240, 233, 0.9) 30%, rgba(244, 240, 233, 0) 100%), url(/img/aboutus-section.webp) !important;
    height: 50vh;
    background-size: cover;
}


    .mainslider-two h2 {
        font-size: 87px;
        font-family: var(--bs-font-alice);
        color: var(--light-black);
    }
    .mainslider-two p {
        font-size: 22px;
        font-family: var(--bs-font-alice);
    }




/*=================================== aboutus-section   =============================*/
.aboutus-section {
    padding: 100px 0px 100px 0px;
    background: #f9f6f5;
}


    .aboutus-section h2 {
        font-size: 47px;
        font-family: var(--bs-font-alice);
        color: var(--light-black);
    }

    .aboutus-section p {
        font-size: 18px;
        font-family: var(--bs-font-open-sans);
        color: var(--light-black);
        line-height:28px;
    }

.breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 20px;
    font-size:25px;
    font-family:var(--bs-font-open-sans)
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "/";
    padding: 0 5px;
    color: #6c757d;
}

.breadcrumb-item a {
    text-decoration: none;
    color: #756e70;
    font-size
}

.breadcrumb-item.active {
    color: #333333;
}


input::placeholder {
    font-family: var(--bs-font-open-sans);
    font-size:20px;
}
input.form-control {
    height: 50px; /* Adjust the height to your desired size */
    padding: 20px; /* Optional: Adjust padding inside the input */
}
textarea.form-control {
    height: 50px; /* Adjust the height to your desired size */
    padding: 20px; /* Optional: Adjust padding inside the input */
}
textarea::placeholder {
    font-family: var(--bs-font-open-sans);
    font-size: 20px;
}
textarea.form-control {
    height: 150px; /* Increase height to make the textarea taller */
    resize: none; /* Disable resizing by the user */
    padding: 10px; /* Optional: Adds padding inside the textarea */
}


@media (max-width:767px){
    .recaptcha > div {
        transform: scale(0.8)
    }
}
#messageTextCounter1{
    color:#333333;
    font-family:var(--bs-font-open-sans);
}


.modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-image: linear-gradient(215deg, #f4f0e9f5 30%, rgba(244, 240, 233, 0) 100%), url(/img/pop-up-bg.webp) !important;
    background-size: cover;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, .2);
    border-radius: .3rem;
    outline: 0;
}
.modal-title {
    font-family: var(--bs-font-alice);
    font-size: 47px;
}
.card-subtitle {
    font-family: var(--bs-font-open-sans);
    font-weight: 600;
    font-size: 20px;
}

@media (max-width:767px){
    #recaptcha3 {
        transform: scale(0.9);
    }
}
