@import url("https://use.typekit.net/fpy6edg.css");


:root {
    --c-primary: #bc9b69;
    --c-primary2: #4b4a4a;
    --c-secondary: #4b3d38;
    --c-navlink: #565354;
    --c-white: #ffffff;
    --c-black: #000000;
    --c-header: #565354;
    --c-textcolor: #4b3d38;
    --f-theseason: "the-seasons", sans-serif;
    --f-avenir: "avenir-lt-pro", sans-serif;
    --fs-15: 15px;
    --fs-18: 18px;
    --fs-24: 24px;
}

html {overflow-x: hidden;}
body {font-weight: normal;margin: 0;padding: 0;position: relative;font-family: var(--f-avenir);font-size: 15px}
a {text-decoration: none;transition: all 0.3s ease;}
* {box-sizing: border-box;scroll-margin-top: 90px;}
img:not(header), .nav-link {transition: all 0.3s ease;}
button, a {cursor: pointer}
.cp{cursor:pointer}
.text__primary {color: var(--c-primary)!important;}
.bg__primary {background: var(--c-primary)!important;}
.bg__black{background: var(--c-black)}
.bg__secondary {background: var(--c-secondary)!important;}
.text__primary2 {color: var(--c-primary2);}
.text__secondary {color: var(--c-secondary);}
.primary__heading {font: 700 34px/1.45 var(--f-theseason);text-shadow: 0 0 black;}

.btn__primary {border: 1px solid var(--c-primary);color: var(--c-secondary);transition: 0.7s ease-in-out;border-radius:0;font-size:14px}
.btn__primary:hover, .btn__primary:focus, .btn__primary:active {color: var(--c-white);background:var(--c-primary);}
.btn__secondary {background:var(--c-primary);border: 1px solid var(--c-primary);color: var(--c-white);transition: 0.7s ease-in-out;border-radius:0;font-size:14px}
.btn__secondary:hover {border: 1px solid var(--c-primary);color: var(--c-primary);}


.text__italic{font-style:italic}
.outline__inner-white{outline:3px solid white;outline-offset:-15px}



.custom__arrowList li {list-style: none;position: relative;margin-bottom:10px;}
.custom__arrowList li::before {position: absolute;content: "";background: url("../images/icon13.webp") no-repeat center center;padding: 12px 25px;
        top: 0;left: -50px;}

@media (min-width: 1400px) {
    .row-cols-xxl-4 > *{width:20% !important}
}


@media only screen and (max-width: 1023.98px) {
    .primary__heading {font: 700 25px / 1.45 var(--f-theseason);}
    .topSlider .frame {top: -20px;left: -20px;right: 0;bottom: 0;width: calc(100% + 40px);}
        .topSlider .carousel .carousel-item > img{    max-height: 45vh;}
}

@media only screen and (max-width: 1023.98px) {
    .primary__heading {font: 700 20px / 1.45 var(--f-theseason);}
}

@keyframes fade-in {
    to {opacity: 1;visibility: visible}
}

@keyframes slideTextToRight{
    from{transform: translateX(-20px);opacity:0;visibility:hidden}
    to{transform: translateX(0px);opacity:1;visibility:visible}
}

@keyframes slideReset {
    to {
        transform: translateX(0px);
        visibility: visible;
        opacity: 1
    }
}

/* About section */
.about-section {
    background: linear-gradient(135deg, #faf8f5 0%, #f0ebe3 50%, #f4f4f4 100%);
    overflow: hidden;
}
.about-content {
    max-width: 540px;
}
.about-label {
    font-size: 12px;
    letter-spacing: 0.2em;
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
}
.about-heading {
    font-size: clamp(28px, 4vw, 38px);
    color: var(--c-secondary) !important;
}
.about-accent {
    width: 60px;
    height: 3px;
    background: var(--c-primary);
}
.about-text {
    line-height: 1.75;
    color: var(--c-textcolor);
}
.about-image-wrap {
    position: relative;
    border-radius: 0 80px 0 80px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(75, 61, 56, 0.15), 0 0 0 1px rgba(255,255,255,0.5) inset;
    height: 320px;
}
.about-image-wrap::before {
    content: "";
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 2px solid var(--c-white);
    border-radius: 0 60px 0 60px;
    pointer-events: none;
    z-index: 1;
}
.about-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}
@media (max-width: 991.98px) {
    .about-content { max-width: 100%; }
    .about-image-wrap {
        height: 260px;
        border-radius: 0 48px 0 48px;
    }
    .about-image-wrap::before { border-radius: 0 36px 0 36px; top: 12px; left: 12px; right: 12px; bottom: 12px; }
}
