/** reset **/

*,
*::after,
*::before {
    margin: 0;
    padding: 0;

    resize: none;
    outline: none;

    box-sizing: inherit;
}

html,
body {
    font-size: 10px;

    min-width: 100%;
    min-height: 100%;

    box-sizing: border-box;

    -webkit-font-smoothing: antialiased;
            font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;

    background: #115063;
}

body[no-overflow] {
    overflow: hidden;
}

a {
    text-decoration: none;
}

ol,
ul {
    list-style: none;
}

img,
svg,
figure {
    display: block;

    width: 100%;
    height: auto;

    max-width: 100%;
}

button {
    cursor: pointer;
}

button,
input,
select,
textarea {
    border: 0;
    border-radius: 0;

    font-size: inherit;
    line-height: inherit;
    font-weight: inherit;

    background: transparent;
}

picture img {
    max-width: 100%;
    max-height: 100%;
}

@media (max-width: 1400px) {
    html,
    body {
        font-size: 8px;
    }
}


/** section **/

is-section {
    visibility: hidden;
}

is-section.visible {
    visibility: visible;
}

/** lenis **/

html.lenis {
    height: auto;
}

html.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

html.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

html.lenis.lenis-stopped {
    overflow: hidden;
}

html.lenis.lenis-scrolling iframe {
    pointer-events: none;
}


/** wcag **/

.for-display { speak: none }

.for-sreader {
    width: 0;
    height: 0;

    margin: 0 !important;
    padding: 0 !important;

    display: block;
    overflow: hidden;

    font-size: 14px;
    line-height: 16px;

    text-overflow: -100vw;
}


/** cover **/

.cover,
.contain {
    object-fit: cover;
    object-position: center;
}

.contain {
    object-fit: contain;
}

.contain.left-bottom {
    object-position: left bottom;
}


/** flexbox **/

.flex { display: flex }
.flex.wrap { flex-wrap: wrap }
.flex.inline { display: inline-flex }
.flex.column { flex-direction: column }

.flex.al-end { align-items: flex-end }
.flex.al-start { align-items: flex-start }
.flex.al-center { align-items: center }

.flex.jf-end { justify-content: flex-end }
.flex.jf-start { justify-content: flex-start }
.flex.jf-center { justify-content: center }
.flex.jf-around { justify-content: space-around }
.flex.jf-between { justify-content: space-between }

.flex > * {
    flex-grow: 0;
    flex-shrink: 0;
}

.flex > .grow { flex-grow: 1 }
.flex > .shrink { flex-shrink: 1 }


/** wrapper **/

.wrapper {
    width: 100%;
    margin: auto;
    max-width: 1210px;
}

.overflow-fix {
    overflow: hidden;
}

@media (max-width: 1400px) {
    .wrapper {
        max-width: 968px;
    }
}

@media (max-width: 992px) {
    .wrapper {
        max-width: calc(100% - 40px);
    }
}


/** animate **/

[animate] {
    opacity: 0;
    transition: opacity 0.4s ease-out,
                transform 0.4s ease-out;
}

[animate="slide-up"] { transform: translate(0,20%); }

[animate].visible {
    opacity: 1;
    transform: translate(0,0);
}

[animate].visible[animate-delay="1"] { transition-delay: 0.1s }
[animate].visible[animate-delay="2"] { transition-delay: 0.2s }
[animate].visible[animate-delay="3"] { transition-delay: 0.3s }
[animate].visible[animate-delay="4"] { transition-delay: 0.4s }
[animate].visible[animate-delay="5"] { transition-delay: 0.5s }


/** site-header **/

.site-header {
    z-index: 10;

    top: 0;
    left: 0;
    right: 0;
    padding: 4.2rem;

    position: fixed;
    background: rgba(255,255,255, 0);

    transition: padding 0.3s ease-out,
                background 0.6s ease-out;
}


.site-header .brand {
    width: 11.5rem;
}

.site-header .brand a {
    display: block;
    position: relative;
}

.site-header .brand svg {
    transition: opacity 0.3s ease-out;
}

.site-header .brand svg.icon {
    top: 0;
    left: 0;
    opacity: 0;
    position: absolute;
}


.site-header .navigation {
    margin: 0 0 0 11.0rem;

    font-size: 1.3rem;
    font-weight: 400;
    font-family: 'Poppins';

    text-transform: uppercase;
}

.site-header .navigation a {
    color: #ffffff;
    margin: 0 0 0 5.6rem;
    transition: color 0.3s ease-out;
}

.site-header .navigation a:first-child { margin-left: 0 }


.scrolled .site-header {
    padding: 0;
    background: rgba(255,255,255, 1);
    box-shadow: 0 0.2rem 0.2rem rgba(0,0,0, 0.2);
}


.scrolled .site-header .brand .icon {
    opacity: 1;
}

.scrolled .site-header .navigation a {
    color: #115063;
}


@media (any-hover: hover) {
    .site-header .navigation a:hover {
        color: #E5C0A2 !important;
    }
}

@media (max-width: 992px) {
    .site-header .navigation {
        inset: 0;
        margin: 0;

        display: flex;
        position: fixed;
        align-items: center;
        flex-direction: column;
        justify-content: center;

        background: #115063ee;
        transform: translateY(-100%);
        transition: transform 0.4s ease-out;
    }

    .site-header .navigation a {
        margin: 2rem 0;
        font-size: 2.3rem;
    }

    .scrolled .site-header .navigation a {
        color: white;
    }
    .site-header .menu-toggle {
        width: 4.5rem;
        margin: 0 0 0 auto;
    }

    .site-header .menu-toggle div {
        background: white;

        width: 100%;
        height: 3px;
        margin: 0.6rem 0;

        transition: opacity 0.3s ease-out,
                    transform 0.3s ease-out,
                    background 0.3s ease-out;
    }

    .scrolled .site-header .menu-toggle div {
        background: #115063;
    }

    body.menu-visible .site-header .navigation {
        transform: translateY(0%);
    }
    body.menu-visible .site-header .menu-toggle div:nth-child(2) { opacity: 0 }
    body.menu-visible .site-header .menu-toggle div:nth-child(1) { transform: translateY(calc(0.6rem + 3px)) rotate(45deg) }
    body.menu-visible .site-header .menu-toggle div:nth-child(3) { transform: translateY(calc(-0.6rem - 3px)) rotate(-45deg) }
}


/** site-footer **/

.site-footer {
    padding: 5.6rem 0;

    color: #ffffff;
    background: #59A8A8;

    font-size: 1.3rem;
    font-weight: 400;
    font-family: Poppins;

    text-align: center;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.site-footer a {
    color: #ffffff;
    font-weight: 600;
}


/** sections - #intro **/

@keyframes intro-arrow {
    0% { transform: translateY(0%) }
    50% { transform: translateY(20%) }
    100% { transform: translateY(0%) }
}


#intro {
    height: 115vh;
    position: relative;
}

#intro::after,
#intro::before {
    z-index: 2;

    top: 0;
    left: 0;
    right: 0;
    height: 25%;

    content: '';
    display: block;
    position: absolute;

    background: linear-gradient(180deg, rgba(8,65,82, 1.00) 0%,
                                        rgba(8,65,82, 0.56) 68%,
                                        rgba(8,65,82, 0.00) 100%);
}

#intro::before {
    top: 30%;
    height: 138%;

    background: linear-gradient(180deg, rgba(17,80,99, 0.00) 0%,
                                        rgba(17,80,99, 0.90) 26%,
                                        rgba(17,80,99, 1.00) 40%);
}


#intro .image {
    height: calc(100% + 15.0rem);
}


#intro .content {
    z-index: 3;

    top: 50%;
    left: 50%;

    position: absolute;
    transform: translate(-50%, -50%);

    white-space: nowrap;
}

#intro .content h2,
#intro .content h3 {
    color: #ffffff;

    font-size: 3.0rem;
    font-weight: 500;
    font-family: Poppins;

    line-height: 1;
    text-transform: uppercase;
}

#intro .content h3 {
    font-size: 13.0rem;
    font-weight: 400;
}

#intro .content svg {
    display: block;

    width: 10.0rem;
    height: 10.0rem;
    margin: 8.5rem auto 0;

    animation: intro-arrow 4s linear infinite alternate;
}

@media (max-width: 992px) {
    #intro {
        height: 100vh;
    }

    #intro::before {
        height: 160%;
    }

    #intro .content h2 {
        font-size: 2rem;
        text-align: center;
    }
    #intro .content h3 {
        width: 28rem;
        margin: 1rem 0 0;
        font-size: 8rem;
        text-align: center;
        white-space: normal;
    }
}


/** sections - #concept **/

#concept {
    z-index: 2;
    margin: -22vh 0 0;
    position: relative;
}


#concept .content {
    z-index: 2;
    position: relative;
}

#concept .content p {
    color: #FFFFFF;
    margin: 0 0 2.8rem;

    font-size: 1.6rem;
    font-weight: 400;
    font-family: Poppins;

    line-height: 2.8rem;
}

#concept .content p strong {
    font-weight: 700;
}

#concept .content h2 {
    color: #ffffff;

    font-size: 3.1rem;
    font-weight: 500;
    font-family: Poppins;

    line-height: 4.0rem;
    text-transform: uppercase;
}

#concept .content h2 strong {
    display: block;
    font-size: 8.0rem;
    font-weight: 400;
    line-height: 8.0rem;
}

#concept .content img {
    aspect-ratio: 392 / 588;
}

#concept .content .p,
#concept .content .img {
    max-width: 30%;
}


#concept .video {
    background: #115063;
}

#concept .video .wrapper {
    z-index: 1;
    position: relative;
}

#concept .video .wrapper .n1 {
    z-index: 5;

    top: 0rem;
    left: 0rem;

    width: 24%;
    height: 48%;

    position: absolute;
    object-position: left center;
}

#concept .video .wrapper .n2 {
    z-index: 2;

    top: -3.5rem;
    left: -3.5rem;

    width: 26%;
    height: 78%;

    position: absolute;
}

#concept .video .wrapper .n3 {
    z-index: 3;

    width: 63%;
    height: 88%;

    right: -3.4rem;
    bottom: -6.8rem;

    position: absolute;
}

#concept .video .wrapper .n4 {
    z-index: 5;

    top: -11.2rem;
    right: -20.5rem;

    width: 31%;
    height: auto;

    position: absolute;
}

#concept .video .wrapper .main {
    height: 100%;
    filter: brightness(0.60);
}

#concept .video .wrapper .button {
    z-index: 4;

    width: 100%;
    height: 58.0rem;

    display: block;
    overflow: hidden;
    position: relative;
}

#concept .video .wrapper .button p,
#concept .video .wrapper .button svg {
    z-index: 2;
    top: calc(50% - 3.5rem);
    left: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
}

#concept .video .wrapper .button p {
    top: calc(50% + 7.4rem - 3.5rem);
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 500;
    font-family: Poppins;
    text-transform: uppercase;
}

#concept .video .wrapper .button svg {
    width: 7.4rem;
    transition: transform 0.3s ease-out;
}

#concept .video .wrapper .button img {
    transition: transform 1s ease-out;
}


@media (any-hover: hover) {
    #concept .video .wrapper .button:hover svg {
        transform: translate(-50%, -50%) scale(1.05);
    }

    #concept .video .wrapper .button:hover img {
        transform: scale(1.1);
        transition: transform 10s ease-out;
    }
}

@media (max-width: 992px) {
    #concept {
        margin: 0;
    }

    #concept .content {
        flex-wrap: wrap;
    }

    #concept .content h2 {
        font-size: 2rem;
    }

    #concept .content h2 strong {
        font-size: 5.5rem;
        line-height: 5.5rem;
    }

    #concept .content .p {
        width: 100%;
        margin: 5rem 0;
        max-width: 100%;
    }

    #concept .content .img,
    #concept .video .wrapper .n1 { display: none }

    #concept .video .wrapper .n4 {
        top: -5rem;
        right: -6.5rem;
    }

    #concept .video .wrapper .button {
        height: 56vw;
    }
}


/** sections - #location **/

#location {
    background: white;
}

#location .content {
    padding: 23.0rem 0 19.5rem;
}

#location .content p {
    color: #727171;
    margin: 0 0 2.8rem;

    font-size: 1.6rem;
    font-weight: 400;
    font-family: Poppins;

    line-height: 2.8rem;
}

#location .content p:last-child { margin: 0 }

#location .content h2 {
    color: #E5C0A2;

    font-size: 8.0rem;
    font-weight: 400;
    font-family: Poppins;

    text-align: center;
    line-height: 8.0rem;
    text-transform: uppercase;

    margin: 0 0 7.0rem;
}

#location .content h2 small {
    color: #59A8A8;
    font-size: 3.1rem;
    font-weight: 500;
    display: block;
}

#location .content .text {
    width: 66.6666%;
    margin: 7.0rem auto 10.0rem;
}

#location .content .images {
    position: relative;
}

#location .content .images .n0 {
    z-index: 2;

    top: -3.9rem;
    left: -3.7rem;

    width: 19%;
    height: auto;

    position: absolute;
}

#location .content .images .n1 {
    z-index: 1;

    top: -3.0rem;
    left: 0;

    width: 68%;
    height: calc(100% + 3.0rem);

    position: absolute;
}

#location .content .images .n2 {
    z-index: 3;

    top: 6.0rem;
    left: 6.0rem;

    width: 28%;
    height: 32%;

    position: absolute;
}

#location .content .images .n3 {
    z-index: 5;

    top: calc(3.0rem + 32%);
    left: 3.0rem;

    width: 26%;
    height: 56%;

    position: absolute;
}

#location .content .images .n4 {
    z-index: 6;

    left: 0;
    bottom: 0;

    width: 12%;
    height: auto;

    position: absolute;
}

#location .content .images .gallery {
    z-index: 4;
    width: 75%;
    margin: 0 0 10.0rem 25%;
}

#location .content .images .gallery h3 {
    color: #ffffff;

    width: 100%;
    height: 3.0rem;

    font-size: 1.2rem;
    font-weight: 500;
    font-family: Poppins;

    line-height: 3.0rem;
    text-align: center;
    text-transform: uppercase;

    background: #59A8A8;
}

#location .content .images .gallery .splide__slide {
    cursor: pointer;
    position: relative;
    background: black;
}

#location .content .images .gallery .splide__slide img {
    width: 100%;
    height: auto;
    transition: opacity 0.3s ease-out;
}

#location .content .images .gallery .splide__slide svg {
    z-index: 2;
    top: 50%;
    left: 50%;
    width: 7.4rem;
    position: absolute;
    opacity: 0;
    transform: translate(-50%,-50%) scale(0.5);
    transition: opacity 0.3s ease-out,
                transform 0.3s ease-out;
}

#location .content .images .gallery .splide__arrow--prev,
#location .content .images .gallery .splide__arrow--next {
    opacity: 1;

    top: 50%;
    left: 5.8rem;
    width: 3.0rem;
    height: 3.0rem;

    border: 2px solid #ffffff;
    transform: none;
    background: transparent;

    position: absolute;
    transform: translateY(-50%);
}

#location .content .images .gallery .splide__arrow--next {
    left: auto;
    right: 2.8rem;
}

#location .content .images .gallery .splide__arrow--prev svg,
#location .content .images .gallery .splide__arrow--next svg {
    width: 1.6rem;
    height: 1.6rem;
}

#location .content .images .gallery .splide__arrow--prev svg path,
#location .content .images .gallery .splide__arrow--next svg path {
    fill: #ffffff;
}

#location .content .images .gallery .splide__arrow--prev:disabled,
#location .content .images .gallery .splide__arrow--next:disabled {
    opacity: 0.3;
}

#location .content .highlights li {
    margin: 0 2.0rem;
}

#location .content .highlights li h3 {
    color: #59A8A8;

    font-size: 1.4rem;
    font-weight: 500;
    font-family: Poppins;

    text-align: center;
    line-height: 1.9rem;
    text-transform: uppercase;
}

#location .content .highlights li svg {
    width: 10rem;
    height: 8.2rem;
    margin: 0 auto 2.8rem;
}


#location .nature {
    padding: 18.7rem 0 18.4rem;
    background: #C49E80;
}

#location .nature .left {
    width: 49%;
    position: relative;
}

#location .nature .left img {
    width: 100%;
    z-index: 2;
    position: relative;
}

#location .nature .left .n1 {
    z-index: 1;

    left: 0;
    bottom: -4.3rem;

    width: 59%;
    height: auto;

    position: absolute;
}

#location .nature .left .n2 {
    z-index: 3;

    top: -4.1rem;
    right: 0;

    width: 56%;
    height: auto;

    position: absolute;
}

#location .nature .left .n3 {
    z-index: 4;

    top: -7.6rem;
    right: 48%;

    width: 27%;
    height: auto;

    position: absolute;
}

#location .nature .right {
    width: 42%;
}

#location .nature .right p {
    color: #ffffff;
    margin: 0 0 2.8rem;

    font-size: 1.6rem;
    font-weight: 400;
    font-family: Poppins;

    line-height: 2.8rem;
}

#location .nature .right p:last-child { margin: 0 }

#location .nature .right h2 {
    color: #ffffff;

    font-size: 8.0rem;
    font-weight: 400;
    font-family: Poppins;

    line-height: 6.0rem;
    text-transform: uppercase;

    margin: 0 0 7.0rem 1.9rem;
}

#location .nature .right h2 small {
    color: #ffffff;
    font-size: 3.1rem;
    font-weight: 500;
    display: block;
}

#location .nature .right .text {
    margin: 0 0 0 1.9rem;
}

#location .nature .right .highlights {
    gap: 4.0rem;
    margin: 7.0rem 0 0;
}

#location .nature .right .highlights li {
    color: #ffffff;

    width: calc(33.333% - 2.7rem);

    font-size: 1.4rem;
    font-weight: 500;
    font-family: Poppins;

    text-align: center;
    line-height: 1.9rem;
    text-transform: uppercase;
}

#location .nature .right .highlights li svg {
    margin: 0 auto 2.8rem;
    width: auto;
    height: auto;
    max-width: 9.3rem;
}


@media (any-hover: hover) {
    #location .content .images .gallery .splide__slide:hover img {
        opacity: 0.6;
    }

    #location .content .images .gallery .splide__slide:hover svg {
        opacity: 1;
        transform: translate(-50%,-50%) scale(1);
    }
}


@media (max-width: 992px) {
    #location .content {
        padding: 12.0rem 0 10rem;
    }

    #location .content h2,
    #location .nature .right h2 {
        font-size: 5.5rem;
        line-height: 5.5rem;
        margin-bottom: 5rem;
    }

    #location .content h2 small,
    #location .nature .right h2 small {
        font-size: 2rem;
    }

    #location .content .text {
        width: 100%;
        margin: 5.0rem auto 5rem;
    }

    #location .content .images .n1,
    #location .content .images .n2,
    #location .content .images .n3,
    #location .content .images .n4 {
        display: none;
    }

    #location .content .images .gallery {
        width: calc(100% + 40px);
        margin: 0 -20px 10.0rem;
    }

    #location .content .images .gallery .splide__arrow--prev {
        left: 2.8rem;
    }

    #location .content .highlights li {
        margin: 0 2rem 2rem;
    }

    #location .nature {
        padding: 9rem 0;
    }

    #location .nature .wrapper {
        flex-wrap: wrap;
    }

    #location .nature .left,
    #location .nature .right {
        width: 100%;
    }

    #location .nature .left .n1 {
        display: none;
    }

    #location .nature .right h2 {
        margin: 5rem 0 5.0rem;
    }

    #location .nature .right .text {
        margin: 0;
    }

    #location .nature .right .highlights li {
        width: calc(50% - 2rem);
    }
}



/** sections - #infrastructure **/

#infrastructure .top {
    z-index: 2;
    position: relative;
}

#infrastructure .top img {
    height: 78vw;
    object-position: bottom center;
}

#infrastructure .top .text {
    z-index: 3;

    top: 10vw;
    left: 50%;

    position: absolute;
    transform: translateX(-50%);
}

#infrastructure .top .text p {
    color: #ffffff;
    margin: 0 0 2.8rem;

    font-size: 1.6rem;
    font-weight: 400;
    font-family: Poppins;

    line-height: 2.8rem;
}

#infrastructure .top .text p:last-child { margin: 0 }

#infrastructure .top .text h2 {
    color: #ffffff;

    font-size: 8.0rem;
    font-weight: 400;
    font-family: Poppins;

    line-height: 6.0rem;
    white-space: nowrap;
    text-transform: uppercase;

    margin: 0 0 7.0rem;
}

#infrastructure .top .text h2 small {
    color: #E5C0A2;
    font-size: 3.1rem;
    font-weight: 500;
    display: block;
}

#infrastructure .top::after {
    inset: 0;
    z-index: 2;

    content: '';
    display: block;
    position: absolute;

    background: linear-gradient(180deg, #416A93 23.86%, rgba(65, 106, 147, 0) 44.79%);
}

#infrastructure .wrapper {
    position: relative;
}

#infrastructure .images {
    background: #59A8A8;
}

#infrastructure .images .n1 {
    z-index: 1;
    top: -78rem;
    left: -44rem;
    width: 110rem;
    position: absolute;
}

#infrastructure .images .n2 {
    z-index: 1;
    width: 92rem;
    right: -44rem;
    bottom: -18rem;
    position: absolute;
}

#infrastructure .images .gallery {
    z-index: 4;
    width: 83.3333%;
    margin: -6.6rem auto 0;
}

#infrastructure .images .gallery h3 {
    color: #59A8A8;

    width: 100%;
    height: 3.8rem;

    font-size: 1.2rem;
    font-weight: 500;
    font-family: Poppins;

    line-height: 3.8rem;
    text-align: center;
    text-transform: uppercase;

    background: #ffffff;
}

#infrastructure .images .gallery .splide__slide {
    cursor: pointer;
    position: relative;
    background: black;
}

#infrastructure .images .gallery .splide__slide img {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    transition: opacity 0.3s ease-out;
}

#infrastructure .images .gallery .splide__slide svg {
    z-index: 2;
    top: 50%;
    left: 50%;
    width: 7.4rem;
    position: absolute;
    opacity: 0;
    transform: translate(-50%,-50%) scale(0.5);
    transition: opacity 0.3s ease-out,
                transform 0.3s ease-out;
}

#infrastructure .images .gallery .splide__arrow--prev,
#infrastructure .images .gallery .splide__arrow--next {
    opacity: 1;

    top: 50%;
    left: 3.0rem;
    width: 3.0rem;
    height: 3.0rem;

    border: 2px solid #ffffff;
    transform: none;
    background: transparent;

    position: absolute;
    transform: translateY(-50%);
}

#infrastructure .images .gallery .splide__arrow--next {
    left: auto;
    right: 3.0rem;
}

#infrastructure .images .gallery .splide__arrow--prev svg,
#infrastructure .images .gallery .splide__arrow--next svg {
    width: 1.6rem;
    height: 1.6rem;
}

#infrastructure .images .gallery .splide__arrow--prev svg path,
#infrastructure .images .gallery .splide__arrow--next svg path {
    fill: #ffffff;
}

#infrastructure .images .gallery .splide__arrow--prev:disabled,
#infrastructure .images .gallery .splide__arrow--next:disabled {
    opacity: 0.3;
}

#infrastructure .images .plants {
    z-index: 2;
    margin: 15.0rem 0 -13.3rem;
    position: relative;
}

#infrastructure .images .plants h3 {
    color: #ffffff;

    font-size: 4.9rem;
    font-weight: 400;
    font-family: Poppins;

    text-align: center;
    line-height: 8.0rem;
    text-transform: uppercase;
}

#infrastructure .images .plants .types {
    gap: 5.7rem;
    margin: 4.0rem 0 4.5rem;
}

#infrastructure .images .plants .type {
    color: #ffffff;

    font-size: 1.3rem;
    font-weight: 400;
    font-family: Poppins;

    text-align: center;
    text-transform: uppercase;

    transition: color 0.2s ease-out;
}

#infrastructure .images .plants .type.active {
    font-weight: 900;
}

#infrastructure .images .plants .plants-gallery .splide__slide {
    cursor: pointer;
    position: relative;
    background: black;
}

#infrastructure .images .plants .plants-gallery .splide__slide img {
    width: 100%;
    height: auto;
    aspect-ratio: 60/15;
    transition: opacity 0.3s ease-out;
}

#infrastructure .images .plants .plants-gallery .splide__slide svg {
    z-index: 2;
    top: 50%;
    left: 50%;
    width: 7.4rem;
    position: absolute;
    opacity: 0;
    transform: translate(-50%,-50%) scale(0.5);
    transition: opacity 0.3s ease-out,
                transform 0.3s ease-out;
}

#infrastructure .images .highlights {
    z-index: 1;
    gap: 4.0rem;
    padding: 19.5rem 0 16.0rem;
    position: relative;
    background: #ffffff;
}

#infrastructure .images .highlights li {
    color: #59A8A8;
    min-width: 11.3rem;

    font-size: 1.4rem;
    font-weight: 600;
    font-family: Poppins;

    text-align: center;
    line-height: 1.9rem;
    text-transform: uppercase;
}

#infrastructure .images .highlights li svg {
    margin: 0 auto 2.8rem;

    width: auto;
    height: auto;

    max-width: 8.3rem;
    max-height: 9.1rem;
}

@media (any-hover: hover) {
    #infrastructure .images .plants .type:hover {
        color: #E5C0A2 !important;
    }

    #infrastructure .images .gallery .splide__slide:hover img,
    #infrastructure .images .plants .plants-gallery .splide__slide:hover img {
        opacity: 0.6;
    }

    #infrastructure .images .gallery .splide__slide:hover svg,
    #infrastructure .images .plants .plants-gallery .splide__slide:hover svg {
        opacity: 1;
        transform: translate(-50%,-50%) scale(1);
    }
}

@media (max-width: 992px) {
    #infrastructure .top img {
        min-height: 80rem;
    }

    #infrastructure .top .text {
        width: calc(100% - 40px);
    }

    #infrastructure .top .text h2 {
        font-size: 5.5rem;
        line-height: 5.5rem;
        white-space: normal;
        margin-bottom: 5rem;
    }

    #infrastructure .top .text h2 small {
        font-size: 2rem;
    }

    #infrastructure .images .gallery {
        width: 100%;
    }

    #infrastructure .images .plants {
        margin: 8rem 0 -10rem;
    }

    #infrastructure .images .plants h3 {
        font-size: 3.2rem;
    }

    #infrastructure .images .plants .plants-gallery .splide__slide img {
        object-fit: cover;
        height: 20rem;
    }

    #infrastructure .images .highlights {
        flex-wrap: wrap;
        padding: 20rem 20px 8.0rem;
    }
}


/** sections - #landscaping **/

#landscaping {
    z-index: 2;
    padding: 8.0rem 0 20.0rem;
    position: relative;
    background: #FFFFFF;
}

#landscaping .images {
    width: 50%;
    margin: 0 0 1.6rem;
    position: relative;
}

#landscaping .images .main {
    z-index: 3;
    height: 45.0rem;
    position: relative;
}

#landscaping .images .n2 {
    z-index: 2;

    top: -2.3rem;
    left: 0;

    width: 94%;
    height: 82%;

    position: absolute;
}

#landscaping .images .n3 {
    z-index: 1;

    top: -4.5rem;
    right: 0;

    width: 73%;
    height: 95%;

    position: absolute;
}

#landscaping .content {
    width: 41.6666%;
    margin: 0 0 1.6rem;
}

#landscaping .content p {
    color: #727171;
    margin: 0 0 2.8rem;

    font-size: 1.6rem;
    font-weight: 400;
    font-family: Poppins;

    line-height: 2.8rem;
}

#landscaping .content p:last-child { margin: 0 }

#landscaping .content h2 {
    color: #E5C0A2;

    font-size: 8.0rem;
    font-weight: 400;
    font-family: Poppins;

    line-height: 4.3rem;
    text-transform: uppercase;

    margin: 0 0 7.0rem;
}

#landscaping .content h2 small {
    color: #59A8A8;
    font-size: 3.1rem;
    font-weight: 500;
    display: block;
}


#landscaping .plants {
    width: 83.3333%;
    position: relative;
}

#landscaping .plants .splide__slide h3,
#landscaping .plants .splide__slide h4 {
    color: #747171;

    font-size: 1.0rem;
    font-weight: 300;
    font-family: Poppins;

    line-height: 1.9rem;
    text-transform: uppercase;
}

#landscaping .plants .splide__slide h3 {
    font-weight: 500;
}

#landscaping .plants .splide__slide img {
    width: 18.8rem;
    height: 15.7rem;
    margin: 0 0 1rem;
}

#landscaping .plants .splide__arrow--prev { display: none }
#landscaping .plants .splide__arrow--next {
    opacity: 1;

    top: 5.35rem;
    right: -9.0rem;
    width: 5.0rem;
    height: 5.0rem;

    border: 2px solid #59A8A8;
    transform: none;
    background: transparent;

    position: absolute;
}

#landscaping .plants .splide__arrow--next svg {
    width: 2.6rem;
    height: 2.6rem;
}

#landscaping .plants .splide__arrow--next svg path {
    fill: #59A8A8;
}

#landscaping .plants .splide__arrow--next:disabled {
    opacity: 0.3;
    filter: grayscale(1);
}

#landscaping .plants .splide__pagination {
    width: 100%;
    margin: 4.0rem 0 0;
    padding: 0;
    display: flex;
    position: static;
    background: #59A8A8;
}

#landscaping .plants .splide__pagination li {
    display: block;
    flex-grow: 1;
    flex-shrink: 1;
}

#landscaping .plants .splide__pagination li button {
    width: 100%;
    height: 0.82rem;
    margin: 0;
    opacity: 1;

    display: block;
    transform: none;

    background: transparent;
    transition: 0.3s ease-out;

    border-radius: 0;
}

#landscaping .plants .splide__pagination li button.is-active {
    /*width: 5.2rem;*/
    background: #E5C0A2;
}

@media (max-width: 992px) {
    #landscaping {
        padding: 8.0rem 0 10.0rem;
    }

    #landscaping .images,
    #landscaping .content {
        width: 100%;
    }

    #landscaping .content {
        margin-bottom: 5rem;
    }

    #landscaping .content h2 {
        font-size: 2rem;
        margin-bottom: 5rem;
    }

    #landscaping .content h2 strong {
        font-size: 5.5rem;
        line-height: 5.5rem;
    }

    #landscaping .flex {
        flex-wrap: wrap;
    }
}


/** sections - #more **/

#more {
    z-index: 2;
    position: relative;
    background: #59A8A8;
}

#more::after {
    height: 1px;
    content: '';
    display: block;
    position: relative;
}

#more::before {
    top: 0;
    left: 0;
    right: 0;
    height: 32vw;

    content: '';
    display: block;
    position: absolute;

    background: linear-gradient(180deg, rgba(89,168,168,0) 33%,
                                      rgba(89,168,168,1) 100%);
}

#more h2 {
    color: #FFFFFF;
    margin: 5.4rem 0 0 16.6666%;

    font-size: 4.9rem;
    font-weight: 400;
    font-family: Poppins;

    text-transform: uppercase;
}

#more svg {
    width: 21.2rem;
}

#more form {
    padding-top: 4.3rem;
}

#more form input,
#more form textarea {
    width: 100%;
    color: #ffffff;

    margin: 0 0 0.5rem;
    padding: 1.6rem 0;

    font-size: 1.3rem;
    font-weight: 400;
    font-family: Poppins;

    border-bottom: 2px solid #ffffff;
}

#more form textarea {
    height: 8.0rem;
}

#more form input::placeholder,
#more form textarea::placeholder {
    color: #ffffff;
}

#more form button {
    color: #ffffff;

    margin: 1.6rem 0 0 auto;
    display: block;

    font-size: 1.3rem;
    font-weight: 600;
    font-family: Poppins;

    text-align: center;
    text-transform: uppercase;
}

#more form .error-message {
    color: #990000;
    margin: -1.1rem 0 1.6rem;

    font-size: 1.4rem;
    font-weight: 400;
    font-family: Poppins;
}

#more form .error-message.success {
    color: #ffffff;
    margin: 0;
    font-weight: 600;
}

#more .col:first-child {
    width: 41.6666%;
    margin: 0 0 0 16.6666%;
}

#more .col:last-child {
    width: 33.3333%;
}


#more .logos {
    margin: 10.0rem 0 15.0rem;
}

#more .logos li {
    color: #ffffff;
    margin: 0 5.5rem;

    font-size: 1.2rem;
    font-weight: 400;
    font-family: Poppins;

    line-height: 1.9rem;
    text-align: center;
    text-transform: uppercase;
}

#more .logos li img {
    height: 8.5rem;
    margin: 2.0rem auto 0;
    max-width: 15.0rem;
}


#more .image {
    height: 32vw;
    object-position: top center;
}

@media (max-width: 992px) {
    #more h2 {
        font-size: 3.2rem;
        margin-left: 0;
        text-align: center;
    }

    #more .col:first-child {
        width: 100%;
        margin: 0;
    }

    #more .col:last-child {
        display: none;
    }

    #more .logos {
        margin: 8rem 0 5rem;
        flex-wrap: wrap;
    }

    #more .logos li {
        width: 50%;
        margin: 0 0 3rem;
    }
}
