:root {
    --dark: #262626;
    --primary: #005218;
    --lightgreen: #90CB21;
    --gray: #B0B0B0;
    --light: #F9F2EC;
    --swiper-theme-color: #005218 !important;
    --shadow: 0 4px 20px 4px #003D1220;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scrollbar-width: none;
}

body {
    margin: 0;
    padding: 0;
    opacity: 0.01;
    transition: opacity 0.3s;
    overflow-x: hidden;
    font-weight: 470;
    color: var(--dark);
    font-family: 'Source Sans 3', sans-serif;
}

.body-wrapper {
    overflow-x: hidden;
    width: 100vw;
    max-width: 2560px;
    margin: 0 auto;
}

.container {
    padding: 0;
    max-width: 1140px;
    margin: 0 auto;
    width: 100%;
    position: relative;
}

/* LOADER */

.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100svh;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    z-index: 9999;
    transition: opacity 0.75s;
}

.loader.end {
    opacity: 0;
}

.loader svg {
    width: 100%;
    height: 100%;
    max-width: 550px;
    max-height: 550px;
    margin-left: 11%;
}

.loader #text-mask,
.loader #shape-mask {
    display: block;
    overflow: hidden;
}

.marker {
    height: 7.5vw;
    margin-top: -7.5vw;
}

/* HERO */

h1.onTop {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    font-size: 2px;
    color: #00000010;
    pointer-events: none;
    width: 150vw;
    height: 150vh;
}

.hero {
    width: 100vw;
    position: relative;
    z-index: 2;
    padding-top: 0;
    margin: 0;
    overflow: hidden;
    min-height: 110svh;
}

.hero .tree-container, .spacer {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 87%;
    object-fit: contain;
    user-select: none;
}

.hero.main-hero .tree-container:nth-child(3) {
    width: 103%;
}

.hero.main-hero .tree-container:nth-child(4) {
    right: -2vw;
}

.hero .tree {
    width: 100%;
    height: 100%;
    object-fit: contain;
    user-select: none;
}

.spacer {
    height: 100%;
}

.hero .tree-container.left {
    left: 0;
}

.hero .tree-container.left img {
    object-position: left bottom;
}

.hero .tree-container.right {
    right: 0;
}

.hero .tree-container.right img {
    object-position: right bottom;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #FFFFFF00 80%, #FFFFFF 100%);
    z-index: 1;
    pointer-events: none;
}

.hero .container {
    padding: calc(5vw + 100px) 0 100px;
    height: 100%;
}

.hero .content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1,
.hero-content h2 {
    max-width: 50vw;
    font-size: 3.25vw;
    margin-bottom: 1.25vw;
    color: var(--primary);
    text-transform: uppercase;
}

.hero-content p {
    font-size: 1.625vw;
    max-width: 33vw;
}

.hero-content .primary-link {
    margin-top: 1.125vw;
    font-size: 1.125vw;
}

.hero .about-bg {
    opacity: 0;
}

.hero .about-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
}

.hero .about-content .title {
    margin-bottom: 2vw;
    width: 100%;
}

.hero .about-content .title span {
    font-size: 1.125vw;
    margin-bottom: 0.75vw;
}

.hero .about-content .title h2 {
    font-size: 2.25vw;
    max-width: 40vw;
    text-align: center;
}

.hero .about-content .desc {
    max-width: 60vw;
    font-weight: 500;
    margin-bottom: 2.75vw;
}

.hero .about-content .desc p {
    font-size: 1.1vw;
}

.hero .about-content .title + .icons {
    margin-top: 1vw;
}

@media (min-width: 768px) {
    .hero.main-hero .tree-container:nth-child(3) img {
        display: block !important;
    }
}

@media (max-width: 767px) {
    .hero {
        min-height: 105svh;
    }

    .hero::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(180deg, #FFFFFF00 90%, #FFFFFF 100%);
        z-index: 1;
        pointer-events: none;
    }

    .hero .tree-container {
        height: 100%;
        width: 230vw;
    }

    .hero .container {
        padding: 130px 0 60px;
    }

    .hero-content h1,
    .hero-content h2 {
        max-width: none;
        font-size: 2rem;
        margin-bottom: 1.25rem;
        color: var(--primary);
    }

    .hero-content p {
        font-size: 1.25rem;
        max-width: none;
    }

    .hero-content .primary-link {
        margin-top: 1rem;
        font-size: 1rem;
    }
}