@import url("https://fonts.googleapis.com/css2?family=Host+Grotesk:ital,wght@0,300..800;1,300..800&family=Schibsted+Grotesk:ital,wght@0,400..900;1,400..900&display=swap");

:root {

    --color-0: #238853;
    --color-0-5: #21804e;
    --color-1: #1f794a;
    --color-1-5: #1d7145;
    --color-2: #1b6940;
    --color-3: #175a37;
    --color-4: #134a2d;
    --color-5: #0f3b24;

    --color-6: #0c2f1d;
    --color-7: #092316;
    --color-8: #0a2617;
    --color-8-5: #0a2617;
    --color-9: #0a2617;
    --color-9-5: #0a2617;
    --color-10: #0a2617;

    --color-white: #ffffff;
    --color-off-white: #F6F7F5;
    --color-light-1: #EDF0EC;
    --color-light-2: #E4E8E2;
    --color-light-3: #DBE1D8;
    --color-light-4: #C8D1C5;
    --color-light-5: #B6C2B1;
    --color-mid-green: #A4B39E;

    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 24px;
    --space-lg: 32px;
    --space-xl: 40px;
    --space-2xl: 48px;
    --space-3xl: 64px;
    --space-4xl: 80px;
    --space-5xl: 112px;

    --radius-large: 64px;
    --radius-medium: 48px;
    --radius-small: 24px;

    --shadow-small: 0px 0.69px 2.1px rgba(0, 0, 0, 0.1),
        0px 0.7px 1.4px rgba(0, 0, 0, 0.06);

    --shadow-medium: 0px 2.8px 5.6px -1.4px rgba(0, 0, 0, 0.1),
        0px 1.4px 2.8px -1.4px rgba(0, 0, 0, 0.06);

    --shadow-strong: 0px 8.4px 11.2px -2.8px rgba(0, 0, 0, 0.08),
        0px 2.8px 4.2px -1.4px rgba(0, 0, 0, 0.03);

    --font-heading: "Host Grotesk", sans-serif;
    --font-body: "Schibsted Grotesk", sans-serif;

    --font-size-h1-desktop: 56px;
    --line-height-h1-desktop: 120%;
    --letter-spacing-h1-desktop: 3.5rem;

    --font-size-h2-desktop: 48px;
    --line-height-h2-desktop: 120%;
    --letter-spacing-h2-desktop: 3rem;

    --font-size-h3-desktop: 40px;
    --line-height-h3-desktop: 120%;
    --letter-spacing-h3-desktop: 2.5rem;

    --font-size-h4-desktop: 32px;
    --line-height-h4-desktop: 130%;
    --letter-spacing-h4-desktop: 2rem;

    --font-size-h5-desktop: 24px;
    --line-height-h5-desktop: 140%;
    --letter-spacing-h5-desktop: 1.5rem;

    --font-size-h6-desktop: 20px;
    --line-height-h6-desktop: 140%;
    --letter-spacing-h6-desktop: 1.25rem;

    --font-size-tagline-desktop: 16px;
    --line-height-tagline-desktop: 150%;
    --letter-spacing-tagline-desktop: 1rem;

    --font-size-body-large-desktop: 20px;
    --line-height-body-large-desktop: 150%;
    --letter-spacing-body-large-desktop: 1.25rem;

    --font-size-body-medium-desktop: 18px;
    --line-height-body-medium-desktop: 150%;
    --letter-spacing-body-medium-desktop: 1.125rem;

    --font-size-body-small-desktop: 16px;
    --line-height-body-small-desktop: 150%;
    --letter-spacing-body-small-desktop: 1rem;

    --font-size-body-tiny-desktop: 14px;
    --line-height-body-tiny-desktop: 150%;
    --letter-spacing-body-tiny-desktop: 0.875rem;

    --font-size-body-mini-desktop: 12px;
    --line-height-body-mini-desktop: 150%;
    --letter-spacing-body-mini-desktop: 0.75rem;

    --font-size-h1-mobile: 40px;
    --line-height-h1-mobile: 120%;
    --letter-spacing-h1-mobile: 2.5rem;

    --font-size-h2-mobile: 36px;
    --line-height-h2-mobile: 120%;
    --letter-spacing-h2-mobile: 2.25rem;

    --font-size-h3-mobile: 32px;
    --line-height-h3-mobile: 120%;
    --letter-spacing-h3-mobile: 2rem;

    --font-size-h4-mobile: 24px;
    --line-height-h4-mobile: 140%;
    --letter-spacing-h4-mobile: 1.5rem;

    --font-size-h5-mobile: 20px;
    --line-height-h5-mobile: 140%;
    --letter-spacing-h5-mobile: 1.25rem;

    --font-size-h6-mobile: 18px;
    --line-height-h6-mobile: 140%;
    --letter-spacing-h6-mobile: 1.125rem;

    --font-size-tagline-mobile: 16px;
    --line-height-tagline-mobile: 150%;
    --letter-spacing-tagline-mobile: 1rem;

    --font-size-body-large-mobile: 18px;
    --line-height-body-large-mobile: 150%;
    --letter-spacing-body-large-mobile: 1.125rem;

    --font-size-body-medium-mobile: 16px;
    --line-height-body-medium-mobile: 150%;
    --letter-spacing-body-medium-mobile: 1rem;

    --font-size-body-small-mobile: 14px;
    --line-height-body-small-mobile: 150%;
    --letter-spacing-body-small-mobile: 0.875rem;

    --font-size-body-tiny-mobile: 12px;
    --line-height-body-tiny-mobile: 150%;
    --letter-spacing-body-tiny-mobile: 0.75rem;
}

body {
    font-family: var(--font-body);
    font-size: var(--font-size-body-medium-desktop);
    line-height: var(--line-height-body-medium-desktop);
    color: var(--color-8);
    overflow-x: hidden;
}

* {
    box-sizing: border-box;
    outline: none;
}

p {
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 0.5px;
    margin: 0;
    color: #4c5551;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
    font-family: var(--font-heading);
    margin: 0;
}

h1,
.h1 {
    font-weight: bold;
    font-size: var(--font-size-h1-desktop);
    line-height: var(--line-height-h1-desktop);
    letter-spacing: 0.5px;
}

h2,
.h2 {
    font-weight: bold;
    font-size: var(--font-size-h2-desktop);
    line-height: var(--line-height-h2-desktop);
    letter-spacing: 0.5px;
}

h3,
.h3 {
    font-weight: bold;
    font-size: var(--font-size-h3-desktop);
    line-height: var(--line-height-h3-desktop);
    letter-spacing: 0.5px;
}

h4,
.h4 {
    font-weight: bold;
    font-size: var(--font-size-h4-desktop);
    line-height: var(--line-height-h4-desktop);
    letter-spacing: 0.5px;
}

h5,
.h5 {
    font-weight: 600;
    font-size: var(--font-size-h5-desktop);
    line-height: var(--line-height-h5-desktop);
    letter-spacing: 0.5px;
}

h6,
.h6 {
    font-weight: 600;
    font-size: var(--font-size-h6-desktop);
    line-height: var(--line-height-h6-desktop);
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    body {
        font-size: var(--font-size-body-medium-mobile);
        line-height: var(--line-height-body-medium-mobile);
    }

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

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

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

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

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

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

p.lg {
    font-size: 20px;
    line-height: 150%;
    letter-spacing: 0.5px;
}

p.md {
    font-size: 18px;
    line-height: 150%;
    letter-spacing: 0.5px;
}

p.sm {
    font-size: 14px;
    line-height: 150%;
    letter-spacing: 0.5px;
}

.text-tiny {
    font-size: 12px;
    line-height: 150%;
    letter-spacing: 0.5px;
}

.text-tagline {
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.text-bold,
.font-bold {
    font-weight: 700;
}

.text-semibold,
.font-semibold {
    font-weight: 600;
}

.text-medium-weight,
.font-medium {
    font-weight: 500;
}

.text-regular,
.font-regular {
    font-weight: 400;
}

.text-light,
.font-light {
    font-weight: 300;
}

@media (max-width: 768px) {
    .text-large {
        font-size: 18px;
    }

    .text-medium {
        font-size: 16px;
    }

    .text-normal,
    .text-regular {
        font-size: 14px;
    }

    .text-small {
        font-size: 12px;
    }

    .text-tagline {
        font-size: 14px;
    }
}

label.error {
    display: none !important;
}

.error {
    border-color: red !important;
}

.valid {
    border-color: green !important;
}

button,
a {
    cursor: pointer;
    transition: 0.3s;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

p {
    margin-top: 0;
}

.flex {
    display: flex;
}

.row.flex::before,
.row.flex::after {
    display: none;
}

.flex.center {
    align-items: center;
}

.flex-col {
    display: flex;
    flex-direction: column;
}

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

.flex-between {
    display: flex;
    justify-content: space-between;
}

.flex-around {
    display: flex;
    justify-content: space-around;
}

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

.items-start {
    align-items: flex-start;
}

.items-end {
    align-items: flex-end;
}

.justify-start {
    justify-content: flex-start;
}

.justify-end {
    justify-content: flex-end;
}

.gap-xs {
    gap: var(--space-xs);
}

.gap-sm {
    gap: var(--space-sm);
}

.gap-md {
    gap: var(--space-md);
}

.gap-lg {
    gap: var(--space-lg);
}

.gap-xl {
    gap: var(--space-xl);
}

.gap-2xl {
    gap: var(--space-2xl);
}

.p-0 {
    padding: 0;
}

.m-0 {
    margin: 0;
}

.m-auto {
    margin: 0 auto;
}

.rounded-sm {
    border-radius: var(--radius-small);
}

.rounded-md {
    border-radius: var(--radius-medium);
}

.rounded-lg {
    border-radius: var(--radius-large);
}

.rounded-full {
    border-radius: 50%;
}

.box {
    margin-bottom: -30px;
}

.box>div {
    margin-bottom: 30px;
}

.container {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    max-width: 1352px;
    padding: 0 20px;
}

.btn {
    background: none;
    border: none;
    padding: 0;
    transition: 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 12px;
    border-radius: 100px;
    padding-left: 32px;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 21px;
    cursor: pointer;
    flex: none;
    letter-spacing: 0.03em;
}

.btn.primary {
    background-color: var(--color-4);
    color: var(--color-light-1);
}

.btn [class*="material-symbols"] {
    flex: none;
}

.btn.primary [class*="material-symbols"] {
    width: 40px;
    height: 40px;
    background-color: var(--color-light-1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--color-5);
    transition: .3s;
    margin: 0;
}

.btn.primary:hover {
    background-color: var(--color-6);
}

.btn.primary:hover [class*="material-symbols"] {
    color: var(--color-8);
}

.btn.primary.dark {
    background-color: var(--color-light-2);
    color: var(--color-5);
}

.btn.primary.dark [class*="material-symbols"] {
    background-color: var(--color-4);
    color: var(--color-light-1);
}

.btn.primary.dark:hover {
    background-color: var(--color-5);
    color: var(--color-white);
}

.btn.secondary {
    background-color: transparent;
    color: var(--color-6);
    border: 2px solid var(--color-light-3);
}

.btn.secondary [class*="material-symbols"] {
    width: 40px;
    height: 40px;
    background-color: var(--color-light-3);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--color-6);
    margin: 0;
}

.btn.secondary:hover {
    background-color: var(--color-5);
    border-color: var(--color-5);
    color: var(--color-white);
}

.btn.secondary:hover [class*="material-symbols"] {
    color: var(--color-white);
    background-color: var(--color-6);
}

.btn.secondary.dark {
    background-color: transparent;
    color: var(--color-light-1);
    border-color: var(--color-mid-green);
}

.btn.secondary.dark [class*="material-symbols"] {
    color: var(--color-light-1);
    background-color: var(--color-6);
}

.btn.secondary.dark:hover {
    background-color: var(--color-white);
    border-color: var(--color-white);
    color: var(--color-8);
}

.btn.secondary.dark:hover [class*="material-symbols"] {
    color: var(--color-6);
    background-color: var(--color-light-5);
}

.btn.tertiary {
    background-color: transparent;
    color: var(--color-8);
    opacity: .7;
}

.btn.tertiary [class*="material-symbols"] {
    width: auto !important;
    height: auto !important;
    background-color: transparent;
    border-radius: 0;
    color: inherit;
}

.btn.tertiary:hover {
    color: var(--color-5);
    opacity: 1;
}

.btn.tertiary:hover [class*="material-symbols"] {
    color: var(--color-5);
}

.btn.tertiary.dark {
    color: var(--color-light-3);
}

.btn.tertiary.dark [class*="material-symbols"] {
    color: inherit;
}

.btn.tertiary.dark:hover {
    opacity: 1;
    color: var(--color-light-3);
}

.btn.md {
    padding: 10px;
    padding-left: 24px;
    font-size: 19px;
}

.btn.md [class*="material-symbols"] {
    width: 36px;
    height: 36px;
    font-size: 20px;
}

.btn.sm {
    padding: 8px;
    padding-left: 20px;
    font-size: 16px;
}

.btn.sm [class*="material-symbols"] {
    width: 32px;
    height: 32px;
    font-size: 18px;
}

.btn.xs {
    padding: 6px;
    padding-left: 16px;
    font-size: 14px;
    gap: 10px;
}

.btn.xs [class*="material-symbols"] {
    width: 28px;
    height: 28px;
    font-size: 16px;
}

.btn.tertiary.sm {
    padding-left: 0;
    padding-right: 0;
}

.btn.tertiary.xs {
    padding-left: 0;
    padding-right: 0;
}

.btn.primary.dark:hover [class*="material-symbols"] {
    color: var(--color-4);
    background-color: var(--color-white);
}

.btn.link {
    padding: 0;
}

.btn.link [class*="material-symbols"] {
    width: auto !important;
    height: auto !important;
    border-radius: 0;
}

.section {
    position: relative;
    padding: 80px 0;
}

.intro {
    padding-top: 224px;
    padding-bottom: 145px;
    position: relative;
    overflow: hidden;
    min-height: 89dvh;
    display: flex;
    align-items: flex-end;
}

.intro .container {
    position: relative;
    z-index: 10;
}

.intro_bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
}

.intro_bg::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(1, 9, 5, 0.55);
    z-index: 0;
}

.intro_flex {
    display: flex;
    align-items: flex-end;
}

.intro_video {
    width: 315px;
    flex: none;
    height: 177px;
    border-radius: 18px;
    background-position: center;
    background-size: cover;
    background-color: rgba(0, 0, 0, .5);
    position: relative;
    overflow: hidden;
}

.intro_video::before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url(../img/play.svg);
    background-size: 44px;
    transition: 0.3s;
}

.intro_text {
    max-width: 752px;
    padding-bottom: 95px;
}

.intro_text .h1 {
    color: var(--color-white);
    margin-bottom: 24px;
}

.intro_text p {
    color: var(--color-white);
    margin-bottom: 54px;
    max-width: 560px;
}

.intro_bg::after {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(270deg, rgba(0, 0, 0, 0) -6.74%, rgba(0, 0, 0, 0.48) 100%);
    opacity: .6;
    z-index: 10;
}

.intro_video:hover::before {
    background-size: 40px;
}

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

.logos .swiper {
    margin-top: 48px;
}

.customer_logo img {
    max-width: 100%;
    height: auto;
}

.label_wrp {
    margin-bottom: 24px;
}

.label_wrp span {
    line-height: 1;
    padding: 16px 24px;
    text-transform: uppercase;
    font-size: 15px;
    color: var(--color-5);
    font-family: 'Host Grotesk', sans-serif;
    background-color: var(--color-light-2);
    border-radius: 100px;
    display: inline-flex;
    letter-spacing: 0.04em;
    font-weight: 600;
}

.services_list {
    margin-top: 80px;
    max-width: 1090px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-wrap: wrap;
}

.services_list_item {
    text-align: left;
}

a.services_list_item:hover .h4 {
    color: var(--color-9);
}

.services_list .services_list_item {
    width: calc(50% - 16px);
}

.services_list_img {
    margin-bottom: 32px;
    height: 325px;
    overflow: hidden;
    border-radius: var(--radius-small);
}

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

.services_list_item .h4 {
    color: var(--color-5);
    margin-bottom: 16px;
}

.services_list_item p {}

.reviews_swiper {
    margin-top: 64px;
    margin-bottom: 48px;
}

.reviews_swiper:last-child {
    margin-bottom: 0;
}

.reset_height .swiper-slide {
    height: auto;
}

.review_card {
    height: 100%;
    position: relative;
    background-color: var(--color-off-white);
    padding: 48px;
    display: flex;
}

.review_logo {
    height: 104px;
    margin-bottom: 32px;
}

.review_card .h5 {
    margin-bottom: 13px;
}

.review_card>p {
    flex: 1;
    margin-bottom: 24px;
}

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

.benefits_flex {
    margin-top: 80px;
    display: flex;
    flex-wrap: wrap;
}

.benefits_part {
    width: calc(50% - 16px);
    display: flex;
}

.benefit_card {
    overflow: hidden;
    background-color: var(--color-white);
    padding: 48px;
    padding-bottom: 0;
    flex: 1;
    display: flex;
    box-shadow: 0px 8px 24px rgba(45, 54, 41, 0.04);
    align-items: flex-start;
}

.benefit_card .material-symbols-outlined {
    font-size: 46px;
    display: inline-flex;
    margin-bottom: 14px;
}

.benefit_card .h4,
.benefit_card .h3 {
    margin-bottom: 16px;
}

.benefit_left .benefit_card_img {
    border-radius: 48px;
    overflow: hidden;
    margin-top: 54px;
    margin-left: -48px;
    margin-right: -48px;
    flex: 1;
    width: calc(100% + 96px);
}

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

.benefit_right>.benefit_card {
    padding: 40px;
    padding-right: 360px;
    position: relative;
    border-radius: 24px;
    margin-bottom: 36px;
}

.benefit_right>.benefit_card .benefit_card_img {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 302px;
    border-radius: 24px;
    overflow: hidden;
}

.benefit_right>.benefit_card .benefit_card_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.benefit_card .h5 {
    margin-bottom: 16px;
}

.benefit_right .benefit_flex {
    display: flex;
    gap: 32px;
    flex: 1;
}

.benefit_right .benefit_flex .benefit_card {
    padding: 40px;
    border-radius: 24px;
}

.benefits_inline {
    padding-top: 112px;
    padding-bottom: 144px;
    background-color: var(--color-7);
}

.benefits_inline .label_wrp {
    margin-bottom: 32px;
}

.benefits_inline .label_wrp span {
    color: var(--color-white);
    background-color: var(--color-5);
}

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

.benefits_inline_flex {
    display: flex;
}

.benefits_inline_flex_heading {
    flex: 0 0 30%;
}

.benefits_inline_flex_items {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 64px 48px;
}

.benefits_inline_flex_heading .h3 {
    font-size: 32px;
    font-weight: 500;
    position: sticky;
    top: 110px;
}

.benefits_inline_flex_items_item {
    width: calc(50% - 25px);
}

.benefits_inline_flex_items_item .h5 {
    color: var(--color-off-white);
    margin-bottom: 24px;
}

.benefits_inline_flex_items_item p {
    color: var(--color-light-5);
}

p.after_h2 {
    margin-top: 24px;
    padding-left: 0;
}

.benefit_right>.benefit_card:last-child {
    margin-bottom: 0;
}

.benefit_right>.benefit_card.no_img {
    padding: 48px;
    flex: 1;
    justify-content: center;
}

.benefit_card.bg_dark {
    background-color: var(--color-6);
}

.benefit_card.bg_dark * {
    color: var(--color-white);
}

.benefit_card .btn {
    margin-top: 40px;
}

.benefit_label {
    margin-bottom: 24px;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 14px;
    line-height: 1;
    font-family: 'Host Grotesk', sans-serif;
    letter-spacing: 0.06em;
    font-weight: 400;
}

.heading .btn {
    margin-top: 50px;
}

.service_specification {
    margin-top: 2px;
    background-color: var(--color-off-white);
}

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

.service_specification .cards_flex {
    margin-top: 85px;
}

.cards_flex {
    display: flex;
    flex-wrap: wrap;
}

.card {
    background-color: var(--color-white);
    display: flex;
    padding: 32px;
    position: relative;
    top: 0;
    transition: .3s;
    padding-bottom: 50px;
    box-shadow: 0px 8px 24px rgba(45, 54, 41, 0.04);
}

.card:hover {
    top: -4px;
}

.card_img {
    height: 216px;
    margin-bottom: 32px;
    width: 100%;
    flex: none;
    overflow: hidden;
}

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

.card>p {
    margin-top: 6px;
    padding: 0 15px;
}

.card .h5 {
    color: var(--color-6);
    padding: 0 15px;
}

.cards_flex .card {
    min-width: calc(33.33% - 22px);
    flex: 1;
    max-width: calc(50% - 16px);
}

.reference_section {
    padding: 112px 0;
    width: 100dvw;
    overflow: hidden;
}

.reference_flex {
    display: flex;
    gap: 80px;
    align-items: center;
}

.reference_flex .heading {
    flex: none;
    width: 25%;
    padding-bottom: 90px;
}

.reference_photos {
    flex: 1;
}

.reference_section .heading .h2 {
    font-size: 39px;
}

.reference_item_photo {
    display: flex;
    position: relative;
    width: 100%;
    overflow: hidden;
    background-color: #f2f2f2;
}

.reference_item_photo::before {
    content: "";
    display: block;
    padding-top: 74%;
}

.reference_section .reference_item_photo::before {
    padding-top: 60%;
}

.reference_item_photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    left: 0;
    top: 0;
}

.controls_custom {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 48px;
}

.carouse_controls {
    display: flex;
    align-items: center;
    -ms-user-select: none;
    -webkit-user-select: none;
    user-select: none;
}

.carouse_controls div {
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: .3s;
}

.carouse_controls div:hover {
    opacity: .6;
}

.swiper-pagination {
    margin: 0 !important;
    position: relative;
    bottom: 0 !important;
    margin: 0 !important;
    top: 0 !important;
    width: auto !important;
    flex: none !important;
    display: flex;
}

.swiper-pagination .swiper-pagination-bullet {
    margin: 0 !important;
    background-color: var(--color-light-4);
    opacity: 1;
    width: 8px !important;
    height: 8px !important;
}

span.swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: var(--color-4);
}

.map_wrp {
    margin-top: 80px;
    overflow: hidden;
}

.map_benefits {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 55px 50px;
    background-color: var(--color-6);
    gap: 80px;
}

.map_benefits .h3 {
    color: var(--color-light-2);
    margin-bottom: 5px;
}

.map_benefits p {
    color: var(--color-light-2);
}

.map_el {
    height: 600px;
    position: relative;
    overflow: hidden;
    min-height: 500px;
}

.map_inner {
    height: 100%;
    position: relative;
    width: 1312px;
}

.map_zoom {
    position: absolute;
    right: 33px;
    bottom: 33px;
    z-index: 100;
    display: flex;
    align-items: center;
    gap: 13px;
}

.map_zoom div {
    cursor: pointer;
    display: flex;
    align-items: center;
}

.map_content_item {
    position: absolute;
    top: 109px !important;
    right: 110px;
    display: none;
    padding: 24px;
    width: 317px;
}

.map_content_item>img {
    max-width: 100%;
    display: block;
    margin: 0 auto;
    margin-bottom: 24px;
}

.map_content_item>h6 {
    margin-bottom: 24px;
    text-align: center;
}

.map_content_item .card_img {
    height: 145px;
    margin: 0;
}

.map_el {
    user-select: none;
    touch-action: none;
}

.pin {
    cursor: pointer;
    transition: 0.3s;
    z-index: 10;
    position: absolute;
    opacity: .6;
}

.pin.active {
    opacity: 1;
}

.ebook_wrp {
    flex-direction: row;
    top: 0 !important;
    padding: 0;
}

.ebook_img {
    flex: none;
    border-radius: 48px;
    overflow: hidden;
    width: 520px;
    min-height: 390px;
}

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

.ebook_text {
    flex: 1;
    padding: 48px;
}

.ebook_form {
    margin-top: 42px;
}

.ebook_form_flex {
    max-width: 514px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

input,
textarea {
    padding: 0;
    height: auto;
    border: none;
    background: none;
    height: 48px;
    background-color: var(--color-off-white);
    padding: 0 16px;
    border-radius: 16px;
    font-size: 16px;
    color: var(--color-7);
    font-weight: 300;
}

.ebook_form_flex .btn {
    flex: none;
}

.ebook_form_flex input {
    flex: 1;
}

input::placeholder {
    color: var(--color-7);
}

p.pressing {
    margin: 0;
    margin-top: 17px;
    cursor: pointer;
    transition: .3s;
    padding: 0;
    padding-left: 34px;
    font-size: 13px;
    color: var(--color-6);
    position: relative;
}

p.pressing::before {
    box-sizing: border-box;
    content: '';
    display: block;
    position: absolute;
    border: 2px solid #475143;
    width: 20px;
    height: 20px;
    border-radius: 6px;
    top: -1px;
    background-color: var(--color-off-white);
    left: 6px;
    transition: .3s;
}

p.pressing span {
    text-decoration: underline;
}

p.pressing span:hover {
    text-decoration: none;
}

p.pressing.pressed::before {
    border-width: 6px;
    border-color: #134a2e;
}

[disabled] {
    pointer-events: none;
    opacity: .7;
}

.ebook_text .after_h2 {
    max-width: 592px;
}

.banner_wrp {
    max-width: 1120px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    background-color: var(--color-5);
    border-radius: 48px;
    padding: 55px 30px;
}

.banner_wrp h2 {
    color: var(--color-off-white);
    margin-bottom: 15px;
}

.banner_wrp>p {
    margin-bottom: 32px;
    color: var(--color-off-white);
    font-weight: 300;
}

.heading.spread {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
}

.case_studies_list {
    display: flex;
    flex-wrap: wrap;
    gap: 64px;
    margin-top: 70px;
}

.case_study {
    width: calc(50% - 33px);
    display: flex;
    transition: .3s;
    text-decoration: none;
    gap: 32px;
}

.case_study_img {
    width: 196px;
    min-height: 196px;
    overflow: hidden;
    border-radius: 24px;
    flex: none;
}

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

.case_study_text {
    flex: 1;
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
}

.case_study_text>span:nth-child(1) {
    font-size: 14px;
    color: var(--color-6);
    margin-bottom: 15px;
    text-transform: uppercase;
    font-weight: 300;
    font-family: 'Host Grotesk', sans-serif;
    letter-spacing: 0.05em;
}

.case_study_text .h6 {
    flex: 1;
    color: var(--color-10);
}

.case_study .btn span {
    left: 0;
    position: relative;
    transition: .3s;
}

.case_study:hover .btn span {
    left: 2px;
}

.case_study:hover .btn {
    opacity: 1;
}

.footer {
    padding-top: 80px;
    padding-bottom: 112px;
    background-color: #06180E;
}

.footer_contact {
    display: flex;
    align-items: center;
    margin-top: 25px;
    padding-top: 32px;
    border-top: 1px solid var(--color-7);
}

.footer_contact p {
    margin: 0;
    font-size: 12px;
    color: #DBE1E2;
}

.footer_contact ul {
    display: flex;
    align-items: center;
    gap: 24px;
}

.footer_contact ul a {
    font-size: 12px;
    color: var(--color-light-3);
    text-decoration: none;
}

.footer_contact ul a:hover {
    text-decoration: underline;
}

.footer_flex {
    display: flex;
    align-items: flex-start;
    gap: 32px;
}

.footer input {
    background-color: var(--color-7);
    color: var(--color-light-4);
}

.footer input::placeholder {
    color: var(--color-light-4);
}

.footer_form_over {
    margin-bottom: 18px;
    color: #EDF0EC;
    font-size: 20px;
}

.footer .ebook_form_flex {
    width: 100%;
    max-width: 512px;
    flex-wrap: wrap;
}

.footer_form {
    width: 100%;
    max-width: 395px;
}

.footer p.pressing {
    color: var(--color-light-4);
}

.footer_nav h6 {
    color: var(--color-light-1);
    margin-bottom: 16px;
}

.footer_nav ul {
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-decoration: none;
}

.footer_nav ul a {
    font-size: 14px;
    color: var(--color-light-3);
    display: flex;
    line-height: 1.2;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 7px;
}

.footer_nav ul a:hover {
    text-decoration: underline;
}

header {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    padding: 24px 40px;
    transition: .3s;
}

.header_inner {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid var(--color-white);
    box-shadow: 0px 4px 14px rgba(134, 150, 136, 0.15);
    border-radius: 27px;
    backdrop-filter: blur(7px);
    padding: 12px 15px;
    gap: 24px;
    transition: .3s;
}

.logo {
    display: flex;
    align-items: center;
}

.flex-1 {
    flex: 1;
}

.header_list {
    display: flex;
    align-items: center;
}

.header_list a {
    text-decoration: none;
    padding: 8px 16px;
    transition: .3s;
    font-size: 16px;
    color: #2E2E2E;
    border-radius: 100px;
    font-family: 'Schibsted Grotesk', sans-serif;
    line-height: 1;
    display: flex;
    justify-content: center;
    text-align: center;
}

.header_list a:hover {
    background-color: #F2F2F2;
}

.header_contact {
    display: flex;
    align-items: center;
    gap: 24px;
}

.lang_switcher {
    display: flex;
    align-items: center;
}

.lang_switcher li::after {
    content: '';
    height: 17px;
    width: 1px;
    background: #2E2E2E;
    display: block;
    margin: 0 8px;
    opacity: .2;
}

.lang_switcher li:last-child::after {
    display: none;
}

.lang_switcher li {
    display: flex;
    align-items: center;
}

.lang_switcher li a {
    color: var(--color-6);
    font-weight: 400;
    text-decoration: none;
}

.lang_switcher li.active a {
    font-weight: bold;
}

.fixed_elems .header {
    padding: 0;
}

.fixed_elems .header_inner {
    border-radius: 0px;
}

.heading.with_h1.spread>div {
    width: 100%;
    max-width: 650px;
}

.heading.with_h1.spread {
    flex-wrap: nowrap;
    gap: 50px;
    align-items: flex-start;
}

.heading_intro {
    background-color: var(--color-light-1);
    padding-top: 180px;
    padding-bottom: 64px;
}

.heading.with_h1.spread .after_h2 {
    margin-top: 84px;
    max-width: 600px;
}

.heading.with_h1.spread .after_h2.mt0 {
    margin-top: 14px;
}

.heading_intro_img {
    margin-top: 65px;
    display: flex;
    overflow: hidden;
    position: relative;
    border-radius: 48px;
    height: 340px;
}

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

.heading_intro_img::before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.25) 100%), linear-gradient(0deg, rgba(9, 35, 22, 0.12), rgba(9, 35, 22, 0.12));
}

.heading.dark .h2 {
    color: var(--color-white);
}

.heading.dark .label_wrp span {
    background-color: #2D403B;
    color: var(--color-white);
}

.benefits_inline_flex_list {
    display: flex;
    flex-wrap: wrap;
    gap: 104px 48px;
    margin-top: 80px;
}

.benefits_inline_flex_list .benefit_inline {
    width: calc(33.3% - 33px);
    text-align: center;
}

.benefit_inline span {
    margin-bottom: 24px;
    font-size: 60px;
    color: var(--color-mid-green);
    display: inline-flex;
    width: 64px;
    height: 64px;
    align-items: center;
}

.benefit_inline .h5 {
    margin-bottom: 16px;
    color: var(--color-white);
}

.benefit_inline p {
    color: var(--color-light-4);
}

.compare_swiper {
    margin-top: 80px;
}

.image-compare.icv {
    border-radius: 35px;
    width: 100%;
}

.comapre_text {
    margin-top: 24px;
    text-align: center;
}

.icv__theme-wrapper>div {
    opacity: 0;
}

.icv__theme-wrapper::before {
    content: '';
    background-image: url(../img/compare_arrow.svg);
    width: 40px;
    height: 40px;
    flex: none;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
}

.icv__theme-wrapper {
    opacity: 1;
    z-index: 10;
}

.compare_el {
    border-radius: 35px;
    display: flex;
    width: calc(100% - 220px);
    position: relative;
    margin: 0 auto;
}

.compare_el::before {
    content: attr(data-before);
    display: inline-flex;
    pointer-events: none;
    position: absolute;
    top: 32px;
    left: 28px;
    z-index: 1000;
    padding: 14px 20px;
    background-color: rgba(6, 24, 14, 0.27);
    backdrop-filter: blur(15px);
    color: var(--color-white);
    border-radius: 100px;
    line-height: 1;
    font-size: 12px;
    text-transform: uppercase;
    font-family: 'Host Grotesk', sans-serif;
    letter-spacing: 0.06em;
    font-weight: 400;
}

.compare_el::after {
    content: attr(data-after);
    display: inline-flex;
    pointer-events: none;
    position: absolute;
    top: 32px;
    right: 28px;
    z-index: 1000;
    padding: 14px 20px;
    background-color: rgba(6, 24, 14, 0.27);
    backdrop-filter: blur(15px);
    color: var(--color-white);
    border-radius: 100px;
    line-height: 1;
    font-size: 12px;
    text-transform: uppercase;
    font-family: 'Host Grotesk', sans-serif;
    letter-spacing: 0.06em;
    font-weight: 400;
}

.compare_swiper .carouse_controls {
    pointer-events: none;
    position: absolute;
    justify-content: space-between;
    width: 100%;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
}

.compare_swiper .carouse_controls div {
    pointer-events: all;
}

.compare_swiper .swiper-pagination {
    margin-top: 40px !important;
    justify-content: center;
}

.reminder_wrp {
    max-width: 1216px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px 48px;
    padding-bottom: 64px;
    border-radius: 48px;
    background-color: var(--color-off-white);
    gap: 70px;
}

.reminder_wrp .btn {
    flex: none;
}

.reminder_wrp p.after_h2 {
    margin-top: 12px;
}

.steps_wrp_inner {
    max-width: 880px;
    margin: 0 auto;
    width: 100%;
}

.steps_wrp_inner .heading {
    margin-bottom: 80px;
}

.steps_flow {
    gap: 50px;
    display: flex;
    position: relative;
    padding-left: 64px;
}

.step_item {
    display: flex;
    gap: 32px;
    position: relative;
    justify-content: space-between;
}

.step_item_img {
    width: 308px;
    height: 192px;
    flex: none;
    border-radius: 24px;
    overflow: hidden;
    display: flex;
}

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

.step_item_text {
    padding-top: 12px;
    max-width: 450px;
}

.steps_flow::before {
    content: '';
    width: 3px;
    display: block;
    position: absolute;
    height: 100%;
    background-color: var(--color-light-2);
    left: 0;
    top: 0;
}

.step_item::before {
    content: '';
    display: block;
    position: absolute;
    left: -78px;
    top: 20px;
    width: 12px;
    height: 12px;
    background-color: var(--color-5);
    border-radius: 50%;
    border: 10px solid var(--color-white);
}

.step_item_text p {
    margin-top: 8px;
}

.step_item_text .btn {
    margin-top: 16px;
}

.flex_half {
    display: flex;
    gap: 32px;
}

.flex_half>div {
    flex: 1;
}

.partner_cards {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.partner_card {
    min-width: calc(50% - 16px);
    background-color: var(--color-off-white);
    padding: 32px;
    border-radius: 24px;
    flex: 1;
}

.partner_card .lg {
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--color-8);
}

.banner_full {
    padding: 24px;
    overflow: hidden;
}

.banner_full_wrp {
    position: relative;
    border-radius: 48px;
    overflow: hidden;
    padding-top: 108px;
    padding-bottom: 130px;
}

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

.banner_img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

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

.banner_img::before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 28.57%, rgba(0, 0, 0, 0.22) 100%), linear-gradient(0deg, rgba(1, 9, 5, 0.6), rgba(1, 9, 5, 0.6));
}

.banner_full_wrp .heading {
    position: relative;
    z-index: 100;
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

.heading.dark .after_h2 {
    color: var(--color-white);
}

.product_card_section {
    padding: 48px 0;
}

.product_card_wrp {
    padding: 95px 80px;
    border-radius: 64px;
    background-color: #F4F5F3;
    padding-bottom: 64px;
}

.product_card_wrp .flex_half {
    margin-bottom: 32px;
}

.product_card_wrp .flex_half:last-child {
    margin: 0;
}

.product_card_wrp .flex_half img {
    max-width: 100%;
    height: auto;
}

.card_simple {
    padding: 40px 48px;
    background-color: var(--color-white);
    height: 100%;
    border-radius: 24px;
}

.card_simple span {
    font-size: 14px;
    color: var(--color-6);
    text-transform: uppercase;
}

.card_simple .h5 {
    margin: 12px 0;
}

.tech_params_section {
    padding-top: 50px;
    padding-bottom: 90px;
}

.tech_params_section h6 {
    margin-bottom: 24px;
}

.tech_params_list {
    display: flex;
    flex-wrap: wrap;
    gap: 0 32px;
}

.tech_params_list>div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: calc(50% - 16px);
    padding: 15px 0;
    border-bottom: 1px solid #d3d3d3;
    font-size: 14px;
    line-height: 1.2;
}

.tech_params_list>div span:nth-child(2) {
    color: var(--color-6);
    font-weight: bold;
}

.reference_images {
    display: flex;
    gap: 15px;
    justify-content: center;
    width: calc(100% - 30px);
    margin: 0 auto;
    margin-top: 70px;
}

.reference_image {
    border-radius: 60px;
    overflow: hidden;
    flex: 1;
    height: 260px;
    position: relative;
}

.reference_image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transform: scale(1.3);
}

.reference_images_section {
    overflow: hidden;
    padding-bottom: 110px;
}

.reference_image:nth-child(1) {
    transform: rotate(-7deg);
    transform-origin: bottom right;
}

.reference_image:nth-child(3) {
    transform: rotate(8deg);
    transform-origin: bottom left;
}

.flex_half.lg {
    gap: 72px;
}

.product_preview_img {
    overflow: hidden;
    border-radius: 48px;
    display: flex;
}

.product_preview_img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.product_preview .flex_half.lg {
    align-items: center;
}

.product_preview .flex_half .flex_half {
    margin: 50px 0;
}

.product_preview .flex_half .flex_half p {
    margin-top: 10px;
}

.page_heading {
    padding-top: 180px;
    padding-bottom: 112px;
    background-color: var(--color-off-white);
}

.reference_preview_section {
    padding-bottom: 60px;
}

.review_card_preview {
    position: relative;
    padding-left: 185px;
}

.review_card_preview img {
    position: absolute;
    max-width: 160px;
    left: 0;
    top: 0;
    height: auto;
    top: 50%;
    transform: translateY(-50%);
}

.review_card_preview .lg {
    margin-top: 4px;
    margin-bottom: 20px;
}

.reference_preview_section .card_simple {
    background-color: var(--color-off-white);
}

.reference_preview_section .card_simple>p:nth-child(1) {
    margin-bottom: 10px;
    font-size: 18px;
    color: var(--color-8);
}

.review_gallery {
    position: relative;
    display: flex;
    overflow: hidden;
    border-radius: 24px;

}

.review_gallery::before {
    content: '';
    display: block;
    padding-top: 63%;
}

.review_gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 0;
    left: 0;
}

.review_gallery span {
    position: absolute;
    right: 24px;
    bottom: 24px;
    padding: 12px 16px;
    line-height: 1.1;
    border-radius: 100px;
    font-size: 11px;
    text-transform: uppercase;
    font-weight: bold;
    background-color: rgba(130, 139, 134, .5);
    color: var(--color-white);
    backdrop-filter: blur(3px);
}

.reference_preview_section .controls_custom {
    margin-top: 24px;
}

.reference_preview_section .swiper {
    margin-top: 47px;
}

.contact_section {
    padding-top: 160px;
    background-color: var(--color-light-1);
}

.contact_wrp_all {
    position: relative;
    display: flex;
    overflow: hidden;
    border-radius: 48px;
    background-color: var(--color-white);
}

.contact_info_img img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.contact_info_part {
    position: relative;
    flex: none;
    width: 45%;
    display: flex;
    justify-content: space-between;
    padding: 55px 40px;
    padding-bottom: 40px;
    gap: 40px;
}

.contact_info_text {
    position: relative;
    z-index: 10;
}

.contact_form_part {
    flex: 1;
}

.contact_info_part .contact_info_wrp {
    z-index: 10;
}

.contact_info_part div.contact_info_img {
    position: absolute;
    z-index: 10;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.contact_info_part div {
    position: relative;
    z-index: 10;
}

.contact_info_part div p.lg {
    color: var(--color-off-white);
    margin-bottom: 8px;
}

.contact_info_part div .h3 {
    color: var(--color-off-white);
}

.contact_info_img::before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(240deg, rgba(0, 0, 0, 0) 16.31%, rgba(0, 0, 0, 0.48) 78.35%), linear-gradient(0deg, rgba(1, 9, 5, 0.55), rgba(1, 9, 5, 0.55));
    z-index: 10;
}

.contact_info_text {
    background: rgba(255, 255, 255, 0.11);
    backdrop-filter: blur(20.2px);
    padding: 40px 32px;
    border-radius: 16px;
}

.contact_info_text ul {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.contact_info_text ul li {
    color: var(--color-white);
    position: relative;
    padding-left: 36px;
    font-weight: 300;
    font-size: 15px;
}

.contact_info_text ul span {
    position: absolute;
    left: 0;
    top: 2px;
}

.contact_info_text ul li strong {
    font-weight: bold;
}

.contact_form_part {
    padding: 72px;
    padding-right: 80px;
}

.contact_form_part form {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: space-between;
}

.contact_form_part .input_el {
    width: auto;
}

.contact_form_part .input_el.full {
    width: 100%;
}

.input_el label {
    width: 100%;
    display: block;
    font-size: 16px;
    color: var(--color-10);
    margin-bottom: 3px;
}

.input_el input {
    width: 100%;
    border: 1px solid rgba(9, 35, 22, .1);
}

.input_el textarea {
    width: 100%;
    height: 125px;
    padding-top: 12px;
    padding-bottom: 12px;
    resize: none;
}

.add_file_wrp input {
    padding: 0;
    border: none;
    border-radius: 0;
    background: none;
    opacity: 0;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.add_file_wrp {
    position: relative;
    width: 172px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--color-light-3);
    border-radius: 100px;
    overflow: hidden;
    padding: 0 10px;
    display: inline-flex;
    align-items: center;
}

.add_file_wrp>span {
    cursor: pointer;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    color: var(--color-6);
    white-space: nowrap;
    overflow: hidden;
    display: inline-block;
}

.contact_persons .h4 {
    margin-bottom: 32px;
}

.contact_card_person {
    background: var(--color-white);
    box-shadow: 0px 8px 23.9px rgba(45, 54, 41, 0.04);
    border-radius: 48px;
    display: flex;
    padding: 16px;
    gap: 24px;
}

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

.contact_card_person_img {
    width: 186px;
    height: 186px;
    flex: none;
    border-radius: 32px;
    overflow: hidden;
}

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

.contact_card_person_about {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding-bottom: 24px;
    padding-top: 12px;
}

.contact_card_person_about .h5 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 2px;
}

.contact_card_person_about .h5 span {
    display: flex;
    align-items: center;
    position: relative;
    top: 2px;
}

.contact_card_person_about .h5 a {
    display: flex;
    align-items: center;
}

.contact_card_person_about .lg {
    flex: 1;
}

.contact_card_person_about ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact_card_person_about ul a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    color: var(--color-6);
}

.add_file_wrp span {
    display: inline-block;
    vertical-align: middle;
}

span#file-label {
    padding-left: 5px;
}

.contact_form_part .input_el input,
.contact_form_part .input_el textarea {
    border-radius: 8px;
}

.phone_input_wrp {
    position: relative;
}

.phone_input_wrp select {
    width: 105px;
    height: 40px;
    background-color: transparent;
    background-color: var(--color-white);
    border: 1px solid var(--color-7)15;
    border-radius: 4px;
    font-size: 16px;
    color: black;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 4px;
    background-image: url(../img/arrow_down.svg);
    padding-left: 7px;
    background-repeat: no-repeat;
    background-position: calc(100% - 9px) 50%;
    -webkit-appearance: none;
    -moz-appearance: none;
    text-align: center;
    padding-right: 25px;
}

.phone_input_wrp input {
    padding-left: 121px;
}

.blog_list_section {
    padding-top: 160px;
    padding-bottom: 120px;
}

.blog_list_wrp {
    margin-top: 64px;
    display: flex;
    gap: 64px;
}

.blog_list_sidebar {
    width: 240px;
    flex: none;
}

.blog_list_items {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 48px 32px;
    justify-content: space-between;
}

.blog_list_items .blog_list_card {
    width: calc(50% - 18px);
}

.blog_list_card_img {
    display: flex;
    overflow: hidden;
    border-radius: 16px;
}

.blog_list_card_img img {
    width: 100%;
    height: auto;
    transition: .3s;
}

.cat_list {
    position: sticky;
    top: 100px;
    display: flex;
    gap: 8px;
    margin-top: 24px;
}

.cat_list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: .3s;
    border-radius: 16px;
    padding: 12px 16px;
    font-size: 16px;
    font-weight: 500;
}

.cat_list .active a {
    color: var(--color-white);
    background-color: var(--color-5);
}

.cat_list a span {
    color: var(--color-light-4);
}

.blog_list_card {
    display: flex;
    flex-direction: column;
}

.blog_list_card .blog_list_cat {
    font-size: 14px;
    margin-top: 24px;
    margin-bottom: 16px;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--color-6);
    letter-spacing: 0.02em;
}

.blog_list_card h2 {
    margin-bottom: 8px;
}

.blog_list_card p {
    margin-bottom: 24px;
    flex: 1;
}

.blog_list_card:hover .btn {
    opacity: 1;
}

.blog_list_card:hover .blog_list_card_img img {
    transform: scale(1.015);
}

.blog_detail_top {
    padding-top: 180px;
    padding-bottom: 80px;
    background-color: var(--color-off-white);
}

.blog_detail_top .blog_detail_left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 40px;
}

.blog_detail_img {
    display: flex;
    overflow: hidden;
    min-height: 420px;
    height: 100%;
}

.blog_detail_img img {
    width: 100%;
    height: 100%;
    border-radius: 48px;
    object-fit: cover;
    object-position: center;
}

.blog_detail_top .flex_half {
    gap: 90px;
}

.blog_meta {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    font-size: 16px;
    color: black;
    font-weight: bold;
}

.blog_meta li span {
    font-weight: normal;
    display: block;
}

.blog_detail_left .label_wrp {
    margin: 0;
    margin-top: 24px;
}

.content {
    position: relative;
}

.blog_detail_section .content {
    max-width: 770px;
    margin: 0 auto;
    width: 100%;
}

.content h2,
.content h3,
.content h4 {
    margin: 30px 0;
}

.content> :nth-child(1) {
    margin-top: 0;
}

.content> :last-child {
    margin-bottom: 0;
}

.content p {
    margin-bottom: 18px;
}

.content figure {
    width: 100%;
    max-width: 100%;
    margin: 0;
}

.content img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
}

.content figure figcaption {
    margin-top: 10px;
    padding-left: 12px;
    color: var(--color-7);
    font-size: 14px;
    font-weight: 400;
    border-left: 2px solid var(--color-light-4);
}

.content ul {
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 0.5px;
    margin: 0;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.content ul li {
    padding-left: 14px;
    position: relative;
}

.content ul li::before {
    content: '';
    color: inherit;
    width: 4px;
    height: 4px;
    display: block;
    position: absolute;
    left: 0;
    background: black;
    border-radius: 50%;
    opacity: .8;
    top: 9px;
    left: 0;
}

.content blockquote {
    margin: 0;
    width: 100%;
    padding: 15px 22px;
    border-radius: 16px;
    background-color: var(--color-off-white);
    font-size: 15px;
    border-left: 3px solid var(--color-light-4);
    line-height: 156%;
    margin-bottom: 25px;
}

.heading_intro .heading.with_h1:last-child {
    margin-bottom: 60px;
}

.persons_lg_list {
    max-width: 972px;
    margin: 0 auto;
    width: 100%;
    margin-top: 55px;
}

.contact_card_person.lg {
    flex-direction: column;
    padding: 32px;
    background: var(--color-white);
    box-shadow: 0px 8px 24px rgba(45, 54, 41, 0.06);
    border-radius: 48px;
    gap: 32px;
    height: 100%;
}

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

.contact_card_person.lg .contact_card_person_img {
    height: 406px;
    border-radius: 24px;
    width: 100%;
}

.contact_card_person.lg .contact_card_person_about {
    padding: 0 12px;
}

.contact_card_person.lg p.lg {
    flex: none;
}

.contact_card_person.lg p:nth-child(3) {
    flex: 1;
    margin-top: 12px;
    margin-bottom: 30px;
}

.timeline_wrp {
    gap: 64px;
    display: flex;
}

.timeline_sidebar {
    width: 42%;
    flex: none;
}

.timeline_list {
    flex: 1;
}

.timeline_sidebar .heading {
    position: sticky;
    top: 100px;
}

.timeline_items {
    display: flex;
    flex-direction: column;
    padding-left: 64px;
    position: relative;
}

.timeline_item {
    padding-top: 16px;
    padding-bottom: 24px;
    position: relative;
}

.timeline_item span {
    font-size: 18px;
    color: var(--color-7);
    margin-bottom: 8px;
    display: block;
}

.timeline_item .h5 {
    margin-bottom: 8px;
}

.timeline_items::before {
    content: '';
    display: block;
    position: absolute;
    left: 6px;
    top: 0;
    width: 3px;
    height: 100%;
    background-color: var(--color-light-2);
}

.timeline_item::before {
    content: '';
    display: block;
    position: absolute;
    width: 8px;
    height: 8px;
    background-color: var(--color-7);
    border-radius: 50%;
    left: -67px;
    border: 7px solid var(--color-white);
    top: 20px;
}

.heading_intro.with_banner {
    padding-top: 130px;
}

.heading_intro.with_banner .banner_full_wrp {
    margin-bottom: 100px;
    padding: 100px 30px;
}

.gallery_full {
    padding-top: 112px;
    padding-bottom: 80px;
}

.heading_intro.with_banner .heading {
    margin-bottom: 30px !important;
}

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

.benefits_inline.light .benefit_inline .h5 {
    color: var(--color-7);
}

.benefits_inline.light .benefit_inline p {
    color: var(--color-6);
}

.flex_5-7 {
    display: flex;
    gap: 32px;
}

.flex_5-7>div:nth-child(odd) {
    width: 41.6%;
    flex: none;
}

.flex_5-7>div:nth-child(even) {
    width: calc(100% - 41.6%);
}

.faq_wrp {
    display: flex;
    flex-direction: column;
}

.faq_item {
    border-bottom: 1px solid var(--color-light-2);
    padding-bottom: 22px;
}

.faq_header {
    cursor: pointer;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 22px;
    color: var(--color-8);
    font-size: 19px;
    font-weight: bold;
    justify-content: space-between;
}

.faq_body {
    font-size: 16px;
    display: none;
    padding-top: 22px;
}

.faq_header span {
    transition: .3s;
}

.faq_item.opened .faq_header span {
    transform: rotate(180deg);
}

.faq_item.opened .faq_body {
    display: block;
}

.flex_5-7 .heading {
    position: sticky;
    top: 100px;
}

.card_benefits_section {
    background-color: #06180E;
}

.card_benefits_section .heading {
    max-width: 880px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.card_benefits_wrp {
    margin-top: 80px;
}

.card_benefits_label.h6 {
    margin-bottom: 16px;
    color: var(--color-white);
}

.benefit_card_in {
    background-color: var(--color-6);
    border-radius: 48px;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
}

.benefit_card_text {
    padding: 64px 48px;
}

.benefit_card_text h3,
.benefit_card_text p {
    color: var(--color-white);
}

.benefit_card_text p {
    margin-top: 24px;
    color: var(--color-light-3);
}

.benefit_card_img {
    border-radius: 48px;
    overflow: hidden;
    display: flex;
}

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

.benefit_reasons {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.benefit_reason {
    position: relative;
    padding: 40px 48px;
    background-color: var(--color-7);
    border-radius: 26px;
    padding-left: 126px;
}

.benefit_reason img {
    top: 40px;
    left: 32px;
    position: absolute;
}

.benefit_reason .h5 {
    margin-bottom: 8px;
    color: var(--color-light-1);
}

.benefit_reason p {
    color: var(--color-light-3);
}

.card_benefits_wrp .flex_half>div {
    display: flex;
    flex-direction: column;
}

.install_wrp {
    display: flex;
    gap: 80px;
    align-items: center;
    margin-top: 80px;
}

.install_img {
    border-radius: 48px;
    overflow: hidden;
    display: flex;
}

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

.install_wrp>div {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.install_items {
    padding: 75px 0;
    gap: 40px;
    display: flex;
    flex-direction: column;
}

.install_item {
    position: relative;
    cursor: pointer;
    transition: .3s;
    padding-left: 32px;
    border-left: 2px solid transparent;
}

.install_item.active {
    border-color: var(--color-mid-green);
}

.install_item .h3 {
    font-size: 23px;
    margin-bottom: 14px;
    color: var(--color-8);
}

.install_item p {}

img {
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    user-select: none;
    pointer-events: none;
}

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

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

.solution_benefits_items {
    margin-top: 80px;
    display: flex;
    gap: 32px;
}

.solution_benefits_item {
    flex: 1;
}

.solution_benefits_item:nth-child(1) {
    flex: none;
    width: 41.6%;
}

.solution_benefit_card {
    display: flex;
    flex-direction: column;
    padding: 56px;
    background-color: var(--color-white);
    border-radius: 48px;
    height: 100%;
}

.solution_benefit_card span {
    margin-bottom: 8px;
    color: var(--color-10);
    text-transform: uppercase;
    font-size: 14px;
}

.solution_benefit_card ul {
    display: flex;
    flex-direction: column;
    gap: 13px;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--color-light-3);
    margin-bottom: 30px;
    flex: 1;
}

.benefits_buttons {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 24px;
}

.solution_benefit_card ul li {
    position: relative;
    padding-left: 40px;
}

.solution_benefit_card ul li::before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 2px;
    background-image: url(../img/check.svg);
    width: 24px;
    height: 24px;
    background-repeat: no-repeat;
    background-position: center;
}

.focus .solution_benefit_card ul li::before {
    background-image: url(../img/check2.svg);
    width: 27px;
    height: 27px;
    top: -1px;
}

.solution_benefits_item.focus .solution_benefit_card {
    background-color: var(--color-6);
}

.solution_benefits_item.focus .solution_benefit_card>span,
.solution_benefits_item.focus .solution_benefit_card ul li,
.solution_benefits_item.focus .solution_benefit_card .h4 {
    color: var(--color-white);
}

.focus .solution_benefit_card ul {
    border-color: #676867;
}

.product_compare_items {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    max-width: 990px;
    margin: 0 auto;
    margin-top: 48px;
}

.product_compare_item {
    width: calc(33.333% - 22px);
    border-radius: 24px;
    background-color: var(--color-off-white);
    padding: 24px;
    padding-bottom: 34px;
    text-align: center;
}

.product_compare_item>div {
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 16px;
    height: 160px;
    display: flex;
}

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

.product_compare_item .h5 {
    margin-bottom: 4px;
}

.product_compare_item p {
    font-weight: 500;
    max-width: 305px;
    margin: 0 auto;
}

.product_compare_btn {
    text-align: center;
    margin-top: 64px;
}

.product_compare_tables {
    max-width: 990px;
    margin: 0 auto;
    width: 100%;
    margin-top: 90px;
    display: none;
}

.product_compare_tables table {
    width: 100%;
    text-align: center;
    margin-top: 30px;
}

.product_compare_tables table th:nth-child(1),
.product_compare_tables table td:nth-child(1) {
    text-align: left;
}

.product_compare_tables table td {
    padding: 14px 16px;
    font-size: 14px;
    line-height: 1.1;
}

.product_compare_tables table tbody tr:nth-child(odd) {
    background-color: var(--color-off-white);
}

.product_compare_tables table td span {
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1;
    font-size: 18px;
}

.product_compare_tables table:nth-child(1) {
    margin-top: 0;
}

.product_compare_tables table thead th {
    padding: 12px 16px;
    font-size: 16px;
}

.show {
    display: block;
}

.hidden {
    display: none;
}

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

.compare_cards_flex {
    margin-top: 80px;
}

.compare_card {
    background-color: var(--color-white);
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.compare_card_img {
    height: 248px;
    overflow: hidden;
}

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

.compare_card_body {
    padding: 48px;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.tab {
    display: none;
}

.tab.active {
    display: block;
}

.install_options_wrp {
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    max-width: 1084px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

.options_tabs {
    padding: 4px;
    display: inline-flex;
    align-self: center;
    gap: 8px;
    background-color: var(--color-off-white);
    border-radius: 100px;
}

.option_tab {
    cursor: pointer;
    padding: 12px 24px;
    line-height: 1.5;
    display: flex;
    font-size: 16px;
    font-weight: 500;
    transition: .3s;
    border-radius: 100px;
    background-color: var(--color-white);
    gap: 10px;
}

.option_tab.active span {
    color: #0E2D23;
    background-color: var(--color-white);
}

.option_tab span {
    font-size: 12px;
    color: var(--color-5);
    font-weight: 600;
    padding: 4px 12px;
    line-height: 1;
    background-color: var(--color-light-1);
    border-radius: 100px;
    transition: .3s;
    display: inline-flex;
    align-items: center;
    margin-left: -11px;
}

.option_tab.active {
    background-color: #0E2D23;
    color: var(--color-white);
}

.options_inner {
    margin-top: 32px;
}

.options_desc {
    display: flex;
    background-color: var(--color-off-white);
    border-radius: 24px;
    padding: 8px;
    gap: 32px;
}

.options_legend {
    width: 40%;
    flex: none;
    display: flex;
    gap: 32px;
    padding: 32px 0;
}

.options_desc_text {
    flex: 1;
}

.options_legend>p {
    font-size: 14px;
    color: var(--color-7);
    text-transform: uppercase;
    font-weight: 500;
}

.options_legend .legend {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.options_legend .legend li {
    display: flex;
    align-items: center;
    font-size: 12px;
    color: var(--color-7);
    line-height: 1.3;
    gap: 6px;
}

.options_legend .legend li .legend_color {
    width: 32px;
    height: 12px;
    border-radius: 100px;
    border: 2px solid var(--color-7);
}

.options_desc_text {
    border-radius: 17px;
    padding: 20px 40px;
    background-color: var(--color-white);
    gap: 16px;
    display: flex;
    flex-direction: column;
    padding-bottom: 32px;
}

.options_desc_text ul {
    display: flex;
    flex-direction: column;
    list-style-type: disc;
    padding-left: 21px;
    font-size: 14px;
    color: var(--color-6);
    line-height: 1.4;
    gap: 6px;
    opacity: .8;
}

.options_images {
    margin-top: 24px;
    display: flex;
    gap: 20px;
}

.options_images>div {
    flex: 1;
}

.option_card {
    height: 100%;
    display: flex;
    flex-direction: column;
    border-radius: 24px;
    background-color: var(--color-off-white);
    padding: 24px;
}

.option_card p {
    flex: 1;
    font-size: 14px;
    font-family: 'Host Grotesk', sans-serif;
    letter-spacing: 0.06em;
}

.option_card img {
    max-width: 100%;
    height: auto;
}

.focus .options_desc {
    background-color: var(--color-7);
}

.focus .options_desc .options_desc_text {
    background-color: var(--color-4);
}

.focus .options_desc .options_desc_text ul,
.focus .options_desc .options_desc_text .h5 {
    color: var(--color-white);
}

.focus .options_legend p,
.focus .options_legend li {
    color: var(--color-white);
}

.gallery_full .fill_full:nth-child(2) {
    margin-top: 40px;
}

.usage_example_section {
    background-color: #06180E;
}

.usage_examples_wrp {
    margin-top: 95px;
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.usage_card {
    width: calc(33.33% - 23px);
    padding: 32px;
    border-radius: 48px;
    background-color: var(--color-7);
}

.usage_card .usage_img {
    height: 216px;
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    margin-bottom: 24px;
}

.usage_card .h6 {
    color: var(--color-white);
    padding: 0 16px;
    line-height: 1.2;
    font-weight: 500;
}

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

.gallery_full+section.section.benefits_inline.light {
    background-color: var(--color-off-white);
}

.product_preview_info {
    max-width: 544px;
    width: 100%;
    padding: 35px 0;
}

.product_preview_img img {
    width: 100%;
    height: auto;
}

.product_preview_img {
    display: flex;
    overflow: hidden;
}

.product_preview_info .heading {
    margin-bottom: 45px;
}

.product_preview_info .tech_params_list>div {
    width: 100%;
}

.product_preview_info .tech_params_list {
    margin-top: 24px;
    margin-bottom: 48px;
    max-width: 370px;
}

.subnav_item {
    pointer-events: none;
    transition: .3s;
    opacity: 0;
    overflow: auto;
    max-height: calc(100dvh - 99px);
    position: absolute;
    top: 24px;
    left: 0;
    width: 100%;
    transition: .3s;
}

.subnav_inner.active {
    pointer-events: all;
    opacity: 1;
}

.subnav_inner {
    display: flex;
    width: 100%;
    padding: 48px;
    background: #fff;
    box-shadow: 0px 15px 25px rgba(131, 136, 132, 0.15);
    border-radius: 27px;
    gap: 32px;
    transition: .3s;
}

.subnav_items {
    padding-top: 24px;
    transition: .3s;
    position: relative;
}

.subnav_item.active {
    pointer-events: all;
    opacity: 1;
    z-index: 100;
    box-shadow: 0px 15px 25px rgba(131, 136, 132, 0.15);
}

.subnav_desc {
    flex: none;
    width: 26%;
}

.subnav_items {
    flex: 1;
}

.fixed_elems .subnav_inner {
    border-radius: 0;
    background-color: #ffffff;
}

.fixed_elems .subnav_items {
    padding-top: 0.2px;
}

.subnav_desc>span {
    text-transform: uppercase;
    margin-bottom: 8px;
    display: block;
    font-size: 14px;
    letter-spacing: 0.06em;
    font-family: 'Host Grotesk', sans-serif;
}

.subnav_desc>.h5 {
    margin-bottom: 16px;
    color: var(--color-8);
}

.subnav_desc>p {
    margin-bottom: 26px;
}

.subnav_items_list {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    width: 100%;
}

.subnav_items_list>.product_item {
    width: calc(33.3333% - 23px);
}

.subnav_items_list>.product_item .product_item_img {
    display: flex;
    overflow: hidden;
    height: 180px;
    margin-bottom: 13px;
    box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.04);
    border-radius: 16px;
}

.subnav_items_list>.product_item .product_item_img img {
    width: 100%;
    height: 100%;
    object-position: center;
    object-fit: cover;
}

.fixed_elems .subnav_item {
    top: 0;
    box-shadow: 0px 15px 25px rgba(131, 136, 132, 0.15);
}

.mobile_menu {
    display: none;
}

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

.review_logo img {
    max-width: 100%;
    max-height: 100%;
}

.logged-in .map_el img {
    pointer-events: all;
}

.map_content_item>img:nth-child(1) {
    max-height: 90px;
}

.banner_section.dark {
    background-color: #082416;
}

.banner_section.dark .banner_wrp {
    background-color: #F6F7F5;
}

.banner_section.dark .banner_wrp>.h4,
.banner_section.dark .banner_wrp>p {
    color: #092316;
}

.tech_params_section .container {
    max-width: 1088px;
}

.option_card .h5 {
    margin-bottom: 10px;
}

input.error,
textarea.error {
    border-width: 1px !important;
    border-style: solid;
}

.field-error {
    line-height: 1.3;
    width: 100%;
}



.cookies_wrp,
.cookies_wrp * {
    box-sizing: border-box !important;
}

.cookies_wrp {
    position: fixed;
    z-index: 10000;
    bottom: -380px;
    left: 0;
    width: 100%;
    pointer-events: none;
    padding: 20px;
    z-index: 1000;
    transition: 0.7s ease;
}

.cookies_inner {
    display: flex;
    border-radius: 12px;
    border: 1px solid #dee2ea;
    background: var(--blue-100, #fff);
    box-shadow: 0px 4px 13px rgba(0, 0, 0, 0.12);
    margin-left: auto;
    max-width: 555px;
    padding: 28px;
    flex-direction: column;
    gap: 0;
    margin: 0 auto;
    font-family: 'Host Grotesk', sans-serif;
}

.cookies_right {
    flex: none;
    display: flex;
    gap: 8px;
    width: 100%;
    margin-top: 19px;
    align-items: center;
}

.cookies_right button {
    font-weight: 600;
    padding: 0;
    width: 100%;
    transition: 0.3s;
    cursor: pointer;
    border-radius: 6px;
    background: #134a2e;
    height: 40px;
    font-size: 14px;
    font-style: normal;
    line-height: 1;
    color: #fff;
    border: 1px solid #134a2e;
    width: auto;
    padding: 12px 27px;
    border-radius: 100px;
}

.cookies_right button.cookies_secondary {
    background-color: transparent !important;
    border: 1px solid #000;
    color: #000;
    padding: 0;
    border: none;
    color: #757575 !important;
    font-size: 14px;
    border-bottom: 1px solid;
    border-radius: 0;
    height: auto;
    min-height: 1px;
    line-height: 1;
}

.cookies_right button.cookies_secondary:hover {
    background-color: #000;
    color: #fff;
    opacity: 1;
    border-bottom-color: transparent;
}

.cookies_right button:hover {
    opacity: 0.7;
}

.cookies_left {
    flex: 1;
    display: block;
}

.cookies_label {
    margin: 0;
    margin-bottom: 12px;
    color: #000;
    font-size: 20px;
    font-style: normal;
    font-weight: 900;
    line-height: 1.1;
    margin-top: 0;
}

.cookies_desc p {
    color: #414b63;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 22.346px;
    margin-bottom: 0;
}

.cookis_list {
    padding: 0;
    margin: 0;
    display: flex;
    gap: 10px 30px;
    margin-bottom: 9px;
    align-items: center;
}

.cookis_list li {
    cursor: pointer;
    padding-left: 30px;
    position: relative;
    color: #000;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 12.719px;
    letter-spacing: -0.28px;
    min-height: 20px;
    display: flex;
    align-items: center;
}

.cookis_list li.active::before {
    border-width: 6px;
}

.cookis_list li::before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    border-radius: 3px;
    transition: 0.3s;
    box-sizing: border-box;
    border: 2px solid #134a2e;
}

.cookies_more {
    color: #000;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 12.719px;
    /* 105.475% */
    letter-spacing: -0.241px;
    text-decoration-line: underline;
}

.cookies_more:hover {
    text-decoration: none;
}

.cookies_select_wrp {
    display: none;
    flex: 1;
    align-items: flex-end;
}

.cookies_desc {
    font-family: 'Schibsted Grotesk', sans-serif;
}

.selecting_cookies .cookies_button {
    border: none;
    background: #134a2e;
    color: #fff;
}

.selecting_cookies .cookies_button.cookies_secondary {}

.show_flex {
    display: flex;
    padding-top: 14px;
}

.cookies_wrp.opened {
    bottom: 0px;
}

.opened .cookies_inner {
    pointer-events: all;
}

@media screen and (max-width: 767px) {
    .cookies_inner {
        max-width: 570px;
        flex-wrap: wrap;
        padding: 20px;
        gap: 24px;
    }

    .cookies_left {
        width: 100%;
        flex: none;
    }

    .cookies_right {
        width: 100%;
        flex-direction: row;
        gap: 5px;
    }

    .cookies_right button {
        flex: auto;
        width: auto;
        font-size: 14px;
        height: 40px;
        font-weight: normal;
    }

    .cookies_right>button:last-child {
        flex: 1;
        width: auto;
        padding: 0;
    }

    .cookies_right>button:nth-child(1) {
        order: 3;
    }

    .cookies_right>button:nth-child(2) {
        order: 2;
    }

    .cookies_label {
        font-size: 17px;
        margin-bottom: 8px;
    }

    .cookies_desc {
        padding: 0;
    }

    .cookies_desc p {
        font-size: 14px;
        line-height: 1.4;
    }

    .cookis_list {
        margin-bottom: 15px;
        margin-top: 10px;
    }

    .cookies_right {
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 16px 8px;
        margin-top: 3px;
    }

    .cookies_wrp {
        padding: 10px;
    }

    .cookies_inner {
        gap: 10px;
        padding: 24px;
        border-radius: 0;
    }

    .cookies_label {
        font-size: 24px;
        line-height: 1.2;
    }

    .cookies_desc p {
        font-size: 14px;
        line-height: 1.4;
    }

    .cookies_right>button:nth-child(1) {
        order: -1;
        width: 100%;
        text-decoration: none;
        border: none;
        text-align: left;
        text-decoration: underline;
    }

    .cookies_right>button:nth-child(2) {
        order: 2;
    }

    .cookies_right>button:nth-child(3) {
        /* order: 3; */
        flex: 1;
        padding: 0;
    }

    .cookis_list {
        flex-direction: column;
        align-items: flex-start;
        gap: 17px 0;
    }

    .cookis_list li {
        font-size: 15px;
    }

    .cookies_more {
        font-size: 14px;
    }

    .cookies_wrp {
        bottom: -480px;
        padding: 0;
    }

    .cookies_right .spacer {
        display: none;
    }
}

.spacer {
    flex: 1;
}

.compare_section {
    overflow: hidden;
}

.compare_wrp_card {
    overflow: hidden;
    pointer-events: all;
}

.compare_swiper {
    pointer-events: none;
}

.compare_swiper .swiper-pagination {
    pointer-events: all;
}

.mobile_menu>a:nth-child(1) {
    overflow: hidden;
    display: flex;
}

.mobile_menu>a:nth-child(1)>img {
    position: relative;
    left: -22px;
    width: 167px;
}

.swiper.logos_swiper {
    margin-top: 4rem;
    mask-image: linear-gradient(to right,
            transparent 0%,
            white 10%,
            white 90%,
            transparent 100%);
}

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

.swiper-slide.logos_swiper {
    width: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section.logos {
    padding-bottom: 30px;
}

.benefit_card .material-symbols-outlined {
    display: none;
}

.reference_gallery::before,
.gallery_full_swiper::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
    background-repeat: no-repeat;
    background-image: url(../img/top_corner.svg);
    width: 48px;
    height: 48px;
    z-index: 100;
}

.reference_gallery::after,
.gallery_full_swiper::after {
    z-index: 100;
    content: '';
    display: block;
    position: absolute;
    bottom: 96px;
    left: 0;
    pointer-events: none;
    background-repeat: no-repeat;
    background-image: url(../img/bottom_corner.svg);
    width: 48px;
    height: 48px;
}

::placeholder {
    transition: .3s;
}

:focus::placeholder {
    opacity: 0;
}

.not_found {
    padding-top: 180px;
}

.partner_card>img {
    max-width: 157px;
    width: 100%;
    height: auto;
}

.compare_card_body>span {
    font-family: 'Host Grotesk', sans-serif;
    letter-spacing: 0.06em;
    font-weight: 400;
    text-transform: uppercase;
    font-size: 14px;
}

.benefit_inline span img {
    max-width: 100%;
    max-height: 100%;
}

.material-symbols-outlined>span {
    margin: 0;
    width: auto;
    height: auto;
}

.logged-in .section {
    position: relative;
}

.section-id-label {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 4px 8px;
    font-size: 11px;
    border-radius: 3px;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}


.custom-pin {
    width: 42px;
    height: 42px;
    cursor: pointer;
    transition: transform 0.25s ease;
    z-index: 10;
}

.custom-pin img {
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: .9;
}

.custom-pin.active {
    z-index: 20 !important;
}

.custom-pin.active img {
    opacity: 1 !important;
}

.map_content_item {
    transition: all 0.3s ease;
}

.custom-pin img {
    pointer-events: none;
}

.map_content>div {
    z-index: 100;
}

.review_card_preview.pl0 {
    padding-left: 0;
}

.subnav_items_list .btn {
    opacity: 1;
}

::-webkit-scrollbar {
    display: none;
}

.mobile_back {
    display: none;
}

.blog_detail_section h2 {
    font-size: var(--font-size-h3-desktop);
}

.blog_detail_section h3 {
    font-size: var(--font-size-h4-desktop);
}

.blog_detail_section h4 {
    font-size: var(--font-size-h5-desktop);
}

.blog_detail_section h5 {
    font-size: var(--font-size-h6-desktop);
}

.blog_detail_section a {
    text-decoration: underline;
    color: var(--color-4);
}

.blog_detail_section a:hover {
    text-decoration: none;
}

.reference_preview_section {
    border-bottom: 1px solid #e9e9e9;
}

.flex-1 {
    flex: 1;
}


.map-tooltip {
    position: absolute;
    background: white;
    padding: 12px 16px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s;
    z-index: 100;
    min-width: 200px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-left: 10px;
    padding-top: 0;
    padding-bottom: 0;
}

.map-tooltip.active {
    opacity: 1;
}

.map-tooltip img {
    width: 56px;
    height: 56px;
    object-fit: contain;
}

.map-tooltip h6 {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
}

.active .subnav_inner {
}

.footer_contact_text {
    font-size: 14px;
    color: #DBE1D8;
}

.footer_top_flex {
    align-items: flex-start;
    margin-bottom: 40px;
}

.footer_logo {
    display: block;
    margin-bottom: 14px;
    max-width: 100%;
    height: auto;
}

.footer_top_flex>div>a:nth-child(2) {
    color: #fff;
    align-items: center;
    display: inline-flex;
    gap: 14px;
    font-size: 14px;
    text-decoration: underline;
}

.footer_top_flex>div>a:nth-child(2):hover {
    text-decoration: none;
}

.footer_email {
    font-size: 27px;
    color: #EDF0EC;
    display: inline-flex;
    line-height: 1;
    margin-top: 16px;
    transition: .3s;
    border-bottom: 1px solid transparent;
}

.footer_email:hover {
    border-bottom-color: #EDF0EC;
}

.copy_text>span {
    display: inline-block;
}

.copy_text>i {
    display: inline-block;
    padding-right: 15px;
}

.footer_contact li {
    line-height: 1.3;
}