:root{
    --chocolaty:#483026;
    --bg1: #F6F1EB;
    --bg2: #837771;
    --bg3: #FCFAF7;
    --gap: 80px;
}
img{
    max-width: 100%;
}

html{
    font-size: 62.5%;
}
@media only screen and (max-width:767px){
    html{
        font-size: 52.5%;
    }
}
html, body{
    scroll-behavior: smooth;
}
body{
    font-size: 1.5rem;
    width: 100%;
    overflow-x: hidden;
}
/* default */
h1, h2, h3, h4, h5, h6{
    font-family: "Playfair", serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-variation-settings:"wdth" 100;
}

.space{
    padding: var(--gap) 0;
}
.space-top{
    padding-top: var(--gap);
}
.space-bottom{
    padding-bottom: var(--gap);
}

.cta{
    display: inline-flex;
    padding: 18px 24px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 8px;
    background: #77462F;
    color: #fff;
    text-decoration: none;
    color: #FFF;
    text-align: center;
    font-size: 1.7rem;
    font-weight: 500;
    line-height: normal;
    transition: all .5s ease;
}

.cta:hover{
    background-color: var(--bg1);
    color: #000;
}

.heading{
    position: relative;
    padding-bottom: 20px;
}
.heading::before{
    content: "";
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 30%;
    height: 1px;
    background-color: var(--bg2);
}
.heading p{
    color: #917865;
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 400;
}
.heading h2{
    color: #000;
    font-size: 4.8rem;
    font-style: normal;
    font-weight: 600;
    line-height: 100%; /* 48px */
    letter-spacing: -1.44px;
}
.sm-heading h2{
    color: #835742;
    font-size: 2.4rem;
    font-style: normal;
    font-weight: 600;
    line-height: 140%; /* 50.4px */
    font-family: Arial, Helvetica, sans-serif;
    text-transform: uppercase;
}

/* navbar */
.site-header{
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 111;
}
.navbar-toggler{
    border: 0px;
    padding: 0px;
    font-size: 4rem;
    color:var(--bg1)
}
.navbar-toggler:focus{
    box-shadow: inherit;
}
.navbar{
    --bs-navbar-padding-y: 1rem;
}
.bg-body-tertiary{
    background-color: var(--chocolaty)!important;
}
.nav-link{
    color: #fff;
    opacity: .8;
    font-size: 1.8rem;
    font-weight: 600;
    position: relative;
}

.nav-link::before{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--bg1), var(--bg2)); /* Tweak the color if needed */
    border-radius: 0;
    transition: all 0.5s ease-in-out;
}

.nav-link:hover::before {
    width: 100%;
    border-radius: 50%;
  }
.navbar-nav .nav-link.active, .navbar-nav .nav-link.show {
    color: #fff;
    opacity: 1;
}

.nav-link:focus, .nav-link:hover {
    color: #fff;
    opacity: 1;
}
  
.navbar-brand{
    color: #FFF;
    font-size: 2.8rem;
    font-weight: 600;
}
@media (min-width: 992px) {
    .navbar-expand-lg .navbar-nav .nav-link {
        padding-right: 8px;
        padding-left: 8px;
        margin: 0 20px;
    }
}
.nav-cta{
    display: flex;
    padding: 16px 24px!important;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 8px;
    background: #7B7573;
    color: #fff;
    opacity: 1;
    overflow: hidden;
}
@media only screen and  (max-width: 767px) {
    .nav-item{
        width: 100%;
        text-align: center;
        border-bottom: var(--bg1) solid 1px;
        padding: 8px 0px;
    }
    .nav-item:last-child{
        border-bottom: 0px;
    }
    .nav-link::before{
        content: inherit;
    }
    .nav-cta{
        display: block;
        width: 100%;
    }
}
/* hero */

.hero{
    position: relative;
    overflow: hidden;
}
.hero::before{
    position: absolute;
    content: '';
    height: 50%;
    width: 100%;
    bottom: 0px;
    left: 0px;
    background: rgb(0,0,0);
    background: -moz-linear-gradient(4deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 71%);
    background: -webkit-linear-gradient(4deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 71%);
    background: linear-gradient(4deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 71%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#000000",GradientType=1);
    z-index: 1;
}
.hero img{
    width: 100%;
    height: calc(100vh - 50px);
    object-fit: cover;
    object-position: bottom center;
    animation: infiniteZoom 50s infinite linear;
}
@keyframes infiniteZoom {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.3);
    }
    100% {
      transform: scale(1);
    }
  }
.hero .content{
    position: absolute;
    bottom: 60px;
    text-align: center;
    width: 100%;
    z-index: 11;
}
.hero h1{
    color: #FFF;
    text-align: center;
    font-size: 8.4rem;
    font-weight: 800;
    line-height: 8.4rem;
    letter-spacing: -2.52px;
}
.hero p{
    color: #FFF;
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: -0.48px;
    text-wrap: balance;
}
.hero .tag{
    display: inline-flex;
    padding: 14px 20px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 100px;
    background: #7B7573;
    color: #FFF;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 15px;
}
@media only screen and (max-width:767px){
    .hero img{
        width: 100%;
        height: calc(80vh - 50px);
        
    }
    .hero::before{
        height: 100%;
    }
    .hero .content h1{
        font-size: 4.4rem;
        font-weight: 800;
        line-height: 4.4rem;
    }
    .hero p{
        color: #FFF;
        font-size: 1.7rem;
    }
}
@media only screen and (max-width:1024px){
    .hero .content h1{
        font-size: 4rem;
        line-height: 4rem;
    }
}

.legacy{
    background-color: var(--bg1);
}
.legacy .content{
    margin-top: 30px;
    margin-bottom: 30px;
}
.legacy .content p{
    color: #3C3634;
    font-size: 2rem;
    font-style: normal;
    font-weight: 500;
    margin-bottom: 20px;
}
.legacy .content p:last-child{
    margin-bottom: 0px;
}
.legacy .box {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}
.legacy .box svg{
    background-color: #fff;
    height: 30px;
    width: 30px;
    border-radius: 50px;
}
.legacy .box h3{
    color: #000;
    font-size: 2.6rem;
    font-style: normal;
    font-weight: 500;
    margin-bottom: 0px;
}
.legacy .box p{
    color: rgba(0, 0, 0, 0.60);
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 500;
    text-align: center;
    margin-bottom: 0px;
}

.services{
    background-color: var(--bg3);
}
.services .heading{
    padding-bottom: 36px;
}
.services .heading::before{
    content: inherit!important;
    
}
.service{
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: filter 1s ease;
}
.service:hover img{
    filter: brightness(80%);
}
.service a{
    overflow: hidden;
    position: relative;
    display: block;
}
.service img{
    object-fit: cover;
    width: 100%;
    height: 400px;
    transition: all .5s ease;
}

.service h2{
    color: #2B231F;
    font-size: 2.4rem;
    font-style: normal;
    font-weight: 500;
    margin-bottom: 0px;
    margin-top: 17px;
}
.service h2 a{
    color: currentColor;
    text-decoration: none;
    transition: color 0.5s ease, text-decoration 0.5s ease;
}
.service h2 a:hover{
    color: var(--chocolaty);
    text-decoration: underline; 
}

.interior{
    background-color: var(--bg3);
}
.interior .heading{
    margin-bottom: 0px;
}
.interior .heading::before{
    content: inherit;
}

.interior ol{
    padding: 0px;
    margin: 0px;
    list-style: none;
    counter-reset: inner-counter;
}
.interior ol li::marker{
    font-size: 2rem;
}
.interior ol li{
    position: relative;
    border-top: var(--bg2) solid 1px;
    color: #2B231F;
    font-size: 2rem;
    font-style: normal;
    font-weight: 500;
    padding: 30px 0;
    counter-increment: inner-counter;
}

.interior li::before {
    content: counter(inner-counter, decimal-leading-zero); /* Display the counter value */
    font-weight: bold;
    font-size: 1.5em;
    position: absolute;
    left: 0px;
    font-size: 1.8rem;
    font-style: normal;
    font-weight: 300;
    top: 32px;
  }
.interior ol li span{
    display: inline-block;
    padding-right: 50px;
    padding-left: 30px;
}
.interior ol li svg{
    position: absolute;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
    width: 45.862px;
    height: 45.862px;
    flex-shrink: 0;
    aspect-ratio: 45.86 / 45.86;
}

.commitment{
    background-color: var(--bg2);
    color: #fff;
}
.commitment .heading::before{
    content: inherit;
}
.commitment .heading h2{
    color: #FCFAF7;
    font-size: 2.4rem;
    font-style: normal;
    font-weight: 600;
    font-family: Arial, Helvetica, sans-serif;
}
.commitment .heading h3{
    color: #fff;
    font-size: 4.8rem;
    font-style: normal;
    font-weight: 600;
    line-height: 100%; /* 48px */
    letter-spacing: -1.44px;
}
.commitment .heading p{
    color: #F1F1F1;
    text-align: center;
    font-size: 1.7rem;
    font-style: normal;
    font-weight: 400;
}

.commitment .box{
    aspect-ratio: 429 / 298;
    border-radius: 8px;
    background: rgba(90, 73, 64, 0.60);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    padding: 16px;
}
.commitment .box p{
    color: #FCFAF7;
    text-align: center;
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 500;
}
.commitment .box svg{
    height: 61px;
    width: 61px;
}

.why-choose{
    background-color: var(--bg1);
}
.why-choose .heading::before{
    content: inherit;
}
.why-choose .heading p{
    color: #000;
    text-align: center;
    font-size: 1.7rem;
    font-style: normal;
    font-weight: 400;
}
.why-choose img{
    aspect-ratio: 643 / 393;
    object-fit: cover;
    border-radius: 12px;
}
.choose{
    position: relative;
    padding-bottom: 1.2rem;
}
.choose h3{
    color: #2B231F;
    font-size: 3.6rem;
    font-style: normal;
    font-weight: 800;
    margin-bottom: 20px;
}
.choose p{
    font-size: 1.7rem;
    margin-bottom: 20px;
}
.choose::before{
    content: '';
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 15rem;
    height: 1px;
    background: #835742;
}

.getin{
    background-color: var(--bg1);
}
.getin .heading::before{
    content: inherit;
}
.getin .heading p{
    color: #000;
    text-align: center;
    font-size: 1.7rem;
    font-style: normal;
    font-weight: 400;
}
.getin .box{
    background-color: #fff;
    padding: 30px 35px 50px 35px;
    border-radius: 8px;
    box-shadow: 0px 37px 10px 0px rgba(0, 0, 0, 0.00), 0px 24px 9px 0px rgba(0, 0, 0, 0.00), 0px 13px 8px 0px rgba(0, 0, 0, 0.02), 0px 6px 6px 0px rgba(0, 0, 0, 0.03), 0px 1px 3px 0px rgba(0, 0, 0, 0.03);
}
.getin .box h3{
    color: #000;
    font-size: 2.6rem;
    font-style: normal;
    font-weight: 500;
    padding-bottom: 3rem;
}
.getin .box .info{
    position: relative;
    padding-left: 6rem;
    margin-bottom: 30px;
}

.getin .box .info h4{
    color: #000;
    font-size: 2rem;
    font-weight: 500;
}
.getin .box .info a{
    color: #000;
    text-decoration: none;
    display: block;
}

.getin .box .info .icon{
    background-color: var(--bg1);
    width: 46px;
    height: 46px;
    border-radius: 50px;
    position: absolute;
    left: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
}


.inp{
    margin-bottom: 10px;
}
.inp label{
    display: block;
    margin-bottom: 8px;
}
.inp input, .inp textarea{
    color: rgba(0, 0, 0, 0.40);
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 400;
    border-radius: 6px;
    border: 1px solid #917865;
    padding: 11px 16px 11px 16px;
    width: 100%;
}
.inp input:focus, .inp textarea:focus{
    border: 1px solid #000;
    outline: inherit;
}
input[type="submit"]{
    background: inherit;
    border: 0px;
    color: #835742;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    transition: all 0.3s ease;
}
input[type="submit"]:hover{
    color: var(--chocolaty);
    background-color: #FCFAF7;
}

footer{
    background-color: var(--chocolaty);
    color: #fff;
    padding: 4rem 0;
}
@media only screen and (min-width:1200px) {
    footer .about{
        padding-right: 40px;
    }
}
footer p{
    color: #D2D2D2;
    font-size: 1.5rem;
    font-weight: 400;
}
footer .navbar-brand{
    margin-bottom: 10px;
}
footer h2{
    font-family: Arial, Helvetica, sans-serif;
    margin-bottom: 26px;
    font-weight: 600;
}
footer ul{
    margin: 0px;
    padding: 0px;
    list-style: none;
}
footer li{
    color: #D2D2D2;
    font-size: 1.5rem;
    margin-bottom: 10px;
}
footer li a{
    color: #D2D2D2;
    text-decoration: none;
    transition: all .5s ease;
}
footer li a:hover{
    color: #fff;
}
footer .copyright{
    border-top: #917865 solid 1px;
    margin-top: 20px;
    padding-top: 20px;
    color: #D2D2D2;
    font-size: 1.5rem;
}