/* Table of Content
==================================================
	#Font-Face
	#Site Styles
	#Media Queries */

/* #Font-Face
================================================== */


/* #Site Styles
================================================== */
:root {
    --width-base: 1440px;
    --width-medium: 1180px;
    --font-base-size: 1.125rem;
    --color-primary: #67A51F;
    --color-secondary: #0C5544;
    --color-white: #fff;
    --color-black: #000;
    --color-grey: #999;
    --color-light-grey: #ECECEC;
    --color-green: #76B72A;
    --color-green-300: #074A3A;
    --color-green-400: #f3f5f4;
    --color-green-500: #03211A;
    --color-green-600: #5A9119;
    --color-green-700: #0D5D4A;
    --color-green-800: #BCD0CB;
    --color-medium-green: #67A51F;
    --color-dark-green: #084336;
    --font-family-base: 'URW DIN', sans-serif;
    --font-family-demi: 'URW DIN Demi', sans-serif;
    --font-family-web: 'Titillium Web', sans-serif;
    --font-family-uni: 'Unitext', sans-serif;
    --font-family-verb: 'Verb', sans-serif;
    --font-family-icon: 'icomoon', sans-serif;
    --line-height-base: 1.8;
    --font-size-h1: 3.438rem;
    --font-size-h2: 2.5rem;
    --font-size-h3: 2.188rem;
    --font-size-h4: 1.875rem;
    --font-size-h5: 1.563rem;
    --font-size-h6: 1.25rem;
    --line-height-heading: 1.1;
    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --width: 100%;
    --height: 100%;
    --duration: all 0.25s ease-in-out;
    --space-left: 2.188rem;
    --space-right: 2.188rem;
    --swiper-button-duration: all 0.4s ease-out;
}

/* ### general ### */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 1rem
}

body {
    color: var(--color-secondary);
    font-size: var(--font-base-size);
    font-family: var(--font-family-base);
    line-height: var(--line-height-base);
    font-weight: var(--font-weight-normal);
    background-color: var(--color-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

input,
select,
textarea {
    padding: 15px 19px;
    position: relative;
    width: var(--width);
    font-size: 0.938rem;
    font-family: var(--font-family-base);
    color: var(--color-secondary);
    background-color: var(--color-white);
    height: 55px;
    border: 1px solid rgba(12, 85, 68, 0.15);
    border-radius: 0;
}

input:focus,
textarea:focus {
    border: 1px solid var(--color-green);
}

textarea {
    height: 150px;
}

textarea::placeholder,
input::placeholder {
    color: rgba(12, 85, 68, 0.15);
}

.rte {
    h2 {
        margin-bottom: 26px;
        text-transform: uppercase;
        color: var(--color-green);
        font-size: 1.25rem;
        font-weight: 600;
    }

    p {
        margin-bottom: 54px;
        line-height: 1.944;
        color: var(--color-dark-green);

        &:first-of-type {
            font-size: 1.5625rem;
            font-weight: 600;
            line-height: 1.6;
            color: var(--color-dark-green);

            @media (width < 768px) {
                font-size: 1.25rem;
            }
        }

        q, blockquote {
            margin-bottom: 0;
        }

        a {
            text-decoration: none;
            color: inherit;
            position: relative;

            &:after {
                content: '';
                width: 100%;
                height: 2px;
                background-color: var(--color-green);
                position: absolute;
                bottom: 7px;
                left: 0;
                right: 0;
            }
        }
    }

    q, blockquote {
        font-size: 1.25rem;
        color: var(--color-dark-green);
        line-height: 1.75;
        font-weight: 500;
        margin-bottom: 54px;
        display: inline-block;
        padding-left: 40px;
        position: relative;

        &:before {
            content: '“';
            font-weight: 600;
            font-size: 2.1875rem;
            color: var(--color-green);
            position: absolute;
            left: 0;
            top: -10px;

        }

        &:after {
            display: none;
        }
    }

    ul {
        margin-top: -6px;
        list-style: none;
        margin-bottom: 54px;
        display: flex;
        flex-direction: column;
        gap: 14px;

        @media (width < 768px) {
            margin-bottom: 30px;
        }

        li {
            position: relative;
            font-size: 1.125rem;
            padding-left: 22px;

            &:before {
                content: '';
                width: 8px;
                height: 8px;
                border-radius: 50%;
                background-color: var(--color-green);
                position: absolute;
                display: block;
                left: 0;
                top: 8px;

                @media (width < 768px) {
                    top: 11px;
                }
            }
        }
    }
}

img {
    display: block;
    border: 0;
    height: auto;
    max-width: var(--width);
}

ul,
li {
    list-style-position: outside;
}

:focus {
    outline: none;
}

p {
    margin-bottom: 20px;

    a {
        text-decoration: none;
        color: inherit;
        position: relative;

        &:after {
            content: '';
            width: 100%;
            height: 2px;
            background-color: var(--color-green);
            position: absolute;
            bottom: 7px;
            left: 0;
            right: 0;
            transition: bottom .2s ease-in;
        }

        &:hover {
            &:after {
                bottom: 3px;
            }
        }
    }
}

a {
    transition: var(--duration);
    display: inline-block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 20px;
    font-family: var(--font-family-base);
    color: var(--color-secondary);
    font-weight: var(--font-weight-bold);
    line-height: var(--line-height-heading);

    @media (max-width: 768px) {
    //text-wrap: balance;
    }
}

h1,
.h1 {
    font-size: var(--font-size-h1);
}

h2,
.h2 {
    font-size: var(--font-size-h2);
}

h3,
.h3 {
    font-size: var(--font-size-h3);
}

h4,
.h4 {
    font-size: var(--font-size-h4);
}

h5,
.h5 {
    font-size: var(--font-size-h5);
}

h6,
.h6 {
    font-size: var(--font-size-h6);
}

/* clears the ‘X’ from Internet Explorer */
input[type=search]::-ms-clear {
    display: none;
    width: 0;
    height: 0;
}

input[type=search]::-ms-reveal {
    display: none;
    width: 0;
    height: 0;
}

/* clears the ‘X’ from Chrome */
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
    display: none;
}

/* ### button ### */
.button {
    padding: 8px 30px 8px 60px;
    font-size: 1.063rem;
    font-family: var(--font-family-base);
    color: var(--color-white);
    background-color: var(--color-medium-green);
    font-weight: var(--font-weight-medium);
    text-decoration: none;
    text-transform: uppercase;
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    position: relative;
    border: 0;
    cursor: pointer;
    transition: var(--duration);
}

.button span {
    transition: var(--duration);
    position: relative;
    z-index: 1;
}

.button i {
    position: absolute;
    top: 22px;
    left: 30px;
    width: 13px;
    height: 13px;
    background-color: rgba(255, 255, 255, .24);
    border-radius: 100%;
    transition: var(--duration);
    z-index: 1;
}

.button i:after {
    content: '';
    width: 7px;
    height: 7px;
    background-color: var(--color-white);
    position: absolute;
    top: 3px;
    left: 3px;
    border-radius: 100%;
}

.button:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-green);
    transition: var(--duration);
}

.button:hover:after {
    width: 0;
    left: 100%;
}

.button:focus span,
.button:hover span {
    transform: translateX(-29px);
}

.button:focus i,
.button:hover i {
    left: calc(100% - 43px);
}

/* ### global classes ### */
.clear {
    visibility: hidden;
    clear: both;
    height: 0;
    line-height: 0;
}

.center,
.centered {
    padding-right: var(--space-right);
    padding-left: var(--space-left);
}

.sub-title {
    margin-bottom: 20px;
    color: var(--color-green);
    font-size: 0.938rem;
    font-family: var(--font-family-demi);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ### wrapper ### */
.wrapper {
    position: relative;
    display: block;
    width: var(--width);
    min-height: var(--height);
    overflow: hidden;
}

.is-menu-open .header:after,
.is-menu-open .header-menu {
    opacity: 1;
    visibility: visible;
}

.mobile-logo {
    display: none;
}

.is-menu-open {
    .header-logo, .header-logo1 {
        img:first-of-type {
            display: none;
        }

        .mobile-logo {
            display: block;
        }
    }
}

/* ### header ### */
.header {
    padding-top: 35px;
    padding-bottom: 35px;
    position: fixed;
    top: 0;
    left: 0;
    width: var(--width);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    z-index: 11;
    transition: var(--duration);
}

.header:after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: var(--width);
    height: var(--height);
    background-color: rgba(3, 33, 26, .70);
    z-index: -1;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: var(--duration);
}

.header-logo,
.header-logo1 {
    width: 285px;
    @media (width < 480px) {
        max-width: 220px;
        width: 100%;
    }

    @media (width < 420px) {
        max-width: 170px;
    }
}

.header-logo img,
.header-logo1 img {
    width: 100%;
}

.header-button-search {
    color: var(--color-white);
    font-size: 1.5rem;
    width: 57px;
    height: 57px;
    border: 0;
    background-color: var(--color-dark-green);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--duration);
    cursor: pointer;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 1;
    text-decoration: none;
}

.header-button-search:focus,
.header-button-search:hover {
    background-color: var(--color-primary);
}

.header .button {
    width: calc(100% - 57px);
    justify-content: center;
    min-height: 57px;
}

.header-logo1 {
    display: none;
}

.header.header-sticky {
    padding-top: 15px;
    padding-bottom: 15px;
    background-color: var(--color-white);
    border-bottom: solid 1px rgba(8, 67, 54, .20);

    @media (width < 440px) {
        padding-block: 25px;
    }
}

.header.header-sticky .header-logo1 {
    display: inline-block;
}

.header.header-sticky .header-logo {
    display: none;
}

.header.header-sticky .header-hamburger {
    top: 25px;
}

.header.inner {
    border-bottom: solid 1px rgba(8, 67, 54, .05);
}

.header.inner .header-logo {
    display: none;
}

.header.inner .header-logo1 {
    display: inline-block;
}

/* ### header-menu ### */
.header-menu {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    margin: 0 35px;
    width: calc(100% - 70px);
    background-color: var(--color-green-300);
    opacity: 0;
    visibility: hidden;
}

.header-menu ul {
    padding-top: 6px;
    list-style: none;
    /*overflow-y: scroll;*/
    /*height: 333px;*/
}

.header-menu li {
    padding: 16px 32px;
    font-size: var(--font-base-size);
    font-family: var(--font-family-demi);
    position: relative;
}

.header-menu li a {
    color: var(--color-white);
    text-decoration: none;
    position: relative;
}

.header-menu li a span {
    transition: var(--duration);
    display: inline-block;
}

.header-menu li a:before {
    content: '';
    position: absolute;
    top: 50%;
    left: -3px;
    width: 6px;
    height: 6px;
    border-radius: 100%;
    background-color: var(--color-green);
    transform: translateY(-50%);
    margin-top: 2px;
    opacity: 0;
    visibility: hidden;
    transition: var(--duration);
}

.header-menu li a:focus:before,
.header-menu li a:hover:before {
    opacity: 1;
    visibility: visible;
}

.header-menu li a:focus span,
.header-menu li a:hover span {
    transform: translateX(11px);
}

.header-menu li:first-child a:hover span {
    transform: translateX(0);
}

.header-menu li:first-child a:before {
    display: none;
}

.header-menu li:not(:last-child) {
    border-bottom: solid 1px rgba(255, 255, 255, .10);
}

.header-menu li ul {
    padding: 14px 32px 17px 26px;
    background-color: var(--color-white);
    width: var(--width);
    display: none;
    height: auto;
    margin-top: 10px;
}

.header-menu li:hover ul {
    opacity: 1;
    visibility: visible;
    top: 100%;
}

.header-menu li li a {
    color: var(--color-secondary);
}

.header-menu li li a:before {
    margin-top: 1px;
}

.header-menu li li,
.header-menu li li:first-child,
.header-menu li li:not(:last-child) {
    margin-right: 0;
    padding: 0;
}

.header-menu li:first-child li a:hover span {
    transform: translateX(11px);
}

.header-menu li:first-child li a:before {
    display: block;
}

.header-mobile-arrow {
    font-size: 0.6875rem;
    color: var(--color-white);
    width: 50px;
    height: 50px;
    position: absolute;
    top: 6px;
    right: 6px;
    transform: rotate(180deg);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--duration);
}

.header-mobile-arrow.is-active {
    transform: rotate(-0deg);
}

/* ### header-hamburger ### */
.header-hamburger {
    position: absolute;
    top: 35px;
    right: 35px;
    z-index: 5;
    display: block;
    width: 50px;
    height: 50px;
    cursor: pointer;
    background-color: var(--color-green-300);
    border: 0;
    transition: var(--duration);
}

.header-hamburger span {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    width: 19px;
    height: 2px;
    text-indent: -9999px;
    background: transparent;
    transform: translate(-50%, -50%);
    transition: var(--duration);
}

.header-hamburger span:before,
.header-hamburger span:after {
    position: absolute;
    left: 0;
    display: block;
    width: var(--width);
    height: 2px;
    background-color: var(--color-white);
    transition: var(--duration);
    content: '';
}

.header-hamburger span:before {
    top: -3px;
    width: 14px;
}

.header-hamburger span:after {
    bottom: -3px;
}

.header-hamburger.active span {
    background: none;
}

.header-hamburger.active span:before,
.header-hamburger.active span:after {
    background-color: var(--color-white);
    transition-delay: 0s, 0.2s;
    width: var(--width);
}

.header-hamburger.active span:before {
    top: 0;
    transform: rotate(45deg);
}

.header-hamburger.active span:after {
    bottom: 0;
    transform: rotate(-45deg);
}

/* ### hero ### */
.hero {
    position: relative;
    min-height: 932px;
    display: flex;
    align-items: flex-end;
    padding-bottom: 44px;

    @media (max-width: 1024px) {
        min-height: 800px;
    }

    @media (max-width: 768px) {
        /*min-height: 900px;*/
        height: 100vh;
    }
}

.hero h1 {
    text-transform: uppercase;
    color: var(--color-white);
    margin-bottom: 32px;
}

.hero h1 strong {
    font-weight: var(--font-weight-normal);
    color: var(--color-green);
}

.hero-block {
    position: relative;
    z-index: 2;
    width: var(--width);
}

.hero-intro {
    max-width: 950px;
    width: var(--width);
    margin-bottom: 111px;
}

.hero-bottom {
    width: var(--width);
    justify-items: flex-end;
    overflow: hidden;
}

.hero-column {
    margin-bottom: 15px;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: var(--width);
    height: 100vh; //var(--height);

    @media (max-width: 1024px) {
        height: var(--height);
    }

    iframe {
        box-sizing: border-box;
        width: 177.77777778vh;
        height: 56.25vw;
        min-width: 100%;
        min-height: 100%;
        position: absolute;
        top: calc(50% + 90px);
        left: 50%;
        transform: translate(-50%, -50%);

        @media (max-width: 1024px) {
            top: 50%;
        }

        @media (max-width: 768px) {
            display: none;
        }
    }
}

.hero-bg-image video,
.hero-bg-image img {
    position: fixed;
    top: 0;
    left: 0;
    width: var(--width);
    height: var(--height);
    object-fit: cover;

    @media (width < 768px) {
        position: static;

    }
}

.hero .button {
    display: none;
}

.hero:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: var(--width);
    height: var(--height);
    pointer-events: none;
    background: linear-gradient(to bottom, rgba(12, 85, 68, 0.99) 0%, rgba(12, 85, 68, 0.5) 100%);
}

.hero-slider {
    width: 400px;
    overflow: hidden;
}

.hero-slider-holder {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    animation: bannerSliding 10s linear infinite;
}

.hero-slider-item {
    font-family: var(--font-family-demi);
    font-size: 0.938rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    white-space: nowrap;
}

.hero-slider-item:after {
    margin: 0 10px;
    width: 6px;
    height: 6px;
    border-radius: 6px;
    display: inline-block;
    vertical-align: middle;
    background-color: var(--color-green);
    content: '';
}

/* ### usps ### */
.usps {
    border-bottom: solid 1px rgba(12, 85, 68, .05);
    position: relative;
    z-index: 1;
    background-color: var(--color-white);
}

.usps-block {
    padding: 48px 12px;
}

.usps-text {
    font-size: 0.938rem;
    color: var(--color-secondary);
    font-family: var(--font-family-demi);
    display: flex;
    align-items: center;
}

.usps-text span {
    width: 35px;
    height: 35px;
    font-size: 0.813rem;
    color: var(--color-secondary);
    margin-right: 27px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    position: relative;
    border: solid 1px rgba(118, 183, 42, .40);
}

.usps-text:not(:last-child) {
    margin-bottom: 33px;
}

.usps-text span i.icon-globe {
    font-size: 0.938rem;
}

.usps-text span i.icon-co2 {
    font-size: 1.25rem;
}

.usps-text span:before,
.usps-text span:after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    border: 1px solid transparent;
    border-radius: 100%;
    animation: borderWavesAnim 2s linear infinite;
    transition: var(--duration);
}

.usps-text span:after {
    animation-delay: .4s;
}

/* ### builder ### */
.builder {
    padding-top: 50px;
    padding-bottom: 100px;
    background-color: var(--color-white);
    position: relative;
    z-index: 1;
}

.builder-left {
    padding: 34px 48px 34px 37px;
    width: 291px;
    margin: 0 auto;
    background-color: var(--color-dark-green);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.builder-image {
    width: var(--width);
    position: relative;
    height: 208px;
}

.builder-image img {
    width: var(--width);
    height: var(--height);
    object-fit: cover;
}

.builder-image:after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 45%;
    height: var(--height);
    pointer-events: none;
    background: linear-gradient(to left, rgba(8, 67, 54, 0.99) 10%, rgba(8, 67, 54, 0) 100%);
}

.builder-name {
    font-size: 0.938rem;
    color: rgba(255, 255, 255, .20);
    text-transform: uppercase;
    font-family: var(--font-family-demi);
    margin-top: 8px;
    position: absolute;
    top: 50%;
    right: -17px;
    z-index: 1;
    writing-mode: vertical-rl;
    transform: rotate(180deg) translateY(50%);
    height: var(--height);
    letter-spacing: 0.8px;
    display: flex;
    justify-content: center;
}

.builder-dot {
    position: absolute;
    top: -15px;
    left: -15px;
    width: 48px;
    height: 48px;
    border-radius: 100%;
    background-color: var(--color-dark-green);
}

.builder-dot:before,
.builder-dot:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 22px;
    height: 22px;
    border-radius: 100%;
    background-color: rgba(118, 183, 42, .24);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.builder-dot:before {
    z-index: 1;
    background-color: var(--color-green);
    width: 12px;
    height: 12px;
}

.builder-intro {
    padding: 68px 35px 37px 35px;
    color: var(--color-white);
    background-color: var(--color-secondary);
    font-weight: var(--font-weight-bold);
    flex: 1;
    line-height: 1.95;
    position: relative;
}

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

.builder-intro-tag {
    position: absolute;
    top: -14px;
    margin-left: -12px;
    width: 49px;
}

/* ### except ### */
.except {
    padding-bottom: 69px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
    z-index: 1;
    background-color: var(--color-dark-green);
}

.except h2 {
    font-size: 2.188rem;
    color: var(--color-white);
    line-height: 1.3;
    margin-bottom: 0;
}

.except .sub-title {
    color: var(--color-white);
    font-family: var(--font-family-base);
    margin-bottom: 15px;
    letter-spacing: 0.8px;
}

.except {
    @media screen and (max-width: 1023px) {
        flex-direction: column-reverse;
        padding-bottom: 0 !important;
    }
}

.except-image {
    display: none;
    position: relative;


    @media screen and (max-width: 1023px) {
        display: block;
        width: 100%;
        min-height: 180px;
        margin-top: 30px;

        img {
            margin: 0 auto;
        }
    }
}

.except-right {
    width: var(--width);
    margin-top: -70px;
}

.except-intro {
    padding: 60px 44px 33px 44px;
    background-color: var(--color-green);
    position: relative;
    margin-bottom: 94px;
}

.except-tag {
    position: absolute;
    top: -15px;
    margin-left: -12px;
    width: 50px;
}

.except-bg-pattern {
    position: absolute;
    top: 50%;
    left: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: -1;
    width: 357px;
}

/* ### accordion ### */
.accordion {
    width: var(--width);
}

.accordion-item {
    border-bottom: solid 1px rgba(255, 255, 255, .30);
}

.accordion-title {
    padding: 25px 50px 25px 0;
    font-size: 0.938rem;
    color: var(--color-white);
    position: relative;
    background: transparent;
    border: 0;
    cursor: pointer;
    font-family: var(--font-family-demi);
    letter-spacing: 0.8px;
    text-align: start;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    width: var(--width);
    min-height: 80px;
}

.accordion-title:after {
    content: "\e911";
    font-size: 1.25rem;
    position: absolute;
    top: 32px;
    right: 0;
    font-family: var(--font-family-icon);
    color: var(--color-green);
    transform: var(--duration);
}

.accordion-title i {
    font-size: 1.875rem;
    margin-right: 21px;
    color: var(--color-green);
}

.accordion-title i.icon-globe {
    font-size: 2rem;
    margin-top: -3px;
    margin-right: 23px;
}

.accordion-intro {
    padding-bottom: 0px;
    margin-top: -4px;
}

.accordion-content {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease-out;
    font-size: 1.063rem;
    color: var(--color-white);
}

.accordion-title[aria-expanded='true']:after {
    content: "\e90d";
}

.accordion-title[aria-expanded='true'] + .accordion-content {
    max-height: 9em;
    transition: all 200ms linear;
}

.accordion-item:nth-child(2n) .accordion-title,
.accordion-item:nth-child(3n) .accordion-title {
    padding: 34px 50px 32px 0;
}

.accordion-item:nth-child(4n) .accordion-title {
    padding: 28px 50px 33px 0;
}

.accordion-item:nth-child(5n) .accordion-title {
    padding: 32px 50px 33px 0;
}

.accordion-item:nth-child(6n) .accordion-title {
    padding: 31px 50px 33px 0;
}

.accordion-item:nth-child(2n) .accordion-title:after,
.accordion-item:nth-child(3n) .accordion-title:after,
.accordion-item:nth-child(4n) .accordion-title:after,
.accordion-item:nth-child(5n) .accordion-title:after,
.accordion-item:nth-child(6n) .accordion-title:after {
    top: 36px;
    right: -3px;
}

/* ### table-block ### */
.table-block {
    padding-top: 50px;
    padding-bottom: 102px;
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    border-bottom: solid 1px rgba(12, 85, 68, .10);
}

.table-block:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: var(--width);
    height: var(--height);
    background-color: var(--color-dark-green);
    pointer-events: none;
    z-index: -1;
}

.table-lead {
    padding: 8px 15px;
    font-size: 0.938rem;
    margin: 0 25px;
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    font-family: var(--font-family-demi);
    background-color: var(--color-green);
    min-height: 45px;
}

.table-title {
    font-size: 1.25rem;
    color: var(--color-black);
    font-family: var(--font-family-demi);
    background-color: var(--color-white);
    min-height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.table-text {
    padding: 0 25px;
    font-size: 0.938rem;
    font-weight: var(--font-weight-medium);
    color: var(--color-black);
    display: flex;
    align-items: center;
    background-color: var(--color-white);
    min-height: 52px;
    position: relative;
}

.table-text:nth-child(even) {
    background-color: var(--color-light-grey);
}

.table-text i {
    font-size: 0.813rem;
    color: var(--color-green);
    position: absolute;
    right: 24px;
}

.table-text i.icon-line {
    font-size: 1.25rem;
    color: var(--color-black);
}

.table-left {
    width: var(--width);
    margin-bottom: 52px;

    @media (max-width: 768px) {
        order: 2;
        margin-bottom: 0;
    }
}

.table-middle {
    width: var(--width);
    box-shadow: 0 3px 20px rgba(0, 0, 0, .10);
    position: relative;
    z-index: 1;

    @media (max-width: 768px) {
        order: 1;
        margin-bottom: 52px;
    }
}

.table-right {
    width: var(--width);
    display: none;
}

/* ### project ### */
.project {
    padding-top: 99px;
    background-color: var(--color-white);
    position: relative;
    z-index: 1;
}

.project h2 {
    font-size: 2.5rem;
    color: var(--color-dark-green);
    text-transform: uppercase;
    margin-bottom: 53px;
    display: none;
}

.project .swiper {
    overflow: visible;
}

.project .project-block {
    padding-bottom: 80px;
}

.project-bottom {
    display: flex;
}

.project-view-more {
    padding: 6px 19px;
    font-size: 0.938rem;
    color: var(--color-secondary);
    font-weight: var(--font-weight-medium);
    display: inline-flex;
    align-items: center;
    max-width: 199px;
    width: 100%;
    border: solid 1px rgba(12, 85, 68, .10);
    min-height: 80px;
    text-decoration: none;
    overflow: hidden;
    position: relative;

    @media (max-width: 768px) {
        border-bottom: 0;
    }

    @media (max-width: 400px) {
        min-height: 60px;
        max-width: 190px;
        padding: 5px 13px;
    }
}

.project-view-more i {
    margin-left: 10px;
    font-size: 0.625rem;
    color: var(--color-green);
    font-weight: var(--font-weight-bold);
    transition: var(--swiper-button-duration);
}

.project-view-more:focus i,
.project-view-more:hover i {
    transform: rotate(45deg);
}

.project-view-more:after {
    content: '';
    position: absolute;
    bottom: -200px;
    left: -200px;
    width: 0;
    height: 0;
    border-radius: 50%;
    background-color: var(--color-green-400);
    z-index: -1;
    pointer-events: none;
    transition: var(--swiper-button-duration);
}

.project-view-more:focus:after,
.project-view-more:hover:after {
    opacity: 1;
    visibility: visible;
    width: 725px;
    height: 613px;
    left: -100px;
}

.project .swiper-button-next,
.project .swiper-button-prev {
    font-size: 1.25rem;
    color: var(--color-green);
    position: relative;
    margin-top: 0;
    top: unset;
    left: unset;
    right: unset;
    width: 80px;
    height: 80px;
    background-color: var(--color-green-400);
    border: solid 1px rgba(12, 85, 68, .10);
    transition: var(--swiper-button-duration);
    overflow: hidden;

    @media (max-width: 400px) {
        width: 60px;
        height: 60px;
    }

    @media (max-width: 768px) {
        border-bottom: 0;
        border-left: 0;
    }
}

.project .swiper-button-prev:before,
.project .swiper-button-next:before {
    content: '';
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 0;
    height: 0;
    border-radius: 50%;
    background-color: var(--color-secondary);
    pointer-events: none;
    transition: var(--swiper-button-duration);
    z-index: -1;
}

.project .swiper-button-next:after,
.project .swiper-button-prev:after {
    display: none;
}

.project .swiper-button-disabled {
    opacity: 1;
    color: var(--color-green-800);
    background-color: var(--color-white);
}

.project .swiper-button-next:focus,
.project .swiper-button-prev:focus,
.project .swiper-button-next:hover,
.project .swiper-button-prev:hover {
    color: var(--color-white);
}

.project .swiper-button-prev:focus:before,
.project .swiper-button-next:focus:before,
.project .swiper-button-prev:hover:before,
.project .swiper-button-next:hover:before {
    width: 200px;
    height: 200px;
}

.project .swiper-button-next span {
    position: relative;
    display: inline-block;
    line-height: normal;
}

.project .swiper-button-next span:before,
.project .swiper-button-prev span:before,
.project .swiper-button-prev span:after,
.project .swiper-button-next span:after {
    content: "\e900";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-family-icon);
    transition: var(--swiper-button-duration);
}

.project .swiper-button-prev span:before,
.project .swiper-button-prev span:after {
    content: "\e901";
}

.project .swiper-button-next span:before {
    transform: translate(-100px, -50%);
}

.project .swiper-button-next:focus span:after,
.project .swiper-button-next:hover span:after {
    transform: translate(100px, -50%);
}

.project .swiper-button-next:focus span:before,
.project .swiper-button-next:hover span:before {
    transform: translate(-50%, -50%);
}

.project .swiper-button-prev span:before {
    transform: translate(100px, -50%);
}

.project .swiper-button-prev:focus span:after,
.project .swiper-button-prev:hover span:after {
    transform: translate(-100px, -50%);
}

.project .swiper-button-prev:focus span:before,
.project .swiper-button-prev:hover span:before {
    transform: translate(-50%, -50%);
}

/* ### card-project ### */
.card-project {
    color: var(--color-secondary);
    display: block;
    text-decoration: none;
    position: relative;
    background-color: rgba(8, 67, 54, .05);
    flex: 1 1;
}

.card-project-image {
    width: var(--width);
    height: 247px;
    overflow: hidden;
    position: relative;
}

.card-project-image img {
    width: var(--width);
    height: var(--height);
    object-fit: cover;
    transition: var(--duration);
}

.card-project-arrow {
    font-size: 1.25rem;
    color: var(--color-white);
    position: absolute;
    bottom: 0;
    right: 0;
    width: 80px;
    height: 80px;
    background-color: var(--color-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    transition: var(--duration);

    @media (width < 768px) {
        width: 60px;
        height: 60px;
    }
}

.card-project-info {
    padding: 32px 20px 13px 20px;
}

.card-project .sub-title {
    margin-bottom: 2px;
    letter-spacing: 0;
}

.card-project-title {
    font-size: 2.188rem;
    color: var(--color-green-700);
    text-transform: uppercase;
    font-weight: var(--font-weight-bold);
    line-height: 1;
    margin-bottom: 41px;

    @media (width < 768px) {
        font-size: 1.8rem;
    }
}

.card-project ul {
    list-style: none;
}

.card-project li {
    font-size: 0.938rem;
    position: relative;
    padding-left: 168px;
}

.card-project li strong {
    position: absolute;
    top: -3px;
    left: 0;
    font-family: var(--font-family-demi);
}

.card-project li:not(:last-child) {
    margin-bottom: 3px;
}

.card-project-caption {
    color: var(--color-white);
    font-size: 1.25rem;
    padding: 11px 32px 13px 32px;
    position: absolute;
    top: -20px;
    left: 71px;
    font-family: var(--font-family-demi);
    background-color: var(--color-green);
    text-transform: uppercase;
    z-index: 1;
    display: none;
}

.card-project-caption:before {
    content: '';
    position: absolute;
    top: 0;
    left: -20px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 20px 20px;
    border-color: transparent transparent var(--color-green-600) transparent;
    transform: rotate(0deg);
}

.card-project:focus .card-project-image img,
.card-project:hover .card-project-image img {
    transform: scale(1.04)
}

.card-project:focus .card-project-arrow,
.card-project:hover .card-project-arrow {
    background-color: var(--color-dark-green);
}

/* ### faq-block ### */
.faq-block {
    padding-top: 93px;
    padding-bottom: 71px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    background-color: var(--color-green-400);
    position: relative;
    z-index: 1;
}

.faq-block h2 {
    text-transform: uppercase;
    margin-bottom: 84px;
    font-size: var(--font-size-h3);
}

.faq-block .sub-title {
    font-family: var(--font-family-demi);
    margin-bottom: 1px;
    letter-spacing: 0;
}

.faq-block-left {
    order: 2;
    margin-bottom: 50px;
}

.faq-block-right {
    order: 1;
    margin-bottom: 80px;
}

.faq-block-mm-hide {
    display: none;
}

/* ### banner ### */
.banner {
    position: relative;
    z-index: 1;
    padding-top: 160px;
    background-color: var(--color-dark-green);

    @media (max-width: 768px) {
        padding-top: 130px;
    }
}

.banner:after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background-color: var(--color-white);
    content: '';
}

.banner:before {
    position: absolute;
    top: 65px;
    left: 0;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(118, 183, 42, 0.1) 0%, rgba(118, 183, 42, 0) 70%);
    pointer-events: none;
    content: '';
}

.banner-text {
    position: relative;
    z-index: 2;
    color: var(--color-white);
}

.banner-text h1 {
    margin-bottom: 0;
    color: inherit;
    text-transform: uppercase;
    line-height: 1.13;
    overflow-wrap: break-word;
    hyphens: auto;

    @media (width < 767px) {
        font-size: 2.2rem;
        overflow-wrap: unset;
        hyphens: unset;

        br {
            display: none;
        }

        p {
            display: inline;
        }
    }
}

.banner-text h1 strong,
.banner-text h1 b {
    font-weight: var(--font-weight-normal);
    color: var(--color-primary);
}

.banner-image {
    margin-top: -65px;
    position: relative;
    z-index: 1;
    overflow: hidden;

    @media (max-width: 768px) {
        margin-top: -30px;
    }
}

.banner-image:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(8, 67, 54, 0) 0%, rgba(8, 67, 54, 0.9) 100%);
    content: '';
}

.banner-image img {
    width: 100%;
    min-height: 300px;
    object-fit: cover;
}

.banner .card-animation {
    position: absolute;
    bottom: 50px;
    right: 20px;

    @media (max-width: 768px) {
        right: 0;
    }
}

/* ### breadcrumbs ### */
.breadcrumbs {
    margin-bottom: 10px;
}

.breadcrumbs ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
}

.breadcrumbs li {
    font-family: var(--font-family-demi);
    font-size: 0.938rem;
    color: rgba(255, 255, 255, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.breadcrumbs li:after {
    margin: -2px 15px 0;
    display: inline-block;
    vertical-align: middle;
    width: 10px;
    height: 3px;
    background-color: rgba(255, 255, 255, 0.2);
    content: ''
}

.breadcrumbs li:last-of-type:after {
    display: none;
}

.breadcrumbs a {
    color: rgba(255, 255, 255, 0.2);
    text-decoration: none;
}

.breadcrumbs a:focus,
.breadcrumbs a:hover {
    color: var(--color-primary);
}

/* ### intro ### */
.intro {
    padding-top: 70px;
    padding-bottom: 50px;
    position: relative;
    z-index: 1;
    background-color: var(--color-white);
}

.intro h2 {
    font-weight: var(--font-weight-normal);
    line-height: 1.24;
    font-weight: var(--font-weight-light);
}

.intro h2 strong {
    font-family: var(--font-family-demi);
}

.intro p:first-of-type {
    font-size: 1.25rem;
}

.intro p strong {
    display: block;
    font-family: var(--font-family-demi);
    line-height: 1.59;
}

.intro.is-alt .sub-title {
    margin-bottom: 10px;
}

.intro.is-alt .intro-left {
    margin-bottom: 48px;
}

.intro.is-alt .intro-right {
    font-size: 0.938rem;
    line-height: 2;
}

.intro.is-alt p {
    margin-bottom: 23px;
}

.intro.is-alt p strong {
    line-height: 1.8;
}

.intro.is-alt p:first-of-type {
    font-size: 1.063rem;
}

.intro-link {
    padding-top: 19px;
    display: flex;
    justify-content: flex-end;
}

.intro-link .button {
    padding: 7px 25px 8px 52px;
    font-size: 0.875rem;
}

.intro-link .button i {
    top: 17px;
    left: 23px;
}

.intro-link .button:hover i {
    left: calc(100% - 43px);
}

.intro-left ul li {
    display: flex;
    justify-content: start;
    align-items: baseline;
}

/* ### image-text ### */
.image-text {
    padding-bottom: 20px;
    position: relative;
    z-index: 1;
    background-color: var(--color-white);
}

.image-text-holder {
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.image-text-holder:last-of-type {
    margin-bottom: 0;
}

.image-text-img {
    margin-bottom: 30px;
}

.image-text-img img {
    width: 100%;
}

.image-text-content {
    line-height: 1.68;
}

.image-text-content h2 {
    font-size: 2.5rem;
    text-transform: uppercase;
    margin-bottom: 10px;

    @media (width < 767px) {
        hyphens: auto;
    }
}

.image-text-content h2 strong {
    color: var(--color-green);
    font-weight: var(--font-weight-normal);
}

.image-text-content p:last-of-type {
    margin-bottom: 0;
}

.image-text-bg {
    margin-left: -145px;
    position: absolute;
    top: 134px;
    left: 50%;
    width: 662px;
    display: none;
    pointer-events: none;
}

/* ### parallax-block ### */
.parallax-block {
    position: relative;
    height: 300px;
}

.parallax-block:before {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(8, 67, 54, 0.7) 0%, rgba(7, 74, 58, 0) 100%);
    pointer-events: none;
    content: '';
}

.parallax-block img {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.parallax-block.is-alt {
    height: 592px;
}

/* ### success ### */
.success {
    padding-bottom: 70px;
    position: relative;
    z-index: 1;
    background-color: var(--color-dark-green);
}

.success-left {
    margin-top: -50px;
    display: inline-block;
    width: 100%;
}

.success-right {
    padding-top: 50px;
    color: var(--color-white);
    line-height: 1.95;

    ul li {
        margin-left: 20px;
    }
}

.success-right p {
    strong {
        font-family: var(--font-family-demi);
        line-height: 1.59;
    }

    &:has(+ ul) {
        margin-bottom: 0;
    }
}

.success-right p:first-of-type {
    margin-bottom: 25px;
    font-size: 1.25rem;
}

/* ### stories ### */
.stories {
    padding-top: 70px;
    padding-bottom: 70px;
    position: relative;
    z-index: 1;
    background-color: var(--color-white);
}

.stories .sub-title {
    margin-bottom: 18px;
}

.stories-slider {
    margin-bottom: 50px;
    padding-top: 10px;
}

@media (max-width: 768px) {
    .stories-image {
        height: 340px;
        overflow: hidden;

        img {
            object-fit: cover;
            height: 100%;
        }
    }
}

.stories-image img {
    width: 100%;
}

.stories-text {
    line-height: 1.95;
}

.stories-text h2 {
    margin-bottom: 25px;
    font-size: 2.5rem;
    font-weight: 300;
    line-height: 1;
}

.stories-text h2 strong {
    display: inline-block;
    font-family: var(--font-family-demi);
    font-weight: var(--font-weight-normal);
}

.stories-name {
    font-size: 1.125rem;
    font-family: var(--font-family-verb);
    font-weight: var(--font-weight-semibold);
    line-height: 1.5;
}

.stories-name span {
    display: block;
    font-size: 1rem;
    font-weight: var(--font-weight-normal);
}

.stories-slider-arrows {
    margin-top: 30px;
    display: flex;
    justify-content: center;

    @media (max-width: 768px) {
        position: absolute;
        top: 270px;
        right: 0;
        z-index: 1;
    }
}

.stories-button-next,
.stories-button-prev {
    margin-top: 0;
    position: unset;
    width: 50px;
    height: 50px;
    border: 0;
    font-size: 1.25rem;
    color: var(--color-white);
    background-color: var(--color-green);
    transition: var(--duration);
}

.stories-button-next:after,
.stories-button-prev:after {
    display: none;
}

.stories-slider-arrows .swiper-button-next.swiper-button-disabled,
.stories-slider-arrows .swiper-button-prev.swiper-button-disabled {
    opacity: 1;
    background-color: var(--color-green-600);
}

.stories-button-next:focus,
.stories-button-next:hover,
.stories-button-prev:focus,
.stories-button-prev:hover {
    background-color: var(--color-green-600);
}

/* ### contact ### */
.contact {
    padding-top: 93px;
    padding-bottom: 120px;
    position: relative;
    z-index: 1;
    background-color: var(--color-white);

    @media (width < 768px) {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}

.contact:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(12, 85, 68, 0.05);
    content: '';
}

.contact.centered {
    padding-right: 0;
    padding-left: 0;
}

.contact-holder {
    position: relative;
    z-index: 1;
}

.contact-row {
    display: flex;
    flex-wrap: wrap;
}

.contact-right {
    margin-bottom: 50px;
    order: 1;
    width: 100%;
}

.contact-left {
    order: 2;
    width: 100%;
}

.contact-sub-title {
    margin-bottom: 1px;
    font-family: var(--font-family-demi);
    font-size: 0.938rem;
    color: var(--color-green);
    text-transform: uppercase;
}

.contact h2 {
    margin-bottom: 40px;
    font-size: 2.1875rem;
    text-transform: uppercase;
    text-wrap: balance;
}

.contact h2 strong {
    font-weight: var(--font-weight-normal);
}

.contact h2 i {
    display: inline-block;
    font-size: 1.8125rem;
    font-style: normal;
}

.contact .d-desktop {
    display: none;
}

.contact .d-phone {
    display: block;
}

/* ### contact-form ### */
.contact-form {
    padding: 30px;
    background-color: var(--color-white);
}

.contact-form-title {
    margin-bottom: 35px;
    font-family: var(--font-family-demi);
    font-size: 0.938rem;
    color: var(--color-green);
    text-transform: uppercase;
}

.contact-form-field {
    margin-bottom: 32px;
    position: relative;

    &.file-upload {
        margin-top: -11px;

        &::after {
            content: '';
            width: 12px;
            height: 22px;
            position: absolute;
            top: 17px;
            right: 17px;
            background-image: url('/assets/templates/images/icon-paper-clip.svg');
            background-repeat: no-repeat;
            pointer-events: none;

            @media (width < 768px) {
                top: 7px;
            }

        }

        &.active {
            input {
                color: inherit;
            }
        }

        input {
            padding-top: 20px;
            cursor: pointer;
            color: transparent;

            @media (width < 768px) {
                padding-top: 15px;
            }

            &::-webkit-file-upload-button, &::file-selector-button {
                display: none;
            }

        }
    }

    &.has-error {
        input, textarea {
            border-color: red;
        }

        label {
            color: red;
        }

        p {
            color: red;
            padding-top: 0.5rem;
        }
    }
}

.contact-form-field label {
    padding: 2px 5px;
    position: absolute;
    top: -13px;
    left: 15px;
    z-index: 1;
    font-size: 1rem;
    font-weight: var(--font-weight-medium);
    background-color: var(--color-white);
    line-height: var(--line-height-heading);
    transition: var(--duration);
}

.contact-form-field label sup {
    display: inline-block;
    font-size: 0.625rem;
    color: var(--color-green);
    transform: translateY(1px);
}

.contact-form-field.space-bottom {
    margin-bottom: 27px;
}

.contact-form-field.active input,
.contact-form-field.active textarea {
    border: 1px solid var(--color-green);
}

.contact-form-field.active label {
    font-size: 0.875rem;
}

.contact-form-button {
    text-align: right;
    /* 9px was for contact page, inconsistency i ndesign*/
    /*margin-top: 9px;*/
    margin-top: 56px;
}

/* ### partners ### */
.partners {
    padding-top: 19px;
    padding-bottom: 18px;
    position: relative;
    z-index: 1;
    background-color: var(--color-white);
    overflow: hidden;
}

.partners:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background-color: rgba(12, 85, 68, 0.1); */
    background-color: #0C5544;
    content: '';
}

.partners-title {
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
    display: none;
    font-size: 1rem;
    font-weight: 700;
    color: rgba(12, 85, 68, 0.2);
    text-transform: uppercase;
}

.partners .swiper {
    overflow: visible;
}

.partners .swiper-wrapper {
    align-items: center;
    transition-timing-function: linear;
}

.partners .swiper-slide {
    width: 150px;

    @media (max-width: 768px) {
        width: auto;
    }
}

.partners .swiper-slide img {
    margin: 0 auto;
    width: 100%;
    /* filter: brightness(0) saturate(100%) invert(22%) sepia(60%) saturate(557%) hue-rotate(116deg) brightness(103%) contrast(95%) opacity(0.1); */
    filter: brightness(180%) contrast(120%) opacity(0.5);
    transition: all 0.3s ease-out;

    @media (max-width: 768px) {
        max-width: 120px;
    }
}

.partners .swiper-slide:hover img {
    filter: none;
}

/* ### blog-block ### */
.blog-block {
    background-color: rgba(12, 85, 68, 0.05);
    padding-top: 181px;
    padding-bottom: 80px;

    @media (width < 768px) {
        padding-top: 130px;
        padding-bottom: 80px;
    }
}

.blog-block .breadcrumbs {
    margin-bottom: 0;

    @media (width < 768px) {
        margin-bottom: 10px;
    }
}

.blog-block .breadcrumbs li,
.blog-block .breadcrumbs a {
    color: rgba(12, 85, 68, 0.1);
}

.blog-block .breadcrumbs li:after {
    background-color: rgba(12, 85, 68, 0.1);
}

.blog-block h1 {
    margin-top: -9px;
    margin-bottom: 12px;
    margin-left: -15px;
    font-size: 8.125rem;
    line-height: 1;
    text-transform: uppercase;
    color: rgba(12, 85, 68, 0.05);

    @media (width < 768px) {
        margin-top: 0;
        margin-left: 0;
        font-size: 3.5rem;
    }
}

.blog-block-title {
    margin-bottom: 1px;
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
}

.blog-block-filter-list {
    margin-bottom: 50px;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
}

.blog-block-filter-list li {
    margin-right: 11px;

    @media (width < 768px) {
        font-size: 14px;
    }
}

.blog-block-filter-list li a {
    padding: 9px 26px 3px;
    position: relative;
    text-decoration: none;
    background-color: #fff;
    color: var(--color-secondary);
    transition: var(--swiper-button-duration);
    overflow: hidden;
    width: 100%;
    text-align: center;
    cursor: pointer;
}

.blog-block-filter-list li a span {
    position: relative;
    z-index: 1;
}

.blog-block-filter-list li a:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-secondary);
    transition: var(--duration);
    transform: translateX(-100%);
    opacity: 0;
    visibility: hidden;
    content: '';
}

.blog-block-filter-list li a.active:before,
.blog-block-filter-list li a:focus:before,
.blog-block-filter-list li a:hover:before {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
}

.blog-block-filter-list li a.active,
.blog-block-filter-list li a:focus,
.blog-block-filter-list li a:hover {
    color: var(--color-white);
}

.blog-block-single {
    margin-bottom: 50px;
    position: relative;
}

.blog-block-logo {
    position: fixed;
    bottom: 20px;
    right: 100px;
    z-index: -1;
    opacity: 0.05;
    display: none;
    pointer-events: none;
}

.blog-block-holder .card-blog {
    margin-bottom: 50px;

    @media (width < 768px) {
        margin-bottom: 20px;
    }
}

.blog-block-button {
    display: inline-flex;
    justify-content: center;
    width: var(--width);
}

.blog-block-load {
    font-size: var(--font-base-size);
    color: var(--color-secondary);
    font-family: var(--font-family-uni);
    font-weight: 600;
    border: 0;
    background-color: transparent;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.blog-block-load i {
    margin-right: 10px;
}

/* ### card-blog ### */
.card-blog {
    position: relative;
    z-index: 1;
    display: block;
    text-decoration: none;
    color: var(--color-secondary);
    transition: var(--duration);
}

.card-blog-image {
    position: relative;
    overflow: hidden;
}

.card-blog-image img {
    width: var(--width);
    height: var(--height);
    object-fit: cover;
    transition: var(--duration);
}

.card-blog-caption {
    position: absolute;
    bottom: 22px;
    left: 20px;
    padding: 9px 22px 6px;
    height: 46px;
    background-color: var(--color-white);

    @media (width < 768px) {
        font-size: 14px;
        height: auto;
        padding: 9px 22px 3px;
    }
}

.card-blog-arrow {
    font-size: 1rem;
    color: var(--color-white);
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 50px;
    background-color: var(--color-green);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    transition: var(--duration);
}

.card-blog-info {
    padding: 25px;
    line-height: 1.9;
    background-color: var(--color-white);
    font-family: var(--font-family-web);
}

.card-blog-date {
    font-size: 1.5rem;
    margin-bottom: 32px;
    color: #76B72A; //rgba(12, 85, 68, 0.15);
    font-family: var(--font-family-demi);

    @media (width < 768px) {
        margin-bottom: 20px;
    }
}

.card-blog-text {
    font-size: 1.563rem;
    margin-bottom: 22px;
    line-height: 1.4;
    font-weight: var(--font-weight-bold);
    font-family: var(--font-family-base);
}

.card-blog-info p:last-of-type {
    margin-bottom: 0;
}

.card-blog:focus img,
.card-blog:hover img {
    transform: scale(1.04);
}

.card-blog:focus .card-blog-arrow,
.card-blog:hover .card-blog-arrow {
    background-color: var(--color-green-600);
}

.card-blog.card-blog-single {
    background-color: var(--color-white);
}

.card-blog.card-blog-single .card-blog-info {
    padding: 25px;
}

/* ### card-animation ### */
.card-animation {
    width: 400px;
    overflow: hidden;
    z-index: 1;
}

.card-animation-holder {
    width: 100%;
    display: flex;
    align-items: center;
    animation: bannerSliding 10s linear infinite;
}

.card-animation-item {
    font-family: var(--font-family-demi);
    font-size: 0.813rem;
    color: rgba(255, 255, 255, 1);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    white-space: nowrap;
}

.card-animation-item:after {
    margin: 0 10px;
    width: 6px;
    height: 6px;
    border-radius: 6px;
    display: inline-block;
    vertical-align: middle;
    background-color: var(--color-green);
    content: '';
}

/* ### card-info ### */
.card-info {
    padding-top: 29px;
    padding-left: 42px;
    position: relative;
}

.card-info-online {
    padding: 10px;
    position: absolute;
    top: 1px;
    left: 1px;
    width: 98px;
    height: 98px;
    border-radius: 70px;
    background-color: var(--color-dark-green);
}

.card-info-online-btn {
    position: absolute;
    top: 0;
    left: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 30px;
    background-color: var(--color-dark-green);
}

.card-info-online-btn span {
    margin-bottom: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 17px;
    height: 17px;
    border-radius: 20px;
    background-color: rgba(118, 183, 42, 0.24);
}

.card-info-online-btn span:after {
    display: block;
    width: 11px;
    height: 11px;
    border-radius: 15px;
    background-color: var(--color-green);
    content: '';
}

.card-info-image {
    position: relative;
    overflow: hidden;
    border-radius: 50px;
}

.card-info-image:after {
    position: absolute;
    top: 0;
    right: 0;
    width: 45%;
    height: 100%;
    background: linear-gradient(90deg, rgba(8, 67, 54, 0) 0%, rgba(8, 67, 54, 1) 100%);
    content: '';
}

.card-info-image img {
    width: 100%;
}

.card-info-box {
    padding: 62px 35px 48px 53px;
    border: 1px solid rgba(12, 85, 68, 0.1);

    @media (width < 768px) {
        padding: 62px 30px 30px 45px;
    }
}

.card-info-box .sub-title {
    margin-bottom: 0;
    font-family: var(--font-family-base);
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--color-green);
    letter-spacing: 0;
}

.card-info-box h3 {
    margin-bottom: 29px;
    font-size: 1.5625rem;
    line-height: 1.15;
}

.card-info-box ul {
    list-style: none;
    margin-top: 44px;
}

.card-info-box li {
    line-height: 1.2;
}

.card-info-box li a {
    padding-left: 20px;
    position: relative;
    display: inline-block;
    font-size: 0.938rem;
    font-weight: var(--font-weight-medium);
    color: var(--color-dark-green);
    text-decoration: none;
    transition: var(--duration);
}

.card-info-box li a i {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 0.938rem;
    font-style: normal;
    font-weight: var(--font-weight-bold);
    color: var(--color-green);
}

.card-info-box li a:focus,
.card-info-box li a:hover {
    padding-left: 25px;
}

.card-info.bg-white .card-info-box {
    background-color: var(--color-white);
    border: 0;
}

/* ### card-ton ### */
.card-ton-item {
    display: flex;
    align-items: flex-end;
    margin-bottom: 4px;
}

.card-ton-number {
    font-size: 3.25rem;
    color: var(--color-green);
    font-weight: var(--font-weight-bold);
    line-height: 1;
    margin-bottom: 2px;
    margin-right: 6px;
}

.card-ton-info {
    flex: 1;
    color: var(--color-white);
    font-size: 1.063rem;
    line-height: 1.2;
}

.card-ton-info strong {
    display: block;
    font-family: var(--font-family-demi);
    margin-bottom: 7px;
}

.card-ton-lead {
    font-size: 0.75rem;
    color: var(--color-white);
    font-weight: 700;
    text-transform: uppercase;
    line-height: normal;
    margin-bottom: 12px;
}

.card-ton-progress {
    width: var(--width);
    height: 5px;
    background-color: rgba(255, 255, 255, .30);
    margin-bottom: 10px;
}

.card-ton-progress-bar {
    width: 0;
    background-color: var(--color-green);
    height: 5px;
    animation: progress 1s 1s linear both
}

.card-ton-step {
    font-size: 0.875rem;
    color: var(--color-white);
    display: flex;
    gap: 20px;
    justify-content: space-between;
}

.card-ton:first-child .card-ton-info {
    position: relative;
    bottom: 2px;
}

.card-ton:first-child .card-ton-lead {
    margin-bottom: 8px;
}

.card-ton:first-child .card-ton-step {
    font-size: 0.75rem;
}

.card-ton:not(:last-child) {
    margin-bottom: 26px;
}

/* ### card-success ### */
.card-success {
    padding: 75px 25px 30px;
    position: relative;
    color: var(--color-white);
    background-color: var(--color-green);
}

.card-success-title {
    margin-bottom: 30px;
    font-family: var(--font-family-demi);
    font-size: 1.5rem;
    line-height: 1.28;
}

.card-success p {
    text-transform: uppercase;
    letter-spacing: 0.9px;
}

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

.card-success-quote {
    position: absolute;
    top: -20px;
    left: 8px;
}

/* ### card-accordion### */
.card-accordion-item:first-child {
    border-top: solid 1px rgba(12, 85, 68, .10);
}

.card-accordion-item {
    border-bottom: solid 1px rgba(12, 85, 68, .10);
}

.card-accordion-title {
    padding: 27px 50px 13px 0;
    font-size: 0.938rem;
    color: var(--color-secondary);
    position: relative;
    background: transparent;
    border: 0;
    cursor: pointer;
    font-family: var(--font-family-demi);
    text-align: start;
    display: flex;
    align-items: center;
    width: var(--width);
    min-height: 80px;
    line-height: 2;
}

.card-accordion-title:after {
    content: "\e911";
    font-size: 1.313rem;
    position: absolute;
    top: 18px;
    right: -2px;
    font-family: var(--font-family-icon);
    color: var(--color-green);
    transform: var(--duration);
}

.card-accordion-intro {
    font-size: 0.938rem;
    padding-bottom: 1px;
    padding-right: 10%;
    line-height: 2;

    p {
        @media (width < 767px) {
            padding-bottom: 16px;
        }
    }
}

.card-accordion-content {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease-out;
    font-size: 1.063rem;
    color: var(--color-secondary);
}

.card-accordion-title[aria-expanded='true']:after {
    content: "\e90d";
}

.card-accordion-title[aria-expanded='true'] + .card-accordion-content {
    max-height: 9em;
    transition: all 200ms linear;
}

/*.card-accordion-item:nth-child(2n) .card-accordion-title {*/
/*    padding-top: 23px;*/
/*    line-height: 1.9;*/
/*}*/

/*.card-accordion-item:nth-child(2n) .card-accordion-title:after {*/
/*    top: 20px;*/
/*}*/

/*.card-accordion-item:nth-child(3n) .card-accordion-title {*/
/*    padding: 14px 30px 20px 0;*/
/*    min-height: 77px;*/
/*}*/

/*.card-accordion-item:nth-child(3n) .card-accordion-title:after {*/
/*    top: 28px;*/
/*}*/

/*.card-accordion-item:nth-child(5n) .card-accordion-title {*/
/*    padding: 20px 50px 25px 0;*/
/*    line-height: 1.85;*/
/*}*/

/*.card-accordion-item:nth-child(5n) .card-accordion-title:after {*/
/*    top: 17px;*/
/*}*/

/* ### footer ### */
.footer {
    background-color: var(--color-dark-green);
    position: relative;
    z-index: 1;
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    border-bottom: solid 1px rgba(255, 255, 255, .05);
}

.footer-left {
    padding-top: 59px;
    padding-bottom: 47px;
    width: var(--width);
    position: relative;
}

.footer-left:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: calc(100% + 80px);
    margin-left: -40px;
    height: 1px;
    background-color: rgba(255, 255, 255, .05);
}

.footer-logo {
    width: 90%;
}

.footer-logo img {
    width: 100%;
}

.footer-right {
    padding-top: 42px;
    padding-bottom: 59px;
    width: var(--width);
}

.footer-right strong {
    font-size: 0.938rem;
    color: rgba(255, 255, 255, .45);
    font-family: var(--font-family-demi);
    margin-bottom: 33px;
    display: block;
}

.footer-brand {
    display: flex;
    gap: 35px;
    align-items: center;
}

.footer-brand img {
    width: 114px;
}

.footer-brand img:last-child {
    width: 212px;
}

.footer-block {
    padding-top: 66px;
    padding-bottom: 70px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    border-bottom: solid 1px rgba(255, 255, 255, .05);
}

.footer-block-left {
    width: var(--width);
    margin-bottom: 44px;
}

.footer-column {
    display: flex;
    gap: 61px;
}

.footer-title {
    font-size: 0.938rem;
    color: var(--color-green);
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.footer-address:first-child {
    order: 2;
}

.footer-address address {
    font-size: 0.875rem;
    color: var(--color-white);
    font-style: normal;
    font-weight: var(--font-weight-medium);
    line-height: 2.2;
}

.footer-info-items {
    display: none;
}

.footer-block-right {
    width: var(--width);
    display: flex;
    gap: 79px;
}

.footer-menu-title {
    font-size: 1rem;
    color: rgba(255, 255, 255, .45);
    text-transform: uppercase;
    font-weight: var(--font-weight-bold);
    margin-bottom: 19px;
}

.footer-menu ul {
    list-style: none;
}

.footer-menu li {
    line-height: normal;
}

.footer-menu li a {
    font-size: 0.875rem;
    color: var(--color-white);
    text-decoration: none;
}

.footer-menu li a:focus,
.footer-menu li a:hover {
    color: rgba(255, 255, 255, .50);
    padding-left: 10px;
}

.footer-menu li:not(:last-child) {
    margin-bottom: 7px;
}

.footer-call {
    list-style: none;
    margin-bottom: 32px;
}

.footer-call li {
    margin-bottom: 7px;
    line-height: normal;
}

.footer-call li a {
    font-size: 0.875rem;
    color: var(--color-white);
    text-decoration: none;
    position: relative;
    padding-left: 25px;
}

.footer-call li a span {
    font-size: 0.875rem;
    color: var(--color-green);
    font-weight: var(--font-weight-bold);
    position: absolute;
    top: -3px;
    left: 0;
}

.footer-call li a:focus,
.footer-call li a:hover {
    padding-left: 30px;
    color: rgba(255, 255, 255, .50);
}

.footer-social {
    list-style: none;
    display: flex;
}

.footer-social li a {
    font-size: 0.813rem;
    width: 43px;
    height: 43px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    background-color: rgba(255, 255, 255, .05);
    border-radius: 100%;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    z-index: 1;

    &:has(.icon-instagram) {
        font-size: 16px;
    }
}

.footer-social li a i {
    color: var(--color-white);
    transition: var(--duration);

}

.footer-social li:not(:last-child) {
    margin-right: 12px;
}

.footer-social li a:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background-color: var(--color-white);
    transition: var(--duration);
    pointer-events: none;
    z-index: -1;
    transform: translate(-50%, -50%);
    border-radius: 100%;
}

.footer-social li a:hover i {
    color: var(--color-secondary);
}

.footer-social li a:hover:after {
    width: var(--width);
    height: var(--height);
}

.footer-copyright {
    padding-top: 28px;
    padding-bottom: 30px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    font-size: 0.875rem;
    position: relative;

    @media (max-width: 768px) {
        justify-content: space-between;
    }
}

.footer-copyright p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, .45);

    @media (max-width: 768px) {
        padding-left: 14px;
    }
}

.footer-copyright p strong {
    font-family: var(--font-family-demi);
    margin-left: 25px;
    text-transform: uppercase;

    @media (max-width: 768px) {
        margin-left: 5px;
    }
}

.footer-copyright p strong em {
    font-style: normal;
    font-family: var(--font-family-base);
    font-weight: var(--font-weight-light);
}

.footer-copyright ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;

    @media (max-width: 768px) {
        /*margin-top: -25px;*/
        gap: 10px 0;
        justify-content: end;
        display: contents;

        li {
            &:nth-child(1) {
                order: 1;
            }

            &:nth-child(2) {
                order: 1;
            }

            &:nth-child(3) {
                order: 4;
            }

            &:nth-child(4) {
                order: 1;
                /*width: 100%;*/
                /*text-align: right;*/
            }
        }
    }
}

.footer-copyright li {
    margin: 0 9px;
}

.footer-copyright li a {
    color: rgba(255, 255, 255, .45);
    text-decoration: none;
}

.footer-copyright li a:focus,
.footer-copyright li a:hover {
    color: var(--color-white);
}

.footer-horse {
    position: absolute;
    bottom: 28px;
    left: 10px;
    color: rgba(255, 255, 255, .45);
    text-decoration: none;
}

.footer-horse:focus,
.footer-horse:hover {
    color: var(--color-white);
}

/* #keyframes
================================================== */
@keyframes bannerSliding {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-180%);
    }
}

@keyframes progress {
    from {
        width: 0;
    }
    to {
        width: var(--w);
    }
}


@keyframes borderWavesAnim {
    50% {
        border-color: rgba(118, 183, 42, .40);
    }
    100% {
        top: -15px;
        bottom: -15px;
        left: -15px;
        right: -15px;
        border-radius: 100%;
    }
}

/* #Media Queries
================================================== */
@media only screen and (max-width: 1199px) {
    .header .button i {
        left: calc(50% - 50px);
    }

    .button:focus span, .button:hover span {
        transform: translateX(0);
    }
}

@media only screen and (min-width: 768px) {
    .center,
    .centered {
        padding-right: 3rem;
        padding-left: 3rem;
    }

    input,
    select,
    textarea {
        height: 55px;
        font-size: 1.0625rem;
    }

    textarea {
        height: 205px;
    }

    .button {
        min-height: 57px;
    }

    .sub-title {
        font-size: 1.125rem;
    }

    .hero-column {
        display: flex;
        gap: 80px;
        margin-bottom: 13px;
    }

    .hero .button {
        padding: 12px 27px 6px 55px;
        display: inline-flex;
        align-items: baseline
    }

    .hero .button span {
        letter-spacing: -0.5px;
    }

    .usps-block {
        display: inline-flex;
        gap: 50px;
        flex-wrap: wrap;
        justify-content: center;
        width: var(--width);
        background-color: #F5F6F5;
    }

    .usps-text:not(:last-child) {
        margin-bottom: 0;
    }

    .builder {
        display: flex;
        padding-top: 69px;
        padding-bottom: 68px;

        &:has(+ .parallax-fixed-radial) {
            padding-bottom: 160px;
        }
    }

    .builder-left {
        max-width: 380px;
        width: var(--width);
        min-height: 407px;
        margin: 0;
    }

    .builder-left:after,
    .builder-left:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: var(--width);
        height: 19px;
        background-color: var(--color-white);
    }

    .builder-left:after {
        top: unset;
        bottom: 0;
        height: 20px;
    }

    .builder-image {
        height: 294px;
    }

    .builder-name {
        font-size: 1.375rem;
        right: -20px;
        letter-spacing: 1.2px;
    }

    .builder-dot {
        width: 67px;
        height: 67px;
    }

    .builder-dot:before,
    .builder-dot:after {
        width: 31px;
        height: 31px;
    }

    .builder-dot:before {
        width: 17px;
        height: 17px;
    }

    .except {
        padding-top: 219px;
        padding-bottom: 270px;
    }

    .except-right {
        margin-top: -298px;
    }

    .accordion-title {
        padding: 27px 50px 27px 0;
        font-size: 1.375rem;
        letter-spacing: 1px;
        min-height: 105px;
    }

    .accordion-title i {
        font-size: 2.563rem;
        margin-right: 34px;
    }

    .accordion-title i.icon-globe {
        font-size: 2.938rem;
        margin-top: -5px;
        margin-right: 31px;
    }

    .accordion-title:after {
        font-size: 1.688rem;
        top: 42px;
    }

    .accordion-item:nth-child(2n) .accordion-title {
        min-height: 102px;
        padding: 0;
    }

    .accordion-item:nth-child(4n) .accordion-title {
        padding-top: 45px;
        padding-bottom: 30px;
    }

    .accordion-item:nth-child(3n) .accordion-title,
    .accordion-item:nth-child(5n) .accordion-title,
    .accordion-item:nth-child(6n) .accordion-title {
        padding: 0;
    }

    .accordion-item:nth-child(4n) .accordion-title:after {
        top: 53px;
    }

    .accordion-item:nth-child(2n) .accordion-title:after,
    .accordion-item:nth-child(3n) .accordion-title:after,
    .accordion-item:nth-child(4n) .accordion-title:after,
    .accordion-item:nth-child(5n) .accordion-title:after,
    .accordion-item:nth-child(6n) .accordion-title:after {
        top: 42px;
        right: 0;
    }

    .except-bg-pattern {
        top: 66.5%;
        margin-left: -47px;
        width: 529px;
    }

    .project-view-more {
        max-width: 350px;
    }

    .project-view-more i {
        margin-left: 15px;
        font-size: 0.75rem;
    }

    .banner {
        padding-top: 180px;
    }

    .banner:before {
        width: 400px;
        height: 400px;
    }

    .banner-image img {
        min-height: auto;
    }

    .banner .card-animation {
        bottom: 84px;
        right: 80px;
        width: 400px;
    }

    .intro {
        padding-top: 100px;
        padding-bottom: 90px;
        display: flex;
        flex-wrap: wrap;
    }

    .intro-left {
        width: 35%;
    }

    .intro-right {
        padding-left: 18px;
        width: 65%;
    }

    .intro p:first-of-type {
        font-size: 1.563rem;
    }

    .intro p:last-child {
        margin-bottom: 0;
    }

    .intro.is-alt {
        justify-content: space-between;
    }

    .intro.is-alt .sub-title {
        margin-bottom: 20px;
    }

    .intro.is-alt h2 {
        padding-top: 3px;
    }

    .intro.is-alt .intro-left {
        width: 40%;
    }

    .intro.is-alt .intro-right {
        padding-top: 59px;
        font-size: 1.125rem;
        padding-right: 0;
        width: 51.6%;
        line-height: 1.93;
    }

    .intro.is-alt p:first-of-type {
        font-size: 1.563rem;
    }

    .intro.is-alt p strong {
        line-height: 1.59;
    }

    .intro.is-alt p {
        margin-bottom: 41px;
    }

    .intro-link {
        padding-top: 0;
        display: block;
    }

    .intro-link .button {
        padding: 8px 30px 8px 60px;
        font-size: 1.063rem;
    }

    .intro-link .button i {
        top: 22px;
        left: 30px;
    }

    .image-text {
        padding-top: 20px;
        padding-bottom: 50px;
    }

    .image-text-holder {
        margin-bottom: 68px;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
    }

    .image-text-img {
        margin-bottom: 0;
        width: 50%;
    }

    .image-text-img img {
        width: auto;
    }

    .image-text-img.space-right {
        margin-left: -130px;
        width: calc(50% + 130px);
    }

    .image-text-content {
        padding-top: 20px;
        padding-left: 30px;
        width: 50%;
    }

    .image-text-text {
        max-width: 420px;
        margin-top: 23px;
    }

    .image-text-text.space-left {
        margin-left: auto;
    }

    .image-text-content h2 {
        margin-bottom: 29px;
        font-size: 2.75rem;
        line-height: 0.9;
    }

    .image-text-holder.reverse {
        flex-direction: row-reverse;
    }

    .image-text-holder.reverse .image-text-img {
        margin-right: -35px;
        width: calc(47% + 35px);
    }

    .image-text-holder.reverse .image-text-img img {
        margin-left: auto;
    }

    .image-text-holder.reverse .image-text-content {
        width: 53%;
        padding-right: 33px;
        padding-left: 0;
    }

    .image-text-holder.reverse .image-text-text {
        margin-left: auto;
    }

    .image-text-bg {
        display: block;
    }

    .parallax-block {
        height: 500px;
    }

    .success {
        padding-bottom: 100px;
        display: flex;
        flex-wrap: wrap;
    }

    .success-left {
        margin-top: -81px;
        width: 50%;
        display: block;
    }

    .success-right {
        padding-top: 100px;
        padding-left: 29px;
        width: 50%;
    }

    .success-right p {
        margin-bottom: 31px;
    }

    .success-right .button {
        margin-top: 2px;
        padding-inline: 56px 30px;
        letter-spacing: unset;
        font-size: 1rem;
    }

    .success-right p:first-of-type {
        margin-bottom: 39px;
        font-size: 1.563rem;
    }

    .success .card-success {
        max-width: 560px;
    }

    .stories {
        padding-top: 100px;
        padding-bottom: 100px;
    }

    .stories-holder {
        display: flex;
        flex-wrap: wrap;
    }

    .stories-slider {
        margin-bottom: 0;
        padding-right: 30px;
        width: 50%;
    }

    .stories-image {
        height: 100%;
    }

    .stories-image img {
        height: 100%;
        object-fit: cover;
    }

    .stories-content {
        display: flex;
        flex-direction: column;
        width: 50%;
    }

    .stories-text h2 {
        font-size: 3rem;
    }

    .stories-name {
        margin-top: auto;
        font-size: 1.3125rem;
        transform: translateY(4px);
    }

    .stories-slider-arrows {
        margin-left: -190px;
        margin-top: 0;
        position: absolute;
        left: 50%;
        bottom: 0;
        z-index: 1;
    }

    .stories-button-next,
    .stories-button-prev {
        width: 80px;
        height: 80px;
        font-size: 1.625rem;
    }

    .contact {
        padding-top: 0;
        padding-bottom: 0;
    }

    .contact-holder {
        padding-top: 100px;
        padding-bottom: 100px;
    }

    .contact h2 {
        margin-bottom: 66px;

        &:has( + p) {
            margin-bottom: 20px;
        }

        + p {
            margin-bottom: 66px;
            max-width: 400px;
        }
    }

    .contact.centered {
        padding-right: var(--space-right);
        padding-left: var(--space-left);
    }

    .contact-sub-title {
        margin-bottom: 19px;
        font-size: 1.25rem;
    }

    .contact-form {
        padding: 40px;
    }

    .contact-form-title {
        margin-bottom: 53px;
        font-size: 1.25rem;
    }

    .contact-holder {
        border-right: 1px solid rgba(12, 85, 68, 0.1);
        border-left: 1px solid rgba(12, 85, 68, 0.1);
    }

    .partners {
        padding-top: 28px;
        padding-bottom: 28px;
    }

    .partners-title {
        display: block;
    }

    .partners .swiper-slide {
        width: 268px;
        text-align: center;
    }

    .blog-block {
        padding-bottom: 120px;
    }

    .blog-block-holder-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        margin-bottom: 80px;
    }

    .blog-block-single {
        margin-bottom: 80px;
    }

    .blog-block-logo {
        display: block;
    }

    .blog-block-holder .card-blog {
        margin-bottom: 0;
    }

    .blog-block-filter-list {
        margin-bottom: 80px;
    }

    .blog-block-filter-list li a {
        width: auto;
    }

    .blog-block h1 {
        font-size: 13.625rem;
    }

    .card-blog-arrow {
        width: 70px;
        height: 70px;
        font-size: 1.25rem;
    }

    .card-blog.card-blog-single {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .card-blog.card-blog-single .card-blog-image {
        width: 47.5%;
    }

    .card-blog.card-blog-single .card-blog-info {
        width: 52.5%;
        padding: 30px;
    }

    .card-info {
        padding-top: 35px;
        padding-left: 49px;
    }

    .card-info-online {
        padding: 12px;
        width: 118px;
        height: 119px;
        left: 0;
    }

    .card-info-online-btn {
        width: 34px;
        height: 34px;
    }

    .card-info-online-btn span {
        width: 21px;
        height: 21px;
    }

    .card-info-online-btn span:after {
        width: 13px;
        height: 13px;
    }

    .card-info-box {
        padding: 61px 40px 53px 64px;
    }

    .card-info-box .sub-title {
        margin-bottom: 7px;
        font-size: 1rem;
    }

    .card-info-box h3 {
        margin-bottom: 32px;
        font-size: 1.875rem;
    }

    .card-info-box li {
        line-height: 1.4;
    }

    .card-info-box li a {
        padding-left: 24px;
        font-size: var(--font-base-size);
    }

    .card-info-box li a i {
        font-size: 1.0625rem;
    }

    .card-info-box li a:focus,
    .card-info-box li a:hover {
        padding-left: 30px;
    }

    .card-success-title {
        margin-bottom: 68px;
        font-size: 2.1875rem;
    }

    .card-success {
        padding: 84px 30px 40px;
    }

    .card-success-quote {
        left: 15px;
    }

    .card-project-title {
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .card-project-hide {
        display: none;
    }

    .card-animation-item {
        font-size: 0.938rem;
    }

    .card-animation-item:after {
        margin: 0 18px;
    }

    .footer-block {
        border-bottom: solid 1px rgba(255, 255, 255, .05);
    }

    .footer-left {
        padding-top: 100px;
        padding-bottom: 95px;
        width: 45%;
        border-bottom: 0;
        border-right: solid 1px rgba(255, 255, 255, .05);
    }

    .footer-left:after {
        display: none;
    }

    .footer-logo {
        width: 78%;
    }

    .footer-right {
        width: 50%;
        text-align: center;
    }

    .footer-block-left {
        width: 50%;
        margin-bottom: 0;
    }

    .footer-block-right {
        width: 45%;
        gap: 30px;
        display: flex;
        justify-content: flex-end;
    }

    .footer-right strong {
        font-size: 1.25rem;
        margin-bottom: 36px;
    }

    .footer-address:first-child {
        order: 1;
    }

    .footer-address {
        order: 2;
    }

    .footer-copyright li {
        margin: 0 30px;
    }

}

@media only screen and (min-width: 1025px) {
    :root {
        --font-size-h1: 4.688rem;
        --font-size-h2: 3.438rem;
        --font-size-h3: 3.125rem;
    }

    .center,
    .centered {
        padding-right: 6rem;
        padding-left: 6rem;
    }

    .hero {
        padding-bottom: 107px;
    }

    .hero h1 {
        font-size: 5.625rem;
        line-height: 1;
    }

    .hero-scroll-text {
        font-size: 0.9375rem;
    }

    .hero:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: var(--width);
        height: 410px;
        background: linear-gradient(to bottom, rgba(12, 85, 68, 1) 38%, rgba(12, 85, 68, 0) 100%);
        z-index: 1;
        pointer-events: none;
    }

    .hero:after {
        background: radial-gradient(at center, rgba(9, 67, 55, .1), rgba(9, 67, 55, .9));
    }

    .hero-intro {
        margin-bottom: 80px;
    }

    .banner:before {
        width: 500px;
        height: 500px;
    }

    .banner .card-animation {
        right: 133px;
    }

    .usps-block {
        padding: 58px 20px;
        margin-top: -54px;
    }

    .usps-text {
        font-size: 1.375rem;
        text-transform: uppercase;
    }

    .usps-text span {
        color: var(--color-green);
        font-size: 2.25rem;
        margin-right: 20px;
        width: 46px;
        height: 46px;
        display: block;
        border-radius: unset;
        border: 0;
        line-height: normal;
        display: flex;
    }

    .usps-text span:before,
    .usps-text span:after {
        /*display: none;*/
    }

    .usps-text span i.icon-globe,
    .usps-text span i.icon-co2 {
        font-size: 2.25rem;
    }

    .intro {
        padding-top: 156px;
        padding-bottom: 106px;
    }

    .builder-left {
        padding: 86px 73px 65px 60px;
    }

    .builder-intro {
        padding: 9.9% 8% 5% 11.7%;
        font-size: 1.563rem;
        line-height: 1.6;
        min-height: 447px;
    }

    .builder-intro-tag {
        top: -20px;
        margin-left: -20px;
        width: 67px;
    }

    .except h2 {
        font-size: var(--font-size-h2);
        line-height: 1.2;
    }

    .except .sub-title {
        letter-spacing: 1px;
        margin-bottom: 25px;
    }

    .except-image {
        display: block;
        width: 48%;
        margin-left: -36px;
        height: 692px;
    }

    .except-image video,
    .except-image img {
        width: var(--width);
        height: var(--height);
        object-fit: cover;
    }

    .except-right {
        width: calc(50% + 1px);
        margin-top: -300px;
    }

    .except-intro {
        padding: 77px 60px 47px 60px;
        margin-bottom: 128px;
    }

    .except-tag {
        top: -20px;
        margin-left: -18px;
        width: 67px;
    }

    .table-middle .table-text span {
        display: none;
    }

    .table-block {
        flex-wrap: nowrap;
        background-color: var(--color-white);
        padding-bottom: 160px;
    }

    .table-block:after {
        height: 219px;
    }

    .table-title {
        min-height: 72px;
    }

    .table-text {
        font-size: 1.125rem;
        min-height: 60px;
    }

    .table-text i {
        position: relative;
        top: unset;
        right: unset;
        text-align: center;
        width: var(--width);
    }

    .table-left {
        max-width: 469px;
        margin-top: 0;
        margin-bottom: 0;
    }

    .table-left .table-text i {
        display: none;
    }

    .table-title span {
        opacity: 0;
        visibility: hidden;
    }

    .table-middle {
        max-width: 365px;
    }

    .table-right {
        max-width: 345px;
        margin-top: 0;
        display: block;
    }

    .table-lead {
        font-size: 1rem;
        min-height: 50px;
        margin: 0;
    }

    .table-text i {
        text-align: center;
    }

    .table-left,
    .table-right {
        margin-top: 50px;
    }

    .project {
        padding-top: 164px;
    }

    .project h2 {
        display: inline-block;
    }

    .project .project-block {
        padding-bottom: 159px;
    }

    .project-view-more {
        padding: 6px 50px 12px 50px;
        max-width: 560px;
        font-size: 1.25rem;
        min-height: 119px;
    }

    .project .swiper-button-disabled,
    .project .swiper-button-next,
    .project .swiper-button-prev {
        width: 119px;
        height: 119px;
        font-size: 2.438rem;
    }

    .faq-block {
        padding-top: 149px;
        padding-bottom: 160px;
    }

    .faq-block h2 {
        margin-bottom: 60px;
        margin-top: 20px;
    }

    .faq-block-left {
        width: 42%;
        margin-bottom: 0;
        order: 1;
    }

    .faq-block-right {
        width: 52.5%;
        margin-top: 10px;
        order: 2;
        margin-bottom: 0;
    }

    .faq-block .sub-title {
        margin-bottom: 7px;
    }

    .faq-block-d-hide {
        display: none;
    }

    .faq-block-mm-hide {
        display: block;
    }

    .banner {
        padding-top: 220px;
    }

    .image-text {
        padding-bottom: 95px;
    }

    .image-text-content h2 {
        font-size: 3rem;
    }

    .parallax-block {
        height: 715px;
    }

    .parallax-block.is-alt {
        height: 691px;
    }

    .success {
        padding-bottom: 160px;
    }

    .success-right {
        padding-top: 159px;
    }

    .stories {
        padding-top: 150px;
        padding-bottom: 160px;
    }

    .stories-text h2 {
        margin-bottom: 30px;
        font-size: 3.75rem;
        margin-top: 20px;

        @media (width < 1200px) {
            font-size: 2.5rem;
        }

        @media (width < 1024px) {
            font-size: 2.25rem;
        }

        @media (width < 768px) {
            font-size: 2rem;
        }
    }

    .contact-holder {
        padding-top: 0;
        padding-bottom: 0;
    }

    .contact-left {
        padding-top: 150px;
        padding-bottom: 150px;
        padding-right: 20px;
        width: 47.5%;
        order: 1;
    }

    .contact-right {
        margin-bottom: 0;
        padding-top: 162px;
        padding-bottom: 160px;
        border-left: 1px solid rgba(12, 85, 68, 0.1);
        width: 52.5%;
        order: 2;
    }

    .contact-form {
        padding: 68px 80px 80px;
    }

    .contact .card-info {
        max-width: 443px;
    }

    .contact h2 {
        font-size: 3.125rem;
    }

    .contact h2 i {
        transform: translate(-10px, -17px);
    }

    .contact .d-desktop {
        display: block;
    }

    .contact .d-phone {
        display: none;
    }

    .blog-block {
        padding-bottom: 172px;
    }

    .blog-block-holder-container {
        gap: 60px;
        margin-bottom: 0;
    / / 160 px;
    }

    .blog-block-filter-list {
        margin-bottom: 103px;
    }

    .card-success {
        padding: 93px 60px 51px;
    }

    .card-success-quote {
        left: 44px;
    }

    .card-blog-caption {
        left: 50px;
    }

    .card-blog-arrow {
        width: 100px;
        height: 100px;
    }

    .card-blog-info {
        padding: 39px 50px 34px;
    }

    .card-blog.card-blog-single .card-blog-info {
        padding: 35px 60px 34px;
    }

    .card-accordion-title {
        padding: 40px 50px 24px 0;
        font-size: var(--font-family-base);
    }

    .card-accordion-intro {
        font-size: var(--font-base-size);
        padding-bottom: 4px;
    }

    .card-accordion-title:after {
        font-size: 1.688rem;
        top: 32px;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
    }

    /*.card-accordion-item:nth-child(2n) .card-accordion-title {*/
    /*    line-height: 1.9;*/
    /*    padding: 30px 60px 35px 0;*/
    /*}*/
    /*.card-accordion-item:nth-child(3n) .card-accordion-title {*/
    /*    padding: 35px 50px 39px 0;*/
    /*}*/
    /*.card-accordion-item:nth-child(5n) .card-accordion-title {*/
    /*    padding: 32px 50px 40px 0;*/
    /*    line-height: normal;*/
    /*}*/
    /*.card-accordion-item:nth-child(2n) .card-accordion-title:after,*/
    /*.card-accordion-item:nth-child(4n) .card-accordion-title:after {*/
    /*    top: 21px;*/
    /*}*/
    /*.card-accordion-item:nth-child(3n) .card-accordion-title:after,*/
    /*.card-accordion-item:nth-child(5n) .card-accordion-title:after {*/
    /*    top: 32px;*/
    /*}*/
    .card-project-caption {
        display: inline-block;
    }

    .card-project-image {
        height: 400px;
    }

    .card-project-arrow {
        width: 100px;
        height: 100px;
    }

    .card-project-info {
        padding: 40px 52px 45px 52px;
    }

    .card-project .sub-title {
        font-size: 1.25rem;
        margin-bottom: 17px;
    }

    .card-project li {
        font-size: var(--font-base-size);
        padding-left: 204px;
    }

    .card-project li:not(:last-child) {
        margin-bottom: 6px;
    }

    .card-ton-item {
        margin-bottom: 12px;
    }

    .card-ton-lead {
        font-size: 1.125rem;
        margin-bottom: 6px;
    }

    .card-ton-number {
        font-size: 4.75rem;
        margin-right: 15px;
    }

    .card-ton-info {
        font-size: 1.5rem;
        padding-right: 16px;
    }

    .card-ton-info strong {
        margin-bottom: 0;
    }

    .card-ton:first-child .card-ton-step {
        font-size: 0.875rem;
    }

    .card-ton:first-child .card-ton-info {
        padding-right: 0;
        bottom: 0;
    }

    .card-ton:first-child .card-ton-lead {
        margin-bottom: 6px;
    }

    .card-ton:first-child .card-ton-number {
        margin-right: 14px;
    }

    .card-ton:not(:last-child) {
        margin-bottom: 0;
    }


    .footer-left {
        min-height: 283px;
        width: 50%;
    }

    .footer-right {
        padding-top: 88px;
        padding-bottom: 20px;
        width: 41%;
        min-height: 283px;
    }

    .footer-brand {
        gap: 49px;
    }

    .footer-block {
        padding-top: 128px;
        padding-bottom: 80px;
    }

    .footer-menu {
        width: 37%;
    }

    .footer-column {
        gap: 50px;
        margin-bottom: 100px;
    }

    .footer-title {
        font-size: 1rem;
        margin-bottom: 18px;
    }

    .footer-address address {
        font-size: var(--font-base-size);
    }

    .footer-info-items {
        display: flex;
        gap: 108px;
    }

    .footer-info-image {
        opacity: 0.30;
        width: 248px;
    }

    .footer-info-image:focus,
    .footer-info-image:hover {
        opacity: 1;
    }

    .footer-call {
        margin-bottom: 48px;
    }

    .footer-menu li a,
    .footer-call li a {
        font-size: var(--font-base-size);
    }

    .footer-call li a span {
        font-size: 1.063rem;
    }

    .footer-call li {
        margin-bottom: 10px;
    }

    .footer-menu li {
        line-height: 1.8;
    }

    .footer-menu li:not(:last-child) {
        margin-bottom: 0;
    }

    .footer-social li a {
        width: 49px;
        height: 49px;
        font-size: var(--font-base-size);
    }

    .footer-menu-title {
        margin-bottom: 23px;
    }

    .footer-info .footer-menu-title {
        margin-bottom: 26px;
    }

    .footer-social li:not(:last-child) {
        margin-right: 15px;
    }

    .footer-address address {
        line-height: var(--line-height-base);
    }

    .footer-copyright {
        padding-top: 25px;
        font-size: 1rem;
    }

    .footer-copyright li {
        margin-left: 0;
        margin-right: 35px;
    }

    .footer-copyright ul {
        margin-left: 82px;
        justify-content: unset
    }

}

@media only screen and (min-width: 1200px) {
    .center {
        padding-right: calc((100% - var(--width-medium)) / 2);
        padding-left: calc((100% - var(--width-medium)) / 2);
    }

    .header {
        padding-top: 30px;
        padding-bottom: 28px;
        border-bottom: solid 1px rgba(255, 255, 255, .20);
    }

    .header .button {
        margin-left: 22px;
        width: unset;
    }

    .header-button-search {
        margin-left: 25px;
        position: unset;
    }

    .header.header-sticky .header-menu li a {
        color: var(--color-dark-green);
    }

    .header-hamburger {
        top: 25px;
    }

    .hero {
        min-height: 1080px;
    / / 100 vh;
    }

    .hero-intro {
        margin-bottom: 17px;
    }

    .banner:before {
        left: 100px;
        width: 690px;
        height: 690px;
    }

    .usps-block {
        padding: 55px 20px 56px 20px;
        gap: 104px;
    }

    .builder-left {
        max-width: 451px;
    }

    .faq-block-left {
        width: 37.5%;
    }

    .table-text {
        padding: 0 40px;
    }

    .except-image {
        width: calc(50% + 10px);
        margin-left: -131px;
    }

    .banner:before {
        left: 100px;
        width: 690px;
        height: 690px;
    }

    .image-text-text.space-left {
        margin-right: 19px;
    }

    .image-text-holder.reverse .image-text-img {
        margin-right: -370px;
        width: calc(47% + 370px);
    }

    .stories-content {
        padding-left: 30px;
    }

    .contact.centered {
        padding-right: calc((100% - var(--width-base)) / 2);
        padding-left: calc((100% - var(--width-base)) / 2);
    }

    .contact-left {
        padding-right: 50px;
    }

    .card-info {
        padding-right: 7px;
    }

    .card-accordion-intro {
        padding-right: 25%;
    }

    .footer-column {
        justify-content: space-between;
        gap: 80px;
        width: 70.5%;
    }

    .footer-block-right {
        width: 50%;
        gap: 23px;
    }

    .footer-copyright {
        justify-content: unset;
    }

}

@media only screen and (min-width: 1440px) {
    .header-logo,
    .header-logo1 {
        width: 431px;
    }

    header.header-sticky .header-menu li a:after {
        bottom: -31px;
    }

    .header.inner .header-menu li a {
        color: var(--color-secondary);
    }

    .header-menu {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: flex-end;
        position: relative;
        top: unset;
        width: unset;
        margin: 0;
        background-color: transparent;
        opacity: 1;
        visibility: visible;
    }

    .header-menu ul {
        padding-top: 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-end;
        height: auto;
        overflow: unset;
    }

    .header-menu li {
        padding: 15px 0;
        border-bottom: 0;
    }

    .header-menu li ul {
        padding: 14px 32px 17px 26px;
        position: absolute;
        top: 0;
        left: 0;
        background-color: var(--color-white);
        width: max-content;
        display: block;
        opacity: 0;
        visibility: hidden;
        transition: var(--duration);
    }

    .header-menu li.has-children a span:before {
        content: '\e905';
        font-size: 0.313rem;
        color: var(--color-green);
        position: absolute;
        top: 40%;
        right: -17px;
        font-family: var(--font-family-icon);
        transform: rotate(180deg);
        opacity: 1;
        visibility: visible;
        transition: var(--duration);
    }

    .header-menu li.has-children:hover a span:before {
        transform: rotate(0);
    }

    .header-menu li.has-children li a span:before {
        display: none
    }

    .header-menu li:not(:last-child) {
        margin-right: 45px;
        border-bottom: none;
    }

    .header-menu li.is-active > a:after {
        content: '';
        position: absolute;
        bottom: -44px;
        left: 0;
        width: 0;
        height: 2px;
        background-color: var(--color-green);
        transition: var(--duration);
        opacity: 0;
        visibility: hidden;
    }

    .header-menu li.is-active a:after {
        width: var(--width);
        opacity: 1;
        visibility: visible;
    }

    .header-mobile-arrow {
        display: none;
    }

    .header-hamburger {
        display: none;
    }

    .usps-block {
        gap: 201px;
    }

    .footer-info {
        width: 30.2%;
    }

    .footer-brand {
        margin-left: 29px;
    }

    .footer-brand img {
        width: 170px;
    }

    .footer-brand img:last-child {
        width: auto;
    }

}

@media only screen and (min-width: 1510px) {
    .centered {
        padding-right: calc((100% - var(--width-base)) / 2);
        padding-left: calc((100% - var(--width-base)) / 2);
    }

    .footer-horse {
        left: 23px;
    }

    .header-button-search {
        margin-left: 40px;
    }
}

.project-block-section {
    padding-block: 181px 66px;
    background-color: rgb(from var(--color-secondary) r g b / 0.05);

    @media (max-width: 768px) {
        padding-block: 130px 40px;
    }

    .breadcrumbs {
        margin-bottom: 25px;

        @media (max-width: 768px) {
            margin-bottom: 10px;
        }

        ul {
            li, a {
                color: rgb(from var(--color-secondary) r g b / 0.1)
            }

            li::after {
                background-color: rgb(from var(--color-secondary) r g b / 0.1)
            }
        }
    }

    h1 {
        font-size: clamp(3.5rem, 13vw, 11.25rem);
        line-height: 1;
        color: rgb(from var(--color-secondary) r g b / 0.05);
        text-transform: uppercase;
        margin-bottom: 30px;
        margin-left: -15px;
        /*clip-path: polygon(0 0, 100% 0, 100% 70%, 0 70%);*/

        @media (max-width: 768px) {
            margin-left: 0;
        }
    }


    .project-block-title {
        font-weight: var(--font-weight-bold);
        text-transform: uppercase;
        /*margin-top: -29px;*/
        margin-bottom: 15px;
    }

    .project-block-filter-list {
        /*margin-bottom: 50px;*/
        list-style: none;
        display: flex;
        flex-wrap: wrap;

        li {
            margin-right: 11px;

            @media (max-width: 768px) {
                font-size: 14px;
            }

            a, label {
                padding: 15px 31px 11px 26px;
                line-height: 1;
                position: relative;
                text-decoration: none;
                background-color: rgba(12, 85, 68, 0.05);
                color: var(--color-secondary);
                transition: var(--swiper-button-duration);
                overflow: hidden;
                width: 100%;
                text-align: center;
                appearance: none;
                display: inline-block;
                cursor: pointer;

                input {
                    position: absolute;
                    top: -100vh;
                    left: -100vw;
                    height: 0;
                    width: 0;
                    opacity: 0;
                    visibility: hidden;
                }

                &:before {
                    position: absolute;
                    top: 0;
                    left: 0;
                    width: 100%;
                    height: 100%;
                    background-color: var(--color-secondary);
                    transition: var(--duration);
                    transform: translateX(-100%);
                    opacity: 0;
                    visibility: hidden;
                    content: '';
                }

                &.active, &:focus, &:has(:checked), &:hover {
                    color: var(--color-white);

                    &:before {
                        transform: translateX(0);
                        opacity: 1;
                        visibility: visible;
                    }
                }

                span {
                    position: relative;
                    z-index: 1;
                }
            }
        }
    }


    @media (width > 768px) {
        .project-block-filter-list {
            /*margin-bottom: 80px;*/
        }

        .project-block-filter-list li a,
        .project-block-filter-list li input {
            width: auto;
        }
    }

}

.project-block-holder {
    padding-block: 140px 0;

    @media (width < 1024px) {
        padding-block: 60px 0;
    }

    .project-block-holder-container {
        display: flex;
        gap: 33px 60px;
        justify-content: space-between;
        align-items: flex-start;
        flex-wrap: wrap;
        position: relative;
        padding-block-end: 160px;

        @media (width < 1024px) {
            padding-block-end: 100px;
            gap: 50px;
        }

        @media (width < 768px) {
            padding-block-end: 35px;
            gap: 30px;
        }

        &:before, &:after {
            content: '';
            width: 1px;
            height: calc(100% + 100px);
            top: -122px;
            bottom: 0;
            position: absolute;
            background-color: rgb(from var(--color-secondary) r g b / 0.1);

            @media (width < 1440px) {
                display: none;
            }
        }

        &:before {
            left: -130px;
        }

        &:after {
            right: -130px;
        }
    }

    .back-link-container {
        margin-top: 0;
        display: flex;
        justify-content: flex-end;
        width: 100%;
        position: relative;
        padding-bottom: 100px;

        &:before, &:after {
            content: '';
            width: 1px;
            height: calc(100% + 22px);
            top: -22px;
            bottom: 0;
            position: absolute;
            background-color: rgb(from var(--color-secondary) r g b / 0.1);

            @media (width < 1440px) {
                display: none;
            }
        }

        &:before {
            left: -130px;
        }

        &:after {
            right: -130px;
        }

        a {
            color: var(--color-secondary);
            font-weight: 500;
            line-height: 2;
            font-size: 1.25rem;
            text-decoration: none;


            &:hover, &:focus {
                span {
                    transform: translateX(5px);
                }

                img {
                    rotate: -45deg;
                    transform: translateY(-5px);
                }
            }

        }

        span {
            transform: translateX(0);
            transition: all 0.25s;
            display: inline-block;
        }

        img {
            display: inline-block;
            margin-left: 15px;
            transition: all 0.25s ease-in-out;
            transform-origin: top right;
            transform: translateY(0);
        }
    }

    .card-project {

        @media (width > 1024px) {
            width: calc(50% - 30px);
        }

        &:nth-child(even) {
            margin-top: 87px;

            @media (width < 1024px) {
                margin-top: 0;
            }
        }
    }
}

.template-projecten {
    .card-project-title {
        @media (width > 768px) {
            margin-bottom: 20px;
        }
    }
}

.template-projecten-detail {
    .breadcrumbs {
        margin-bottom: 34px;
        @media (width < 768px) {
            margin-bottom: 10px;
        }
    }

    .banner-image {
        margin-top: -74px;
        @media (width < 768px) {
            margin-top: -30px;
        }
    }

    .intro {
        padding-bottom: 355px;
        z-index: unset;

        @media (width < 768px) {
            padding-bottom: 200px;
        }

        .intro-left {
            h2 {
                font-weight: 600;
                font-size: 1.25rem;
                letter-spacing: 0;
                margin-bottom: 31px;
            }

            ul {
                margin: 0;
                display: flex;
                flex-direction: column;
                line-height: 1;
                gap: 17px;
                list-style: none;

                strong {
                    margin-right: 45px;
                    min-width: 155px;
                    display: inline-block;
                    font-weight: 600;

                    @media (width < 768px) {
                        max-width: 155px;
                    }
                }
            }
        }

        .intro-right {
            padding-left: 0;
            padding-top: 26px;

            @media (width > 768px) {
                padding-left: 10px;
                padding-top: 0;
            }
        }

        p {
            strong {
                font-weight: 600;
                font-size: 1.567rem;
                line-height: 1;

                @media (width < 768px) {
                    font-size: 1.25rem;
                }
            }
        }
    }

    .project {
        background-color: rgb(from var(--color-secondary) r g b / 0.05);
        padding-block: 163px 157px;
        border-top: 1px solid rgb(from var(--color-secondary) r g b / 0.1);

        @media (width < 1024px) {
            padding-block: 100px 100px;
        }

        @media (width < 768px) {
            padding-block: 60px 60px;
        }

        h2 {
            margin-bottom: 112px;
        }
    }

    .project-block {
        display: flex;
        gap: 60px;
        padding-bottom: 0;

        @media (width < 1024px) {
            gap: 30px;
        }

        @media (width < 768px) {
            flex-wrap: wrap;
        }

        .card-project-title {
            @media (width > 768px) {
                margin-bottom: 22px;
            }
        }
    }
}

.template-biocoat p {
    font-weight: 400;
}

.project-images {
    background-color: rgb(from var(--color-secondary) r g b / 0.05);
    padding-block-end: 138px;

    @media (width < 768px) {
        padding-block-end: 30px;
    }

    .center {
        display: flex;
        gap: 60px;
        flex-wrap: wrap;
        margin-top: -162px;
        z-index: 2;
        position: relative;

        @media (width < 768px) {
            gap: 30px;
        }
    }

}

.project-info {
    padding-block: 70px 108px;
    background-color: rgb(from var(--color-secondary) r g b / 0.05);
    border-bottom: 1px solid rgb(from var(--color-secondary) r g b / 0.1);

    @media (width < 768px) {
        padding-block: 30px 30px;
    }

    .center {
        display: flex;
        gap: 60px;

        @media (width < 1024px) {
            gap: 40px;
        }

        @media (width < 768px) {
            gap: 20px;
            flex-direction: column;
        }

        h2 {
            font-weight: 600;
            font-size: 1.5626rem;
            line-height: 1.6;
        }

        .project-into-left, .project-into-right {
            width: 100%;
            max-width: 560px;

            @media (width < 768px) {
                max-width: unset;
            }
        }

        .project-into-right p {
            line-height: 1.944;
        }
    }
}

.news-overview {
    padding-block: 223px 200px;
    background-color: rgb(from var(--color-secondary) r g b / 0.05);

    @media (width < 768px) {
        padding-block: 150px 40px;
    }

    .blog-block-logo {
        position: absolute;
        top: 800px;
        right: 100px;
        z-index: unset;
        opacity: 0.05;
        /*display: none;*/
        pointer-events: none;
        z-index: 0;
    }

    .breadcrumbs {
        ul {
            li, a {
                color: rgb(from var(--color-secondary) r g b / 0.1)
            }

            li::after {
                background-color: rgb(from var(--color-secondary) r g b / 0.1)
            }
        }
    }

    .news-overview-container {
        display: flex;
        justify-content: space-between;
        position: relative;
        align-items: stretch;
        z-index: 1;

        @media (width < 1024px) {
            flex-direction: column;
        }

        &:before, &:after {
            content: '';
            width: 1px;
            height: calc(100% + 302px);
            top: -102px;
            bottom: 0;
            position: absolute;
            background-color: rgb(from var(--color-secondary) r g b / 0.1);
        }

        &:before {
            left: -130px;
        }

        &:after {
            right: -130px;
        }
    }

    .news-overview-left {
        max-width: 400px;
        width: 100%;
        display: flex;
        flex-direction: column;
        /*height: 100%;*/

        @media (width < 1200px) {
            max-width: 210px;
        }

        @media (max-width: 1024px) {
            max-width: unset;
        }

        h1 {
            text-transform: uppercase;
            position: sticky;
            top: 0;
            font-size: clamp(3rem, 13vw, var(--font-size-h1));

            @media (1024px < width < 1200px) {
                font-size: 2.5rem;
            }
        }

        .heading-container {
            height: 100%;
            position: relative;
            overflow: hidden;
        }
    }

    .news-overview-right {
        position: relative;

        &:before {
            content: '';
            width: 1px;
            height: calc(100% + 302px);
            top: -102px;
            bottom: 0;
            position: absolute;
            background-color: rgb(from var(--color-secondary) r g b / 0.1);
            left: -100px;
        }

        .news-overview-overview {
            display: flex;
            flex-direction: column;
            gap: 200px;
            margin-top: 50px;


            @media (width < 1024px) {
                gap: 100px;
            }

            @media (width < 768px) {
                gap: 45px;
            }
        }
    }

    .card-news {
        position: relative;

        &:before {
            content: '';
            width: 31px;
            height: 31px;
            position: absolute;
            left: -115px;
            background-image: url('/assets/templates/images/news-circle.svg');
        }
    }

    .blog-block-button {
        justify-content: flex-start;
        margin-top: 160px;

        @media (width < 1024px) {
            margin-top: 100px;
        }

        @media (width < 768px) {
            margin-top: 45px;
        }
    }
}

.card-news {
    color: var(--color-secondary);
    display: block;
    text-decoration: none;
    position: relative;
    background-color: var(--color-white);
    max-width: 569px;

    &:hover, &:focus {
        .card-news-image {
            img {
                transform: scale(1.04);
            }
        }

    }

    .card-news-image {
        position: relative;

        picture {
            display: block;
            overflow: hidden;
        }

        img {
            transition: var(--duration);
        }
    }

    .card-news-info {
        padding: 40px 50px 50px;

        @media (max-width: 768px) {
            padding: 30px;
        }
    }

    .sub-title {
        margin-bottom: -4px;
        letter-spacing: 0;
        font-size: 1.25rem;
        font-weight: 600;
    }

    .card-news-title {
        font-size: 1.875rem;
        color: var(--color-secondary);
        /*text-transform: uppercase;*/
        font-weight: var(--font-weight-bold);
        line-height: 1.33;
        margin-bottom: 51px;
        text-wrap: balance;

        @media (max-width: 768px) {
            margin-bottom: 30px;
        }
    }

    .card-news-caption {
        color: var(--color-white);
        font-size: 1.25rem;
        padding: 11px 32px 13px 32px;
        position: absolute;
        top: -20px;
        left: 70px;
        font-family: var(--font-family-demi);
        background-color: var(--color-green);
        text-transform: uppercase;
        z-index: 1;

        @media (max-width: 768px) {
            font-size: 1rem;
            padding: 11px 22px 10px 22px;
            left: 50px;
        }

        &:before {
            content: '';
            position: absolute;
            top: 0;
            left: -20px;
            width: 0;
            height: 0;
            border-style: solid;
            border-width: 0 0 20px 20px;
            border-color: transparent transparent var(--color-green-600) transparent;
            transform: rotate(0deg);
        }
    }
}

.template-nieuws-detail {
    .banner {
        .breadcrumbs {
            margin-bottom: 25px;
        }

        .card-animation {
            z-index: 2;
            /* @media (width > 768px) {
                bottom: unset;
                top: 77px;
            } */
        }

        .banner-image {
            margin-top: 67px;

            &:before {
                background: linear-gradient(180deg, rgba(8, 67, 54, 0.51) 30%, rgba(8, 67, 54, 0.0) 100%);
                z-index: 2;
            }
        }

        h1 {
            font-size: 3.4375rem;
            line-height: 1.18;
            max-width: 914px;

            @media (width < 1024px) {
                font-size: 2.5rem;
            }

            @media (width < 768px) {
                font-size: 2rem;
            }
        }

        .date {
            margin-top: 20px;
            display: block;
            font-size: 1.25rem;
            color: var(--color-green);
            text-transform: uppercase;
            font-weight: 600;
            line-height: 1;
        }

        .swiper-nav {
            z-index: 2;
            position: absolute;
            bottom: 80px;
            left: 130px;

            @media (width < 1024px) {
                bottom: 40px;
                left: 50px;
            }

            @media (width < 768px) {
                bottom: 10px;
                left: 10px;
                right: 10px;
            }

            ul {
                display: flex;
                flex-wrap: wrap;
                gap: 62px;
                list-style: none;

                @media (width < 768px) {
                    gap: 30px;
                }


                li {
                    &.active {
                        position: relative;

                        &:last-of-type {
                            &:after {
                                display: none;
                            }
                        }

                        &:after {
                            content: '';
                            width: 30px;
                            height: 1px;
                            background-color: var(--color-white);
                            position: absolute;
                            right: -45px;
                            top: 13px;
                            display: block;
                            z-index: 999;

                            @media (width < 768px) {
                                width: 15px;
                                right: -22px;
                            }
                        }

                        button {
                            opacity: 1;
                        }
                    }
                }


                button {
                    appearance: none;
                    border: 0;
                    background-color: unset;
                    color: var(--color-white);
                    font-size: 1.25rem;
                    opacity: 0.5;
                }
            }
        }
    }

    .project {
        background-color: rgb(from var(--color-secondary) r g b / 0.05);
        padding-block: 157px 157px;
        position: relative;

        @media (width < 768px) {
            padding-block: 60px 60px;
        }

        &:before, &:after {
            content: '';
            width: 1px;
            background-color: rgb(from var(--color-secondary) r g b / 0.1);
            height: 100%;
            position: absolute;
            top: 0;
            bottom: 0;

            @media (width < 1400px) {
                display: none;
            }
        }

        &:before {
            @media (width > 1400px) {
                left: 6rem;
            }

            @media (width > 1510px) {
                left: calc((100% - var(--width-base)) / 2);
            }


            /*left: 6rem;*/
        }

        &:after {
            @media (width > 1400px) {
                right: 6rem;
            }

            @media (width > 1510px) {
                right: calc((100% - var(--width-base)) / 2);
            }
        }

        h2 {
            margin-bottom: 113px;

            @media (width < 768px) {
                margin-bottom: 60px;
            }
        }
    }

    .project-block {
        display: flex;
        gap: 60px;
        padding-bottom: 0;

        @media (width < 768px) {
            gap: 40px;
            flex-wrap: wrap;
        }

        @media (width > 768px) {
            .card-project-title {
                margin-bottom: 19px;
            }
        }


    }
}

.news-detail-content {
    padding-block: 156px 159px;
    position: relative;

    @media (width < 1024px) {
        padding-block: 100px;
    }

    @media (width < 768px) {
        padding-block: 40px;
    }

    &:before, &:after {
        content: '';
        width: 1px;
        background-color: rgb(from var(--color-secondary) r g b / 0.1);
        height: 100%;
        position: absolute;
        top: 0;
        bottom: 0;

        @media (width < 1400px) {
            display: none;
        }
    }

    &:before {
        @media (width > 1400px) {
            left: 6rem;
        }

        @media (width > 1510px) {
            left: calc((100% - var(--width-base)) / 2);
        }


        /*left: 6rem;*/
    }

    &:after {
        @media (width > 1400px) {
            right: 6rem;
        }

        @media (width > 1510px) {
            right: calc((100% - var(--width-base)) / 2);
        }
    }

    .center {
        display: flex;
        gap: 30px;
        justify-content: space-between;

        @media (width < 768px) {
            flex-direction: column;
        }
    }

    .content {
        max-width: 660px;

        &.rte {
            p:first-of-type {
                margin-bottom: 46px;

                @media (width < 768px) {
                    margin-bottom: 20px;
                }
            }

            p {
                margin-bottom: 41px;

                @media (width < 768px) {
                    margin-bottom: 20px;
                }

                &:has(+h2) {
                    margin-bottom: 51px;

                    @media (width < 768px) {
                        margin-bottom: 40px;
                    }
                }

                &:has(+ .back-link) {
                    margin-bottom: 35px;
                }
            }

            q, blockquote {
                margin-bottom: 48px;

                @media (width < 768px) {
                    margin-bottom: 20px;
                }
            }

            ul {
                margin-bottom: 40px;

                @media (width < 768px) {
                    margin-bottom: 20px;
                }

                li {
                    padding-left: 30px;


                    &:before {
                        width: 5px;
                        height: 5px;
                        top: 13px;
                    }
                }
            }
        }
    }

    .news-detail-nav {
        max-width: 400px;

        h2 {
            margin-bottom: 32px;
            text-transform: uppercase;
            color: var(--color-green);
            font-size: 1.125rem;
            font-weight: 600;
        }

        .card-news {
            margin-bottom: 54px;

            .sub-title {
                font-size: 1rem;
                font-weight: 500;
                margin-bottom: 18px;
            }

            h3 {
                font-size: 1.5625rem;
                line-height: 1.4;
                margin-bottom: 5px;

                @media (width < 768px) {
                    font-size: 1.3rem;
                    margin-bottom: 15px;
                }
            }

            .collaborator {
                margin-bottom: 13px;
                display: inline-block;

                @media (width < 768px) {
                    line-height: 1.4rem;
                }

                strong {
                    display: inline-block;
                    margin-right: 47px;
                    font-size: 0.9375rem;
                    font-weight: 500;
                    color: var(--color-black);

                    @media (width < 767px) {
                        width: 100%;
                    }

                }

                span {
                    font-size: 0.9375rem;
                    color: var(--color-black);
                }
            }

            .card-news-info {
                padding: 37px 30px 30px;
                border: 1px solid rgb(from var(--color-secondary) r g b / 0.05);
                border-top: unset;

                @media (width < 768px) {
                    padding: 30px;
                }
            }

            .button {
                padding-block: 0;
                min-height: unset;
                padding-inline: 30px;
                background-color: unset;
                color: var(--color-secondary);

                &:after {
                    display: none;
                }

                &:hover, &:focus {
                    i {
                        left: calc(100% - 43px);
                    }
                }

                i {
                    left: 0;
                    top: 50%;
                    transform: translateY(-50%);
                    background-color: rgb(from var(--color-green) r g b / 0.25);

                    &:after {
                        background-color: var(--color-green);
                    }
                }
            }
        }

        .social-share {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
            list-style: none;

            a {
                display: flex;
                justify-content: center;
                align-items: center;
                width: 49px;
                height: 49px;
                border-radius: 50%;
                background-color: rgb(from var(--color-secondary) r g b / 0.05);
                position: relative;


                img {
                    transition: transform .2s ease-in;
                }

                .tooltip {
                    opacity: 0;
                    position: absolute;
                    content: "Kopieer link";
                    background-color: var(--color-green);
                    top: 50%;
                    left: 0;
                    font-size: 14px;
                    line-height: 100%;
                    color: var(--color-white);
                    z-index: 10;
                    width: 100px;
                    height: 30px;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    transform: translateY(-50%);
                    border-radius: 4px;
                    transition: opacity .2s ease-in, left .2s ease-in;

                    &::before {
                        opacity: 1;
                        content: "";
                        position: absolute;
                        top: 50%;
                        left: -9px;
                        transform: translateY(-50%);
                        width: 0;
                        height: 0;
                        border-top: 10px solid transparent;
                        border-bottom: 10px solid transparent;
                        border-right: 18px solid var(--color-green);
                        z-index: 9;
                    }
                }

                &:hover {
                    .tooltip {
                        opacity: 1;
                        left: 66px;
                    }

                    img {
                        transform: rotate(90deg);
                    }
                }

                &:hover, &:focus {
                //background-color: var(--color-green);

                    img {
                    //filter: brightness(0) invert(1);
                    }
                }
            }
        }
    }

    .back-link {
        color: var(--color-secondary);
        font-weight: 500;
        font-size: 1.25rem;
        text-decoration: none;
        /*margin-top: 47px;*/

        img {
            margin-right: 15px;
            display: inline-block;
            transition: all ease-in-out 0.25s;
            transform: rotate(0);
        }

        &:hover, &:focus {
            img {
                transform: rotate(-45deg);
            }
        }


    }
}

.blog-block-intro {
    padding-block: 273px 80px;

    @media (width < 1024px) {
        padding-block: 150px 60px;
    }

    @media (width < 768px) {
        padding-block: 150px 30px;
    }

    .breadcrumbs {
        margin-bottom: 25px;

        @media (width < 768px) {
            margin-bottom: 10px;
        }

        ul {
            li, a {
                color: rgb(from var(--color-secondary) r g b / 0.1)
            }

            li::after {
                background-color: rgb(from var(--color-secondary) r g b / 0.1)
            }
        }
    }

    .blog-block-intro-holder {
        display: flex;
        justify-content: space-between;
        gap: 30px;
        align-items: flex-end;

        @media (width < 1200px) {
            flex-wrap: wrap;
            /*align-items: unset;*/
            /*justify-content: flex-end;*/
        }

        @media (width < 768px) {
            gap: 20px;
            flex-wrap: wrap;
            align-items: unset;
            justify-content: flex-start;
        }

        h1 {
            text-transform: uppercase;
            font-size: 3.4375rem;
            line-height: 1.18;
            max-width: 760px;
            margin-bottom: 0;

            @media (width < 1200px) {
                font-size: 3rem;
            }

            @media (width < 768px) {
                font-size: 2.5rem;
            }
        }

        .blog-categories {
            list-style: none;
            display: flex;
            gap: 26px;
            flex-wrap: wrap;
            margin-block: 25px;

            @media (width < 1200px) {
                gap: 15px;
                margin-block: 25px;
            }

            li {
                padding: 17px 22px 12px;
                background-color: var(--color-green);
                line-height: 1;
                color: var(--color-white);

                @media (width < 768px) {
                    font-size: 14px;
                }
            }
        }

        .blog-block-intro-detail {
            display: flex;
            align-items: flex-end;
            flex-direction: column;
            gap: 13px;
            top: 8px;
            position: relative;

            @media (width < 768px) {
                position: unset;
                margin-bottom: 15px;
                align-items: flex-start;
            }

        }

        .author {
            display: flex;
            align-items: flex-end;
            gap: 16px;


            img {
                border-radius: 50%;
                overflow: hidden;
            }
        }
    }
}

.blog-detail-content {

    .content {
        padding-block: 77px 107px;
        max-width: 940px;
        width: 100%;
        margin: 0 auto;

        @media (width < 1024px) {
            padding-block: 40px 60px;
        }

        @media (width < 768px) {
            padding-block: 30px 30px;
        }

        picture {
            margin-block: 59px 80px;
            display: block;

            @media (width < 768px) {
                margin-block: 40px 40px;
            }
        }

        &.rte {
            p:first-of-type {
                margin-bottom: 27px;
            }

            p {
                margin-bottom: 40px;

                &:has(+ul) {
                    margin-bottom: 15px;
                }
            }

            q, blockquote {
                margin-bottom: 45px;
            }

            ul {
                li {
                    padding-left: 30px;

                    &:before {
                        width: 5px;
                        height: 5px;
                        top: 13px;
                    }
                }
            }

            ol li {
                margin-left: 20px;
            }
        }
    }
}

.share-bar {
    border-block: 1px solid rgb(from var(--color-secondary) r g b / 0.1);

    .center {
        display: flex;
        justify-content: space-between;
        gap: 30px;
        align-items: center;

        @media (width < 768px) {
            flex-wrap: wrap;
            gap: 0;
        }
    }

    h2 {
        font-size: 1.25rem;
        font-weight: 500;
        margin-bottom: 0;

        @media (width < 768px) {
            margin-top: 0; //20px;
        }
    }

    .share-options {
        list-style: none;
        display: flex;

        @media (width > 1200px) {
            position: relative;
            left: 132px;
        }

        li {
            border-left: 1px solid rgb(from var(--color-secondary) r g b / 0.1);

            @media (width < 768px) {
                border-top: 0; //1px solid rgb(from var(--color-secondary) r g b / 0.1);
            }

            &:last-child {
                border-right: 1px solid rgb(from var(--color-secondary) r g b / 0.1);
            }

            a {
                width: 80px;
                height: 80px;
                background-color: var(--color-white);
                transition: all ease-in-out 0.25s;
                display: flex;
                justify-content: center;
                align-items: center;
                position: relative;

                @media (width < 768px) {
                    width: 50px;
                    height: 50px;
                }

                &:before {
                    content: '';
                    opacity: 1;
                    background-color: rgb(from var(--color-secondary) r g b / 0.1);
                    width: 0;
                    height: 0;
                    bottom: 0;
                    left: 0;
                    position: absolute;
                    transition: all ease-in-out 0.25s;
                    transform-origin: bottom left;
                }

                &:hover, &:focus {

                    &:before {
                        width: 100%;
                        height: 100%;
                    }

                    svg {
                        fill: var(--color-secondary);
                    }
                }

                svg {
                    fill: rgb(from var(--color-secondary) r g b / 0.32);
                    transition: all ease-in-out 0.25s;
                }
            }
        }
    }
}

.copy-link {
    position: relative;
    display: block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    margin-right: 1px;
    color: #FFF;
    text-decoration: none;

    &:hover, &:focus {
        i {
            color: var(--color-secondary);
        }

        .tooltip {
            opacity: 1;
        }
    }

    i {
        color: rgb(from var(--color-secondary) r g b / 0.32);
    }

    .tooltip {
        opacity: 0;
        position: absolute;
        top: 50%;
        left: 100%;
        font-size: 14px;
        line-height: 100%;
        z-index: 10;
        width: 100px;
        height: 25px;
        display: flex;
        align-items: center;
        justify-content: center;
        transform: translateY(-50%);
        border-radius: 0;
        padding: 1px 0 3px;
        transition: opacity .2s ease-in;
        background: var(--color-secondary);

        &::before {
            content: "";
            position: absolute;
            top: 50%;
            left: -6px;
            transform: translateY(-50%);
            width: 0;
            height: 0;
            border-top: 6px solid transparent;
            border-bottom: 6px solid transparent;
            border-right: 6px solid var(--color-secondary);
            z-index: 9;
        }
    }
}

.template-blog-detail {
    .project {
        padding-block: 140px 160px;
        background-color: rgb(from var(--color-secondary) r g b / 0.05);

        @media (width < 1024px) {
            padding-block: 80px;
        }

        @media (width < 768px) {
            padding-block: 50px;
        }

        .blog-block-holder {
            display: flex;
            gap: 60px;

            @media (width < 768px) {
                gap: 30px;
                flex-wrap: wrap;
            }
        }

        .card-blog {
            .card-blog-arrow {
                scale: 1.2;
                right: 10px;
                bottom: 10px;

                @media (width < 768px) {
                    scale: 1;
                    right: 0;
                    bottom: 0;
                }
            }

            .card-blog-date {
                margin-bottom: 32px;

                @media (width < 768px) {
                    margin-bottom: 20px;
                }
            }

            .card-blog-text {
                margin-bottom: 21px;
            }
        }
    }
}

.parallax-header {
    min-height: 920px;
    position: relative;
    background-attachment: fixed;
    background-size: cover;
    display: flex;
    width: 100%;
    height: 100%;
    align-items: flex-end;

    @media (width < 1200px) {
        min-height: 500px;
    }

    @media (width < 1024px) {
        background-attachment: unset;
    }

    @media (width < 768px) {
        min-height: 350px;
    }


    .centered {
        width: 100%;
        display: flex;
        justify-content: flex-end;
        position: relative;
        bottom: 158px;

        @media (width < 1024px) {
            bottom: 120px;
        }

    }

    &:before {
        content: '';
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        background: linear-gradient(90deg, #0c5544 0%, rgba(12, 85, 68, 0) 100%);
    }

    &:after {
        content: '';
        width: 100%;
        height: 100%;
        position: absolute;
        inset: 0;
        background-image: url("/assets/templates/images/parallax-header-gradient-overlay.svg");
        display: block;
    }
}

.werken-bij-intro {
    padding-block-end: 60px;

    @media (width < 768px) {
        padding-block-end: 30px;
    }

    .werken-bij-intro-holder {
        padding-inline: 130px;
        padding-block: 73px 0;
        margin-top: -120px;
        background-color: white;
        position: relative;
        z-index: 2;
        display: flex;
        justify-content: space-between;
        gap: 30px;

        @media (width < 1200px) {
            padding-inline: 50px;
        }

        @media (width < 1024px) {
            padding-block: 30px 0;
            margin-top: -100px;
            padding-inline: 30px;
            flex-wrap: wrap;
            gap: 0;
        }

        @media (width < 768px) {
            padding-block: 20px 0;
            margin-top: -100px;
            padding-inline: 20px;
        }
    }

    .left-side {
        max-width: 497px;
        width: 100%;

        @media (width < 1024px) {
            max-width: unset;
        }
    }

    .right-side {
        max-width: 590px;
        width: 100%;
        margin-top: 48px;

        @media (width < 1024px) {
            max-width: unset;
            margin-top: 0;
        }

        p {
            margin-bottom: 27px;
        }

        ul {
            max-width: 550px;
            gap: 4px;
            margin-bottom: 36px;
        }
    }

    .breadcrumbs {
        margin-bottom: 12px;

        ul {
            li, a {
                color: rgb(from var(--color-secondary) r g b / 0.1)
            }

            li::after {
                background-color: rgb(from var(--color-secondary) r g b / 0.1)
            }
        }
    }

    h1 {
        font-size: 3.75rem;
        line-height: 1.1;
        font-weight: 300;
        color: var(--color-green);
        text-transform: uppercase;

        @media (width < 1200px) {
            font-size: 2.5rem;
        }

        @media (width < 1024px) {
            font-size: 2.25rem;
        }

        @media (width < 768px) {
            font-size: 2rem;
        }

        strong {
            font-weight: 700;
            color: var(--color-secondary);
        }
    }
}

.werken-bij-images {
    padding-block: 60px 0px;
    background-color: var(--color-white);

    .werken-bij-images-holder {
        display: flex;
        gap: 60px;
        align-items: flex-end;
        margin-bottom: -120px;

        @media (width < 768px) {
            gap: 20px;
            flex-direction: column;
            margin-top: -30px;
            margin-bottom: -60px;
        }
    }
}

.werken-bij-overview {
    padding-block: 286px 80px;
    background-color: #F2F6F5;

    @media (width < 1200px) {
        padding-block: 200px 80px;
    }

    @media (width < 768px) {
        padding-block: 150px 40px;
    }

    .werken-bij-overview-holder {
        display: flex;
        flex-direction: column;
        gap: 40px;

        @media (width < 768px) {
            gap: 20px;
        }
    }

    h2 {
        font-size: 3.75rem;
        line-height: 1.08;
        font-weight: 700;
        text-transform: uppercase;
        color: var(--color-secondary);
        max-width: 620px;
        margin-bottom: 71px;

        @media (width < 1200px) {
            font-size: 2.5rem;
        }

        @media (width < 1024px) {
            font-size: 2.25rem;
        }

        @media (width < 768px) {
            font-size: 2rem;
            margin-bottom: 20px;
        }
    }
}

.vacancy-item {
    background-color: var(--color-white);
    display: flex;
    text-decoration: none;

    @media (width < 767px) {
        flex-direction: column;
    }

    &:hover, &:focus {
        .vacancy-item-image {
            .card-blog-arrow {
                background-color: var(--color-green-600);
            }
        }
    }

    .vacancy-item-image {
        position: relative;
        max-height: 250px;
        overflow: hidden;

        @media (768px <= width < 1200px) {
            max-width: 50%;
        }

        img {
            object-fit: cover;
            height: 100%;

            @media (width < 768px) {
                width: 100%;
            }
        }
    }

    .vacancy-item-info {
        padding: 51px 51px 51px 60px;
        flex: 1;

        @media (width < 1200px) {
            padding: 30px;
        }


        span {
            font-size: 1.125rem;
            color: var(--color-green);
            text-transform: uppercase;
            font-weight: 600;
            margin-bottom: 10px;
            letter-spacing: .4px;
        }

        h3 {
            color: var(--color-secondary);
            font-size: 2.5rem;
            line-height: 1;
            font-weight: 700;
            margin-bottom: 36px;

            @media (width < 1200px) {
                font-size: 2rem;
            }

            @media (width < 1024px) {
                font-size: 1.75rem;
            }

            @media (width < 767px) {
                margin-bottom: 20px;
            }
        }

        .werken-bij-overview-holder {
            display: flex;
            flex-direction: column;
            gap: 40px;
        }

        .vacancy-item-details {
            list-style: none;
            display: flex;
            gap: 20px;
            /*margin-bottom: 30px;*/
            color: var(--color-dark-green);
            font-size: 1.25rem;
            /*justify-content: space-between;*/
            flex-wrap: wrap;

            @media (width < 767px) {
                gap: 0 20px;
                font-size: 1rem;
            }


            li {
                position: relative;

                @media (width < 767px) {
                    width: 100%;
                }

                &:not(:last-child):after {
                    content: '';
                    background-color: rgb(from var(--color-secondary) r g b / 0.6);
                    height: 25px;
                    width: 1px;
                    display: block;
                    right: -12px;
                    position: absolute;
                    top: 5px;

                    @media (width < 1200px) {
                        right: -12px;
                    }

                    @media (width < 767px) {
                        display: none;
                    }
                }
            }
        }
    }
}

.campus-cta {
    padding-block: 101px 168px;
    background-color: #F2F6F5;

    @media (width < 1200px) {
        padding-block: 80px;
    }

    @media (width < 1024px) {
        padding-block: 60px 80px;
    }

    @media (width < 768px) {
        padding-block: 50px 80px;
    }

    .campus-cta-holder {
        display: flex;
        gap: 0;
        align-items: center;

        @media (width < 768px) {
            flex-direction: column;
        }
    }

    .campus-cta-content {
        max-width: 720px;
        width: 100%;
        background-color: #16375E;
        padding: 115px 72px 80px 80px;
        color: var(--color-white);
        position: relative;

        @media (width < 1200px) {
            padding: 90px 60px 60px;
        }

        @media (width < 1024px) {
            padding: 80px 40px 40px;
        }

        @media (width < 768px) {
            padding: 70px 30px 30px;
        }

        &:before {
            content: '';
            width: 73px;
            height: 105px;
            position: absolute;
            top: -20px;
            left: 65px;
            background-image: url("/assets/templates/images/staalcampus-quote-icon.png");
            display: block;

            @media (width < 768px) {
                left: 12px;
            }
        }
    }

    h2 {
        font-size: 2.5rem;
        color: #12A4C9;
        line-height: 1.1;
        font-weight: 700;
        margin-bottom: 22px;

        @media (width < 768px) {
            font-size: 2rem;
        }

        strong {
            color: var(--color-white);
        }
    }

    p {
        line-height: 1.9444;
    }

    .button {
        background-color: #12A4C9;
        margin-top: 14px;

        @media (width < 768px) {
            padding: 8px 20px 8px 50px;
            width: 100%;

            i {
                top: 19px;
                left: 23px;
            }
        }

        &:after {
            background-color: #12A4C9;
        }

        &:hover, &:focus {
            background-color: #0D99BC;
        }

    }

    .campus-cta-image {
        position: relative;

        &:before {
            content: '';
            width: 44px;
            height: 100%;
            position: absolute;
            top: 0;
            left: 0;
            bottom: 0;
            background: linear-gradient(270deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.51) 100%);
        }
    }
}

.parallax-fixed-radial {
    min-height: 800px;
    position: relative;
    background-attachment: fixed;
    background-size: cover;

    @media (width < 768px) {
        min-height: 400px;
    }

    @media (width < 1024px) {
        background-attachment: unset;
    }

    &:before {
        content: '';
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('/assets/templates/images/parallax-fixed-radial.svg') no-repeat center center;
        background-size: cover;
    }
}

.template-werken-bij-detail,
.template-vacatures-detail {
    .werken-bij-intro {
        .left-side {
            max-width: 450px;
        }

        h1 {
            font-weight: 700;
            color: var(--color-secondary);
        }

        .right-side {
            margin-top: 45px;
            max-width: 620px;

            .rte p:first-of-type {
                line-height: 1.944;
                font-weight: 400;
                font-size: var(--font-base-size);
                margin-bottom: 22px;
            }

            .rte ul {
                gap: 4px;
                margin-bottom: 46px;
            }
        }
    }

    .parallax-fixed-radial {
        min-height: 900px;

        @media (width < 1024px) {
            min-height: 600px;
        }

        @media (width < 768px) {
            min-height: 400px;
        }
    }
}

.vacancy-detail-info {
    padding-block: 287px 96px;
    background-color: #F2F6F5;

    @media ( width < 1200px) {
        padding-block: 200px 96px;
    }

    @media (width < 1024px) {
        padding-block: 180px 80px;
    }

    @media (width < 768px) {
        padding-block: 120px 30px;
    }

    .vacancy-detail-info-title {
        margin-bottom: 42px;

        @media (width < 768px) {
            margin-bottom: 20px;
        }

        h2 {
            font-size: 3.75rem;
            line-height: 1.1;
            font-weight: 300;
            text-transform: uppercase;

            @media (width < 1200px) {
                font-size: 2.5rem;
            }

            @media (width < 1024px) {
                font-size: 2.25rem;
            }

            @media (width < 768px) {
                font-size: 2rem;
            }

            strong {
                font-weight: 700;
                display: block;
            }
        }
    }

    .vacancy-detail-info-holder {
        display: flex;
        gap: 64px;
        justify-content: space-between;
        /*align-items: flex-end;*/

        @media (width < 1024px) {
            gap: 30px;
        }

        @media (width < 768px) {
            flex-direction: column;
            gap: 20px;
        }

        .left-side {
            max-width: 494px;
            width: 100%;
            line-height: 1.944;

            @media (width < 768px) {
                max-width: unset;
            }

            p {
                font-weight: 600;
            }
        }

        .right-side {
            max-width: 621px;
            width: 100%;

            @media (width < 768px) {
                max-width: unset;
            }

            ul {
                gap: 5px;
                margin-top: 0;
            }
        }
    }
}

.template-vacatures-detail {
    .simple-title-text {
        padding-block: 286px 160px;

        @media (width < 1200px) {
            padding-block: 200px 80px;
        }
        @media (width < 768px) {
            padding-block: 150px 40px;
        }
    }
}

#search-dialog {
    margin: 129px auto 0;
    border: unset;
    max-width: 1440px;
    width: 100%;
    max-height: 807px;

    @media screen and (max-width: 1200px) {
        max-width: 95vw;
    }

    &::backdrop {
        background-color: rgb(from var(--color-green-500) r g b / 0.7);
    }

    .search-popup {
        position: relative;
        z-index: 1;
        width: 100%;
        display: flex;
        flex-direction: column;
        /*align-items: flex-end;*/
        background-color: var(--color-secondary);
        padding: 135px 160px 141px;

        @media screen and (max-width: 1200px) {
            padding: 105px 20px 200px;
        }

        h2 {
            text-transform: uppercase;
            color: var(--color-white);
            font-weight: 700;
            /*margin-bottom: 40px;*/
            margin-bottom: 62px;
            line-height: 1;

            @media (width > 1024px) {
                font-size: 5.626rem;
            }

            strong {
                color: var(--color-green);
                font-weight: 400;
            }
        }

        form {
            max-width: 1120px;

            &:has(input:placeholder-shown) {
                .icon-cross {
                    display: none;
                }

                .results {
                    display: none;
                }
            }

            &:has(input:not(:placeholder-shown)) {
                .icon-search {
                    display: none;
                }

                .icon-cross {
                    display: block;
                }

                .search-suggestions {
                    display: none;
                }

                .results {
                    display: block;
                }
            }
        }

        input {
            height: 80px;
            padding: 15px 31px 15px;

            &::placeholder {
                color: rgb(from var(--color-secondary) r g b / 0.6);
            }
        }
    }

    .search-close {
        background-color: var(--color-green);
        color: var(--color-white);
        border: none;
        position: absolute;
        right: 0;
        top: 0;
        width: 70px;
        height: 70px;
        display: flex;
        justify-content: center;
        &:hover {
            cursor: pointer;
        }
    }

    .search-form-group {
        display: flex;
    }

    .search-form-submit {
        font-size: 1.25rem;
        color: var(--color-white);
        width: 87px;
        height: 80px;
        background-color: var(--color-green);
        border: 0;
        cursor: pointer;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: all ease-in-out 0.25s;
    }

    h3 {
        color: var(--color-green);
        font-size: var(--font-base-size);
        text-transform: uppercase;
        font-weight: 600;
        margin-bottom: 24px;
        letter-spacing: 1px;
    }

    .search-suggestions {
        margin-top: 54px;

        ul {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            gap: 16px;
            max-width: 996px;
            flex-wrap: wrap;

            li {
                a {
                    display: block;
                    font-family: var(--font-family-web);
                    font-weight: 600;
                    line-height: 1.5;
                    font-size: 1rem;
                    color: var(--color-white);
                    text-decoration: none;
                    background-color: rgb(from var(--color-white) r g b / 0.2);
                    padding: 8px 18px 8px 46px;
                    position: relative;
                    transition: all ease-in-out 0.25s;

                    &:before {
                        content: '';
                        width: 17px;
                        height: 17px;
                        background-image: url('/assets/templates/images/icon-search-icon-suggestion.svg');
                        background-repeat: no-repeat;
                        display: block;
                        position: absolute;
                        top: 12px;
                        left: 16px;
                    }
                }
            }
        }
    }

    .results {
        margin-top: 94px;

        @media (width < 1024px) {
            margin-top: 50px;
        }

        h3 {
            margin-bottom: 35px;
        }

        .result-box {
            padding: 60px 60px 35px 60px;
            background-color: var(--color-white);
            position: relative;
            transition: all ease-in-out 0.25s;
            cursor: pointer;
            text-decoration: none;
            color: unset;

            @media (width < 767px) {
                padding: 40px;
            }

            &:hover, &:focus {
                .arrow-box {
                    background-color: var(--color-green-600);
                }
            }

            .arrow-box {
                position: absolute;
                top: 0;
                right: 0;
                width: 80px;
                height: 80px;
                background-color: var(--color-green);
                display: flex;
                justify-content: center;
                align-items: center;
                transition: all ease-in-out 0.25s;
            }

            .crumbs {
                display: flex;
                gap: 24px;
                flex-wrap: wrap;
                margin-bottom: 14px;

                span {
                    color: rgb(from var(--color-secondary) r g b / 0.15);
                    font-size: 1rem;
                    font-family: var(--font-family-web);
                    position: relative;

                    &:not(:first-child) {
                        &::before {
                            content: '';
                            width: 1px;
                            height: 100%;
                            background-color: rgb(from var(--color-secondary) r g b / 0.15);
                            position: absolute;
                            top: 0;
                            left: -12px;
                        }
                    }
                }
            }

            h4 {
                font-size: 1.75rem;
                font-weight: 700;
                line-height: 1.25;
                color: var(--color-secondary);
                margin-bottom: 26px
            }

            p {
                font-size: var(--font-base-size);
                font-weight: 400;
                font-family: var(--font-family-web);
                line-height: 1.944;

                span, em {
                    font-style: normal;
                    background-color: rgb(from var(--color-secondary) r g b / 0.1);
                }
            }
        }

        .top-result {
            margin-bottom: 114px;

            @media (width < 1024px) {
                margin-bottom: 50px;
            }
        }

        .other-results {
            .other-results-holder {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 60px;

                @media (width < 1024px) {
                    gap: 50px;
                    grid-template-columns: 1fr;
                }

                .result-box {
                    .arrow-box {
                        transform: scale(1);
                        transform-origin: top left;
                    }

                    &:hover, &:focus {
                        .arrow-box {
                            /* transform: scale(1.25); */
                        }
                    }
                }
            }
        }
    }
}

.image-banner {
    position: relative;

    &:before {
        content: '';
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOng9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHdpZHRoPSIxOTIwIiBoZWlnaHQ9IjQ4NiIgdmlld0JveD0iMCAwIDE5MjAgNDg2Ij4KICA8ZGVmcz4KICAgIDxyYWRpYWxHcmFkaWVudCBpZD0icmFkaWFsLWdyYWRpZW50IiBjeD0iMC41IiBjeT0iMC42NzMiIHI9IjAuODQ2IiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCI+CiAgICAgIDxzdG9wIG9mZnNldD0iMCIgc3RvcC1jb2xvcj0iIzA4NDMzNiIgc3RvcC1vcGFjaXR5PSIwLjIwNCIvPgogICAgICA8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwODQzMzYiLz4KICAgIDwvcmFkaWFsR3JhZGllbnQ+CiAgPC9kZWZzPgogIDxyZWN0IGlkPSJIZWFkZXItY2lyY3VsYWlyc3RhYWwiIHdpZHRoPSIxOTIwIiBoZWlnaHQ9IjQ4NiIgZmlsbD0idXJsKCNyYWRpYWwtZ3JhZGllbnQpIi8+Cjwvc3ZnPg==");
        background-size: cover;
        background-repeat: no-repeat;
    }

    img {
        width: 100%;
        max-height: 486px;
        object-fit: cover;

        @media (width < 1024px) {
            height: 100vh;
            max-height: 350px;
        }
    }

    .image-banner-content {
        position: absolute;
        bottom: 0;
        padding-bottom: 16px;
        max-width: 480px;

        @media (width < 1200px) {
            max-width: unset;
        }

        h1 {
            color: var(--color-white);
            font-size: 4.625rem;
            text-transform: uppercase;
            line-height: 1.15;
            margin-top: 32px;

            @media (width < 1200px) {
                font-size: 3rem;
            }
            @media (width < 1024px) {
                font-size: 2.5rem;
            }
            @media (width < 768px) {
                font-size: 2rem;
            }
        }
    }
}

.template-offerte-aanvragen {

    .contact {
        @media (width < 1024px) {
            padding-block: 20px 50px ;
        }
    }

    .contact-row {

    }

    .contact-holder {
        padding-block: 98px 160px;

        @media (width < 1024px) {
            padding-block: 30px 50px ;
        }

        .contact-left {
            padding-top: 0;
            padding-bottom: 0;
        }

        .contact-right {
            border-left: unset;
            padding-top: 0;
            padding-bottom: 0;

            .contact-form {
                margin-top: -309px;

                @media (width < 1200px) {
                    margin-top: 0;
                }

            }

            .contact-form-title {
                font-size: 2.4375rem;
                line-height: 1.38;
                text-transform: uppercase;
                color: var(--color-green-700);
                margin-bottom: 26px;

                @media (width < 1200px) {
                    font-size: 2rem;
                }

                @media (width < 1024px) {
                    font-size: 1.75rem;
                }
            }

            p {
                margin-bottom: 53px;
                line-height: 1.944;
            }
        }
    }

    .contact-info {
        margin-bottom: 54px;

        .contact-options {
            display: flex;
            justify-content: space-between;
            gap: 10px;
            flex-wrap: wrap;
            max-width: 340px;
            margin-bottom: 33px;

            .contact-option {
                margin-bottom: 0;

                h2 {
                    margin-bottom: 11px;
                }
            }
        }

        .contact-option {
            margin-bottom: 29px;

            h2 {
                font-size: 1rem;
                font-weight: 600;
                color: var(--color-green);
                display: flex;
                gap: 12px;
                margin-bottom: 23px;
            }

            a, address {
                text-decoration: none;
                color: inherit;
                font-weight: 500;
                font-style: normal;
            }
            a {
                &:hover {
                    transform: translateX(10px);
                    opacity: .5;
                }
            }
        }
    }

    .card-info {
        margin-left: -50px;
        @media (width < 1024px) {
            margin-left: 0;
        }

        h4 {
            margin-bottom: 37px;

            @media (width < 1024px) {
                margin-bottom: 20px;
            }
        }

    }
}

.certificaten {
    padding-block: 221px 180px;
    background-color: #F2F6F5;

    @media (width < 1024px) {
        padding-block: 150px 100px;
    }

    @media (width < 768px) {
        padding-block: 150px 60px;
    }

    .certificaten-image {
        position: fixed;
        right: 100px;
        bottom: 165px;

        @media (width < 767px) {
            display: none;
        }
    }

    .breadcrumbs {
        li, li a {
            color: rgb(from var(--color-secondary) r g b / 0.1);
        }

        li:not(:last-child):after {
            background-color: rgb(from var(--color-secondary) r g b / 0.1);
        }
    }

    .center {
        container-type: inline-size;
    }

    h1 {
        color: rgb(from var(--color-secondary) r g b / 0.05);
        font-size: clamp(2.5rem, 12vw, 11.25rem);
        line-height: 1.37;
        text-transform: uppercase;
        margin-top: -50px;
        margin-left: -12px;

        @media (width < 1024px) {
            margin-top: 0;
            margin-left: 0;
        }
    }

    .certificaten-holder {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 36px 40px;
        flex-wrap: wrap;
        margin-top: 59px;
        z-index: 1;
        position: relative;

        @media (width < 1024px) {
            margin-top: 40px;
        }

        @media (width < 768px) {
            grid-template-columns: 1fr 1fr;
        }

        @media (width < 520px) {
            grid-template-columns: 1fr;
            gap: 30px;
        }
    }

    .certificaten-item {
        text-decoration: none;
        color: inherit;
        background-color: var(--color-white);
        padding: 0;

        &:hover, &:focus {
            .download-btn:before {
                width: 100%;
            }
        }

        .certificaten-item-text {
            display: block;
            padding: 35px 40px 14px;

            @media (width < 768px) {
                padding: 30px;
            }

            .file-info {
                color: rgb(from var(--color-secondary) r g b / 0.15);
            }

            h2 {
                margin-block: 20px 24px;
                color: var(--color-secondary);
                font-weight: 700;
                line-height: 1.0067;
                font-size: 1.875rem;

                @media (width < 1024px) {
                    font-size: 1.3rem;
                }

                @media (width < 768px) {
                    margin-block: 10px 0;
                }
            }
        }
    }

    .download-btn {
        width: 100%;
        background-color: var(--color-green);
        color: var(--color-white);
        font-size: 1.0625rem;
        font-weight: 500;
        text-transform: uppercase;
        transition: all ease-in-out 0.25s;
        display: flex;
        justify-content: center;
        padding-block: 13px 14px;
        padding-inline: 40px;
        position: relative;

        &:before {
            content: '';
            width: 0;
            height: 100%;
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: var(--color-secondary);
            transition: all ease-in-out 0.25s;
        }


        .download-btn-text {
            display: flex;
            align-items: center;
            gap: 12px;
            z-index: 1;
        }
    }
}

.header {
    @media (1024px <= width < 1520px) {
        &.centered {
            padding-inline: 3rem;
        }

        .header-hamburger {
            display: none;
        }

        .header-menu {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: flex-end;
            position: relative;
            top: unset;
            width: unset;
            margin: 0;
            background-color: transparent;
            opacity: 1;
            visibility: visible;

            ul {
                padding-top: 0;
                display: flex;
                flex-wrap: wrap;
                justify-content: flex-end;
                height: auto;
                overflow: unset;
            }

            li {
                border-bottom: 0;
                padding: 15px 0;

                &:not(:last-child) {
                    margin-right: 30px;
                    border-bottom: none;
                }

                &.is-active {
                    a {
                        &:after {
                            content: '';
                            position: absolute;
                            bottom: -44px;
                            left: 0;
                            /*width: 0;*/
                            height: 2px;
                            background-color: var(--color-green);
                            transition: var(--duration);
                            /*opacity: 0;*/
                            /*visibility: hidden;*/
                            width: var(--width);
                            opacity: 1;
                            visibility: visible;
                        }
                    }
                }

                a {
                    /*color: var(--color-secondary);*/
                }

                .header-mobile-arrow {
                    display: none;
                }

                ul {
                    padding: 14px 32px 17px 26px;
                    position: absolute;
                    top: 0;
                    left: 0;
                    background-color: var(--color-white);
                    width: max-content;
                    display: block;
                    opacity: 0;
                    visibility: hidden;
                    transition: var(--duration);
                }
            }
        }
    }

    @media (1024px <= width < 1440px) {
        padding-top: 30px;
        padding-bottom: 28px;

        &.centered {
            padding-inline: 2rem;
        }

        .header-logo, .header-logo1 {
            max-width: 200px;
        }

        .button {
            width: unset;
            margin-left: 12px;
            font-size: 1rem;
            min-height: 42px;
            padding-block: 6px;

            i {
                top: 15px;
            }
        }

        .header-button-search {
            position: unset;
            margin-left: 12px;
            width: 40px;
            height: 40px;
            font-size: 1.25rem;
        }

        .lang-switch {
            margin-left: 12px;

            .active-lang {
                padding: 12px;
                gap: 3px;

                span {
                    display: none;
                }
            }
        }

        .header-menu {
            li {
                border-bottom: 0;
                padding: 15px 0;

                &:not(:last-child) {
                    margin-right: 25px;
                    border-bottom: none;
                }

                a {
                    font-size: .9375rem;
                }
            }
        }
    }
}

.template-ons-verhaal {
    @media (width > 1024px) {
        .contact h2 {
            margin-bottom: 51px;
        }
    }

    .contact-form-button {
        margin-top: 0;
    }
}

.lang-switch {
    background-color: var(--color-dark-green);
    margin-left: 22px;
    position: relative;

    &.lang-switch-mobile {
        display: none;

        @media (width < 1024px) {
            display: block;
            right: 55px;
            top: 0; //-5px;
            background-color: var(--color-green-300);

            .active-lang {
                padding: 10px 18px 5px;
                gap: 3px;

                img {
                    width: 14px;
                    height: 14px;
                }
            }

            a {
                text-decoration: none;
            }
        }
    }

    @media (width < 1024px) {
        display: none;
    }

    &:hover, &:focus, &:focus-within {
        .nav-container {
            display: block;
        }
    }


    .active-lang {
        display: flex;
        flex-direction: column;
        gap: 5px;
        padding: 10px 20px 7px 20px;
        align-items: center;
        justify-content: center;

        img {
            border-radius: 50%;
        }

        span {
            font-size: .625rem;
            /* color: rgb(from var(--color-white) r g b / 0.25); */
            color: var(--color-white);
            text-transform: uppercase;
            font-weight: 500;
        }

    }

    .nav-container {
        top: calc(100%);
        left: 50%;
        transform: translateX(-50%);
        position: absolute;
        display: none;
        padding-top: 16px;
        min-width: 83px;
    }

    nav {
        background-color: var(--color-white);
        height: auto;


        &:before {
            content: '';
            width: 17px;
            height: 14px;
            background-image: url("/assets/templates/images/lang-switch-pointer.svg");
            background-repeat: no-repeat;
            background-position: center;
            position: absolute;
            top: 2px;
            left: 50%;
            transform: translateX(-50%);
        }

        ul {
            display: flex;
            flex-direction: column;
            gap: 10px;
            justify-content: unset;
            flex-wrap: unset;
            height: 100%; //auto;
            list-style: none;

            li {
                padding: 0;
                position: unset;
                height: auto;

                a {
                    display: flex;
                    gap: 10px;
                    align-items: center;
                    color: var(--color-green-300);
                    padding: 12px 18px 11px 16px;
                    position: unset;
                    justify-content: center;
                }
            }

        }
    }
}

.grecaptcha-badge {
    visibility: hidden;
    opacity: 0;
}


.nav-container {
    ul {
        margin: 0;
        min-height: unset;
        padding-block: unset;
    }

    li {
        margin: 0;
        min-height: unset;
        padding-block: unset;
    }
}

.breadcrumbs ul li,
.breadcrumbs ul li a {
    color: #76B72A !important;
}

.template-certificaten .certificaten .center h1 {
    color: #0C5544;
}

.template-certificaten .certificaten .certificaten-holder .file-info {
    color: #76B72A;
}

.template-certificaten .certificaten .center p {
    max-width: 940px;
}

.image-text.center .image-text-holder .image-text-content .image-text-text a {
    margin-top: 32px;
}

.success.center .image-video-wrapper {
    position: relative;
    width: 100%;
    max-width: 560px;
    min-height: 295px;
    margin-top: 34px;

    @media screen and (max-width: 767px) {
        min-height: 160px;
    }
}

.template-projecten .project-block-section {
    h1 {
        color: #0C5544;
    }
}

.template-blog .blog-block h1  {
    color: #0C5544;
}

.actueel-nieuws {
    position: relative;
}

.actueel-nieuws h2 {
    display: block;
    margin-bottom: 48px;

    @media screen and (min-width: 1024px) {
        margin-bottom: 80px !important;
    }
}

.actueel-nieuws .swiper-slide {
    border: 1px solid rgba(12, 85, 68, 0.15);
    height: auto;

    .card-blog-date {
        font-size: 15px;
        color: #76B72A;

        @media screen and (min-width: 1024px) {
            font-size: 24px;
        }
    }

    .card-blog-text {
        font-size: 24px;
        color: #0C5544;

        @media screen and (min-width: 1024px) {
            font-size: 25px;
        }
    }

    p {
        font-size: 16px;

        @media screen and (min-width: 1024px) {
            font-size: 18px;
        }
    }
}

.actueel-nieuws .project-bottom {
    display: flex;
    justify-content: space-between;

    @media screen and (min-width: 1024px) {
        position: absolute;
        top: 140px;
        right: calc((100% - var(--width-medium)) / 2);;
    }

    .swiper-button-prev {
        background-color: #5A9119;
        color: #FFF;
        width: 80px;
        height: 80px;
    }

    .swiper-button-next {
        background-color: #76B72A;
        color: #FFF;
        width: 80px;
        height: 80px;
    }
}

.werken-bij-intro h1 {
    margin-bottom: 40px;
}

.werken-bij-intro .right-side {
    .rte {
        font-weight: 500;

        strong, b {
            font-weight: 900;
        }

        & p {
            &:first-of-type {
                font-size: inherit;
                font-weight: inherit;
                line-height: inherit;
                color: inherit;
            }
        }
    }
}

.simple-title-text {
    padding-top: 160px;
    padding-bottom: 160px;
    background-color: #F2F6F5;

    @media screen and (max-width: 1023px) {
        padding-top: 180px;
        padding-bottom: 80px;
    }

    .vacancy-detail-info-title {
        h2 {
            margin-bottom: 60px;

            span {
                font-weight: 300;
            }
        }
    }

    .vacancy-detail-info-holder {
        .rte {
            & p {
                font-weight: 500;

                &:first-of-type {
                    font-size: inherit;
                    line-height: inherit;
                    color: inherit;
                }
                &:last-child {
                    margin-bottom: 0;
                }

                + ul {
                    margin-top: -40px;
                }
            }
            ul {
                &:last-child {
                    margin-bottom: 0;
                }

                li {
                    font-weight: 500;
                }
            }
        }
    }
}

#search-dialog .crumbs span {
    color: #76B72A !important;
}

.cookies-block {
    width: 100%;
    position: fixed;
    bottom: 0;
    z-index: 999;
    left: 0;
    transition: bottom 2.3s;
    display: flex;
    max-width: 1300px;
    margin: 0 auto;
    left: 50%;
    transform: translate(-50%, 0);

    @media screen and (max-width: 768px) {
        flex-direction: column;
        align-items: center;
    }
}

.cookies-block.is-loading {
    bottom: -300px
}

.left-contentblock {
    width: 77.85%;
    background: #007581;

    @media screen and (max-width: 768px) {
        width: 100%;
    }
}

.cookies-block .right-link {
    background: #074A3A
}

.cookies-block .left-contentblock h2 {
    color: #fff;
    margin-bottom: 20px;
}

.cookies-block .left-contentblock p {
    margin-bottom: 0;
}

.cookies-block .left-contentblock {
    background: rgb(12, 85, 68);
}

.cookies-block .right-link .more-btn:after {
    background: #c21632
}

.cookies-block .right-link .more-btn:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    background: rgb(12, 85, 68);
    background: url(/uploads/assets/uploads/arrow-white.svg) no-repeat center center;
    background-size: 18px;
    border: 1px solid white;
    border-radius: 50%;
}

.cookies-block .right-link .more-btn:focus:after, .cookies-block .right-link .more-btn:hover:after {
    width: 115%;
    background: #c21632
}

.right-link {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    -ms-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    width: 22.15%;
    background: #00535c;
    padding: 15px;

    @media screen and (max-width: 768px) {
        width: 100%;
    }
}

.left-contentblock {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 2.7vh 34px 2.7vh 33px
}

.left-contentblock h2 {
    color: #00535c;
    font-family: 'Titillium Web',sans-serif;
    font-weight: 600;
    font-size: 25px;
    line-height: 1
}

.left-contentblock p {
    padding-bottom: 0;
    font-size: 17.5px;
    color: #fff;
    line-height: 1.2;
    padding-right: 10px
}

.inner-contentblock {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    -ms-align-items: center;
    align-items: center;

    @media screen and (max-width: 768px) {
        flex-direction: column;
        align-items: flex-start;
    }
}

.left-contentblock .more-btn {
    padding: 4px 0 4px 29px
}

.left-contentblock .more-btn span {
    color: #fff
}

.left-contentblock .more-btn:after {
    background: transparent
}

.left-contentblock .more-btn:hover:after {
    background: #cce3e6
}

.right-link .more-btn {
    font-size: 19px;
    color: #fff;
    padding: 4px 0 4px 46px;
    z-index: 10;
    position: relative;
}

.right-link .more-btn span {
    color: #fff;
    margin-left: 12px;
}

.right-link .more-btn:after {
    width: 34px;
    height: 34px;
    background: #007581
}

.right-link .more-btn:focus:after, .right-link .more-btn:hover:after {
    width: 113%;
    background: #007581
}

.right-link .more-btn:before {
    width: 34px;
    height: 34px;
    background: url(/uploads/assets/uploads/arrow-white.svg) no-repeat center center;
    background-size: 18px;
}

.right-link .more-btn {
    text-decoration: none;
    font-weight: 800;
}

.cookies-block .inner-contentblock .more-btn {
    position: relative;
    text-decoration: none;
}

.cookies-block .inner-contentblock .more-btn:before {
    content: "";
    position: absolute;
    top: 8px;
    left: 0;
    background: url(/uploads/assets/uploads/arrow-white.svg) no-repeat center center;
    width: 20px;
    height: 20px;
    background-size: contain !important;
}

.actueel-nieuws .card-blog-image {
    max-height: 318px;
}

#search-results .no-results-available {
    color: var(--color-white);
}