/* Header */
.oak-site-header{
    background: #FFFFFF;
    border-bottom: 1px solid #1A4D2E1A;
    box-shadow: 0px 4px 4px 0px #0000000D;
}

.oak-site-header .container {
    max-width: 1040px;
    margin: 0 auto;
    position: relative;
}

.oak-site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 68px;
    padding: 10px 0;
}

.oak-site-header__logo img{
	max-width: 87px
}

.oak-site-header__nav {
    flex: 1;
}

.oak-menu-header {
    display: flex;
    align-items: center;
    gap: 26px;
    list-style: none;
    margin: 0;
    padding: 0;
    justify-content: flex-end;
}

.oak-menu-header a {
    display: inline-block;
    text-decoration: none;
    color: #1A2B1F;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0px;
	transition: all .3s ease-in-out;
}

.oak-menu-header a:hover{
	color: #D4A574
}

.oak-menu-icon {
    display: none;
    position: relative;
    width: 34px;
    height: 34px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
}

.oak-menu-icon svg {
    position: absolute;
    transition: opacity 0.25s ease;
}

.oak-menu-icon .oak-icon-close {
    opacity: 0;
}

.oak-menu-icon.oak-active .oak-icon-hamburger {
    opacity: 0;
}

.oak-menu-icon.oak-active .oak-icon-close {
    opacity: 1;
}

.oak-header-menu-mb {
    /* display: none; */
    position: fixed;
    inset: 0;
    z-index: 999;
    flex-direction: column;
    gap: 24px;
    padding: 90px 20px 40px;
    overflow-y: auto;
    background: #fff; 
    transform: translateX(100%);
    transition: transform 0.35s ease;
}

.oak-header-menu-mb.oak-is-open {
    display: flex;
    transform: translateX(0);
}

.oak-header-menu-mb .oak-menu-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

/* Footer */
.oak-site-footer .container{
    max-width: 992px;
}

.oak-site-footer {
    background: #2B2624;
    padding: 36px 0 38px;
}

.oak-site-footer__item{
    color: #F5F7F6;
    font-size: 16px;
    line-height: 24px;

}

.oak-site-footer__cta{
    color: #D3A574;
    font-weight: 800;
    font-size: 16px;
    line-height: 24px;
	transition: all .3s ease-in-out
}

.oak-site-footer__cta:hover{
	color: #fff;
	text-decoration: none;
}

.oak-site-footer__inner{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

/* ==========================================================================
   HOME
   ========================================================================== */

/* Hero */
.oak-hero {
    position: relative;
    overflow: hidden;
    min-height: 432px;
    display: flex;
    align-items: stretch
}

.oak-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

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

.oak-hero .container {
    position: relative;
    z-index: 1;
    height: auto; 
    display: flex; 
    align-items: stretch;    
    max-width: 1060px;
}

.oak-hero__content {
    max-width: 533px;
    width: 100%;
    color: #fff;
    background: #1A2B1FE5;
    padding: 48px 20px 67px 42px;
    height: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.oak-hero__title {
    font-family: 'Source Serif Pro';
    font-weight: 400;
    font-size: 51.76px;
    line-height: calc(57 / 51.76);
    letter-spacing: -0.01em;
    margin-bottom: 24px;
    margin-bottom: 21px;
	color: #F5F7F6;
    margin-left: -6px;

}

.oak-hero__desc {
    color: #F5F7F6;
    max-width: 406px;
    font-size: 18px;
    line-height: 25px;
    margin-bottom: 33px;
}

.oak-hero__actions {
    display: flex;
    align-items: center;
    gap: 16px;

}


/* Services */
.oak-services{
	padding: 35px 0 61px;
}

.oak-services .oak-heading{
	margin-bottom: 21px;
}

.oak-services__list{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	padding: 0 23px 25px;
	gap: 15px;
	position: relative;
}

.oak-services__list::before{
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	background: #1A4D2E;
	width: 100%;
	height: calc(100% - 37px);
	border-radius: 5px;
	                   
}

.oak-service-card{
	border-radius: 5px;
	box-shadow: 0px 4px 8px 0px #00000026;
	overflow: hidden;
    position: relative;
    z-index: 2;
}

.oak-service-card__img{
	line-height: 0;
	aspect-ratio: 308 / 111;
}

.oak-service-card__img img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.oak-service-card__content{
	background: #FFFFFF;
	padding: 22px 16px 32px;
    background: #FFFFFF;
}

.oak-service-card__title{
	color: #1B4D2D;
	font-weight: 600;
	font-size: 24px;
	line-height: 1;
	margin-bottom: 6px
}

.oak-service-card__desc{
	color: #000000;
	font-weight: 400;
	font-size: 16px;
	line-height: 19px;
}


/* Foundation */
.oak-foundation {
	padding: 0 0 55px;
	overflow: hidden;
}

.oak-foundation__inner {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 40px;
}

.oak-foundation__content {
	flex: 1;
    max-width: 679px;
}

.oak-foundation .oak-heading {
	margin-bottom: 37px
}

.oak-foundation__list {
    display: flex;
    gap: 24px;
    justify-content: space-between;
    padding-left: 4px;
}

.oak-foundation__item {
	flex: 1;
/* 	min-width: 180px;
	min-height: 90px;  */
	border-left: 3px solid #9AA89E;
	padding-left: 12px;
}

.oak-foundation__item-title {
	color: #2B2624;
	margin: 0 0 6px;
	font-weight: 600;
	font-size: 24px;
	line-height: 1;
	letter-spacing: 0px;
}

.oak-foundation__item-desc {
	color: #000000;
	font-weight: 400;
	font-size: 16px;
	line-height: 19px;
}

.oak-foundation__visual {
	position: relative;
	flex-shrink: 0;
    width: 275px;
    padding-right: 8px;
    margin-top: 9px;
}

.oak-foundation__tree-img {
	position: relative;
	z-index: 1;
	width: 100%;
	height: auto;
	display: block;
}

.oak-foundation__line {
	position: absolute;
	z-index: 2;
	pointer-events: none;
	max-width: none; 
}

.oak-foundation__inner {
	position: relative;
}

.oak-foundation__item {
	position: relative; 
}

.oak-foundation__svg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 3;
}

@media (max-width: 767px) {
	.oak-foundation__svg {
		display: none;
	}
}

/* Methodology */
.oak-methodology{
	padding-bottom: 39px;
	position: relative;
}

.oak-methodology .container{
	z-index: 2;
	position: relative;
    max-width: 1088px;
}

.oak-methodology:after{
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	background: #9AA89E;
	width: 100%;
	height: 70%;
}

.oak-methodology__inner{
	display: flex;
    flex-wrap: wrap;
    align-items: stretch;
	gap: 20px 8px
}

.oak-methodology .oak-heading{
    max-width: 1000px;
    margin: 0 auto 11px;
}

.oak-methodology__box{
    width: calc(66.03% - 4px);
    background: #2B2624;
    border-radius: 5px;
    padding: 37px 31px 46px;
}

.oak-methodology__image{
    width: calc(33.97% - 4px);
    border-radius: 5px;
	overflow: hidden;
	position: relative;
}

.oak-methodology__image::before{
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background: #D4A574;
	opacity: 0.5
}

.oak-methodology__image img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.oak-methodology__desc{
	color: #fff;
	font-weight: 300;
	font-size: 18px;
	line-height: calc(26 / 18);
	letter-spacing: 0px;
	margin-bottom: 18px;
    max-width: 578px;

}

.oak-methodology__checklist{
	display: flex;
    flex-wrap: wrap;
    gap: 67px;
}

.oak-methodology__check-item{
	display: flex;
    align-items: center;
    gap: 12px;
}

.oak-methodology__actions{
	display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 39px;
}

.oak-methodology__check-item svg{
	width: 25px;
	height: 25px;
}

.oak-methodology__check-label{
	color: #9AA89E;
	font-weight: 600;
	font-size: 18px;
	line-height: calc(29 / 18);
	letter-spacing: 0px;

}

/* Transactions */
.oak-transactions{
	padding: 16px 0 120px;
	background: #9AA89E;

}
.oak-transactions .container{
	max-width: 100%;
	padding: 0
}

.oak-transactions .oak-heading{
	margin-bottom: 17px;
	padding-right: 20px
}
.oak-transactions__inner{
	padding-left: max(20px, calc((100vw - 1000px) / 2));
}

.oak-transaction-card{
	box-shadow: 0px 4px 8px 0px #00000026;
	border-radius: 5px;
	overflow: hidden;
}

.oak-transaction-card__bar{
	height: 15px;
}

.oak-transaction-card{
	background: #fff
}

.oak-transactions__slide.swiper-slide {
	max-width: 353px;
}

.oak-transaction-card__content{
	padding: 21px 16px 16px
}

.oak-transaction-card__image img{
	    height: 149px;
    width: 100%;
    object-fit: cover;
}

.oak-transaction-card__image {
	height: 149px
}

.oak-transactions__slider{
    padding-bottom: 34px !important;
}

.oak-transaction-card__badge{
	display: inline-block;
	padding: 2px 8px;
	color: #fff;
	font-weight: 700;
	font-size: 11.32px;
	line-height: 16.27px;
	letter-spacing: 2px;
	width: max-content;
	margin-bottom: 13px
}

.oak-transaction-card__amount{
	font-family: 'Source Serif Pro';
	font-weight: 400;
	font-size: 85px;
	line-height: calc(84 / 85);
	letter-spacing: 0px;
	margin-bottom: 43px

}

.oak-transaction-card__location{
	color: #000;
	font-weight: 400;
	font-size: 16px;
	line-height: calc(19 / 16);
    padding-bottom: 10px;
	border-bottom: 2px solid #6B7F72

}

.oak-transaction-card__meta{
	display: flex;
	align-items: center;
    padding-top: 12px;
    justify-content: space-between;
	gap: 20px
}

.oak-transaction-card__date{
	min-width: max-content;
}

.oak-transactions__dots {
	position: relative !important;
	width: max-content !important;
    display: flex;
    align-items: center;
	gap: 22px;
    bottom: 0 !important;
}

.oak-transactions__dots .swiper-pagination-bullet{
	margin: 0 !important;
	background: #2B262433 !important;
	border-radius: 11px !important;
	width: 58px !important;
	height: 5px !important;
}

.oak-transactions__dots .swiper-pagination-bullet.swiper-pagination-bullet-active{
	background: #1A2B1F !important;
}

.oak-transactions__arrows{
	display: flex;
	align-items: center;
	gap: 21px;
}

.oak-transactions__prev, .oak-transactions__next{
	border: none !important;
    padding: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

.oak-transactions__footer{
	display: flex;
    justify-content: space-between;
    align-items: center;
    padding-right: clamp(20px, 12.1716vw, 139px);
	gap: 20px
}
@media (max-width: 1024px){
    .oak-site-header__inner{
        gap: 30px
    }

    .oak-site-footer__inner{
    	justify-content: center;
    }
}

@media (max-width: 767px) {
    .oak-site-header__nav,
    .oak-site-header__cta {
        display: none;
    }

    .oak-menu-icon {
        display: flex;
    }

    .oak-btn-header{
        margin-left: auto;
    }

    .oak-site-header__inner{
        gap: 20px;
    }

    .oak-site-header__inner{
        position: relative;
        z-index: 9999;
    }
}