:root {
    --container-width: 1880px;
    --container-s-width: 1190px;
    --container-padding: 15px;
    --font-main: "MerriweatherSans", sans-serif;
    --page-bg: #ffffff;
    --text: #212121;
    --primary: #71c635;
    --secondary: #19610c;
    --tertiary: #c2fe9a;
    --border: #f3f3f3;
    --grey: #f6f6f6;
    --white: #ffffff;
    --radius-big: 20px;
    --radius-small: 10px;
    --laptop-size: 1199px;
    --tablet-size: 959px;
    --mobile-size: 599px
}

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


@font-face {
    font-family: "MerriweatherSans";
    src: url("../fonts/MerriweatherSansBold.woff2") format("woff2")format("woff");
    font-weight: 700;
    font-style: normal;
}


html {
    scroll-behavior: smooth;
}

a {
    color: var(--text)
}

html,
body {

    display: flex;
    flex-direction: column;
    height: unset !important;
    background: linear-gradient(45deg,
            #f2fbef,
            #e6f6da,
            #cfeeb6,
            #f4fbf6) 0% 0% / 220% 220%;
    height: 100%;
    margin: 0;
}

main {
    flex: 1;
}

body {
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.4;
    font-weight: 400;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.body.noscroll {
    overflow: hidden;
}

.container {
    margin: 0 auto;
    padding: 0 var(--container-padding);
    max-width: var(--container-width);
    width: 100%
}


img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain
}

a {
    cursor: pointer
}

code,
pre.code {
    background-color: #e9f1f6;
    padding: .2rem;
    border-radius: 4px
}

pre.code {
    overflow-x: auto;
    padding: 1rem
}

.section {
    padding: 60px 0;
    scroll-margin-top: 60px;
    overflow: hidden;
}

.title-l {
    color: var(--white);
    font-size: 48px;
    font-weight: 600;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
}

.title {
    font-size: 64px;
    line-height: 1.15;
    font-weight: 700;
    text-wrap: nowrap
}

.title-s {
    font-size: 52px;
    line-height: 1.15;
    font-weight: 700;
}

.subtitle {
    margin-bottom: 20px;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2
}

.logo {
    display: block;
    max-width: 65px;
    width: 100%;
    height: 65px;
}

.btn {
    max-width: fit-content;
    padding: 15px 40px;
    height: 50px;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.1;
    border-radius: var(--radius-small);
    text-wrap: nowrap;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    max-width: 214px;
    width: 100%;
    transition: all .32s linear
}

.btn:hover {
    filter: brightness(120%)
}

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

.btn:hover {
    border: 1px solid var(--primary);
    background-color: var(--white);
    color: var(--primary);
}

/* Шапка */

.header {
    margin-top: 10px;
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.header__wrap {
    padding: 5px 15px 5px 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    border-radius: var(--radius-big);
    background-color: var(--white);
    border: 1px solid var(--border);
}

.header__burger {
    display: none
}

.nav__list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.nav li {
    position: relative;
}

.nav__list-item {
    transition: all .32s linear;
}

.nav__list-item a {
    transition: all .32s linear;
}

.nav__item {
    padding: 10px 0;
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 10px;
    text-wrap: nowrap;
}

.nav a:hover {
    color: var(--primary);
}

.nav__list-item-active {
    color: var(--primary);
}

.nav__sub-item {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 10px;
    text-wrap: nowrap;
}

.nav__item span {
    text-wrap: nowrap;
}

.nav__item-arrow {
    margin-top: 2px;
    width: 24px;
    height: 24px;
    transition: all 0.32s linear;
    cursor: pointer;
    transform: rotate(-90deg);
}

.nav__item-arrow svg {
    max-width: 24px;
    min-width: 24px;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav__item-arrow path {
    fill: var(--primary);
}

.submenu {
    display: none;
    background-color: var(--white);
    border-radius: var(--radius-big);
    border: 1px solid var(--border);
    z-index: 1000;
    width: max-content;
    position: absolute;
    top: calc(100% - 5px);
    left: 0;
}

.sub-submenu {
    top: 0px;
    left: calc(100% + 1px);
}

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

.submenu ul li a {
    padding: 10px 15px;
    display: block;
    text-decoration: none;
    border-radius: var(--radius-small);
}

.nav__list-item-active>.submenu {
    display: block;
}

.nav__list-item.nav__list-item-active>.nav__item>.nav__item-arrow {
    transform: rotate(-180deg);
}

.nav__list-item.nav__list-item-active>.nav__sub-item>.nav__item-arrow {
    transform: rotate(-180deg);
}

.header__btn {
    display: none;
}

.header__contacts {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.header__line {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    font-size: 16px;
    line-height: 1;
}

.header__line+.header__line {
    margin-top: 5px;
}

.header__phone {
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 700;
    transition: all .32s linear;
}

.header__phone:hover {
    color: var(--primary);
}

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

.header__contacts svg path {
    fill: var(--primary);
}

.footer__wrap {
    padding: 40px;
    background-color: var(--white);
    border-top-left-radius: var(--radius-big);
    border-top-right-radius: var(--radius-big);
}

.footer__logo {
    max-width: 80px;
    height: 80px;
}

.footer__top {
    margin-bottom: 40px;
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.footer__left {
    max-width: 35vw;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer__right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer__menu ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    list-style: none;
}

.footer__title {
    font-size: 18px;
    font-weight: 700;
}

.footer__contacts {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__contacts-item {
    display: flex;
    align-items: start;
    gap: 5px;
}

.footer__contacts-item svg {
    width: 24px;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer__contacts-item svg path {
    fill: var(--primary);
}

.footer__line {
    margin-bottom: 5px;
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 5px;
    font-size: 16px;
    line-height: 1;
}

.footer__phone {
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 700;
    transition: all .32s linear;
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.footer__copyright {}

.footer__bottom-link {}

.content h1 {
    margin: 0 auto 30px;
    max-width: 1000px;
    font-size: 48px;
    font-weight: 600;
    line-height: 1.167;
}

.content h2,
.content h3,
.content h4 {
    margin: 20px auto;
    max-width: 1000px;
    font-size: 32px;
    font-weight: 600;
    line-height: 1.167;
}

.content__text {
    margin: 0 auto;
    max-width: 1000px;
}

.content__text p {
    margin-bottom: 10px;
}

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

.content__text img {
    max-width: 400px;
}

.content__text ul {
    margin-left: 20px;
    margin-bottom: 10px;
    list-style: none;
}

.content__text ul li {
    margin-bottom: 5px;
    position: relative;
    padding-left: 20px;
}

.content__text ul li:before {
    margin-top: 7px;
    content: '';
    max-width: 7px;
    min-width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: var(--text);
    position: absolute;
    left: 0;
    top: 1px;
}

.content__box {
    border-radius: var(--radius-small);
    margin-bottom: 60px;
}

.content__box-white {
    padding: 60px 0;
    background-color: var(--white);
    border-radius: 0;
}

.content__box h2,
.content__box h3,
.content__box h4 {
    margin-top: 0;
}

.cards ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.cards li {
    width: 100%;
    height: 100%;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.cards li a {
    width: 100%;
    padding: 20px;
    border-radius: var(--radius-small);
    background-color: var(--white);
    transition: all 0.32s linear;
}

.cards li a:hover {
    color: var(--secondary);
}