/*!
Theme Name: bestlime
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: bestlime
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

bestlime is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/
@font-face {
    font-family: "Onest";
    src: url("fonts/Onest-ExtraBold.woff2") format("woff2"),
        url("fonts/Onest-ExtraBold.woff") format("woff");
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Onest";
    src: url("fonts/Onest-Medium.woff2") format("woff2"),
        url("fonts/Onest-Medium.woff") format("woff");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Onest";
    src: url("fonts/Onest-Thin.woff2") format("woff2"),
        url("fonts/Onest-Thin.woff") format("woff");
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Onest";
    src: url("fonts/Onest-ExtraLight.woff2") format("woff2"),
        url("fonts/Onest-ExtraLight.woff") format("woff");
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Onest";
    src: url("fonts/Onest-Regular.woff2") format("woff2"),
        url("fonts/Onest-Regular.woff") format("woff");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Onest";
    src: url("fonts/Onest-Black.woff2") format("woff2"),
        url("fonts/Onest-Black.woff") format("woff");
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Onest";
    src: url("fonts/Onest-Bold.woff2") format("woff2"),
        url("fonts/Onest-Bold.woff") format("woff");
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Onest";
    src: url("fonts/Onest-SemiBold.woff2") format("woff2"),
        url("fonts/Onest-SemiBold.woff") format("woff");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Onest";
    src: url("fonts/Onest-Light.woff2") format("woff2"),
        url("fonts/Onest-Light.woff") format("woff");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

:root {
    --border-radius: 12px;
    --dark-green: #032e15;
    --main-font-color: #030712;
    --bg-light-color: #f3f4f6;
}

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

body {
    font-family: "Onest", sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #030712;
    background-color: #fff;
}

/* Base */
h1 {
    font-size: 80px;
    font-weight: 500;
    line-height: 1.1;
}
h2 {
    font-size: 48px;
    font-weight: 500;
    line-height: 1.15;
}
h3 {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.3;
}

@media (max-width: 991) {
    h2 {
        font-size: 40px;
        font-weight: 500;
        line-height: 1.15;
    }
}

@media (max-width: 768px) {
    h2 {
        font-size: 30px;
        font-weight: 500;
        line-height: 1.15;
    }
}

img {
    max-width: 100%;
}

p + p {
    margin-top: 15px;
}

.content h2 {
    margin-top: 30px;
    margin-bottom: 15px;
}

.content h3 {
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 24px;
    line-height: 1.3;
}
.content p {
    margin-bottom: 20px;
    line-height: 1.5;
}
.content a {
    color: #a0d73b;
    transition: all 0.3s linear;
}
.content a:hover {
    color: #032e15;
}
.content ul {
    list-style-position: inside;
    margin-bottom: 20px;
}

/* Grid */
.container {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 30px;
}
.section {
    padding: 120px 0;
}

@media (max-width: 991px) {
    .container {
        padding: 0 20px;
    }
    .section {
        padding: 90px 0;
    }
}
@media (max-width: 767px) {
    .section {
        padding: 60px 0;
    }
}

/* Nav */
.nav ul {
    display: flex;
    gap: 0 40px;
    list-style: none;
}
.nav li {
}
.nav a {
    position: relative;
    text-decoration: none;
    color: var(--dark-green);
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
}
.nav a::after {
    content: "";
    width: 100%;
    height: 1px;
    background: #000;
    position: absolute;
    left: 0;
    bottom: -5px;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}
.nav a:hover::after,
.nav a.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Headline */
.headline {
    display: grid;
    grid-template-columns: 6fr 6fr;
}
.headline__right {
    padding-left: 110px;
}

/* Button */
.button {
    display: inline-flex;
    width: fit-content;
    height: fit-content;
    gap: 10px;
    font-family: inherit;
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    text-decoration: none;
    padding: 15px 24px;
    border-radius: 25px;
    border: 1px solid transparent;
    background-color: #fff;
    cursor: pointer;
    color: #032e15;
    transition: color 0.2s linear, background-color 0.2s linear;
}

.get-in-touch {
    color: #032e15;
    border-color: #032e15;
    background-color: #fff;
    transition: all 0.2s linear;
}

.button__icon {
    width: 16px;
    height: 16px;
    stroke: #fff;
    transition: all 0.3s ease;
}

.button--primary {
    background-color: #bbf451;
    color: #35530e !important;
}

.button--primary .button__icon {
    stroke: #35530e;
}

.button:hover .button__icon {
    transform: rotate(45deg);
}

.button--primary:hover {
    background-color: #a0d73b;
    border: 1px solid #a0d73b;
    transition: all 0.2s linear;
}

.button--secondary {
    color: #35530e;
    border-color: #35530e;
    background-color: transparent;
}
.button--secondary .button__icon {
    stroke: #35530e;
}

.button--secondary:hover {
    background-color: #a0d73b;
    border: 1px solid #a0d73b;
    transition: all 0.2s linear;
}
/* Написать анимацию на кнопки... */

/* Sidebar */
.sidebar {
}
.sidebar img {
    max-width: 280px;
}
.sidebar > .button {
    margin-top: 30px;
    margin-bottom: 30px;
}

.sidebar__content {
    text-align: center;
    padding: 30px;
    border: 1px solid #e5e5e5;
    border-top: 5px solid #a2d240;
    border-radius: var(--border-radius);
}

.sidebar__row {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #e5e5e5;
}
.brand-desc .sidebar__row:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
}
.brand-desc .sidebar__row:nth-child(2) {
    margin-top: 0;
}
.page__content {
    margin-top: 120px;
}

/* Logo */
.logo {
    display: flex;
}

/* Header Phone */
.header__phone,
.drop-menu__phone {
    position: relative;
    font-size: 15px;
    font-weight: 500;
    color: var(--dark-green);
    text-decoration: none;
}
.header__phone::after,
.drop-menu__phone::after {
    content: "";
    width: 100%;
    height: 1px;
    background: #000;
    position: absolute;
    left: 0;
    bottom: -5px;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}
.header__phone:hover::after,
.drop-menu__phone:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}
.drop-menu__phone {
    display: flex;
    justify-self: flex-start;
    margin-bottom: 20px;
    font-size: 20px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 2px 2px 0 rgba(18, 26, 33, 0.08);
    z-index: 999;
}
.header__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 3;
    padding-top: 25px;
    padding-bottom: 25px;
    background: #fff;
    transition: all 0.3s ease;
}
.header.fixed .header__container {
    padding-top: 15px;
    padding-bottom: 15px;
}
.header__left {
    display: flex;
    align-items: center;
    gap: 60px;
}
.header__right {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 30px;
}

@media (max-width: 1280px) {
    .header__container {
        padding-top: 20px;
        padding-bottom: 20px;
    }
    .header__left {
        gap: 0 30px;
    }
    .header__phone {
        display: none;
    }
    .nav ul {
        gap: 0 30px;
    }
    .header__right {
        gap: 20px;
    }
}

@media (max-width: 767px) {
    .header-cta-btn {
        display: none !important;
    }
}
@media (max-width: 576px) {
    .header__button {
        display: none;
    }
}
/*
    Показывать кнопку и прятать навигацию начиная с 991Px
*/
.drop-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 100dvh;
    overflow: auto;
    padding: 0 20px 60px 20px;
    transform: translateY(-200%);
    z-index: 2;
    background: #fff;
    transition: transform 0.3s ease;
}

.drop-menu.active {
    transform: translateY(0);
}

.mobile-nav {
    padding: 40px 0;
}

.mobile-nav ul {
    display: flex;
    flex-direction: column;
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-nav li {
    padding: 24px 0;
    border-bottom: 1px solid #d4dde6;
}

.mobile-nav a {
    line-height: 1.2;
    font-size: 32px;
    font-weight: 600;
    text-decoration: none;
    color: #000;
}

.mobile-nav a:hover {
    color: #000;
}

/* Button menu (open/close) */
.btn-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    padding: 12px;
    border: 0;
    border-radius: 20px;
    background: #eaeef2;
}

.btn-menu-icon {
    width: 16px;
    height: 16px;
}

.burger {
    display: none;
    opacity: 0;
    visibility: hidden;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    width: 40px;
    height: 40px;
    padding: 12px;
    position: relative;
    cursor: pointer;
    z-index: 1100;
    border-radius: 20px;
    border: 0;
    background: #eaeef2;
}

.burger span {
    display: block;
    height: 2px;
    width: 16px;
    background: #000;
    border-radius: 1px;
    transition: all 0.3s ease;
}

.burger.active span:nth-child(1) {
    transform: translateY(3px) rotate(45deg);
}

.burger.active span:nth-child(2) {
    transform: translateY(-3px) rotate(-45deg);
}

@media (max-width: 991px) {
    .burger {
        display: flex;
        opacity: 1;
        visibility: visible;
    }
    .nav {
        display: none;
    }
}

@media (max-width: 991px) {
    .drop-menu {
        display: block;
    }
    .drop-menu .lang-switcher,
    .drop-menu .cta-button {
        display: none;
    }
}
@media (max-width: 767px) {
    .mobile-nav li {
        padding: 20px 0;
    }
    .mobile-nav a {
        font-size: 24px;
    }
    .drop-menu .lang-switcher {
        display: flex;
        width: fit-content;
        margin-bottom: 20px;
    }
    .drop-menu .cta-button {
        display: block;
    }
    .drop-menu .lang__link:last-child {
        margin-left: 15px;
    }
}

/* POPUP */
.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: -1;
}

.popup--active {
    opacity: 1;
    visibility: visible;
    z-index: 10000;
}

.popup--closing {
    opacity: 0 !important;
    visibility: hidden !important;
}

.popup__content {
    background: white;
    padding: 30px;
    border-radius: 10px;
    max-width: 600px;
    width: 90%;
    position: relative;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.popup--active .popup__content {
    transform: scale(1);
    opacity: 1;
}

.popup__close {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
}

.popup__close .button__icon {
    stroke: black;
    stroke-width: 0.5px;
}

.popup__close:hover .button__icon {
    fill: #87daec;
    stroke: #87daec;
}

.popup__title {
    font-size: 24px;
}

/* Section - About */
.about__wrap {
    display: grid;
    grid-template: 1fr / 6fr 6fr;
    gap: 30px;
    align-items: center;
}
.about__img {
    border-radius: var(--border-radius);
}
.about__desc {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    padding-left: 30px;
}
@media (max-width: 991px) {
    .about__wrap {
        grid-template: 1fr / 1fr;
        gap: 20px;
    }
    .about__img {
        width: 100%;
        max-height: 600px;
        object-fit: cover;
    }
    .about__desc {
        padding-left: 0;
    }
}

/* Share buttons */
.share {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 15px;
}
.share__button {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    border: 1px solid #eaeef2;
    background-color: transparent;
    border-radius: 21px;
    transition: all 0.3s ease;
    cursor: pointer;
}
.share__icon {
    width: 20px;
    height: 20px;
    fill: #728899;
    transition: fill 0.3s ease;
}
.share__caption {
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    background: #333;
    color: #fff;
    padding: 6px 10px;
    border-radius: 4px;
    font-size: 12px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    white-space: nowrap;
    z-index: 10;
}
.share__caption.show {
    opacity: 1;
}
.js-share-x .share__icon {
    padding: 3px 0 0 3px;
}
.share__button:hover {
    background-color: #bbf451;
    border-color: #bbf451;
}
.share__button:hover .share__icon {
    fill: #35530e;
}

/* Section - Brands */
.brands {
    background-color: var(--dark-green);
}
.brands .headline {
    color: #fff;
}
.brands-list {
    display: grid;
    grid-template: 1fr 1fr / repeat(4, 3fr);
    gap: 30px;
    margin-top: 60px;
}
.brands .button {
    margin-top: 30px;
}

.brand-card {
    display: inline-flex;
    line-height: 1;
    background-color: #fff;
    border-radius: var(--border-radius);
}
@media (max-width: 991px) {
    .brands .headline {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .brands .headline__right {
        padding-left: 0;
    }
    .brands-list {
        gap: 20px;
    }
}
@media (max-width: 767px) {
    .brands-list {
        grid-template: repeat(3, 1fr) / repeat(3, 1fr);
    }
}
@media (max-width: 575px) {
    .brands-list {
        grid-template: repeat(4, 1fr) / repeat(2, 1fr);
    }
}

/* Section - Services */
.services__headline {
    display: grid;
    grid-template-columns: 6fr 6fr;
    gap: 30px;
}
.service__headline__right {
    padding-left: 110px;
}
.services__list {
    display: grid;
    grid-template-columns: 4fr 4fr 4fr;
    gap: 30px;
    margin-top: 60px;
}
.service-card__img {
    width: 100%;
    border-radius: var(--border-radius);
}
.service-card__title {
    margin-top: 20px;
}
.service-card__text {
    margin-top: 10px;
}
@media (max-width: 991px) {
    .services__headline {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .services__list {
        gap: 20px;
    }
    .service__headline__right {
        padding-left: 0;
    }
}
@media (max-width: 768px) {
    .service__headline__right {
        padding-left: 0;
    }
    .services__list {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }
    .service-card {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        align-items: center;
    }
}
@media (max-width: 575px) {
    .services__list {
        gap: 40px;
    }
    .service-card {
        grid-template-columns: 1fr;
        gap: 0;
        align-items: flex-start;
    }
    .service-card__img {
        max-height: 300px;
        object-fit: cover;
    }
}

/* Section - Advantages */
.advantages {
    background-color: #f3f4f6;
}
.advantages__grid-wrap {
    display: grid;
    grid-template-columns: 8fr 4fr;
    gap: 30px;
    margin-top: 60px;
}
.advantages__img {
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius);
}
.advantages__list {
    display: grid;
    grid-template-columns: 6fr 6fr;
    grid-template-rows: 1fr 1fr;
    gap: 30px;
}
.advantages-item {
    padding: 40px 30px;
    background-color: #fff;
    border-radius: var(--border-radius);
}
.advantages-item__icon-wrap {
    display: inline-block;
    width: 70px;
    height: 70px;
    padding: 20px;
    border-radius: 35px;
    background: #eefad8;
}
.advantages-item__icon {
    max-height: 100%;
    max-width: 100%;
    fill: #31572c;
}
.advantages-item__title {
    margin-top: 15px;
}
.advantages-item__text {
    margin-top: 10px;
}
@media (max-width: 991px) {
    .advantages__grid-wrap {
        grid-template-columns: 1fr;
        gap: 20px 0;
    }
    .advantages__list {
        gap: 20px;
    }
    .advantages__img {
        width: 100%;
        /* display: none; */
    }
}
@media (max-width: 767px) {
    .advantages__grid-wrap {
        margin-top: 40px;
    }
}

@media (max-width: 575px) {
    .advantages__grid-wrap {
        margin-top: 30px;
    }
    .advantages__list {
        grid-template: 1fr / 1fr;
    }
}

/* Section - Process */
.process {
    padding-bottom: 0;
}
.process__list {
    margin-top: 60px;
    border-top: 1px solid #e5e5e5;
}
.process-item {
    display: grid;
    grid-template: 1fr / 1fr 5fr 6fr;
    align-items: center;
    gap: 30px;
    padding: 30px 0;
    border-bottom: 1px solid #e5e5e5;
    color: #131827;
}
.process-item__num {
    line-height: 1.2;
    font-size: 60px;
    font-weight: 500;
}
.process-item__text {
    padding-right: 110px;
}
@media (max-width: 991px) {
    .process-item {
        grid-template: 1fr / 2fr 5fr 5fr;
        gap: 20px;
    }
    .process-item__text {
        padding-right: 0;
    }
}
@media (max-width: 768px) {
    .process__list {
        margin-top: 40px;
    }
    .process-item {
        grid-template: 1fr 1fr / 2fr 10fr;
        gap: 0 20px;
    }
    .process-item__text {
        grid-column: 2 / 3;
    }
}
@media (max-width: 575px) {
    .process__list {
        margin-top: 30px;
    }
    .process-item {
        grid-template: 1fr / 1fr;
        gap: 10px 0;
    }
    .process-item__text,
    .process-item__title {
        grid-column: 1 / 3;
    }
}

/* Section - Start */
.start {
    padding-bottom: 0;
}
.start__container {
    display: grid;
    grid-template-columns: 6fr 6fr;
    gap: 30px;
    padding: 80px;
    background: var(--dark-green) url(img/map-bg.png) no-repeat 0 0;
    background-size: cover;
    color: #fff;
    border-radius: var(--border-radius);
}
.start__text {
    font-size: 18px;
    font-weight: 400;
}
.start .button {
    margin-top: 30px;
}
@media (max-width: 991px) {
    .start__container {
        grid-template-columns: 12fr;
    }
}
@media (max-width: 767px) {
    .start__container {
        padding: 30px;
        gap: 15px;
    }
}

/* SECTION - LAST NEWS */
.last-news .headline {
    align-items: center;
    grid-template-columns: 8fr 4fr;
}
.last-news .headline a {
    justify-self: end;
}
.last-news .news-list + .button {
    display: none;
}

/* NEWS LIST */
.news-list {
    display: grid;
    grid-template-columns: 4fr 4fr 4fr;
    gap: 60px 30px;
    margin-top: 30px;
}

/* NEWS CARD */
.news-card {
    display: grid;
    grid-template: 1fr / 1fr;
    gap: 30px;
    align-self: self-start;
}
.news-card .post-thumbnail {
    display: flex;
}
.news-card .post-thumbnail img {
    width: 100%;
    border-radius: var(--border-radius);
}
.news-card__content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.news-card__info {
    display: flex;
    align-items: center;
}
.news-card__date {
    padding-right: 15px;
}
.news-card__date::after {
    content: " ";
    display: inline-block;
    width: 4px;
    height: 4px;
    vertical-align: middle;
    margin-top: -2px;
    margin-left: 15px;
    border-radius: 2px;
    background: #000;
}
.news-card__link {
    text-decoration: none;
    color: var(--main-font-color);
}

@media (max-width: 991px) {
    .news-list {
        gap: 40px 20px;
    }
    .news-card {
        gap: 20px;
    }
    .news-card__info {
        font-size: 14px;
    }
    .news-card__title {
        font-size: 18px;
    }
}
@media (max-width: 768px) {
    .last-news .headline {
        grid-template-columns: 1fr;
    }
    .last-news .headline .button {
        display: none;
    }
    .last-news .news-list + .button {
        display: inline-flex;
    }
    .news-list {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 20px;
    }
    .news-card {
        grid-template: 1fr / 1fr 1fr;
        gap: 20px;
        align-items: center;
        padding-bottom: 20px;
        border-bottom: none;
        border-bottom: 1px solid #e5e5e5;
    }
}
@media (max-width: 575px) {
    .news-card {
        grid-template: 1fr / 1fr;
        border-bottom: 0;
    }
}

/* Achievements */
.achievements {
    display: grid;
    grid-template: 1fr / 6fr 3fr 3fr;
    gap: 30px;
    margin-top: 60px;
}
.achievements__item {
    padding: 20px;
    background-color: #f3f4f6;
    border-radius: var(--border-radius);
}
.achievements__num {
    font-size: 96px;
    font-weight: 500;
}
.achievements__cap {
    margin-top: 80px;
    padding-top: 10px;
    border-top: 1px solid #e5e5e5;
}

@media (max-width: 991px) {
    .achievements {
        grid-template: 1fr / 4fr 4fr 4fr;
    }
    .achievements__num {
        font-size: 80px;
        font-weight: 500;
    }
}
@media (max-width: 768px) {
    .achievements {
        grid-template: repeat(3, 1fr) / 1fr;
    }
    .achievements__cap {
        margin-top: 40px;
        padding-top: 10px;
        border-top: 1px solid #e5e5e5;
    }
}

/* Page - Content */
.content__wrap {
    display: grid;
    grid-template: 1fr / 6fr 6fr;
    gap: 30px;
}
.content__intro {
    padding-right: 110px;
    font-size: 24px;
    font-weight: 500;
}
.content__desc {
    padding-right: 110px;
}
@media (max-width: 991px) {
    .content__intro,
    .content__desc {
        padding-right: 0;
    }
}
@media (max-width: 767px) {
    .content__wrap {
        display: grid;
        grid-template: 2fr / 1fr;
        gap: 30px;
    }
}
/* Footer */
.footer {
    background-color: var(--dark-green);
    color: #fff;
}
.footer__cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 50px 0;
    font-size: 96px;
    font-weight: 500;
    text-decoration: none;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    transition: border-color 0.3s linear;
    background-color: transparent;
    cursor: pointer;
}
.footer__cta:hover {
    border-color: #fff;
    transition: border-color 0.3s linear;
}
.footer-cta__icon {
    width: 100px;
    height: 100px;
    stroke: #fff;
    transition: all 0.3s ease;
}
.footer__cta:hover .footer-cta__icon {
    transform: rotate(45deg);
}

.footer__middle {
    display: grid;
    grid-template-columns: 6fr 3fr 3fr;
    gap: 30px;
    padding: 120px 0;
}
.footer-desc {
    padding-right: 240px;
}
.footer__title {
    color: #62a275;
}
.footer-nav ul {
    list-style: none;
}
.footer-nav li {
    margin-top: 15px;
}
.footer-nav a {
    position: relative;
    font-size: 18px;
    text-decoration: none;
    color: #fff;
}
.footer-nav a::after {
    content: "";
    width: 100%;
    height: 1px;
    background: #fff;
    position: absolute;
    left: 0;
    bottom: -5px;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}
.footer-nav a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}
.footer__bottom {
    display: grid;
    grid-template-columns: 6fr 6fr;
    padding: 25px 0;
    font-size: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #49745b;
}
.footer__bottom a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: #49745b;
    transition: color 0.3s linear;
}
.footer__bottom a::after {
    content: "";
    width: 100%;
    height: 1px;
    background: #fff;
    position: absolute;
    left: 0;
    bottom: -5px;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}
.footer__bottom a:hover {
    color: #fff;
}
.footer__bottom a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.footer__description {
    margin-top: 15px;
    color: #49745b;
}

@media (max-width: 1280px) {
    .footer-desc {
        padding-right: 30px;
    }
}

@media (max-width: 991px) {
    .footer__cta {
        padding: 40px 0;
        font-size: 64px;
    }
    .footer-cta__icon {
        width: 80px;
        height: 80px;
    }
    .footer__middle {
        grid-template-columns: 4fr 4fr 4fr;
    }
}
@media (max-width: 768px) {
    .footer__cta {
        padding: 30px 0;
        font-size: 40px;
    }
    .footer-cta__icon {
        width: 60px;
        height: 60px;
    }
    .footer__middle {
        grid-template: 1fr 1fr / 6fr 6fr;
        padding: 60px 0 0;
    }
    .footer-desc {
        order: 1;
        grid-column: 1 / 3;
        grid-row: 2 / 3;
        align-content: center;
    }
    .footer__bottom {
        grid-template: 1fr / 1fr;
    }
}
@media (max-width: 576px) {
    .footer__cta {
        padding: 20px 0;
        font-size: 24px;
    }
    .footer-cta__icon {
        width: 40px;
        height: 40px;
    }
    .footer-nav ul a {
        font-size: 16px;
    }
}

.overline {
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.section .overline {
    color: #a6a09b;
}

/* FAQ */
.faq__container {
    display: grid;
    grid-template-columns: 6fr 6fr;
    gap: 30px;
}
.faq__container > div:first-child {
    padding-right: 110px;
}
.faq__description {
    margin-top: 30px;
}

/* Accordion */
.accordion__item {
    border-bottom: 1px solid #d4dde6;
}

.accordion__header {
    padding: 16px 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.25;
    transition: background 0.3s;
}

/* .accordion__header:hover {
    background: #e2e2e2;
} */
.accordion__icon {
    margin-right: 20px;
    font-size: 45px;
    font-weight: 100;
    transition: transform 0.2s;
}

.accordion__icon--open {
    transform: rotate(180deg);
}

.accordion__content {
    max-height: 0;
    overflow: hidden;
    padding-left: 45px;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.accordion__content--open {
    margin-top: -15px;
    margin-bottom: 30px;
}

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

@media (max-width: 991px) {
    .faq__container {
        grid-template-columns: 1fr;
    }
}

/* Section - Hero */
.hero {
    min-height: 100svh;
    padding-top: 260px;
}
.hero__headline {
    width: 100%;
    max-width: 780px;
}
.hero__title {
    line-height: 1.1;
    font-size: 80px;
    font-weight: 500;
    color: #fff;
}
.hero__container {
    position: relative;
    z-index: 3;
}
.hero .hero__desc-wrap {
    display: flex;
    justify-content: flex-end;
}
.hero .hero__desc {
    max-width: 500px;
}
.hero .hero__subtitle {
    margin-top: 30px;
    line-height: 1.5;
    font-size: 24px;
    font-weight: 500;
    color: #fff;
}
.hero .hero__button {
    margin-top: 80px;
}
.hero img {
    z-index: 1;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    max-width: none;
    height: 100%;
    position: absolute;
    inset: 0%;
    border-radius: 0;
}
@media (max-width: 991px) {
    .hero .hero__headline {
        margin-bottom: 20px;
    }
    .hero .hero__title {
        font-size: 64px;
    }
    .hero .hero__subtitle {
        font-size: 20px;
    }
}
@media (max-width: 767px) {
    .hero .hero__title {
        font-size: 54px;
    }
    .hero .hero__subtitle {
        font-size: 18px;
    }
    .hero .hero__desc-wrap {
        display: block;
    }
}
@media (max-width: 480px) {
    .hero .hero__title {
        font-size: 40px;
    }
}

.hero-dark {
    position: relative;
    margin-bottom: 320px;
    color: #fff;
    background-color: #032e15;
}
.hero-dark::before {
    content: "";
    background: url(img/hero-dec-left.svg) no-repeat left center;
    background-size: cover;
    position: absolute;
    left: 40px;
    bottom: 0;
    display: block;
    width: 340px;
    height: 100%;
}
.hero-dark::after {
    content: "";
    background: url(img/hero-dec-right.svg) no-repeat left center;
    display: block;
    width: 300px;
    height: 100px;
    position: absolute;
    right: 0;
    bottom: 319px;
}
.hero-dark__top {
    position: relative;
    padding-top: 240px;
    padding-bottom: 380px;
    z-index: 1;
}
.hero-dark__headline {
    display: grid;
    grid-template-columns: 7fr 5fr;
    gap: 30px;
    align-items: start;
}
.hero-dark__title {
    margin-bottom: 0;
    line-height: 1.15;
    font-size: 80px;
    font-weight: 500;
}
.hero-dark__text {
    margin-bottom: 60px;
    line-height: 1.5;
    font-size: 24px;
    font-weight: 500;
}
.hero-dark__bottom {
    position: absolute;
    height: 640px;
    inset: auto 0 -320px 0;
    overflow: hidden;
    z-index: 2;
}
.hero-dark__img-container {
    background-color: #f1f5f9;
    border-top-left-radius: var(--border-radius);
    border-bottom-left-radius: var(--border-radius);
    max-width: 1290px;
    height: 100%;
    margin: 0 auto;
    position: relative;
    overflow: visible;
    padding-left: 0;
    padding-right: 0;
}
.hero-dark__img-container .post-thumbnail {
    border-top-left-radius: var(--border-radius);
    border-bottom-left-radius: var(--border-radius);
    width: 100vw;
    height: 100%;
    position: static;
    inset: auto auto -44rem 0%;
    overflow: hidden;
    z-index: 3;
}
.hero-dark__img-container img {
    aspect-ratio: auto;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 100%;
}
@media (max-width: 1350px) {
    .hero-dark__bottom {
        inset: auto 0 -320px 30px;
    }
}
@media (max-width: 991px) {
    .hero-dark {
        margin-bottom: 160px;
    }
    .hero-dark__top {
        padding-top: 180px;
        padding-bottom: 220px;
    }
    .hero-dark__bottom {
        height: 320px;
        inset: auto 0 -160px 20px;
    }
    .hero-dark__title {
        font-size: 60px;
    }
    .hero-dark__text {
        font-size: 18px;
    }
}
@media (max-width: 767px) {
    .hero-dark {
        margin-bottom: 130px;
    }
    .hero-dark__top {
        padding-top: 140px;
        padding-bottom: 180px;
    }
    .hero-dark__bottom {
        height: 260px;
        inset: auto 0 -130px 20px;
    }
    .hero-dark__headline {
        grid-template-columns: none;
        gap: 15px;
    }
    .hero-dark__title {
        font-size: 48px;
    }
}
.hero-dark--noimg {
    margin-bottom: 0;
}
.hero-dark--noimg .hero-dark__top {
    padding-bottom: 140px;
    margin-bottom: 0;
}
@media (max-width: 991px) {
    .hero-dark--noimg .hero-dark__top {
        padding-bottom: 80px;
    }
}
@media (max-width: 767px) {
    .hero-dark--noimg .hero-dark__top {
        padding-bottom: 40px;
    }
}

.hero-light {
    position: relative;
    margin-bottom: 320px;
    color: #fff;
    background-color: #f1f5f9;
}
.hero-light__top {
    padding-top: 240px;
    padding-bottom: 380px;
}
.hero-light__headline {
    max-width: 705px;
}
.hero-light__title {
    margin-bottom: 0;
    line-height: 1.15;
    font-size: 80px;
    font-weight: 500;
}
.hero-light__text {
    margin-bottom: 60px;
    line-height: 1.3;
    font-size: 24px;
    font-weight: 500;
}
.hero-light__bottom {
    position: absolute;
    height: 640px;
    inset: auto 0 -320px 0;
    padding-left: 20px;
    overflow: hidden;
    z-index: 2;
}
.hero-light__img-container {
    background-color: #f1f5f9;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
    max-width: 1190px;
    height: 100%;
    margin: 0 auto;
    position: relative;
    overflow: visible;
    padding-left: 0;
    padding-right: 0;
}
.hero-light__img-wrap {
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
    width: 100vw;
    height: 100%;
    position: static;
    inset: auto auto -44rem 0%;
    overflow: hidden;
    z-index: 3;
}
.hero-light__img {
    aspect-ratio: auto;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 100%;
}
@media (max-width: 991px) {
    .hero-light {
        margin-bottom: 160px;
    }
    .hero-light__top {
        padding-top: 180px;
        padding-bottom: 220px;
    }
    .hero-light__bottom {
        height: 320px;
        inset: auto 0 -160px 0;
    }
    .hero-light__title {
        font-size: 64px;
    }
    .hero-light__text {
        font-size: 18px;
    }
}
@media (max-width: 767px) {
    .hero-light {
        margin-bottom: 130px;
    }
    .hero-light__top {
        padding-top: 140px;
        padding-bottom: 180px;
    }
    .hero-light__bottom {
        height: 260px;
        inset: auto 0 -130px 0;
    }
    .hero-light__headline {
        grid-template-columns: none;
        gap: 15px;
    }
    .hero-light__title {
        font-size: 48px;
    }
}
.hero-light--noimg {
    margin-bottom: 0;
}
.hero-light--noimg .hero-light__top {
    padding-bottom: 140px;
    margin-bottom: 0;
}
@media (max-width: 991px) {
    .hero-light--noimg .hero-light__top {
        padding-bottom: 80px;
    }
}
@media (max-width: 767px) {
    .hero-light--noimg .hero-light__top {
        padding-bottom: 40px;
    }
}
.button-down {
    display: flex;
    width: -moz-fit-content;
    width: fit-content;
    padding: 14px;
    margin-top: 60px;
    background: #fff;
    border: 1px solid #fff;
    border-radius: 24px;
    transition: all 0.3s ease;
    cursor: pointer;
}
.button-down__icon {
    width: 18px;
    height: 18px;
    animation: arrowBounce 0.6s linear 0s infinite alternate;
    -webkit-animation: arrowBounce 0.6s linear 0s infinite alternate;
}
.button-down:hover {
    border-color: #bbf451;
    background-color: #bbf451;
}
@keyframes arrowBounce {
    0% {
        transform: translate(0px, 3px);
        -webkit-transform: translate(0px, 3px);
    }
    100% {
        transform: translate(0px, -3px);
        -webkit-transform: translate(0px, -3px);
    }
}

.hero-dark--simple {
    margin-bottom: 0;
}
.hero-dark--simple .hero-dark__top {
    padding-bottom: 120px;
}
.hero-dark--simple::after {
    bottom: -1px;
}
.hero-dark--news::after {
    bottom: 300px;
}
.hero-dark--news h1 {
    padding-right: 20px;
    font-size: 48px;
    line-height: 1.15;
}

@media (max-width: 991px) {
    .hero-dark::before {
        content: none;
    }
    .hero-dark:after {
        bottom: 140px;
    }
}
@media (max-width: 768px) {
    .hero-dark:after {
        bottom: 120px;
    }
}

/* PAGE - BRANDS */
.page-brands .brands-list {
    margin-top: 0;
    gap: 40px 30px;
    grid-template: auto / repeat(4, 1fr);
}
.page-brands .brand-card {
    display: block;
}
.brand-card__img {
    display: flex;
    line-height: 1;
    border: 1px solid #e5e5e5;
    border-radius: var(--border-radius);
}
.brand-card__title {
    display: inline-block;
    margin-top: 10px;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
    text-decoration: none;
    color: var(--main-font-color);
}
@media (max-width: 991px) {
    .page-brands .brands-list {
        gap: 40px 20px;
    }
    .brand-card__title {
        font-size: 16px;
    }
}
@media (max-width: 768px) {
    .page-brands .brands-list {
        grid-template: auto / repeat(3, 1fr);
    }
}
@media (max-width: 575px) {
    .page-brands .brands-list {
        grid-template: auto / repeat(2, 1fr);
    }
}

/* PAGE - CONTENT - BRAND */
.brand-desc {
    padding-bottom: 0;
}
.brand-desc__wrap {
    display: grid;
    gap: 30px;
    grid-template-columns: 4fr 8fr;
    padding-bottom: 120px;
    border-bottom: 1px solid #e5e5e5;
}
.brand-desc__left a {
    color: #a0d73b;
    transition: all 0.2s linear;
}
.brand-desc__left a:hover {
    color: #032e15;
    transition: all 0.2s linear;
}
.brand-desc__right {
    padding-left: 60px;
}
.brand-desc__right h2 {
    margin-top: 0;
}
@media (max-width: 991px) {
    .brand-desc__wrap {
        grid-template-columns: 1fr;
        gap: 20px;
        padding-bottom: 90px;
    }
    .brand-desc__left {
        order: 1;
    }
    .brand-desc__right {
        padding-left: 0;
    }
}
@media (max-width: 768px) {
    .brand-desc__wrap {
        grid-template-columns: 1fr;
        gap: 20px;
        padding-bottom: 60px;
    }
}

/* PAGE - CONTENT - COOPERATION */
.cooperation-desc__wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
.cooperation-desc__left,
.cooperation-desc__right {
    padding-right: 110px;
}
@media (max-width: 1280px) {
    .cooperation-desc__left,
    .cooperation-desc__right {
        padding-right: 0;
    }
}
@media (max-width: 991px) {
    .cooperation-desc__wrap {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

/* PAGE - CONTENT - NEWS ARTICLE */
.news-desc {
    padding-bottom: 0;
}
.news-desc__wrap {
    display: grid;
    grid-template-columns: 4fr 8fr;
    gap: 30px;
    padding-bottom: 120px;
    border-bottom: 1px solid #e5e5e5;
}
.news-desc__right {
    padding-left: 60px;
}
.news-desc .sidebar__content {
    text-align: left;
}
.news-desc .sidebar__content .sidebar__row:first-child {
    margin-top: 0;
    border-top: 0;
}
@media (max-width: 991px) {
    .news-desc__right {
        padding-left: 0;
    }
}
@media (max-width: 768px) {
    .news-desc__wrap {
        grid-template-columns: 1fr;
        gap: 30px;
        padding-bottom: 60px;
    }
    .news-desc__left {
        order: 1;
    }
}

/* PAGE - CONTACT */
.contact-desc__wrap {
    display: grid;
    grid-template-columns: 4fr 8fr;
    gap: 30px;
}
.contact-desc__left p {
    margin-bottom: 30px;
}
.contact-desc__left p:last-child {
    margin-bottom: 0;
}
.contact-desc__left a {
    position: relative;
    font-size: 24px;
    font-weight: 500;
    text-decoration: none;
    color: var(--dark-green);
}
.contact-desc__left a::after {
    content: "";
    width: 100%;
    height: 1px;
    background: #000;
    position: absolute;
    left: 0;
    bottom: -5px;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}
.contact-desc__left a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}
.contact-desc__right {
    padding: 60px;
    border: 1px solid #e5e5e5;
    border-radius: var(--border-radius);
}
@media (max-width: 768px) {
    .contact-desc__wrap {
        grid-template-columns: 1fr;
    }
}

/* PAGE - PRIVACY */
.privacy__container {
    max-width: 850px;
    margin: 60px auto 0;
}
.privacy h2 {
    line-height: 1.15;
    font-size: 36px;
    font-weight: 500;
    max-width: 850px;
}
@media (max-width: 1280px) {
    .privacy h1 {
        font-size: 48px;
    }
}
@media (max-width: 768px) {
    .privacy h1 {
        font-size: 36px;
    }
    .privacy h2 {
        font-size: 28px;
    }
}

.page-error {
    background-color: #f3f4f6;
}
.page-error__container {
    max-width: 560px;
    margin: 200px auto;
    text-align: center;
}
.page-error__code {
    line-height: 1;
    font-size: 200px;
    font-weight: 600;
}
.page-error__title {
    margin-top: 10px;
    line-height: 1.15;
    font-size: 48px;
    font-weight: 600;
}
.page-error__description {
    margin-top: 30px;
    line-height: 1.5;
    font-size: 20px;
}

@media (max-width: 575px) {
    .page-error__container {
        margin: 120px auto;
    }
    .page-error__code {
        font-size: 140px;
    }
    .page-error__title {
        font-size: 24px;
    }
    .page-error__description {
        font-size: 16px;
    }
}

.form__group {
    position: relative;
    margin-top: 20px;
}
.form__link {
    color: #35530e;
}
.form__input,
.form__textarea {
    display: inline-block;
    width: 100%;
    padding: 16px 0;
    line-height: 1;
    border: 1px solid transparent;
    border-bottom: 1px solid #eaeef2;
    color: #000;
    outline: none;
}
.form__textarea {
    min-height: 120px;
}
.form__input:focus,
.form__textarea:focus {
    border-bottom-color: #31a9c5;
}
.form__input--error,
.form__textarea--error {
    border-bottom-color: red;
}
.form__label {
    position: absolute;
    left: 0;
    top: 16px;
    font-size: 16px;
    color: #728899;
    pointer-events: none;
    transition: all 0.2s ease;
}
.form__input:not(:-moz-placeholder) + .form__label,
.form__textarea:not(:-moz-placeholder) + .form__label {
    top: -8px;
    font-size: 12px;
    color: #728899;
}
.form__input:focus + .form__label,
.form__textarea:focus + .form__label,
.form__input:not(:placeholder-shown) + .form__label,
.form__textarea:not(:placeholder-shown) + .form__label {
    top: -8px;
    font-size: 12px;
    color: #728899;
}
.form__caption {
    font-size: 14px;
    line-height: 1.4;
    margin-top: 5px;
}
.form__caption--error {
    color: red;
}
.form__footer {
    display: flex;
    align-items: start;
    gap: 30px;
    margin-top: 20px;
}
.form__policy {
    line-height: 1.3;
    font-size: 12px;
}
@media (max-width: 480px) {
    .form__footer {
        flex-direction: column;
        gap: 15px;
    }
}

.wpforms-form input,
.wpforms-form textarea {
    max-width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    border-radius: 0 !important;
    border: 1px solid transparent !important;
    border-bottom: 1px solid #e5e5e5 !important;
    outline: none !important;
    box-shadow: none !important;
}
.wpforms-form input:hover,
.wpforms-form textarea:hover {
    border-bottom-color: #adbcc7 !important;
}
.wpforms-form input:focus,
.wpforms-form textarea:focus {
    color: #000 !important;
    border-bottom-color: #a0d73b !important;
    outline: none !important;
}
.wpforms-field-label {
    position: absolute !important;
    top: 25px !important;
    left: 0 !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    color: #a6a09b !important;
    transition: all 0.2s ease;
}
.wpforms-field.active .wpforms-field-label {
    position: absolute !important;
    top: 0 !important;
    font-size: 12px !important;
}
.wpforms-submit-container {
    display: grid;
    grid-template-columns: 4fr 8fr;
    gap: 30px;
}
.wpforms-submit-container p {
    font-size: 12px !important;
}
.wpforms-submit {
    border-radius: 25px !important;
    background-color: #bbf451 !important;
    border-color: #bbf451 !important;
    color: #35530e !important;
    outline: none !important;
    box-shadow: none !important;
}
.wpforms-submit:focus {
    outline: none !important;
    box-shadow: none !important;
}
.wpforms-submit:hover,
div.wpforms-container-full button[type="submit"]:hover {
    background: none !important;
    background-color: #a0d73b !important;
    border-color: #a0d73b !important;
}

@media (max-width: 575px) {
    .wpforms-submit-container {
        grid-template-columns: 1fr;
    }
}
