/* Fonts — Montserrat (local, Cyrillic + Latin) */
@font-face {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url("assets/fonts/Montserrat-300-cyrillic.woff2") format("woff2");
    unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url("assets/fonts/Montserrat-300-latin.woff2") format("woff2");
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url("assets/fonts/Montserrat-400-cyrillic.woff2") format("woff2");
    unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url("assets/fonts/Montserrat-400-latin.woff2") format("woff2");
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url("assets/fonts/Montserrat-500-cyrillic.woff2") format("woff2");
    unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url("assets/fonts/Montserrat-500-latin.woff2") format("woff2");
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url("assets/fonts/Montserrat-600-cyrillic.woff2") format("woff2");
    unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url("assets/fonts/Montserrat-600-latin.woff2") format("woff2");
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url("assets/fonts/Montserrat-700-cyrillic.woff2") format("woff2");
    unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url("assets/fonts/Montserrat-700-latin.woff2") format("woff2");
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

body {
    background-color: #fff;
}

/* Animations */
@keyframes MoveUpInitial {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(0, -105%, 0);
    }
}

@keyframes MoveUpEnd {
    0% {
        transform: translate3d(0, 100%, 0);
    }

    100% {
        transform: translate3d(0, 0, 0);
    }
}

/* Reset */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a:active,
a:focus,
input,
input:active,
button:active,
button:focus,
:focus {
    outline: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

button::-moz-focus-inner {
    border: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-tap-highlight-color: transparent;
    scrollbar-width: thin;
    scrollbar-color: #045c25 #eef1f3;
    font-family: "Montserrat", sans-serif;
}

/* Force Montserrat on all text UI (except icon fonts) */
body,
body *:not([class*="swiper-"]):not([class*="ymaps"]) {
    font-family: "Montserrat", sans-serif;
}

@media (min-width: 320px) {
    html {
        font-size: 4.7058823529vw;
    }
}

@media (min-width: 375px) {
    html {
        font-size: 4.2666666667vw;
    }
}

@media (min-width: 576px) {
    html {
        font-size: 2.7777777778vw;
    }
}

@media (min-width: 768px) {
    html {
        font-size: 2.0833333333vw;
    }
}

@media (min-width: 1024px) {
    html {
        font-size: 1.5625vw;
    }
}

@media (min-width: 1280px) {
    html {
        font-size: 0.8333333333vw;
    }
}

@media (min-width: 1920px) {
    html {
        font-size: 0.8333333333vw;
    }
}

html::-webkit-scrollbar {
    width: 6px;
}

html::-webkit-scrollbar-track {
    background-color: #eef1f3;
}

html::-webkit-scrollbar-thumb {
    background-color: #045c25;
}

body {
    min-width: 100vw;
    overflow-x: hidden;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.3;
    color: #181d1d;
    background: #fff;
}

ul {
    list-style: none;
}

a {
    color: #181d1d;
    text-decoration: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
}

/* Utilities */
.mobile-t {
    display: none !important;
}

@media (max-width: 1023px) {
    .desktop-t {
        display: none !important;
    }

    .mobile-t {
        display: block !important;
    }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 7;
    width: 100vw;
    height: 84px;
    border-bottom: 1px solid #e8e8e8;
    background: #fff;
}

@media (max-width: 1023px) {
    .header {
        height: 56px;
    }
}

@media print {
    .header {
        display: none;
    }
}

.header-container {
    position: relative;
    z-index: 7;
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: 84px;
    border-bottom: 1px solid #e8e8e8;
    background: #fff;
}

@media (max-width: 767px) {
    .header-container {
        height: 56px;
    }
}

.header-col {
    display: flex;
}

.header-col:nth-child(2) {
    padding-right: 6px;
}

.header-col.right {
    gap: 20.625rem;
}

@media (min-width: 1680px) {
    .header-col.right {
        gap: 25.625rem;
    }
}

@media (max-width: 1023px) {
    .header-col.right {
        gap: 1rem;
    }
}

.header-burger {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 84px;
    height: 84px;
    background: #045c25;
    cursor: pointer;
    transition: 0.3s;
}

@media (max-width: 767px) {
    .header-burger {
        width: 56px;
        height: 56px;
    }
}

@media (min-width: 768px) {
    .header-burger:hover {
        background: #181d1d;
    }

    .header-burger:hover .header-burger__inner .header-burger__content {
        height: 20px;
        transition: 0.4s;
    }
}

.header-burger__inner {
    width: 26.6px;
}

.header-burger__content {
    position: relative;
    z-index: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 14.7px;
    border-top: 1.5px solid #fff;
    border-bottom: 1.5px solid #fff;
    transition: height 0.4s 0.4s cubic-bezier(0.33, 1, 0.68, 1), border-color 0.4s cubic-bezier(0.33, 1, 0.68, 1);
}

.header-burger__content-line {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 1.5px;
    background-color: #fff;
    transform: translate(-50%, -50%);
    transition: 0.4s;
}

.header-burger__content::before,
.header-burger__content::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 1.5px;
    background: transparent;
    transform: translate(-50%, -50%);
    transition: transform 0.4s cubic-bezier(0.33, 1, 0.68, 1), background 0.4s cubic-bezier(0.33, 1, 0.68, 1);
}

.header-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 40px;
    width: 143px;
    height: 100%;
}

.header-logo img {
    display: block;
    width: 143px;
    height: auto;
}

@media (max-width: 1023px) {
    .header-logo {
        margin-left: 12px;
        width: 6.4875rem;
    }

    .header-logo img {
        width: 6.4875rem;
    }
}

@media (max-width: 767px) {
    .header-logo img {
        width: 6.4875rem;
        height: auto;
    }
}

.header-title {
    margin-left: 97px;
    padding-top: 31px;
    font-weight: 700;
    font-size: 18px;
    line-height: 120%;
    letter-spacing: -0.01em;
    color: #181d1d;
}

.header-title__green {
    color: #045c25;
}

@media (min-width: 1680px) {
    .header-title {
        margin-left: 137px;
    }
}

@media (max-width: 1279px) {
    .header-title {
        display: none;
    }
}

.header-text {
    margin-left: 130px;
    padding-top: 26px;
    font-weight: 600;
    font-size: 12px;
    line-height: 100%;
    text-transform: uppercase;
}

@media (min-width: 1680px) {
    .header-text {
        margin-left: 330px;
    }
}

@media (max-width: 1279px) {
    .header-text {
        display: none;
    }
}

/* Header actions */
.header-actions {
    display: flex;
}

.header-actions__item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    width: 85px;
    height: 84px;
    border-left: 1px solid #e8e8e8;
    cursor: pointer;
}

.header-actions__item:nth-child(2) {
    width: 84px;
    overflow: visible;
}

.header-actions__item:nth-child(3) {
    width: 100px;
}

@media (min-width: 768px) {
    .header-actions__item:hover .header-actions__item-text {
        color: #fff;
        transition: color 0.5s cubic-bezier(0.33, 1, 0.68, 1);
        animation: MoveUpInitial 0.2s forwards, MoveUpEnd 0.2s forwards 0.2s;
    }
}

@media (max-width: 1023px) {
    .header-actions__item:nth-child(3) {
        display: none;
    }
}

@media (max-width: 767px) {
    .header-actions__item {
        width: 57px;
        height: 56px;
    }

    .header-actions__item:nth-child(2) {
        width: 57px;
        height: 56px;
    }
}

.header-actions__item-row {
    display: flex;
    align-items: center;
    gap: 12px;
    overflow: hidden;
}

@media (max-width: 1023px) {
    .header-actions__item-row {
        gap: 0.375rem;
    }
}

.header-actions__item-icon {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-actions__item-icon svg path {
    transition: all 0.4s;
}

.header-actions__item-icon svg.search,
.header-actions__item-icon svg.download {
    width: 20px;
    height: 20px;
}

.header-actions__item-text {
    font-weight: 500;
    font-size: 18px;
    line-height: 130%;
    text-align: center;
    color: #181d1d;
}

@media (max-width: 1023px) {
    .header-actions__item-text {
        font-size: 0.875rem;
    }
}

.header-actions_before::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background-color: #006525;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}

@media (min-width: 768px) {
    .header-actions_before:hover {
        border-color: #045c25;
        transition: border-color 0.5s cubic-bezier(0.33, 1, 0.68, 1);
    }

    .header-actions_before:hover::before {
        transform: none;
    }

    .header-actions_before:hover .header-actions__item-icon svg path {
        stroke: #fff;
        transition: color 0.5s cubic-bezier(0.33, 1, 0.68, 1);
        animation: MoveUpInitial 0.2s forwards, MoveUpEnd 0.2s forwards 0.2s;
    }
}

.header-actions_search {
    transition: all 0.4s 0.4s cubic-bezier(0.33, 1, 0.68, 1), border-color 0.4s cubic-bezier(0.33, 1, 0.68, 1);
}

@media (min-width: 768px) {
    .header-actions_search:hover .header-actions__item-icon svg path {
        stroke: #fff;
        transition: 0.4s;
    }
}

/* Header search */
.header-search {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 84px;
    padding: 31px 140px;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-top: none;
    visibility: hidden;
    transition: 0.3s;
}

.header-search__form {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 767px) {
    .header-search {
        height: 56px;
        padding: 18px 18px 18px 20px;
    }
}

.header-form {
    height: 22px;
}

@media (max-width: 767px) {
    .header-form {
        height: 17px;
    }
}

.header-form__input {
    width: 100%;
    border: none;
    font-weight: 400;
    font-size: 18px;
    line-height: 120%;
    letter-spacing: -0.01em;
    color: #181d1d;
}

@media (max-width: 1023px) {
    .header-form__input {
        font-size: 0.875rem;
    }
}

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

.header-form__button svg {
    width: 20px;
    height: 20px;
}

.header-form__box {
    display: flex;
    gap: 35px;
}

@media (max-width: 767px) {
    .header-form__box {
        gap: 15px;
    }
}

.header-form__reset {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.header-form__reset-line {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 1.5px;
    background: #727a75;
    transform: translate(-50%, -50%) rotate(45deg);
}

.header-form__reset-line:nth-child(2) {
    transform: translate(-50%, -50%) rotate(135deg);
}

/* Header language select */
.header-select__inner {
    position: relative;
    width: 100%;
    height: 100%;
}

.header-select__inner:hover .header-select__item {
    background-color: #181d1d;
}

.header-select__inner:hover .header-select__item-text {
    color: #fff;
}

.header-select__inner:hover .header-select__item-arrow svg {
    transform: rotate(-180deg);
}

.header-select__inner:hover .header-select__item-arrow svg path {
    stroke: #fff;
}

.header-select__inner:hover .header-select__dropdown {
    opacity: 1;
}

.header-select__content {
    width: 100%;
}

.header-select__item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 32px 18px 30px 19px;
    transition: all 0.4s cubic-bezier(0.33, 1, 0.68, 1), border-color 0.4s cubic-bezier(0.33, 1, 0.68, 1);
}

@media (max-width: 767px) {
    .header-select__item {
        gap: 6px;
        padding: 20.5px 9.5px 18.5px 11.5px;
    }
}

.header-select__item-text {
    font-family: Montserrat, sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 130%;
    text-align: center;
    color: #181d1d;
    transition: all 0.4s cubic-bezier(0.33, 1, 0.68, 1), border-color 0.4s cubic-bezier(0.33, 1, 0.68, 1);
}

@media (max-width: 767px) {
    .header-select__item-text {
        font-size: 14px;
    }
}

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

.header-select__item-arrow svg {
    width: 12px;
    height: 12px;
    transition: all 0.4s cubic-bezier(0.33, 1, 0.68, 1), border-color 0.4s cubic-bezier(0.33, 1, 0.68, 1);
}

.header-select__dropdown {
    position: absolute;
    top: 83px;
    left: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    width: 84px;
    padding: 12px 29px;
    background-color: #fff;
    border: 1px solid #e8e8e8;
    border-top: none;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.33, 1, 0.68, 1), border-color 0.4s cubic-bezier(0.33, 1, 0.68, 1);
}

@media (max-width: 767px) {
    .header-select__dropdown {
        top: 57px;
        gap: 8px;
        width: 100%;
        padding: 8px 18px;
    }
}

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

.header-select__sub-text {
    font-family: Montserrat, sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 130%;
    text-align: center;
    color: #181d1d;
}

@media (max-width: 767px) {
    .header-select__sub-text {
        font-size: 14px;
    }
}

/* Select dropdown */
.select {
    position: relative;
    font-family: Montserrat, sans-serif;
}

.select-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
}

.select__button {
    position: relative;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    gap: 0.75rem;
    width: 16.75rem;
    height: 4.1875rem;
    padding: 1rem 0;
    background: #fff;
    cursor: pointer;
    transition: 0.3s;
}

@media (max-width: 1023px) {
    .select__button {
        width: fit-content;
        height: 2.5rem;
        padding: 0.5rem 0;
    }
}

.select__button:hover {
    border-color: #065e78;
}

.select__button svg {
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    transform: rotate(0deg);
    transition: 0.3s;
}

@media (max-width: 1023px) {
    .select__button svg {
        width: 0.75rem;
        height: 0.75rem;
    }
}

.select__button svg path {
    transition: 0.3s;
}

.select__button input {
    width: 10rem;
    height: 100%;
    border: none;
    font-family: Montserrat, sans-serif;
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.6rem;
    text-align: left;
    color: inherit;
    background-color: transparent;
    cursor: pointer;
}

@media (max-width: 1023px) {
    .select__button input {
        width: 2.125rem;
        font-size: 0.875rem;
        line-height: 1.4rem;
    }
}

.select__list {
    position: absolute;
    top: 5rem;
    left: 0;
    z-index: 3;
    width: 100%;
    overflow: hidden;
    overflow-y: auto;
    background: #fff;
    border: 1px solid #e3e3e3;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
    opacity: 0;
    pointer-events: none;
    transform: translateY(1.875rem);
    transition: 0.3s;
}

@media (max-width: 1023px) {
    .select__list {
        top: 3.4375rem;
        width: 10.0625rem;
    }
}

.select__list ul {
    position: relative !important;
    bottom: 0;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.select__list ul li {
    padding: 0.75rem 1.25rem;
    border-bottom: 1px solid #e3e3e3;
    font-family: Montserrat, sans-serif;
    font-weight: 500;
    font-size: 0.875rem;
    line-height: 1.4rem;
    text-align: left;
    color: #181d1d;
    cursor: pointer;
    transition: 0.3s;
}

@media (max-width: 1023px) {
    .select__list ul li {
        padding: 0.5rem 0.75rem;
    }
}

.select__list ul li a {
    display: block;
}

.select__list ul li:last-child {
    border: none;
}

.select__list ul li:hover {
    background: #f6f6f6;
}

.select__list.links li {
    padding: 0;
}

.select__list.links li a {
    padding: 1rem 1.625rem;
}

@media (max-width: 1023px) {
    .select__list.links li a {
        padding: 0.5rem 0.75rem;
    }
}

.links {
    display: flex;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 150%;
}

@page {
    margin: 1cm;
}

*, ::before, ::after {
    --tw-border-spacing-x: 0;
    --tw-border-spacing-y: 0;
    --tw-translate-x: 0;
    --tw-translate-y: 0;
    --tw-rotate: 0;
    --tw-skew-x: 0;
    --tw-skew-y: 0;
    --tw-scale-x: 1;
    --tw-scale-y: 1;
    --tw-pan-x: ;
    --tw-pan-y: ;
    --tw-pinch-zoom: ;
    --tw-scroll-snap-strictness: proximity;
    --tw-gradient-from-position: ;
    --tw-gradient-via-position: ;
    --tw-gradient-to-position: ;
    --tw-ordinal: ;
    --tw-slashed-zero: ;
    --tw-numeric-figure: ;
    --tw-numeric-spacing: ;
    --tw-numeric-fraction: ;
    --tw-ring-inset: ;
    --tw-ring-offset-width: 0px;
    --tw-ring-offset-color: #fff;
    --tw-ring-color: rgb(59 130 246 / .5);
    --tw-ring-offset-shadow: 0 0 #0000;
    --tw-ring-shadow: 0 0 #0000;
    --tw-shadow: 0 0 #0000;
    --tw-shadow-colored: 0 0 #0000;
    --tw-blur: ;
    --tw-brightness: ;
    --tw-contrast: ;
    --tw-grayscale: ;
    --tw-hue-rotate: ;
    --tw-invert: ;
    --tw-saturate: ;
    --tw-sepia: ;
    --tw-drop-shadow: ;
    --tw-backdrop-blur: ;
    --tw-backdrop-brightness: ;
    --tw-backdrop-contrast: ;
    --tw-backdrop-grayscale: ;
    --tw-backdrop-hue-rotate: ;
    --tw-backdrop-invert: ;
    --tw-backdrop-opacity: ;
    --tw-backdrop-saturate: ;
    --tw-backdrop-sepia: ;
    --tw-contain-size: ;
    --tw-contain-layout: ;
    --tw-contain-paint: ;
    --tw-contain-style:
}

::backdrop {
    --tw-border-spacing-x: 0;
    --tw-border-spacing-y: 0;
    --tw-translate-x: 0;
    --tw-translate-y: 0;
    --tw-rotate: 0;
    --tw-skew-x: 0;
    --tw-skew-y: 0;
    --tw-scale-x: 1;
    --tw-scale-y: 1;
    --tw-pan-x: ;
    --tw-pan-y: ;
    --tw-pinch-zoom: ;
    --tw-scroll-snap-strictness: proximity;
    --tw-gradient-from-position: ;
    --tw-gradient-via-position: ;
    --tw-gradient-to-position: ;
    --tw-ordinal: ;
    --tw-slashed-zero: ;
    --tw-numeric-figure: ;
    --tw-numeric-spacing: ;
    --tw-numeric-fraction: ;
    --tw-ring-inset: ;
    --tw-ring-offset-width: 0px;
    --tw-ring-offset-color: #fff;
    --tw-ring-color: rgb(59 130 246 / .5);
    --tw-ring-offset-shadow: 0 0 #0000;
    --tw-ring-shadow: 0 0 #0000;
    --tw-shadow: 0 0 #0000;
    --tw-shadow-colored: 0 0 #0000;
    --tw-blur: ;
    --tw-brightness: ;
    --tw-contrast: ;
    --tw-grayscale: ;
    --tw-hue-rotate: ;
    --tw-invert: ;
    --tw-saturate: ;
    --tw-sepia: ;
    --tw-drop-shadow: ;
    --tw-backdrop-blur: ;
    --tw-backdrop-brightness: ;
    --tw-backdrop-contrast: ;
    --tw-backdrop-grayscale: ;
    --tw-backdrop-hue-rotate: ;
    --tw-backdrop-invert: ;
    --tw-backdrop-opacity: ;
    --tw-backdrop-saturate: ;
    --tw-backdrop-sepia: ;
    --tw-contain-size: ;
    --tw-contain-layout: ;
    --tw-contain-paint: ;
    --tw-contain-style:
}

.bg-black {
    --tw-bg-opacity: 1;
    background-color: rgb(0 0 0 / var(--tw-bg-opacity, 1))
}

.button-header[data-astro-cid-m463jmsf].active .button-header__icon-inner[data-astro-cid-m463jmsf]:has(.button-header__close) {
    transform: translateY(-50%)
}

@media (max-width: 1200px) {
    .button-header[data-astro-cid-m463jmsf].active .button-header__icon-inner[data-astro-cid-m463jmsf]:has(.button-header__close) {
        gap:.75rem
    }
}

@media (min-width: 1202px) {
    .button-header_compare[data-astro-cid-m463jmsf].active .button-header__icon-inner[data-astro-cid-m463jmsf]:has(.button-header__close),.button-header_favorite[data-astro-cid-m463jmsf].active .button-header__icon-inner[data-astro-cid-m463jmsf]:has(.button-header__close),.button-header_tel[data-astro-cid-m463jmsf].active .button-header__icon-inner[data-astro-cid-m463jmsf]:has(.button-header__close) {
        transform:translateY(0)
    }
}

.button-header__icon-inner[data-astro-cid-m463jmsf]:has(.button-header__close) {
    height: 230%
}

.icon[data-astro-cid-ml7quvyf] {
    overflow: visible
}

.icon[data-astro-cid-ml7quvyf]:not(.icon_initial) * {
    transform-origin: center;
    transform-box: fill-box
}

.icon[data-astro-cid-ml7quvyf]:not(.icon_initial) *[stroke] {
    stroke: currentColor
}

.dropdown[data-astro-cid-qamczgis] {
    position: relative
}

.dropdown__trigger[data-astro-cid-qamczgis] {
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    display: flex;
    gap: .5rem;
    align-items: center;
    width: -moz-fit-content;
    width: fit-content;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    color: #ffffff80;
    transition: .4s cubic-bezier(.33,1,.68,1)
}

@media (min-width: 1025px) and (hover: hover) and (pointer: fine) {
    .dropdown__trigger[data-astro-cid-qamczgis]:hover {
        color:#fff
    }
}

@media (max-width: 1200px) {
    .dropdown__trigger[data-astro-cid-qamczgis] {
        font-size:.875rem;
        color: #ffffff80
    }
}

.dropdown__trigger[data-astro-cid-qamczgis] svg[data-astro-cid-qamczgis] {
    width: 1.25rem;
    height: 1.25rem;
    transition: transform .4s cubic-bezier(.33,1,.68,1)
}

.dropdown__trigger[data-astro-cid-qamczgis] svg[data-astro-cid-qamczgis] path {
    width: 100%!important;
    height: 100%!important;
    stroke: #ffffff80
}

.dropdown__menu[data-astro-cid-qamczgis] {
    pointer-events: none;
    position: absolute;
    top: calc(100% + .5rem);
    left: 0;
    transform: translateY(-10px);
    overflow: hidden;
    width: -moz-fit-content;
    width: fit-content;
    min-width: 8.75rem;
    padding: 0;
    border: 1px solid #525558;
    border-radius: .5rem;
    color: #fff;
    opacity: 0;
    transition: opacity .4s cubic-bezier(.33,1,.68,1),transform .4s cubic-bezier(.33,1,.68,1)
}

.dropdown__menu[data-astro-cid-qamczgis] ul li {
    background: #1e2024;
    transition: .4s cubic-bezier(.33,1,.68,1)
}

@media (min-width: 1025px) and (hover: hover) and (pointer: fine) {
    .dropdown__menu[data-astro-cid-qamczgis] ul li:hover {
        background:#35373b
    }
}

.dropdown__menu[data-astro-cid-qamczgis] ul li:not(:last-child) {
    border-bottom: 1px solid #525558
}

.dropdown__menu[data-astro-cid-qamczgis] ul li:first-child {
    border-top-left-radius: .25rem;
    border-top-right-radius: .25rem
}

.dropdown__menu[data-astro-cid-qamczgis] ul li:last-child {
    border-bottom-right-radius: .25rem;
    border-bottom-left-radius: .25rem
}

.dropdown__menu[data-astro-cid-qamczgis] ul li a {
    padding: .75rem;
    font-size: 14px
}

@media (max-width: 1200px) {
    .dropdown__menu[data-astro-cid-qamczgis] ul li a {
        font-size:.6875rem
    }
}

@supports (height: 100dvh) {
}

.container[data-astro-cid-zx6dcily] {
    box-sizing: content-box;
    max-width: 1528px;
    margin-inline:auto}

@media (max-width: 1920px) {
    .container[data-astro-cid-zx6dcily] {
        padding-inline:2.5rem
    }
}

@media (max-width: 1200px) {
    .container[data-astro-cid-zx6dcily] {
        box-sizing:border-box;
        max-width: none;
        padding-inline:1.5rem}
}

.container_big[data-astro-cid-zx6dcily] {
    max-width: 1856px
}

@media (max-width: 1920px) {
    .container_big[data-astro-cid-zx6dcily] {
        padding-inline:2rem
    }
}

@media (max-width: 1200px) {
    .container_big[data-astro-cid-zx6dcily] {
        box-sizing:border-box;
        max-width: none;
        padding-inline:1.5rem}
}

@media (max-width: 767px) {
    .container_big[data-astro-cid-zx6dcily] {
        padding-inline:.375rem
    }
}

.title[data-astro-cid-5a7m7riw] {
    margin-top: -2.5rem;
    margin-bottom: -2.5rem;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
    font-family: Montserrat, sans-serif
}

.title_variant_140[data-astro-cid-5a7m7riw] {
    font-size: 8.75rem;
    line-height: 90%;
    letter-spacing: -2.8px
}

@media (max-width: 1200px) {
    .title_variant_140[data-astro-cid-5a7m7riw] {
        font-size:2.5rem;
        letter-spacing: -.08px
    }
}

@media screen and (min-width: 1921px) {
    .title_variant_140[data-astro-cid-5a7m7riw] {
        font-size:140px
    }
}

.title_color_white[data-astro-cid-5a7m7riw] {
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity, 1))
}

.title_color_gradient-green[data-astro-cid-5a7m7riw] {
    display: table;
    background: linear-gradient(323deg,#fff 70.78%,#c9f29a 83.31%,#6eff9d 93.59%),#fff;
    background: -webkit-linear-gradient(323deg,#ffffff 70.78%,#c9f29a 83.31%,#6eff9d 93.59%),#fff;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.title_weight_700[data-astro-cid-5a7m7riw] {
    font-weight: 700
}

.title_uppercase[data-astro-cid-5a7m7riw] {
    text-transform: uppercase
}

.ui-select[data-astro-cid-annr4koc] .ts-wrapper &.dropdown-top .ts-dropdown {
    top: auto;
    bottom: 100%
}

.ui-select.input .ts-control:has(.item[data-value=placeholder]) {
    background-color: #ffffff1a
}

.input[data-astro-cid-vzfstetq]:has(.input__error.visible) {
    border-color: #55d881
}

.input[data-astro-cid-vzfstetq]:has(input[disabled]) {
    pointer-events: none;
    cursor: auto
}

/*! 
 * OverlayScrollbars
 * Version: 2.11.4
 * 
 * Copyright (c) Rene Haas | KingSora.
 * https://github.com/KingSora
 * 
 * Released under the MIT license.
 */

@property --os-scroll-percent {
    syntax: "<number>";
    inherits: true;
    initial-value: 0;
}

@property --os-viewport-percent {
    syntax: "<number>";
    inherits: true;
    initial-value: 0;
}

@supports (container-type: size) {
}

:root {
    --ts-pr-clear-button: 0px;
    --ts-pr-caret: 0px;
    --ts-pr-min: .75rem
}

@font-face {
    font-family: swiper-icons;
    src: url(data:application/font-woff;charset=utf-8;base64,\ d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA);
    font-weight: 400;
    font-style: normal
}

:root {
    --swiper-theme-color: #007aff
}

:host {
    position: relative;
    display: block;
    margin-left: auto;
    margin-right: auto;
    z-index: 1
}

:root {
    --swiper-navigation-size: 44px
}

*,*:before,*:after {
    box-sizing: inherit
}

*:focus {
    outline: none
}

html {
    box-sizing: border-box;
    line-height: 1
}

body {
    margin: 0;
    -webkit-tap-highlight-color: transparent
}

img {
    display: block;
    max-width: 100%
}

a {
    display: inline-block;
    text-decoration: none
}

button {
    cursor: pointer;
    border: none;
    background: none
}

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

h1,h2,p,span,ul,li {
    margin: 0;
    padding: 0
}

html {
    -webkit-tap-highlight-color: rgba(0,0,0,0)
}

@media (min-width: 320px) {
    html {
        font-size:4.7058823529vw
    }
}

@media (min-width: 360px) {
    html {
        font-size:4.4444444444vw
    }
}

@media (min-width: 576px) {
    html {
        font-size:2.7777777778vw
    }
}

@media (min-width: 768px) {
    html {
        font-size:2.0833333333vw
    }
}

@media (min-width: 1024px) {
    html {
        font-size:1.5625vw
    }
}

@media (min-width: 1201px) {
    html {
        font-size:.8333333333vw
    }
}

@media (min-width: 1920px) {
    html {
        font-size:.8333333333vw
    }
}

html {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-style: normal;
    line-height: 150%
}

input:is(:-webkit-autofill) {
    transition-delay: 9999999999s
}

input:is(:-webkit-autofill,:autofill) {
    transition-delay: 9999999999s
}


::backdrop {
    --tw-border-spacing-x: 0;
    --tw-border-spacing-y: 0;
    --tw-translate-x: 0;
    --tw-translate-y: 0;
    --tw-rotate: 0;
    --tw-skew-x: 0;
    --tw-skew-y: 0;
    --tw-scale-x: 1;
    --tw-scale-y: 1;
    --tw-pan-x: ;
    --tw-pan-y: ;
    --tw-pinch-zoom: ;
    --tw-scroll-snap-strictness: proximity;
    --tw-gradient-from-position: ;
    --tw-gradient-via-position: ;
    --tw-gradient-to-position: ;
    --tw-ordinal: ;
    --tw-slashed-zero: ;
    --tw-numeric-figure: ;
    --tw-numeric-spacing: ;
    --tw-numeric-fraction: ;
    --tw-ring-inset: ;
    --tw-ring-offset-width: 0px;
    --tw-ring-offset-color: #fff;
    --tw-ring-color: rgb(59 130 246 / .5);
    --tw-ring-offset-shadow: 0 0 #0000;
    --tw-ring-shadow: 0 0 #0000;
    --tw-shadow: 0 0 #0000;
    --tw-shadow-colored: 0 0 #0000;
    --tw-blur: ;
    --tw-brightness: ;
    --tw-contrast: ;
    --tw-grayscale: ;
    --tw-hue-rotate: ;
    --tw-invert: ;
    --tw-saturate: ;
    --tw-sepia: ;
    --tw-drop-shadow: ;
    --tw-backdrop-blur: ;
    --tw-backdrop-brightness: ;
    --tw-backdrop-contrast: ;
    --tw-backdrop-grayscale: ;
    --tw-backdrop-hue-rotate: ;
    --tw-backdrop-invert: ;
    --tw-backdrop-opacity: ;
    --tw-backdrop-saturate: ;
    --tw-backdrop-sepia: ;
    --tw-contain-size: ;
    --tw-contain-layout: ;
    --tw-contain-paint: ;
    --tw-contain-style:
}

/*! tailwindcss v3.4.17 | MIT License | https://tailwindcss.com
 */
*, ::before, ::after {
    box-sizing: border-box;
    border-width: 0;
    border-style: solid;
    border-color: #e5e7eb
}

::before, ::after {
    --tw-content: ""
}

html,:host {
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
    -moz-tab-size: 4;
    -o-tab-size: 4;
    tab-size: 4;
    font-family: Montserrat, sans-serif;
    font-feature-settings: normal;
    font-variation-settings: normal;
    -webkit-tap-highlight-color: transparent
}

body {
    margin: 0;
    line-height: inherit
}

abbr:where([title]) {
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted
}

h1,h2 {
    font-size: inherit;
    font-weight: inherit
}

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

button {
    font-family: inherit;
    font-feature-settings: inherit;
    font-variation-settings: inherit;
    font-size: 100%;
    font-weight: inherit;
    line-height: inherit;
    letter-spacing: inherit;
    color: inherit;
    margin: 0;
    padding: 0
}

button {
    text-transform: none
}

button,input:where([type=button]),input:where([type=reset]),input:where([type=submit]) {
    -webkit-appearance: button;
    background-color: transparent;
    background-image: none
}

:-moz-focusring {
    outline: auto
}

:-moz-ui-invalid {
    box-shadow: none
}

::-webkit-inner-spin-button,::-webkit-outer-spin-button {
    height: auto
}

::-webkit-search-decoration {
    -webkit-appearance: none
}

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit
}

h1,h2,p {
    margin: 0
}

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

button {
    cursor: pointer
}

:disabled {
    cursor: default
}

img,svg {
    display: block;
    vertical-align: middle
}

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

[hidden]:where(:not([hidden=until-found])) {
    display: none
}

.size-4 {
    width: 1rem;
    height: 1rem
}

.bg-black {
    --tw-bg-opacity: 1;
    background-color: rgb(0 0 0 / var(--tw-bg-opacity, 1))
}

@media (max-width: 1200px) {
    .desktop {
        display:none!important
    }
}

@media (min-width: 1201px) {
    .devices {
        display:none!important
    }
}

.picture,
.picture[data-astro-cid-s5f3uvtz] {
    overflow: hidden;
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
}

.picture__img,
.picture__img[data-astro-cid-s5f3uvtz] {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.text[data-astro-cid-py3iw5hh] {
    font-family: Montserrat, sans-serif;
    font-weight: 400;
    transition: .4s cubic-bezier(.33,1,.68,1)
}

.text_variant_16[data-astro-cid-py3iw5hh] {
    font-size: 16px;
    line-height: 150%
}

@media (max-width: 1200px) {
    .text_variant_16[data-astro-cid-py3iw5hh] {
        font-size:.8125rem
    }
}

.text_color_white[data-astro-cid-py3iw5hh] {
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity, 1))
}

.text_weight-400[data-astro-cid-py3iw5hh] {
    font-weight: 400
}

.main-hero,
.main-hero[data-astro-cid-ee2rbf7r] {
    position: relative;
    box-sizing: border-box;
    /* Extra height offsets hero-cards pull-up so first screen stays full-bleed */
    height: calc(100vh + 10rem);
    min-height: calc(100vh + 10rem);
    overflow: hidden;
    padding-top: 0;
}

@supports (height: 100dvh) {
    .main-hero,
    .main-hero[data-astro-cid-ee2rbf7r] {
        height: calc(100dvh + 10rem);
        min-height: calc(100dvh + 10rem);
    }
}

@supports (height: 100svh) {
    .main-hero,
    .main-hero[data-astro-cid-ee2rbf7r] {
        height: calc(100svh + 10rem);
        min-height: calc(100svh + 10rem);
    }
}

@media (max-width: 1200px) {
    .main-hero,
    .main-hero[data-astro-cid-ee2rbf7r] {
        height: calc(100vh + 6rem);
        min-height: calc(100vh + 6rem);
        padding-top: 0;
    }

    @supports (height: 100svh) {
        .main-hero,
        .main-hero[data-astro-cid-ee2rbf7r] {
            height: calc(100svh + 6rem);
            min-height: calc(100svh + 6rem);
        }
    }
}

@media (max-width: 1023px) {
    .main-hero,
    .main-hero[data-astro-cid-ee2rbf7r] {
        padding-top: 0;
    }
}

@media (max-width: 767px) {
    .main-hero,
    .main-hero[data-astro-cid-ee2rbf7r] {
        height: calc(100vh + 4rem);
        min-height: calc(100vh + 4rem);
    }

    @supports (height: 100svh) {
        .main-hero,
        .main-hero[data-astro-cid-ee2rbf7r] {
            height: calc(100svh + 4rem);
            min-height: calc(100svh + 4rem);
        }
    }
}

.main-hero .container,
.main-hero[data-astro-cid-ee2rbf7r] .container {
    position: relative;
    z-index: 2;
    height: 100%;
}

.main-hero[data-astro-cid-ee2rbf7r] .container.container_big {
    padding-inline:1.5rem}

@media (max-width: 1200px) {
    .main-hero[data-astro-cid-ee2rbf7r] .dropdown {
        margin-bottom:1.5rem
    }

    .main-hero[data-astro-cid-ee2rbf7r] .dropdown__menu {
        box-sizing: border-box;
        width: 10.0625rem!important
    }

    .main-hero[data-astro-cid-ee2rbf7r] .dropdown__menu ul[data-astro-cid-ee2rbf7r] {
        width: 100%
    }

    .main-hero[data-astro-cid-ee2rbf7r] .dropdown__menu ul[data-astro-cid-ee2rbf7r] li[data-astro-cid-ee2rbf7r] {
        width: 100%;
        height: 2.5rem
    }

    .main-hero[data-astro-cid-ee2rbf7r] .dropdown__menu ul[data-astro-cid-ee2rbf7r] li[data-astro-cid-ee2rbf7r] a[data-astro-cid-ee2rbf7r] {
        padding-block:.75rem}
}

.main-hero__title[data-astro-cid-ee2rbf7r] {
    max-width: 56.75rem
}

@media (max-width: 1200px) {
    .main-hero__title[data-astro-cid-ee2rbf7r] {
        max-width:100%;
        margin-top: 1.5rem
    }
}

.main-hero__num[data-astro-cid-ee2rbf7r] {
    position: absolute;
    bottom: 1.5rem;
    left: 2rem;
    opacity: .2
}

@media (max-width: 1200px) {
    .main-hero__num[data-astro-cid-ee2rbf7r] {
        bottom:1.5rem;
        left: 1.5rem
    }
}

.main-hero__bg,
.main-hero__bg[data-astro-cid-ee2rbf7r] {
    position: absolute;
    z-index: 1;
    inset: 0;
    height: 100%;
}

.main-hero[data-astro-cid-ee2rbf7r] h1 {
    margin-top: -15px;
    padding-top: 15px
}

.main-hero_sticky,
.main-hero_sticky[data-astro-cid-ee2rbf7r] {
    position: sticky;
    top: 0;
    z-index: 0;
}

.hero-swiper {
    width: 100%;
    height: 100%;
}

.hero-swiper__slide {
    position: relative;
    height: 100%;
    box-sizing: border-box;
    padding-top: calc(84px + 2.5rem);
    overflow: hidden;
    background: #000;
}

.hero-swiper__slide::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.55) 0%,
        rgba(0, 0, 0, 0.45) 45%,
        rgba(0, 0, 0, 0.65) 100%
    );
}

.hero-swiper__slide > .container {
    position: relative;
    z-index: 2;
}

@media (max-width: 1200px) {
    .hero-swiper__slide {
        padding-top: calc(84px + 1.5rem);
    }
}

@media (max-width: 1023px) {
    .hero-swiper__slide {
        padding-top: calc(56px + 1.25rem);
    }
}

.hero-swiper .main-hero__bg .picture__img,
.hero-swiper .main-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-swiper__navs {
    position: absolute;
    right: 1.5rem;
    bottom: calc(10rem + 1.5rem);
    z-index: 5;
    display: flex;
    gap: 12px;
}

.hero-swiper__nav {
    position: static;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin: 0;
    padding: 0;
    color: #fff;
    background: rgba(70, 70, 70, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.95);
    border-radius: 0;
    cursor: pointer;
    transition: background 0.2s ease;
}

.hero-swiper__nav:hover {
    background: rgba(90, 90, 90, 0.7);
}

.hero-swiper__nav::after {
    display: none;
    content: none;
}

.hero-swiper__nav svg {
    display: block;
    width: 12px;
    height: 20px;
}

@media (max-width: 1200px) {
    .hero-swiper__navs {
        bottom: calc(6rem + 1.25rem);
        right: 1.25rem;
    }
}

@media (max-width: 767px) {
    .hero-swiper__navs {
        bottom: calc(4rem + 1rem);
        right: 1rem;
        gap: 8px;
    }

    .hero-swiper__nav {
        width: 44px;
        height: 44px;
    }
}

.margin-top_variant-60[data-astro-cid-qqdlizrt] {
    margin-top: 3.75rem
}

@media (max-width: 1200px) {

    .margin-top_variant-60[data-astro-cid-qqdlizrt] {
        margin-top: 2rem
    }
}

.risk-process__img-wrapper[data-astro-cid-nqnjwb5y] &.tooltip_size-32 .tooltip__dot {
    flex-shrink: 0;
    width: 100%;
    height: 100%
}

@media (max-width: 767px) {

    .strategy-jd[data-astro-cid-srl2zt27] .w-full:has(.picture) {
        overflow: auto;
        width: 100vw;
        margin-left: -1.625rem;
        padding-right: 1.625rem;
        padding-left: 1.625rem;
        scrollbar-width: none;
        -ms-overflow-style: none
    }

    .strategy-jd[data-astro-cid-srl2zt27] .w-full:has(.picture)::-webkit-scrollbar {
        display: none
    }
}

@media (min-width: 1202px) and (hover: hover) and (pointer: fine) {
    .checkbox[data-astro-cid-elhflciz]:hover input[data-astro-cid-elhflciz]:not(:checked)~.checkbox__box[data-astro-cid-elhflciz] {
        border-color:#000;
        background: #fff
    }
}

.checkbox[data-astro-cid-elhflciz]:has(input:disabled) {
    pointer-events: none;
    cursor: auto
}

.checkbox[data-astro-cid-elhflciz]:has(input:disabled) .checkbox__box[data-astro-cid-elhflciz] {
    opacity: .5
}

@media (min-width: 1202px) and (hover: hover) and (pointer: fine) {
    .switch[data-astro-cid-pxdhc4rx]:hover input[data-astro-cid-pxdhc4rx]:not(:checked)~.switch__toggler[data-astro-cid-pxdhc4rx] {
        --tw-border-opacity: 1;
        border-color: rgb(30 32 36 / var(--tw-border-opacity, 1))
    }

    .switch[data-astro-cid-pxdhc4rx]:hover input[data-astro-cid-pxdhc4rx]:not(:checked)~.switch__toggler[data-astro-cid-pxdhc4rx] .switch__slider[data-astro-cid-pxdhc4rx] {
        --tw-bg-opacity: 1;
        background-color: rgb(30 32 36 / var(--tw-bg-opacity, 1))
    }
}

@keyframes switch-back {
    0% {
        right: 5px;
        left: 37px;
        width: 22px
    }

    50% {
        right: 5px;
        left: 5px;
        width: 54px
    }

    to {
        width: 22px
    }
}

.switch[data-astro-cid-pxdhc4rx]:has(input:disabled) {
    pointer-events: none;
    cursor: auto;
    opacity: .4
}

.switch[data-astro-cid-pxdhc4rx] input[data-astro-cid-pxdhc4rx]:not(:checked)~.switch__toggler[data-astro-cid-pxdhc4rx] .switch__slider[data-astro-cid-pxdhc4rx] {
    animation: switch-back .5s cubic-bezier(.33,1,.68,1) forwards
}

.textarea[data-astro-cid-tf3dukr4]:has(.textarea__error.visible) .textarea__field[data-astro-cid-tf3dukr4] {
    --tw-border-opacity: 1;
    border-color: rgb(30 32 36 / var(--tw-border-opacity, 1))
}

/* Hero cards overlay section */
.hero-cards {
    position: relative;
    z-index: 2;
    margin-top: -10rem;
    padding-top: 0;
    padding-bottom: 4rem;
    background: #fff;
}

.hero-cards__overlay {
    position: absolute;
    top: -8rem;
    left: 0;
    width: 100%;
    height: 14rem;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.55) 42%,
        #fff 100%
    );
    pointer-events: none;
}

.hero-cards .container {
    position: relative;
    z-index: 1;
}

.hero-cards__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
gap: 15px;
    max-width: 1248px;
    margin: auto;
    padding: 20px 0;
}

.hero-card {
    position: relative;
    display: block;
    aspect-ratio: 4 / 3;
    border-radius: 1.5rem;
    overflow: hidden;
    text-decoration: none;
    height: 200px;
    width: 100%;
    display: block;
}

.hero-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.5) 100%);
    transition: opacity 0.3s;
}

.hero-card:hover::after {
    opacity: 0.75;
}

.hero-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.hero-card:hover .hero-card__img {
    transform: scale(1.05);
}

.hero-card__img--p1 { object-position: 10% center; }
.hero-card__img--p2 { object-position: 30% center; }
.hero-card__img--p3 { object-position: 50% center; }
.hero-card__img--p4 { object-position: 70% center; }
.hero-card__img--p5 { object-position: 85% center; }
.hero-card__img--p6 { object-position: 20% 30%; }
.hero-card__img--p7 { object-position: 60% 40%; }

.hero-card__title {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 1;
    max-width: calc(100% - 5rem);
    font-weight: 600;
    font-size: 1.125rem;
    line-height: 1.3;
    color: #fff;
}

.hero-card__badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 1;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    font-weight: 500;
    font-size: 0.875rem;
    line-height: 1.3;
    color: #181d1d;
    background: rgba(255, 255, 255, 0.95);
}

.hero-card_promo {
    background: linear-gradient(135deg, #f0f7f2 0%, #e8f5ec 100%);
}

.hero-card_promo::after {
    display: none;
}

.hero-card__promo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    height: 100%;
    padding: 1.5rem;
}

.hero-card__promo-text {
    font-weight: 600;
    font-size: 1.125rem;
    line-height: 1.35;
    color: #181d1d;
}

.hero-card__promo-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.625rem 1.25rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.875rem;
    color: #fff;
    background: #045c25;
    transition: background 0.3s;
}

.hero-card_promo:hover .hero-card__promo-btn {
    background: #181d1d;
}

@media (max-width: 1200px) {
    .hero-cards {
        margin-top: -6rem;
        padding-top: 0;
        padding-bottom: 3rem;
    }

    .hero-cards__overlay {
        top: -5rem;
        height: 10rem;
    }

    .hero-cards__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .hero-card__title {
        font-size: 1rem;
    }
}

@media (max-width: 767px) {
    .hero-cards {
        margin-top: -4rem;
        padding-top: 0;
    }

    .hero-cards__overlay {
        top: -3rem;
        height: 7rem;
    }

    .hero-cards__grid {
        grid-template-columns: 1fr;
    }

    .hero-card {
        aspect-ratio: 16 / 9;
    }
}

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
html {
    line-height: 1.15;
    -webkit-text-size-adjust: 100%
}

body {
    margin: 0
}

a {
    background-color: rgba(0,0,0,0)
}

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit
}

html,body,div,a,section {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline
}

section {
    display: block
}

body {
    line-height: 1
}

[data-aos] {
    pointer-events: none
}

[data-aos].aos-animate {
    pointer-events: auto
}

@media screen {
    html:not(.no-js) [data-aos^=fade][data-aos^=fade] {
        opacity: 0;
        transition-property: opacity,-webkit-transform;
        transition-property: opacity,transform;
        transition-property: opacity,transform,-webkit-transform
    }

    html:not(.no-js) [data-aos^=fade][data-aos^=fade].aos-animate {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }

    html:not(.no-js) [data-aos=fade-up] {
        -webkit-transform: translate3d(0,100px,0);
        transform: translate3d(0,100px,0)
    }
}

:root {
    --f-spinner-width: 36px;
    --f-spinner-height: 36px;
    --f-spinner-color-1: rgba(0, 0, 0, 0.1);
    --f-spinner-color-2: rgba(17, 24, 28, 0.8);
    --f-spinner-stroke: 2.75
}

:root {
    --f-button-width: 40px;
    --f-button-height: 40px;
    --f-button-border: 0;
    --f-button-border-radius: 0;
    --f-button-color: #374151;
    --f-button-bg: #f8f8f8;
    --f-button-hover-bg: #e0e0e0;
    --f-button-active-bg: #d0d0d0;
    --f-button-shadow: none;
    --f-button-transition: all 0.15s ease;
    --f-button-transform: none;
    --f-button-svg-width: 20px;
    --f-button-svg-height: 20px;
    --f-button-svg-stroke-width: 1.5;
    --f-button-svg-fill: none;
    --f-button-svg-filter: none;
    --f-button-svg-disabled-opacity: 0.65
}

.f-button:focus:not(:focus-visible) {
    outline: none
}

.f-button:focus-visible {
    outline: none;
    box-shadow: inset 0 0 0 var(--f-button-outline, 2px) var(--f-button-outline-color, var(--f-button-color))
}

.f-thumbs__slide__button:focus:not(:focus-visible) {
    outline: none
}

.f-thumbs__slide__button:focus-visible {
    outline: none;
    opacity: var(--f-thumb-selected-opacity)
}

.fancybox__toolbar :focus-visible {
    z-index: 1
}

:fullscreen [data-fancybox-toggle-fullscreen] svg g:first-child {
    display: none
}

:fullscreen [data-fancybox-toggle-fullscreen] svg g:last-child {
    display: flex
}

/* Main contents section */
.main-contents {
    position: relative;
    z-index: 1;
    padding-bottom: 73px;
    background: #fff;
}

.main-contents__container {
    width: 100%;
    max-width: 1856px;
    margin: 0 auto;
    padding: 0 40px;
    box-sizing: border-box;
}

.main-contents__title {
    margin-bottom: 40px;
    font-weight: 700;
    font-size: 24px;
    line-height: 120%;
    letter-spacing: -0.01em;
    color: #045c25;
}

.main-contents__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.main-contents__card-content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 194px;
    padding: 20px;
    background: #f4f4f4;
    text-decoration: none;
    overflow: hidden;
}

.main-contents__decor {
    position: absolute;
    top: 0;
    right: 0;
    pointer-events: none;
}

.main-contents__card-number {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 2;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 80%;
    letter-spacing: -0.03em;
    background: linear-gradient(180deg, #045c25 11.11%, #69da91 77.47%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.main-contents__card-subtext {
    position: relative;
    z-index: 2;
    max-width: 85%;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 120%;
    letter-spacing: -0.06em;
    text-align: center;
    text-transform: uppercase;
    color: #2a2e2b;
}

.main-contents__card-btn {
    position: absolute;
    right: 20px;
    bottom: 20px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #045c25;
    overflow: hidden;
    transition: background-color 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}

.main-contents__card-btn::before {
    content: "";
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    background-color: #2a2e2b;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}

.main-contents__card-content:hover .main-contents__card-btn::before {
    transform: translateY(0);
}

.main-contents__card-content:hover .main-contents__card-btn .main-contents__card-arrow svg {
    animation: MoveUpInitial 0.2s forwards, MoveUpEnd 0.2s forwards 0.2s;
}

.main-contents__card-arrow {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.main-contents__card-arrow svg {
    display: block;
    width: 12.5px;
    height: 12.5px;
}

@media (max-width: 1279px) {
    .main-contents__list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .main-contents__container {
        padding: 0 20px;
    }

    .main-contents__title {
        margin-bottom: 20px;
    }

    .main-contents__list {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .main-contents__card-content {
        width: 100%;
        height: auto;
        min-height: 200px;
    }

    .main-contents__card-number {
        font-size: 32px;
    }

    .main-contents__card-btn {
        width: 32px;
        height: 32px;
    }

    .main-contents__card-arrow svg {
        width: 10px;
        height: 10px;
    }

    .main-contents__card-subtext {
        margin-top: 12px;
        font-size: 16px;
    }
}

@media (max-width: 500px) {
    .main-contents__list {
        grid-template-columns: 1fr;
    }
}

/* Logo marquee */
.logo-marquee {
    position: relative;
    z-index: 1;
    padding: 64px 0 24px;
    background: #fff;
}

.logo-marquee__viewport {
    overflow: hidden;
    width: 100%;
    padding: 8px 0;
}

.logo-marquee__track {
    display: flex;
    width: max-content;
    animation: logo-marquee-scroll 35s linear infinite;
}

.logo-marquee__track:hover {
    animation-play-state: paused;
}

.logo-marquee__group {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    gap: 24px;
    padding-right: 24px;
}

.logo-marquee__item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 13rem;
    height: 6.75rem;
    padding: 1.5rem;
    background-color: #fff;
    border-radius: 0.75rem;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.logo-marquee__item img {
    display: block;
    max-width: 100%;
    max-height: calc(6.75rem - 3rem);
    width: auto;
    height: auto;
    object-fit: contain;
}

@keyframes logo-marquee-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@media (prefers-reduced-motion: reduce) {
    .logo-marquee__track {
        animation: none;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
        gap: 24px;
    }

    .logo-marquee__group[aria-hidden="true"] {
        display: none;
    }
}

@media (max-width: 767px) {
    .logo-marquee {
        padding: 48px 0 32px;
    }

    .logo-marquee__item {
        width: 10.5rem;
        height: 5.5rem;
        padding: 1.25rem;
        border-radius: 0.75rem;
    }

    .logo-marquee__item img {
        max-height: calc(5.5rem - 2.5rem);
    }
}

/* ========== Main page: press ========== */

.container {
    padding: 0 3.75rem;
}

@media (max-width: 1279px) {
    .container {
        padding: 0 1.25rem;
    }
}

@media (min-width: 1280px) {
    .only-mobile {
        display: none;
    }
}

@media (max-width: 1279px) {
    .only-desktop {
        display: none;
    }
}

.link {
    margin-top: .5rem;
    margin-bottom: .5rem;
    margin-left: .5rem;
    display: flex;
    align-items: center
}

.link:hover .link__icon::before {
    background-color: #008c33;
    transform: translate(-50%, -50%) scale(1.1)
}

.link--black .link__text {
    color: #181d1d
}

.link--left .link__svg {
    transform: rotate(90deg)
}

.link__icon {
    margin-right: 1.5rem;
    position: relative;
    z-index: 0;
    display: flex;
    align-items: center;
    justify-content: center
}

@media(max-width: 1279px) {
    .link__icon {
        margin-right:1.25rem
    }
}

.link__icon::before {
    --size: 1.75rem;
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    width: var(--size);
    height: var(--size);
    border-radius: 50%;
    background-color: #006525;
    transition: .5s cubic-bezier(0.33, 1, 0.68, 1)
}

.link__svg {
    --size: 0.75rem;
    width: var(--size);
    height: var(--size);
    transform: rotate(-90deg)
}

.link__svg_rotate90 {
    transform: rotate(90deg)
}

.link__text {
    color: #fff;
    font-weight: 500
}

@media(max-width: 1279px) {
    .link__text {
        font-size:0.875rem
    }
}

.press-card {
    position: relative;
    z-index: 0;
    display: block;
    height: 27.1875rem;
    border: 1px solid #e9e9e9;
    overflow: hidden;
    background: #181d1d;
    transition: border-color .5s cubic-bezier(0.33, 1, 0.68, 1)
}

@media(max-width: 1279px) {
    .press-card {
        width:18.75rem;
        height: 17.3125rem;
        flex-shrink: 0
    }
}

.press-card__media {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.press-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.press-card__media--p1 img { object-position: 20% center; }
.press-card__media--p2 img { object-position: 45% center; }
.press-card__media--p3 img { object-position: 65% center; }
.press-card__media--p4 img { object-position: 80% 30%; }

.press-card__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.5) 0%,
        rgba(0, 0, 0, 0.2) 40%,
        rgba(0, 0, 0, 0.35) 100%
    );
}

.press-card:hover {
    border-color: rgba(0,0,0,0)
}

.press-card:hover .press-card__hover {
    transform: none
}

.press-card:hover .press-card__title,.press-card:hover .press-card__num,.press-card:hover .press-card__text {
    color: #fff
}

.press-card:hover .press-card__bot {
    background: transparent
}

.press-card:hover .press-card__wrapper {
    border-color: hsla(0,0%,100%,.2)
}

.press-card:hover .press-card__icon {
    background-color: #006525
}

.press-card:hover .press-card__svg path {
    stroke: #fff
}

@media(max-width: 1279px) {
    .press-card--small {
        width:100%;
        min-height: 9.5625rem;
        height: 100%
    }

    .press-card--small .press-card__container {
        padding: 1.25rem 1.25rem .75rem
    }

    .press-card--small .press-card__label {
        margin: 0 .625rem .625rem
    }
}

.press-card__hover {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    transform: translateY(110%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    background-color: #006525;
    transition: transform .5s cubic-bezier(0.33, 1, 0.68, 1)
}

.press-card__bg {
    width: 10.3125rem;
    height: 17.4375rem
}

.press-card__content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between
}

.press-card__container {
    padding: 1.25rem
}

.press-card__title {
    color: #fff;
    transition: color .5s cubic-bezier(0.33, 1, 0.68, 1);
    font-size: 1.375rem;
    line-height: 1.3
}

.press-card__bot {
    background: #fff;
    transition: background-color .5s cubic-bezier(0.33, 1, 0.68, 1)
}

@media(max-width: 1279px) {
    .press-card__title {
        font-size:1rem
    }
}

.press-card__label {
    margin: 1.25rem;
    padding: .5rem .9375rem;
    display: inline-block;
    color: #fff;
    font-family: Montserrat;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    font-size: 0.5rem;
    line-height: 1.1;
    background: #181d1d;
    border-radius: 3.125rem
}

@media(max-width: 1279px) {
    .press-card__label {
        margin:.625rem;
        padding: .375rem .75rem
    }
}

@media(max-width: 1279px) {
    .press-card__label {
        font-size:0.375rem
    }
}

.press-card__wrapper {
    padding: .625rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #e9e9e9;
    transition: border-color .5s cubic-bezier(0.33, 1, 0.68, 1)
}

@media(max-width: 1279px) {
    .press-card__wrapper {
        padding:.375rem .625rem .1875rem
    }
}

.press-card__date {
    display: flex;
    color: #006525;
    font-family: Montserrat;
    text-transform: uppercase;
    letter-spacing: -0.01em
}

@media(max-width: 1279px) {
    .press-card__date {
        align-items:center
    }
}

.press-card__num {
    transition: color .5s cubic-bezier(0.33, 1, 0.68, 1);
    font-size: 2.75rem;
    line-height: 1.1
}

@media(max-width: 1279px) {
    .press-card__num {
        font-size:1.75rem
    }
}

.press-card__text {
    margin-left: .5rem;
    margin-top: .4375rem;
    max-width: 4.3125rem;
    font-size: 0.625rem;
    line-height: 1.1;
    transition: color .5s cubic-bezier(0.33, 1, 0.68, 1)
}

@media(max-width: 1279px) {
    .press-card__text {
        margin-top:0
    }
}

@media(max-width: 1279px) {
    .press-card__text {
        max-width:none;
        font-size: 0.4375rem
    }
}

.press-card__icon {
    --size: 1.75rem;
    width: var(--size);
    height: var(--size);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #e6e6e6;
    transition: background-color .5s cubic-bezier(0.33, 1, 0.68, 1)
}

@media(max-width: 1279px) {
    .press-card__icon {
        --size: 1.25rem
    }
}

.press-card__svg {
    --size: 0.75rem;
    width: var(--size);
    height: var(--size);
    transform: rotate(-90deg)
}

@media(max-width: 1279px) {
    .press-card__svg {
        --size: 0.5625rem
    }
}

.press-card__svg path {
    stroke: #181d1d;
    transition: .5s cubic-bezier(0.33, 1, 0.68, 1)
}

.main-page__title {
    font-family: Montserrat;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    font-size: 2.875rem;
    line-height: 1.2
}

@media(max-width: 1279px) {
    .main-page__title {
        font-size:1.125rem
    }
}

.main-page__press {
    position: relative;
    z-index: 1;
    background: #fff;
    /* padding instead of margin — sticky hero must not show through gaps */
    padding: 3rem 0 7.5rem;
    margin: 0;
}

@media (max-width: 1279px) {
    .main-page__press {
        padding: 1.5rem 0 3rem;
        margin: 0;
    }
}

.main-page__press-top {
    margin-bottom: 3.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center
}

@media(max-width: 1279px) {
    .main-page__press-top {
        margin-bottom:1.25rem
    }
}

@media(max-width: 1279px) {
    .main-page__press-btn {
        margin-top:1.25rem
    }
}

.main-page__press-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem
}

@media(max-width: 1279px) {
    .main-page__press-grid {
        display:flex;
        gap: 0;
        overflow-y: scroll;
        -ms-overflow-style: none;
        scrollbar-width: none
    }

    .main-page__press-grid::-webkit-scrollbar {
        display: none
    }
}

@media(max-width: 1279px) {
    .main-page__card:not(:first-child) {
        margin-left:.625rem
    }
}

