/* Fonts */
@font-face {
    font-family: Playfair Display;
    src: url(/dist/fonts/PlayfairDisplay-Regular.woff2) format("woff2"), url(/dist/fonts/PlayfairDisplay-Regular.woff) format("woff");
    font-weight: 400;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: Playfair Display;
    src: url(/dist/fonts/PlayfairDisplay-Italic.woff2) format("woff2"), url(/dist/fonts/PlayfairDisplay-Italic.woff) format("woff");
    font-weight: 400;
    font-style: italic;
    font-display: swap
}

@font-face {
    font-family: Playfair Display;
    src: url(/dist/fonts/PlayfairDisplay-Bold.woff2) format("woff2"), url(/dist/fonts/PlayfairDisplay-Bold.woff) format("woff");
    font-weight: 700;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: Playfair Display;
    src: url(/dist/fonts/PlayfairDisplay-BoldItalic.woff2) format("woff2"), url(/dist/fonts/PlayfairDisplay-BoldItalic.woff) format("woff");
    font-weight: 700;
    font-style: italic;
    font-display: swap
}

@font-face {
    font-family: "DM Serif Display";
    src: url(/dist/fonts/DMSerifDisplay-Regular.woff2) format("woff2"), url(/dist/fonts/DMSerifDisplay-Regular.woff) format("woff");
    font-weight: 400;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: "DM Serif Display";
    src: url(/dist/fonts/DMSerifDisplay-Italic.woff2) format("woff2"), url(/dist/fonts/DMSerifDisplay-Italic.woff) format("woff");
    font-weight: 400;
    font-style: italic;
    font-display: swap
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 30px, 0);
        transform: translate3d(0, 30px, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}

.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}



:root {
    --color-w: #fff;
    --color-b: #000;
    --color-primary: #99873d;
    --max-width: 1440px;
    --max-width-pad: 7rem;
    --ps-letter-spacing: 100;
    --fast: .3s;
    --slow: .6s;
    --very-slow: 2s;
    --font-size-root: 10px;
    --font-size-base: clamp(1.4rem, .65vw + 1.1rem, 1.8rem);
    --font-size-diminished: calc(.875 * var(--font-size-base));
    --font-size-promoted: calc(1.2 * var(--font-size-base));
    --font-size-heading-small: calc(1.4 * var(--font-size-base));
    --font-size-heading: calc(1.6 * var(--font-size-base));
    --font-size-heading-large: calc(2 * var(--font-size-base));
    --font-family-primary: 'Playfair Display', serif;
    --font-family-heading: "DM Serif Display", "Playfair Display", "Helvetica Neue", Helvetica, Arial, sans-serif;
    --font-family-helvetica: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video, dialog {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit
}

body {
    max-width: 100%;
    overflow-x: hidden;
}

@media screen and (min-width: 1024px) {
    :root {
        --font-size-heading: calc(2.2 * var(--font-size-base));
        --font-size-heading-large: calc(3.333 * var(--font-size-base));
    }
}

@media screen and (min-width: 1500px) {
    :root {
        --font-size-diminished: calc(.875 * var(--font-size-base));
        --font-size-promoted: calc(2 * var(--font-size-base));
        --font-size-heading-small: calc(2 * var(--font-size-base));
        --font-size-heading: calc(2.333 * var(--font-size-base));
        --font-size-heading-large: calc(5.222 * var(--font-size-base));
    }
}

@media screen and (max-width: 767px) {
    :root {
        --max-width-pad: 2rem;
    }
}

html {
    -webkit-font-smoothing: antialiased;
    font-size: var(--font-size-root)
}

body, input, select, textarea {
    font-size: var(--font-size-base, 100%);
    line-height: 1.375;
    font-family: var(--font-family-primary);
    -webkit-hyphens: none;
    hyphens: none
}

p, h1, h2, h3, h4, h5, h6 {
    overflow-wrap: break-word
}

sup {
    vertical-align: top;
    font-size: .75em
}

sub {
    vertical-align: bottom;
    font-size: .75em
}

strong, b {
    font-weight: 700
}

em, i {
    font-style: italic
}

code {
    font: .85em/1 Courier, monospace;
    color: #006
}

a:link {
    -webkit-tap-highlight-color: hsl(var(--ui-green));
    text-decoration: none
}

a:link, a:visited {
    color: inherit
}

a:focus {
    outline-color: transparent
}

a:active {
    outline-color: transparent
}





.grey--bg {
    background: #323439;
    color: #fff;
}

.d-white--bg {
    background: #d9d8c4;
    color: #000;
}

@media screen and (max-width: 1850px) and (min-width: 1500px) {
    body .container {
        padding-left: 27rem !important;
        margin: 0 !important;
    }
}

@media screen and (min-width: 1500px) {
    .container {
        width: 100%;
        padding-right: 50px !important;
        margin: 0 auto;
        padding-right: 50px;
        height: unset;
    }
}

@media screen and (max-width: 1500px) {
    footer .fs-inner {
        padding-top: 10rem !important;
        padding-left: 2rem !important;
    }

    .header.header-section {
        width: 100%;
        max-width: var(--max-width);
        margin: 0 auto;
        height: unset;
    }

    .header-section .main-content {
        flex-direction: unset !important;
        position: relative;
        z-index: 999999;
    }

    .header-section .hs-inner {
        border-right: none !important;
        padding: 2rem 4rem !important;
    }

    .header-section::before {
        content: none !important;
    }

    .header-section.active-menu .header-popup {
        background: var(--color-primary);
    }

    .header-popup ul,
    .contact-details.pt--3.text-align--center {
        text-align: left !important;
    }

    .social-icons .s-icons--inner,
    .header-button {
        justify-content: start !important;
    }

    .header-section .hp-inner {
        padding-right: 2.5rem;
    }

}

@media screen and (max-width: 600px) {
    .header-section.active-menu .header-popup {
        width: 100%;
        height: 90vh;
    }

    .footer-section .divider {
        flex-direction: column;
        align-items: center;
    }

    .footer-section .divider .content--1 {
        order: 2;
        width: 100%;
    }

    .footer-section .divider .content--1 .content--wrapper:first-child {
        text-align: left;
    }

    .footer-section .divider .content--1 .content--wrapper:last-child {
        text-align: right;
    }

    footer .fs-inner {
        padding-right: 2rem;
    }

}

@media screen and (max-width: 360px) {
    .footer-section .col--1.grid {
        grid-template-columns: 1fr;
    }

    .footer-section .divider .content--1 .content--wrapper:last-child {
        text-align: left;
    }
}

.hero-banner .content-text {
    font-size: var(--font-size-promoted);
}

.con-m--width {
    max-width: 1550px;
}

/* Misc */



.gap--1 {
    gap: 1rem;
}

.gap--2 {
    gap: 2rem;
}

.gap--3 {
    gap: 3rem;
}

.gap--4 {
    gap: 4rem;
}

.gap--5 {
    gap: 5rem;
}

.gap--6 {
    gap: 6rem;
}

.gap--7 {
    gap: 7rem;
}

.gap--8 {
    gap: 8rem;
}

.gap--9 {
    gap: 9rem;
}

.gap--10 {
    gap: 10rem;
}

p {
    /* margin-bottom: 20px; */
    line-height: 1.5;
}

span {
    line-height: inherit;
}

p:last-of-type {
    margin-bottom: 0;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-family-primary);
    line-height: 1.1;
    text-wrap: balance;
    margin: 0 0 0.75em;
}

h1 {
    font-size: var(--font-size-heading-large);
    text-transform: uppercase;
    letter-spacing: calc((var(--ps-letter-spacing, 40) / 1000) * 1em);
}

h2 {
    font-size: var(--font-size-heading);
    text-transform: uppercase;
    letter-spacing: calc((var(--ps-letter-spacing, 40) / 1000) * 1em);
    margin-block-start: 0 !important;
    margin-block-end: 0 !important;
}

h3 {
    font-size: var(--font-size-heading-small);
    text-transform: uppercase;
    letter-spacing: calc((var(--ps-letter-spacing, 40) / 1000) * 1em);
}

h4 {
    font-size: var(--font-size-promoted);
    margin-bottom: 0.5em;
}

h5 {
    font-size: 1em;
    margin-bottom: 0.5em;
}

h6 {
    font-size: var(--font-size-diminished);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.5em;
}



section {
    padding: 8rem 0;
}

.dp--flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: -moz-flex;
    display: -o-flex;
    display: flex;
}

.margin--auto {
    margin: auto;
}

.pt--0 {
    padding-top: 0 !important;
}

.pb--0 {
    padding-bottom: 0 !important;
}



.col-md-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: 100%
}

.col-md-1__ {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%
}

.col-md-2__ {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%
}

.col-md-3__ {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%
}

.col-md-4__ {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%
}

.col-md-5__ {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%
}

.col-md-6__ {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%
}

.col-md-7__ {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%
}

.col-md-8__ {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%
}

.col-md-9__ {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%
}

.col-md-10__ {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%
}

.col-md-11__ {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%
}

.col-md-12__ {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%
}

img {
    width: auto;
}

.width--full img {
    width: 100%;
}

.has--height img {
    height: 100%;
}

.content--button input,
.content--button a {
    padding: 10px 24px;
    border-radius: 4px;
    -ms-border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -o-border-radius: 4px;
    transition: 0.3s all ease;
    -ms-transition: 0.3s all ease;
    -webkit-transition: 0.3s all ease;
    -o-transition: 0.3s all ease;
    -moz-transition: 0.3s all ease;
    border: 1px solid;
    font-size: 16px;
    text-align: center;
    display: inline-flex;
    align-items: center;
    text-transform: capitalize;
    font-weight: 500;

}

.primary--btn a {
    background-color: var(--color-b);
    border-color: var(--color-b);
    color: var(--color-w);
}

.primary--btn a:hover {
    background-color: var(--color-w);
    border-color: var(--color-w);
    color: var(--color-b);
}

.primary--btn-yellow a {
    background-color: var(--color-b);
    border-color: var(--color-b);
    color: var(--color-primary);
}

.primary--btn-yellow a:hover {
    background-color: var(--color-w);
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.black--btn a {
    background-color: #06152199;
    border-color: var(--color-w);
    color: var(--color-w);
}

.black--btn a:hover {
    background-color: var(--color-w);
    border-color: var(--color-w);
    color: var(--color-b);
}

.p--absolute img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    height: 100%;
}

.p--relative {
    position: relative;
    width: 100%;
    height: 100%;
}

.p-relative__image {
    position: relative;
    padding-top: 56%;
    height: 100%;
    width: 100%;
}

.po-relative--image__square {
    position: relative;
    padding-top: 80%;
}

.h--100vh {
    height: 100vh;
}


@media screen and (max-width: 560px) {
    section {
        padding: 4rem 0;
    }
    .content--button {
        width: 100%;
    }

    .content--button a {
        width: 100%;
        justify-content: center;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: -moz-flex;
        display: -o-flex;
        display: flex;
    }
}


.header-section.active-menu{
    z-index: 9999999;
}

.header-section,
.header-section .hs-inner,
.header-section .main-content {
    height: 100%;
}

.header-section .hs-inner {
    padding: 2rem 8rem;
}

.header-section .main-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.header-logo img {
    width: 80px;
    height: 80px;
}

section.full-image {
    padding: 0;
}

.header .mobile--btn__inner {
    position: relative;
    width: 6rem;
    height: 6rem;
    z-index: 11111;
}

.header .mobile--btn {
    height: 100%;
    width: 100%;
    position: absolute;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
}

.header .mobile--btn span {
    width: 40px;
    background: #fff;
    position: absolute;
    height: 3px;
    border-radius: 25px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.3s all ease;
    -ms-transition: 0.3s all ease;
    -webkit-transition: 0.3s all ease;
    -o-transition: 0.3s all ease;
    -moz-transition: 0.3s all ease;
}

.header-logo img {
    height: 80px;
    width: 80px;
}

.header .mobile--btn span:nth-child(1) {
    top: 35%;
}

.header .mobile--btn span:nth-child(3) {
    top: 65%;
    width: 40px;
}

.header .mobile--btn__wrapper .contact-detail--each {
    display: none;
}

.header .mobile--btn.active span:nth-child(1) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
}

.header .mobile--btn.active span:nth-child(2) {
    display: none;
}

.header .mobile--btn.active span:nth-child(3) {
    left: 50%;
    width: 40px;
    top: 50%;
}

.header .header .mobile--btn.active span:nth-child(1) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
}

.header .mobile--btn.active span:nth-child(2) {
    display: none;
}

.header .mobile--btn.active span:nth-child(3) {
    left: 50%;
    width: 40px;
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}

.header .mobile--btn {
    pointer-events: all;
}

/* HERO BANNER */
.hero-banner {
    position: relative;
    height: 100vh;
	    overflow: hidden;
    z-index: 1;
}

.hero-banner .background-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-banner .container {
    height: 100%;
}

.hero-banner .section-inner {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    z-index: 2;
}

.hero-banner .content-text p {
    color: var(--color-w);
    text-shadow: 0 0 20px rgba(0, 0, 0, .7);
}

/* Ensure the text and animations stay on top */
.hero-banner .container {
    position: relative;
    z-index: 5;
}

/* Background Media Base Wrapper */
.background-media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* Base sizing rules for both assets */
.background-media .bg-image,
.background-media .bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* DESKTOP BEHAVIOR (Default) */
/* The image sits quietly behind the video player as a loading fallback */
.background-media .bg-image {
    z-index: 2;
}

/* The video sits on top covering the image completely */
.background-media .bg-video {
    z-index: 3;
}

/* MOBILE BEHAVIOR (768px and below) */
@media (max-width: 768px) {
    /* Kill the video player completely to save mobile data & battery */
    .background-media .bg-video {
        display: none !important;
    }
    
    /* Bring the fallback image to the absolute front layer */
    .background-media .bg-image {
        z-index: 4;
        display: block;
    }
}

@media screen and (min-width: 1800px) {
    body:before {
        position: absolute;
        top: 32vw;
        right: 0;
        z-index: 3;
        content: "";
        display: block;
        height: 500px;
        width: 200px;
        background: url(../img/1895.svg) 0 0 / contain no-repeat;
    }
}

@media screen and (max-width: 767px) {
    .hero-banner {
        height: 60vh;
    }

    .text-image--section .col--wrapper {
        grid-template-columns: 1fr;
    }

    .text-image--section .col--2.pr--4 {
        padding-left: 2rem;
        padding-right: 2rem !important;
    }

    .grid-box .grid-box--each .content--image {
        padding-top: 56% !important;
    }
}

.hero-banner .background-image:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}




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

.content--gallery__slider {
    position: relative;
}

.custom-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: transparent;
    width: 50px;
    height: 50px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;
    font-size: 24px;
    transition: 0.3s ease;
}

.custom-arrow svg path {
    fill: #fff;
}

/* LEFT */
.custom-prev {
    left: 0;
    cursor: pointer;
    z-index: 55555;
}

/* RIGHT */
.custom-next {
    right: 0;
    cursor: pointer;
    z-index: 55555;
}



.image-slick--slider {
    overflow: visible;
}

.image-slick--slider .slick-list {
    overflow: visible;
    padding-right: 120px;
}

.image-slick--slider .image-slider--each {
    margin-right: 30px;
}

.image-slick--slider .slick-slide {
    height: auto;
}

.image-slick--slider .slick-track {
    display: flex;
}
@media screen and (max-width: 767px) {
    .image-slick--slider .slick-list {
        overflow: hidden!important;
        padding-right: 0!important;
    }
    .image-slick--slider .image-slider--each{
        margin-right: 1rem!important;
        margin-left: 1rem!important;
    }
}



.image-slider--each img {
    width: 100%;
    object-fit: cover;
    -o-object-fit: cover;
    -webkit-object-fit: cover;
    -moz-object-fit: cover;
    -ms-object-fit: cover;
}

.image-slider .content-title h2 {
    font-size: var(--font-size-heading-large);
    margin: 0;
    text-transform: uppercase;
    line-height: 1;
    letter-spacing: calc((var(--ps-letter-spacing, 40) / 1000) * 1em);
    color: var(--color-w);
    font-weight: 400;
    color: var(--color-primary);
}

.image-slider .content-wrapper {
    margin-top: -3em;
}

.image-slider .content-link a,
.buttons--each a {
    font-size: 1.111em;
    font-style: italic;
    color: var(--color-primary);
}

.image-slider .content-text p {
    color: var(--color-w);
}

.slider-top-nav .custom-prev,
.slider-top-nav .custom-next,
.slider-top-nav .divider {
    background: none;
    color: var(--color-primary);
    border: none;
    text-transform: uppercase;
    font-weight: 400;
}

.image-slider,
.image-slider .slider-top-nav {
    position: relative;
}

.image-slider.grey--bg:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 16%;
    height: 100%;
    background: #323439;
    z-index: 11231;
}

.image-slider .slider-top-nav:before {
    content: '';
    position: absolute;
    top: -40px;
    left: 0;
    height: 1px;
    background: #99873d;
    width: 120%;
}

.regular-content .content-text p {
    color: var(--color-w);
}

.regular-content.d-white--bg .content-text p {
    color: var(--color-b);
}

.pad-top-100.regular-content .content--image {
    padding-top: 100%;
}

.regular-content .content--image {
    position: relative;
    padding-top: 70%;
}

.regular-content .content--image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}



.regular-content .content-button--wrapper {
    flex-wrap: wrap;
}

.footer-logo img {
    width: 100%;
    height: 100%;
    max-width: 180px;
}

footer .fs-inner {
    padding-top: 10rem;
    padding-left: 30rem;
}

footer .f-title span {
    color: var(--color-primary);
    font-weight: 400;
}

footer .f-address span,
footer .f-number a,
footer .f-email a,
.footer-menu li a {
    font-size: 18px;
    color: var(--color-w);
}


footer.d-white--bg .f-address span,
footer.d-white--bg .f-number a,
footer.d-white--bg .f-email a,
.d-white--bg .footer-menu li a {
    font-size: 18px;
    color: var(--color-b);
}

footer.d-white--bg .footer-bottom p {
    color: var(--color-b);
}

.footer-menu li {
    list-style-type: none;
}

.footer-bottom p {
    font-size: 16px;
    color: var(--color-w);
}

footer .main-content {
    border-top: 1px solid var(--color-primary);
    padding-top: 5rem;
}

.header-section {
    position: fixed;
    overflow: hidden;
    z-index: 55555;
}


.header-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #99873d;
    transition: left 0.35s ease;
    z-index: -1;
}

.header-section.active-menu::before {
    left: 0;
}

.header-popup {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    transform: translateX(-100%);
    transition: transform 0.35s ease;
}

.header-section.active-menu .header-popup {
    transform: translateX(0);
}

.header-section .hp-inner {
    padding-top: 13rem;
    padding-left: 1.5rem;
}

.header-popup ul {
    text-align: center;
}

#menu-header-menu {
    padding: 0;
}

.header-popup ul li {
    list-style-type: none;
}

.header-popup ul li a {
    font-size: 20px;
    color: var(--color-w);
}

.header-popup ul li:not(:last-child) {
    padding-bottom: 1rem;
}

.header-button a {
    font-size: 18px;
    color: var(--color-w);
    border: 1px solid var(--color-w);
    padding: 1rem;
    font-weight: 400;
    text-align: center;
    display: inline-flex;
    justify-content: center;
}

.social-icons svg path {
    fill: var(--color-w);
}

.contact-details .c-title span,
.contact-details .c-number a,
.contact-details .c-email a {
    font-size: 17px;
    color: var(--color-w);
    font-weight: 400;
}

.contact-details .c-number span,
.contact-details .c-email span {
    font-style: italic;
}

.mobile--btn p {
    position: absolute;
    bottom: -4px;
    left: 10px;
    color: var(--color-w);
    font-size: 14px;
}

.header-section.active-menu .hs-inner {
    border: none;
}

.header-section .hs-inner {
    border-right: 1px solid #fff;
}

.type-2--gallery .gallery-each {
    height: 420px;
    display: flex !important;
    align-items: center;
    justify-content: center;
}

@media screen and (max-width: 480px) {
    .type-2--gallery .gallery-each {
        height: 320px !important;
    }

    .type-2--gallery img,
    .type-2--gallery .content--image,
    .type-2--gallery .ge--inner {
        width: 100% !important;
    }
}

.type-2--gallery .content--image {
    height: 100%;
}

.type-2--gallery img {
    height: 100%;
    width: auto;
    display: block;
    object-fit: cover;
    -o-object-fit: cover;
    -webkit-object-fit: cover;
    -moz-object-fit: cover;
    -ms-object-fit: cover;
}

/* spacing */
.type-2--gallery .slick-slide {
    margin: 0 14px;
}

/* show previews outside */
.type-2--gallery .slick-list {
    overflow: visible;
}

/* optional nice focus effect */
.type-2--gallery .slick-slide {
    opacity: .45;
    transition: all .35s ease;
}

.type-2--gallery .slick-center {
    opacity: 1;

}


.type-2--gallery .ge--inner,
.type-2--gallery .content--image {
    height: 100%;
}

.type-2--gallery img {
    height: 100%;
    width: auto;
    display: block;
}

.type-2--gallery .slick-slide {
    margin: 0 20px;
}

.type-2--gallery .gallery-each {
    height: 420px;
    position: relative;
}

/* divider */
.type-2--gallery .gallery-each::after {
    content: "";
    position: absolute;
    top: 0;
    right: -20px;
    /* half the gap */
    width: 1px;
    height: 100%;
    background: #99873d;
}

/* remove last divider */
.type-2--gallery .slick-slide:last-child .gallery-each::after {
    display: none;
}

.type-2--gallery img {
    height: 100%;
    width: auto;
    display: block;
}

.regular-content.type--2 .content--each:not(:last-child) {
    padding-bottom: 4rem;
}

.regular-content.type--2 .content-title h2,
.grid-box .content-title h2 {
    color: var(--color-primary);
    font-weight: 400;
}

.grid-box .grid-box--each .content--image {
    position: relative;
    padding-top: 100%;
}

.grid-box .grid-box--each .content--image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    -o-object-fit: cover;
    -webkit-object-fit: cover;
    -moz-object-fit: cover;
    -ms-object-fit: cover;
}

.regular-content.type--2 .content-text p {
    color: #000;
}

.regular-content.type--2.d-white--bg .content-text p {
    color: var(--color-b);
}

.regular-content.type--2.grey--bg .content-text p {
    color: var(--color-w);
}

.regular-content .col--1,
.regular-content .col--1 * {
    height: 100%;
}

.uc_heading-large {
    font-size: var(--font-size-heading-large);
    color: #fff;
    font-weight: 400;
}

h2 span {
    font-size: var(--font-size-promoted);
}


.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}


.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 13px;
    letter-spacing: 1px;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.contact-form-grid input,
.contact-form-grid textarea {
    width: 100%;
    border: 1px solid #2f2f2f;
    background: transparent;
    padding: 12px;
    font-size: 14px;
    border-radius: 6px;
    -ms-border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -o-border-radius: 6px;
}

.grey--bg .contact-form-grid input,
.grey--bg .contact-form-grid textarea {
    border: 1px solid var(--color-w);
}

.contact-form-grid textarea {
    height: 180px;
    resize: none;
}


.form-newsletter {
    margin-top: 15px;
    font-size: 13px;
}

.form-newsletter label {
    display: flex;
    align-items: center;
    gap: 10px;
}


.form-bottom {
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 25px;
    justify-content: center;
}

.required-note {
    font-size: 14px;
}

.form-bottom input[type="submit"] {
    background: #9c8b3a;
    color: #000;
    border: none;
    padding: 12px 26px;
    font-size: 13px;
    letter-spacing: 2px;
    cursor: pointer;
    transition: 0.3s;
}

.form-bottom input[type="submit"]:hover {
    opacity: 0.85;
}

.has--reverse .col--1 {
    order: 2;
}

.has--reverse .col--2 {
    order: 1;
}

.has--reverse .col--2.pr--20 {
    padding-left: 25rem !important;
    padding-right: 0 !important;
}

.text-image--section .content-text ul,
.regular-content .content-text ul {
    padding-left: 2rem !important;
}

.text-image--section.has--reverse .col--2.pr--4 {
    padding-right: 0 !important;
    padding-left: 31rem;
}

.text-image--section .col--1,
.text-image--section .col--1 * {
    height: 100%;
}

@media screen and (max-width: 1500px) {
    .text-image--section.has--reverse .col--2.pr--4 {
        padding-right: 0 !important;
        padding-left: 4rem;
    }

    .image-slider.grey--bg:before {
        content: none !important;
    }
}

@media screen and (max-width: 1050px) {
    .text-image--section .col--wrapper.grid--2 {
        grid-template-columns: 30% auto;
    }

    .text-image--section.has--reverse .col--wrapper.grid--2 {
        grid-template-columns: auto 30%;
    }
}

@media (max-width: 991px) {

    .contact-form-grid {
        gap: 40px;
    }

    .contact-form-grid textarea {
        height: 160px;
    }

    .grid-box .grid-wrapper.grid--3 {
        grid-template-columns: repeat(2, 1fr);
    }

}



@media (max-width: 768px) {
    .grid-box .grid-wrapper.grid--3 {
        grid-template-columns: 1fr;
    }

    .text-image--section.has--reverse .col--wrapper .col--2.pr--4 {
        padding-left: 2rem !important;
        padding-right: 2rem !important;
    }

    .text-image--section .col--wrapper.grid--2 {
        grid-template-columns: 1fr !important;
    }

    .contact-form-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .form-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .form-bottom input[type="submit"] {
        width: auto;
    }

}



@media (max-width:480px) {

    .contact-form-grid input,
    .contact-form-grid textarea {
        padding: 10px;
        font-size: 13px;
    }

    .form-group label {
        font-size: 12px;
    }

}

.form-section [type=checkbox] {
    width: 30px;
}

.form-section .form-content br,
.form-bottom .wpcf7-spinner {
    display: none;
}

.form-section .content-title h2,
.text-image--section h2 {
    font-weight: 400;
    color: var(--color-primary);
}

.form-section .content-text p {
    margin: 0;
}

.form-bottom p {
    display: flex;
    align-items: center;
    gap: 2rem;
    justify-content: center;
}

.regular-content.type--3 .content-title h2 {
    text-transform: none;
    letter-spacing: 0;
    font-weight: 400;
}

.text-image--section .content--image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -o-object-fit: cover;
    -webkit-object-fit: cover;
    -moz-object-fit: cover;
    -ms-object-fit: cover;
}

.text-image--section .content-text--each .content-title span {
    font-size: var(--font-size-heading-small);
    color: var(--color-primary);
    font-weight: 400;
    text-transform: uppercase;
}

.text-image--section .content-text--each {
    border-top: 1px solid var(--color-primary);
    padding-bottom: 1rem;
    padding-top: 1rem;
    align-items: baseline;
}

.text-image--section .content-text--each:last-child {
    border-bottom: 1px solid var(--color-primary)
}

.footer-section ul#menu-footer-menu {
    display: block;
    list-style-type: disc;
    margin-block-start: 0;
    margin-block-end: 0;
    padding-inline-start: 0;
    unicode-bidi: isolate;
}

@media screen and (max-width: 991px) {
    .regular-content .col--wrapper {
        grid-template-columns: 1fr !important;
    }

    .regular-content .content--image {
        padding-top: 56% !important;
    }
}


.buttons--each a,
.image-slider .content-link a {
    position: relative;
    display: inline-block;
    z-index: 0;
}

.buttons--each a::before,
.image-slider .content-link a:before {
    position: absolute;
    inset: -.1em -.2em;
    content: "";
    background-color: var(--color-primary);
    opacity: .1;
    border-radius: .25em;
    transform-origin: bottom right;
    transform: scaleX(0);
    transition: transform var(--fast) ease;
    z-index: -1;
}

.buttons--each a:hover::before,
.image-slider .content-link a:hover:before {
    transform-origin: bottom left;
    transform: scaleX(1);
}


.button-wrapper__ .button-back__{
    border: red;
    background: red;
}

.wpcf7-not-valid-tip{
    padding-top: 1rem;
    font-size: 14px;
}