@charset "UTF-8";

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

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

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

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

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

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

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

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

@font-face {
    font-family: PP Neue Machina;
    font-display: swap;
    src: url("../fonts/PPNeueMachina-Ultrabold.woff2") format("woff2"), url("../fonts/PPNeueMachina-Ultrabold.woff") format("woff");
    font-weight: 800;
    font-style: normal;
}

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

* {
    padding: 0px;
    margin: 0px;
    border: 0px;
}

*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    min-width: 320px;
}

body {
    color: #333333;
    line-height: 1;
    font-family: "Manrope", sans-serif;
    font-size: 20px;
    -ms-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

input,
button,
textarea {
    font-family: "Manrope", sans-serif;
    font-size: inherit;
}

button {
    cursor: pointer;
    color: inherit;
    background-color: inherit;
}

a {
    color: inherit;
}

a:link,
a:visited {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

ul {
    padding-left: 32px;
}

ul li::marker {
    color: #95C11F;
}

img {
    vertical-align: top;
    border-radius: 30px;
    filter: grayscale(100%);
}

img:hover {
    filter: none;
    -webkit-filter: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: inherit;
    font-size: inherit;
}
.spollers {
    display: -ms-grid;
    display: grid;
    gap: 15px;
}

.spollers__item {
    font-size: 1.25rem;
}

.spollers__title {
    width: 100%;
    cursor: default;
    text-align: left;
    border: 1px solid #eee;
    padding: 0.625rem 0.9375rem;
    border-radius: 0.3125rem;
    position: relative;
}

._spoller-init .spollers__title {
    cursor: pointer;
}

._spoller-init .spollers__title::before,
._spoller-init .spollers__title::after {
    content: "";
    position: absolute;
    right: 10px;
    top: 50%;
    background-color: #000;
    height: 2px;
    width: 15px;
    -webkit-transition: -webkit-transform 0.5s ease 0s;
    transition: -webkit-transform 0.5s ease 0s;
    -o-transition: transform 0.5s ease 0s;
    transition: transform 0.5s ease 0s;
    transition: transform 0.5s ease 0s, -webkit-transform 0.5s ease 0s;
}

._spoller-init .spollers__title::before {
    -webkit-transform: translate(-75%, -50%) rotate(40deg);
    -ms-transform: translate(-75%, -50%) rotate(40deg);
    transform: translate(-75%, -50%) rotate(40deg);
}

._spoller-init .spollers__title::after {
    -webkit-transform: translate(0, -50%) rotate(-40deg);
    -ms-transform: translate(0, -50%) rotate(-40deg);
    transform: translate(0, -50%) rotate(-40deg);
}

._spoller-init .spollers__title._spoller-active::before {
    -webkit-transform: translateX(-75%) rotate(-40deg);
    -ms-transform: translateX(-75%) rotate(-40deg);
    transform: translateX(-75%) rotate(-40deg);
}

._spoller-init .spollers__title._spoller-active::after {
    -webkit-transform: rotate(40deg);
    -ms-transform: rotate(40deg);
    transform: rotate(40deg);
}

.spollers__body {
    padding: 1.25rem;
    border-radius: 0.3125rem;
    border: 1px solid #eee;
}

body::after {
    content: "";
    background-color: rgba(0, 0, 0, 0.5);
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    -webkit-transition: opacity 0.8s ease 0s;
    -o-transition: opacity 0.8s ease 0s;
    transition: opacity 0.8s ease 0s;
    pointer-events: none;
    z-index: 149;
}

.popup-show body::after {
    opacity: 1;
}

.popup {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    -webkit-transition: visibility 0.8s ease 0s;
    -o-transition: visibility 0.8s ease 0s;
    transition: visibility 0.8s ease 0s;
    visibility: hidden;
    pointer-events: none;
}

.popup_show {
    z-index: 150;
    visibility: visible;
    overflow: auto;
    pointer-events: auto;
}

.popup_show .popup__content {
    visibility: visible;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.popup__wrapper {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: center;
    align-items: center;
    min-height: 100%;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    width: 100%;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    align-items: center;
}

.popup__content {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    visibility: hidden;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transition: -webkit-transform 0.3s ease 0s;
    transition: -webkit-transform 0.3s ease 0s;
    -o-transition: transform 0.3s ease 0s;
    transition: transform 0.3s ease 0s;
    transition: transform 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
    background-color: #fff;
    padding: 3.625rem 3.9375rem;
    width: 34rem;
    max-width: 100%;
    border-radius: 20px;
}

.lock .popup__content {
    visibility: visible;
}

.popup__body {
    width: 100%;
}

.popup__close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    display: -ms-flexbox;
    display: flex;
    padding: 0.75rem;
    outline: none;
    z-index: 2;
}

.popup__title {
    margin-bottom: 2.0625rem;
    color: #333333;
    font-size: 1.5rem;
    line-height: 1.1666666667;
    font-variation-settings: "wght" 500;
}

.popup__subtitle {
    margin-bottom: 2.0625rem;
    color: #333333;
    font-size: 1.125rem;
    line-height: 1.1666666667;
    font-variation-settings: "wght" 500;
}

*::-webkit-scrollbar {
    width: 8px;
    height: 8px;
    -webkit-transition: 0.3s all ease;
    transition: 0.3s all ease;
    cursor: -webkit-grab;
    cursor: grab;
}

*::-webkit-scrollbar-track {
    background: #ffffff;
    /* цвет дорожки */
}

*::-webkit-scrollbar-thumb {
    background-color: #333333;
    /* цвет плашки */
    border-radius: 20px;
    /* закругления плашки */
    border: 1px solid #ffffff;
}

*::-webkit-scrollbar:horizontal {
    height: 10px;
    width: 8px;
}

* {
    scroll-behavior: smooth;
}

.lock body {
    overflow: hidden;
    -ms-touch-action: none;
    touch-action: none;
    padding-right: 0 !important;
}

._menu-active body {
    overflow: hidden;
    -ms-touch-action: none;
    touch-action: none;
}

.wrapper {
    position: relative;
    min-height: 100%;
    max-width: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    overflow: hidden;
    margin: 0 auto;
}

.wrapper>main {
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
}

.wrapper>* {
    min-width: 0;
}

.wrapper._sticky {
    overflow: unset;
}

[class*=__container] {
    max-width: 73.75rem;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.button {
    position: relative;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1rem;
    padding: 16px;
    color: #fff;
    background-color: #EFEEEE;
    border: 1px solid transparent;
    border-radius: 60px;
    font-size: 20px;
    text-align: center;
    overflow: hidden;
    -webkit-transition-property: opacity, color, background-color, border-color;
    -o-transition-property: opacity, color, background-color, border-color;
    transition-property: opacity, color, background-color, border-color;
    -webkit-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease;
    -o-transition-timing-function: ease;
    transition-timing-function: ease;
}

.button:focus {
    outline: none;
}

.button._disabled {
    color: #fff;
    background-color: #D5D5D5;
    pointer-events: none;
}

.button._highlight {
    padding: 18px 44px;
    height: 65px;
    color: #fff;
    background-color: #95C11F;
    font-weight: 500;
}

.button._standart {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 38px;
    color: #fff !important;
    height: 44px;
    background-color: #95C11F;
    border-radius: 10px;
    border: 1px solid transparent;
    -webkit-transition: 0.3s ease all;
    -o-transition: 0.3s ease all;
    transition: 0.3s ease all;
}

.button._transparent {
    padding: 12px 36px;
    color: #333333;
    background-color: transparent;
    font-size: 20px;
    line-height: 30px;
    font-weight: 500;
    border: 1px solid #4F4F4F;
}

.btn {
    padding: 18px 44px;
    height: 65px;
    color: #fff !important;
    background-color: #95c11f;
    font-weight: 500;
    min-width: 225px;
    position: relative;
    box-sizing: border-box;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    border: 1px solid transparent;
    border-radius: 60px;
    font-size: 20px;
    text-align: center;
    overflow: hidden;
    transition-property: opacity, color, background-color, border-color;
    transition-duration: .3s;
    transition-timing-function: ease;
}

input[type=text],
input[type=email],
input[type=tel],
textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.input {
    border-radius: 0;
    width: 100%;
    display: block;
    padding: 0px 20px;
    border: 1px solid #eee;
}

textarea.input {
    resize: none;
    padding: 0px 0px;
}

body::after {
    content: "";
    background-color: rgba(0, 0, 0, 0.5);
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    -webkit-transition: opacity 0.8s ease 0s;
    -o-transition: opacity 0.8s ease 0s;
    transition: opacity 0.8s ease 0s;
    pointer-events: none;
    z-index: 149;
}

.popup-show body::after {
    opacity: 1;
}

.popup {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    -webkit-transition: visibility 0.8s ease 0s;
    -o-transition: visibility 0.8s ease 0s;
    transition: visibility 0.8s ease 0s;
    visibility: hidden;
    pointer-events: none;
}

.popup_show {
    z-index: 150;
    visibility: visible;
    overflow: auto;
    pointer-events: auto;
}

.popup_show .popup__content {
    visibility: visible;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.popup__wrapper {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: center;
    align-items: center;
    min-height: 100%;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    width: 100%;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    align-items: center;
}

.popup__content {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    visibility: hidden;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transition: -webkit-transform 0.3s ease 0s;
    transition: -webkit-transform 0.3s ease 0s;
    -o-transition: transform 0.3s ease 0s;
    transition: transform 0.3s ease 0s;
    transition: transform 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
    background-color: #fff;
    padding: 3.625rem 3.9375rem;
    width: 34rem;
    max-width: 100%;
    border-radius: 20px;
}

.lock .popup__content {
    visibility: visible;
}

.popup__body {
    width: 100%;
}

.popup__close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    display: -ms-flexbox;
    display: flex;
    padding: 0.75rem;
    outline: none;
    z-index: 2;
}

.popup__title {
    margin-bottom: 2.0625rem;
    color: #333333;
    font-size: 1.5rem;
    line-height: 1.1666666667;
    font-variation-settings: "wght" 500;
}

.popup__subtitle {
    margin-bottom: 2.0625rem;
    color: #333333;
    font-size: 1.125rem;
    line-height: 1.1666666667;
    font-variation-settings: "wght" 500;
}

[class*=-ibg] {
    position: relative;
}

[class*=-ibg] img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    -o-object-fit: cover;
    object-fit: cover;
}

[class*=-ibg_contain] img {
    -o-object-fit: contain;
    object-fit: contain;
}

input {
    border-radius: 0;
}

[type=search]::-webkit-search-cancel-button {
    -webkit-appearance: none;
    appearance: none;
    padding-left: 20px;
    height: 20px;
    width: 20px;
    background-image: url(../img/news/cansel.svg);
    background-size: 20px 20px;
    background-repeat: no-repeat;
    background-position: center right;
    color: #fff;
}

@supports (margin-bottom: clamp(2.5rem, 1.6111111111rem + 4.4444444444vw, 5rem)) {
    section {
        margin-bottom: clamp(2.5rem, 1.6111111111rem + 4.4444444444vw, 5rem);
    }
}

@supports not (margin-bottom: clamp(2.5rem, 1.6111111111rem + 4.4444444444vw, 5rem)) {
    section {
        margin-bottom: calc(2.5rem + 2.5 * (100vw - 20rem) / 56.25);
    }
}

.input-field {
    position: relative;
}

.input-field:not(:last-child) {
    margin-bottom: 1rem;
}

.input-field input {
    position: relative;
    padding: 0.875rem 2.5rem 0.875rem 0.875rem;
    background-color: transparent;
    border-radius: 0.5rem;
    outline: none;
    z-index: 1;
}

.input-field label {
    position: absolute;
    top: 50%;
    left: 14px;
    padding: 0.125rem;
    color: #B8B9BA;
    background-color: #fff;
    font-size: 0.875rem;
    line-height: 1.1428571429;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 0;
    -webkit-transition: 0.3s ease all;
    -o-transition: 0.3s ease all;
    transition: 0.3s ease all;
}

.input-field .input-icon {
    position: absolute;
    top: 50%;
    right: 0.875rem;
    display: -ms-flexbox;
    display: flex;
    padding: 0.1875rem;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 3;
    cursor: pointer;
}

.input-field input:focus {
    border-color: #95C11F;
}

.input-field input:focus~label,
.input-field input.used~label {
    top: 1px;
    left: 29px;
    /* font-size: 14px; */
    color: #95C11F;
    font-size: 0.75rem;
    z-index: 1;
}

.main-title {
    font-family: "Gotham Pro";
    font-weight: 500;
}

@supports (font-size: clamp(2rem, 1.4666666667rem + 2.6666666667vw, 3.5rem)) {
    .main-title {
        font-size: clamp(2rem, 1.4666666667rem + 2.6666666667vw, 3.5rem);
    }
}

@supports not (font-size: clamp(2rem, 1.4666666667rem + 2.6666666667vw, 3.5rem)) {
    .main-title {
        font-size: calc(2rem + 1.5 * (100vw - 20rem) / 56.25);
    }
}

@supports (font-size: clamp(1rem, 0.7333333333rem + 1.3333333333vw, 1.75rem)) {
    .main-subtitle {
        font-size: clamp(1rem, 0.7333333333rem + 1.3333333333vw, 1.75rem);
    }
}

@supports not (font-size: clamp(1rem, 0.7333333333rem + 1.3333333333vw, 1.75rem)) {
    .main-subtitle {
        font-size: calc(1rem + 0.75 * (100vw - 20rem) / 56.25);
    }
}

.section-title {
    color: #333333;
    text-align: center;
    font-family: "Gotham Pro";
    font-weight: 500;
}

@supports (margin-bottom: clamp(1.875rem, 1.6083333333rem + 1.3333333333vw, 2.625rem)) {
    .section-title {
        margin-bottom: clamp(1.875rem, 1.6083333333rem + 1.3333333333vw, 2.625rem);
    }
}

@supports not (margin-bottom: clamp(1.875rem, 1.6083333333rem + 1.3333333333vw, 2.625rem)) {
    .section-title {
        margin-bottom: calc(1.875rem + 0.75 * (100vw - 20rem) / 56.25);
    }
}

@supports (font-size: clamp(2rem, 1.9111111111rem + 0.4444444444vw, 2.25rem)) {
    .section-title {
        font-size: clamp(2rem, 1.9111111111rem + 0.4444444444vw, 2.25rem);
    }
}

@supports not (font-size: clamp(2rem, 1.9111111111rem + 0.4444444444vw, 2.25rem)) {
    .section-title {
        font-size: calc(2rem + 0.25 * (100vw - 20rem) / 56.25);
    }
}

@supports (margin-bottom: clamp(1.25rem, 2.0972222222rem + -1.1111111111vw, 1.875rem)) {
    .section-title._with-text {
        margin-bottom: clamp(1.25rem, 2.0972222222rem + -1.1111111111vw, 1.875rem);
    }
}

@supports not (margin-bottom: clamp(1.25rem, 2.0972222222rem + -1.1111111111vw, 1.875rem)) {
    .section-title._with-text {
        margin-bottom: calc(1.875rem + -0.625 * (100vw - 20rem) / 56.25);
    }
}

.section-title span {
    color: #95C11F;
}

.section-subtitle {
    margin: 0 auto;
    max-width: 1150px;
    line-height: 1.3;
    text-align: center;
}

@supports (margin-bottom: clamp(1.875rem, 1.475rem + 2vw, 3rem)) {
    .section-subtitle {
        margin-bottom: clamp(1.875rem, 1.475rem + 2vw, 3rem);
    }
}

@supports not (margin-bottom: clamp(1.875rem, 1.475rem + 2vw, 3rem)) {
    .section-subtitle {
        margin-bottom: calc(1.875rem + 1.125 * (100vw - 20rem) / 56.25);
    }
}

@supports (font-size: clamp(0.875rem, 0.6972222222rem + 0.8888888889vw, 1.375rem)) {
    .section-subtitle {
        font-size: clamp(0.875rem, 0.6972222222rem + 0.8888888889vw, 1.375rem);
    }
}

@supports not (font-size: clamp(0.875rem, 0.6972222222rem + 0.8888888889vw, 1.375rem)) {
    .section-subtitle {
        font-size: calc(0.875rem + 0.5 * (100vw - 20rem) / 56.25);
    }
}

.load-more {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 32px;
}

mark {
    padding: 0 7px;
    border-radius: 12px;
    background-color: rgba(149, 193, 31, 0.4117647059);
}

.see-all {
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-item-align: end;
    align-self: flex-end;
    gap: 49px;
    padding: 14px 14px 14px 30px;
    height: 49px;
    color: #95C11F;
    background-color: #333333;
    border-radius: 10px;
    -webkit-transition: 0.3s ease color;
    -o-transition: 0.3s ease color;
    transition: 0.3s ease color;
}

@supports (font-size: clamp(1rem, 0.9111111111rem + 0.4444444444vw, 1.25rem)) {
    .see-all {
        font-size: clamp(1rem, 0.9111111111rem + 0.4444444444vw, 1.25rem);
    }
}

@supports not (font-size: clamp(1rem, 0.9111111111rem + 0.4444444444vw, 1.25rem)) {
    .see-all {
        font-size: calc(1rem + 0.25 * (100vw - 20rem) / 56.25);
    }
}

.see-all svg {
    -webkit-transition: 0.3s ease transform;
    -o-transition: 0.3s ease transform;
    transition: 0.3s ease transform;
    -webkit-transform: translateY(8px);
    -ms-transform: translateY(8px);
    transform: translateY(8px);
}

.see-all svg path {
    -webkit-transition: 0.3s ease color;
    -o-transition: 0.3s ease color;
    transition: 0.3s ease color;
}

.swiper__navigation {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    gap: 50px;
    margin: 0 auto;
}

.swiper__navigation>div {
    padding: 5px;
    cursor: pointer;
}

.swiper__navigation>div path {
    -webkit-transition: 0.3s ease fill;
    -o-transition: 0.3s ease fill;
    transition: 0.3s ease fill;
}

.softs-grid ul li {
    list-style: none;
}

.softs-grid__item {
    list-style: none;
}

.softs-grid ul:not(.select__list):not(.nav-hero__list) {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 16px;
    padding-left: 0;
}

.softs-grid ul:not(.select__list):not(.nav-hero__list):not(:last-child) {
    margin-bottom: 32px;
}

.softs-grid ul:not(.select__list):not(.nav-hero__list) li {
    font-size: 16px;
    border: 1px solid #814997;
    border-radius: 10px;
    -webkit-transition: 0.3s ease all;
    -o-transition: 0.3s ease all;
    transition: 0.3s ease all;
    list-style: none;
}

.softs-grid ul:not(.select__list):not(.nav-hero__list) li a {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 7px 14px;
}

.spoiler {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 16px;
    width: 262px;
    background-color: #fff;
}

.spoiler__text {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
    padding: 14px 16px;
    font-weight: 300;
    border-radius: 10px;
    border: 1px solid #CCC;
    background-color: #fff;
    cursor: pointer;
}

.spoiler__text svg {
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    -o-transition: transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

._spoiler-open .spoiler__text {
    border-radius: 10px 10px 0 0;
    border-bottom-color: transparent;
}

._spoiler-open .spoiler__text svg {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.spoiler__hidden-block {
    display: none;
    position: absolute;
    top: 49px;
    left: 0;
    right: 0;
    padding: 16px;
    max-height: 300px;
    background-color: #fff;
    border-radius: 0 0 10px 10px;
    border: 1px solid #CCC;
    border-top-color: transparent;
    -webkit-box-shadow: -1px 9px 13.3px 1px rgba(0, 0, 0, 0.11);
    box-shadow: -1px 9px 13.3px 1px rgba(0, 0, 0, 0.11);
    overflow: hidden scroll;
}

._spoiler-open .spoiler__hidden-block {
    display: -ms-flexbox;
    display: flex;
}

.spoiler__list {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 6px;
    width: 100%;
}

.spoiler__item {
    padding-bottom: 6px;
    line-height: 1.2;
    -webkit-transition: 0.3s ease opacity;
    -o-transition: 0.3s ease opacity;
    transition: 0.3s ease opacity;
}

.spoiler__item:not(:last-child) {
    border-bottom: 1px solid #D9D9D9;
}

.select {
    position: relative;
    gap: 16px;
    min-width: 262px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    background-color: #fff;
}

.select__title {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
    padding: 14px 16px;
    font-weight: 300;
    border-radius: 10px;
    border: 1px solid #814997;
    background-color: #fff;
    cursor: pointer;
}

._open-select .select__title {
    border-radius: 10px 10px 0 0;
    border-bottom-color: transparent;
}

.select__title span {
    font-family: "Gotham Pro";
    color: #814997;
    font-weight: 500;
    line-height: 1.1;
    white-space: pre;
}

.select__title svg {
    -webkit-transition: 0.3s ease transform;
    -o-transition: 0.3s ease transform;
    transition: 0.3s ease transform;
}

.select__title svg path {
    stroke: #814997;
}

._open-select .select__title svg {
    -webkit-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    transform: rotate(-180deg);
}

.select__hidden-block {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    max-height: 300px;
    background-color: #fff;
    border-radius: 0 0 10px 10px;
    border: 1px solid #814997;
    border-top-color: transparent;
    -webkit-box-shadow: -1px 9px 13.3px 1px rgba(0, 0, 0, 0.11);
    box-shadow: -1px 9px 13.3px 1px rgba(0, 0, 0, 0.11);
    overflow: hidden scroll;
    -webkit-transform: scaleY(0);
    -ms-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transition: 0.3s ease transform;
    -o-transition: 0.3s ease transform;
    transition: 0.3s ease transform;
    z-index: 3;
}

.select__hidden-block::-webkit-scrollbar-track {
    background: transparent;
}

._open-select .select__hidden-block {
    -webkit-transform: scaleY(1);
    -ms-transform: scaleY(1);
    transform: scaleY(1);
}

.select__list {
    padding: 12px 0;
    background-color: #fff;
}

.select__item {
    padding: 10px 12px;
    color: #4F4F4F;
    line-height: 1.6428571429;
    -webkit-transition: 0.3s ease background-color;
    -o-transition: 0.3s ease background-color;
    transition: 0.3s ease background-color;
    cursor: pointer;
}

.select__item:not(:last-child) {
    border-bottom: 1px solid #D9D9D9;
}

.select__item._selected {
    display: none;
}

.separator {
    width: 100%;
    height: 1px;
    background-color: #DADADA;
}

@supports (margin-top: clamp(1.875rem, 0.3194444444rem + 7.7777777778vw, 6.25rem)) {
    .separator {
        margin-top: clamp(1.875rem, 0.3194444444rem + 7.7777777778vw, 6.25rem);
    }
}

@supports not (margin-top: clamp(1.875rem, 0.3194444444rem + 7.7777777778vw, 6.25rem)) {
    .separator {
        margin-top: calc(1.875rem + 4.375 * (100vw - 20rem) / 56.25);
    }
}

details {
    position: relative;
}

details summary::-webkit-details-marker {
    display: none;
}

details>summary {
    list-style: none;
    padding-right: 2rem;
}

details summary:before {
    content: url(../img/plus.svg);
    position: absolute;
    right: 0;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    width: 32px;
    height: 32px;
    line-height: 16px;
    border-radius: 50%;
    background-color: #95C11F;
    -webkit-transition: 0.3s ease content;
    -o-transition: 0.3s ease content;
    transition: 0.3s ease content;
}

details[open] summary:before {
    content: url(../img/minus.svg);
}

.accordion {
    margin: 0 auto;
}

.accordion__details {
    padding: 20px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    outline: none;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    cursor: pointer;
}

.accordion__details summary {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    font-weight: 500;
    line-height: 1.3;
    outline: none;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

@supports (font-size: clamp(1rem, 0.9111111111rem + 0.4444444444vw, 1.25rem)) {
    .accordion__details summary {
        font-size: clamp(1rem, 0.9111111111rem + 0.4444444444vw, 1.25rem);
    }
}

@supports not (font-size: clamp(1rem, 0.9111111111rem + 0.4444444444vw, 1.25rem)) {
    .accordion__details summary {
        font-size: calc(1rem + 0.25 * (100vw - 20rem) / 56.25);
    }
}

.accordion__details p {
    padding-top: 12px;
    padding-right: 50px;
    max-width: 90%;
    color: #4F4F4F;
    font-weight: 300;
    line-height: 1.3;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

@supports (font-size: clamp(0.875rem, 0.7416666667rem + 0.6666666667vw, 1.25rem)) {
    .accordion__details p {
        font-size: clamp(0.875rem, 0.7416666667rem + 0.6666666667vw, 1.25rem);
    }
}

@supports not (font-size: clamp(0.875rem, 0.7416666667rem + 0.6666666667vw, 1.25rem)) {
    .accordion__details p {
        font-size: calc(0.875rem + 0.375 * (100vw - 20rem) / 56.25);
    }
}

.accordion__details ul {
    padding-top: 12px;
    padding-right: 50px;
    padding-left: 20px;
    max-width: 90%;
    color: #4F4F4F;
    font-weight: 300;
    line-height: 1.3;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

@supports (font-size: clamp(0.875rem, 0.7416666667rem + 0.6666666667vw, 1.25rem)) {
    .accordion__details ul {
        font-size: clamp(0.875rem, 0.7416666667rem + 0.6666666667vw, 1.25rem);
    }
}

@supports not (font-size: clamp(0.875rem, 0.7416666667rem + 0.6666666667vw, 1.25rem)) {
    .accordion__details ul {
        font-size: calc(0.875rem + 0.375 * (100vw - 20rem) / 56.25);
    }
}

.accordion__details ul li {
    list-style: disc;
}

.accordion__details[open] p {
    -webkit-animation: appear 0.3s ease;
    animation: appear 0.3s ease;
}

@supports (margin-bottom: clamp(1rem, 0.6444444444rem + 1.7777777778vw, 2rem)) {
    .simple__wrapper {
        margin-bottom: clamp(1rem, 0.6444444444rem + 1.7777777778vw, 2rem);
    }
}

@supports not (margin-bottom: clamp(1rem, 0.6444444444rem + 1.7777777778vw, 2rem)) {
    .simple__wrapper {
        margin-bottom: calc(1rem + 1 * (100vw - 20rem) / 56.25);
    }
}

.simple-swiper__navigation {
    margin: 0 0 0 auto;
}

.slide-simple {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    padding: 40px;
    line-height: 1.3;
    border: 1px solid #95C11F;
    border-radius: 30px;
}

.slide-simple__text span {
    color: #95C11F;
}

._hidden {
    display: none !important;
}

.lightbox {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
}

.hero__container {
    padding: 0;
}

.no-webp .hero__body {
    background-image: url(../img/hero/img-1.png);
}

.hero__body {
    margin-bottom: 30px;
    padding: 60px 40px;
    width: 100%;
    aspect-ratio: 1272/530;
    min-height: 530px;
    background-color: #EFEEEE;
    border-radius: 60px;
    background-repeat: no-repeat;
    background-position: right center;
    background-size: contain;
}

.hero__content {
    max-width: 393px;
}

.hero__mobile-content {
    padding: 0 20px;
}

.hero__title {
    margin-bottom: 40px;
}

.hero__text {
    margin-bottom: 30px;
    color: #4F4F4F;
    line-height: 1.3;
    font-weight: 500;
}

@supports (font-size: clamp(1rem, 0.9111111111rem + 0.4444444444vw, 1.25rem)) {
    .hero__text {
        font-size: clamp(1rem, 0.9111111111rem + 0.4444444444vw, 1.25rem);
    }
}

@supports not (font-size: clamp(1rem, 0.9111111111rem + 0.4444444444vw, 1.25rem)) {
    .hero__text {
        font-size: calc(1rem + 0.25 * (100vw - 20rem) / 56.25);
    }
}

.nav-hero ul {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px;
    padding-left: 0;
}

.nav-hero ul li {
    list-style: none;
}

.nav-hero ul a {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    padding-top: 6px;
    padding-bottom: 6px;
    min-width: 148px;
    height: 51px;
    color: #333333;
    background-color: #EFEEEE;
    line-height: 1.2;
    border-radius: 60px;
    cursor: pointer;
    -webkit-transition: 0.3s ease all;
    -o-transition: 0.3s ease all;
    transition: 0.3s ease all;
}

@supports (padding-left: clamp(1rem, -0.5714285714rem + 2.4553571429vw, 2.375rem)) {
    .nav-hero ul a {
        padding-left: clamp(1rem, -0.5714285714rem + 2.4553571429vw, 2.375rem);
    }
}

@supports not (padding-left: clamp(1rem, -0.5714285714rem + 2.4553571429vw, 2.375rem)) {
    .nav-hero ul a {
        padding-left: calc(1rem + 1.375 * (100vw - 64rem) / 56);
    }
}

@supports (padding-right: clamp(1rem, -0.5714285714rem + 2.4553571429vw, 2.375rem)) {
    .nav-hero ul a {
        padding-right: clamp(1rem, -0.5714285714rem + 2.4553571429vw, 2.375rem);
    }
}

@supports not (padding-right: clamp(1rem, -0.5714285714rem + 2.4553571429vw, 2.375rem)) {
    .nav-hero ul a {
        padding-right: calc(1rem + 1.375 * (100vw - 64rem) / 56);
    }
}

@supports (font-size: clamp(1.125rem, 0.8392857143rem + 0.4464285714vw, 1.375rem)) {
    .nav-hero ul a {
        font-size: clamp(1.125rem, 0.8392857143rem + 0.4464285714vw, 1.375rem);
    }
}

@supports not (font-size: clamp(1.125rem, 0.8392857143rem + 0.4464285714vw, 1.375rem)) {
    .nav-hero ul a {
        font-size: calc(1.125rem + 0.25 * (100vw - 64rem) / 56);
    }
}

.header-tags .nav-hero ul a {
    min-width: auto;
    height: 36px;
    font-size: 16px;
    border-radius: 12px;
}

.header {
    top: 0;
    position: fixed;
    padding: 37px 0;
    width: 100%;
    background-color: #fff;
    z-index: 2;
}

.header._header-scroll {
    padding-bottom: 10px;
}

.header__wrapper {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;
    gap: 32px;
    padding-left: 50px;
    height: 65px;
    background-color: #EFEEEE;
    border-radius: 50px;
}

.header__logo {
    margin-right: auto;
}

.header__nav {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    gap: 47px;
}

.header__tags {
    display: none;
    margin-top: 10px;
}

._header-scroll .header__tags {
    display: block;
}

.header-mobile {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
}

.header-mobile__icon {
    display: -ms-flexbox;
    display: flex;
    padding: 5px;
}

.header-menu__list {
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    gap: 30px;
    padding-left: 0;
}

.header-menu__item {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
}

.header-menu__link {
    color: #4F4F4F;
    font-size: 16px;
    cursor: pointer;
    -webkit-transition: 0.3s ease color;
    -o-transition: 0.3s ease color;
    transition: 0.3s ease color;
}

.menu-icon {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 6px;
    padding: 5px;
    cursor: pointer;
    -webkit-transition: 0.3s ease transform;
    -o-transition: 0.3s ease transform;
    transition: 0.3s ease transform;
}

._menu-active .menu-icon {
    -webkit-transform: translateX(8px);
    -ms-transform: translateX(8px);
    transform: translateX(8px);
}

.menu-icon__line {
    width: 17px;
    height: 2px;
    background-color: #333333;
    border-radius: 10px;
    -webkit-transform-origin: 0;
    -ms-transform-origin: 0;
    transform-origin: 0;
    -webkit-transition: 0.3s ease all;
    -o-transition: 0.3s ease all;
    transition: 0.3s ease all;
}

.menu-icon__line:nth-child(2) {
    -webkit-transform: translateX(4px);
    -ms-transform: translateX(4px);
    transform: translateX(4px);
}

._menu-active .menu-icon__line:first-child {
    width: 23px;
    background-color: #95C11F;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

._menu-active .menu-icon__line:nth-child(2) {
    opacity: 0;
}

._menu-active .menu-icon__line:last-child {
    width: 23px;
    background-color: #95C11F;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.mobile-menu {
    position: fixed;
    top: 96px;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    -webkit-transform: translateX(-200%);
    -ms-transform: translateX(-200%);
    transform: translateX(-200%);
    -webkit-transition: 0.3s ease transform;
    -o-transition: 0.3s ease transform;
    transition: 0.3s ease transform;
}

._menu-active .mobile-menu {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
}

.mobile-menu__body {
    padding: 46px 38px 86px;
    background-color: #fff;
    border-radius: 0 0 30px 30px;
}

.mobile-menu__list {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 31px;
}

.mobile-menu__item {
    font-size: 24px;
    line-height: 33px;
}

.mobile-menu__button {
    width: 100%;
    color: #95C11F;
    font-weight: 600;
    border: 1px solid #95C11F;
    border-radius: 15px;
    background-color: transparent;
}

.services__body {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
}

.services__grid {
    margin-bottom: 27px;
}

.grid-services {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[6];
    grid-template-columns: repeat(6, 1fr);
    -ms-grid-rows: (237px)[4];
    grid-template-rows: repeat(4, 237px);
    gap: 48px;
}

.grid-services__item {
    display: -ms-flexbox;
    display: flex;
    -ms-grid-column-span: 2;
    grid-column: span 2;
    padding: 26px 34px;
    background-color: #EFEEEE;
    border-radius: 30px;
    list-style: none;
}

.grid-services__item svg {
    -webkit-transition: 0.3s ease transform;
    -o-transition: 0.3s ease transform;
    transition: 0.3s ease transform;
}

.grid-services__item svg path {
    fill: #333333;
    -webkit-transition: 0.3s ease fill;
    -o-transition: 0.3s ease fill;
    transition: 0.3s ease fill;
}

.grid-services__item._black {
    color: #fff;
    background-color: #292929;
}

.grid-services__item._black path {
    fill: #fff;
}

.grid-services__item._highlight {
    color: #fff;
    background-color: #95C11F;
}

.grid-services__item._highlight path {
    fill: #fff;
}

.grid-services__item._tall {
    -ms-grid-row-span: 2;
    grid-row: span 2;
    min-height: 300px;
}

.grid-services__item._wide {
    -ms-grid-column-span: 3;
    grid-column: span 3;
}

.grid-services__title {
    line-height: 1.4;
}

@supports (font-size: clamp(0.75rem, 0.3944444444rem + 1.7777777778vw, 1.75rem)) {
    .grid-services__title {
        font-size: clamp(0.75rem, 0.3944444444rem + 1.7777777778vw, 1.75rem);
    }
}

@supports not (font-size: clamp(0.75rem, 0.3944444444rem + 1.7777777778vw, 1.75rem)) {
    .grid-services__title {
        font-size: calc(0.75rem + 1 * (100vw - 20rem) / 56.25);
    }
}

.grid-services__link {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: justify;
    justify-content: space-between;
    height: 100%;
}

.grid-services__bottom {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: end;
    align-items: flex-end;
}

.grid-services__count {
    display: none;
    line-height: 1.3;
}

@supports (font-size: clamp(1.125rem, 0.4583333333rem + 3.3333333333vw, 3rem)) {
    .grid-services__count {
        font-size: clamp(1.125rem, 0.4583333333rem + 3.3333333333vw, 3rem);
    }
}

@supports not (font-size: clamp(1.125rem, 0.4583333333rem + 3.3333333333vw, 3rem)) {
    .grid-services__count {
        font-size: calc(1.125rem + 1.875 * (100vw - 20rem) / 56.25);
    }
}

.licenses__body {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
}

.licenses__list {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 41px;
    margin-bottom: 25px;
}

.item-licenses {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;
    padding: 31px 68px 31px 100px;
    background-color: #EFEEEE;
    border-radius: 30px;
}

.item-licenses:nth-child(even) {
    color: #fff;
    background-color: #814997;
}

.item-licenses__title {
    line-height: 1.3;
    font-weight: 600;
}

@supports (font-size: clamp(1rem, 0.6444444444rem + 1.7777777778vw, 2rem)) {
    .item-licenses__title {
        font-size: clamp(1rem, 0.6444444444rem + 1.7777777778vw, 2rem);
    }
}

@supports not (font-size: clamp(1rem, 0.6444444444rem + 1.7777777778vw, 2rem)) {
    .item-licenses__title {
        font-size: calc(1rem + 1 * (100vw - 20rem) / 56.25);
    }
}

.item-licenses__text {
    max-width: 662px;
    line-height: 1.2;
}

@supports (font-size: clamp(0.75rem, 0.5722222222rem + 0.8888888889vw, 1.25rem)) {
    .item-licenses__text {
        font-size: clamp(0.75rem, 0.5722222222rem + 0.8888888889vw, 1.25rem);
    }
}

@supports not (font-size: clamp(0.75rem, 0.5722222222rem + 0.8888888889vw, 1.25rem)) {
    .item-licenses__text {
        font-size: calc(0.75rem + 0.5 * (100vw - 20rem) / 56.25);
    }
}

.licenses-list {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 8px;
}

.licenses-list__item {
    padding: 16px 0;
    font-weight: 300;
    line-height: 1.3;
    border-bottom: 1px solid #dadada;
    list-style: none;
}

@supports (font-size: clamp(1rem, 0.9111111111rem + 0.4444444444vw, 1.25rem)) {
    .licenses-list__item {
        font-size: clamp(1rem, 0.9111111111rem + 0.4444444444vw, 1.25rem);
    }
}

@supports not (font-size: clamp(1rem, 0.9111111111rem + 0.4444444444vw, 1.25rem)) {
    .licenses-list__item {
        font-size: calc(1rem + 0.25 * (100vw - 20rem) / 56.25);
    }
}

.licenses-list__item span {
    font-weight: 700;
}

@supports (font-size: clamp(1.25rem, 1.1611111111rem + 0.4444444444vw, 1.5rem)) {
    .licenses-list__item span {
        font-size: clamp(1.25rem, 1.1611111111rem + 0.4444444444vw, 1.5rem);
    }
}

@supports not (font-size: clamp(1.25rem, 1.1611111111rem + 0.4444444444vw, 1.5rem)) {
    .licenses-list__item span {
        font-size: calc(1.25rem + 0.25 * (100vw - 20rem) / 56.25);
    }
}

.recognition__body {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
}

.recognition__list {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 41px;
    margin-bottom: 25px;
}

.grid-recognition {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
    -ms-grid-rows: (30px)[auto];
    grid-template-rows: repeat(auto, 30px);
    gap: 48px;
}

.grid-recognition__item {
    -ms-grid-row-span: 2;
    grid-row: span 2;
    background-color: #EFEEEE;
    border-radius: 30px;
    list-style: none;
}

.grid-recognition__item._black {
    background-color: #333333;
}

.grid-recognition__item._highlight {
    background-color: #95C11F;
}

.grid-recognition__item._wide {
    -ms-grid-column-span: 2;
    grid-column: span 2;
}

.grid-recognition__item._tall {
    -ms-grid-row-span: 3;
    grid-row: span 3;
}

.grid-recognition__item._medium {
    -ms-grid-row-span: 3;
    grid-row: span 3;
}

.grid-recognition__blockquote {
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 80px 37px;
    height: 100%;
}

.grid-recognition__author {
    position: absolute;
    top: 34px;
    color: #333333;
    font-style: normal;
    font-weight: 700;
    font-family: "Gotham Pro";
}

@supports (font-size: clamp(0.75rem, 0.35rem + 2vw, 1.875rem)) {
    .grid-recognition__author {
        font-size: clamp(0.75rem, 0.35rem + 2vw, 1.875rem);
    }
}

@supports not (font-size: clamp(0.75rem, 0.35rem + 2vw, 1.875rem)) {
    .grid-recognition__author {
        font-size: calc(0.75rem + 1.125 * (100vw - 20rem) / 56.25);
    }
}

._black .grid-recognition__author,
._highlight .grid-recognition__author {
    color: #fff;
}

.grid-recognition__text {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
    line-height: 1.3;
    word-break: keep-all;
}

@supports (font-size: clamp(0.75rem, 0.5277777778rem + 1.1111111111vw, 1.375rem)) {
    .grid-recognition__text {
        font-size: clamp(0.75rem, 0.5277777778rem + 1.1111111111vw, 1.375rem);
    }
}

@supports not (font-size: clamp(0.75rem, 0.5277777778rem + 1.1111111111vw, 1.375rem)) {
    .grid-recognition__text {
        font-size: calc(0.75rem + 0.625 * (100vw - 20rem) / 56.25);
    }
}

._black .grid-recognition__text,
._highlight .grid-recognition__text {
    color: #fff;
}

._tall .grid-recognition__text {
    -webkit-line-clamp: 7;
}

._medium .grid-recognition__text {
    -webkit-line-clamp: 5;
}

.grid-recognition__link {
    position: absolute;
    right: 39px;
    bottom: 34px;
    color: #333333;
    -ms-flex-item-align: end;
    align-self: flex-end;
    text-transform: uppercase;
    font-weight: 600;
    font-family: "Gotham Pro";
}

@supports (font-size: clamp(0.5rem, 0.3222222222rem + 0.8888888889vw, 1rem)) {
    .grid-recognition__link {
        font-size: clamp(0.5rem, 0.3222222222rem + 0.8888888889vw, 1rem);
    }
}

@supports not (font-size: clamp(0.5rem, 0.3222222222rem + 0.8888888889vw, 1rem)) {
    .grid-recognition__link {
        font-size: calc(0.5rem + 0.5 * (100vw - 20rem) / 56.25);
    }
}

._black .grid-recognition__link,
._highlight .grid-recognition__link {
    color: #fff;
}

.grid-recognition__link::before {
    content: "";
    position: absolute;
    bottom: -3px;
    width: 100%;
    height: 1px;
    background-color: currentColor;
    -webkit-transition: 0.3s ease transform;
    -o-transition: 0.3s ease transform;
    transition: 0.3s ease transform;
}

.partners__body {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
}

.partners__grid {
    margin-bottom: 27px;
}

.partners ul {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 30px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 31px;
    padding-left: 0;
}

.partners ul li {
    list-style: none;
}

.partners ul a {
    display: block;
    padding: 14px 30px;
    font-weight: 800;
    text-transform: uppercase;
    border: 2px solid #814997;
    border-radius: 60px;
    -webkit-transition: 0.3s ease all;
    -o-transition: 0.3s ease all;
    transition: 0.3s ease all;
}

@supports (font-size: clamp(0.75rem, 0.6611111111rem + 0.4444444444vw, 1rem)) {
    .partners ul a {
        font-size: clamp(0.75rem, 0.6611111111rem + 0.4444444444vw, 1rem);
    }
}

@supports not (font-size: clamp(0.75rem, 0.6611111111rem + 0.4444444444vw, 1rem)) {
    .partners ul a {
        font-size: calc(0.75rem + 0.25 * (100vw - 20rem) / 56.25);
    }
}

.partners ul a:active {
    color: #fff;
    background-color: #814997;
}

.projects__body {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
}

.projects__content {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: end;
    align-items: flex-end;
    gap: 25px;
    margin-bottom: 25px;
}

.projects__left {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: center;
    align-items: center;
    padding-bottom: 50px;
    width: 59.7014925373%;
}

.projects__right {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 37.7114427861%;
}

.projects-slide {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
}

.projects-slide__title {
    padding: 30px;
    max-width: 600px;
    font-family: "Gotham Pro";
    line-height: 1.2;
    font-weight: 500;
    text-align: center;
}

@supports (font-size: clamp(0.75rem, 0.1277777778rem + 3.1111111111vw, 2.5rem)) {
    .projects-slide__title {
        font-size: clamp(0.75rem, 0.1277777778rem + 3.1111111111vw, 2.5rem);
    }
}

@supports not (font-size: clamp(0.75rem, 0.1277777778rem + 3.1111111111vw, 2.5rem)) {
    .projects-slide__title {
        font-size: calc(0.75rem + 1.75 * (100vw - 20rem) / 56.25);
    }
}

.projects-swiper__pagination {
    left: 50% !important;
    bottom: -4px !important;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: end;
    justify-content: flex-end;
    margin-bottom: 20px;
    width: 200px;
    height: 3px;
    background-color: #dadada;
    font-family: "PP Neue Machina";
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

.projects-swiper__pagination .swiper-pagination-progressbar-fill {
    position: absolute;
    top: 0;
    width: 100%;
    height: 3px;
    background-color: #95C11F;
    -webkit-transform-origin: 0;
    -ms-transform-origin: 0;
    transform-origin: 0;
}

.projects-swiper__pagination .swiper-pagination-bullet {
    display: none;
}

.projects-swiper__pagination .swiper-pagination-bullet-active {
    display: block;
    color: #95C11F;
    background-color: unset;
}

.right-projects {
    max-width: 380px;
    max-height: 380px;
}

.right-projects img {
    max-width: 100%;
    max-height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    filter: grayscale(0);
}

.right-projects img.hidden {
    display: none;
}

.feedback__content {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
}

.feedback-slide {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(4, 1fr);
    gap: 0px;
    -ms-flex-pack: justify;
    justify-content: stretch;
    -ms-flex-align: center;
    align-items: center;
    padding: 20px 10px;
}

.feedback-slide__item {
    display: -ms-flexbox;
    display: flex;
}

.feedback-slide__item img {
    width: 250px;
    max-width: 80%;
    max-height: 100%;
    border-radius: 0px;
	filter: grayscale(0%);
}

.feedback-swiper__navigation {
    margin: 0;
}

.consultation__message {
    display: none;
}

._form-sent .consultation__message {
    display: block;
}

.consultation__body {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: center;
    align-items: center;
}

._form-sent .consultation__body {
    display: none;
}

.consultation__form {
    max-width: 100%;
}

.consultation__title {
    margin-bottom: 12px;
}

.consultation__text {
    margin-bottom: 68px;
    max-width: 470px;
    text-align: center;
    line-height: 1.2;
}

@supports (font-size: clamp(0.875rem, 0.8305555556rem + 0.2222222222vw, 1rem)) {
    .consultation__text {
        font-size: clamp(0.875rem, 0.8305555556rem + 0.2222222222vw, 1rem);
    }
}

@supports not (font-size: clamp(0.875rem, 0.8305555556rem + 0.2222222222vw, 1rem)) {
    .consultation__text {
        font-size: calc(0.875rem + 0.125 * (100vw - 20rem) / 56.25);
    }
}

.consultation__wrapper {
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 30px;
    width: 550px;
    max-width: 100%;
}

.consultation__form {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: center;
    align-items: center;
}

.consultation__input,
.consultation__textarea {
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 9px 18px;
    min-height: 44px;
    border: 1px solid #95C11F;
    border-radius: 10px;
    color: #333333;
    font-family: "Gotham Pro";
    font-size: 16px;
    font-weight: 500;
}

.consultation__input::-webkit-input-placeholder,
.consultation__textarea::-webkit-input-placeholder {
    color: #333333;
    font-size: 16px;
}

.consultation__input::-moz-placeholder,
.consultation__textarea::-moz-placeholder {
    color: #333333;
    font-size: 16px;
}

.consultation__input:-ms-input-placeholder,
.consultation__textarea:-ms-input-placeholder {
    color: #333333;
    font-size: 16px;
}

.consultation__input::-ms-input-placeholder,
.consultation__textarea::-ms-input-placeholder {
    color: #333333;
    font-size: 16px;
}

.consultation__input::placeholder,
.consultation__textarea::placeholder {
    color: #333333;
    font-size: 16px;
}

.consultation__button {
    padding: 21px 51px;
    min-width: 225px;
}

.breadcrumbs {
    margin-bottom: 20px;
}

.breadcrumbs__list {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 8px;
}

.breadcrumbs__item {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    gap: 4px;
    color: #333333;
    font-size: 16px;
    line-height: 1.6;
    font-family: Manrope;
}

.breadcrumbs__item:not(:last-child)::after {
    content: ">";
    line-height: 1;
    color: #C0BEBE;
}

.breadcrumbs__item:last-child {
    color: #C0BEBE;
}

.breadcrumbs__item:last-child a {
    cursor: inherit;
}

.breadcrumbs__item a {
    cursor: pointer;
}

.breadcrumbs__link {
    -webkit-transition: 0.3s ease color;
    -o-transition: 0.3s ease color;
    transition: 0.3s ease color;
}

.page-hero__title {
    margin-bottom: 20px;
}

.page-hero__list {
    padding-left: 20px;
    text-transform: lowercase;
    font-weight: 500;
}

@supports (font-size: clamp(1rem, 0.8222222222rem + 0.8888888889vw, 1.5rem)) {
    .page-hero__list {
        font-size: clamp(1rem, 0.8222222222rem + 0.8888888889vw, 1.5rem);
    }
}

@supports not (font-size: clamp(1rem, 0.8222222222rem + 0.8888888889vw, 1.5rem)) {
    .page-hero__list {
        font-size: calc(1rem + 0.5 * (100vw - 20rem) / 56.25);
    }
}

.page-hero__list li {
    list-style: disc;
}

.page-hero__text {
    position: relative;
    margin-bottom: 32px;
    padding-left: 20px;
    line-height: 1.3;
}

.page-hero__text::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 90%;
    background-color: #95C11F;
    -webkit-transform: translateY(5%);
    -ms-transform: translateY(5%);
    transform: translateY(5%);
}

.page-hero__text p {
    margin-bottom: 20px;
}

.page-hero__nav {
    margin-bottom: 42px;
}

.page-hero__company {
    padding: 54px;
    background-color: #EFEEEE;
    border-radius: 30px;
}

.page-hero__company p {
    margin: 0 auto;
    max-width: 750px;
    line-height: 1.3;
    font-weight: 500;
}

@supports (font-size: clamp(1rem, 0.8222222222rem + 0.8888888889vw, 1.5rem)) {
    .page-hero__company p {
        font-size: clamp(1rem, 0.8222222222rem + 0.8888888889vw, 1.5rem);
    }
}

@supports not (font-size: clamp(1rem, 0.8222222222rem + 0.8888888889vw, 1.5rem)) {
    .page-hero__company p {
        font-size: calc(1rem + 0.5 * (100vw - 20rem) / 56.25);
    }
}

.page-hero__licenses {
    margin: 0 auto 50px;
    padding: 65px 50px;
    max-width: 900px;
    color: #fff;
    background-color: #814997;
    border-radius: 30px;
    font-family: "Gotham Pro";
    font-weight: 500;
}

@supports (font-size: clamp(1rem, 0.8666666667rem + 0.6666666667vw, 1.375rem)) {
    .page-hero__licenses {
        font-size: clamp(1rem, 0.8666666667rem + 0.6666666667vw, 1.375rem);
    }
}

@supports not (font-size: clamp(1rem, 0.8666666667rem + 0.6666666667vw, 1.375rem)) {
    .page-hero__licenses {
        font-size: calc(1rem + 0.375 * (100vw - 20rem) / 56.25);
    }
}

.select-page__form {
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 24px;
}

.search-news__form {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
}

.search-news__wrapper {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
    padding: 12px 24px;
    width: 640px;
    background-color: #95C11F;
    border-radius: 15px;
}

.search-news__input {
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    color: #fff;
    background-color: transparent;
    font-weight: 500;
    line-height: 1;
}

.search-news__input::-webkit-input-placeholder {
    color: #fff;
}

.search-news__input::-moz-placeholder {
    color: #fff;
}

.search-news__input:-ms-input-placeholder {
    color: #fff;
}

.search-news__input::-ms-input-placeholder {
    color: #fff;
}

.search-news__input::placeholder {
    color: #fff;
}

.search-news__input:focus {
    outline: none;
}

.search-news svg {
    -ms-flex: 0 0 20px;
    flex: 0 0 20px;
}

.search-news__submit {
    display: -ms-flexbox;
    display: flex;
}

.grid-offer {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    gap: 65px;
}

.grid-offer__item {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 12px;
    padding: 48px;
    line-height: 1.3;
    background-color: #EFEEEE;
    border-radius: 30px;
    -webkit-transition: 0.3s ease all;
    -o-transition: 0.3s ease all;
    transition: 0.3s ease all;
    list-style: none;
}

@supports (font-size: clamp(1rem, 0.9111111111rem + 0.4444444444vw, 1.25rem)) {
    .grid-offer__item {
        font-size: clamp(1rem, 0.9111111111rem + 0.4444444444vw, 1.25rem);
    }
}

@supports not (font-size: clamp(1rem, 0.9111111111rem + 0.4444444444vw, 1.25rem)) {
    .grid-offer__item {
        font-size: calc(1rem + 0.25 * (100vw - 20rem) / 56.25);
    }
}

.grid-offer__item._highlight {
    color: #fff;
    background-color: #95C11F;
}

.grid-offer__item._highlight svg path {
    fill: #fff;
}

.grid-offer__item._highlight-2 {
    color: #fff;
    background-color: #814997;
}

.grid-offer__item._highlight-2 svg path {
    fill: #fff;
}

.grid-offer__item svg {
    position: absolute;
    top: 16px;
    right: 16px;
}

.grid-offer__title {
    font-weight: 800;
}

.recomendation__body {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
}

.grid-recomendation__slider {
    margin-bottom: 27px;
}

.grid-recomendation__slide {
    padding: 35px 48px 90px;
    line-height: 1.3;
    background-color: #EFEEEE;
    border-radius: 30px;
    -webkit-transition: 0.3s ease all;
    -o-transition: 0.3s ease all;
    transition: 0.3s ease all;
}

@supports (font-size: clamp(1rem, 0.9111111111rem + 0.4444444444vw, 1.25rem)) {
    .grid-recomendation__slide {
        font-size: clamp(1rem, 0.9111111111rem + 0.4444444444vw, 1.25rem);
    }
}

@supports not (font-size: clamp(1rem, 0.9111111111rem + 0.4444444444vw, 1.25rem)) {
    .grid-recomendation__slide {
        font-size: calc(1rem + 0.25 * (100vw - 20rem) / 56.25);
    }
}

.grid-recomendation__navigation {
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.grid-recomendation__blockquote {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
}

.grid-recomendation__blockquote svg {
    margin-bottom: 22px;
}

.grid-recomendation__text {
    margin-bottom: 15px;
    color: #4F4F4F;
    font-weight: 300;
}

.grid-recomendation__author {
    color: #828282;
    font-family: "PP Neue Machina";
    font-style: normal;
}

@supports (font-size: clamp(0.75rem, 0.7055555556rem + 0.2222222222vw, 0.875rem)) {
    .grid-recomendation__author {
        font-size: clamp(0.75rem, 0.7055555556rem + 0.2222222222vw, 0.875rem);
    }
}

@supports not (font-size: clamp(0.75rem, 0.7055555556rem + 0.2222222222vw, 0.875rem)) {
    .grid-recomendation__author {
        font-size: calc(0.75rem + 0.125 * (100vw - 20rem) / 56.25);
    }
}

.soft-types ul {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 8px;
    padding-left: 0;
}

.soft-types ul li {
    color: #4F4F4F;
    font-weight: 300;
    line-height: 1.3;
    list-style: none;
}

@supports (font-size: clamp(1rem, 0.9111111111rem + 0.4444444444vw, 1.25rem)) {
    .soft-types ul li {
        font-size: clamp(1rem, 0.9111111111rem + 0.4444444444vw, 1.25rem);
    }
}

@supports not (font-size: clamp(1rem, 0.9111111111rem + 0.4444444444vw, 1.25rem)) {
    .soft-types ul li {
        font-size: calc(1rem + 0.25 * (100vw - 20rem) / 56.25);
    }
}

@supports (margin-bottom: clamp(0.875rem, 0.7416666667rem + 0.6666666667vw, 1.25rem)) {
    .soft-types ul li:first-child {
        margin-bottom: clamp(0.875rem, 0.7416666667rem + 0.6666666667vw, 1.25rem);
    }
}

@supports not (margin-bottom: clamp(0.875rem, 0.7416666667rem + 0.6666666667vw, 1.25rem)) {
    .soft-types ul li:first-child {
        margin-bottom: calc(0.875rem + 0.375 * (100vw - 20rem) / 56.25);
    }
}

.soft-why__content {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 38px;
}

.soft-why__reason {
    -ms-flex: 0 0 24.6875%;
    flex: 0 0 24.6875%;
    font-family: "Gotham Pro";
    font-weight: 500;
}

@supports (font-size: clamp(1rem, 0.6444444444rem + 1.7777777778vw, 2rem)) {
    .soft-why__reason {
        font-size: clamp(1rem, 0.6444444444rem + 1.7777777778vw, 2rem);
    }
}

@supports not (font-size: clamp(1rem, 0.6444444444rem + 1.7777777778vw, 2rem)) {
    .soft-why__reason {
        font-size: calc(1rem + 1 * (100vw - 20rem) / 56.25);
    }
}

.soft-why__list {
    -ms-flex: 0 0 55.15625%;
    flex: 0 0 55.15625%;
    width: 55.15625%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 8px;
    padding: 32px 32px 32px 52px;
    border: 2px solid #814997;
    border-radius: 30px;
    list-style: disc;
}

.soft-why__item {
    line-height: 1.3;
    list-style: disc;
}

@supports (font-size: clamp(1rem, 0.9111111111rem + 0.4444444444vw, 1.25rem)) {
    .soft-why__item {
        font-size: clamp(1rem, 0.9111111111rem + 0.4444444444vw, 1.25rem);
    }
}

@supports not (font-size: clamp(1rem, 0.9111111111rem + 0.4444444444vw, 1.25rem)) {
    .soft-why__item {
        font-size: calc(1rem + 0.25 * (100vw - 20rem) / 56.25);
    }
}

@supports (margin-bottom: clamp(1rem, 0.6444444444rem + 1.7777777778vw, 2rem)) {
    .delivery__title {
        margin-bottom: clamp(1rem, 0.6444444444rem + 1.7777777778vw, 2rem);
    }
}

@supports not (margin-bottom: clamp(1rem, 0.6444444444rem + 1.7777777778vw, 2rem)) {
    .delivery__title {
        margin-bottom: calc(1rem + 1 * (100vw - 20rem) / 56.25);
    }
}

.delivery__subtitle {
    margin-bottom: 30px;
    font-weight: 600;
    text-align: center;
}

.delivery__subtitle span {
    color: #95C11F;
}

.delivery__slider {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
}

.delivery-slider {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
}

.delivery-slider__navigation {
    margin: 0;
    -ms-flex-item-align: end;
    align-self: flex-end;
}

.grid-registry {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid #DADADA;
    border-bottom: 1px solid #DADADA;
    padding-left: 0;
}

.grid-registry li {
    list-style: none;
}

.grid-registry__item {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 50px;
    font-weight: 300;
    line-height: 1.3;
}

@supports (font-size: clamp(1.125rem, 1.0805555556rem + 0.2222222222vw, 1.25rem)) {
    .grid-registry__item {
        font-size: clamp(1.125rem, 1.0805555556rem + 0.2222222222vw, 1.25rem);
    }
}

@supports not (font-size: clamp(1.125rem, 1.0805555556rem + 0.2222222222vw, 1.25rem)) {
    .grid-registry__item {
        font-size: calc(1.125rem + 0.125 * (100vw - 20rem) / 56.25);
    }
}

.grid-why-us {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding-left: 0;
}

.grid-why-us li {
    list-style: none;
}

.grid-why-us__list {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 4px;
    padding-left: 20px;
}

.grid-why-us__list li {
    list-style: disc;
}

.grid-why-us__title {
    margin-bottom: 20px;
}

.grid-why-us__item {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-grid-row-span: 5;
    grid-row: span 5;
    padding: 30px 30px;
    background-color: #EFEEEE;
    border-radius: 30px;
    line-height: 1.3;
    font-weight: 300;
}

@supports (font-size: clamp(1rem, 0.9111111111rem + 0.4444444444vw, 1.25rem)) {
    .grid-why-us__item {
        font-size: clamp(1rem, 0.9111111111rem + 0.4444444444vw, 1.25rem);
    }
}

@supports not (font-size: clamp(1rem, 0.9111111111rem + 0.4444444444vw, 1.25rem)) {
    .grid-why-us__item {
        font-size: calc(1rem + 0.25 * (100vw - 20rem) / 56.25);
    }
}

.grid-why-us__item._black {
    color: #fff;
    background-color: #333333;
}

.grid-why-us__item._highlight {
    color: #fff;
    background-color: #95C11F;
}

.grid-why-us__item._highlight-2 {
    color: #fff;
    background-color: #814997;
}

.grid-why-us__item._tall {
    -ms-grid-row-span: 7;
    grid-row: span 7;
}

.grid-why-us__item._medium {
    -ms-grid-row-span: 6;
    grid-row: span 6;
}

.grid-why-us__item:nth-child(1) {
    -ms-flex-order: 1;
    order: 1;
}

.grid-why-us__item:nth-child(2) {
    -ms-flex-order: 2;
    order: 2;
}

.grid-why-us__item:nth-child(3) {
    -ms-flex-order: 3;
    order: 3;
}

.grid-why-us__item:nth-child(4) {
    -ms-flex-order: 6;
    order: 6;
}

.grid-why-us__item:nth-child(5) {
    -ms-flex-order: 4;
    order: 4;
}

.grid-why-us__item:nth-child(6) {
    -ms-flex-order: 5;
    order: 5;
}

.capabilities__separator {
    margin-bottom: 58px;
}

.grid-expertise {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.grid-expertise__list {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 4px;
    padding-left: 20px;
}

.grid-expertise__list li {
    list-style: disc;
}

.grid-expertise__title {
    margin-bottom: 20px;
}

.grid-expertise__item {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 30px 30px;
    background-color: #EFEEEE;
    border-radius: 30px;
    line-height: 1.3;
    font-weight: 300;
    list-style: none;
}

@supports (font-size: clamp(1rem, 0.9111111111rem + 0.4444444444vw, 1.25rem)) {
    .grid-expertise__item {
        font-size: clamp(1rem, 0.9111111111rem + 0.4444444444vw, 1.25rem);
    }
}

@supports not (font-size: clamp(1rem, 0.9111111111rem + 0.4444444444vw, 1.25rem)) {
    .grid-expertise__item {
        font-size: calc(1rem + 0.25 * (100vw - 20rem) / 56.25);
    }
}

.grid-expertise__item._black {
    color: #fff;
    background-color: #333333;
}

.grid-expertise__item._highlight {
    color: #fff;
    background-color: #95C11F;
}

.grid-expertise__item._highlight-2 {
    color: #fff;
    background-color: #814997;
}

.news-expertise ul {
    padding-left: 0;
}

.news-expertise ul li {
    list-style: none;
}

.news-expertise__item {
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    padding: 60px 0;
    border-bottom: 1px solid #dadada;
}

.news-expertise__year {
    line-height: 0.8;
    font-weight: 700;
}

@supports (font-size: clamp(1rem, 0.4666666667rem + 2.6666666667vw, 2.5rem)) {
    .news-expertise__year {
        font-size: clamp(1rem, 0.4666666667rem + 2.6666666667vw, 2.5rem);
    }
}

@supports not (font-size: clamp(1rem, 0.4666666667rem + 2.6666666667vw, 2.5rem)) {
    .news-expertise__year {
        font-size: calc(1rem + 1.5 * (100vw - 20rem) / 56.25);
    }
}

.news-expertise__content {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 16px;
}

.news-expertise__title {
    font-family: "Gotham Pro";
    font-weight: 500;
}

@supports (font-size: clamp(2rem, 1.8222222222rem + 0.8888888889vw, 2.5rem)) {
    .news-expertise__title {
        font-size: clamp(2rem, 1.8222222222rem + 0.8888888889vw, 2.5rem);
    }
}

@supports not (font-size: clamp(2rem, 1.8222222222rem + 0.8888888889vw, 2.5rem)) {
    .news-expertise__title {
        font-size: calc(2rem + 0.5 * (100vw - 20rem) / 56.25);
    }
}

.news-expertise__text {
    line-height: 1.3;
}

@supports (font-size: clamp(1rem, 0.9111111111rem + 0.4444444444vw, 1.25rem)) {
    .news-expertise__text {
        font-size: clamp(1rem, 0.9111111111rem + 0.4444444444vw, 1.25rem);
    }
}

@supports not (font-size: clamp(1rem, 0.9111111111rem + 0.4444444444vw, 1.25rem)) {
    .news-expertise__text {
        font-size: calc(1rem + 0.25 * (100vw - 20rem) / 56.25);
    }
}

.articles ul {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-left: 0;
}

.articles ul li {
    list-style: none;
}

.article-item a:visited {
    color: #814997;
}

.article-item a:visited:hover {
    color: #95C11F;
}

.article-item__link {
    -webkit-transition: 0.3s ease color;
    -o-transition: 0.3s ease color;
    transition: 0.3s ease color;
}

.article-item__link:visited {
    color: #814997;
}

.article-item__title {
    line-height: 1.3;
    -webkit-transition: 0.3s ease color;
    -o-transition: 0.3s ease color;
    transition: 0.3s ease color;
}

@supports (margin-bottom: clamp(0.625rem, -0.0416666667rem + 3.3333333333vw, 2.5rem)) {
    .article-item__title {
        margin-bottom: clamp(0.625rem, -0.0416666667rem + 3.3333333333vw, 2.5rem);
    }
}

@supports not (margin-bottom: clamp(0.625rem, -0.0416666667rem + 3.3333333333vw, 2.5rem)) {
    .article-item__title {
        margin-bottom: calc(0.625rem + 1.875 * (100vw - 20rem) / 56.25);
    }
}

@supports (font-size: clamp(1.25rem, 0.9833333333rem + 1.3333333333vw, 2rem)) {
    .article-item__title {
        font-size: clamp(1.25rem, 0.9833333333rem + 1.3333333333vw, 2rem);
    }
}

@supports not (font-size: clamp(1.25rem, 0.9833333333rem + 1.3333333333vw, 2rem)) {
    .article-item__title {
        font-size: calc(1.25rem + 0.75 * (100vw - 20rem) / 56.25);
    }
}

.article-item__text {
    line-height: 1.3;
    font-weight: 300;
}

@supports (margin-bottom: clamp(0.5625rem, 0.3625rem + 1vw, 1.125rem)) {
    .article-item__text {
        margin-bottom: clamp(0.5625rem, 0.3625rem + 1vw, 1.125rem);
    }
}

@supports not (margin-bottom: clamp(0.5625rem, 0.3625rem + 1vw, 1.125rem)) {
    .article-item__text {
        margin-bottom: calc(0.5625rem + 0.5625 * (100vw - 20rem) / 56.25);
    }
}

@supports (font-size: clamp(1rem, 0.9111111111rem + 0.4444444444vw, 1.25rem)) {
    .article-item__text {
        font-size: clamp(1rem, 0.9111111111rem + 0.4444444444vw, 1.25rem);
    }
}

@supports not (font-size: clamp(1rem, 0.9111111111rem + 0.4444444444vw, 1.25rem)) {
    .article-item__text {
        font-size: calc(1rem + 0.25 * (100vw - 20rem) / 56.25);
    }
}

.article-item__to {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    gap: 4px;
    color: rgba(0, 0, 0, 0.2);
    -webkit-transition: 0.3s ease color;
    -o-transition: 0.3s ease color;
    transition: 0.3s ease color;
    cursor: pointer;
}

@supports (font-size: clamp(1rem, 0.9111111111rem + 0.4444444444vw, 1.25rem)) {
    .article-item__to {
        font-size: clamp(1rem, 0.9111111111rem + 0.4444444444vw, 1.25rem);
    }
}

@supports not (font-size: clamp(1rem, 0.9111111111rem + 0.4444444444vw, 1.25rem)) {
    .article-item__to {
        font-size: calc(1rem + 0.25 * (100vw - 20rem) / 56.25);
    }
}

.article-item__to svg {
    -webkit-transition: 0.3s ease transform;
    -o-transition: 0.3s ease transform;
    transition: 0.3s ease transform;
}

.calculator__title {
    text-align: left;
}

.calculator__text {
    line-height: 1.3;
    font-weight: 300;
}

@supports (font-size: clamp(0.875rem, 0.7416666667rem + 0.6666666667vw, 1.25rem)) {
    .calculator__text {
        font-size: clamp(0.875rem, 0.7416666667rem + 0.6666666667vw, 1.25rem);
    }
}

@supports not (font-size: clamp(0.875rem, 0.7416666667rem + 0.6666666667vw, 1.25rem)) {
    .calculator__text {
        font-size: calc(0.875rem + 0.375 * (100vw - 20rem) / 56.25);
    }
}

.price-calculator {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 22px;
    margin-bottom: 20px;
}

.price-calculator__field {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: end;
    align-items: flex-end;
    gap: 32px;
}

.price-calculator__input {
    -ms-flex: 0 0 50px;
    flex: 0 0 50px;
    padding: 12px 24px;
    color: #333333;
    font-family: "Manrope", sans-serif;
    font-weight: 300;
    border-radius: 10px;
    border: 1px solid #DADADA;
    outline: none;
    -webkit-transition: 0.3s ease border-color;
    -o-transition: 0.3s ease border-color;
    transition: 0.3s ease border-color;
}

@supports (font-size: clamp(0.875rem, 0.7416666667rem + 0.6666666667vw, 1.25rem)) {
    .price-calculator__input {
        font-size: clamp(0.875rem, 0.7416666667rem + 0.6666666667vw, 1.25rem);
    }
}

@supports not (font-size: clamp(0.875rem, 0.7416666667rem + 0.6666666667vw, 1.25rem)) {
    .price-calculator__input {
        font-size: calc(0.875rem + 0.375 * (100vw - 20rem) / 56.25);
    }
}

.price-calculator__input::-webkit-input-placeholder {
    color: #333333;
    font-weight: 300;
}

.price-calculator__input::-moz-placeholder {
    color: #333333;
    font-weight: 300;
}

.price-calculator__input:-ms-input-placeholder {
    color: #333333;
    font-weight: 300;
}

.price-calculator__input::-ms-input-placeholder {
    color: #333333;
    font-weight: 300;
}

.price-calculator__input::placeholder {
    color: #333333;
    font-weight: 300;
}

.price-calculator__input:focus {
    border-color: #95C11F;
}

.price-calculator__select {
    -ms-flex: 1 1 50%;
    flex: 1 1 50%;
    width: 50%;
    padding: 12px 24px;
    color: #333333;
    font-family: "Manrope", sans-serif;
    font-weight: 300;
    border-radius: 10px;
    border: 1px solid #DADADA;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: transparent;
    background-image: url(../img/arrow-down.svg);
    background-repeat: no-repeat;
    background-position-x: 95%;
    background-position-y: 50%;
    outline: none;
    -webkit-transition: 0.3s ease border-color;
    -o-transition: 0.3s ease border-color;
    transition: 0.3s ease border-color;
    cursor: pointer;
}

@supports (font-size: clamp(0.875rem, 0.8305555556rem + 0.2222222222vw, 1rem)) {
    .price-calculator__select {
        font-size: clamp(0.875rem, 0.8305555556rem + 0.2222222222vw, 1rem);
    }
}

@supports not (font-size: clamp(0.875rem, 0.8305555556rem + 0.2222222222vw, 1rem)) {
    .price-calculator__select {
        font-size: calc(0.875rem + 0.125 * (100vw - 20rem) / 56.25);
    }
}

.price-calculator__select:focus {
    border-color: #95C11F;
}

.price-calculator__text {
    -ms-flex: 1 1 50%;
    flex: 1 1 50%;
    padding-bottom: 10px;
    width: 50%;
    font-weight: 300;
    border-bottom: 1px solid #DADADA;
}

@supports (font-size: clamp(0.875rem, 0.7416666667rem + 0.6666666667vw, 1.25rem)) {
    .price-calculator__text {
        font-size: clamp(0.875rem, 0.7416666667rem + 0.6666666667vw, 1.25rem);
    }
}

@supports not (font-size: clamp(0.875rem, 0.7416666667rem + 0.6666666667vw, 1.25rem)) {
    .price-calculator__text {
        font-size: calc(0.875rem + 0.375 * (100vw - 20rem) / 56.25);
    }
}

.price-calculator__text span {
    color: #4F4F4F;
}

@supports (font-size: clamp(0.625rem, 0.5361111111rem + 0.4444444444vw, 0.875rem)) {
    .price-calculator__text span {
        font-size: clamp(0.625rem, 0.5361111111rem + 0.4444444444vw, 0.875rem);
    }
}

@supports not (font-size: clamp(0.625rem, 0.5361111111rem + 0.4444444444vw, 0.875rem)) {
    .price-calculator__text span {
        font-size: calc(0.625rem + 0.25 * (100vw - 20rem) / 56.25);
    }
}

.price-calculator__button {
    -ms-flex-item-align: start;
    align-self: flex-start;
}

.plans {
    display: none;
}

._plans-visible .plans {
    display: block;
}

.plans__container {
    padding-top: 50px;
}

.plans__text {
    max-width: 570px;
}

.grid-plans {
    display: -ms-flexbox;
    display: flex;
}

.grid-plans__services {
    border-right: 1px solid #EFEEEE;
}

.grid-plans__header {
    border-radius: 30px 0 0 0;
    height: 100px;
    background-color: #95C11F;
}

.grid-plans__points {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    list-style-type: none;
}

.grid-plans__point {
    padding: 16px;
    font-size: 16px;
    line-height: 1.2;
    border-bottom: 1px solid #EFEEEE;
}

.grid-plans__body {
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: stretch;
    justify-content: stretch;
}

.plan {
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
}

.plan__header {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 16px;
    padding: 24px;
    height: 100px;
    border-bottom: 1px solid #EFEEEE;
}

.plan__title {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 16px;
    font-family: Gotham Pro;
    font-weight: 500;
    text-align: center;
}

.plan__price {
    font-weight: 400;
}

.plan__list {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    list-style-type: none;
}

.plan__item {
    padding: 16px;
    width: 100%;
    font-size: 16px;
    line-height: 1.2;
    text-align: center;
    border-bottom: 1px solid #EFEEEE;
    list-style: none;
}

.plan__item span:first-child {
    text-align: left;
    font-weight: 400;
}

.plan__button {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    margin: 20px auto 0;
    width: 90%;
    font-size: 16px;
    background-color: #95C11F;
}

.plan__icon {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    margin-left: auto;
    width: 30px;
    height: 30px;
    background-color: #4F4F4F;
    border-radius: 50%;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

._plan-open .plan__icon {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    background-color: #95C11F;
}

.plan__icon svg path {
    fill: #fff;
}

.range-wrapper {
    -ms-flex: 1 1 50%;
    flex: 1 1 50%;
    width: 50%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    gap: 12px;
}

.range__slider {
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    position: relative;
    padding: 20px;
    width: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 10px;
    border: 1px solid #DADADA;
}

.range__slider::before,
.range__slider::after {
    position: absolute;
    color: #333333;
    font-size: 12px;
}

.range__slider::before {
    content: attr(data-min);
    left: 10px;
}

.range__slider::after {
    content: attr(data-max);
    right: 10px;
    padding-left: 10px;
}

.range__slider .length__title::after {
    content: attr(data-length);
    position: absolute;
    right: -16px;
    font-variant-numeric: tabular-nums;
    color: #333333;
}

.slider-input {
    -webkit-appearance: none;
    width: calc(100% - 70px);
    height: 2px;
    border-radius: 5px;
    background: #dadada;
    outline: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
}

.slider-input::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #95C11F;
    cursor: pointer;
    -webkit-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
}

.slider-input::-webkit-slider-thumb:hover {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
}

.slider-input::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border: 0;
    border-radius: 50%;
    background: #95C11F;
    cursor: pointer;
    -moz-transition: background 0.15s ease-in-out;
    transition: background 0.15s ease-in-out;
}

.slider-input::-moz-range-thumb:hover {
    background: #95C11F;
}

.slider-count {
    -ms-flex: 0 0 90px;
    flex: 0 0 90px;
    padding: 8px 20px;
    min-height: 44px;
    color: #333333;
    font-weight: 300;
    border-radius: 10px;
    border: 1px solid #DADADA;
    outline: none;
    -webkit-transition: 0.3s ease border-color;
    -o-transition: 0.3s ease border-color;
    transition: 0.3s ease border-color;
}

@supports (font-size: clamp(0.875rem, 0.8305555556rem + 0.2222222222vw, 1rem)) {
    .slider-count {
        font-size: clamp(0.875rem, 0.8305555556rem + 0.2222222222vw, 1rem);
    }
}

@supports not (font-size: clamp(0.875rem, 0.8305555556rem + 0.2222222222vw, 1rem)) {
    .slider-count {
        font-size: calc(0.875rem + 0.125 * (100vw - 20rem) / 56.25);
    }
}

.components ul {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-left: 0;
}

.components ul li {
    padding: 20px;
    border-radius: 10px;
    line-height: 1.3;
    font-weight: 300;
    list-style: none;
}

@supports (font-size: clamp(1rem, 0.9111111111rem + 0.4444444444vw, 1.25rem)) {
    .components ul li {
        font-size: clamp(1rem, 0.9111111111rem + 0.4444444444vw, 1.25rem);
    }
}

@supports not (font-size: clamp(1rem, 0.9111111111rem + 0.4444444444vw, 1.25rem)) {
    .components ul li {
        font-size: calc(1rem + 0.25 * (100vw - 20rem) / 56.25);
    }
}

.components ul li:nth-child(odd) {
    background-color: #EFEEEE;
}

.grid-our-way {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 50px;
}

@supports (gap: clamp(1.125rem, 0.525rem + 3vw, 2.8125rem)) {
    .grid-our-way {
        gap: clamp(1.125rem, 0.525rem + 3vw, 2.8125rem);
    }
}

@supports not (gap: clamp(1.125rem, 0.525rem + 3vw, 2.8125rem)) {
    .grid-our-way {
        gap: calc(1.125rem + 1.6875 * (100vw - 20rem) / 56.25);
    }
}

.grid-our-way__item {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 18px;
    width: 200px;
    height: 200px;
    line-height: 1.3;
    background-color: #EFEEEE;
    border-radius: 30px;
    list-style: none;
}

.grid-our-way__item._black {
    color: #fff;
    background-color: #333333;
}

.grid-our-way__item._highlight {
    color: #fff;
    background-color: #95C11F;
}

.grid-our-way__item._highlight-2 {
    color: #fff;
    background-color: #814997;
}

.why-we__body {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;
    gap: 40px;
}

.why-we__left {
    -ms-flex: 1 1 29.6610169492%;
    flex: 1 1 29.6610169492%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: center;
    align-items: center;
    gap: 30px;
}

.why-we__title {
    font-family: "Gotham Pro";
    line-height: 1.3;
    font-weight: 500;
}

@supports (font-size: clamp(2rem, 1.9111111111rem + 0.4444444444vw, 2.25rem)) {
    .why-we__title {
        font-size: clamp(2rem, 1.9111111111rem + 0.4444444444vw, 2.25rem);
    }
}

@supports not (font-size: clamp(2rem, 1.9111111111rem + 0.4444444444vw, 2.25rem)) {
    .why-we__title {
        font-size: calc(2rem + 0.25 * (100vw - 20rem) / 56.25);
    }
}

.why-we__right {
    -ms-flex: 1 1 59.3220338983%;
    flex: 1 1 59.3220338983%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 32px;
}

.why-we__list {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 32px;
}

.why-we__item {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 32px;
    background-color: #EFEEEE;
    border-radius: 30px;
    line-height: 1.3;
    text-align: center;
    list-style: none;
}

@supports (font-size: clamp(1rem, 0.9111111111rem + 0.4444444444vw, 1.25rem)) {
    .why-we__item {
        font-size: clamp(1rem, 0.9111111111rem + 0.4444444444vw, 1.25rem);
    }
}

@supports not (font-size: clamp(1rem, 0.9111111111rem + 0.4444444444vw, 1.25rem)) {
    .why-we__item {
        font-size: calc(1rem + 0.25 * (100vw - 20rem) / 56.25);
    }
}

.why-we__item._highlight-2 {
    color: #fff;
    background-color: #814997;
}

.why-we__button {
    -ms-flex-item-align: start;
    align-self: flex-start;
}

.grid-vendor__list {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 28px;
    padding-left: 0;
}

.grid-vendor__item {
    list-style: none;
}

.vendor-item {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
    padding: 40px;
    border: 1px solid #dadada;
    border-radius: 30px;
    line-height: 1.3;
    font-weight: 300;
}

.vendor-item li {
    list-style: disc;
}

.vendor-item__block {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
}

.vendor-item__block:not(:last-child) {
    padding-bottom: 20px;
    border-bottom: 1px solid #dadada;
}

.vendor-item__title {
    max-width: 800px;
    font-family: "Gotham Pro";
    font-weight: 500;
}

@supports (font-size: clamp(1.25rem, 0.9833333333rem + 1.3333333333vw, 2rem)) {
    .vendor-item__title {
        font-size: clamp(1.25rem, 0.9833333333rem + 1.3333333333vw, 2rem);
    }
}

@supports not (font-size: clamp(1.25rem, 0.9833333333rem + 1.3333333333vw, 2rem)) {
    .vendor-item__title {
        font-size: calc(1.25rem + 0.75 * (100vw - 20rem) / 56.25);
    }
}

@supports (font-size: clamp(1.25rem, 0.9833333333rem + 1.3333333333vw, 2rem)) {
    .vendor-item__title._small {
        font-size: clamp(1.25rem, 0.9833333333rem + 1.3333333333vw, 2rem);
    }
}

@supports not (font-size: clamp(1.25rem, 0.9833333333rem + 1.3333333333vw, 2rem)) {
    .vendor-item__title._small {
        font-size: calc(1.25rem + 0.75 * (100vw - 20rem) / 56.25);
    }
}

.vendor-item__subtitle {
    font-weight: 500;
}

@supports (font-size: clamp(1.25rem, 1.2055555556rem + 0.2222222222vw, 1.375rem)) {
    .vendor-item__subtitle {
        font-size: clamp(1.25rem, 1.2055555556rem + 0.2222222222vw, 1.375rem);
    }
}

@supports not (font-size: clamp(1.25rem, 1.2055555556rem + 0.2222222222vw, 1.375rem)) {
    .vendor-item__subtitle {
        font-size: calc(1.25rem + 0.125 * (100vw - 20rem) / 56.25);
    }
}

@supports (font-size: clamp(1rem, 0.9111111111rem + 0.4444444444vw, 1.25rem)) {
    .vendor-item__text {
        font-size: clamp(1rem, 0.9111111111rem + 0.4444444444vw, 1.25rem);
    }
}

@supports not (font-size: clamp(1rem, 0.9111111111rem + 0.4444444444vw, 1.25rem)) {
    .vendor-item__text {
        font-size: calc(1rem + 0.25 * (100vw - 20rem) / 56.25);
    }
}

.vendor-item__list {
    padding-left: 25px;
}

.vendor-item__item {
    position: relative;
}

@supports (font-size: clamp(1rem, 0.9111111111rem + 0.4444444444vw, 1.25rem)) {
    .vendor-item__item {
        font-size: clamp(1rem, 0.9111111111rem + 0.4444444444vw, 1.25rem);
    }
}

@supports not (font-size: clamp(1rem, 0.9111111111rem + 0.4444444444vw, 1.25rem)) {
    .vendor-item__item {
        font-size: calc(1rem + 0.25 * (100vw - 20rem) / 56.25);
    }
}

.vendor-item__link {
    color: #95C11F;
    font-weight: 500;
    -webkit-transition: 0.3s ease color;
    -o-transition: 0.3s ease color;
    transition: 0.3s ease color;
}

@supports (font-size: clamp(0.875rem, 0.7861111111rem + 0.4444444444vw, 1.125rem)) {
    .vendor-item__link {
        font-size: clamp(0.875rem, 0.7861111111rem + 0.4444444444vw, 1.125rem);
    }
}

@supports not (font-size: clamp(0.875rem, 0.7861111111rem + 0.4444444444vw, 1.125rem)) {
    .vendor-item__link {
        font-size: calc(0.875rem + 0.25 * (100vw - 20rem) / 56.25);
    }
}

.certificates-grid ul {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[9];
    grid-template-columns: repeat(9, 1fr);
    gap: 32px;
    padding-left: 0;
}

.certificates-grid ul li {
    list-style: none;
}

.certificates-grid__item {
    -ms-grid-column-span: 3;
    grid-column: span 3;
    border-radius: 30px;
    border: 2px solid #dadada;
    font-family: "Gotham Pro";
    font-weight: 500;
    -webkit-transition: 0.3s ease all;
    -o-transition: 0.3s ease all;
    transition: 0.3s ease all;
}

.certificates-grid__item svg {
    position: absolute;
    bottom: 22px;
    right: 22px;
    -webkit-transition: 0.3s ease transform;
    -o-transition: 0.3s ease transform;
    transition: 0.3s ease transform;
}

.certificates-grid__item svg path {
    -webkit-transition: 0.3s ease fill;
    -o-transition: 0.3s ease fill;
    transition: 0.3s ease fill;
}

.certificates-grid__link {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 60px;
    height: 500px;
}

.certificates-grid__title {
    line-height: 1.2;
    -webkit-transition: 0.3s ease color;
    -o-transition: 0.3s ease color;
    transition: 0.3s ease color;
}

@supports (font-size: clamp(1.25rem, 0.9833333333rem + 1.3333333333vw, 2rem)) {
    .certificates-grid__title {
        font-size: clamp(1.25rem, 0.9833333333rem + 1.3333333333vw, 2rem);
    }
}

@supports not (font-size: clamp(1.25rem, 0.9833333333rem + 1.3333333333vw, 2rem)) {
    .certificates-grid__title {
        font-size: calc(1.25rem + 0.75 * (100vw - 20rem) / 56.25);
    }
}

.certificates-grid__status {
    max-width: 90%;
    line-height: 1.2;
    -webkit-transition: 0.3s ease color;
    -o-transition: 0.3s ease color;
    transition: 0.3s ease color;
}

@supports (font-size: clamp(1rem, 0.8222222222rem + 0.8888888889vw, 1.5rem)) {
    .certificates-grid__status {
        font-size: clamp(1rem, 0.8222222222rem + 0.8888888889vw, 1.5rem);
    }
}

@supports not (font-size: clamp(1rem, 0.8222222222rem + 0.8888888889vw, 1.5rem)) {
    .certificates-grid__status {
        font-size: calc(1rem + 0.5 * (100vw - 20rem) / 56.25);
    }
}

.projects-grid ul {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-left: 0;
}

@supports (gap: clamp(1.25rem, 0.2722222222rem + 4.8888888889vw, 4rem)) {
    .projects-grid ul {
        gap: clamp(1.25rem, 0.2722222222rem + 4.8888888889vw, 4rem);
    }
}

@supports not (gap: clamp(1.25rem, 0.2722222222rem + 4.8888888889vw, 4rem)) {
    .projects-grid ul {
        gap: calc(1.25rem + 2.75 * (100vw - 20rem) / 56.25);
    }
}

.projects-grid ul li {
    list-style: none;
}

.projects-grid__item {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: start;
    align-items: flex-start;
    padding: 58px 102px;
    width: 100%;
    border-radius: 30px;
    border: 1px solid #dadada;
    -webkit-transition: 0.3s ease border-color;
    -o-transition: 0.3s ease border-color;
    transition: 0.3s ease border-color;
}

.projects-grid__item a:hover {
    color: #95C11F;
}

.projects-grid__item a:visited {
    color: #814997;
}

.projects-grid__item a:visited:hover {
    color: #95C11F;
}

.projects-grid__title {
    line-height: 1.3;
}

@supports (margin-bottom: clamp(1.25rem, 0.9833333333rem + 1.3333333333vw, 2rem)) {
    .projects-grid__title {
        margin-bottom: clamp(1.25rem, 0.9833333333rem + 1.3333333333vw, 2rem);
    }
}

@supports not (margin-bottom: clamp(1.25rem, 0.9833333333rem + 1.3333333333vw, 2rem)) {
    .projects-grid__title {
        margin-bottom: calc(1.25rem + 0.75 * (100vw - 20rem) / 56.25);
    }
}

@supports (font-size: clamp(1.25rem, 0.9833333333rem + 1.3333333333vw, 2rem)) {
    .projects-grid__title {
        font-size: clamp(1.25rem, 0.9833333333rem + 1.3333333333vw, 2rem);
    }
}

@supports not (font-size: clamp(1.25rem, 0.9833333333rem + 1.3333333333vw, 2rem)) {
    .projects-grid__title {
        font-size: calc(1.25rem + 0.75 * (100vw - 20rem) / 56.25);
    }
}

.projects-grid__text {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 20px;
    max-width: 750px;
    line-height: 1.3;
}

@supports (gap: clamp(0.75rem, 0.5722222222rem + 0.8888888889vw, 1.25rem)) {
    .projects-grid__text {
        gap: clamp(0.75rem, 0.5722222222rem + 0.8888888889vw, 1.25rem);
    }
}

@supports not (gap: clamp(0.75rem, 0.5722222222rem + 0.8888888889vw, 1.25rem)) {
    .projects-grid__text {
        gap: calc(0.75rem + 0.5 * (100vw - 20rem) / 56.25);
    }
}

@supports (font-size: clamp(1rem, 0.9111111111rem + 0.4444444444vw, 1.25rem)) {
    .projects-grid__text {
        font-size: clamp(1rem, 0.9111111111rem + 0.4444444444vw, 1.25rem);
    }
}

@supports not (font-size: clamp(1rem, 0.9111111111rem + 0.4444444444vw, 1.25rem)) {
    .projects-grid__text {
        font-size: calc(1rem + 0.25 * (100vw - 20rem) / 56.25);
    }
}

.projects-grid__button {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 8px 44px;
    min-height: 44px;
    color: #fff;
    background-color: #95C11F;
    font-size: 16px;
    border-radius: 10px;
    -webkit-transition: 0.3s ease background-color;
    -o-transition: 0.3s ease background-color;
    transition: 0.3s ease background-color;
}

.projects-grid__button:hover {
    background-color: #814997;
}

.recomendation-grid ul {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-left: 0;
    margin-bottom: 32px;
}

@supports (gap: clamp(1.25rem, 0.2722222222rem + 4.8888888889vw, 4rem)) {
    .recomendation-grid ul {
        gap: clamp(1.25rem, 0.2722222222rem + 4.8888888889vw, 4rem);
    }
}

@supports not (gap: clamp(1.25rem, 0.2722222222rem + 4.8888888889vw, 4rem)) {
    .recomendation-grid ul {
        gap: calc(1.25rem + 2.75 * (100vw - 20rem) / 56.25);
    }
}

.recomendation-grid ul li {
    list-style: none;
}

.recomendation-grid__item {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: start;
    align-items: flex-start;
    padding: 58px 102px;
    border-radius: 30px;
    border: 1px solid #dadada;
}

.recomendation-grid__title {
    line-height: 1.3;
}

@supports (margin-bottom: clamp(1.25rem, 0.9833333333rem + 1.3333333333vw, 2rem)) {
    .recomendation-grid__title {
        margin-bottom: clamp(1.25rem, 0.9833333333rem + 1.3333333333vw, 2rem);
    }
}

@supports not (margin-bottom: clamp(1.25rem, 0.9833333333rem + 1.3333333333vw, 2rem)) {
    .recomendation-grid__title {
        margin-bottom: calc(1.25rem + 0.75 * (100vw - 20rem) / 56.25);
    }
}

@supports (font-size: clamp(1.25rem, 0.9833333333rem + 1.3333333333vw, 2rem)) {
    .recomendation-grid__title {
        font-size: clamp(1.25rem, 0.9833333333rem + 1.3333333333vw, 2rem);
    }
}

@supports not (font-size: clamp(1.25rem, 0.9833333333rem + 1.3333333333vw, 2rem)) {
    .recomendation-grid__title {
        font-size: calc(1.25rem + 0.75 * (100vw - 20rem) / 56.25);
    }
}

.recomendation-grid__text {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 20px;
    line-height: 1.3;
}

@supports (gap: clamp(0.75rem, 0.5722222222rem + 0.8888888889vw, 1.25rem)) {
    .recomendation-grid__text {
        gap: clamp(0.75rem, 0.5722222222rem + 0.8888888889vw, 1.25rem);
    }
}

@supports not (gap: clamp(0.75rem, 0.5722222222rem + 0.8888888889vw, 1.25rem)) {
    .recomendation-grid__text {
        gap: calc(0.75rem + 0.5 * (100vw - 20rem) / 56.25);
    }
}

@supports (font-size: clamp(1rem, 0.9111111111rem + 0.4444444444vw, 1.25rem)) {
    .recomendation-grid__text {
        font-size: clamp(1rem, 0.9111111111rem + 0.4444444444vw, 1.25rem);
    }
}

@supports not (font-size: clamp(1rem, 0.9111111111rem + 0.4444444444vw, 1.25rem)) {
    .recomendation-grid__text {
        font-size: calc(1rem + 0.25 * (100vw - 20rem) / 56.25);
    }
}

.recomendation-grid__text span {
    color: #BDBDBD;
    font-weight: 300;
}

.recomendation-grid__button {
    background-color: #95C11F;
    border-radius: 12px;
    -webkit-transition: 0.3s ease background-color;
    -o-transition: 0.3s ease background-color;
    transition: 0.3s ease background-color;
}

.recomendation-grid__link {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 8px 44px;
    min-height: 44px;
    color: #fff;
    background-color: #95C11F;
    font-size: 16px;
    border-radius: 10px;
    -webkit-transition: 0.3s ease background-color;
    -o-transition: 0.3s ease background-color;
    transition: 0.3s ease background-color;
}

.contacts__body {
    display: -ms-flexbox;
    display: flex;
    gap: 32px;
}

.contacts__body>div {
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.block-contacts {
    padding: 40px;
    border: 2px solid #dadada;
    border-radius: 30px;
}

.block-contacts__block:not(:last-child) {
    margin-bottom: 32px;
}

.block-contacts__title {
    margin-bottom: 20px;
    font-family: "Gotham Pro";
    line-height: 1.3;
    font-weight: 500;
}

@supports (font-size: clamp(1.25rem, 1.0722222222rem + 0.8888888889vw, 1.75rem)) {
    .block-contacts__title {
        font-size: clamp(1.25rem, 1.0722222222rem + 0.8888888889vw, 1.75rem);
    }
}

@supports not (font-size: clamp(1.25rem, 1.0722222222rem + 0.8888888889vw, 1.75rem)) {
    .block-contacts__title {
        font-size: calc(1.25rem + 0.5 * (100vw - 20rem) / 56.25);
    }
}

.block-contacts__list {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
}

.block-contacts__item {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 12px;
    line-height: 1.3;
}

.block-contacts__text {
    line-height: 1.3;
}

@supports (font-size: clamp(1rem, 0.9111111111rem + 0.4444444444vw, 1.25rem)) {
    .block-contacts__text {
        font-size: clamp(1rem, 0.9111111111rem + 0.4444444444vw, 1.25rem);
    }
}

@supports not (font-size: clamp(1rem, 0.9111111111rem + 0.4444444444vw, 1.25rem)) {
    .block-contacts__text {
        font-size: calc(1rem + 0.25 * (100vw - 20rem) / 56.25);
    }
}

.block-contacts__link {
    color: #95C11F;
    line-height: 1.3;
    -webkit-transition: 0.3s ease color;
    -o-transition: 0.3s ease color;
    transition: 0.3s ease color;
}

.block-contacts__link:active {
    color: #814997;
}

.block-contacts__link:focus {
    color: #814997;
}

.block-contacts__link:visited {
    color: #814997;
}

.ya-map {
    width: 100%;
    min-height: 400px;
    aspect-ratio: 10/4;
}

.map__body {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 32px;
}

.address-block__title {
    margin-bottom: 20px;
    font-family: "Gotham Pro";
    line-height: 1.3;
    font-weight: 500;
}

@supports (font-size: clamp(1.25rem, 1.0722222222rem + 0.8888888889vw, 1.75rem)) {
    .address-block__title {
        font-size: clamp(1.25rem, 1.0722222222rem + 0.8888888889vw, 1.75rem);
    }
}

@supports not (font-size: clamp(1.25rem, 1.0722222222rem + 0.8888888889vw, 1.75rem)) {
    .address-block__title {
        font-size: calc(1.25rem + 0.5 * (100vw - 20rem) / 56.25);
    }
}

.address-block__subtitle {
    margin-bottom: 20px;
    font-family: "Gotham Pro";
    line-height: 1.3;
    font-weight: 500;
}

@supports (font-size: clamp(1rem, 0.9111111111rem + 0.4444444444vw, 1.25rem)) {
    .address-block__subtitle {
        font-size: clamp(1rem, 0.9111111111rem + 0.4444444444vw, 1.25rem);
    }
}

@supports not (font-size: clamp(1rem, 0.9111111111rem + 0.4444444444vw, 1.25rem)) {
    .address-block__subtitle {
        font-size: calc(1rem + 0.25 * (100vw - 20rem) / 56.25);
    }
}

.address-block__address {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    gap: 12px;
    font-style: normal;
    line-height: 1.3;
}

@supports (font-size: clamp(0.875rem, 0.7861111111rem + 0.4444444444vw, 1.125rem)) {
    .address-block__address {
        font-size: clamp(0.875rem, 0.7861111111rem + 0.4444444444vw, 1.125rem);
    }
}

@supports not (font-size: clamp(0.875rem, 0.7861111111rem + 0.4444444444vw, 1.125rem)) {
    .address-block__address {
        font-size: calc(0.875rem + 0.25 * (100vw - 20rem) / 56.25);
    }
}

.address-block__img {
    max-height: 28px;
}

.address-block__list {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 8px;
    padding-left: 20px;
}

.address-block__item {
    list-style: disc;
    line-height: 1.3;
}

@supports (font-size: clamp(0.875rem, 0.7861111111rem + 0.4444444444vw, 1.125rem)) {
    .address-block__item {
        font-size: clamp(0.875rem, 0.7861111111rem + 0.4444444444vw, 1.125rem);
    }
}

@supports not (font-size: clamp(0.875rem, 0.7861111111rem + 0.4444444444vw, 1.125rem)) {
    .address-block__item {
        font-size: calc(0.875rem + 0.25 * (100vw - 20rem) / 56.25);
    }
}

.footer {
    padding: 90px 0 58px;
    background-color: #333333;
}

.footer__top {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 32px;
    padding-bottom: 82px;
}

.footer__top-left {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 22px;
}

.footer__nav {
    display: -ms-flexbox;
    display: flex;
    gap: 50px;
}

.footer__to-top {
    position: fixed;
    right: 20px;
    bottom: 60px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #95C11F;
    -webkit-transition: 0.3s ease background-color;
    -o-transition: 0.3s ease background-color;
    transition: 0.3s ease background-color;
    cursor: pointer;
}

.logo-footer {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 27px;
}

.logo-footer img {
    max-width: 100%;
    border-radius: 0px;
    filter: grayscale(0%);
}

.logo-footer__text {
    color: #fff;
}

@supports (font-size: clamp(0.75rem, 0.6611111111rem + 0.4444444444vw, 1rem)) {
    .logo-footer__text {
        font-size: clamp(0.75rem, 0.6611111111rem + 0.4444444444vw, 1rem);
    }
}

@supports not (font-size: clamp(0.75rem, 0.6611111111rem + 0.4444444444vw, 1rem)) {
    .logo-footer__text {
        font-size: calc(0.75rem + 0.25 * (100vw - 20rem) / 56.25);
    }
}

.social-icons {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    gap: 31px;
    padding-left: 0;
}

.social-icons li {
    list-style: none;
}

.social-icons path {
    -webkit-transition: 0.3s ease fill;
    -o-transition: 0.3s ease fill;
    transition: 0.3s ease fill;
}

.menu-footer {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 18px;
    padding-left: 0;
}

.menu-footer li {
    list-style: none;
}

.menu-footer__item {
    color: #fff;
    -webkit-transition: 0.3s ease color;
    -o-transition: 0.3s ease color;
    transition: 0.3s ease color;
}

@supports (font-size: clamp(0.625rem, 0.4027777778rem + 1.1111111111vw, 1.25rem)) {
    .menu-footer__item {
        font-size: clamp(0.625rem, 0.4027777778rem + 1.1111111111vw, 1.25rem);
    }
}

@supports not (font-size: clamp(0.625rem, 0.4027777778rem + 1.1111111111vw, 1.25rem)) {
    .menu-footer__item {
        font-size: calc(0.625rem + 0.625 * (100vw - 20rem) / 56.25);
    }
}

.menu-footer__title {
    color: #95C11F;
    font-weight: 700;
}

.bottom-footer {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;
    padding-top: 58px;
}

.bottom-footer>* {
    color: #fff;
    font-size: 16px;
}

@supports (font-size: clamp(0.75rem, 0.5722222222rem + 0.8888888889vw, 1.25rem)) {
    .bottom-footer__text {
        font-size: clamp(0.75rem, 0.5722222222rem + 0.8888888889vw, 1.25rem);
    }
}

@supports not (font-size: clamp(0.75rem, 0.5722222222rem + 0.8888888889vw, 1.25rem)) {
    .bottom-footer__text {
        font-size: calc(0.75rem + 0.5 * (100vw - 20rem) / 56.25);
    }
}

.bottom-footer__link {
    -webkit-transition: 0.3s ease color;
    -o-transition: 0.3s ease color;
    transition: 0.3s ease color;
}

@supports (font-size: clamp(0.75rem, 0.5722222222rem + 0.8888888889vw, 1.25rem)) {
    .bottom-footer__link {
        font-size: clamp(0.75rem, 0.5722222222rem + 0.8888888889vw, 1.25rem);
    }
}

@supports not (font-size: clamp(0.75rem, 0.5722222222rem + 0.8888888889vw, 1.25rem)) {
    .bottom-footer__link {
        font-size: calc(0.75rem + 0.5 * (100vw - 20rem) / 56.25);
    }
}

.social-icons-mobile {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    list-style-type: none;
}

.swiper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.swiper-wrapper {
    width: 100%;
    height: 100%;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
}

.swiper-vertical .swiper-wrapper {
    -ms-flex-direction: column;
    flex-direction: column;
}

.swiper-autoheight .swiper-wrapper {
    -ms-flex-align: start;
    align-items: flex-start;
}

.swiper-initialized .swiper-slide {
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.swiper-android .swiper-slide,
.swiper-android .swiper-wrapper {
    -webkit-transform: translate3d(0px, 0, 0);
    transform: translate3d(0px, 0, 0);
}

.swiper-button-lock {
    display: none !important;
}

.navigation img,
.navigation svg {
    cursor: pointer;
}

.navigation .swiper-button-disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.navigation svg {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: 0.3s ease transform;
    -o-transition: 0.3s ease transform;
    transition: 0.3s ease transform;
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
}

.navigation .prev {
    left: 2.0625rem;
    -webkit-transform: translateY(-50%) rotate(-180deg);
    -ms-transform: translateY(-50%) rotate(-180deg);
    transform: translateY(-50%) rotate(-180deg);
}

.navigation .next {
    right: 2.0625rem;
}

.swiper-pagination {
    position: absolute;
    left: 2.5rem;
    bottom: 2.09375rem;
    display: -ms-flexbox;
    display: flex;
    gap: 0.875rem;
    cursor: pointer;
}

.swiper-pagination-bullet {
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 50%;
    background-color: #ffffff;
    -webkit-transition: 0.3s ease background-color;
    -o-transition: 0.3s ease background-color;
    transition: 0.3s ease background-color;
}

.swiper-pagination-bullet-active {
    background-color: #95C11F;
}

.swiper-pagination .swiper-pagination-total {
    color: #585858;
}

@media (min-width: 36.06125em) {
    .no-webp .search-news__form {
        background-image: url(../img/news/search-bg.png);
    }

    .search-news__form {
        height: 180px;
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        border-radius: 30px;
    }

    .search-news__wrapper {
        max-width: calc(100% - 40px);
    }

    .soft-types__body {
        padding-bottom: 50px;
        border-bottom: 1px solid #EFEEEE;
    }

    .article-item {
        padding: 30px 0;
        border-bottom: 1px solid #DADADA;
    }

    .article-item:first-child {
        border-top: 1px solid #DADADA;
    }
}

@media (min-width: 48.06125em) {
    .menu-icon {
        display: none;
    }

    .feedback__content {
        padding: 0 50px;
        padding-bottom: 65px;
        border-bottom: 1px solid #DADADA;
    }

    .feedback__wrapper {
        margin-bottom: 20px;
    }

    .plan {
        border-right: 1px solid #EFEEEE;
    }

    .plan__item span:first-child {
        display: none;
    }

    .plan__icon {
        display: none;
    }
}

@media (min-width: 56.3125em) {
    .header-mobile {
        display: none;
    }
}

@media (min-width: 64.06125em) {
    .hero__mobile-content {
        display: none;
    }

    .feedback-slide__item {
        -ms-flex-pack: end;
        justify-content: stretch;
    }

    .feedback-slide__item:nth-child(even) {
        -ms-flex-pack: start;
        justify-content: stretch;
    }

    .page-hero__text {
        max-width: 75%;
    }

    .grid-registry__item {
        min-height: 300px;
    }

    .grid-registry__item:not(:last-child) {
        border-right: 1px solid #DADADA;
    }

    .why-we__right .why-we__button {
        display: none;
    }

    .certificates-grid__item:nth-child(5n-1) {
        -ms-grid-column-span: 5;
        grid-column: span 5;
    }

    .certificates-grid__item:nth-child(5n) {
        -ms-grid-column-span: 4;
        grid-column: span 4;
    }

    .footer__top {
        border-bottom: 1px solid #fff;
    }

    .social-icons-mobile {
        display: none;
    }
}

@media (max-width: 80em) {
    .hero__body {
        padding: 40px 40px;
    }

    .header__nav {
        gap: 20px;
    }

    .header-menu__list {
        gap: 20px;
    }

    .grid-offer {
        gap: 40px;
    }
}

@media (max-width: 75em) {
    .header__wrapper {
        padding: 0 20px 0 50px;
    }

    .header-menu__button {
        display: none;
    }

    .grid-recognition {
        gap: 30px;
    }

    .grid-plans__point {
        font-size: 14px;
    }

    .plan__title {
        font-size: 14px;
    }

    .plan__price {
        font-size: 14px;
    }

    .plan__item {
        font-size: 14px;
        list-style: none;
    }

    .plan__button {
        font-size: 14px;
    }

    .certificates-grid__link {
        padding: 40px;
        height: 350px;
    }
}

@media (max-width: 25em) {
    .footer__nav {
        gap: 16px;
    }
}

@media (max-width: 68.75em) {
    .hero__body {
        padding: 30px 30px;
    }
}

@media (max-width: 64.06125em) {
    .see-all {
        width: 100%;
        -ms-flex-pack: center;
        justify-content: center;
        gap: 10px;
    }

    .see-all svg {
        -webkit-transform: translateY(2px);
        -ms-transform: translateY(2px);
        transform: translateY(2px);
    }

    .hero__body {
        height: 555px;
        background-position: bottom center;
        background-size: cover;
        aspect-ratio: unset;
        border-radius: 0;
    }

    .hero__content {
        display: none;
    }

    .hero__title {
        margin-bottom: 30px;
    }

    .hero__text {
        margin-bottom: 30px;
    }

    .nav-hero {
        display: none;
    }

    .header__wrapper {
        padding: 0 20px;
    }

    .header__logo {
        margin-right: auto;
    }

    .grid-services {
        -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
        -ms-grid-rows: (130px)[4];
        grid-template-rows: repeat(4, 130px);
        gap: 18px;
    }

    .grid-services__item {
        padding: 20px 15px;
        -ms-grid-column-span: 1;
        grid-column: span 1;
        border-radius: 20px;
    }

    .grid-services__item:nth-child(1) {
        -ms-flex-order: 1;
        order: 1;
    }

    .grid-services__item:nth-child(2) {
        -ms-flex-order: 2;
        order: 2;
    }

    .grid-services__item:nth-child(3) {
        -ms-flex-order: 4;
        order: 4;
    }

    .grid-services__item:nth-child(4) {
        -ms-flex-order: 5;
        order: 5;
    }

    .grid-services__item:nth-child(5) {
        -ms-flex-order: 3;
        order: 3;
    }

    .grid-services__item:nth-child(6) {
        -ms-flex-order: 6;
        order: 6;
    }

    .grid-services__item:nth-child(7) {
        -ms-flex-order: 7;
        order: 7;
    }

    .grid-services__item:nth-child(8) {
        -ms-flex-order: 8;
        order: 8;
    }

    .grid-services__item._tall._mobile-tall {
        -ms-grid-row-span: 1;
        grid-row: span 1;
    }

    .grid-services__item._wide {
        -ms-grid-column-span: 2;
        grid-column: span 2;
        height: 123px;
    }

    .grid-services__item._mobile-tall {
        -ms-grid-row-span: 2;
        grid-row: span 2;
    }

    .licenses__list {
        gap: 30px;
    }

    .item-licenses {
        -ms-flex-direction: column;
        flex-direction: column;
        -ms-flex-align: start;
        align-items: flex-start;
        padding: 24px;
    }

    .item-licenses__title {
        margin-bottom: 10px;
    }

    .grid-recognition {
        -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .grid-recognition__item {
        border-radius: 20px;
    }

    .grid-recognition__item._mobile-wide {
        -ms-grid-column-span: 2;
        grid-column: span 2;
    }

    .grid-recognition__link {
        right: 20px;
    }

    .partners ul {
        gap: 20px;
    }

    .partners ul a {
        padding: 12px 20px;
    }

    .feedback-slide__item {
        -ms-flex-pack: center;
        justify-content: stretch;
    }

    .feedback-slide__item img {
        max-width: 80%;
    }

    .grid-offer {
        gap: 18px;
    }

    .grid-offer__item {
        padding: 40px;
    }

    .grid-recomendation__slide {
        padding: 28px 42px 65px;
    }

    .soft-why__content {
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 30px;
    }

    .soft-why__reason {
        -ms-flex: 1 1 100%;
        flex: 1 1 100%;
    }

    .soft-why__list {
        -ms-flex: 1 1 100%;
        flex: 1 1 100%;
        padding: 20px 20px 20px 40px;
        width: 100%;
    }

    .grid-registry {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }

    .grid-registry__item {
        padding: 30px;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }

    .grid-registry__item:not(:last-child) {
        border-bottom: 1px solid #DADADA;
    }

    .grid-why-us {
        -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .grid-expertise {
        -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .grid-plans__point {
        padding: 8px;
        font-size: 12px;
    }

    .plan__header {
        padding: 8px;
    }

    .plan__title {
        padding: 12px 0;
    }

    .plan__item {
        padding: 8px;
        font-size: 12px;
        list-style: none;
    }

    .plan__button {
        padding: 8px;
    }

    .why-we__body {
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .why-we__left {
        -ms-flex-pack: center;
        justify-content: center;
    }

    .why-we__left .why-we__button {
        display: none;
    }

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

    .why-we__button {
        -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
    }

    .certificates-grid ul {
        -ms-grid-columns: (1fr)[4];
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }

    .certificates-grid__item {
        -ms-grid-column-span: 2;
        grid-column: span 2;
    }

    .certificates-grid__item:nth-child(4n-1) {
        -ms-grid-column-span: 4;
        grid-column: span 4;
    }

    .certificates-grid__link {
        padding: 32px;
        height: 300px;
    }

    .projects-grid__item {
        padding: 40px 60px;
    }

    .recomendation-grid__item {
        padding: 40px 60px;
    }

    .footer {
        padding: 60px 0;
    }

    .footer__top {
        -ms-flex-direction: column;
        flex-direction: column;
        -ms-flex-align: center;
        align-items: center;
        padding-bottom: 60px;
    }

    .logo-footer {
        -ms-flex-align: center;
        align-items: center;
        gap: 12px;
        width: 200px;
    }

    .social-icons {
        display: none;
    }

    .bottom-footer {
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 15px;
        padding-top: 0;
    }

    .navigation {
        display: none;
    }
}

@media (max-width: 56.25em) {
    .header-menu__item._contact {
        display: none;
    }
}

@media (max-width: 48.06125em) {
    .load-more__button {
        width: 100%;
        max-height: 44px;
    }

    .swiper__navigation {
        gap: 20px;
    }

    .swiper__navigation svg {
        width: 30px;
    }

    .softs-grid ul:not(.select__list):not(.nav-hero__list) {
        gap: 12px;
    }

    .softs-grid ul:not(.select__list):not(.nav-hero__list):not(:last-child) {
        margin-bottom: 16px;
    }

    .softs-grid ul:not(.select__list):not(.nav-hero__list) li {
        font-size: 12px;
    }

    .separator {
        display: none;
    }

    .lightbox {
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .header {
        padding: 15px 0;
    }

    ._menu-active .header {
        -webkit-box-shadow: none;
        box-shadow: none;
    }

    .header__wrapper {
        padding: 0;
        height: unset;
        background-color: #fff;
    }

    ._header-scroll .header__tags {
        display: none;
    }

    .header-menu {
        display: none;
    }

    .mobile-menu {
        top: 64px;
    }

    .grid-services {
        -ms-grid-rows: (91px)[4];
        grid-template-rows: repeat(4, 91px);
    }

    .grid-services__item {
        padding: 12px 17px;
        border-radius: 12px;
    }

    .grid-services__item svg {
        height: 10px;
    }

    .licenses__list {
        gap: 18px;
    }

    .item-licenses__title {
        margin-bottom: 4px;
    }

    .grid-recognition__item {
        border-radius: 12px;
    }

    .grid-recognition__blockquote {
        padding: 40px 20px;
    }

    .grid-recognition__author {
        top: 19px;
    }

    .grid-recognition__link {
        bottom: 18px;
        right: 12px;
    }

    .partners ul {
        gap: 12px;
    }

    .partners ul a {
        padding: 8px 16px;
    }

    .projects__content {
        gap: 0;
        -ms-flex-align: center;
        align-items: center;
    }

    .projects__left {
        padding: 0;
    }

    .projects-slide__title {
        padding: 15px;
    }

    .projects-swiper__pagination {
        margin-bottom: 10px;
        padding-bottom: 0;
        width: 88px;
    }

    .projects-swiper__pagination .swiper-pagination-bullet-active {
        font-size: 12px;
    }

    .feedback__link {
        display: none;
    }

    
    .feedback-slide {
        gap: 40px;
    }

    .consultation__text {
        margin-bottom: 20px;
    }

    .consultation__wrapper {
        margin-bottom: 20px;
    }

    .consultation__button {
        padding: 0;
        width: 100%;
        height: 44px !important;
    }

    .breadcrumbs__item {
        font-size: 16px;
        line-height: 1.6;
    }

    .page-hero__company {
        padding: 20px;
        border-radius: 20px;
    }

    .page-hero__licenses {
        margin: 0 auto 30px;
        padding: 32px;
        border-radius: 18px;
    }

    .soft-why__content {
        gap: 20px;
    }

    .capabilities__separator {
        display: none;
    }

    .grid-expertise {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }

    .grid-expertise__item {
        -ms-flex-align: start;
        align-items: flex-start;
    }

    .news-expertise__item {
        padding: 30px 0;
    }

    .article-item__title {
        max-width: 80%;
    }

    .price-calculator__field {
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 8px;
    }

    .price-calculator__input {
        width: 100%;
        padding: 8px 16px;
    }

    .price-calculator__select {
        padding: 8px 16px;
        width: 100%;
    }

    .price-calculator__text {
        padding-bottom: 0;
        width: 100%;
        border-bottom: none;
    }

    .grid-plans__services {
        display: none;
    }

    .grid-plans__body {
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 30px;
    }

    .plan__header {
        -ms-flex-direction: row;
        flex-direction: row;
        padding: 8px 0;
        height: unset;
        border-color: #95C11F;
    }

    .plan__title {
        -ms-flex-align: start;
        align-items: flex-start;
        gap: 12px;
        font-size: 20px;
    }

    .plan__price {
        font-size: 16px;
    }

    .plan__list {
        display: none;
    }

    ._plan-open .plan__list {
        display: block;
    }

    .plan__item._not-available {
        opacity: 0.5;
    }

    .plan__item {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -ms-flex-align: center;
        align-items: center;
        gap: 20px;
        padding: 16px 0;
        font-size: 16px;
        list-style: none;
    }

    .plan__item span:last-child {
        color: #814997;
        font-weight: 700;
    }

    .plan__button {
        display: none;
        margin: 40px auto 0;
    }

    ._plan-open .plan__button {
        display: block;
    }

    .plan__button {
        padding: 16px;
        font-size: 20px;
    }

    .range-wrapper {
        width: 100%;
        gap: 8px;
    }

    .slider-input {
        margin-right: 10px;
        width: calc(100% - 40px);
    }

    .grid-our-way__item {
        width: 155px;
        height: 155px;
        font-size: 16px;
    }

    .grid-our-way__text {
        text-align: center;
    }

    .why-we__body {
        gap: 30px;
    }

    .why-we__list {
        gap: 18px;
    }

    .why-we__item {
        padding: 18px;
        border-radius: 20px;
    }

    .certificates-grid__link {
        padding: 20px;
        height: 250px;
    }

    .projects-grid__item {
        padding: 32px 48px;
        border-radius: 20px;
    }

    .recomendation-grid__item {
        padding: 32px 48px;
        border-radius: 20px;
    }

    .recomendation-grid__button {
        max-height: 44px;
        font-size: 16px;
    }

    .contacts__body {
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .footer {
        padding: 40px 0;
    }

    .footer__top {
        padding-bottom: 40px;
    }

    .footer__nav {
        gap: 30px;
    }

    .navigation .prev {
        left: 0.625rem;
    }

    .navigation .next {
        right: 0.625rem;
    }
}

@media (max-width: 36.06125em) {
    .load-more {
        -ms-flex-pack: stretch;
        justify-content: stretch;
        margin-top: 20px;
    }

    .spoiler {
        width: 100%;
    }

    .spoiler__text {
        padding: 8px 16px;
        font-size: 14px;
    }

    .spoiler__hidden-block {
        top: 33px;
        padding: 12px;
    }

    .spoiler__item {
        font-size: 14px;
    }

    .select__title {
        padding: 8px 16px;
        font-size: 14px;
    }

    .select__item {
        font-size: 14px;
    }

    details summary:before {
        line-height: 15px;
    }

    .slide-simple {
        padding: 20px;
        font-size: 18px;
        border-radius: 20px;
    }

    .page-hero__title {
        margin-bottom: 16px;
    }

    .page-hero__list {
        display: none;
    }

    .page-hero__text {
        margin-bottom: 21px;
        font-weight: 500;
    }

    .page-hero__nav {
        margin-bottom: 21px;
    }

    .page-hero__licenses {
        padding: 24px;
    }

    .select-page__form {
        margin-bottom: 16px;
    }

    .search-news__input {
        font-size: 16px;
    }

    .grid-offer {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }

    .grid-offer__item {
        padding: 28px;
        border-radius: 18px;
    }

    .grid-offer__title {
        max-width: 90%;
    }

    .grid-recomendation__slide {
        padding: 20px 26px 55px;
        border-radius: 18px;
    }

    .grid-why-us {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }

    .grid-why-us__item {
        border-radius: 20px;
    }

    .grid-expertise__item {
        border-radius: 20px;
    }

    .news-expertise__item {
        padding: 20px 0;
    }

    .articles ul {
        gap: 20px;
    }

    .article-item__title {
        max-width: 100%;
    }

    .article-item__to {
        display: none;
    }

    .price-calculator__input {
        padding: 6px 12px;
    }

    .price-calculator__select {
        padding: 6px 12px;
    }

    .price-calculator__select {
        width: 100%;
    }

    .price-calculator__button {
        -ms-flex-item-align: stretch;
        -ms-grid-row-align: stretch;
        align-self: stretch;
    }

    .components ul li {
        padding: 12px;
    }

    .grid-our-way__item {
        width: 140px;
        height: 140px;
    }

    .why-we__body {
        gap: 20px;
    }

    .why-we__button {
        -ms-flex-item-align: stretch;
        -ms-grid-row-align: stretch;
        align-self: stretch;
    }

    .vendor-item {
        padding: 16px;
        gap: 16px;
        border-radius: 18px;
    }

    .vendor-item__block {
        gap: 16px;
    }

    .certificates-grid ul {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }

    .certificates-grid__item {
        -ms-grid-column-span: 1;
        grid-column: span 1;
    }

    .certificates-grid__item:nth-child(4n-1) {
        -ms-grid-column-span: 1;
        grid-column: span 1;
    }

    .certificates-grid__link {
        height: 200px;
    }

    .projects-grid__item {
        padding: 20px 32px;
    }

    .projects-grid__button {
        -ms-flex-item-align: stretch;
        -ms-grid-row-align: stretch;
        align-self: stretch;
    }

    .recomendation-grid__item {
        padding: 20px 32px;
    }

    .recomendation-grid__link {
        -ms-flex-item-align: stretch;
        -ms-grid-row-align: stretch;
        align-self: stretch;
    }

    .block-contacts {
        padding: 20px;
        border-radius: 20px;
    }

    .block-contacts__title {
        margin-bottom: 12px;
    }

    .footer {
        padding: 22px 0;
    }

    .footer__nav {
        gap: 20px;
    }
}

@media (max-width: 21.875em) {
    .grid-our-way__item {
        width: 135px;
        height: 135px;
    }
}

@media (any-hover: hover) {
    .button._highlight:hover {
        background-color: #333333;
    }

    .button._standart:hover {
        color: #333333;
        background-color: #fff;
        border-color: #333333;
    }

    .button._transparent:hover {
        color: #fff;
        background-color: #95C11F;
        border-color: #95C11F;
    }

    .see-all:hover {
        color: #fff;
    }

    .see-all:hover svg {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }

    .see-all:hover svg path {
        fill: #fff;
    }

    .swiper__navigation>div:hover path {
        fill: #95C11F;
    }

    .softs-grid ul:not(.select__list):not(.nav-hero__list) li:hover {
        color: #fff;
        background-color: #814997;
    }

    .spoiler__item:hover {
        opacity: 0.5;
    }

    .select__item:hover {
        color: #6F8290;
        background-color: #EFEEEE;
    }

    .nav-hero ul a:hover {
        color: #fff;
        background-color: #814997;
    }

    .header-menu__link:hover {
        color: #814997;
    }

    .grid-services__item:hover svg {
        -webkit-transform: translate(5px, -5px) scale(1.25);
        -ms-transform: translate(5px, -5px) scale(1.25);
        transform: translate(5px, -5px) scale(1.25);
    }

    .grid-services__item:hover svg path {
        fill: #95C11F;
    }

    .grid-services__item._highlight:hover svg path {
        fill: #333333;
    }

    .grid-recognition__link:hover::before {
        content: "";
        -webkit-transform: scale(0);
        -ms-transform: scale(0);
        transform: scale(0);
    }

    .partners ul a:hover {
        color: #fff;
        background-color: #814997;
    }

    .breadcrumbs__link:hover {
        color: #C0BEBE;
    }

    .article-item__title:hover {
        color: #95C11F;
    }

    .article-item__to:hover {
        color: #95C11F;
    }

    .article-item__to:hover span {
        color: #95C11F;
    }

    .article-item__to:hover svg {
        -webkit-transform: rotate(35deg);
        -ms-transform: rotate(35deg);
        transform: rotate(35deg);
    }

    .plan__button:hover {
        background-color: #333333;
    }

    .vendor-item__link:hover {
        color: #814997;
    }

    .certificates-grid__item:hover {
        border-color: #814997;
        background-color: #814997;
    }

    .certificates-grid__item:hover h4,
    .certificates-grid__item:hover span {
        color: #fff;
    }

    .certificates-grid__item:hover svg {
        -webkit-transform: scale(1.2);
        -ms-transform: scale(1.2);
        transform: scale(1.2);
    }

    .certificates-grid__item:hover svg path {
        fill: #95C11F;
    }

    .recomendation-grid__button:hover {
        background-color: #814997;
    }

    .recomendation-grid__link:hover {
        background-color: #814997;
    }

    .block-contacts__link:hover {
        color: #814997;
    }

    .footer__to-top:hover {
        background-color: #814997;
    }

    .social-icons__icon:hover path {
        fill: #fff;
    }

    .menu-footer__item:hover {
        color: #95C11F;
    }

    .bottom-footer__link:hover {
        color: #95C11F;
    }

    .navigation svg:hover {
        -webkit-transform: translateY(-50%) scale(1.25);
        -ms-transform: translateY(-50%) scale(1.25);
        transform: translateY(-50%) scale(1.25);
    }

    .navigation .prev:hover {
        -webkit-transform: translateY(-50%) scale(1.25) rotate(-180deg);
        -ms-transform: translateY(-50%) scale(1.25) rotate(-180deg);
        transform: translateY(-50%) scale(1.25) rotate(-180deg);
    }
}

.webp .hero__body {
    background-image: url(../img/hero/img-1.webp);
}

@media (min-width: 36.06125em) {

    .webp .search-news__form {
        background-image: url(../img/news/search-bg.webp);
    }
}