/*----------------
--Start Required--
----------------*/

body {
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    background-color: #fff;
}

p, a {
    color: #424242;
}

a{
    text-decoration: none;
    color: inherit;
}

a:hover, a:focus{
    color: #DE968D;
}

h3.sub-title{
    color: #de968d;
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    line-height: 1.2;
    text-transform: uppercase;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

h3.sub-title.large {
    font-size: 64px;
}

h2.title{
    font-family: 'Playfair Display', serif;
    margin: 0;
    margin-bottom: 2rem;
    font-size: 44px;
    font-weight: 700;
    line-height: 1.21;
    color: #27252a;
    clear: both;
}

.text-pink{
    color: #DE968D;
}

.btn-pink{
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    background-color: #DE968D;
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: #DE968D;
    border-radius: 0px 0px 0px 0px;
    padding: 20px 30px 20px 30px;
    width: auto;
    color: #fff;
    box-shadow: 0 .125rem .25rem rgba(0,0,0,.075)!important;
}

.btn-pink:hover{
    color: #DE968D;
    background-color: #FFFFFF;
}

.btn-active-pink{
    border: 1px solid #de968d;
    color: #fff;
    background-color: #de968d;
}

.btn-outline-pink{
    border: 1px solid #de968d;
    color: #000;
}

.btn-outline-pink:hover{
    border: 1px solid #de968d;
    color: #fff;
    background-color: #de968d;
}

.input-pink{
    font-size: 14px;
    font-weight: 500;
    width: 100%;
    border-color: transparent;
    background-color: #fff;
    padding: 17px 30px;
    border: 1px solid #de968d;
    -webkit-appearance: none;
    box-sizing: border-box;
    font-weight: normal;
    outline: 0;
    transition: all ease-in-out 0.3s;
    box-shadow: 0 .125rem .25rem rgba(0,0,0,.075)!important;
}

.page-details-header{
    background-color: #FCF5F5;
    /* background-image: url(../images/background-footer.png); */
    background-position: top center;
    background-repeat: no-repeat;
    background-size: 100% auto;
    padding: 2rem 0;
}

.page-details-header h1{
    font-family: 'Playfair Display', serif;
    color: #de968d;
}



/*----------------
---End Required---
----------------*/

/*--------------
---Preloader----
----------------*/

.preloader {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background: #ffffff;
    transition: .1s;
}

#loading-center-object {
    display: grid;
    grid: 1fr / 1fr;
    width: clamp(100px, 50vw, 10em);
    aspect-ratio: 1;
}

.preloader-body {
    text-align: center;
}

.wheel {
    grid-column: 1;
    grid-row: 1;
    background-image: url(../images/wheelnew.svg);
    background-repeat: no-repeat;
    filter: invert(15%);
    opacity: 0.9;
    width: 100%;
    height: 100%;
    max-width: 100px;
    max-height: 100px;
    margin: auto;
    animation: spin 5s linear infinite;
}

.wheel:nth-of-type(2) {
    opacity: 0.7;
    animation: spin-reverse 5s linear infinite;
}


@keyframes spin {
    to {
        transform: rotate(0deg);
    }
    from {
        transform: rotate(1turn);
    }
}
@keyframes spin-reverse {
    to {
        transform: rotate(0deg) scaleX(-1);
    }
    from {
        transform: rotate(-1turn) scaleX(-1);
    }
}

@keyframes sky {
    0%,
    100% {
        background-position: center;
    }
    25% {
        background-position: left;
    }
    70% {
        background-position: bottom;
    }
    90% {
        background-position: right;
    }
}

/*----------------
---End Preloader--
----------------*/

/*----------------
---Start Header---
----------------*/
.info-contact-header{
    background-color: #FCF5F5;
}

.info-social-header{
    display: flex;
    align-items: center;
    justify-content: left;
}

.info-contact-right{
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.item-pink-contact{
    display: flex;
    align-items: center;
}

.cricle-pink, .item-social-header{
    display: flex;
    align-items: center;
    color: #ffffff;
    margin-right: 10px;
    font-size: 15px;
    width: 30px;
    height: 30px;
    background-color: #de968d;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.item-social-header:hover{
    background-color: #fff;
    color: #de968d;
    border: 1px solid #de968d;
}

.nav-link{
    text-transform: uppercase;
    font-weight: bold;
    color: #89868d;
}

.nav-link:focus, .nav-link:hover{
    color: #de968d !important;
}

.nav-link.active{
    color: #de968d !important;
}

.navbar-nav .nav-link{
    padding: 0 0.85em !important;
}

.sticky-header-top{
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 999;
}

.logo-menu img{
    width: 100%;
    max-width: 12rem;
    height: auto;
}

/*.nav-header .container{*/
/*    justify-content: space-around;*/
/*}*/

/* Moblie Header */


/* Menu Mobile */

a[data-bs-toggle="offcanvas"], .btn-header {
    background-color: #de968d;
    border: 1px solid #de968d;
    color: #fff;
    border-radius: 20px;
    white-space: nowrap;
}

a[data-bs-toggle="offcanvas"]:hover, .btn-header:hover {
    background-color: #fff;
    color: #de968d;
    border-color: #de968d;
}

.btn-light:hover {
    border-color: #de968d !important;
    color: #de968d !important;
    background-color: #fff !important;
}

#mobileMenu.offcanvas-start {
    width: 100%;
    background: linear-gradient(225deg, rgba(200,225,255,1) 0%, rgb(230 248 255) 30%, rgba(252,245,245,1) 40%, rgba(252,245,245,1) 60%, rgb(230 248 255) 70%, rgba(200,225,255,1) 100%);
    color: white;
}

/*#mobileMenu .offcanvas-header {*/
/*    background-color: #FCF5F5;*/
/*}*/

#mobileMenu .offcanvas-header img{
    width: 100%;
    height: auto;
    max-width: 10rem;
}

#mobileMenu ul{
    padding: 0px;
    list-style: none;
}

#mobileMenu li{
    font-size: 1rem;
}

#mobileMenu li:not(:last-child) {
    margin-bottom: 16px;
}

#mobileMenu li ul li a:not(.social-canvas){
    font-size: initial;
}

#mobileMenu li ul li a.social-canvas{
    font-size: 20px;
}

#mobileMenu li ul.social-contact{
    display: flex;
    justify-content: space-evenly;
    flex-wrap: nowrap;
    flex-direction: row;
    align-items: center;
}

#mobileMenu a{
    color: #212529;
}

#mobileMenu .offcanvas-body .item-social-header a{
    color: #fff;
}

#mobileMenu a.active{
    color: #de968d;
}

/*----------------
----End Header----
----------------*/

/*----------------
---Start Footer---
----------------*/
.footer-pink {
    background-color: #FCF5F5;
    background-image: url(../images/background-footer.png);
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: 100% auto;
}

footer a {  
    text-decoration: none;
    border-radius: 50rem;
}

.info-copy-right{
    color: #de968d;
}

.logo-footer{
    max-width: 100px;
    margin: auto;
}

.float-menu {
    position: fixed;
    right:  -4px;
    top: 30%;
    background: #115ba5;
    padding: 15px 10px;
    border-radius: 10px 0 0 10px;
}


.float-menu a {
    display: block;
    margin-bottom: 5px;
}

.btn-circle {
    width: 45px;
    height: 45px;
    text-align: center;
    padding: 12px 0;
    font-size: 20px;
    line-height: 1;
    border-radius: 50rem;

}

.scroll-to-top {
    position: fixed;
    right: 15px;
    bottom: 30px;
    cursor: pointer;
    background-color: #de968d;
    color: #fff;
    display: none;
    z-index: 9;
 }

 .scroll-to-top:hover{
    background-color: #fff;
    color: #de968d;
    border-color: #de968d;
 }

/*----------------
---End Footer---
----------------*/


/*--------------------
-------Start Home-----
---------------------*/
.homeSliderMobile, .homeSlider{
    position: relative;
}

.banner-parallax {
    position: relative;
    width: 100%;
    padding: 24px 24px;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('../images/banner-bg.jpg');
}

.banner-parallax img {
    width: 100%;
    max-width: 500px;
    height: auto;
    object-fit: cover;
    box-shadow: 0 .125rem .25rem rgba(0,0,0,.075)!important;
    /*border-radius: 50rem;*/
}

@keyframes show-banner-img {
    0% {
        opacity: 0;
        transform: rotate(-90deg);
    }
    100% {
        opacity: 1;
        transform: rotate(0deg);
    }
}

.btn-free-wifi{
    position: absolute;
    z-index: 1;
    right: 1%;
    bottom: 1%;
    border: 1px solid #e57f72;
    background-color: #e57f72;
    color: #fff;
    font-weight: bold;
    border-radius: 20px;
}

.btn-free-wifi:hover, .btn-free-wifi:focus{
    border: 1px solid #e57f72;
    background-color: #e57f72;
    color: #fff;
}

.btn-free-wifi i{
    border: 2px solid #fff;
    border-radius: 50%;
    height: 35px;
    width: 35px;
    padding: 5px;
    line-height: 1.5;
}

.section-wrap {
    position: relative;
    padding: 80px 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    overflow: hidden;
}

.img-about-1,
.img-about-2 {
    width: 100%;
    max-width: 100%;
    object-fit: cover;
    box-shadow: 0 .125rem .25rem rgba(0,0,0,.075)!important;
}

.img-about-1 {
    height: 330px;
}

.img-absolute-1 {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 0.7;
}

.img-absolute-2 {
    position: absolute;
    top: 50%;
    left: -200px;
    width: 550px;
    z-index: -1;
    transform: translateY(-50%);
    opacity: 0.7;
}

.img-absolute-3 {
    position: absolute;
    bottom: 110px;
    right: -250px;
    z-index: -1;
    width: 598px;
    opacity: 0.7;
}

.img-absolute-6 {
    position: absolute;
    top: 50%;
    left: -120px;
    width: 550px;
    z-index: -1;
    transform: translateY(-50%);
    opacity: 0.7;
}

.img-absolute-7 {
    position: absolute;
    bottom: 0;
    right: -230px;
    z-index: -1;
    width: 500px;
    opacity: 0.7;
}

.section-service-home {
    isolation: isolate;
}

.section-service-home .row {
    position: relative;
    z-index: 2;
}

.section-service-home .servicer-item-link {
    position: relative;
    display: block;
    height: 100%;
    padding: 10px;
    color: #27252a;
    background: rgba(255, 255, 255, 0.58);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 6px;
    box-shadow: 0 18px 45px rgba(39, 37, 42, 0.08);
    backdrop-filter: blur(8px);
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.section-service-home .servicer-item-link::before {
    content: "";
    position: absolute;
    inset: 8px;
    z-index: 0;
    border: 1px solid rgba(222, 150, 141, 0.32);
    border-radius: 4px;
    opacity: 0;
    transform: scale(0.96);
    transition: opacity 0.35s ease, transform 0.35s ease;
    pointer-events: none;
}

.service-item-icon-unused {
    content: "→";
    position: absolute;
    right: 22px;
    bottom: 22px;
    z-index: 3;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Arial, sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #fff;
    background: #de968d;
    border-radius: 50%;
    box-shadow: 0 10px 22px rgba(222, 150, 141, 0.34);
    opacity: 0;
    transform: translate(12px, 12px) rotate(-20deg);
    transition: opacity 0.35s ease, transform 0.35s ease, background-color 0.35s ease;
}

.section-service-home .servicer-item-link:hover,
.section-service-home .servicer-item-link:focus {
    color: #27252a;
    border-color: rgba(222, 150, 141, 0.4);
    box-shadow: 0 24px 60px rgba(39, 37, 42, 0.14);
    transform: translateY(-8px);
}

.section-service-home .servicer-item-link:hover::before,
.section-service-home .servicer-item-link:focus::before {
    opacity: 1;
    transform: none;
}

.section-service-home .service-item-icon {
    position: absolute;
    right: 22px;
    bottom: 22px;
    z-index: 3;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #fff;
    background: #de968d;
    border-radius: 50%;
    box-shadow: 0 10px 22px rgba(222, 150, 141, 0.34);
    opacity: 0;
    transform: translate(12px, 12px) rotate(-20deg);
    transition: opacity 0.35s ease, transform 0.35s ease, background-color 0.35s ease;
    pointer-events: none;
}

.section-service-home .servicer-item-link:hover .service-item-icon,
.section-service-home .servicer-item-link:focus .service-item-icon {
    opacity: 1;
    transform: none;
}

.section-service-home .service-item-wrap {
    position: relative;
    z-index: 1;
    overflow: hidden;
    visibility: visible;
    border-radius: 4px;
}

.section-service-home .service-item {
    position: relative;
    /*padding: 0 110px 30px 0;*/
    /*display: flex;*/
    /*align-items: flex-end;*/
    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    -ms-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

.section-service-home .service-item-wrap::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(39, 37, 42, 0.02) 15%, rgba(39, 37, 42, 0.56) 100%);
    opacity: 0.82;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.section-service-home .service-item-wrap::after {
    content: "";
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 2;
    width: 54px;
    height: 54px;
    border-top: 2px solid rgba(255, 255, 255, 0.9);
    border-right: 2px solid rgba(255, 255, 255, 0.9);
    opacity: 0.76;
    transition: transform 0.35s ease, opacity 0.35s ease;
    pointer-events: none;
}

.section-service-home .service-item img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    max-width: 100%;
    object-fit: cover;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    -ms-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

.section-service-home .servicer-item-link:hover .service-item img,
.section-service-home .servicer-item-link:focus .service-item img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.section-service-home .servicer-item-link:hover .service-item-wrap::before,
.section-service-home .servicer-item-link:focus .service-item-wrap::before {
    opacity: 0.95;
}

.section-service-home .servicer-item-link:hover .service-item-wrap::after,
.section-service-home .servicer-item-link:focus .service-item-wrap::after {
    opacity: 1;
    transform: translate(-6px, 6px);
}

.service-item-name {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0;
    min-height: 90px;
    background-color: #fff;
}

.service-item-name h6 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.25rem;
    padding: 16px;
    margin: 0;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    -ms-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

.section-service-home .service-item-name {
    position: absolute;
    left: 22px;
    right: 74px;
    bottom: 22px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0;
    min-height: auto;
    background-color: transparent;
    pointer-events: none;
}

.section-service-home .service-item-name h6 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    line-height: 1.25;
    color: #fff;
    padding: 0;
    margin: 0;
    text-shadow: 0 8px 20px rgba(0, 0, 0, 0.34);
    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    -ms-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

.section-service-home .servicer-item-link:hover .service-item-name h6,
.section-service-home .servicer-item-link:focus .service-item-name h6 {
    color: #fff;
    transform: translateY(-4px);
}

.img-absolute-4 {
    position: absolute;
    top: 30%;
    left: -250px;
    transform: translateY(-50%);
    width: 600px;
    opacity: 0.7;
}

.img-absolute-5 {
    position: absolute;
    top: 70%;
    right: -420px;
    transform: translateY(-50%);
    opacity: 0.7;
}

/* .about-us-pink{
    background-image: url(../images/shape.png);
    background-position: top left;
    background-repeat: no-repeat;
    position: relative;
    transition: background .3s,border .3s,border-radius .3s,box-shadow .3s;
    margin-top: 0;
    margin-bottom: 3rem;
    padding: 80px 30px 0;
    width: 100%;
    margin: 0;
    left: 0!important;
    overflow: hidden;
}

.img-about-pink{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    width: 100%;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-line-pack: start;
    align-content: flex-start;
    max-width: 600px;
    margin: auto;
    justify-content: center;
    align-items: center;
}

.img-about-pink .flower-pink{
    position: absolute;
    margin-bottom: 0;
    top: 120px;
    right: -60px;
    width: 100%;
    text-align: right;
}

.img-about-pink .flower-pink img,.img-about-pink .leaf-pink img, .img-about-pink .img-about-nails img{
    vertical-align: middle;
    display: inline-block;
    height: auto;
    max-width: 100%;
    border: none;
    -webkit-border-radius: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.img-about-pink .leaf-pink{
    position: absolute;
    margin-bottom: 0;
    top: 0;
    left: -60px;
    width: 100%;
    text-align: left;
    z-index: 3;
}

.img-about-pink .img-about-nails{
    position: relative;
    text-align: left;
    z-index: 2;
    width: 100%;
}

.img-about-pink .img-about-nails img{
    border-style: solid;
    border-width: 10px;
    border-color: #fff;
}

.wrapper-category-service{
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    position: relative;
    background-color: #fff;
    box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
    border: 1px solid transparent;
    padding: 60px;
    z-index: 1;
    text-align: center;
    overflow: hidden;
    cursor: pointer;
}

.wrapper-category-service:hover{
    transition: all 0.3s ease;
    border: 1px solid #de968d;
}

.bg-category-pink{
    background-image: url(../images/flower-2.png);
    transition: all 0.5s ease;
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    opacity: 0;
    background-position: top left;
    background-size: auto;
    background-repeat: no-repeat;
    opacity: 0.25;
}

.wrapper-category-service:hover .bg-category-pink{
    transition: all 0.5s ease;
    opacity: 1;
}

.img-service-pink{
    transition: all 0.5s ease;
    position: relative;
    display: inline-block;
    margin-bottom: 48px;
}

.img-service-pink img{
    transition: all 0.5s ease;
    width: 198px;
    height: 198px;
    border-radius: 50%;
    display: block;
    object-fit: cover;
}

.wrapper-category-service:hover .text-hover-pink{
    color: #de968d;
} */

.section-about-home,
.section-gallery-home {
    background-color: #dfd2aa !important;
}

.our-reviews-pink{
    background-image: url(../images/bg-reviews.png);
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: cover;
}

.div-reviews-business{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-60%, -50%);
    width: 100%;
}

.element-reviews-pink{
    position: relative;
}

.fluid-review{
    background-color: #fff;
    border: 2px solid #de968d;
    padding: 2rem;
}

.our-photos-pink{
    background-color: #FCF5F5;
}

.gallery-image-box {
    cursor: pointer;
    /* border-radius: 10px; */
    height: 280px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    max-width: 100%;
    margin: auto;
    /* border: 1px solid #de968d; */
    position: relative;
    box-shadow: 0 .125rem .25rem rgba(0,0,0,.075)!important;
}

.overlay-img-pink{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    color: #fff;
    background-color: rgba(0,0,0,.75);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* border-radius: 10px; */
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease-in-out;
}

.gallery-image-box:hover .overlay-img-pink {
    visibility: visible;
    opacity: 1;
}

.gallery-pagination .page-link {
    color: #de968d;
    border-color: rgba(222, 150, 141, 0.35);
    box-shadow: none;
}

.gallery-pagination .page-link:hover,
.gallery-pagination .page-link:focus {
    color: #fff;
    background-color: #de968d;
    border-color: #de968d;
}

.gallery-pagination .page-item.active .page-link {
    color: #fff;
    background-color: #de968d;
    border-color: #de968d;
}

.gallery-pagination .page-item.disabled .page-link {
    color: #aaa;
    background-color: #fff;
    border-color: rgba(0, 0, 0, 0.08);
}


.our-contact-us{
    background-image: url(../images/bg-contact.png);
    background-repeat: no-repeat;
    background-position: bottom left;
    background-size: cover;
}

/*--------------------
-------End Home-------
--------------------*/


/*--------------------------
-------Start Services-------
---------------------------*/

.div-img-services{
    display: flex;
    justify-content: right;
    padding-top: 70px;
    padding-bottom: 70px;
    padding-right: 70px;
    position: relative;
}

.div-img-services:before{
    content: "";
    width: 300px;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    background-color: #fcf5f5;
    background-image: url(../images/bg-contact.png);
    background-repeat: no-repeat;
    background-position: bottom right;
    background-size: cover;
    z-index: -1;
}

.div-img-services > div {
    position: relative;
    width: 100%;
}

.div-img-services > div::before {
    display: block;
    padding-top: 100%;
    content: "";
}

.div-img-services img{
    width: 100%;
    object-fit: cover;
    height: 100%;
    max-width: 100%;
    border: 4px solid #fff;
    border-radius: 0;
    box-shadow: none;
    position: absolute;
    top: 0;
    left: 0;
}

.text-in-services-pink{
    font-weight: bold;
    margin-bottom: 15px;
    padding-top: 20px;
}

.service-price{
    font-family: 'Playfair Display', serif;
    font-size: 18px;
}

.bg-service-pink{
    background-image: url(../images/flower-3.png);
    background-position: center right;
    background-repeat: repeat-y;
}

.services-page .services-category-list {
    row-gap: 2.5rem;
}

.services-page .service-category-media,
.services-page .service-category-content {
    margin-bottom: 2rem;
}

.services-page .service-category-content {
    align-self: center;
}

.services-page .service-category-heading {
    max-width: 680px;
    margin: 0 auto 1.75rem;
}

.services-page .service-category-heading h1 {
    font-family: 'Playfair Display', serif;
    line-height: 1.15;
    margin-bottom: 0.85rem;
}

.services-page .service-category-heading p {
    color: #5f5a62;
    margin-bottom: 0.6rem;
}

.services-page .service-menu-list {
    display: grid;
    gap: 14px;
}

.services-page .service-card {
    position: relative;
    padding: 18px 20px 18px 22px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(222, 150, 141, 0.24);
    border-left: 5px solid #de968d;
    box-shadow: 0 16px 38px rgba(39, 37, 42, 0.08);
}

.services-page .service-card::before {
    content: "";
    position: absolute;
    top: 18px;
    left: -9px;
    width: 13px;
    height: 13px;
    background: #de968d;
    border: 3px solid #fff;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(222, 150, 141, 0.35);
}

.services-page .service-line {
    display: flex;
    gap: 16px;
    width: 100%;
}

.services-page .service-line-main,
.services-page .service-line-start {
    align-items: flex-start;
}

.services-page .service-line-center {
    align-items: center;
}

.services-page .service-copy {
    flex: 1 1 auto;
    min-width: 0;
}

.services-page .service-title {
    font-family: 'Playfair Display', serif;
    color: #27252a;
    font-size: 20px;
    line-height: 1.25;
}

.services-page .service-copy p,
.services-page .sub-service-card p {
    color: #625d65;
    font-size: 15px;
    line-height: 1.65;
    margin-bottom: 0;
}

.services-page .service-cost {
    flex: 0 1 44%;
    display: flex;
    justify-content: flex-end;
    min-width: 96px;
}

.services-page .service-price {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 78px;
    padding: 8px 12px;
    margin: 0 0 0 auto;
    color: #de968d;
    background: #fff7f6;
    border: 1px solid rgba(222, 150, 141, 0.32);
    border-radius: 50rem;
    font-size: 17px;
    line-height: 1.15;
    text-align: center;
    white-space: normal;
    overflow-wrap: anywhere;
}

.services-page .sub-service-card {
    position: relative;
    margin-top: 2px;
    margin-left: 22px;
    padding: 14px 16px 14px 22px;
    background: linear-gradient(90deg, rgba(252, 245, 245, 0.9), rgba(255, 255, 255, 0.76));
    border: 1px dashed rgba(222, 150, 141, 0.48);
    border-left: 3px solid rgba(222, 150, 141, 0.55);
}

.services-page .service-children {
    display: grid;
    gap: 12px;
    margin-top: 16px;
}

.services-page .service-child {
    width: 100%;
}

.services-page .sub-service-card::before {
    content: "";
    position: absolute;
    top: 24px;
    left: -24px;
    width: 20px;
    border-top: 1px dashed rgba(222, 150, 141, 0.72);
}

.services-page .sub-service-card::after {
    content: "";
    position: absolute;
    top: 19px;
    left: -8px;
    width: 10px;
    height: 10px;
    background: #fff;
    border: 2px solid #de968d;
    border-radius: 50%;
}

.services-page .sub-service-card .service-title {
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    font-weight: 800;
    color: #474149;
}

.services-page .sub-service-card .service-price {
    min-width: 68px;
    padding: 6px 10px;
    font-size: 15px;
    background: #fff;
}

.services-page .div-img-services {
    justify-content: center;
    padding: 56px 56px 56px 0;
}

.services-page .div-img-services::before {
    width: 64%;
    right: 0;
    background-color: #fcf5f5;
    border: 1px solid rgba(222, 150, 141, 0.18);
}

.services-page .div-img-services > div {
    max-width: 430px;
    box-shadow: 0 22px 60px rgba(39, 37, 42, 0.13);
}

.services-page .div-img-services > div::after {
    content: "";
    position: absolute;
    inset: 14px;
    border: 1px solid rgba(255, 255, 255, 0.86);
    z-index: 2;
    pointer-events: none;
}

.services-page .div-img-services img {
    border: 10px solid #fff;
    border-radius: 0 !important;
    box-shadow: none;
}

/*--------------------------
---------End Services-------
---------------------------*/

/*--------------------------
--------Start Contact-------
---------------------------*/

.map-pink{
    background-color: #FCF5F5;
    max-height: 250px;
}

.maps-position{
    position: relative;
    top: -50px;
    border: 5px solid #fff;
}

/*--------------------------
---------End Contact--------
---------------------------*/

.footer {
	position: relative;
	/* background-color: #000; */
    background-image: url("../images/background-footer.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
	width: 100%;
}

.footer .footer-bg-overlay {
	height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    position: absolute;
	background-color: #FCF5F5;
    opacity: 0.9;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}

.footer .footer-main {
	position: relative;
	padding: 50px 0px 50px 0px;
    background-color: #FCF5F5;
    border-top: 1px solid #e4b764;
}

.footer .footer-absolute {
	position: relative;
	padding: 12px 0;
    background-color: #DE968D;
    border-top: 1px solid #DE968D;
    transition: background .3s,border .3s,border-radius .3s,box-shadow .3s;
}

.footer-main .footer-col-title {
	font-family: 'Manrope', sans-serif;
	font-size: 24px;
	color: #1a1a1a;
	font-weight: 400;
	margin-bottom: 16px;
	line-height: 1.2;
}

.footer-main .footer-col-content p {
	margin-bottom: 8px;
	font-weight: 600;
	display: flex;
	align-items: flex-start;
}

.footer-main .footer-col-content i {
    color: #de968d;
}

.footer-main .list-social,
.business-info .list-social {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	margin-top: 16px;
}

.footer-main .list-social li,
.business-info .list-social li {
	width: 40px;
	height: 40px;
	margin-right: 12px;
	background-color: #de968d;
	color: #fff;
	border-radius: 50%;
	display: flex;
    align-items: center;
    justify-content: center;
	font-size: 18px;
	transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.footer-main .list-social li:hover,
.business-info .list-social li:hover {
    background-color: #fcf5f5;
}

.footer-main .list-social li a,
.business-info .list-social li a {
	width: 100%;
	height: 100%;
	display: flex;
    align-items: center;
    justify-content: center;
	color: #fff;
	transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.footer-main .list-social li:hover a,
.business-info .list-social li:hover a {
    color: #de968d;
}

.business-hours-box {
	position: relative;
	display: block;
	width: 250px;
    padding: 12px 4px 4px 12px;
    border: 2px solid #de968d;
    margin-top: 12px;
    margin-left: 3rem;
}

#header.sticky .business-hours-box {
	display: none;
}

.business-info-box {
	display: none;
}

#header.sticky .business-info-box {
	display: flex;
}

.business-info-box p,
.business-info-box a {
	color: #212529;
}

.business-info-box p {
	padding: 4px 8px;
    border: 2px solid #fff;
    border-radius: 8px;
}

.business-hours-box .label {
	display: inline-block;
	font-family: 'Playfair Display', serif;
	font-weight: 600;
	font-style: italic;
	cursor: pointer;
	position: absolute;
	top: -1px;
	left: 10px;
    background-color: #fff;
    padding: 1px 5px;
    font-size: 15px;
    transform: translateY(-50%);
    color: #de968d
}

.business-hours-box p {
	font-size: 14px;
}

/*--------------------
------Start Blog------
--------------------*/

.blog-page {
    color: #e8e1d5;
    background: transparent;
}

.blog-search-panel {
    width: min(100%, 520px);
    margin: 0 auto 2.5rem;
    padding: 12px;
    background: rgba(18, 16, 13, 0.92);
    border: 1px solid rgba(228, 183, 100, 0.38);
    box-shadow: none;
}

.blog-search-form {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.blog-search-form input {
    width: 100%;
    min-width: 0;
    border: 1px solid rgba(181, 123, 37, 0.42);
    background: #0d0d0c;
    color: #fffdf8;
    padding: 15px 18px;
    outline: none;
}

.blog-search-form button {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    border: 1px solid #e4b764;
    background-color: #e4b764;
    background-image: linear-gradient(135deg, #11100e 0%, #2d2416 17%, #5a421b 31%, #8d6226 46%, #e4b764 61%, #fff0b2 75%, #c68f2f 89%, #765019 100%);
    background-size: 240% 100%;
    background-position: 100% 0;
    color: #15120f;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.blog-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 1.5rem;
}

.blog-result-count {
    color: #e8e1d5;
    font-weight: 700;
}

.blog-sort-form {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #e8e1d5;
    font-weight: 700;
}

.blog-sort-form select {
    border: 1px solid rgba(181, 123, 37, 0.45);
    background: #0d0d0c;
    color: #fffdf8;
    padding: 10px 14px;
    outline: none;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}

.blog-card {
    overflow: hidden;
    background: rgba(18, 16, 13, 0.9);
    border: 1px solid rgba(228, 183, 100, 0.3);
    box-shadow: none;
}

.blog-card-media {
    position: relative;
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #0d0d0c;
}

.blog-card-media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.blog-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b57b25;
    font-size: 42px;
    background: linear-gradient(135deg, #0b0b0a 0%, #1d1811 100%);
}

.blog-card-date {
    position: absolute;
    left: 20px;
    bottom: 18px;
    padding: 9px 12px;
    color: #fff;
    background: linear-gradient(135deg, #11100e 0%, #3b2d14 100%);
    border: 1px solid rgba(228, 183, 100, 0.72);
    font-size: 14px;
    font-weight: 800;
}

.blog-card-body {
    padding: 26px 28px 30px;
}

.blog-card-category {
    display: inline-block;
    margin-bottom: 14px;
    color: #e4b764;
    font-size: 13px;
    font-weight: 800;
    border-bottom: 2px solid #e4b764;
}

.blog-card-title {
    margin: 0 0 12px;
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    line-height: 1.3;
    color: #fffdf8;
}

.blog-card-title a {
    color: inherit;
}

.blog-card-excerpt {
    color: #d9d2c7;
    line-height: 1.75;
    margin-bottom: 24px;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 132px;
    padding: 13px 22px;
    color: #15120f;
    background-color: #e4b764;
    background-image: linear-gradient(135deg, #11100e 0%, #2d2416 17%, #5a421b 31%, #8d6226 46%, #e4b764 61%, #fff0b2 75%, #c68f2f 89%, #765019 100%);
    background-size: 240% 100%;
    background-position: 100% 0;
    border: 1px solid #e4b764;
    font-size: 14px;
    font-weight: 800;
}

.blog-read-more:hover,
.blog-read-more:focus {
    color: #e4b764;
    background-color: #11100e;
    background-position: 0 0;
}

.blog-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 2.75rem;
}

.blog-pagination .page-numbers {
    min-width: 42px;
    height: 42px;
    padding: 0 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #e4b764;
    background: #12100d;
    border: 1px solid rgba(181, 123, 37, 0.42);
    font-weight: 800;
}

.blog-pagination .page-numbers.current,
.blog-pagination .page-numbers:hover,
.blog-pagination .page-numbers:focus {
    color: #15120f;
    background: #e4b764;
    border-color: #e4b764;
}

.blog-empty {
    max-width: 100%;
}

.blog-empty h2,
.blog-section-title {
    font-family: 'Playfair Display', serif;
    color: #fffdf8;
    margin-bottom: 0.75rem;
}

.blog-single {
    max-width: 980px;
    margin: 0 auto;
}

.blog-single-header {
    margin-bottom: 1.75rem;
}

.blog-single-title {
    font-family: 'Playfair Display', serif;
    color: #fffdf8;
    font-size: 56px;
    line-height: 1.18;
    margin: 0.5rem 0 1rem;
}

.blog-single-meta {
    display: flex;
    gap: 16px;
    color: #cfc7ba;
    font-weight: 700;
}

.blog-single-media {
    margin-bottom: 2rem;
}

.blog-single-media img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border: 5px solid transparent;
    border-image: linear-gradient(135deg, #6f4813 0%, #d8a646 18%, #fff0a7 33%, #b77d24 52%, #f6d77d 72%, #a66d1d 88%, #5d3b0e 100%) 1;
    box-shadow: none;
}

.blog-single-content {
    color: #e8e1d5;
    line-height: 1.8;
    font-size: 17px;
}

.blog-single-content h2,
.blog-single-content h3,
.blog-single-content h4 {
    font-family: 'Playfair Display', serif;
    color: #fffdf8;
    margin: 2rem 0 1rem;
}

.blog-single-content img {
    max-width: 100%;
    height: auto;
}

.blog-post-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 2.5rem;
}

.blog-post-nav a {
    display: block;
    padding: 18px;
    color: #fffdf8;
    background: rgba(18, 16, 13, 0.92);
    border: 1px solid rgba(181, 123, 37, 0.38);
}

.blog-post-nav span {
    display: block;
    color: #b57b25;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.blog-related {
    max-width: 980px;
    margin: 4rem auto 0;
}

.blog-search-form input::placeholder {
    color: #948b7d;
}

.blog-search-form input:focus,
.blog-sort-form select:focus {
    border-color: #b57b25;
    box-shadow: 0 0 0 3px rgba(228, 183, 100, 0.18);
}

.blog-search-form button,
.blog-read-more {
    transition: color 0.35s ease, background-position 0.45s ease, border-color 0.35s ease;
}

.blog-search-form button:hover,
.blog-search-form button:focus {
    color: #e4b764;
    background-color: #11100e;
    background-position: 0 0;
    border-color: #e4b764;
}

.blog-card {
    transition: border-color 0.35s ease, box-shadow 0.35s ease;
}

.blog-card:hover,
.blog-card:focus-within {
    border-color: rgba(181, 123, 37, 0.7);
    box-shadow: none;
}

.blog-card-category {
    color: #e4b764;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.blog-card-category:hover,
.blog-card-category:focus,
.blog-card-title a:hover,
.blog-card-title a:focus {
    color: #f0cc7d;
}

.blog-card-category:hover,
.blog-card-category:focus {
    border-color: #b57b25;
}

.blog-single-meta i {
    color: #b57b25;
}

.blog-single-content a,
.page-content-article .entry-content a {
    color: #e4b764;
    text-decoration-color: rgba(181, 123, 37, 0.55);
    text-underline-offset: 3px;
}

.blog-single-content a:hover,
.blog-single-content a:focus,
.page-content-article .entry-content a:hover,
.page-content-article .entry-content a:focus {
    color: #f1d48a;
}

.blog-single-content blockquote,
.page-content-article .entry-content blockquote {
    margin: 1.75rem 0;
    padding: 18px 22px;
    color: #eee7da;
    background: #17140f;
    border-left: 4px solid #e4b764;
}

.blog-post-nav a {
    transition: color 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
}

.blog-post-nav a:hover,
.blog-post-nav a:focus {
    color: #e4b764;
    background: #19150f;
    border-color: #b57b25;
}

.blog-empty > h2::after,
.blog-section-title::after {
    content: "";
    display: block;
    width: 72px;
    height: 2px;
    margin-top: 10px;
    background: linear-gradient(90deg, #b57b25 0%, #e4b764 58%, rgba(228, 183, 100, 0) 100%);
}

.page-content-section {
    color: #e8e1d5;
    background: linear-gradient(150deg, #111111 0%, #17140f 50%, #211a10 100%);
}

.page-content-article {
    max-width: 980px;
    margin: 0 auto;
}

.page-content-media {
    border: 5px solid transparent;
    border-image: linear-gradient(135deg, #6f4813 0%, #d8a646 18%, #fff0a7 33%, #b77d24 52%, #f6d77d 72%, #a66d1d 88%, #5d3b0e 100%) 1;
}

.page-content-media img {
    display: block;
    width: 100%;
    height: auto;
}

.page-content-article .entry-content h2,
.page-content-article .entry-content h3,
.page-content-article .entry-content h4 {
    color: #e4b764;
    font-family: 'Playfair Display', serif;
}

.page-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 2rem;
    color: #b57b25;
    font-weight: 700;
}

/*------------------
------End Blog------
------------------*/

/*--------------------
---Start Responsive---
--------------------*/

@media (max-width: 1199.99px){
}

@media (max-width: 991.99px){
    .img-about-pink{
        padding: 0 0 50px;
    }

    .div-reviews-business{
        position: inherit;
        top: 0;
        left: 0;
        transform: initial;
    }

    /*.service-item {*/
    /*    height: 450px;*/
    /*}*/

    .img-absolute-2 {
        top: 20%;
    }
    
    .banner-parallax {
        background-attachment: scroll;
    }

    .section-service-home .servicer-item-link {
        padding: 8px;
    }

    .section-service-home .service-item-name {
        left: 18px;
        right: 62px;
        bottom: 18px;
    }

    .section-service-home .service-item-icon {
        right: 18px;
        bottom: 18px;
        width: 34px;
        height: 34px;
        font-size: 12px;
    }

    .blog-grid {
        gap: 22px;
    }

.blog-card-title {
        font-size: 20px;
    }
}

@media (max-width: 767.99px){
    .btn-free-wifi{
        font-size: 12px;
    }
    
    .btn-free-wifi i{
        height: 30px;
        width: 30px;
    }

    .img-absolute-3 {
        top: unset;
        bottom: 0;
        transform: none;
    }

    .gallery-image-box {
        height: 250px;
    }

    .div-img-services {
        padding-top: 40px;
        padding-bottom: 40px;
        padding-right: 40px;
    }

    .services-page .div-img-services {
        padding: 42px 42px 42px 0;
    }

    .services-page .service-card {
        padding: 16px 16px 16px 18px;
    }

    .section-service-home .row {
        --bs-gutter-x: 1rem;
        --bs-gutter-y: 1rem;
    }

    .section-service-home .servicer-item-link {
        border-radius: 5px;
        box-shadow: 0 14px 32px rgba(39, 37, 42, 0.1);
    }

    .section-service-home .servicer-item-link:hover,
    .section-service-home .servicer-item-link:focus {
        transform: translateY(-5px);
    }

    .section-service-home .service-item-wrap::after {
        top: 12px;
        right: 12px;
        width: 42px;
        height: 42px;
    }

    .blog-toolbar {
        align-items: flex-start;
        flex-direction: column;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-card-body {
        padding: 22px;
    }

    .blog-post-nav {
        grid-template-columns: 1fr;
    }

    .blog-single-title {
        font-size: 38px;
    }
}

@media (max-width: 575.99px) {
    .banner-parallax {
        padding: 0px 0px;
    }

    .banner-parallax img {
        max-width: 100%;
        animation-name: show-banner-img;
        animation-duration: 1.5s;
        animation-delay: 1.5s;
        animation-fill-mode: forwards;
        opacity: 0;
    }

    .gallery-image-box {
        height: 200px;
    }

    .img-absolute-2 {
        top: 0;
    }

    .img-absolute-6 {
        display: none;
    }

    .section-service-home .servicer-item-link {
        padding: 10px;
        border-radius: 6px;
        box-shadow: 0 18px 45px rgba(39, 37, 42, 0.08);
    }

    .section-service-home .servicer-item-link:hover,
    .section-service-home .servicer-item-link:focus {
        transform: translateY(-8px);
        box-shadow: 0 24px 60px rgba(39, 37, 42, 0.14);
    }

    .section-service-home .service-item-wrap::after {
        top: 16px;
        right: 16px;
        width: 54px;
        height: 54px;
    }

    .section-service-home .service-item-name {
        left: 22px;
        right: 74px;
        bottom: 22px;
    }

    .section-service-home .service-item-name h6 {
        font-size: 20px;
    }

    .section-service-home .service-item-icon {
        right: 22px;
        bottom: 22px;
        width: 38px;
        height: 38px;
        font-size: 14px;
        opacity: 0;
        transform: translate(12px, 12px) rotate(-20deg);
    }

    .blog-search-panel {
        padding: 8px;
        margin-bottom: 2rem;
    }

    .blog-search-form input {
        padding: 13px 14px;
    }

    .blog-search-form button {
        flex-basis: 44px;
        width: 44px;
        height: 44px;
    }

    .blog-card-date {
        left: 14px;
        bottom: 14px;
    }

    .blog-single-title {
        font-size: 34px;
    }

    .services-page .service-category-media,
    .services-page .service-category-content {
        margin-bottom: 1rem;
    }

    .services-page .div-img-services {
        padding: 28px;
    }

    .services-page .div-img-services::before {
        width: 100%;
    }

    .services-page .service-card {
        padding: 16px 14px;
        border-left-width: 4px;
    }

    .services-page .service-card::before {
        display: none;
    }

    .services-page .service-title {
        font-size: 18px;
    }

    .services-page .service-line {
        gap: 12px;
    }

    .services-page .service-cost {
        flex-basis: 46%;
        min-width: 84px;
    }

    .services-page .service-price {
        min-width: 66px;
        padding: 7px 9px;
        font-size: 15px;
    }

    .services-page .sub-service-card {
        margin-left: 10px;
        padding: 13px 12px 13px 16px;
    }

    .services-page .sub-service-card::before,
    .services-page .sub-service-card::after {
        display: none;
    }
}

/* Compact service details modal used by Home service cards. */
.home-service-modal .modal-content {
    position: relative;
    overflow: hidden;
    background: #fffdf8;
    border: 1px solid #b57b25;
    border-radius: 0;
    box-shadow: 0 24px 70px rgba(17, 16, 14, 0.3);
}

.home-service-modal .home-service-modal-media {
    position: relative;
    margin: 14px 14px 0;
    padding: 5px;
    background:
        linear-gradient(90deg, transparent 0 16%, rgba(255, 248, 202, 0.92) 23%, transparent 31% 68%, rgba(255, 243, 181, 0.76) 77%, transparent 85%),
        linear-gradient(135deg, #6f4813 0%, #b77d24 12%, #fff0a7 28%, #d29c3f 42%, #815519 58%, #f6d77d 75%, #a66d1d 89%, #5d3b0e 100%);
    overflow: hidden;
}

.home-service-modal .home-service-modal-media[hidden] {
    display: none;
}

.home-service-modal .home-service-modal-image {
    position: relative;
    z-index: 1;
    overflow: hidden;
    background: #e8dfce;
}

.home-service-modal .home-service-modal-image::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: -70%;
    z-index: 2;
    width: 42%;
    background: linear-gradient(105deg, transparent 0%, rgba(255, 255, 255, 0.12) 25%, rgba(255, 250, 222, 0.68) 50%, rgba(255, 255, 255, 0.12) 75%, transparent 100%);
    pointer-events: none;
    transition: left 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.home-service-modal .home-service-modal-media:hover .home-service-modal-image::after {
    left: 130%;
}

.home-service-modal .home-service-modal-media img {
    display: block;
    position: absolute;
    inset: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: transform 0.5s ease;
}

.home-service-modal .home-service-modal-media:hover img {
    transform: scale(1.045);
}

.home-service-modal .home-service-modal-frame {
    position: absolute;
    inset: 0;
    z-index: 5;
    box-sizing: border-box;
    border: 5px solid transparent;
    border-image: linear-gradient(135deg, #6f4813 0%, #d8a646 18%, #fff0a7 33%, #b77d24 52%, #f6d77d 72%, #a66d1d 88%, #5d3b0e 100%) 1;
    pointer-events: none;
}

.home-service-modal .home-service-modal-frame::before {
    content: "";
    position: absolute;
    inset: 8px;
    border: 1px solid rgba(244, 215, 126, 0.86);
}

.home-service-modal .home-service-modal-copy {
    padding: 22px 22px 26px;
    text-align: center;
}

.home-service-modal .home-service-modal-copy h6 {
    margin: 0 0 10px;
    color: #fffdf8;
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: 0;
}

.home-service-modal .home-service-modal-price {
    margin: 0;
}

.home-service-modal .home-service-modal-description,
.home-service-modal .home-service-modal-description p {
    color: #424242;
    font-size: 15px;
    line-height: 1.7;
}

.home-service-modal .home-service-modal-description {
    margin-top: 16px;
}

.home-service-modal .home-service-modal-description p:last-child {
    margin-bottom: 0;
}

.home-service-modal .home-service-modal-actions {
    display: flex;
    justify-content: center;
    margin-top: 22px;
}

.home-service-modal .home-service-modal-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    padding: 0;
    color: #15120f;
    background-color: #e4b764;
    background-image: linear-gradient(135deg, #11100e 0%, #2d2416 17%, #5a421b 31%, #8d6226 46%, #e4b764 61%, #fff0b2 75%, #c68f2f 89%, #765019 100%);
    background-size: 240% 100%;
    background-position: 100% 0;
    border: 1px solid #e4b764;
    border-radius: 50%;
    font-size: 17px;
    line-height: 1;
    transition: color 0.35s ease, background-position 0.45s ease, border-color 0.35s ease;
}

.home-service-modal .home-service-modal-close:hover,
.home-service-modal .home-service-modal-close:focus {
    color: #e4b764;
    background-color: #11100e;
    background-position: 0 0;
    border-color: #e4b764;
}

/* Home subtitles: editorial gold accents without badge styling. */
body.home h3.sub-title,
body.page-template-page-home h3.sub-title {
    position: relative;
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin: 0 0 18px;
    padding: 0 0 11px;
    color: #b57b25;
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    font-weight: 700;
    font-style: normal;
    line-height: 1.35;
    letter-spacing: 0;
    text-transform: uppercase;
    text-shadow: 0 1px 2px rgba(17, 16, 14, 0.2);
}

body.home h3.sub-title,
body.home .section-service-home h3.sub-title,
body.home .section-gallery-home h3.sub-title,
body.page-template-page-home h3.sub-title,
body.page-template-page-home .section-service-home h3.sub-title,
body.page-template-page-home .section-gallery-home h3.sub-title {
    color: #b57b25;
}

body.home h3.sub-title::after,
body.page-template-page-home h3.sub-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 64px;
    height: 2px;
    background: linear-gradient(90deg, #7d5116 0%, #e4b764 48%, rgba(228, 183, 100, 0) 100%);
}

body.home h3.sub-title.text-center,
body.page-template-page-home h3.sub-title.text-center {
    display: flex;
    justify-content: center;
    width: 100%;
    padding-bottom: 0;
    gap: 14px;
}

body.home h3.sub-title.text-center::before,
body.home h3.sub-title.text-center::after,
body.page-template-page-home h3.sub-title.text-center::before,
body.page-template-page-home h3.sub-title.text-center::after {
    content: "";
    position: static;
    flex: 0 1 54px;
    width: 54px;
    height: 1px;
    background: linear-gradient(90deg, rgba(125, 81, 22, 0) 0%, #c98f32 55%, #f0cf79 100%);
}

body.home h3.sub-title.text-center::after,
body.page-template-page-home h3.sub-title.text-center::after {
    background: linear-gradient(90deg, #f0cf79 0%, #c98f32 45%, rgba(125, 81, 22, 0) 100%);
}

@media (max-width: 575.99px) {
    body.home h3.sub-title,
    body.page-template-page-home h3.sub-title {
        font-size: 14px;
    }

    body.home h3.sub-title.text-center,
    body.page-template-page-home h3.sub-title.text-center {
        gap: 10px;
    }

    body.home h3.sub-title.text-center::before,
    body.home h3.sub-title.text-center::after,
    body.page-template-page-home h3.sub-title.text-center::before,
    body.page-template-page-home h3.sub-title.text-center::after {
        flex-basis: 34px;
        width: 34px;
    }
}

@media (max-width: 420px) {
    .services-page .service-line {
        flex-wrap: wrap;
    }

    .services-page .service-copy,
    .services-page .service-cost {
        flex: 1 1 100%;
    }

    .services-page .service-cost {
        justify-content: flex-start;
    }

    .services-page .service-price {
        margin-left: 0;
    }
}

@media (max-width: 480px) {
    .logo-menu img{
        max-width: 8.5rem;    
    }
    
    .col-services h5{
        font-size: 16px;
    }   
    
    h3.sub-title.large {
        font-size: 44px;
    }

    h2.title{
        font-size: 28px;
    }
    
    .info-contact-header {
        font-size: 13px;
    }
}

/*------------------
---End Responsive---
------------------*/

/*------------------------------
---Home Luxury Color Refresh----
------------------------------*/
body.home,
body.page-template-page-home {
    background: #fffdf8;
}

body.home a:hover,
body.home a:focus,
body.page-template-page-home a:hover,
body.page-template-page-home a:focus {
    color: #e4b764;
}

body.home h2.title,
body.page-template-page-home h2.title {
    color: #fffdf8;
}

body.home h3.sub-title,
body.page-template-page-home h3.sub-title {
    color: #b57b25;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(17, 16, 14, 0.22);
}

body.home .text-pink,
body.page-template-page-home .text-pink {
    color: #e4b764;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(17, 16, 14, 0.22);
}

body.home .section-service-home.bg-pink,
body.page-template-page-home .section-service-home.bg-pink {
    background-color: #f2e8ca;
}

body.home .section-gallery-home.bg-pink,
body.page-template-page-home .section-gallery-home.bg-pink {
    background-color: #f2e8ca;
}

body.home .section-about-home,
body.home .section-reviews-home,
body.home .section-contact-home,
body.page-template-page-home .section-about-home,
body.page-template-page-home .section-reviews-home,
body.page-template-page-home .section-contact-home {
    background-color: #f2e8ca;
}

body.home .section-service-home h2.title,
body.home .section-gallery-home h2.title,
body.page-template-page-home .section-service-home h2.title,
body.page-template-page-home .section-gallery-home h2.title {
    color: #15120f;
}

body.home .section-service-home h3.sub-title,
body.home .section-gallery-home h3.sub-title,
body.page-template-page-home .section-service-home h3.sub-title,
body.page-template-page-home .section-gallery-home h3.sub-title {
    color: #b57b25;
}

body.home .section-gallery-home h2.title,
body.home .section-gallery-home h3.sub-title,
body.page-template-page-home .section-gallery-home h2.title,
body.page-template-page-home .section-gallery-home h3.sub-title {
    color: #15120f;
}

body.home .section-gallery-home h3.sub-title,
body.page-template-page-home .section-gallery-home h3.sub-title {
    color: #b57b25;
}

body.home .btn-pink,
body.page-template-page-home .btn-pink,
body.home .btn-header,
body.page-template-page-home .btn-header,
body.home a[data-bs-toggle="offcanvas"],
body.page-template-page-home a[data-bs-toggle="offcanvas"] {
    color: #15120f;
    background-color: #e4b764;
    background-image: linear-gradient(135deg, #11100e 0%, #2d2416 17%, #5a421b 31%, #8d6226 46%, #e4b764 61%, #fff0b2 75%, #c68f2f 89%, #765019 100%);
    background-size: 240% 100%;
    background-position: 100% 0;
    border-color: #e4b764;
    box-shadow: 0 12px 28px rgba(228, 183, 100, 0.3), inset 0 1px 0 rgba(255, 248, 218, 0.74) !important;
    transition: color 0.35s ease, background-position 0.45s ease, border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
}

body.home .btn-pink:hover,
body.home .btn-pink:focus,
body.page-template-page-home .btn-pink:hover,
body.page-template-page-home .btn-pink:focus,
body.home .btn-header:hover,
body.home .btn-header:focus,
body.page-template-page-home .btn-header:hover,
body.page-template-page-home .btn-header:focus,
body.home a[data-bs-toggle="offcanvas"]:hover,
body.home a[data-bs-toggle="offcanvas"]:focus,
body.page-template-page-home a[data-bs-toggle="offcanvas"]:hover,
body.page-template-page-home a[data-bs-toggle="offcanvas"]:focus {
    color: #e4b764;
    background-color: #11100e;
    background-position: 0 0;
    border-color: #e4b764;
    box-shadow: 0 14px 30px rgba(17, 16, 14, 0.24), inset 0 1px 0 rgba(228, 183, 100, 0.28) !important;
}

body.home .btn-light:hover,
body.page-template-page-home .btn-light:hover {
    color: #e4b764 !important;
    background-color: #11100e !important;
    border-color: #e4b764 !important;
}

body.home .input-pink,
body.page-template-page-home .input-pink {
    color: #15120f;
    background-color: #fffdf8;
    border-color: rgba(185, 144, 63, 0.58);
    box-shadow: 0 12px 28px rgba(17, 16, 14, 0.08) !important;
}

body.home .input-pink::placeholder,
body.page-template-page-home .input-pink::placeholder {
    color: #8e8575;
}

body.home .input-pink:focus,
body.page-template-page-home .input-pink:focus {
    border-color: #e4b764;
    box-shadow: 0 0 0 3px rgba(185, 144, 63, 0.16) !important;
}

body.home .info-contact-header,
body.page-template-page-home .info-contact-header {
    color: #f9f3e5;
    background-color: #11100e;
}

body.home .nav-header,
body.page-template-page-home .nav-header {
    background-color: #fffdf8 !important;
    border-bottom: 1px solid rgba(185, 144, 63, 0.2);
}

body.home .nav-link,
body.page-template-page-home .nav-link {
    color: #15120f;
}

body.home .nav-link.active,
body.home .nav-link:focus,
body.home .nav-link:hover,
body.page-template-page-home .nav-link.active,
body.page-template-page-home .nav-link:focus,
body.page-template-page-home .nav-link:hover {
    color: #e4b764 !important;
}

body.home #mobileMenu.offcanvas-start,
body.page-template-page-home #mobileMenu.offcanvas-start {
    color: #f8f1df;
    background: linear-gradient(160deg, #11100e 0%, #272014 54%, #e4b764 140%);
}

body.home #mobileMenu a,
body.page-template-page-home #mobileMenu a {
    color: #fff8e8;
}

body.home #mobileMenu a.active,
body.page-template-page-home #mobileMenu a.active {
    color: #e4b764;
}

body.home .cricle-pink,
body.home .item-social-header,
body.page-template-page-home .cricle-pink,
body.page-template-page-home .item-social-header {
    color: #15120f;
    background-color: #e4b764;
    background-image: linear-gradient(135deg, #11100e 0%, #2d2416 17%, #5a421b 31%, #8d6226 46%, #e4b764 61%, #fff0b2 75%, #c68f2f 89%, #765019 100%);
    background-size: 240% 100%;
    background-position: 100% 0;
    transition: color 0.35s ease, background-position 0.45s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

body.home .item-social-header:hover,
body.page-template-page-home .item-social-header:hover {
    color: #e4b764;
    background-color: #11100e;
    background-position: 0 0;
    border-color: #e4b764;
}

body.home .banner-parallax,
body.page-template-page-home .banner-parallax {
    background: #11100e;
    background-image: url('../images/banner-bg.jpg');
    background-position: center;
    background-size: cover;
    overflow: hidden;
}

body.home .banner-parallax::before,
body.page-template-page-home .banner-parallax::before {
    display: none;
}

body.home .banner-parallax::after,
body.page-template-page-home .banner-parallax::after {
    display: none;
}

body.home .banner-parallax img,
body.page-template-page-home .banner-parallax img {
    position: relative;
    z-index: 1;
    border: 1px solid rgba(228, 183, 100, 0.6);
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.38) !important;
}

body.home .img-about-2,
body.home .section-reviews-home img,
body.page-template-page-home .img-about-2,
body.page-template-page-home .section-reviews-home img {
    border: 5px solid rgba(185, 144, 63, 0.38);
}

body.home .img-absolute-1,
body.home .img-absolute-2,
body.home .img-absolute-3,
body.home .img-absolute-4,
body.home .img-absolute-5,
body.home .img-absolute-6,
body.home .img-absolute-7,
body.page-template-page-home .img-absolute-1,
body.page-template-page-home .img-absolute-2,
body.page-template-page-home .img-absolute-3,
body.page-template-page-home .img-absolute-4,
body.page-template-page-home .img-absolute-5,
body.page-template-page-home .img-absolute-6,
body.page-template-page-home .img-absolute-7 {
    opacity: 0.22;
}

body.home .section-service-home .servicer-item-link,
body.page-template-page-home .section-service-home .servicer-item-link {
    color: #15120f;
    background: rgba(255, 253, 248, 0.72);
    border-color: rgba(228, 183, 100, 0.48);
    box-shadow: 0 20px 48px rgba(17, 16, 14, 0.16);
}

body.home .section-service-home .servicer-item-link::before,
body.page-template-page-home .section-service-home .servicer-item-link::before {
    border-color: rgba(228, 183, 100, 0.72);
}

body.home .section-service-home .servicer-item-link:hover,
body.home .section-service-home .servicer-item-link:focus,
body.page-template-page-home .section-service-home .servicer-item-link:hover,
body.page-template-page-home .section-service-home .servicer-item-link:focus {
    color: #15120f;
    border-color: #e4b764;
    box-shadow: 0 26px 64px rgba(17, 16, 14, 0.24);
}

body.home .section-service-home .service-item-wrap::before,
body.page-template-page-home .section-service-home .service-item-wrap::before {
    background: linear-gradient(180deg, rgba(17, 16, 14, 0.04) 8%, rgba(17, 16, 14, 0.84) 100%);
}

body.home .section-service-home .service-item-wrap::after,
body.page-template-page-home .section-service-home .service-item-wrap::after {
    border-color: rgba(228, 183, 100, 0.95);
}

body.home .section-service-home .service-item-icon,
body.page-template-page-home .section-service-home .service-item-icon {
    color: #15120f;
    background: linear-gradient(135deg, #11100e 0%, #2d2416 17%, #5a421b 31%, #8d6226 46%, #e4b764 61%, #fff0b2 75%, #c68f2f 89%, #765019 100%);
    background-size: 240% 100%;
    background-position: 100% 0;
    box-shadow: 0 10px 24px rgba(17, 16, 14, 0.32);
}

body.home .section-service-home .servicer-item-link:hover .service-item-icon,
body.home .section-service-home .servicer-item-link:focus .service-item-icon,
body.page-template-page-home .section-service-home .servicer-item-link:hover .service-item-icon,
body.page-template-page-home .section-service-home .servicer-item-link:focus .service-item-icon {
    color: #e4b764;
    background-position: 0 0;
}

body.home .section-service-home .service-item-name h6,
body.page-template-page-home .section-service-home .service-item-name h6 {
    color: #fff8e8;
}

body.home .section-service-home .servicer-item-link:hover .service-item-name h6,
body.home .section-service-home .servicer-item-link:focus .service-item-name h6,
body.page-template-page-home .section-service-home .servicer-item-link:hover .service-item-name h6,
body.page-template-page-home .section-service-home .servicer-item-link:focus .service-item-name h6 {
    color: #e4b764;
}

body.home .our-reviews-pink,
body.page-template-page-home .our-reviews-pink {
    background-color: #f2e8ca;
}

body.home .home-reviews-slider-wrap,
body.page-template-page-home .home-reviews-slider-wrap {
    margin-top: 1.25rem;
}

body.home .div-reviews-business,
body.page-template-page-home .div-reviews-business {
    position: static;
    width: 100%;
    transform: none;
}

body.home .element-reviews-pink,
body.page-template-page-home .element-reviews-pink {
    position: static;
}

body.home .slick-reviews .slick-track,
body.page-template-page-home .slick-reviews .slick-track {
    display: flex;
    align-items: stretch;
}

body.home .slick-reviews .slick-slide,
body.page-template-page-home .slick-reviews .slick-slide {
    height: auto;
}

body.home .fluid-review,
body.page-template-page-home .fluid-review {
    position: relative;
    display: flex !important;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
    overflow: visible;
    color: #302b23;
    padding: 0 26px;
    background: transparent;
    border: 0;
    box-shadow: none;
    text-align: center;
}

body.home .fluid-review::before,
body.page-template-page-home .fluid-review::before {
    content: "\201C";
    position: static;
    order: 1;
    display: block;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 64px;
    font-weight: 700;
    line-height: 0.82;
    height: 36px;
    margin-bottom: 0.15rem;
    color: rgba(174, 124, 38, 0.78);
    pointer-events: none;
}

body.home .fluid-review::after,
body.page-template-page-home .fluid-review::after {
    display: none;
}

body.home .fluid-review > p:first-child,
body.page-template-page-home .fluid-review > p:first-child {
    position: relative;
    order: 3;
    z-index: 1;
    color: #a97528 !important;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0;
    margin: 0;
}

body.home .fluid-review .content-review,
body.page-template-page-home .fluid-review .content-review {
    position: relative;
    order: 2;
    z-index: 1;
}

body.home .fluid-review .content-review .text-warning,
body.page-template-page-home .fluid-review .content-review .text-warning {
    display: none;
}

body.home .fluid-review i,
body.page-template-page-home .fluid-review i {
    color: inherit;
}

body.home .fluid-review .content-review p:last-child,
body.page-template-page-home .fluid-review .content-review p:last-child {
    color: #424242;
    margin-bottom: 1rem !important;
    letter-spacing: 0;
}

body.home .slick-reviews .slick-dots,
body.page-template-page-home .slick-reviews .slick-dots {
    position: static;
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 16px 0 0;
    padding: 0;
    list-style: none;
}

body.home .slick-reviews .slick-dots li,
body.page-template-page-home .slick-reviews .slick-dots li {
    width: auto;
    height: auto;
    margin: 0;
}

body.home .slick-reviews .slick-dots button,
body.page-template-page-home .slick-reviews .slick-dots button {
    width: 7px;
    height: 7px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(174, 124, 38, 0.32);
    font-size: 0;
}

body.home .slick-reviews .slick-dots .slick-active button,
body.page-template-page-home .slick-reviews .slick-dots .slick-active button {
    background: #a97528;
}

@media (max-width: 767.99px) {
    body.home .fluid-review,
    body.page-template-page-home .fluid-review {
        padding: 0 16px;
    }
}

body.home .gallery-image-box,
body.page-template-page-home .gallery-image-box {
    aspect-ratio: 5 / 7;
    height: auto !important;
    border: 6px solid transparent;
    border-image: linear-gradient(135deg, #8f6825 0%, #f6dd8d 24%, #fff4ba 40%, #b9822d 60%, #e4b764 78%, #7b5219 100%) 1;
    background-color: #f8e5bd;
    box-shadow: 0 18px 42px rgba(73, 54, 20, 0.16), inset 0 0 0 1px rgba(255, 248, 219, 0.68) !important;
}

body.home .home-gallery-slider,
body.page-template-page-home .home-gallery-slider {
    width: 100%;
    margin-top: 1.25rem;
}

body.home .home-gallery-slider .slick-list,
body.page-template-page-home .home-gallery-slider .slick-list {
    overflow: hidden;
}

body.home .home-gallery-slide,
body.page-template-page-home .home-gallery-slide {
    padding: 0 12px;
}

body.home .overlay-img-pink,
body.page-template-page-home .overlay-img-pink {
    z-index: 2;
    color: #e4b764;
    background-color: rgba(17, 16, 14, 0.82);
}

@media (max-width: 767.99px) {
    body.home .home-gallery-slide,
    body.page-template-page-home .home-gallery-slide {
        padding: 0 10px;
    }

    body.home .gallery-image-box,
    body.page-template-page-home .gallery-image-box {
        border-width: 5px;
    }

}

@media (max-width: 575.99px) {
    body.home .home-gallery-slide,
    body.page-template-page-home .home-gallery-slide {
        padding: 0 7px;
    }

    body.home .gallery-image-box,
    body.page-template-page-home .gallery-image-box {
        border-width: 4px;
    }

}

body.home .section-contact-home,
body.page-template-page-home .section-contact-home {
    background-color: #f2e8ca;
}

body.home .scroll-to-top,
body.page-template-page-home .scroll-to-top {
    color: #15120f;
    background-color: #e4b764;
    background-image: linear-gradient(135deg, #11100e 0%, #2d2416 17%, #5a421b 31%, #8d6226 46%, #e4b764 61%, #fff0b2 75%, #c68f2f 89%, #765019 100%);
    background-size: 240% 100%;
    background-position: 100% 0;
    border-color: #e4b764;
    transition: color 0.35s ease, background-position 0.45s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

body.home .scroll-to-top:hover,
body.page-template-page-home .scroll-to-top:hover {
    color: #e4b764;
    background-color: #11100e;
    background-position: 0 0;
    border-color: #e4b764;
}

body.home .footer,
body.page-template-page-home .footer {
    background-color: #11100e;
}

body.home .footer .footer-main,
body.page-template-page-home .footer .footer-main {
    color: #fff;
    background: linear-gradient(135deg, #11100e 0%, #1d1811 62%, #3b2d14 100%);
}

body.home .footer-main .footer-col-title,
body.page-template-page-home .footer-main .footer-col-title {
    color: #e4b764;
}

body.home .footer-main hr,
body.page-template-page-home .footer-main hr {
    border-color: rgba(214, 183, 106, 0.5);
    opacity: 1;
}

body.home .footer-main .footer-col-content i,
body.page-template-page-home .footer-main .footer-col-content i {
    color: #e4b764;
}

body.home .footer-main .list-social li,
body.page-template-page-home .footer-main .list-social li {
    color: #15120f;
    background-color: #e4b764;
    background-image: linear-gradient(135deg, #11100e 0%, #2d2416 17%, #5a421b 31%, #8d6226 46%, #e4b764 61%, #fff0b2 75%, #c68f2f 89%, #765019 100%);
    background-size: 240% 100%;
    background-position: 100% 0;
}

body.home .footer-main .list-social li:hover,
body.page-template-page-home .footer-main .list-social li:hover {
    background-color: #11100e;
    background-position: 0 0;
}

body.home .footer-main .list-social li a,
body.page-template-page-home .footer-main .list-social li a {
    color: #15120f;
}

body.home .footer-main .list-social li:hover a,
body.page-template-page-home .footer-main .list-social li:hover a {
    color: #e4b764;
}

body.home .footer .footer-absolute,
body.page-template-page-home .footer .footer-absolute {
    color: #15120f;
    background-color: #e4b764;
    border-top-color: #e4b764;
}

/* Home services: royal gold frames with content below the artwork. */
body.home .section-service-home .servicer-item-link,
body.page-template-page-home .section-service-home .servicer-item-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 0;
    color: #15120f;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
    overflow: visible;
    transition: color 0.35s ease;
}

body.home .section-service-home .servicer-item-link::before,
body.page-template-page-home .section-service-home .servicer-item-link::before {
    content: none;
}

body.home .section-service-home .servicer-item-link:hover,
body.home .section-service-home .servicer-item-link:focus-within,
body.page-template-page-home .section-service-home .servicer-item-link:hover,
body.page-template-page-home .section-service-home .servicer-item-link:focus-within {
    color: #15120f;
    border: 0;
    box-shadow: none;
    transform: none;
}

body.home .section-service-home .service-item-wrap,
body.page-template-page-home .section-service-home .service-item-wrap {
    position: relative;
    padding: 5px;
    overflow: hidden;
    border: 0;
    border-radius: 0;
    background:
        linear-gradient(90deg, transparent 0 16%, rgba(255, 248, 202, 0.92) 23%, transparent 31% 68%, rgba(255, 243, 181, 0.76) 77%, transparent 85%),
        linear-gradient(135deg, #6f4813 0%, #b77d24 12%, #fff0a7 28%, #d29c3f 42%, #815519 58%, #f6d77d 75%, #a66d1d 89%, #5d3b0e 100%);
    cursor: pointer;
}

body.home .section-service-home .servicer-item-link:hover .service-item-wrap,
body.home .section-service-home .servicer-item-link:focus-within .service-item-wrap,
body.page-template-page-home .section-service-home .servicer-item-link:hover .service-item-wrap,
body.page-template-page-home .section-service-home .servicer-item-link:focus-within .service-item-wrap {
    padding: 5px;
    border: 0;
    background:
        linear-gradient(90deg, transparent 0 16%, rgba(255, 248, 202, 0.92) 23%, transparent 31% 68%, rgba(255, 243, 181, 0.76) 77%, transparent 85%),
        linear-gradient(135deg, #6f4813 0%, #b77d24 12%, #fff0a7 28%, #d29c3f 42%, #815519 58%, #f6d77d 75%, #a66d1d 89%, #5d3b0e 100%);
}

body.home .section-service-home .service-item-wrap::before,
body.page-template-page-home .section-service-home .service-item-wrap::before,
body.home .section-service-home .service-item-wrap::after,
body.page-template-page-home .section-service-home .service-item-wrap::after,
body.home .section-service-home .service-frame-corners::before,
body.page-template-page-home .section-service-home .service-frame-corners::before,
body.home .section-service-home .service-frame-corners::after,
body.page-template-page-home .section-service-home .service-frame-corners::after {
    content: "";
    position: absolute;
    z-index: 4;
    width: 31px;
    height: 31px;
    opacity: 1;
    background: transparent;
    pointer-events: none;
    transition: border-color 0.35s ease, opacity 0.35s ease;
}

body.home .section-service-home .service-item-wrap::before,
body.page-template-page-home .section-service-home .service-item-wrap::before {
    top: 13px;
    left: 13px;
    right: auto;
    bottom: auto;
    border-top: 2px solid rgba(255, 240, 168, 0.96);
    border-left: 2px solid rgba(228, 183, 100, 0.96);
    background: radial-gradient(circle at top left, #fff2b2 0 2px, #9a651b 3px 4px, transparent 5px);
}

body.home .section-service-home .service-item-wrap::after,
body.page-template-page-home .section-service-home .service-item-wrap::after {
    right: 13px;
    bottom: 13px;
    top: auto;
    left: auto;
    border-right: 2px solid rgba(228, 183, 100, 0.96);
    border-bottom: 2px solid rgba(255, 240, 168, 0.96);
    background: radial-gradient(circle at bottom right, #fff2b2 0 2px, #9a651b 3px 4px, transparent 5px);
    border-top: 0;
}

body.home .section-service-home .service-frame-corners,
body.page-template-page-home .section-service-home .service-frame-corners {
    position: absolute;
    inset: 0;
    z-index: 5;
    box-sizing: border-box;
    border: 5px solid transparent;
    border-image: linear-gradient(135deg, #6f4813 0%, #d8a646 18%, #fff0a7 33%, #b77d24 52%, #f6d77d 72%, #a66d1d 88%, #5d3b0e 100%) 1;
    pointer-events: none;
}

body.home .section-service-home .service-frame-corners::before,
body.page-template-page-home .section-service-home .service-frame-corners::before {
    top: 13px;
    right: 13px;
    border-top: 2px solid rgba(255, 240, 168, 0.96);
    border-right: 2px solid rgba(228, 183, 100, 0.96);
    background: radial-gradient(circle at top right, #fff2b2 0 2px, #9a651b 3px 4px, transparent 5px);
}

body.home .section-service-home .service-frame-corners::after,
body.page-template-page-home .section-service-home .service-frame-corners::after {
    bottom: 13px;
    left: 13px;
    border-bottom: 2px solid rgba(255, 240, 168, 0.96);
    border-left: 2px solid rgba(228, 183, 100, 0.96);
    background: radial-gradient(circle at bottom left, #fff2b2 0 2px, #9a651b 3px 4px, transparent 5px);
}

body.home .section-service-home .servicer-item-link:hover .service-item-wrap::before,
body.home .section-service-home .servicer-item-link:hover .service-item-wrap::after,
body.home .section-service-home .servicer-item-link:hover .service-frame-corners::before,
body.home .section-service-home .servicer-item-link:hover .service-frame-corners::after,
body.home .section-service-home .servicer-item-link:focus-within .service-item-wrap::before,
body.home .section-service-home .servicer-item-link:focus-within .service-item-wrap::after,
body.home .section-service-home .servicer-item-link:focus-within .service-frame-corners::before,
body.home .section-service-home .servicer-item-link:focus-within .service-frame-corners::after,
body.page-template-page-home .section-service-home .servicer-item-link:hover .service-item-wrap::before,
body.page-template-page-home .section-service-home .servicer-item-link:hover .service-item-wrap::after,
body.page-template-page-home .section-service-home .servicer-item-link:hover .service-frame-corners::before,
body.page-template-page-home .section-service-home .servicer-item-link:hover .service-frame-corners::after,
body.page-template-page-home .section-service-home .servicer-item-link:focus-within .service-item-wrap::before,
body.page-template-page-home .section-service-home .servicer-item-link:focus-within .service-item-wrap::after,
body.page-template-page-home .section-service-home .servicer-item-link:focus-within .service-frame-corners::before,
body.page-template-page-home .section-service-home .servicer-item-link:focus-within .service-frame-corners::after {
    width: 31px;
    height: 31px;
    opacity: 1;
    transform: none;
}

body.home .section-service-home .service-item,
body.page-template-page-home .section-service-home .service-item {
    position: relative;
    z-index: 1;
    overflow: hidden;
    background: #e8dfce;
    border: 0;
    transform: none;
}

body.home .section-service-home .servicer-item-link:hover .service-item,
body.home .section-service-home .servicer-item-link:focus-within .service-item,
body.page-template-page-home .section-service-home .servicer-item-link:hover .service-item,
body.page-template-page-home .section-service-home .servicer-item-link:focus-within .service-item {
    transform: none;
}

body.home .section-service-home .service-item::after,
body.page-template-page-home .section-service-home .service-item::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: -70%;
    z-index: 2;
    width: 42%;
    background: linear-gradient(105deg, transparent 0%, rgba(255, 255, 255, 0.12) 25%, rgba(255, 250, 222, 0.68) 50%, rgba(255, 255, 255, 0.12) 75%, transparent 100%);
    pointer-events: none;
    transition: left 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
}

body.home .section-service-home .service-item img,
body.page-template-page-home .section-service-home .service-item img {
    z-index: 1;
    transform: scale(1);
    transition: transform 0.5s ease;
}

body.home .section-service-home .servicer-item-link:hover .service-item img,
body.home .section-service-home .servicer-item-link:focus-within .service-item img,
body.page-template-page-home .section-service-home .servicer-item-link:hover .service-item img,
body.page-template-page-home .section-service-home .servicer-item-link:focus-within .service-item img {
    transform: scale(1.045);
}

body.home .section-service-home .servicer-item-link:hover .service-item::after,
body.home .section-service-home .servicer-item-link:focus-within .service-item::after,
body.page-template-page-home .section-service-home .servicer-item-link:hover .service-item::after,
body.page-template-page-home .section-service-home .servicer-item-link:focus-within .service-item::after {
    left: 130%;
}

body.home .section-service-home .service-item-content,
body.page-template-page-home .section-service-home .service-item-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 22px 8px 0;
    text-align: center;
}

body.home .section-service-home .service-item-content h6,
body.page-template-page-home .section-service-home .service-item-content h6 {
    margin: 0 0 10px;
    color: #15120f;
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.35;
    transition: color 0.35s ease;
}

body.home .section-service-home .service-item-content p,
body.page-template-page-home .section-service-home .service-item-content p {
    margin: 0;
    color: #424242;
    font-size: 15px;
}

body.home .section-service-home .service-item-content .service-item-price,
body.page-template-page-home .section-service-home .service-item-content .service-item-price,
.home-service-modal .home-service-modal-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    color: #b57b25;
    font-family: 'Manrope', sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: 0;
}

body.home .section-service-home .service-item-content .service-item-price::before,
body.home .section-service-home .service-item-content .service-item-price::after,
body.page-template-page-home .section-service-home .service-item-content .service-item-price::before,
body.page-template-page-home .section-service-home .service-item-content .service-item-price::after,
.home-service-modal .home-service-modal-price::before,
.home-service-modal .home-service-modal-price::after {
    content: "";
    width: 24px;
    height: 1px;
    background: linear-gradient(90deg, rgba(181, 123, 37, 0) 0%, #e4b764 100%);
}

body.home .section-service-home .service-item-content .service-item-price::after,
body.page-template-page-home .section-service-home .service-item-content .service-item-price::after,
.home-service-modal .home-service-modal-price::after {
    background: linear-gradient(90deg, #e4b764 0%, rgba(181, 123, 37, 0) 100%);
}

body.home .section-service-home .servicer-item-link:hover .service-item-content h6,
body.home .section-service-home .servicer-item-link:focus-within .service-item-content h6,
body.page-template-page-home .section-service-home .servicer-item-link:hover .service-item-content h6,
body.page-template-page-home .section-service-home .servicer-item-link:focus-within .service-item-content h6 {
    color: #a66f1f;
}

body.home .section-service-home .service-details-link,
body.page-template-page-home .section-service-home .service-details-link {
    align-self: center;
    margin-top: 16px;
    color: #b57b25;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    border-bottom: 1px solid rgba(181, 123, 37, 0.45);
    transition: color 0.35s ease, border-color 0.35s ease;
}

body.home .section-service-home .service-details-link:hover,
body.home .section-service-home .service-details-link:focus,
body.page-template-page-home .section-service-home .service-details-link:hover,
body.page-template-page-home .section-service-home .service-details-link:focus {
    color: #7d5116;
    border-color: #7d5116;
}

@media (max-width: 575.99px) {
    body.home .section-service-home .service-item-wrap,
    body.page-template-page-home .section-service-home .service-item-wrap {
        padding: 5px;
    }

    body.home .section-service-home .service-item-content,
    body.page-template-page-home .section-service-home .service-item-content {
        padding: 20px 4px 0;
    }
}

/* Services artwork: replace ornamental corners with one thin inner square. */
body.home .section-service-home .service-frame-corners::before,
body.page-template-page-home .section-service-home .service-frame-corners::before,
body.home .section-service-home .servicer-item-link:hover .service-frame-corners::before,
body.home .section-service-home .servicer-item-link:focus-within .service-frame-corners::before,
body.page-template-page-home .section-service-home .servicer-item-link:hover .service-frame-corners::before,
body.page-template-page-home .section-service-home .servicer-item-link:focus-within .service-frame-corners::before {
    content: "";
    position: absolute;
    inset: 4px;
    width: auto;
    height: auto;
    border: 1px solid rgba(244, 215, 126, 0.86);
    background: transparent;
    opacity: 1;
    transform: none;
}

body.home .section-service-home .service-frame-corners::after,
body.page-template-page-home .section-service-home .service-frame-corners::after,
body.home .section-service-home .servicer-item-link:hover .service-frame-corners::after,
body.home .section-service-home .servicer-item-link:focus-within .service-frame-corners::after,
body.page-template-page-home .section-service-home .servicer-item-link:hover .service-frame-corners::after,
body.page-template-page-home .section-service-home .servicer-item-link:focus-within .service-frame-corners::after {
    content: none;
}

body.home .section-service-home .service-item-wrap::before,
body.home .section-service-home .service-item-wrap::after,
body.home .section-service-home .servicer-item-link:hover .service-item-wrap::before,
body.home .section-service-home .servicer-item-link:hover .service-item-wrap::after,
body.home .section-service-home .servicer-item-link:focus-within .service-item-wrap::before,
body.home .section-service-home .servicer-item-link:focus-within .service-item-wrap::after,
body.page-template-page-home .section-service-home .service-item-wrap::before,
body.page-template-page-home .section-service-home .service-item-wrap::after,
body.page-template-page-home .section-service-home .servicer-item-link:hover .service-item-wrap::before,
body.page-template-page-home .section-service-home .servicer-item-link:hover .service-item-wrap::after,
body.page-template-page-home .section-service-home .servicer-item-link:focus-within .service-item-wrap::before,
body.page-template-page-home .section-service-home .servicer-item-link:focus-within .service-item-wrap::after {
    content: none;
    display: none;
}

/* Match About and Gallery frames to the Services outer gold frame. */
body.home .section-about-home .content-about-pink,
body.page-template-page-home .section-about-home .content-about-pink {
    position: relative;
    padding: 0;
    border: 5px solid transparent;
    border-image: linear-gradient(135deg, #6f4813 0%, #d8a646 18%, #fff0a7 33%, #b77d24 52%, #f6d77d 72%, #a66d1d 88%, #5d3b0e 100%) 1;
    background: transparent;
    box-shadow: none;
}

body.home .section-about-home .content-about-pink .img-about-2,
body.page-template-page-home .section-about-home .content-about-pink .img-about-2 {
    border: 0;
    box-shadow: none !important;
}

body.home .section-gallery-home .gallery-image-box,
body.page-template-page-home .section-gallery-home .gallery-image-box {
    border: 5px solid transparent;
    border-image: linear-gradient(135deg, #6f4813 0%, #d8a646 18%, #fff0a7 33%, #b77d24 52%, #f6d77d 72%, #a66d1d 88%, #5d3b0e 100%) 1;
    box-shadow: none !important;
}

@media (max-width: 767.99px) {
    body.home .section-gallery-home .gallery-image-box,
    body.page-template-page-home .section-gallery-home .gallery-image-box {
        border-width: 5px;
    }
}

/* Keep the reviews color solid while fading only its background artwork. */
body.home .our-reviews-pink,
body.page-template-page-home .our-reviews-pink {
    position: relative;
    isolation: isolate;
    background-color: #f2e8ca;
    background-image: none;
}

body.home .our-reviews-pink::before,
body.page-template-page-home .our-reviews-pink::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: url(../images/bg-reviews.png);
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: cover;
    opacity: 0.22;
    pointer-events: none;
}

body.home .our-reviews-pink > .container,
body.page-template-page-home .our-reviews-pink > .container {
    position: relative;
    z-index: 1;
}

/* Use the Home luxury header treatment across the entire site. */
.header-main .info-contact-header {
    color: #f9f3e5;
    background-color: #11100e;
}

.header-main .info-contact-header a {
    color: inherit;
    transition: color 0.3s ease;
}

.header-main .info-contact-header a:hover,
.header-main .info-contact-header a:focus {
    color: #e4b764;
}

.header-main .navbar.nav-header {
    color: #fff;
    background-color: #11100e !important;
    background-image: linear-gradient(135deg, #11100e 0%, #1d1811 62%, #3b2d14 100%) !important;
    border-bottom: 1px solid rgba(228, 183, 100, 0.48);
}

.header-main .navbar .nav-link {
    color: #e4b764;
}

.header-main .logo-menu,
.header-main .logo-menu img,
.header-main #mobileMenu .offcanvas-header img {
    width: 100px;
    max-width: 100px;
}

.header-main .navbar .nav-link.active,
.header-main .navbar .nav-link:hover,
.header-main .navbar .nav-link:focus {
    color: #a66f1f !important;
}

.header-main .btn-header,
.header-main a[data-bs-toggle="offcanvas"] {
    color: #15120f;
    background-color: #e4b764;
    background-image: linear-gradient(135deg, #11100e 0%, #2d2416 17%, #5a421b 31%, #8d6226 46%, #e4b764 61%, #fff0b2 75%, #c68f2f 89%, #765019 100%);
    background-size: 240% 100%;
    background-position: 100% 0;
    border-color: #e4b764;
    box-shadow: 0 12px 28px rgba(228, 183, 100, 0.3), inset 0 1px 0 rgba(255, 248, 218, 0.74) !important;
    transition: color 0.35s ease, background-position 0.45s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.header-main .btn-header:hover,
.header-main .btn-header:focus,
.header-main a[data-bs-toggle="offcanvas"]:hover,
.header-main a[data-bs-toggle="offcanvas"]:focus,
.header-main .btn-light:hover,
.header-main .btn-light:focus {
    color: #e4b764 !important;
    background-color: #11100e !important;
    background-position: 0 0;
    border-color: #e4b764 !important;
    box-shadow: 0 14px 30px rgba(17, 16, 14, 0.24), inset 0 1px 0 rgba(228, 183, 100, 0.28) !important;
}

.header-main #mobileMenu.offcanvas-start {
    color: #f8f1df;
    background: linear-gradient(160deg, #11100e 0%, #272014 54%, #e4b764 140%);
}

.header-main #mobileMenu a {
    color: #fff8e8;
    transition: color 0.3s ease;
}

.header-main #mobileMenu a.active,
.header-main #mobileMenu a:hover,
.header-main #mobileMenu a:focus {
    color: #e4b764;
}

.header-main .cricle-pink,
.header-main .item-social-header {
    color: #15120f;
    background-color: #e4b764;
    background-image: linear-gradient(135deg, #11100e 0%, #2d2416 17%, #5a421b 31%, #8d6226 46%, #e4b764 61%, #fff0b2 75%, #c68f2f 89%, #765019 100%);
    background-size: 240% 100%;
    background-position: 100% 0;
    border-color: #e4b764;
    transition: color 0.35s ease, background-position 0.45s ease, border-color 0.35s ease;
}

.header-main .item-social-header:hover,
.header-main .item-social-header:focus {
    color: #e4b764;
    background-color: #11100e;
    background-position: 0 0;
    border-color: #e4b764;
}

/* Match the About template story and reviews to their Home counterparts. */
body.page-template-page-about-us .section-about-home,
body.page-template-page-about-us .section-reviews-home {
    color: #2f2b25;
    background-color: #f2e8ca !important;
}

body.page-template-page-about-us .section-about-home h2.title,
body.page-template-page-about-us .section-reviews-home h2.title {
    color: #15120f;
}

body.page-template-page-about-us .section-about-home h3.sub-title,
body.page-template-page-about-us .section-reviews-home h3.sub-title {
    position: relative;
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin: 0 0 18px;
    padding: 0 0 11px;
    color: #b57b25;
    font-family: 'Libre Baskerville', serif;
    font-size: 15px;
    font-weight: 700;
    font-style: normal;
    line-height: 1.35;
    letter-spacing: 0;
    text-transform: uppercase;
    text-shadow: 0 1px 2px rgba(17, 16, 14, 0.22);
}

body.page-template-page-about-us .section-about-home h3.sub-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 64px;
    height: 2px;
    background: linear-gradient(90deg, #7d5116 0%, #e4b764 48%, rgba(228, 183, 100, 0) 100%);
}

body.page-template-page-about-us .section-reviews-home h3.sub-title.text-center {
    display: flex;
    justify-content: center;
    width: 100%;
    padding-bottom: 0;
    gap: 14px;
}

body.page-template-page-about-us .section-reviews-home h3.sub-title.text-center::before,
body.page-template-page-about-us .section-reviews-home h3.sub-title.text-center::after {
    content: "";
    position: static;
    flex: 0 1 54px;
    width: 54px;
    height: 1px;
    background: linear-gradient(90deg, rgba(125, 81, 22, 0) 0%, #c98f32 55%, #f0cf79 100%);
}

body.page-template-page-about-us .section-reviews-home h3.sub-title.text-center::after {
    background: linear-gradient(90deg, #f0cf79 0%, #c98f32 45%, rgba(125, 81, 22, 0) 100%);
}

body.page-template-page-about-us .section-about-home .content-about-pink {
    position: relative;
    padding: 0;
    border: 5px solid transparent;
    border-image: linear-gradient(135deg, #6f4813 0%, #d8a646 18%, #fff0a7 33%, #b77d24 52%, #f6d77d 72%, #a66d1d 88%, #5d3b0e 100%) 1;
    background: transparent;
    box-shadow: none;
}

body.page-template-page-about-us .section-about-home .content-about-pink .img-about-2 {
    border: 0;
    box-shadow: none !important;
}

body.page-template-page-about-us .section-about-home .img-absolute-1,
body.page-template-page-about-us .section-about-home .img-absolute-2,
body.page-template-page-about-us .section-about-home .img-absolute-3 {
    opacity: 0.22;
}

body.page-template-page-about-us .our-reviews-pink {
    position: relative;
    isolation: isolate;
    background-color: #f2e8ca;
    background-image: none;
}

body.page-template-page-about-us .our-reviews-pink::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: url(../images/bg-reviews.png);
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: cover;
    opacity: 0.22;
    pointer-events: none;
}

body.page-template-page-about-us .our-reviews-pink > .container {
    position: relative;
    z-index: 1;
}

body.page-template-page-about-us .home-reviews-slider-wrap {
    margin-top: 1.25rem;
}

body.page-template-page-about-us .div-reviews-business,
body.page-template-page-about-us .element-reviews-pink {
    position: static;
}

body.page-template-page-about-us .div-reviews-business {
    width: 100%;
    transform: none;
}

body.page-template-page-about-us .slick-reviews .slick-track {
    display: flex;
    align-items: stretch;
}

body.page-template-page-about-us .slick-reviews .slick-slide {
    height: auto;
}

body.page-template-page-about-us .fluid-review {
    position: relative;
    display: flex !important;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
    overflow: visible;
    color: #302b23;
    padding: 0 26px;
    background: transparent;
    border: 0;
    box-shadow: none;
    text-align: center;
}

body.page-template-page-about-us .fluid-review::before {
    content: "\201C";
    position: static;
    order: 1;
    display: block;
    height: 36px;
    margin-bottom: 0.15rem;
    color: rgba(174, 124, 38, 0.78);
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 64px;
    font-weight: 700;
    line-height: 0.82;
    pointer-events: none;
}

body.page-template-page-about-us .fluid-review::after {
    display: none;
}

body.page-template-page-about-us .fluid-review > p:first-child {
    position: relative;
    order: 3;
    z-index: 1;
    margin: 0;
    color: #a97528 !important;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0;
}

body.page-template-page-about-us .fluid-review .content-review {
    position: relative;
    order: 2;
    z-index: 1;
}

body.page-template-page-about-us .fluid-review .content-review .text-warning {
    display: none;
}

body.page-template-page-about-us .fluid-review i {
    color: inherit;
}

body.page-template-page-about-us .fluid-review .content-review p:last-child {
    margin-bottom: 1rem !important;
    color: #424242;
    letter-spacing: 0;
}

body.page-template-page-about-us .slick-reviews .slick-dots {
    position: static;
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 16px 0 0;
    padding: 0;
    list-style: none;
}

body.page-template-page-about-us .slick-reviews .slick-dots li {
    width: auto;
    height: auto;
    margin: 0;
}

body.page-template-page-about-us .slick-reviews .slick-dots button {
    width: 7px;
    height: 7px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(174, 124, 38, 0.32);
    font-size: 0;
}

body.page-template-page-about-us .slick-reviews .slick-dots .slick-active button {
    background: #a97528;
}

@media (max-width: 767.99px) {
    body.page-template-page-about-us .fluid-review {
        padding: 0 16px;
    }
}

@media (max-width: 575.99px) {
    body.page-template-page-about-us .section-about-home h3.sub-title,
    body.page-template-page-about-us .section-reviews-home h3.sub-title {
        font-size: 14px;
    }

    body.page-template-page-about-us .section-reviews-home h3.sub-title.text-center {
        gap: 10px;
    }

    body.page-template-page-about-us .section-reviews-home h3.sub-title.text-center::before,
    body.page-template-page-about-us .section-reviews-home h3.sub-title.text-center::after {
        flex-basis: 34px;
        width: 34px;
    }
}

/* Use the luxury footer treatment across the entire site. */
.footer {
    background-color: #11100e;
}

.footer .footer-main {
    color: #fff;
    background: linear-gradient(135deg, #11100e 0%, #1d1811 62%, #3b2d14 100%);
}

.footer .footer-main a {
    color: #fff;
    transition: color 0.3s ease;
}

.footer .footer-main p,
.footer .footer-main .footer-col-content,
.footer .footer-main .footer-col-content p,
.footer .footer-main .footer-col-content a {
    color: #fff;
}

.footer .footer-main a:hover,
.footer .footer-main a:focus {
    color: #e4b764;
}

.footer .footer-main .footer-col-title {
    color: #e4b764;
}

.footer .footer-main hr {
    border-color: rgba(214, 183, 106, 0.5);
    opacity: 1;
}

.footer .footer-main .footer-col-content i {
    color: #e4b764;
}

.footer .footer-main .list-social li {
    color: #15120f;
    background-color: #e4b764;
    background-image: linear-gradient(135deg, #11100e 0%, #2d2416 17%, #5a421b 31%, #8d6226 46%, #e4b764 61%, #fff0b2 75%, #c68f2f 89%, #765019 100%);
    background-size: 240% 100%;
    background-position: 100% 0;
    transition: color 0.35s ease, background-position 0.45s ease, border-color 0.35s ease;
}

.footer .footer-main .list-social li:hover,
.footer .footer-main .list-social li:focus-within {
    color: #e4b764;
    background-color: #11100e;
    background-position: 0 0;
}

.footer .footer-main .list-social li a {
    color: #15120f;
}

.footer .footer-main .list-social li:hover a,
.footer .footer-main .list-social li:focus-within a {
    color: #e4b764;
}

.footer .footer-absolute {
    color: #fff;
    background-color: #e4b764;
    border-top-color: #e4b764;
}

.footer .footer-absolute p,
.footer .footer-absolute a {
    color: #fff !important;
}

.scroll-to-top {
    color: #15120f;
    background-color: #e4b764;
    background-image: linear-gradient(135deg, #11100e 0%, #2d2416 17%, #5a421b 31%, #8d6226 46%, #e4b764 61%, #fff0b2 75%, #c68f2f 89%, #765019 100%);
    background-size: 240% 100%;
    background-position: 100% 0;
    border-color: #e4b764;
    transition: color 0.35s ease, background-position 0.45s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.scroll-to-top:hover,
.scroll-to-top:focus {
    color: #e4b764;
    background-color: #11100e;
    background-position: 0 0;
    border-color: #e4b764;
}

/* Shared luxury title band for inner pages. */
.page-details-header {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 3.25rem 1rem;
    background-color: #f6e9c6;
    background-image: linear-gradient(110deg, #fffdf7 0%, #f8efd6 27%, #efdcaa 50%, #f9f1dc 74%, #fffdf8 100%);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-top: 1px solid rgba(181, 123, 37, 0.3);
    border-bottom: 1px solid rgba(181, 123, 37, 0.58);
}

.page-details-header::before {
    content: "";
    position: absolute;
    inset: 10px 18px;
    z-index: 0;
    border-top: 1px solid rgba(255, 250, 226, 0.92);
    border-bottom: 1px solid rgba(181, 123, 37, 0.25);
    pointer-events: none;
}

.page-details-header h1 {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    max-width: 100%;
    margin-right: auto;
    margin-left: auto;
    color: #15120f;
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0;
    text-shadow: 0 1px 0 rgba(255, 253, 244, 0.9);
}

.page-details-header h1::before,
.page-details-header h1::after {
    content: "";
    flex: 0 1 64px;
    width: 64px;
    height: 1px;
    background: linear-gradient(90deg, rgba(181, 123, 37, 0) 0%, #b57b25 58%, #f3d98c 100%);
}

.page-details-header h1::after {
    background: linear-gradient(90deg, #f3d98c 0%, #b57b25 42%, rgba(181, 123, 37, 0) 100%);
}

@media (max-width: 575.99px) {
    .page-details-header {
        padding: 2.5rem 0.75rem;
    }

    .page-details-header::before {
        inset: 8px 10px;
    }

    .page-details-header h1 {
        gap: 10px;
        font-size: 32px;
    }

    .page-details-header h1::before,
    .page-details-header h1::after {
        flex-basis: 30px;
        width: 30px;
    }
}

/* Let the Home page use one continuous dark luxury canvas. */
body.home,
body.page-template-page-home {
    background-color: #111111;
    background-image: linear-gradient(150deg, #111111 0%, #17140f 38%, #211a10 70%, #111111 100%);
    background-repeat: no-repeat;
    background-size: cover;
}

body.home section,
body.page-template-page-home section,
body.home section.bg-pink,
body.page-template-page-home section.bg-pink,
body.home .our-reviews-pink,
body.page-template-page-home .our-reviews-pink {
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
}

body.home .our-reviews-pink::before,
body.page-template-page-home .our-reviews-pink::before {
    content: none;
    background: transparent !important;
    background-image: none !important;
}

body.home .section-wrap,
body.page-template-page-home .section-wrap {
    color: #f2eee5;
}

body.home .section-wrap h2.title,
body.page-template-page-home .section-wrap h2.title,
body.home .section-service-home .service-item-content h6,
body.page-template-page-home .section-service-home .service-item-content h6 {
    color: #fffdf8;
}

body.home .section-wrap p,
body.page-template-page-home .section-wrap p,
body.home .section-reviews-home .fluid-review .content-review p:last-child,
body.page-template-page-home .section-reviews-home .fluid-review .content-review p:last-child {
    color: #e8e1d5;
}

body.home .section-service-home .service-item-content .service-item-price,
body.page-template-page-home .section-service-home .service-item-content .service-item-price,
body.home .section-reviews-home .fluid-review > p:first-child,
body.page-template-page-home .section-reviews-home .fluid-review > p:first-child {
    color: #e4b764;
}

body.home .footer,
body.home .footer .footer-main,
body.home .footer .footer-absolute,
body.page-template-page-home .footer,
body.page-template-page-home .footer .footer-main,
body.page-template-page-home .footer .footer-absolute {
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
}

body.home .footer .footer-absolute,
body.page-template-page-home .footer .footer-absolute {
    border-top-color: rgba(228, 183, 100, 0.55);
}

/* Fixed, logo-free navigation shared by every page. */
:root {
    --site-header-height: 74px;
}

.header-main {
    position: relative;
    width: 100%;
}

.header-main .navbar.nav-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
    min-height: var(--site-header-height);
    padding: 0;
    background-color: rgba(10, 10, 10, 0.96) !important;
    background-image: linear-gradient(90deg, rgba(9, 9, 9, 0.98) 0%, rgba(24, 20, 14, 0.96) 50%, rgba(9, 9, 9, 0.98) 100%) !important;
    border-bottom: 1px solid rgba(228, 183, 100, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.admin-bar .header-main .navbar.nav-header {
    top: 32px;
}

.header-main .navbar-nav {
    gap: 10px;
}

.header-main .navbar .nav-link {
    position: relative;
    padding: 26px 18px !important;
    color: #e4b764;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.header-main .navbar .nav-link::after {
    content: "";
    position: absolute;
    right: 18px;
    bottom: 17px;
    left: 18px;
    height: 1px;
    background: linear-gradient(90deg, rgba(228, 183, 100, 0) 0%, #e4b764 50%, rgba(228, 183, 100, 0) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.header-main .navbar .nav-link.active::after,
.header-main .navbar .nav-link:hover::after,
.header-main .navbar .nav-link:focus::after {
    opacity: 1;
}

.header-menu-toggle {
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    color: #e4b764;
    background: transparent;
    border: 1px solid rgba(228, 183, 100, 0.72);
    border-radius: 50%;
    transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

.mobile-header-brand {
    color: #e4b764;
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0;
    transition: color 0.3s ease;
}

.mobile-header-brand:hover,
.mobile-header-brand:focus {
    color: #f1d48a;
}

.header-menu-toggle:hover,
.header-menu-toggle:focus-visible {
    color: #111111;
    background-color: #e4b764;
    border-color: #e4b764;
    outline: none;
}

.header-main #mobileMenu .offcanvas-title {
    color: #e4b764;
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
}

body:not(.home):not(.page-template-page-home) {
    padding-top: var(--site-header-height);
}

body.admin-bar:not(.home):not(.page-template-page-home) {
    padding-top: calc(var(--site-header-height) + 32px);
}

/* Full-viewport Home hero with a restrained black and gold composition. */
body.home .banner-parallax,
body.page-template-page-home .banner-parallax {
    position: relative;
    isolation: isolate;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100dvh;
    min-height: 100dvh;
    padding: calc(var(--site-header-height) + 36px) 24px 36px;
    overflow: hidden;
    background-color: transparent;
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.08) 52%, rgba(0, 0, 0, 0) 100%);
    background-position: center;
    background-size: 100% 100%;
}

body.home .banner-parallax::before,
body.page-template-page-home .banner-parallax::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    display: block;
    background:
        linear-gradient(90deg, rgba(228, 183, 100, 0.72) 0%, rgba(228, 183, 100, 0) 100%) left 6vw top calc(var(--site-header-height) + 52px) / 190px 1px no-repeat,
        linear-gradient(180deg, rgba(228, 183, 100, 0.72) 0%, rgba(228, 183, 100, 0) 100%) left 6vw top calc(var(--site-header-height) + 52px) / 1px 150px no-repeat,
        linear-gradient(90deg, rgba(228, 183, 100, 0.4) 0%, rgba(228, 183, 100, 0) 100%) left calc(6vw + 9px) top calc(var(--site-header-height) + 61px) / 112px 1px no-repeat,
        linear-gradient(180deg, rgba(228, 183, 100, 0.4) 0%, rgba(228, 183, 100, 0) 100%) left calc(6vw + 9px) top calc(var(--site-header-height) + 61px) / 1px 82px no-repeat,
        linear-gradient(90deg, rgba(228, 183, 100, 0) 0%, rgba(228, 183, 100, 0.68) 100%) right 6vw bottom 52px / 190px 1px no-repeat,
        linear-gradient(180deg, rgba(228, 183, 100, 0) 0%, rgba(228, 183, 100, 0.68) 100%) right 6vw bottom 52px / 1px 150px no-repeat,
        linear-gradient(90deg, rgba(228, 183, 100, 0) 0%, rgba(228, 183, 100, 0.38) 100%) right calc(6vw + 9px) bottom 61px / 112px 1px no-repeat,
        linear-gradient(180deg, rgba(228, 183, 100, 0) 0%, rgba(228, 183, 100, 0.38) 100%) right calc(6vw + 9px) bottom 61px / 1px 82px no-repeat;
    pointer-events: none;
}

body.home .banner-parallax::after,
body.page-template-page-home .banner-parallax::after {
    content: "";
    position: absolute;
    inset: calc(var(--site-header-height) + 18px) 22px 22px;
    z-index: 0;
    display: block;
    border: 1px solid rgba(228, 183, 100, 0.18);
    box-shadow: inset 0 0 160px rgba(0, 0, 0, 0.52);
    pointer-events: none;
}

.banner-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: min(100%, 760px);
    text-align: center;
}

body.home .banner-parallax .banner-logo,
body.page-template-page-home .banner-parallax .banner-logo {
    display: block;
    width: min(66vw, 340px);
    max-width: 340px;
    max-height: 38dvh;
    margin: 0 auto;
    object-fit: contain;
    border: 0;
    box-shadow: none !important;
}

.banner-brand-name {
    margin: 0;
    color: #e4b764;
    font-family: 'Playfair Display', serif;
    font-size: 58px;
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: 0;
}

.banner-gold-rule {
    display: flex;
    align-items: center;
    justify-content: center;
    width: min(240px, 58vw);
    margin: 24px 0 18px;
}

.banner-gold-rule::before,
.banner-gold-rule::after {
    content: "";
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(228, 183, 100, 0) 0%, #e4b764 100%);
}

.banner-gold-rule::after {
    background: linear-gradient(90deg, #e4b764 0%, rgba(228, 183, 100, 0) 100%);
}

.banner-gold-rule span {
    width: 7px;
    height: 7px;
    margin: 0 14px;
    background-color: #e4b764;
    border: 1px solid #f7dda0;
    transform: rotate(45deg);
}

.banner-slogan {
    margin: 0 0 32px;
    color: #fffdf8;
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-style: italic;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0;
    text-shadow: 0 8px 24px rgba(0, 0, 0, 0.58);
}

.banner-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-height: 54px;
    padding: 13px 26px;
    color: #111111;
    background-color: #e4b764;
    background-image: linear-gradient(135deg, #11100e 0%, #2d2416 17%, #5a421b 31%, #8d6226 46%, #e4b764 61%, #fff0b2 75%, #c68f2f 89%, #765019 100%);
    background-size: 220% 100%;
    background-position: 100% 0;
    border: 1px solid #e4b764;
    border-radius: 2px;
    box-shadow: 0 0 0 4px rgba(228, 183, 100, 0.12), 0 18px 44px rgba(0, 0, 0, 0.42);
    font-size: 13px;
    font-weight: 800;
    line-height: 1.4;
    letter-spacing: 0;
    text-transform: uppercase;
    transition: color 0.35s ease, background-position 0.5s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.banner-cta:hover,
.banner-cta:focus-visible {
    color: #e4b764 !important;
    background-color: #0b0b0b;
    background-position: 0 0;
    border-color: #e4b764;
    box-shadow: 0 0 0 4px rgba(228, 183, 100, 0.18), 0 20px 48px rgba(0, 0, 0, 0.5);
    outline: none;
}

@media (max-width: 991.99px) {
    :root {
        --site-header-height: 66px;
    }

    .header-main .navbar.nav-header {
        padding: 0 12px;
    }

    body.home .banner-parallax::after,
    body.page-template-page-home .banner-parallax::after {
        inset: calc(var(--site-header-height) + 12px) 14px 14px;
    }
}

@media (max-width: 782px) {
    .admin-bar .header-main .navbar.nav-header {
        top: 46px;
    }

    body.admin-bar:not(.home):not(.page-template-page-home) {
        padding-top: calc(var(--site-header-height) + 46px);
    }
}

@media (max-width: 575.99px) {
    .mobile-header-brand {
        font-size: 20px;
    }

    body.home .banner-parallax,
    body.page-template-page-home .banner-parallax {
        padding: calc(var(--site-header-height) + 26px) 22px 26px;
    }

    body.home .banner-parallax .banner-logo,
    body.page-template-page-home .banner-parallax .banner-logo {
        width: min(72vw, 250px);
        max-height: 34dvh;
    }

    .banner-brand-name {
        font-size: 40px;
    }

    .banner-gold-rule {
        margin-top: 20px;
        margin-bottom: 15px;
    }

    .banner-slogan {
        margin-bottom: 26px;
        font-size: 20px;
    }

    .banner-cta {
        min-height: 50px;
        padding: 12px 20px;
        font-size: 12px;
    }
    .section-wrap {
        padding: 40px 0;
    }
}

@media (max-height: 620px) and (orientation: landscape) {
    body.home .banner-parallax,
    body.page-template-page-home .banner-parallax {
        padding-top: calc(var(--site-header-height) + 12px);
        padding-bottom: 12px;
    }

    body.home .banner-parallax .banner-logo,
    body.page-template-page-home .banner-parallax .banner-logo {
        width: 170px;
        max-height: 31dvh;
    }

    .banner-gold-rule {
        margin-top: 10px;
        margin-bottom: 8px;
    }

    .banner-slogan {
        margin-bottom: 14px;
        font-size: 18px;
    }

    .banner-cta {
        min-height: 44px;
        padding: 10px 18px;
    }
}

/* Carry the Home dark luxury language through every Blog context. */
body:is(.page-template-page-blog, .blog, .search, .archive, .single-post) {
    color: #e8e1d5;
    background-color: #111111;
    background-image: linear-gradient(150deg, #111111 0%, #17140f 38%, #211a10 70%, #111111 100%);
    background-repeat: no-repeat;
    background-size: cover;
}

body:is(.page-template-page-blog, .blog, .search, .archive, .single-post) .page-details-header {
    background-color: transparent;
    background-image: linear-gradient(90deg, transparent 0%, rgba(228, 183, 100, 0.055) 50%, transparent 100%);
    border-top-color: rgba(228, 183, 100, 0.18);
    border-bottom-color: rgba(228, 183, 100, 0.42);
}

body:is(.page-template-page-blog, .blog, .search, .archive, .single-post) .page-details-header::before {
    border-top-color: rgba(228, 183, 100, 0.28);
    border-bottom-color: rgba(228, 183, 100, 0.13);
}

body:is(.page-template-page-blog, .blog, .search, .archive, .single-post) .page-details-header h1 {
    color: #fffdf8;
    text-shadow: 0 8px 26px rgba(0, 0, 0, 0.48);
}

body:is(.page-template-page-blog, .blog, .search, .archive, .single-post) .blog-page {
    background: transparent;
}

body:is(.page-template-page-blog, .blog, .search, .archive, .single-post) .footer,
body:is(.page-template-page-blog, .blog, .search, .archive, .single-post) .footer .footer-main,
body:is(.page-template-page-blog, .blog, .search, .archive, .single-post) .footer .footer-absolute {
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
}

body:is(.page-template-page-blog, .blog, .search, .archive, .single-post) .footer .footer-absolute {
    border-top-color: rgba(228, 183, 100, 0.55);
}

.blog-sort-form select {
    color-scheme: dark;
}

.blog-sort-form select option {
    color: #fffdf8;
    background: #111111;
}

.blog-search-form input:-webkit-autofill,
.blog-search-form input:-webkit-autofill:hover,
.blog-search-form input:-webkit-autofill:focus {
    border-color: #b57b25;
    -webkit-text-fill-color: #fffdf8;
    box-shadow: 0 0 0 1000px #0d0d0c inset;
}

.blog-empty p,
.blog-single-content p,
.blog-single-content li,
.blog-single-content figcaption,
.page-content-article .entry-content p,
.page-content-article .entry-content li,
.page-content-article .entry-content figcaption {
    color: #e8e1d5;
}

.blog-single-content figcaption,
.page-content-article .entry-content figcaption {
    color: #aaa195;
}

.blog-single-content hr,
.page-content-article .entry-content hr {
    border-color: rgba(228, 183, 100, 0.34);
    opacity: 1;
}

.blog-single-content table,
.blog-single-content th,
.blog-single-content td,
.page-content-article .entry-content table,
.page-content-article .entry-content th,
.page-content-article .entry-content td {
    color: #e8e1d5;
    border-color: rgba(228, 183, 100, 0.3);
}

.blog-single-content th,
.page-content-article .entry-content th {
    color: #e4b764;
    background: #17140f;
}

.blog-single-content pre,
.page-content-article .entry-content pre {
    color: #eee7da;
    background: #0b0b0a;
    border: 1px solid rgba(228, 183, 100, 0.25);
}

.blog-single-content code,
.page-content-article .entry-content code {
    color: #f0cc7d;
}

/* content-page.php is rendered by WordPress' default page template. */
body.page-template-default {
    color: #e8e1d5;
    background-color: #111111;
    background-image: linear-gradient(150deg, #111111 0%, #17140f 38%, #211a10 70%, #111111 100%);
    background-repeat: no-repeat;
    background-size: cover;
}

body.page-template-default .page-details-header,
body.page-template-default .page-content-section,
body.page-template-default .footer,
body.page-template-default .footer .footer-main,
body.page-template-default .footer .footer-absolute {
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
}

body.page-template-default .page-details-header {
    border-top-color: rgba(228, 183, 100, 0.18);
    border-bottom-color: rgba(228, 183, 100, 0.42);
}

body.page-template-default .page-details-header::before {
    border-top-color: rgba(228, 183, 100, 0.28);
    border-bottom-color: rgba(228, 183, 100, 0.13);
}

body.page-template-default .page-details-header h1 {
    color: #fffdf8;
    text-shadow: 0 8px 26px rgba(0, 0, 0, 0.48);
}

body.page-template-default .footer .footer-absolute {
    border-top-color: rgba(228, 183, 100, 0.55);
}
