<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Fonts */

@font-face {
    font-family: 'Brown-light';
    src: url('../fonts/Brown-Light.woff2') format('woff2'),
        url('../fonts/Brown-Light.woff') format('woff'),
        url('../fonts/Brown-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Brown-Regular';
    src: url('../fonts/Brown-Regular.woff2') format('woff2'),
        url('../fonts/Brown-Regular.woff') format('woff'),
        url('../fonts/Brown-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Didot';
    src: url('../fonts/Didot.woff2') format('woff2'),
        url('../fonts/Didot.woff') format('woff'),
        url('../fonts/Didot.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}



:root {
    --color-one: #212321;
    --color-two: #253527;
    --color-three: #89A587;
    --color-four: #E2E5D7;
    --color-five: #EAEDE8;
    --color-black: #000000;
    --color-white: #FFFFFF;
    --font-didot: 'Didot';
    --font-brown: 'Brown-Regular';
    --font-brown-light: 'Brown-light';

    --vp-items-style-default-transition-duration: 
}

[class*=uk-animation-] {
    animation-duration: 1.5s !important;
    animation-timing-function: ease-in-out !important;
}

.delay-25{
    animation-delay: 2.5s;
}

.delay-2{
    animation-delay: 2s;
}

/* Custom Cursor */

.cursor-follower {
    position: fixed;
    border: 1px solid var(--color-four);
    width: 30px;
    height: 30px;
    border-radius: 100%;
    z-index: 1;
    transition: 0.6s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform, 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity, 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) background;
    user-select: none;
    pointer-events: none;
    z-index: 10000;
    transform: translate(2px, 2px);
}

.cursor-follower.active {
    opacity: 1;
    transform: scale(1.5);
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -ms-transform: scale(1.5);
    -o-transform: scale(1.5);
}

.cursor-follower.menu-active {
    opacity: 1;
    transform: scale(1.5);
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -ms-transform: scale(1.5);
    -o-transform: scale(1.5);
}

.cursor-follower.hovered {
    opacity: 1;
}

/* End custom cursor */

/* Intro BG */
#introBg{
    position: absolute;
    top: 0;    
    left: 0;
    right: 0;
    height: 100vh !important;
    height: calc(var(--vh, 1vh) * 100) !important;
    background: var(--color-one);
}

#introBg img{
    height: 100vh !important;
    height: calc(var(--vh, 1vh) * 100) !important;
    width: 100%;
    object-fit: cover; 
    transform: translate(0px, 100vh);
}

#main-content{
    background: transparent;
}

#page-container{
    margin-top: 0 !important;
}

.et_pb_section{
    background-color: transparent;
}

.section{
    position: relative;
}

#introHeader{
    background: transparent;
    z-index: 9;
    position: relative;
    height: 100vh !important;
    height: calc(var(--vh, 1vh) * 100) !important;
}

.bg-white{
    background: var(--color-white);
}

.bg4{
    background: var(--color-four);
}

.mt-30{
    margin-top: 30px;
}

.mt-50{
    margin-top: 50px;
}

body{
    overflow-x: hidden;
}

/* Hamburger Menu */

.overlay {
    position: fixed;
    background: var(--color-white);
    top: 0;
    right: 0;
    width: 0%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s, visibility 1.2s, width 1.2s;
    overflow: hidden;
    z-index: 9;
}

.overlay.open {
    opacity: 1;
    visibility: visible;
    width: 50%;
    z-index: 10;
}

.toggle-menu.active .toggle-menu__bar{
    background-color: var(--color-three) !important;
    width: 80%;
}

.toggle-menu.active .toggle-menu__bar:first-child{
    transform: translateY(15px) rotate(45deg);
    -webkit-transform: translateY(15px) rotate(45deg);
    -moz-transform: translateY(15px) rotate(45deg);
    -ms-transform: translateY(15px) rotate(45deg);
    -o-transform: translateY(15px) rotate(45deg);
}

.toggle-menu.active .toggle-menu__bar:last-child{
    transform: translateY(-15px) rotate(-45deg);
    -webkit-transform: translateY(-15px) rotate(-45deg);
    -moz-transform: translateY(-15px) rotate(-45deg);
    -ms-transform: translateY(-15px) rotate(-45deg);
    -o-transform: translateY(-15px) rotate(-45deg);
}

.overlay .contact__details .cd-item,
.overlay .overlay-menu li{
    opacity: 0;
}

.overlay.open .overlay-menu li{
    animation: fadeInRight 0.95s ease-in-out forwards;
    animation-delay: 0.35s;
}

.overlay.open .overlay-menu li:nth-of-type(2){
    animation-delay: 0.45s;
}

.overlay.open .overlay-menu li:nth-of-type(3){
    animation-delay: 0.55s;
}

.overlay.open .contact__details .cd-item{
    animation: fadeInRight 0.95s ease-in-out forwards;
}

.overlay.open .contact__details .cd-item:nth-of-type(1){
    animation-delay: 0.75s;
}

.overlay.open .contact__details .cd-item:nth-of-type(2){
    animation-delay: 0.85s;
}

.overlay.open .contact__details .cd-item:nth-of-type(3){
    animation-delay: 0.95s;
}

.overlay.open .contact__details .cd-item:nth-of-type(4){
    animation-delay: 1.05s;
}

@keyframes fadeInRight {
    0% {
      opacity: 0;
      left: 45px;
    }

    100% {
      opacity: 1;
      left: 0;
    }
}

/* 
#main-scrollbar{
    margin: 0;
    padding: 0;
    
    height: 100%;
    width: 100%;
    
    overflow: hidden;
    position: relative;
    z-index: 9;
}

.scroll-content {
    height: 100vh;
    width: 100vw;
    overflow-y: hidden;
} 

.content{
    width: 100%;
    overflow: hidden;
    position: relative;
} */

/* end smooth scrollbar */

.main-logo {
    position: fixed;
    top: 60px;
    left: 60px;
    z-index: 20;
}

.main-overlay{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9;
    display: none;
}

.main-overlay.open{
    display: block;
}

button{
    background: transparent;
    border: 0;
    color: inherit;
    cursor: pointer;
    font-family: inherit;
    line-height: 1.14;
    outline: 0;
    padding: 0;
    text-align: left;
}

.main-logo, 
.toggle-menu{
    opacity: 0;
}

.toggle-menu{
    position: fixed;
    top: 70px;
    right: 60px;
    width: 40px;
    height: 40px;
    transform: translateY(-50%);
    z-index: 22;
    cursor: pointer;
}

.toggle-menu__bar{
    position: relative;
    display: block;
    margin: 6px 0 6px auto;
    width: 100%;
    height: 1px;
    background-color: var(--color-white);
    transition: width .6s,background-color .5s,opacity .5s,transform .8s ease;
    transform-origin: right;
}

.uk-animation-slide-right-medium .toggle-menu__bar{
    background-color: var(--color-two);
}

.toggle-menu__bar:last-child{
    width: 55%;
}

.toggle-menu:hover .toggle-menu__bar:last-child,
.toggle-menu:hover .toggle-menu__bar{
    width: 80%;
}

.toggle-menu.is-active .toggle-menu__bar:last-child{
    opacity: 0;
}

.toggle-menu.is-active .toggle-menu__bar{
    background-color: var(--color-three) !important;
}

.toggle-menu.is-active:hover .toggle-menu__bar:first-child{
    transform: translateY(15px) rotate(45deg);
    -webkit-transform: translateY(15px) rotate(45deg);
    -moz-transform: translateY(15px) rotate(45deg);
    -ms-transform: translateY(15px) rotate(45deg);
    -o-transform: translateY(15px) rotate(45deg);
}

.toggle-menu.is-active:hover .toggle-menu__bar:last-child{
    transform: translateY(-15px) rotate(-45deg);
    -webkit-transform: translateY(-15px) rotate(-45deg);
    -moz-transform: translateY(-15px) rotate(-45deg);
    -ms-transform: translateY(-15px) rotate(-45deg);
    -o-transform: translateY(-15px) rotate(-45deg);
    opacity: 1;
}

.menu-wrapper{
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 50%;
    background-color: var(--color-white);
    z-index: 21;
    transform: translateX(105%);
    transition: transform .8s cubic-bezier(.25,.05,.1,.94);
}

.menu-wrapper.is-active{
    transform: translateX(0);
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
}

.menu__container{
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 80px;
}

.main-navigation ul{
    display: inline-block;
    margin-bottom: 0;
    padding-left: 0;
	transform: translate(40px, 0px);
    -webkit-transform: translate(40px, 0px);
    -moz-transform: translate(40px, 0px);
    -ms-transform: translate(40px, 0px);
    -o-transform: translate(40px, 0px);
}

.main-navigation a{
    font-size: 4em;
    text-transform: uppercase;
    transition: color 1s cubic-bezier(.2,.6,.35,1),transform .8s ease;
    -webkit-transition: color 1s cubic-bezier(.2,.6,.35,1),transform .8s ease;
    -moz-transition: color 1s cubic-bezier(.2,.6,.35,1),transform .8s ease;
    -ms-transition: color 1s cubic-bezier(.2,.6,.35,1),transform .8s ease;
    -o-transition: color 1s cubic-bezier(.2,.6,.35,1),transform .8s ease;
    display: inline-block;
    text-align: left;
    color: var(--color-two);
    text-decoration: none;
    font-family: var(--font-didot);
}

.main-navigation .menu-item{
    position: relative;
    font-family: var(--font-brown);
    margin-bottom: 70px;
}

.main-navigation .menu-item:last-child{
    margin-bottom: 40px;
}

.main-navigation .menu-item:hover&gt;a{
    transform: translateX(15px) skew(-20deg);
    -webkit-transform: translateX(15px) skew(-20deg);
    -moz-transform: translateX(15px) skew(-20deg);
    -ms-transform: translateX(15px) skew(-20deg);
    -o-transform: translateX(15px) skew(-20deg);
    color: var(--color-three);
}

.menu__number{
    position: absolute;
    left: -30px;
    bottom: 0;
    color: var(--color-two);
    font-size: 1em;
}

.contact__details{
    display: inline-block;
    transform: translate(5px, 0%);
    -webkit-transform: translate(5px, 0%);
    -moz-transform: translate(5px, 0%);
    -ms-transform: translate(5px, 0%);
    -o-transform: translate(5px, 0%);
}

.contact__details h3{
    font-size: 4em;
    text-transform: uppercase;
    text-align: left;
    color: var(--color-three);
    text-decoration: none;
    font-family: var(--font-didot);
    font-style: italic;
}

.contact__details .menu__link{
    text-transform: uppercase;
    font-family: var(--font-brown);
    font-size: 1em;
    letter-spacing: 0.15em;
    color: var(--color-two);
    display: inline-block;
}

.social{
    padding-left: 0;
    margin-top: 0;
}

.social li{
    display: inline-block;
}

.social li:first-child{
    margin-right: 20px;
}

.link__text:hover,
.link__text:focus{
    text-decoration: none;
}

.link__text{
    position: relative;
}

.link__text:after{
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background-color: currentColor;
    transform-origin: 100% 0;
    transition: transform .5s ease-out;
    -webkit-transition: transform .5s ease-out;
    -moz-transition: transform .5s ease-out;
    -ms-transition: transform .5s ease-out;
    -o-transition: transform .5s ease-out;
}

.link__text:hover:after,
.link__text:focus:after{
    transform-origin: 100% 0;
    transform: scaleX(0);
    -webkit-transform: scaleX(0);
    -moz-transform: scaleX(0);
    -ms-transform: scaleX(0);
    -o-transform: scaleX(0);
}

.mt-15{
	margin-top: 15px;
}

.mb-10{
    margin-bottom: 10px;
}

.pl-140{
    padding-left: 7.29vw;
}

.text__center{
    text-align: center;
}

.text__right{
    text-align: right;
}

/* Footer */

#main-footer{
    color: var(--color-three);
    text-transform: uppercase;
    font-size: 1em;
    letter-spacing: 0.15em;
    line-height: 1.2em;
    font-family: var(--font-brown);
    overflow: hidden;
	min-height: 100vh;
	display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.s-footer-container{
    overflow: hidden;
}

#main-footer .container{
    width: 100%;
	padding-left: 60px;
	padding-right: 60px;
}

#main-footer a{
    color: var(--color-four);
}

.top__footer{
    min-height: calc(100vh - 140px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 200px;
}

.bottom__footer{
    padding: 60px 0;
}

.widget__four h3{
    font-family: var(--font-didot);
    font-size: 3em;
    color: var(--color-four);
    margin-bottom: 100px;
}

.widget__four h3 em{
    color: var(--color-four);
}

.widget__contact a{
    text-decoration: none;
    position: relative;
    display: inline-block;
    line-height: 1.5em;
    margin-bottom: 10px;
    font-family: var(--font-brown);
}

.et_pb_widget{
    float: none;
}

.anchor a{
    position: relative;
    text-decoration: none;
}

.anchor a:after,
.widget__contact a:after{
    content: "";
    display: block;
    height: 1px;
    width: 100%;
    transform: scaleX(0) translateZ(0);
    -webkit-transform: scaleX(0) translateZ(0);
    -moz-transform: scaleX(0) translateZ(0);
    -ms-transform: scaleX(0) translateZ(0);
    -o-transform: scaleX(0) translateZ(0);
    transform-origin: 100% 100%;
    transition: transform .5s cubic-bezier(.215,.61,.355,1);
    -webkit-transition: transform .5s cubic-bezier(.215,.61,.355,1);
    -moz-transition: transform .5s cubic-bezier(.215,.61,.355,1);
    -ms-transition: transform .5s cubic-bezier(.215,.61,.355,1);
    -o-transition: transform .5s cubic-bezier(.215,.61,.355,1);
    position: absolute;
    bottom: 0;
    left: 0;
    background: var(--color-four);
}

.anchor a:hover:after,
.anchor a:focus:after,
.widget__contact a:hover:after,
.widget__contact a:focus:after{
    transform-origin: 0% 0%;
    transform: scaleX(1) translateZ(0);
    -webkit-transform: scaleX(1) translateZ(0);
    -moz-transform: scaleX(1) translateZ(0);
    -ms-transform: scaleX(1) translateZ(0);
    -o-transform: scaleX(1) translateZ(0);
}

/* Instagram Carousel */

#instagram-feed{
    padding: 180px 60px 0 60px;
}

.instagram-carousel .swiper-slide{
    min-width: 440px;
    max-width: 440px;
    width: auto;
}

.instagram-carousel .swiper-slide img{
    width: 100%;
}

.title{
    font-size: 3em;
    line-height: 1.2em;
    color: var(--color-four);
    text-transform: uppercase;
    font-family: var(--font-didot);
    margin-bottom: 40px;
}

.btn__follow{
    text-transform: uppercase;
    color: var(--color-three);
    font-style: italic;
    font-size: 3em;
    line-height: 1em;
    padding-right: 5px;
    font-family: var(--font-didot);
    transition: color 1s cubic-bezier(.2,.6,.35,1),transform .8s ease;
    -webkit-transition: color 1s cubic-bezier(.2,.6,.35,1),transform .8s ease;
    -moz-transition: color 1s cubic-bezier(.2,.6,.35,1),transform .8s ease;
    -ms-transition: color 1s cubic-bezier(.2,.6,.35,1),transform .8s ease;
    -o-transition: color 1s cubic-bezier(.2,.6,.35,1),transform .8s ease;
}

.btn__follow:hover,
.btn__follow:focus{
    text-decoration: none;
    color: var(--color-three);
}

.follow__wrapper{
    margin-top: 120px;
}

.f-bs{
    display: inline-block;
    position: relative;
    padding-left: 40px;
}

.f-bs .f-bs-arrow{
    top: 8px;
    fill: var(--color-three);
    position: absolute;
}

.f-bs .f-bs-arrow:nth-child(1){
    left: 0;
}

.f-bs .f-bs-arrow:nth-child(2){
    opacity: 0;
    right: 20px;
}

.f-bs .f-bs-line{
    left: 0;
    bottom: -20px;
    height: 1px;
    width: 100%;
    content: '';
    position: absolute;
    background: var(--color-three);
}

.f-bs .f-bs-label{
    display: block;
}

/* Testimonial */

#garden-testimonials{
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 80px;
}

.testimonial__wrapper{
    max-width: 1040px;
	overflow: hidden;
}

.testimonial__wrapper .swiper-wrapper{
    padding-bottom: 70px;
}

.slide__inner{
    padding: 0 60px;
}

.testimonial__details{
    margin-bottom: 45px;
}

.testimonial__details p{
    font-size: 1.375em;
    line-height: 1.5em;
    color: var(--color-four);
    font-family: var(--font-brown-light);
}

.person__details{
    font-size: 1em;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    line-height: 1.2em;
    color: var(--color-four);
    font-family: var(--font-brown);
}

.slideshow-pagination {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    transition: .3s opacity;
    z-index: 10;
  }
.slideshow-pagination-item {
    display: flex;
    align-items: center;
}

.slideshow-pagination-item .pagination-number {
    opacity: 0.5;
}

.slideshow-pagination-item:hover, .slideshow-pagination-item:focus {
    cursor: pointer;
}

.slideshow-pagination-item:last-of-type .pagination-separator {
    width: 0;
}

.slideshow-pagination-item.active .pagination-number {
    opacity: 1;
}

.slideshow-pagination-item.active .pagination-separator {
    width: 60px;
}

.pagination-number {
    font-size: 1em;
    color:var(--color-four);
    font-family: var(--font-brown);
    padding: 0 0.5rem;
}
  
.pagination-separator {
    display: none;
    position: relative;
    width: 15px;
    height: 1px;
    background: rgba(255, 255, 255, 0.25);
    transition: all .3s ease;
}

.pagination-separator-loader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-four);
    transform-origin: 0 0;
}

.slideshow-navigation-button {
    position: absolute;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 30px;
    z-index: 1000;
    transition: all .3s ease;
    color: #FFF;
}

.slideshow-navigation-button:hover, .slideshow-navigation-button:focus {
    cursor: pointer;
}

.slideshow-navigation-button.prev {
    left: 0;
}

.slideshow-navigation-button.next {
    right: 0;
}

#garden-testimonials .container{
    max-width: 1120px;
}

/* Image Grid */

.container-sm{
    max-width: 1090px;
    margin: 0 auto;
}

.s-images.type-duo{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    position: relative;
}

.s-grid{
    display: grid;
    align-items: start;
    grid-row-gap: 0;
    grid-column-gap: 16px;
    grid-template-columns: repeat(8, 1fr);
}

.s-grid-12{
    display: grid;
    align-items: start;
    grid-row-gap: 0;
    grid-column-gap: 16px;
    grid-template-columns: repeat(12, 1fr);
}

.s-col-5{
    grid-column: 4/11;
}

.s-col-4{
    grid-column: 6/11;
}

.s-col-3{
    grid-column: 3/6;
}

.s-col-3-10{
    grid-column: 3/10;
}

.s-col-5-12{
    grid-column: 5/12;
}

.s-images.type-duo.layout-3 .images-block:nth-child(1){
    grid-column: 1/5;
}

.s-images.type-duo.layout-3 .images-block:nth-child(2){
    grid-column: 4/9;
    margin-top: -13.750em;
}

.s-images .images-block{
    position: relative;
}

.s-images .images-image{
    will-change: transform;
}

.type-duo .text-intro{
    position: absolute;
    top: 6.77vw;
    width: 100%;
    z-index: 9;
}

.empty-block-2{
    grid-column: 1/2;
}

.empty-block-5{
    grid-column: 1/5;
}

.type-duo .text-intro .text-block{
    grid-column: 6/9;
}

.subtitle{
    font-family: var(--font-didot);
    font-size: 3em;
    line-height: 1.2em;
    text-transform: uppercase;
}

.light{
    color: var(--color-four);
}

.subtitle.dark em,
.dark{
    color: var(--color-two)
}

.subtitle em{
    color: var(--color-four);
}

.caption{
    font-size: 1em;
    letter-spacing: 0.15em;
    font-family: var(--font-brown);
    line-height: 1em;
}

.up{
    text-transform: uppercase;
}

.type-duo .signature{
    position: absolute;
    top: 6.250em;
    width: 100%;
}

.type-duo .signature-block{
    grid-column: 3/9;
    margin-left: -60px;
    max-width: 770px;
}
/* Image reveal */

.reveal__container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    position: relative;
}

.reveal img{
    height: 100%;
    width: 100%;
    object-fit: cover; 
    transform-origin: left;
}

.reveal {
    visibility: hidden;
    position: relative;
    overflow:hidden;
}

.full__width{
    width: 100%;
    height: 100vh;
    object-fit: cover;
    object-position: center;
}

img.full{
    width: 100%;
}

.container__zoom{
    height: 100vh;
}

.intro__heading{
    padding-bottom: 7.45vw;
}

.button__wrapper{
    margin-top: 4.166vw;
}

.bg__darker .button__line:hover,
.bg__darker .button__line:focus,
.bg__darker .button__line{
    color: var(--color-four);
}

.bg__dark .button__line:hover,
.bg__dark .button__line:focus,
.bg__dark .button__line{
    color: var(--color-two);
}

.bg__darker .button__line:after,
.bg__dark .button__line:after{
    background-color: currentColor;
}

.button__line{
    display: inline-block;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 1.063em;
    letter-spacing: .4em;
    text-indent: .4em;
    text-transform: uppercase;
    position: relative;
    transition: color .5s ease;
}

.button__line:hover,
.button__line:focus{
    text-decoration: none;
}

.button__line:after{
    content: "";
    position: absolute;
    bottom: -8px;
    left: .4em;
    right: .4em;
    height: 1px;
    transition: transform .5s ease-out;
}
.button__line:hover:after{
    transform: scaleX(1.2);
}

.project__grid .cr-row,
.m-features-grid .cr-row{
    display: grid;
    align-items: start;
    row-gap: 0;
    column-gap: 16px;
    grid-template-columns: repeat(12, 1fr);
}

.c-feature-grid-item{
    --translateY: 0px;
    display: block;
}

.m-features-grid.two-grid .cr-row .item.two-grid-item:nth-child(2){
    margin-top: 0;
}

.m-features-grid.two-grid .cr-row .item.two-grid-item:first-child{
    grid-column: 1/7;
    margin-top: 16vw;
}

.c-feature-grid-item .media-wrapper,
.c-feature-grid-item .media-wrapper&gt;*{
    -webkit-transition: -webkit-transform .3s cubic-bezier(.25,.46,.45,.94) 0s;
    transition: -webkit-transform .3s cubic-bezier(.25,.46,.45,.94) 0s;
    transition: transform .3s cubic-bezier(.25,.46,.45,.94) 0s;
    transition: transform .3s cubic-bezier(.25,.46,.45,.94) 0s,-webkit-transform .3s cubic-bezier(.25,.46,.45,.94) 0s;
}

.c-feature-grid-item .media-wrapper{
    will-change: transform;
    overflow: hidden;
}

.c-feature-grid-item .media-wrapper, .vp-portfolio__item .vp-portfolio__item-img{
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}

.c-feature-grid-item .media-wrapper&gt;*{
    will-change: transform;
}

.c-feature-grid-item a{
    width: 100%;
}

.container-fluid{
    width: 100%;
    max-width: 100%;
    padding: 0 60px;
}

.container-1360{
    max-width: 1360px;
    margin: 0 auto;
}

.container-1080{
    max-width: 1080px;
    margin: 0 auto;
}

.container-1360 .s-content-text{
    padding: unset;
}

.mr-0{
    margin: 0;
}

.mtn-10{
    margin-top: -15px;
}

.mt40\@s{
    margin-top: 40px;
}

.mt80\@s{
    margin-top: 80px;
}

.mb-0{
    margin-bottom: 0;
}

.pd-0{
    padding: 0 !important;
}

.em{
    font-style: italic;
}

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

.pl-0{
    padding-left: 0;
}

.pr-0{
    padding-right: 0;
}

.pl-8vw{
    padding-left: 8vw;
}

.pr-30{
    padding-right: 30px;
}

.mt-0{
    margin-top: 0;
}

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

.pt-60{
    padding-top: 60px;
}

.pt-8vw{
    padding-top: 8vw;
} 

.pt-5vw{
    padding-top: 5vw;
} 

.pb-5vw{
    padding-bottom: 5vw;
}

.pb-2vw{
    padding-bottom: 2vw;
}

.pb-10{
    padding-bottom: 10vw;
}

.uc{
    text-transform: uppercase;
}

.absolute{
    position: absolute;
}

.svg__outline.absolute{
    top: 0;
    width: 100%;
}

.h100{
    height: 100vh;
}

.h70{
    height: 70vh;
}

.h50{
    height: 50vh;
}

.cg80{
    column-gap: 80px;
}

.flex__center{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.page-template-page-projects{
    background-color: var(--color-four);
}

.project__grid a,
.project__grid a:hover,
.project__grid a:focus{
    text-decoration: none;
    color: var(--color-two);
}

.grid__details{
    margin-top: 35px;
}

.grid__title h2{
    text-transform: uppercase;
    font-size: 1em;
    font-family: var(--font-brown);
    color: var(--color-two);
    letter-spacing: 0.15em;
    line-height: 1.4em;
    margin-bottom: 5px;
    padding: 0;
}

.grid__location p{
    margin: 0;
    font-size: 1em;
    line-height: 1em;
    font-family: var(--font-brown);
    color: var(--color-three);
}

.delay-1s{
    animation-delay: 1000ms;
}

.project__grid .cr-row:first-child .item:first-child{
    opacity: 1 !important;
    transform: translate(0px, 0px) !important;
    -webkit-transform: translate(0px, 0px) !important;
    -moz-transform: translate(0px, 0px) !important;
    -ms-transform: translate(0px, 0px) !important;
    -o-transform: translate(0px, 0px) !important;
}

.project__testimonial .quote{
    padding: 5vw 30px 2vw;
}

.quote{
    padding: 15vw 30px;
    margin: 0 auto;
}

.quote__text{
    font-size: 1.375em;
    line-height: 1.5em;
    font-family: var(--font-brown-light);
    margin: 0;
}

.quote__name{
    font-size: 1em;
    line-height: 1.4em;
    font-family: var(--font-brown);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0;
    margin: 80px 0 0;
}

.lining {
    font-variant-numeric: lining-nums;
    font-feature-settings: 'lnum';
    /* vendor-prefixes */
    -moz-font-feature-settings: 'lnum=1';
    -ms-font-feature-settings: 'lnum';
    -webkit-font-feature-settings: 'lnum';
    -o-font-feature-settings: 'lnum';
  }

/* SERVICES */

.s-content-container{
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    padding: 80px 0;
}

.s-content-text{
    padding: 0 6vw;
}

.content{
    font-family: var(--font-brown-light);
    font-size: 1em;
    line-height: 1.5em;
    color: var(--color-two);
}

.s-content-text .subtitle__label{
    display: block;
}

.lineParent,
.line {
    overflow: hidden;
}
  
.line__inner {
    display: block;
}

.split-parent {
    overflow: hidden;
}

.split-child {
    display: inline-block;
}

/* ABOUT PAGE */

.header__fullscreen{
    height: 100vh;
}

.header__fullscreen img{
    width: 100%;
    height: 100vh;
    object-fit: cover;
    object-position: center;
}

.marquee__wrapper{
    padding: 9.375vw 0;
    max-width: 100vw;
    overflow: hidden;
}

.marquee__wrapper em{
    color: var(--color-two);
    margin: 0 60px 0 45px;
}

.marquee__data{
    font-size: clamp(1.5em, 9.375vw, 2.8em);
    line-height: 1em;
    font-family: var(--font-didot);
    color: var(--color-two);
    max-height: 40px;
    width: 200vw;
    overflow: hidden;
}

/* Project Details */

.js-color{
    color: var(--color-two);
}

.garden__infor--wrapper{
    display: inline-block;
}

.garden__infor--wrapper table tr td{
    padding-top: 4px;
    padding-bottom: 4px;
}

.garden__infor--wrapper table,
.garden__infor--wrapper table tr td{
    border: none !important;
}

.garden__infor--wrapper table tr td:first-child{
    padding-left: 0 !important;
    padding-right: 0;
    width: 80px;
}

.garden__infor--wrapper h5{
    border-top: 1px solid var(--color-three);
    margin-top: 10px;
    padding-top: 15px;
    font-weight: 500;
    color: currentColor;
}</pre></body></html>