:root {
    --main-background: #F9F7F4;
    --color-black: #272727;
    --color-green: #496854;
    --color-green--hover: #5F876D;
    --color-white--hover: #F9F7F4;
    --color-brown: #866B63;
    --color-brown--hover: #A6847A;
    --color-brown--light: #D9C4AF;
    --xl-padding: 105px;
    --open-sans: 'Open Sans', sans-serif;
    --inter: 'Inter', sans-serif;
}

@media (prefers-reduced-motion: no-preference) {
    :root {
        scroll-behavior: smooth;
    }
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    transition: 0.15s all ease;
}

body {
    font-family: var(--open-sans);
    font-size: 16px;
    line-height: 1.4;
    color: var(--color-black);
    letter-spacing: -0.15px;

    background-color: var(--main-background);

    overflow-x: hidden;

    min-width: 360px;
}

.no-scroll {
    overflow: hidden;
}

.visible--m,
.visible--s {
    display: none !important;
}

main {
    padding-bottom: 40px;
}

main,
.footer {
    zoom: 90%;
}

.header__top.container {
    padding: 0 165px;
}

.header__container {
    border-bottom: 1px solid #B9B9B9;
}

.header__container+.header__container {
    position: relative;
}

.header__top {
    height: 130px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.container {
    margin: 0 auto;
    max-width: 1440px;
    padding: 0 var(--xl-padding);
}

main {
    overflow: hidden
}

.header-logo {
    width: 360px;
}

.header-logo__img {
    width: 100%;
}

/* .search-and-contacts {
    margin-right: 75px;
} */

.search {
    position: relative;
}

.search-input {
    width: 572px;
    height: 42px;

    border-radius: 999px;
    background-color: #F9F7F4;
    border: 2px solid #496854;

    font-family: var(--open-sans);
    font-size: 20px;
    font-weight: 400;
    color: var(--color-green);

    padding: 7px 44px 7px 20px;
    margin-bottom: 14px;
}

.search-input::placeholder {
    color: var(--color-black);
    opacity: 0.5;
}

.search-input:focus::placeholder {
    opacity: 0;
}

.search-input:focus {
    outline: none;
    background-color: #fff;
}

.search-input:-webkit-autofill,
.search-input:-webkit-autofill:hover,
.search-input:-webkit-autofill:focus,
.search-input:-webkit-autofill:active,
.search-input[data-autocompleted] {
    -webkit-background-clip: text;
    -webkit-text-fill-color: var(--color-black);
}

.search-button {
    position: absolute;
    top: 3px;
    right: 16px;
    height: 34px;
    width: 34px;
    border: none;
    background-color: transparent;
    cursor: pointer;
}

.search-button svg {
    width: 100%;
    height: auto;
}

.contacts {
    display: flex;
    align-items: center;

    gap: 32px;
}

.contact {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.contact__img {
    width: 28px;
    height: 28px;
}

.contact:hover .contact__img path {
    stroke: var(--color-green);
}

.contact__img--mail {
    margin-top: 2px;
}

.contact__value {
    text-decoration: none;
    color: var(--color-black);
    font-size: 24px;
}

.contact:hover .contact__value {
    color: var(--color-green);
}

.burger__container {
    display: none;
}

.burger {
    display: flex;

    height: 30px;
    width: 40px;

    flex-direction: column;
    justify-content: space-between;
    align-items: center;

    padding: 3px 2.5px;
    border: 0;
    background-color: transparent;

    cursor: pointer;
}

.burger span {
    width: 100%;
    height: 3px;
    border-radius: 5px;
    background-color: var(--color-green);
}

.burger:hover span {
    background-color: var(--color-green--hover);
}

.burger--active span:nth-child(2) {
    display: none;
}

.burger--active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 7px);
}

.burger--active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -7px);
}

.header-nav {
    list-style-type: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    height: 46px;
}

.header__subnav {
    display: none;
    list-style-type: none;
}

.header-nav__link {
    font-size: 20px;
    color: var(--color-black);
    text-decoration: none;
}

.header-nav__link:hover {
    color: var(--color-green);
    text-decoration: underline;
}

.header-nav__link--button {
    display: none;

    background-color: transparent;
    border: none;

    cursor: pointer;
}

.header-nav__link--express {
    display: block;
    background-color: transparent;
    border: none;
    cursor: pointer;
    margin-left: calc(24px * 2);
    color: var(--color-green);
    font-weight: 700;
    font-family: var(--inter);
}

.header-nav__link--express:hover,
.header-nav__link--express:focus,
.header-nav__link--express:active {
    text-decoration: none;
    color: var(--color-green--hover);
    position: relative;
}

.header-nav__link--express::before {
    content: 'SOS';
    position: absolute;
    top: -6px;
    right: -42px;
    background-color: var(--color-brown);
    color: #fff;
    border-radius: 12px;
    padding: 2px 4px;
    transform: rotate(-10deg);
    z-index: -1;
    font-size: 15px;
}

.header-nav__link--active {
    color: var(--color-green);
}

.nav-arrow {
    display: none;
    stroke: var(--color-black);

    -webkit-transform: rotate(-90deg) translateX(1.5px);
    -ms-transform: rotate(-90deg) translateX(1.5px);
    transform: rotate(-90deg) translateX(1.5px);
}

.header-nav__link--button:hover:not(.header-nav__link--opened) .nav-arrow {
    margin-left: 2px;
}

.header-nav__link--opened {
    background-color: var(--color-brown--light);
}

.header-nav__item {
    position: relative;
}

.header-nav__link--opened .nav-arrow {
    -webkit-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    transform: translateY(-2px);
}

.header-nav__link--opened+.header__subnav {
    display: block;
}

.menu-contacts {
    display: none;
    margin: 8px auto 10px;
    max-width: 320px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 8px;

    padding: 8px;

    border-radius: 6px;
    border: 1px solid #496854;

    background: #FFF;
}

.contact-card__author {
    width: 60px;
    height: 60px;

    overflow: hidden;
    border-radius: 50%;
}

.contact-card__fio {
    font-family: var(--inter);
    font-size: 17px;
    color: var(--color-green);
}

.contact-card__position {
    font-size: 16px;
    color: #646464;

    margin-bottom: 4px;
}

.menu-request {
    display: flex;
    padding: 8px 16px;
    justify-content: center;
    align-items: center;

    font-family: var(--inter);
    color: #F9F7F4;
    font-size: 16px;

    border-radius: 6px;

    background-color: var(--color-green);

    text-decoration: none;

    margin-top: 8px;
}

.menu-request:hover {
    background-color: var(--color-green--hover);
}

.footer__top {
    background-color: #fff;
    padding: 27px 0;
}

.footer__sub {
    background-color: var(--color-green);
    padding: 15px 0 17px;
}

.footer__content {
    display: flex;
    /* align-items: center; */
    justify-content: space-between;
    gap: 110px;
}

.footer__left {
    width: 420px;
}

.footer-logo {
    display: inline-block;
}

.footer__contacts {
    margin-top: 32px;
}

.footer__contact {
    color: #272727;
    font-family: var(--inter);
    font-size: 31.185px;
    font-weight: 400;
    line-height: 1.2;
    text-decoration: none;
}

.contacts-group {
    display: flex;
    align-items: center;
    gap: 20px;

    margin-top: 16px;
}

.footer__social {
    display: inline-block;

    text-decoration: none;
}

.footer__social:hover {
    opacity: 0.85;
}

.contacts-group__legal {
    color: var(--color-black);
    font-family: var(--color-black);
    font-size: 15.025px;
    font-weight: 1.2;
}

.contacts-group__legal+.contacts-group__legal {
    font-size: 13.815px;

    margin-top: 6px;
}

.footer__right {
    display: flex;
    align-items: flex-start;
    /* justify-content: center; */
    gap: 30px;

    flex-grow: 1;
}

/* .footer-links {
    max-width: calc(100% / 3 - 8px);
} */

.footer-navs {
    list-style-type: none;
    /* max-width: 221px; */

    margin-top: 18px;
}

.footer-navs__item+.footer-navs__item {
    margin-top: 6px;
}

.footer-navs__link {
    color: var(--color-black);
    font-family: var(--inter);
    font-size: 20px;
    font-weight: 400;
    line-height: 1;
    text-decoration: none;
}

.footer-navs__link:hover {
    text-decoration: underline;
}

.footer-navs__link+.footer-navs__link {
    margin-top: 3px;
}

.footer-links__title {
    color: #496854;
    font-family: var(--inter);
    font-size: 24px;
    font-weight: 500;
    line-height: 1.2;
}

.footer__credits {
    display: flex;
    align-items: center;
    justify-content: space-between;

    flex-wrap: wrap;
}

.footer__credit {
    color: #FFF;
    font-family: var(--inter);
    font-size: 18px;
    font-weight: 400;
    text-decoration: none;
    line-height: 1.2;
    margin-bottom: 16px;
}

.footer__credit--5,
.footer__credit--6 {
    margin-bottom: 0;
}

a.footer__credit:hover {
    text-decoration: underline;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 15px 45px;

    border-radius: 68px;

    border: none;

    background-color: var(--color-green);

    font-family: var(--inter);
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    line-height: 1.4;

    text-decoration: none;

    white-space: nowrap;

    cursor: pointer;
}

.button--flat {
    border-radius: 10px;
    padding: 14.5px 45px;
}

.button--404 {
    margin-top: 31px;
}

.button:hover {
    background-color: var(--color-green--hover);
}

.button--to-form {
    width: 100%;
    border-radius: 10px;
    padding: 11.5px 45px;

    margin-top: 30px;
}

.h2 {
    color: var(--color-black);
    font-family: var(--inter);
    font-size: 42px;
    font-weight: 600;
    letter-spacing: -0.42px;
}

.h2--light {
    color: var(--color-brown--light);
}

#sectionHome {
    position: relative;

    height: 530px;

    padding: 55px 0;

    background-position: center;
    background-size: auto 100%;

    background-repeat: no-repeat;
    background-image: url('../img/bg__home--full.jpg'), linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 50%, rgba(90, 71, 65, 1) 51%);

    z-index: 1;
}

#homeText {
    width: 542px;
}

#homeText__h1 {
    font-family: var(--inter);
    font-size: 42px;
    font-weight: 600;
    line-height: 120%;
    letter-spacing: -0.5px;
}

#homeText__p {
    color: var(--color-black);

    font-size: 20px;
    font-weight: 400;

    margin-top: 24px;
}

#homeText__button {
    font-family: var(--open-sans);

    height: 61px;

    margin-top: 34px;
}

#howWeWork {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;

    margin-top: 15px;

    cursor: help;
}

#howWeWork svg {
    height: 23px;
    width: 23px;
    opacity: 0.7;

    stroke: var(--color-black);
}

#howWeWork span {
    display: inline-block;
    text-decoration: underline;

    color: var(--color-black);
    font-size: 20px;
    opacity: 0.7;

    margin-top: 1px;
}

#howWeWork:hover span,
#howWeWork:hover svg {
    opacity: 1;
}

.tooltip {
    position: absolute;
    top: 34px;
    left: 0;
    border-radius: 16px;
    background: #FFF;
    box-shadow: 0px 11px 22px 0px rgba(0, 0, 0, 0.16);
    z-index: 1;
    padding: 16px;
    opacity: 1;
    pointer-events: none;
    opacity: 0;
    white-space: nowrap;
}

.tooltip__p {
    color: var(--color-black);

    font-size: 18px;
    font-weight: 400;
}

.tooltip__p+.tooltip__p {
    margin-top: 8px;
}

#howWeWork:hover .tooltip {
    opacity: 1;
}

#sectionAdvantages {
    background-color: var(--color-green);
    padding: 30px 0 54px;
}

.advs {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 90px;
    margin-top: 41px;
}

.adv {
    width: calc(100% / 3);
    position: relative;
}

.adv+.adv::before {
    content: '';
    position: absolute;

    height: 108px;
    width: 2px;

    top: 174px;
    left: -45px;

    opacity: 0.6;
    background-color: var(--color-brown--light);
}

.adv__img-container {
    display: flex;
    align-items: center;
    justify-content: center;

    height: 109px;
}

.adv__h3 {
    color: var(--color-brown--light);

    font-family: var(--inter);
    font-size: 25px;
    font-weight: 600;
    line-height: 34px;
    letter-spacing: -0.25px;

    margin-top: 16px;
}

.adv__p {
    font-family: var(--open-sans);
    font-size: 16px;
    color: var(--color-brown--light);

    margin-top: 10px;
}

.section--light {
    padding: 60px 0 30px;
}

.section__header {
    display: flex;
    align-items: center;
    gap: 16px;

    margin-top: 30px;
}

.section__header--m0 {
    margin-top: 0 !important;
}

.section__header--sm {
    margin-top: 28px;
}

.section__header-controls {
    display: flex;
    align-items: center;
    gap: 24px;

    margin-left: auto;
}

.section__h1,
.section__h2 {
    display: inline-block;

    color: var(--color-black);
    font-family: var(--inter);
    font-size: 40px;
    font-weight: 600;
    line-height: 140%;
    letter-spacing: -0.42px;
}

.section__h2--mt {
    margin-top: 30px;
}

.section__h1 {
    font-size: 42px;
    line-height: 120%;
}

.p {
    color: var(--color-black);
    font-family: var(--open-sans);
    font-size: 20px;
    font-weight: 400;
    line-height: normal;

    margin-top: 18px;
}

.consultations {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    flex-wrap: wrap;

    gap: 30px;

    margin-top: 28px;
}

.consultation {
    display: block;
    position: relative;

    width: calc(100%/3 - 60px / 3);
    overflow: hidden;

    border-radius: 16px;

    background: #FFF;

    z-index: 1;
}

.consultation:before {
    z-index: -1;
    content: '';

    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    opacity: 0;
    transition: 0.3s all ease;

    background: linear-gradient(90deg, #386352 5.59%, #3B7D63 100%);
}

.consultation:hover:before {
    opacity: 1;
}

.consultation--express {
    width: 100%;

    display: flex;

    margin-top: 24px;

    box-shadow: 0px 2px 15.8px 0px rgba(0, 0, 0, 0.01);
}

.consultation__img {
    width: 100%;
    height: 313px;

    object-fit: cover;
    object-position: center;

    overflow: hidden;

    border-radius: 16px;
}

.consultation__href--express {
    width: 380px;
    background-position: center;
    background-size: cover;
    border-radius: 16px;
}

.consultation__content {
    padding: 13px 20px 25px;
}

.consultation__content--express {
    flex: 1;
}

.consultation__h3 {
    color: var(--color-brown);

    font-family: var(--inter);
    font-size: 25px;
    font-weight: 600;
    line-height: 34px;
    letter-spacing: -0.25px;
}

.consultation:hover .consultation__h3 {
    color: var(--color-brown--light);
}

.consultation__p {
    color: var(--color-brown);
    font-family: var(--open-sans);
    font-size: 16px;
    font-weight: 400;
    line-height: normal;

    margin-top: 9px;
}

.consultation:hover .consultation__p {
    color: var(--color-brown--light);
}

.consultation__tags {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.5rem;
    flex-wrap: wrap;

    margin-top: 20px;
}

.consultation__tag {
    color: #FFF;
    font-family: var(--inter);
    font-size: 18px;
    font-weight: 400;
    line-height: normal;

    padding: 6.5px 11px;

    border-radius: 999px;

    background: var(--color-brown);
}

.consultation:hover .consultation__tag {
    background: var(--color-brown--light);
    color: var(--color-green);
}

.consultation__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-top: 27px;
}

.consultation__price {
    color: var(--color-black);
    font-family: var(--inter);
    font-size: 25px;
    font-weight: 500;
    line-height: 160%;
    letter-spacing: -0.25px;
}

.consultation:hover .consultation__price {
    color: var(--color-brown--light);
}

.consultation__button {
    text-decoration: none;

    display: inline-block;

    color: #FFF;
    font-family: var(--inter);
    font-size: 22px;
    font-weight: 500;
    line-height: normal;

    padding: 10px 12px;

    border-radius: 6px;
    border: 1px solid var(--color-green);

    background-color: var(--color-green);
}

.consultation:hover .consultation__button {
    border: 1px solid #F9F7F4;
    background-color: transparent;
}

.consultation:hover .consultation__button:hover {
    color: var(--color-green);
    background-color: var(--color-white--hover);
}

.view-all--mobile {
    display: none;

    margin-top: 16px;
}

.articles {
    /* display: flex;
    align-items: flex-start;
    justify-content: space-between; */

    margin-top: 6px;
}

.articles--flex {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;

    margin-top: 30px;
    gap: 30px;
}

.articles--flex+.articles--flex {
    margin-top: 0;
}

.article {
    /* width: calc(100% / 3 - 60px / 3); */
    display: block;

    border-radius: 20px;

    padding: 25px 0 26px;

    position: relative;
    z-index: 1;

    text-decoration: none;
}

.article--flex {
    width: calc(100% / 3 - 60px / 3);
    margin-top: -30px;
}

.article:before {
    content: '';
    position: absolute;

    top: 0;
    bottom: 0;
    left: -18px;
    right: -18px;

    border-radius: 20px;

    background: #FFF;
    box-shadow: 0px 11px 22px 0px rgba(0, 0, 0, 0.16);
    z-index: -1;

    pointer-events: none;
    opacity: 0;
    transition: 0.3s all ease;
}

.article:hover:before {
    pointer-events: auto;
    opacity: 1;
}

.article__img-container {
    position: relative;
    font-size: 0;
}

.article__img {
    width: 100% !important;
    height: 200px;

    object-fit: cover;
    object-position: center;

    overflow: hidden;

    border-radius: 10px;
}

.article__tags {
    position: absolute;
    display: flex;
    gap: 0.5rem;

    bottom: 8px;
    left: 10px;
}

.article__tag {
    color: var(--color-brown);
    font-family: var(--open-sans);
    font-size: 16px;
    font-weight: 600;
    line-height: 140%;

    padding: 5.5px 11px;

    border-radius: 999px;
    background: #FFF;
}

.article__content {
    padding: 10px 0 0px;
}

.article__h3 {
    color: var(--color-black);
    font-family: var(--inter);
    font-size: 25px;
    font-weight: 600;
    line-height: 34px;
    letter-spacing: -0.25px;
}

.article__p {
    color: var(--color-black);
    font-family: var(--inter);
    font-size: 16px;
    font-weight: 400;
    line-height: normal;

    margin-top: 10px;
}

.article__footer {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;

    margin-top: 10px;
}

.article__footer-group {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 6px;
}

.article__date,
.article__views {
    color: var(--color-brown);
    font-family: var(--open-sans);
    font-size: 16px;
    font-weight: 400;
    line-height: 140%;
}

.pdf {
    position: relative;

    background-color: var(--color-green);

    border-radius: 14px;

    padding: 34px 270px 34px 64px;

    margin-top: 60px;
}

.pdf__h2 {
    color: var(--color-brown--light);
    font-family: var(--inter);
    font-size: 42px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%;
    letter-spacing: -0.42px;
}

.pdf__p {
    color: #D9C4AF;
    font-family: var(--open-sans);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;

    margin-top: 7px;
}

.pdf__footer {
    display: flex;
    align-items: center;
    gap: 20px;

    margin-top: 28px;
}

.pdf__img {
    position: absolute;

    top: -12px;
    right: 38px;
}

.pdf__input {
    display: flex;
    align-items: center;
    justify-content: flex-start;

    height: 58px;
    width: 465px;

    padding: 5px 32px;

    border-radius: 999px;
    border: 2px solid #FFF;

    background-color: var(--color-green);

    color: var(--color-brown--light);

    font-family: var(--inter);
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 134.5%;
}

.pdf__input:-webkit-autofill,
.pdf__input:-webkit-autofill:hover,
.pdf__input:-webkit-autofill:focus,
.pdf__input:-webkit-autofill:active,
.pdf__input[data-autocompleted] {
    -webkit-background-clip: text;
    -webkit-text-fill-color: var(--color-brown--light);
}

.pdf__input::placeholder {
    color: var(--color-brown--light);
    opacity: 0.5;
}

.pdf__input:focus {
    border: 2px solid #FFF;
    outline: none;
}

.pdf__input:focus::placeholder {
    opacity: 0;
}

.pdf__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    height: 58px;

    color: #496854;
    font-family: var(--inter);
    font-size: 20px;
    font-weight: 500;
    line-height: normal;

    white-space: nowrap;

    border: 1.5px solid #FFF;

    padding: 5px 47px;

    border-radius: 68px;
    background: #FFF;

    cursor: pointer;
}

.pdf__button:hover {
    color: #fff;
    background-color: transparent;
}

.feedbacks {
    /* display: flex;
    align-items: flex-start;
    justify-content: space-between; */

    margin-top: 15px;
}

.feedback {
    /* width: calc(100% / 3 - 216px / 3); */

    border-radius: 20px;

    padding: 20px 0 20px;

    position: relative;
    z-index: 1;
}

.feedback:before {
    content: '';
    position: absolute;

    top: 0;
    bottom: 0;
    left: -14px;
    right: -14px;

    border-radius: 20px;

    background: #FFF;
    box-shadow: 0px 22px 44px 0px rgba(0, 0, 0, 0.16);
    z-index: -1;

    pointer-events: none;
    opacity: 0;
    transition: 0.3s all ease;
}

.feedback:hover:before {
    pointer-events: auto;
    opacity: 1;
}

.feedback__header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 14px;

    border-bottom: 1px solid #BFBFBF;

    padding-bottom: 22px;
}

.feedback__header--big {
    padding-bottom: 0;

    border-bottom: none;
}

.feedback__img {
    width: 85px;
    height: 85px;

    border-radius: 50%;

    overflow: hidden;
}

.feedback__info {
    flex: 1;
}

.feedback__fio {
    color: var(--color-black);
    font-family: var(--inter);
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;

    letter-spacing: -0.5px;
}

.feedback__child {
    color: var(--color-black);
    font-family: var(--inter);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 140.5%;
    letter-spacing: -0.14px;

    margin-top: 7px;
}

.feedback__theme {
    color: var(--color-brown);
    font-family: var(--inter);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 140.5%;
    letter-spacing: -0.16px;

    margin-top: 7px;
}

.feedback-request {
    margin-top: 22px;
}

.feedback-request__title,
.feedback-response__title {
    color: var(--color-brown);
    font-family: var(--inter);
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.feedback-response__title {
    color: var(--color-green);
}

.feedback-response {
    margin-top: 22px;
}

.feedback-request__p,
.feedback-response__p {
    color: var(--color-black);
    font-family: var(--open-sans);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;

    margin-top: 4px;
}

.feedback-response__p+.feedback-response__p {
    margin-top: 22px;
}

.feedback__link {
    display: inline-block;

    color: var(--color-green);
    font-family: var(--inter);
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-decoration-line: underline;

    margin-top: 22px;
}

.feedback__date {
    text-align: right;
}

.feedback__date {
    color: var(--color-black);

    font-family: var(--inter);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 140.5%;
    letter-spacing: -0.16px;
}

.feedback__file {
    display: inline-flex;

    color: var(--color-green);

    text-align: right;
    font-family: var(--inter);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 120.5%;
    letter-spacing: -0.16px;

    gap: 10px;

    align-items: center;

    text-decoration: none;

    margin-top: 7px;
}

.feedback__file:hover {
    border-bottom: 1px solid var(--color-green);
}

.owl-carousel .owl-item img {
    width: auto;
}

.overflowed.owl-carousel.owl-loaded,
.overflowed.owl-carousel .owl-stage-outer {
    overflow: initial;
}

.overflowed.owl-carousel .owl-item {
    opacity: 0;
    pointer-events: none;
    transition: opacity .1s ease;
}

.overflowed.owl-carousel .owl-item.active {
    opacity: 1;
    pointer-events: auto;
}

.overflowed.owl-theme .owl-nav {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    pointer-events: none;

    z-index: 2;
}

.overflowed.owl-carousel .owl-nav button.owl-prev,
.overflowed.owl-carousel .owl-nav button.owl-next {
    pointer-events: auto;

    position: absolute;

    height: 40px;
    width: 40px;

    background-color: var(--color-brown);

    border-radius: 50%;

    margin: 0;

    display: flex;
    align-items: center;
    justify-content: center;
}

.overflowed.owl-carousel .owl-nav button.owl-prev:hover,
.overflowed.owl-carousel .owl-nav button.owl-next:hover {
    background-color: var(--color-brown--hover);
}

.overflowed.owl-carousel .owl-nav button.owl-prev {
    left: -66px;
}

.overflowed.owl-carousel .owl-nav button.owl-next {
    right: -66px;
}

/* .overflowed.owl-carousel .owl-nav button.owl-prev:before {
    position: absolute;
    content: '';
    top: 50%;
    right: -16px;
    margin-top: -250px;

    height: 500px;
    width: 400px;

    background-color: var(--main-background);

    z-index: -1;

    pointer-events: none;
    opacity: 0;

    transition: 0.3s opacity ease;
}

.overflowed.owl-carousel .owl-nav button.owl-prev:hover:before {
    opacity: 1;
}

.overflowed.owl-carousel .owl-nav button.owl-next:before {
    position: absolute;
    content: '';
    top: 50%;
    left: -16px;
    margin-top: -250px;

    height: 500px;
    width: 400px;

    background-color: var(--main-background);

    z-index: -1;

    pointer-events: none;
    opacity: 0;

    transition: 0.3s opacity ease;
}

.overflowed.owl-carousel .owl-nav button.owl-next:hover:before {
    opacity: 1;
} */

.navs {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: center;

    height: 40px;
    width: 40px;

    background-color: var(--color-brown);

    border: none;

    border-radius: 50%;

    cursor: pointer;
}

.nav:hover {
    background-color: var(--color-brown--hover);
}

.fancybox-is-open .fancybox-bg {
    opacity: 0.6;
}

.popup {
    background: #fff;
    border-radius: 24px;
    padding: 20px 32px;
    width: 906px;
}

.popup {
    display: none;
}

.form-grid {
    display: flex;
    flex-wrap: wrap;

    gap: 20px;

    margin-top: 18px;
}

.form-grid .input {
    width: calc(100% / 2 - 20px / 2);

    color: var(--color-green);

    font-family: var(--inter);
    font-size: 20px;
    font-weight: 400;
    line-height: 134.5%;
    letter-spacing: -0.5px;

    border-radius: 999px;
    border: 2px solid var(--color-green);

    padding: 10px 32px;

    margin-bottom: 4px;
}

.form-grid .input:focus {
    outline: none;
    border: 2px solid var(--color-green);
}

.form-grid .input::placeholder {
    color: var(--color-green);
    opacity: 0.5;
}

.form-grid .input:focus::placeholder {
    opacity: 0;
}

.form-grid .input:-webkit-autofill,
.form-grid .input:-webkit-autofill:hover,
.form-grid .input:-webkit-autofill:focus,
.form-grid .input:-webkit-autofill:active,
.form-grid .input[data-autocompleted] {
    -webkit-background-clip: text;
    -webkit-text-fill-color: var(--color-green);
}

.form-grid .textarea {
    width: 100%;

    height: 104px;

    color: var(--color-green);

    font-family: var(--inter);
    font-size: 20px;
    font-weight: 400;
    line-height: 134.5%;
    letter-spacing: -0.5px;

    border-radius: 8px;
    border: 2px solid var(--color-green);

    padding: 16px 22px;

    margin-bottom: 4px;

    resize: none;
}

.form-grid .textarea:focus {
    outline: none;
    border: 2px solid var(--color-green);
}

.form-grid .textarea::placeholder {
    color: var(--color-green);
    opacity: 0.5;
}

.form-grid .textarea:focus::placeholder {
    opacity: 0;
}

.form-grid .textarea:-webkit-autofill,
.form-grid .textarea:-webkit-autofill:hover,
.form-grid .textarea:-webkit-autofill:focus,
.form-grid .textarea:-webkit-autofill:active,
.form-grid .textarea[data-autocompleted] {
    -webkit-background-clip: text;
    -webkit-text-fill-color: var(--color-green);
}

.main-form__title {
    color: var(--color-black);
    font-family: var(--inter);
    font-size: 38px;
    font-weight: 600;
    line-height: 140%;
    letter-spacing: -0.42px;
}

.main-form__p {
    color: var(--color-black);
    font-family: var(--inter);
    font-size: 20px;
    font-weight: 400;
    line-height: 134.023%;

    margin-top: 8px;
}

.button--popup {
    padding: 17px 59px;

    margin-top: 26px;
}

.checkbox {
    display: block;

    position: relative;

    cursor: pointer;

    padding-left: 36px;

    margin-top: 24px;
}

.checkbox input[type="checkbox"] {
    position: absolute;
    top: -1px;
    left: 0;

    height: 24px;
    width: 24px;

    border-radius: 50%;
    border: none;

    z-index: -1;

    opacity: 0;
}

.checkbox .checkbox__text {
    color: var(--color-brown);
    font-family: var(--open-sans);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 134.5%;
}

.checkbox .checkbox__button {
    display: inline-block;

    position: absolute;
    top: -1px;
    left: 0;

    height: 24px;
    width: 24px;

    border-radius: 50%;

    border: 1px solid var(--color-green);
    background-color: #fff;
}

.checkbox input[type="checkbox"]:checked+.checkbox__button:before {
    content: '';
    position: absolute;

    top: 50%;
    left: 50%;

    margin-top: -6px;
    margin-left: -6px;

    height: 12px;
    width: 12px;

    background-color: var(--color-green);
    border-radius: 50%;
}

.fancybox-close-small {
    opacity: 1;
}

.fancybox-button svg path {
    fill: var(--color-green);
}

.fancybox-button svg:hover path {
    fill: var(--color-green--hover);
}

#block404 {
    position: relative;
}

#img__404 {
    position: absolute;
    top: -53px;
    right: 5px;

    z-index: -1;
}

.h1 {
    color: var(--color-black);
    font-family: var(--inter);
    font-size: 42px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    letter-spacing: -0.5px;

    margin-top: 31px;
}

.h1--search {
    font-size: 36px;
    line-height: 110%;
}

.p__404 {
    color: #000;
    font-family: var(--open-sans);
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;

    margin-top: 31px;
}

.search-404 {
    display: flex;
    align-items: center;

    gap: 12px;

    margin-top: 31px;
}

.search-404--full {
    width: 100%;
}

.search-404__input {
    color: var(--color-green);
    font-family: var(--inter);
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.4;

    width: 475px;

    padding: 12.5px 15px;

    border-radius: 10px;
    border: 2px solid var(--color-green);
}

.search-404__input--full {
    flex: 1;
}

.search-404__input:focus {
    outline: none;
}

.search-404__input::placeholder {
    color: var(--color-green);
    opacity: 0.5;
}

.search-404__input:focus::placeholder {
    opacity: 0;
}

.search-404__input:-webkit-autofill,
.search-404__input:-webkit-autofill:hover,
.search-404__input:-webkit-autofill:focus,
.search-404__input:-webkit-autofill:active,
.search-404__input[data-autocompleted] {
    -webkit-background-clip: text;
    -webkit-text-fill-color: var(--color-green);
}

.breadcrumbs {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;

    list-style-type: none;

    margin-top: 30px;
}

.breadcrumbs__link {
    color: var(--color-black);
    font-family: var(--inter);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;

    padding-right: 24px;

    text-decoration: none;

    position: relative;
}

a.breadcrumbs__link:hover {
    color: var(--color-green);
    text-decoration: underline;
}

.breadcrumbs__item:last-of-type .breadcrumbs__link {
    padding-right: 0;
}

.breadcrumbs__arrow {
    position: absolute;
    top: 5px;
    right: 7px;
}

.p {
    color: var(--color-black);
    font-family: var(--open-sans);
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;

    margin-top: 24px;
}

.big-contacts {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 78px;

    margin-top: 42px;
    margin-bottom: 52px;
}

.big-contact {
    text-align: center;
}

.big-contact__value {
    color: var(--color-black);

    font-family: var(--inter);
    font-size: 34px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.34px;

    text-decoration: none;
}

.big-contact__title {
    color: var(--color-black);
    font-family: var(--inter);
    font-size: 26px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.26px;

    margin-top: 15px;
}

.big-contact__socials {
    display: flex;
    align-items: center;
    gap: 20px;
}

.big-contact__social {
    display: inline-block;

    text-decoration: none;
}

.big-contact__social img {
    width: 50px;
    height: 50px;
}

.peach-form__wrapper {
    position: relative;

    padding: 24px 40px;

    border-radius: 25px;
    background: #ECDDCD;

    margin-top: 30px;
}

.peach-form__arrow-container {
    display: flex;
    align-items: center;
    justify-content: center;

    margin-top: 30px;
}

.peach-form__arrow {
    cursor: pointer;

    transform: rotate(180deg);

    border: none;
    background-color: transparent;

    padding: 0;

    width: 47px;
    height: 20px;
}

.peach-form__arrow svg {
    width: 100%;
    height: 100%;
}

.peach-form__arrow:hover {
    transform: rotate(180deg) translateY(-3px);
}

.peach-form__arrow--active {
    transform: none;
}

.peach-form__arrow--active:hover {
    transform: translateY(-3px);
}

.peach-form__content {
    overflow: hidden;
    max-height: 0px;
    transition: max-height 0.3s ease-in-out;
}

.peach-form__content--active {
    max-height: 1200px;
}

.peach-form__header {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;

    gap: 15px;
}

.peach-form__title {
    color: var(--color-black);
    font-family: var(--inter);
    font-size: 42px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%;
    letter-spacing: -0.42px;
}

.peach-form__subtitle {
    color: var(--color-black);

    font-family: var(--inter);
    font-size: 42px;
    font-weight: 600;
    line-height: 140%;
    letter-spacing: -0.42px;

    margin-top: 30px;
}

.peach-form__p {
    color: #000;
    font-family: var(--open-sans);
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;

    margin-top: 30px;
}

.peach-form__line {
    display: flex;
    align-items: center;
    justify-content: space-between;

    flex-wrap: wrap;

    gap: 20px;

    margin-top: 30px;
}

.peach-form__line--30 {
    justify-content: flex-start;

    gap: 30px;
}

.peach-form__req {
    width: 214px;

    color: var(--color-brown);

    font-family: var(--open-sans);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 134.5%;
}

.peach-form__req--100 {
    width: 100%;

    margin-top: 24px;
}

.peach-form__input {
    color: var(--color-green);

    font-family: var(--inter);
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 134.5%;

    padding: 13px 32px;

    border-radius: 999px;
    border: 2px solid #496854;
    background: var(--color-white--hover);

    width: 282px;
}

.peach-form__input--3 {
    width: 364px;
}

.peach-form__input:focus {
    outline: none;
    border: 2px solid var(--color-green);
}

.peach-form__input::placeholder {
    color: var(--color-green);
    opacity: 0.5;
}

.peach-form__input:focus::placeholder {
    opacity: 0;
}

.peach-form__input:autofill,
.peach-form__input:-webkit-autofill,
.peach-form__input:-webkit-autofill:hover,
.peach-form__input:-webkit-autofill:focus,
.peach-form__input:-webkit-autofill:active,
.peach-form__input[data-autocompleted] {
    -webkit-text-fill-color: var(--color-green);
    -webkit-box-shadow: 0 0 0px 40rem var(--color-white--hover) inset;
}

.peach-form__textarea {
    height: 128px;
    width: 100%;

    border-radius: 8px;
    border: 2px solid var(--color-green);

    padding: 24px 21px;

    color: var(--color-green);
    font-family: var(--inter);
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 134.5%;

    background: #F9F7F4;

    resize: none;
}

.peach-form__textarea:focus {
    outline: none;
    border: 2px solid var(--color-green);
}

.peach-form__textarea::placeholder {
    color: var(--color-green);
    opacity: 0.5;
}

.peach-form__textarea:focus::placeholder {
    opacity: 0;
}

.peach-form__textarea:-webkit-autofill,
.peach-form__textarea:-webkit-autofill:hover,
.peach-form__textarea:-webkit-autofill:focus,
.peach-form__textarea:-webkit-autofill:active,
.peach-form__textarea[data-autocompleted] {
    -webkit-background-clip: text;
    -webkit-text-fill-color: var(--color-green);
}

.peach-form__button {
    font-weight: 500;
    margin-top: 30px;
}

.peach-form__input--container {
    text-align: center;

    height: 100%;

    padding: 15px 10px;

    border-radius: 999px;
    background: rgba(73, 104, 84, 0.10);
}

.input-file {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    gap: 10px;
}

.input-file:hover {
    cursor: pointer;
}

.input-file input[type="file"] {
    display: none;
}

.input-file span {
    color: var(--color-green);

    text-align: right;
    font-family: var(--inter);
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.form-checkbox {
    display: inline-flex;

    align-items: center;

    gap: 12px;

    position: relative;

    cursor: pointer;
}

.form-checkbox input[type="checkbox"] {
    position: absolute;
    top: -1px;
    left: 0;
    height: 24px;
    width: 24px;
    border-radius: 50%;
    border: none;
    z-index: -1;
    opacity: 0;
}

.form-checkbox .checkbox__text {
    color: #000;
    font-family: var(--inter);
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 134.023%;
}

.form-checkbox .checkbox__button {
    display: inline-block;
    position: relative;

    height: 40px;
    width: 40px;

    border-radius: 8px;

    background: #FFF;
    border: 1px solid var(--color-green);
}

.form-checkbox input[type="checkbox"]:checked+.checkbox__button:before {
    content: '';
    position: absolute;

    top: 50%;
    left: 50%;

    margin-top: -14px;
    margin-left: -14px;

    height: 28px;
    width: 28px;

    border-radius: 6px;
    background-color: var(--color-green);
}

.form-hider--hide {
    display: none !important;
}

.feedbacks-tabs {
    display: flex;
    justify-content: space-between;

    width: 100%;

    margin-top: 32px;
}

.feedbacks-tabs__link {
    display: inline-block;
    flex: auto;

    text-align: center;

    color: #000;

    font-family: var(--inter);
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 134.023%;

    padding: 22px 5px;

    border-bottom: 2px solid #BABABA;

    text-decoration: none;
}

.feedbacks-tabs__link:hover {
    color: var(--color-green);
}

.feedbacks-tabs__link--active {
    color: var(--color-green);

    border-bottom: 2px solid var(--color-green);
}

.big-feedback {
    padding: 24px 40px 40px 40px;
    border-radius: 14px;
    background: #FFF;

    margin-top: 40px;
}

.big-feedback+.big-feedback {
    margin-top: 30px;
}

.big-feedback .feedback__img {
    width: 50px;
    height: 50px;
}

#sectionAbout {
    background-position: center;
    background-size: cover;

    background-image: url('../img/about_us.png');
    background-image: url('../img/about_us--min.png');
    margin-bottom: 40px;
}

.about__p {
    color: #000;
    font-family: var(--open-sans);
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;

    margin-top: 10px;
}

.about__p--banner {
    max-width: 600px;
}

.about-tags {
    display: flex;
    gap: 18px;

    margin-top: 34px;
}

.about-tag {
    border-radius: 20px;
    border: 2px solid var(--color-green);

    padding: 12px 24px;

    background: #FFF;
}

.about-tag__value {
    color: var(--color-green);

    font-family: var(--inter);
    font-size: 67.901px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.679px;
}

.about-tag__text {
    color: var(--color-green);
    font-family: var(--open-sans);
    font-size: 15.843px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.h2--32 {
    margin-top: 22px;
}

.certs {
    display: flex;
    justify-content: center;

    flex-wrap: wrap;

    gap: 30px;

    margin-top: 40px;
}

.cert {
    width: calc(100%/3 - 60px/3);
}

.cert__h3 {
    color: var(--color-black);
    text-align: center;
    font-family: var(--inter);
    font-size: 36px;
    font-style: normal;
    font-weight: 600;
    line-height: 34px;
    letter-spacing: -0.36px;
}

.cert__link {
    display: block;
    width: 100%;

    cursor: pointer;

    margin-top: 12px;
}

.cert__link-img {
    width: 100%;
    height: auto;
    pointer-events: none;
}

.big-consultation {
    display: flex;
    justify-content: center;

    gap: 30px;

    width: 100%;

    margin-top: 30px;
}

.big-consultation__person {
    width: 390px;
}

.big-consultation__img {
    display: block;

    width: 195px;
    height: auto;

    border-radius: 50%;

    margin: 0 auto;
}

.big-consultation__fio {
    color: var(--color-black);

    text-align: center;
    font-family: var(--inter);
    font-size: 25px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    /* 35px */
    letter-spacing: -0.25px;

    margin-top: 20px;
}

.big-consultation__position {
    color: var(--color-black);

    text-align: center;
    font-family: var(--inter);
    font-size: 19px;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: -0.19px;

    margin-top: 12px;
}

.big-consultation__contacts {
    max-width: 643px;

    margin-top: 33px;
}

.big-consultation__p {
    color: #000;

    font-family: var(--inter);
    font-size: 26px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;

    text-align: center;
}

.big-consultation__phone-wrapper {
    text-align: center;

    margin-top: 38px;
}

.big-consultation__phone {
    display: inline-flex;
    align-items: center;

    text-decoration: none;
}

.big-consultation__phone span {
    display: inline-block;
    color: var(--color-black);

    font-family: var(--open-sans);
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration-line: underline;

    margin-left: 12px;
}

.big-consultation__socials {
    display: block;

    text-align: center;

    margin-top: 38px;
}

.big-consultation__link {
    display: inline-flex;
    align-items: center;

    color: var(--color-white--hover);

    font-family: var(--inter);
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;

    border-radius: 12px;

    text-decoration: none;

    padding: 8px 18px;
}

.big-consultation__link--whatsapp {
    background: #1BD741;
}

.big-consultation__link--telegram {
    background: #61A8DE;
}

.big-consultation__link+.big-consultation__link {
    margin-left: 32px;
}

.peach-block {
    padding: 24px 40px;

    border-radius: 25px;
    background: #ECDDCD;

    margin-top: 30px;
}

.peach-block__p {
    color: var(--color-black);

    font-family: var(--inter);
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 134.023%;

    margin-top: 18px;
}

.peach-plans {
    display: flex;
    justify-content: space-between;
    gap: 30px;

    width: 100%;

    margin-top: 12px;
}

.peach-plan {
    display: flex;
    align-items: center;
    gap: 25px;
    flex: 1;

    padding: 25px;
    height: 170px;

    border-radius: 11px;
    background: #ECDDCD;
}

.peach-plan__number {
    color: var(--color-green);
    font-family: var(--inter);
    font-size: 42px;
    font-style: normal;
    font-weight: 500;
    line-height: 160%;
    letter-spacing: -0.42px;
}

.peach-plan__p {
    color: var(--color-black);
    font-family: var(--inter);
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 152.5%;
    letter-spacing: -0.2px;
}

.faqs {
    margin-top: 20px;
}

.faq {
    border-radius: 16px;
    border-radius: 16px;
    overflow: hidden;
}

.faq--active {
    background-color: transparent;
    box-shadow: 0px 2px 15.8px 0px rgba(0, 0, 0, 0.16);
}

.faq+.faq {
    margin-top: 16px;
}

.faq__header {
    width: 100%;
    position: relative;

    padding: 8px 46px 8px 20px;

    border: none;
    background: #ECDDCD;

    color: var(--color-black);
    text-align: left;
    font-family: var(--inter);
    font-size: 24px;
    font-weight: 400;
    line-height: 150.5%;
    letter-spacing: -0.24px;

    cursor: pointer;
}

.faq__arrow {
    position: absolute;

    top: 21px;
    right: 16px;
}

.faq--active .faq__arrow {
    transform: rotate(180deg);
}

.faq__p {
    color: var(--color-black);
    font-family: var(--inter);
    font-size: 20px;
    font-weight: 400;
    line-height: 150.5%;
    letter-spacing: -0.2px;

    background: #FFF;

    padding: 16px 20px;

    display: none
}

.faq--active .faq__p {
    display: block;
}

.consultation-banner {
    height: 450px;

    background-position: center;
    background-size: cover;

    padding: 1px 0;

    margin-top: 30px;
}

.stages {
    display: flex;
    justify-content: space-between;

    margin-top: 18px;
    margin-bottom: 54px;
}

.stage {
    width: 285px;
}

.stage__img {
    width: 100%;
    height: auto;
}

.stage__title {
    color: var(--color-green);
    font-family: var(--open-sans);
    font-size: 32px;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.32px;

    margin-top: 20px;
}

.stage__p {
    color: var(--color-black);
    font-family: var(--open-sans);
    font-size: 24px;
    font-weight: 400;
    line-height: 134.5%;

    margin-top: 16px;
}

.h-position {
    display: block;
    color: #ABABAB;
}

.consultation-block {
    margin-top: 40px;
}

.consultation-block__header-img {
    width: 600px;
    height: 600px;

    float: left;

    margin-right: 55px;
}

.consultation-block__text {
    margin-top: 40px;
    /* clear: both; */
}

.consultation-block__text-img {
    width: 495px;
    height: auto;
    margin-bottom: 16px;
}

.consultation-block__text-img--right {
    float: right;

    margin-left: 30px;
}

.consultation-block__text-img--left {
    float: left;
    margin-right: 30px;
}

.consultation-block__li {
    color: var(--color-black);
    font-family: var(--open-sans);
    font-size: 20px;
    font-weight: 400;
    line-height: normal;

    position: relative;
}

.consultation-block__li span {
    position: relative;
}

.consultation-block__ul {
    padding-left: 32px;
    list-style-type: none;
}

.consultation-block__ul .consultation-block__li span::before {
    content: '';
    position: absolute;
    top: 14px;
    left: -24px;

    height: 6px;
    width: 6px;
    border-radius: 50%;

    background-color: var(--color-black);
}

.consultation-block__ol {
    padding-left: 32px;
}

.consultation-block__p {
    color: var(--color-black);
    font-family: var(--open-sans);
    font-size: 20px;
    font-weight: 400;
    line-height: normal;
}

.consultation-block__p--mt {
    margin-top: 20px;
}

.consultation-block__quote {
    color: #818181;
    font-family: var(--open-sans);
    font-size: 24px;
    font-weight: 400;
    line-height: normal;
}

.consultation-block__p+.consultation-block__p,
.consultation-block__p+.consultation-block__ol,
.consultation-block__p+.consultation-block__ul,
.consultation-block__quote+.consultation-block__p,
.consultation-block__quote+.consultation-block__ol,
.consultation-block__quote+.consultation-block__ul,
.consultation-block__ul+.consultation-block__p,
.consultation-block__ol+.consultation-block__p,
.consultation-block__ol+.consultation-block__p,
.consultation-block__p+.consultation-block__quote,
.consultation-block__ul+.consultation-block__quote,
.consultation-block__ol+.consultation-block__quote {
    margin-top: 20px;
}

.ages {
    display: flex;
    width: 100%;
    gap: 15px;

    margin-top: 30px;
}

.age {
    color: var(--color-green);
    font-family: var(--inter);
    font-size: 24px;
    font-weight: 400;
    line-height: normal;

    border-radius: 999px;
    border: 1px solid var(--color-green);

    text-align: center;

    white-space: nowrap;

    text-decoration: none;

    padding: 5px 20px;
}

.age:hover,
.age--active {
    color: #fff;
    background: var(--color-green);
}

.themes {
    background: #ECDDCD;

    padding: 16px;

    border-radius: 16px;

    margin-top: 35px;
}

/* .themes--active {
    box-shadow: 0px 2px 15.8px 0px rgba(0, 0, 0, 0.25);
} */

.themes__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.themes__header-title {
    color: #000;
    font-family: var(--inter);
    font-size: 24px;
    font-weight: 600;
    line-height: 34px;
    letter-spacing: -0.36px;
    cursor: pointer;
    flex: 1;
}

.themes__header-controls {
    display: flex;
    gap: 12px;

    margin-left: auto;
}

.themes__body {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;

    width: 100%;

    margin: 0;

    overflow: hidden;

    max-height: 0;

    transition: 0.3s all ease;
}

.themes--active .themes__body {
    max-height: 250px;
    margin-top: 24px;
    margin-bottom: 10px;
}

.button--all-themes,
.button--submit {
    display: none;
}

.themes--active .button--all-themes,
.themes--active .button--submit {
    display: inline-block;
}

.theme {
    cursor: pointer;
    width: calc(100%/4 - 30px/4);
}

.theme__checkbox {
    display: none;
}

.theme__checkbox--mobile {
    display: none;
}

.theme__button {
    display: inline-block;
    color: var(--color-green);
    font-family: var(--inter);
    font-size: 20px;
    font-weight: 400;
    line-height: normal;

    border-radius: 10px;
    border: 1px solid var(--color-green);

    background: var(--color-white--hover);

    padding: 15px 12px;
    letter-spacing: -0.4px;

    width: 100%;

    text-align: center;
}

.theme:hover .theme__button {
    background: #fff;
}

.theme:has(.theme__checkbox:checked) .theme__button {
    background: var(--color-green);
    color: #fff;
}

.button--theme {
    border-radius: 10px;
    padding: 5px 20px;
    font-size: 22px;
}

.button--open-arrow {
    transform: rotate(180deg);
    height: 20px;
    width: 20px;
    margin-left: 10px;
}

.themes--active .button--open-arrow {
    transform: rotate(0deg);
}

.button--all-themes-mobile {
    display: none;
}

.themes__mobile {
    display: none;
}

.separator {
    display: flex;
    flex-wrap: nowrap;
    gap: 30px;
}

.separator__content {
    flex: 1;

    padding-bottom: 48px;
}

.separator__sidebar {
    width: 390px;

    padding-bottom: 48px;

    position: relative;
}

.sidebar__block {
    border-radius: 10px;
    background: #FFF;

    padding: 20px 20px;
}

.sidebar__block--big {
    margin-top: 2rem;
}

.sidebar__block+.sidebar__block {
    margin-top: 24px;
}

.sidebar__block--sticky {
    position: fixed;
    top: 0;
    width: 390px;
}

.sidebar__block--absolute {
    position: absolute;
    bottom: 47px;
    top: auto;
}

.sidebar__title {
    color: var(--color-black);

    font-family: var(--inter);
    font-size: 36px;
    font-weight: 600;
    line-height: 34px;
    letter-spacing: -0.36px;
}

.sidebar__title--small {
    font-size: 25px;
}

.sidebar__ul {
    list-style-type: none;
    padding-left: 30px;

    margin-top: 20px;
}

.sidebar__li {
    position: relative;
}

.sidebar__li a {
    color: #2D2D2D;
    font-family: var(--open-sans);
    font-size: 20px;
    font-weight: 400;
    line-height: 134.5%;
    text-decoration: none;
}

.sidebar__li a:hover {
    text-decoration: underline;
}

.sidebar__li::before {
    content: '';
    position: absolute;
    top: 9px;
    left: -20px;

    height: 5px;
    width: 5px;
    border-radius: 50%;

    background-color: var(--color-black);
}

.sidebar-consult {
    margin-top: 16px;
}

.sidebar-consult__button {
    display: inline-block;
    text-decoration: none;
    width: 100%;

    color: var(--color-green);

    text-align: center;
    font-family: var(--inter);
    font-size: 22px;
    font-weight: 500;
    line-height: normal;

    padding: 9.5px 10px;

    border-radius: 6px;
    border: 1px solid var(--color-green);

    margin-top: 16px;
}

.sidebar-consult__button:hover {
    background-color: var(--color-green);
    color: #fff;
}

.sidebar-consult__p {
    color: #2D2D2D;
    font-family: var(--open-sans);
    font-size: 20px;
    font-weight: 400;
    line-height: normal;

    margin-top: 16px;
}

.sidebar-consult__header {
    display: flex;
    align-items: center;
    gap: 14px;
}

.sidebar-consult__img {
    width: 48px;
    height: 48px;

    border-radius: 50%;
}

.sidebar-consult__fio {
    color: var(--color-black);
    font-family: var(--inter);
    font-size: 24px;
    font-weight: 500;
    line-height: normal;
}

.sidebar-consult__position {
    color: #2D2D2D;

    font-family: var(--open-sans);
    font-size: 20px;
    font-weight: 400;
    line-height: normal;

    margin-top: 7px;
}

.article__h1 {
    color: var(--color-black);
    font-family: var(--inter);
    font-size: 42px;
    font-weight: 600;
    line-height: 140%;
    letter-spacing: -0.42px;

    margin-top: 24px;
}

.article__stats {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;

    margin-top: 7px;
}

.article__stat {
    display: flex;
    align-items: center;
    gap: 6px;
}

.article__stat-value {
    color: var(--color-brown);
    font-family: var(--open-sans);
    font-size: 20px;
    font-weight: 400;
    line-height: 140%;
}

.article__stat-link {
    color: var(--color-brown);
    font-family: var(--open-sans);
    font-size: 20px;
    font-weight: 400;
    line-height: 140%;
    text-decoration-line: underline;
}

.lined-section {
    border-top: 1px solid #9E9E9E;
}

.article__banner {
    border-radius: 10px;
    width: 100%;
    height: auto;

    margin-top: 22px;
}

.blog__quote {
    border-radius: 10px;
    border: 3px solid var(--color-green);

    color: var(--color-green);
    font-family: var(--open-sans);
    font-size: 20px;
    font-weight: 400;
    line-height: normal;

    padding: 16px 30px;

    background: #ECDDCD;

    margin-top: 24px;
}

.blog__quote--green {
    border: 3px solid var(--color-brown--light);

    color: var(--color-brown--light);

    background: var(--color-green);
}

.blog__h1 {
    color: var(--color-black);
    font-family: var(--inter);
    font-size: 42px;
    font-weight: 600;
    line-height: 120%;
    letter-spacing: -0.5px;

    margin-top: 24px;
}

.blog__h2 {
    color: var(--color-black);
    font-family: var(--inter);
    font-size: 38px;
    font-weight: 600;
    line-height: 140%;
    letter-spacing: -0.5px;

    margin-top: 6px;
}

.blog__h3 {
    color: var(--color-black);
    font-family: var(--inter);
    font-size: 36px;
    font-weight: 600;
    line-height: 48.176px;
    letter-spacing: -0.5px;

    margin-top: 6px;
}

.blog__h4 {
    color: var(--color-black);
    font-family: var(--inter);
    font-size: 30px;
    font-weight: 600;
    line-height: 28.339px;
    letter-spacing: -0.5px;

    margin-top: 6px;
}

.blog__h5 {
    color: var(--color-black);
    font-family: var(--inter);
    font-size: 24px;
    font-weight: 600;
    line-height: 22.671px;
    letter-spacing: -0.5px;

    margin-top: 13px;
}

.blog__photo {
    width: 420px;

    margin-top: 32px;
}

.table__container {
    overflow-x: auto;
    width: 100%;

    margin-top: 24px;
}

.blog-table {
    width: 100%;

    border-radius: 4px;
    border: 1px solid var(--color-green);

    /* background: #FFF; */
    display: table;

    margin-bottom: 8px;
}

.blog-table__th {
    color: var(--color-black);
    font-family: var(--inter);
    font-size: 24px;
    font-weight: 600;
    line-height: 130%;

    background: rgba(0, 0, 0, 0.06);

    display: table-cell;

    padding: 8px 16px;

    border-bottom: 1px solid var(--color-green);
    border-left: none;
    border-right: 1px solid var(--color-green);

    white-space: nowrap;
}

.blog-table__th:last-of-type {
    border-right: none;
}

.blog-table__tr {
    display: table-row;
}

.blog-table__tr:nth-of-type(2n) .blog-table__td {
    background: #fff;
}

.blog-table__td {
    display: table-cell;
    padding: 10px 16px;

    border-bottom: 1px solid var(--color-green);
    border-left: none;
    border-right: 1px solid var(--color-green);

    background: rgba(0, 0, 0, 0.06);
}

.blog-table__td:last-of-type {
    border-right: none;
}

.blog-table__tr:last-of-type .blog-table__td {
    border-bottom: none;
}

.blog-footer {

    margin-top: 50px;
}

.blog-footer__top {
    display: flex;
    align-items: center;
}

.blog-footer__person {
    display: flex;
    align-items: center;
}

.blog-footer__img {
    width: 48px;
    height: 48px;

    border-radius: 50%;
}

.blog-footer__credits {
    color: var(--color-black);
    font-family: var(--open-sans);
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
    letter-spacing: -0.16px;

    max-width: 324px;

    margin-left: 14px;
}

.blog-footer__socials {
    display: flex;
    align-items: center;

    flex-wrap: wrap;
    gap: 14px;

    margin-left: auto;
}

.blog-footer__text {
    color: var(--color-black);
    font-family: var(--open-sans);
    font-size: 20px;
    line-height: 134.5%;
}

.blog-footer__link {
    height: 30px;
    width: auto;
}

.blog-footer__link img {
    height: 100%;
}

.blog-tags {
    display: flex;

    gap: 20px;

    margin-top: 15px;
}

.blog-tag {
    color: var(--color-green);
    font-family: var(--inter);
    font-size: 24px;
    font-weight: 600;
    line-height: 16px;
    letter-spacing: -0.24px;

    padding: 10px 10px;

    border-radius: 999px;
    background: rgba(73, 104, 84, 0.10);
}

.comment-slug {
    width: 100%;
    height: 94px;
    background: #D9D9D9;
}

.comment-slug {
    margin-top: 24px;
}

.scrolltotop {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    align-items: center;
    background-color: var(--color-green);
    border: none;
    border-radius: 50%;
    bottom: 60px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    height: 80px;
    justify-content: center;
    position: fixed;
    right: 30px;
    text-decoration: none;
    width: 80px;
    z-index: 3;
    border: 2px solid var(--main-background);
    opacity: 0;
    pointer-events: none;
}

.scrolltotop--active {
    opacity: 1;
    pointer-events: auto;
}

.fancybox-slide--html .fancybox-close-small {
    width: 60px;
    height: 60px;
}

.center {
    text-align: center;
}

.search__results {
    color: var(--color-black);
    font-family: var(--inter);
    font-size: 24px;
    line-height: 22.671px;
    letter-spacing: -0.5px;
    margin-top: 14px;
}

.glightbox-open {
    overflow-x: hidden !important;
    overflow-y: auto !important;
}

.gscrollbar-fixer,
.compensate-for-scrollbar {
    margin-right: 0 !important;
}

/* ПРАВКИ 04.2025*/

.visible--l {
    display: none;
}

main,
.footer {
    zoom: 80%;
}

.contacts--mobile {
    align-items: center;
    margin-top: 1rem;
    display: none;
}

.contacts.contacts--mobile .contact__value {
    font-size: 18px;
}

.body--before::before {
    display: block;
    content: '';
    height: 77px;
    width: 100%;
}

.sidebar-consult__img {
    width: 80px;
    height: 80px;

    border-radius: 50%;
}

.article-body h3+p:not(.blog__quote),
.article-body h3+p:not(.blog__quote) {
    margin-top: 5px;
}

@media (max-width: 999px) {
    .cert__h3 {
        line-height: 24px;
    }

    .header.header--fixed {
        position: fixed;
        z-index: 9;
        top: 0;
        left: 0;
        width: 100%;
        background-color: var(--main-background);
    }

    .sidebar__block.sidebar__block--big {
        margin-top: 1rem;
    }

    .sidebar__block.sidebar__block--big .sidebar__title--small {
        font-size: 1.2rem;
        line-height: 24px;
    }

    .sidebar__block.sidebar__block--big .sidebar-consult__img {
        height: 50px;
        width: 50px;
    }

    .sidebar__block.sidebar__block--big .sidebar-consult__fio {
        font-size: 1rem;
    }

    .sidebar__block.sidebar__block--big .sidebar-consult__position {
        font-size: 1rem;
    }

    .sidebar__block.sidebar__block--big .sidebar-consult__p {
        font-size: 1rem;
    }

    .sidebar__block.sidebar__block--big .sidebar-consult__button {
        font-size: 1rem;
    }
}

@media (max-width: 767px) {
    .contacts--mobile {
        display: flex;
    }
}