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

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

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


/* Указываем box sizing */

html {
    height: 100%;
    scroll-behavior: smooth;
}

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

ul,
ol {
    padding: 0;
}

body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
li,
figure,
figcaption,
blockquote,
dl,
dd {
    margin: 0;
}

input:focus-visible {
    outline: none;
}

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

body {
    min-height: 100vh;
    scroll-behavior: smooth;
    text-rendering: optimizeSpeed;
    line-height: 1;
    color: #333333;
    font-size: 18px;
    font-family: NunitoSans;
    font-weight: 400;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #ffffff;
}

ul,
ol {
    list-style-position: inside;
}

ul[class],
ol[class] {
    list-style: none;
}

a:not([class]) {
    -webkit-text-decoration-skip: ink;
    text-decoration-skip-ink: auto;
}

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

article>*+* {
    margin-top: 1em;
}

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

.container {
    max-width: 1356px;
    padding-left: 16px;
    padding-right: 16px;
    margin: 0 auto;
}

.title {
    position: relative;
    font-size: 50px;
    font-weight: 600;
    color: #333333;
    line-height: 112%;
}

.content {
    padding: 100px 0;
}

.gradient-tag {
    background: linear-gradient(115.64deg, #800F1A -11.28%, #9A3018 36.03%, #600C2F 77.31%), #FFFFFF;
    color: #ffffff;
    padding: 8px 15px;
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
    border-radius: 30px;
}

.black-btn {
    background: #333333;
    border: 1px solid #FFFFFF;
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
    border-radius: 1px;
    padding: 16px 80px;
    font-weight: 600;
    font-size: 18px;
    transition: 0.2s ease-in-out;
    color: #ffffff;
}

.black-btn:hover {
    background: #484848;
}

.header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    background: rgba(29, 24, 39, 0.1);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    z-index: 99;
    transition: 0.2s ease-in-out;
}

.header.active {
    background: rgba(29, 24, 39, 0.9);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}

.header__container {
    position: relative;
    display: flex;
    align-items: center;
    padding: 6px 0;
}

.header__logo {
    width: 152px;
    height: 95px;
    flex-shrink: 0;
    margin-right: auto;
}

.header__logo img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

.header__nav {
    margin-right: 80px;
}

.header__nav-list {
    display: flex;
    align-items: center;
}

.header__nav-item:not(:last-child) {
    margin-right: 80px;
}

.header__nav-link {
    font-size: 14px;
    text-transform: uppercase;
    color: #ffffff;
    transition: 0.2s ease-in-out;
}

.header__nav-link:hover {
    color: #A72330;
}

.header__lang {
    display: flex;
    align-items: center;
    -moz-column-gap: 10px;
    column-gap: 10px;
}

.header__lang-link {
    font-size: 14px;
    text-transform: uppercase;
    color: #ffffff;
    transition: 0.2s ease-in-out;
}

.header__lang-link:hover {
    color: #A72330;
}

.header__lang-link.active {
    text-decoration: underline;
    pointer-events: none;
}

.burger {
    position: relative;
    z-index: 1;
    display: none;
    cursor: pointer;
}

.burger__dot {
    width: 5px;
    height: 5px;
    border-radius: 5px;
    background-color: #F5F8FA;
    position: relative;
    transition: background-color 0.3s ease;
    pointer-events: none;
}

.burger__dot--line {
    background-color: transparent;
}

.burger__dot--line::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 5px;
    background-color: #F5F8FA;
    border-radius: 5px;
    transition: width 0.3s ease;
    transform-origin: 2.5px 2.5px;
}

.burger__dot--left-top::before {
    transform: rotate(45deg);
}

.burger__dot--right-bottom::before {
    transform: rotate(-135deg);
}

.burger__dot--right-top::before {
    transform: rotate(135deg);
}

.burger__dot--left-bottom::before {
    transform: rotate(-45deg);
}

.burger._opened .burger__dot--line::before {
    width: 18px;
}

.burger._opened .burger__dot--aside {
    background-color: transparent;
}

.footer__top {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    row-gap: 16px;
    padding: 16px 0;
}

.footer__logo {
    width: 146px;
    height: 91px;
    flex-shrink: 0;
}

.footer__logo img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

.footer__nav {
    margin-left: auto;
    margin-right: auto;
}

.footer__nav-list {
    display: flex;
    align-items: center;
}

.footer__nav-item:not(:last-child) {
    margin-right: 60px;
}

.footer__nav-link {
    font-size: 14px;
    text-transform: uppercase;
    transition: 0.2s ease-in-out;
}

.footer__nav-link:hover {
    color: #9887F9;
}

.footer__info {
    display: flex;
    -moz-column-gap: 50px;
    column-gap: 50px;
}

.footer__info div {
    display: flex;
    flex-direction: column;
    row-gap: 15px;
}

.footer__info div:nth-child(2) {
    align-items: flex-end;
}

.footer__info-item {
    display: flex;
    align-items: center;
    font-size: 14px;
}

.footer__info-item img {
    width: 24px;
    height: 24px;
    -o-object-fit: contain;
    object-fit: contain;
    flex-shrink: 0;
    margin-right: 10px;
}

.footer__info-link {
    transition: 0.2s ease-in-out;
}

.footer__info-link:hover {
    color: #9887F9;
}

.footer__copy {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    font-size: 14px;
    border-top: 1px solid #E2E2E2;
}

.footer__copy-text {
    color: #828282;
}

.footer__ast {
    color: #828282;
    transition: 0.2s ease-in-out;
}

.footer__ast span {
    color: #A72330;
}

.footer__ast:hover {
    color: #A72330;
}

.breadcrumbs__container {
    padding: 14px 0;
}

.breadcrumbs__list {
    display: flex;
    align-items: center;
    overflow: auto;
}

.breadcrumbs__list::-webkit-scrollbar {
    width: 0;
    height: 0;
}

.breadcrumbs__list-item {
    position: relative;
}

.breadcrumbs__list-item:not(:last-child) {
    margin-right: 28px;
}

.breadcrumbs__list-item:not(:last-child)::before {
    position: absolute;
    content: "";
    width: 8px;
    height: 2px;
    top: 50%;
    transform: translateY(-50%);
    right: -18px;
}

.breadcrumbs__list-link {
    transition: 0.2s ease-in-out;
    white-space: nowrap;
}

.breadcrumbs__list-link:hover {
    color: #9887F9;
}

.breadcrumbs__list-link.active {
    pointer-events: none;
}

@-webkit-keyframes animateHueRotate {
    0% {
        filter: hue-rotate(0);
    }
    50% {
        filter: hue-rotate(360deg);
    }
    100% {
        filter: hue-rotate(0);
    }
}

@keyframes animateHueRotate {
    0% {
        filter: hue-rotate(0);
    }
    50% {
        filter: hue-rotate(360deg);
    }
    100% {
        filter: hue-rotate(0);
    }
}

.hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(90deg, rgba(167, 35, 48, 0.4) -5.96%, rgba(173, 80, 147, 0) 54.58%), #0C0C0C;
}

.hero__container {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    height: 100vh;
    max-width: 700px;
    z-index: 1;
}

.hero__tag {
    margin-bottom: 40px;
}

.hero__title {
    font-weight: 600;
    font-size: 50px;
    line-height: 112%;
    color: #ffffff;
    margin-bottom: 20px;
}

.hero__text {
    font-weight: 600;
    max-width: 540px;
    font-size: 20px;
    line-height: 150%;
    color: #998383;
}

.hero__shape {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 800px;
    height: 800px;
    -webkit-animation: animateBlockShape 4s ease-in-out forwards;
    animation: animateBlockShape 4s ease-in-out forwards;
}

.hero__shape img {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-animation: animateShape 20s linear infinite;
    animation: animateShape 20s linear infinite;
}

@-webkit-keyframes animateShape {
    0% {
        transform: rotate(0);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes animateShape {
    0% {
        transform: rotate(0);
    }
    100% {
        transform: rotate(360deg);
    }
}

@-webkit-keyframes animateBlockShape {
    0% {
        transform: translateY(-50%) scale(0);
    }
    100% {
        transform: translateY(-50%) scale(1);
    }
}

@keyframes animateBlockShape {
    0% {
        transform: translateY(-50%) scale(0);
    }
    100% {
        transform: translateY(-50%) scale(1);
    }
}

.counter__container {
    transform: translateY(-50%);
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
    padding: 1px;
    grid-gap: 1px;
    background: #333333;
}

.counter__item {
    background: #ffffff;
    padding: 20px 60px;
    text-align: center;
}

.counter__item-number {
    position: relative;
    font-weight: 600;
    font-size: 50px;
    line-height: 112%;
    margin-bottom: 10px;
    padding-bottom: 10px;
}

.counter__item-number::before {
    position: absolute;
    content: "";
    width: 100%;
    left: 0;
    bottom: 0;
    height: 8px;
    border-top: 1px solid #333333;
    border-bottom: 1px solid #333333;
}

.counter__item-text {
    color: #828282;
    font-size: 20px;
}

.us__container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.us__tag {
    margin-bottom: 40px;
}

.us__title {
    max-width: 980px;
    text-align: center;
    margin-bottom: 20px;
}

.us__text {
    font-weight: 600;
    font-size: 20px;
    line-height: 150%;
    margin-bottom: 70px;
    color: #828282;
    text-align: center;
    max-width: 900px;
}

.us__items {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
}

.us__item {
    padding: 40px 30px;
    background: #ffffff;
    text-align: center;
    outline: 1px solid #333333;
}

.us__item-img {
    position: relative;
    margin-bottom: 20px;
    background: #F4F4F4;
}

.us__item-img::before {
    display: block;
    content: "";
}

.us__item-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.us__item-img::before {
    padding-top: 58%;
}

.us__item-title {
    font-weight: 700;
    font-size: 24px;
    line-height: 150%;
    margin-bottom: 12px;
}

.us__item-text {
    font-size: 18px;
    line-height: 150%;
    color: #828282;
}

.benefits {
    background: #F4F4F4;
}

.benefits.white {
    background: #ffffff;
}

.benefits__container {
    display: flex;
    align-items: flex-start;
}

.benefits__container.activity {
    align-items: center;
    padding: 150px 0;
}

.benefits__images {
    position: relative;
    z-index: 1;
    width: 600px;
    height: 755px;
    flex-shrink: 0;
    margin-left: 30px;
    margin-right: 140px;
    margin-top: 64px;
}

.benefits__images::before,
.benefits__images::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 50%;
    border: 1px solid #333333;
    z-index: -1;
}

.benefits__images::after {
    top: -60px;
    left: -30px;
}

.benefits__images::before {
    bottom: -60px;
    right: -30px;
}

.benefits__img {
    display: none;
    width: 100%;
    height: 100%;
}

.benefits__img.active {
    display: block;
}

.benefits__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.benefits__block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.benefits__tag {
    margin-bottom: 30px;
}

.benefits__title {
    margin-bottom: 40px;
}

.benefits__list {
    display: flex;
    flex-direction: column;
    row-gap: 30px;
}

.benefits__list-item {
    position: relative;
    font-weight: 700;
    font-size: 20px;
    line-height: 150%;
    padding-left: 34px;
    cursor: pointer;
}

.benefits__list-item::before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    transition: 0.2s ease-in-out;
    background: #CACDD2;
}

.benefits__list-item.active::before {
    background: #A72330;
}

.benefits__sublist {
    display: none;
    list-style-position: inside !important;
}

.benefits__sublist li {
    list-style-type: disc;
    font-size: 18px;
    line-height: 150%;
    font-weight: 400;
    color: #828282;
}

.product__container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.product__tag {
    margin-bottom: 40px;
}

.product__title {
    max-width: 980px;
    text-align: center;
    margin-bottom: 20px;
}

.product__text {
    font-weight: 600;
    font-size: 20px;
    line-height: 150%;
    margin-bottom: 70px;
    color: #828282;
    text-align: center;
    max-width: 900px;
}

.product__items {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
}

.product__item {
    display: flex;
    flex-direction: column;
    padding: 40px 30px 30px 30px;
    background: #ffffff;
    overflow: hidden;
}

.product__item:nth-child(3n+2) .product__item-img::after,
.product__item:nth-child(3n) .product__item-img::after {
    position: absolute;
    content: "";
    height: 100%;
    left: -30px;
    top: 0;
    border-left: 1px solid #E2E2E2;
}

.product__item-img {
    position: relative;
    width: 100%;
    display: block;
    background: #333333;
}

.product__item-img::before {
    display: block;
    content: "";
}

.product__item-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.product__item-img img {
    z-index: 1;
}

.product__item-img::before {
    padding-top: 122%;
}

.product__item-elem {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: #ffffff;
    transition: 0.2s ease-in-out;
    z-index: 2;
}

.product__item-title {
    font-weight: 700;
    font-size: 24px;
    line-height: 150%;
    width: 100%;
    background: #ffffff;
    transition: 0.2s ease-in-out;
    padding-top: 20px;
}

.product__item-link {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: calc(100% + 20px);
    padding: 8px 30px;
    border: 1px solid #333333;
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
    line-height: 150%;
    opacity: 0;
    transition: 0.2s ease-in-out;
}

.product__item-link:hover {
    background: #333333;
    color: #ffffff;
}

.product__link {
    margin-top: 50px;
}

.partner {
    background: #F4F4F4;
}

.partner__container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.partner__tag {
    margin-bottom: 40px;
}

.partner__title {
    margin-bottom: 60px;
}

.partner__items {
    width: 100%;
}

.partner__item {
    height: 115px;
}

.partner__item img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

.partner__arrows {
    margin-top: 60px;
    display: flex;
    align-items: center;
    -moz-column-gap: 30px;
    column-gap: 30px;
}

.partner__arrows .swiper-pagination {
    position: relative;
    bottom: unset;
}

.partner__arrows .swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    border-radius: 0;
}

.partner__arrows .swiper-pagination .swiper-pagination-bullet-active {
    background: #A72330;
}

.partner__arrow {
    display: flex;
}

.partner__arrow svg path,
.partner__arrow svg rect {
    transition: 0.2s ease-in-out;
}

.partner__arrow:hover svg path {
    fill: #A72330;
}

.partner__arrow:hover svg rect {
    stroke: #A72330;
}

.gray {
    background: #F4F4F4;
}

.preview {
    position: relative;
    background: linear-gradient(90deg, rgba(167, 35, 48, 0.4) -2.73%, rgba(167, 35, 48, 0) 50.24%, rgba(167, 35, 48, 0.4) 100%), #0C0C0C;
    overflow: hidden;
}

.preview::before,
.preview::after {
    position: absolute;
    content: "";
    height: 100%;
    width: 400px;
    top: 0;
}

.preview::after {
    background: url("../img/pre-1.png") center no-repeat;
    background-size: cover;
    right: 0;
}

.preview::before {
    background: url("../img/pre-2.png") center no-repeat;
    background-size: cover;
    left: 0;
}

.preview__container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 200px 0 150px 0;
    text-align: center;
    z-index: 1;
}

.preview__tag {
    margin-bottom: 40px;
}

.preview__title {
    color: #FFFFFF;
    margin-bottom: 20px;
    max-width: 980px;
}

.preview__text {
    max-width: 895px;
    color: #998383;
    font-size: 20px;
    line-height: 150%;
    font-weight: 600;
}

.about__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 150px 0;
}

.about__info {
    max-width: 550px;
}

.about__title {
    margin-bottom: 20px;
}

.about__text {
    font-weight: 600;
    font-size: 20px;
    line-height: 150%;
    color: #838A99;
}

.about__img {
    position: relative;
    width: 600px;
    height: 755px;
    flex-shrink: 0;
}

.about__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.about__img::before,
.about__img::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 50%;
    border: 1px solid #333333;
    z-index: -1;
}

.about__img::after {
    top: -60px;
    left: -30px;
}

.about__img::before {
    bottom: -60px;
    right: -30px;
}

.exp {
    background: #F4F4F4;
}

.exp__title {
    text-align: center;
    margin-bottom: 90px;
    max-width: 1089px;
    margin-left: auto;
    margin-right: auto;
}

.exp__items {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[4];
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 90px 30px;
}

.exp__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.exp__item-img {
    position: relative;
    margin-bottom: 20px;
    width: 45px;
    height: 45px;
    z-index: 1;
    flex-shrink: 0;
}

.exp__item-img .img {
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.15);
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.exp__item-img img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

.exp__item-img .bg {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 7px;
    background: linear-gradient(98.21deg, #B42735 16.61%, #871F2A 77.46%), #FFFFFF;
    left: -9px;
    top: -9px;
    z-index: -1;
}

.exp__item-title {
    font-weight: 600;
    font-size: 20px;
}

.contact__container {
    display: flex;
    align-items: flex-start;
    padding: 150px 0;
    justify-content: space-between;
}

.contact__info {
    display: flex;
    flex-direction: column;
    margin-right: 140px;
    min-width: 550px;
}

.contact__item {
    display: flex;
    align-items: center;
    padding-bottom: 70px;
    border-bottom: 1px solid #E2E2E2;
}

.contact__item:not(:last-child) {
    margin-bottom: 70px;
}

.contact__item-img {
    position: relative;
    width: 45px;
    height: 45px;
    margin-left: 10px;
    margin-right: 20px;
    flex-shrink: 0;
}

.contact__item-bg {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: -9px;
    top: -9px;
    background: linear-gradient(98.21deg, #B42735 16.61%, #871F2A 77.46%), #FFFFFF;
    border-radius: 7px;
}

.contact__item-icon {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.15);
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
    /* Note: backdrop-filter has minimal browser support */
    border-radius: 7px;
}

.contact__item-icon img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

.contact__item-col {
    display: flex;
    flex-direction: column;
    row-gap: 12px;
    margin-top: -9px;
}

.contact__item-head {
    color: #838A99;
}

.contact__item-link {
    font-weight: 700;
    font-size: 24px;
}

.contact a.contact__item-link {
    transition: 0.2s ease-in-out;
}

.contact a.contact__item-link:hover {
    color: #9887F9;
}

.contact__map {
    position: relative;
    width: 600px;
    height: 755px;
    flex-shrink: 0;
    margin-right: 30px;
}

.contact__map iframe {
    width: 100%;
    height: 100%;
}

.contact__map::before,
.contact__map::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 50%;
    border: 1px solid #333333;
    z-index: -1;
}

.contact__map::after {
    top: -60px;
    left: -30px;
}

.contact__map::before {
    bottom: -60px;
    right: -30px;
}

.feedback {
    background: #F4F4F4;
}

.feedback__container {
    display: flex;
    justify-content: space-between;
}

.feedback__info {
    max-width: 420px;
    margin-right: 125px;
    width: 100%;
}

.feedback__title {
    margin-bottom: 20px;
}

.feedback__text {
    font-weight: 600;
    font-size: 20px;
    line-height: 150%;
    color: #838A99;
}

.feedback form {
    width: 100%;
    max-width: 770px;
}

.feedback__form {
    width: 100%;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 18px;
}

.feedback__form-field {
    display: flex;
    flex-direction: column;
    row-gap: 5px;
    font-size: 14px;
}

.feedback__form-field:nth-child(n+4) {
    -ms-grid-column-span: 3;
    grid-column: 3 span;
}

.feedback__form-input {
    font-size: 14px;
    padding: 18px 10px;
    background: #FFFFFF;
    border: 1px solid #D9D9D9;
    transition: .1s ease-in-out;
}

.feedback__form-input:focus-visible,
.feedback__form-area:focus-visible {
    border-color: #B6B6B6;
}

.feedback__form-input::-moz-placeholder {
    color: #838A99;
}

.feedback__form-input:-ms-input-placeholder {
    color: #838A99;
}

.feedback__form-input::placeholder {
    color: #838A99;
}

.feedback__form-area {
    padding: 18px 10px;
    background: #FFFFFF;
    border: 1px solid #D9D9D9;
    outline: none;
    font-size: 14px;
    height: 115px;
    resize: none;
}

.feedback__form-area::-moz-placeholder {
    color: #838A99;
    font-size: 14px;
}

.feedback__form-area:-ms-input-placeholder {
    color: #838A99;
    font-size: 14px;
}

.feedback__form-area::placeholder {
    color: #838A99;
    font-size: 14px;
}

.feedback__form-submit {
    background: #333333;
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
    border: none;
    outline: none;
    /* Note: backdrop-filter has minimal browser support */
    border-radius: 1px;
    text-align: center;
    color: #ffffff;
    padding: 16px 0;
    font-weight: 600;
    font-size: 18px;
    line-height: 150%;
    transition: 0.2s ease-in-out;
    cursor: pointer;
}

.feedback__form-submit:hover {
    background: #484848;
}

.fixed-button {
    position: fixed;
    right: 16px;
    bottom: 16px;
    z-index: 99;
}

.fixed-button-wp {
    display: inline-block;
    width: 100px;
    height: 100px;
}

.fixed-button-wp img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}


/*alert*/

.box-size {
    box-sizing: border-box;
}

.alert--fixed {
    position: fixed;
    width: 100%;
    height: 100%;
    display: none;
    align-items: center;
    justify-content: center;
    top: 0px;
    left: 0px;
    z-index: 999;
}

.alert--error,
.alert--warning,
.alert--active {
    display: flex;
}

.alert--width {
    width: 400px;
}

.alert--img__item svg {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}

.alert--img__item {
    display: none;
    flex-shrink: 0;
}

.alert--active .active {
    display: block;
}

.alert--warning .warning {
    display: block;
}

.alert--error .error {
    display: block;
}

.alert--content {
    position: relative;
    z-index: 12;
    border-radius: 15px;
    display: flex;
    align-items: center;
    flex-direction: column;
    background-color: white;
    padding: 30px;
    color: #333333;
    margin-bottom: 10%;
}

.alert--bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: black;
    opacity: 0.6;
    z-index: 11;
    top: 0px;
    left: 0px;
}

.alert-text {
    margin-top: 15px;
    text-align: center;
}

.alert--active .active path {
    fill: #4ad395;
}

.alert--warning .warning path {
    fill: #e5e75d;
}

.alert--error .error path {
    fill: #f81919;
}

.alert--title {
    font-size: 28px;
    font-weight: 500;
}

.alert--subtitle {
    font-weight: 400;
    font-size: 20px;
    padding-top: 8px;
    margin-top: 8px;
    border-top: 1px solid #ccbbbb;
}

.alert--x {
    position: absolute;
    width: 30px;
    height: 30px;
    padding: 8px;
    right: 10px;
    top: 10px;
    cursor: pointer;
}

.alert--x svg {
    width: 100%;
    height: 100%;
}

.alert--x svg path {
    fill: #968787;
    transition: all 0.3s ease;
}

.alert--x:hover path {
    fill: black;
}


/*alert*/


/*formLoader*/

.form_loader {
    position: fixed;
    display: none;
    z-index: 999;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.3);
}

.form_loader_block {
    position: absolute;
    width: 350px;
    max-width: 90%;
    left: 50%;
    top: 45%;
    padding: 40px;
    border-radius: 10px;
    background-color: #fff;
    transform: translate(-50%, -50%);
}

.form_loader_animate {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
}

.form_loader_animate:after {
    content: "";
    display: block;
    width: 85%;
    height: 85%;
    /*margin: 8px;*/
    border-radius: 50%;
    border: 6px solid #fff;
    border-color: #C53364 transparent #C53364 transparent;
    -webkit-animation: loader-animate 1.2s linear infinite;
    animation: loader-animate 1.2s linear infinite;
}

.form_loader_text {
    font-size: 20px;
    text-align: center;
}

@-webkit-keyframes loader-animate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes loader-animate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


/*formLoader*/

@media (min-width: 576px) {
    .product__item:hover .product__item-title {
        transform: translateY(-100%);
    }
    .product__item:hover .product__item-link {
        top: 20px;
        opacity: 1;
    }
}

@media (max-width: 1650px) {
    body {
        font-size: 16px;
    }
}

@media (max-width: 1400px) {
    .container {
        max-width: 992px;
    }
    .title {
        font-size: 36px;
    }
    .content {
        padding: 50px 0;
    }
    .header__nav-item:not(:last-child) {
        margin-right: 40px;
    }
    .counter__item-number {
        font-size: 40px;
    }
    .counter__item-text {
        font-size: 16px;
    }
    .us__tag {
        margin-bottom: 30px;
    }
    .us__title {
        max-width: 700px;
    }
    .us__text {
        font-size: 18px;
        margin-bottom: 50px;
    }
    .us__item {
        padding: 20px;
    }
    .us__item-title {
        font-size: 20px;
    }
    .us__item-text {
        font-size: 16px;
    }
    .benefits__container.activity {
        padding: 120px 0;
    }
    .benefits__images {
        width: 450px;
        height: 570px;
        margin-right: 80px;
    }
    .benefits__list-item {
        font-size: 18px;
        padding-left: 25px;
    }
    .benefits__sublist li {
        font-size: 16px;
    }
    .product__tag {
        margin-bottom: 30px;
    }
    .product__title {
        max-width: 700px;
    }
    .product__text {
        font-size: 18px;
        margin-bottom: 50px;
    }
    .product__item {
        padding: 20px;
    }
    .product__item:nth-child(3n+2) .product__item-img::after,
    .product__item:nth-child(3n) .product__item-img::after {
        left: -20px;
    }
    .product__item-title {
        font-size: 20px;
        padding-top: 15px;
    }
    .partner__tag {
        margin-bottom: 30px;
    }
    .partner__title {
        margin-bottom: 40px;
    }
    .partner__item {
        height: 100px;
    }
    .partner__arrows {
        margin-top: 40px;
    }
    .preview__title {
        max-width: 700px;
    }
    .preview__text {
        font-size: 18px;
        max-width: 800px;
    }
    .about__container {
        padding: 120px 0;
    }
    .about__info {
        max-width: 400px;
    }
    .about__text {
        font-size: 18px;
    }
    .about__img {
        width: 450px;
        height: 570px;
        margin-right: 35px;
    }
    .exp__title {
        max-width: 900px;
        margin-bottom: 60px;
    }
    .exp__items {
        grid-gap: 50px 30px;
    }
    .exp__item-title {
        font-size: 18px;
    }
    .contact__info {
        min-width: 400px;
        margin-right: 60px;
    }
    .contact__item:not(:last-child) {
        margin-bottom: 50px;
    }
    .contact__item {
        padding-bottom: 20px;
    }
    .contact__item-link {
        font-size: 18px;
    }
    .contact__map {
        width: 450px;
        height: 600px;
    }
    .feedback__container {
        flex-direction: column;
        row-gap: 50px;
    }
    .feedback__info {
        max-width: unset;
    }
    .feedback__title {
        margin-bottom: 10px;
    }
    .feedback__text {
        font-size: 18px;
    }
    .feedback form {
        max-width: unset;
    }
    .fixed-button-wp {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 1200px) {
    .alert--width {
        width: 370px;
    }
    .alert--content {
        padding: 25px;
    }
    .alert--img__item svg {
        width: 75px;
        height: 75px;
    }
    .alert-text {
        margin-top: 10px;
    }
    .alert--title {
        font-size: 24px;
    }
    .alert--subtitle {
        font-size: 18px;
    }
}

@media (max-width: 992px) {
    body {
        font-size: 14px;
    }
    .title {
        font-size: 26px;
    }
    .header__logo {
        width: 130px;
        height: 80px;
    }
    .header__nav {
        margin-right: 40px;
    }
    .header__nav-item:not(:last-child) {
        margin-right: 20px;
    }
    .footer__nav-item:not(:last-child) {
        margin-right: 30px;
    }
    .hero__container {
        max-width: 500px;
    }
    .hero__tag {
        margin-bottom: 30px;
    }
    .hero__title {
        font-size: 36px;
    }
    .hero__text {
        font-size: 16px;
    }
    .hero__shape {
        width: 600px;
        height: 600px;
    }
    .counter__item {
        padding: 15px 30px;
    }
    .counter__item-number {
        font-size: 30px;
    }
    .counter__item-text {
        font-size: 14px;
    }
    .us__text {
        font-size: 16px;
    }
    .us__item {
        padding: 10px;
    }
    .us__item-img {
        margin-bottom: 15px;
    }
    .us__item-title {
        font-size: 18px;
        margin-bottom: 10px;
    }
    .us__item-text {
        font-size: 14px;
    }
    .benefits__container {
        flex-direction: column-reverse;
    }
    .benefits__container.activity {
        align-items: flex-start;
    }
    .benefits__images {
        margin-left: auto;
        margin-right: auto;
    }
    .benefits__images::after {
        top: -20px;
        left: -20px;
    }
    .benefits__images::before {
        bottom: -20px;
        right: -20px;
    }
    .benefits__title {
        max-width: 300px;
        margin-bottom: 20px;
    }
    .product__text {
        font-size: 16px;
    }
    .product__item-title {
        font-size: 18px;
        padding-top: 10px;
    }
    .preview::after {
        display: none;
    }
    .preview__title {
        max-width: 500px;
    }
    .about__info {
        max-width: unset;
        margin-right: 30px;
    }
    .about__text {
        font-size: 16px;
    }
    .about__img {
        width: 350px;
        height: 450px;
    }
    .about__img::after {
        top: -20px;
        left: -20px;
    }
    .about__img::before {
        bottom: -20px;
        right: -20px;
    }
    .exp__title {
        max-width: 650px;
    }
    .exp__items {
        -ms-grid-columns: (1fr)[3];
        grid-template-columns: repeat(3, 1fr);
    }
    .contact__container {
        padding: 100px 0;
        flex-direction: column;
        align-items: center;
    }
    .contact__info {
        flex-wrap: wrap;
        width: 100%;
        min-width: unset;
        margin-right: 0;
        justify-content: space-between;
        flex-direction: row;
        row-gap: 40px;
        margin-bottom: 80px;
    }
    .contact__item:not(:last-child) {
        margin-bottom: 0;
    }
    .contact__item {
        width: 49%;
    }
    .contact__map {
        margin-right: 0;
    }
    .contact__map::after {
        top: -20px;
        left: -20px;
    }
    .contact__map::before {
        bottom: -20px;
        right: -20px;
    }
}

@media (max-width: 992.9px) {
    .container {
        width: 100%;
        max-width: none;
    }
}

@media (max-width: 768px) {
    .header__nav {
        position: absolute;
        top: 100%;
        right: 0;
        background: rgba(29, 24, 39, 0.9);
        -webkit-backdrop-filter: blur(5px);
        backdrop-filter: blur(5px);
        margin-right: 0;
        transform: translateX(calc(100% + 16px));
        transition: 0.3s ease-in-out;
    }
    .header__nav.active {
        transform: translateX(0);
    }
    .header__nav-list {
        flex-direction: column;
        padding: 20px;
    }
    .header__nav-item:not(:last-child) {
        margin-right: 0;
        margin-bottom: 20px;
    }
    .burger {
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: (5px)[3];
        grid-template-columns: repeat(3, 5px);
        justify-content: space-between;
        width: 25px;
        row-gap: 5px;
        -moz-column-gap: 5px;
        column-gap: 5px;
        margin-left: 40px;
    }
    .footer__top {
        row-gap: 30px;
    }
    .footer__nav {
        width: 100%;
    }
    .footer__copy {
        flex-direction: column;
        row-gap: 16px;
    }
    .hero__shape {
        width: 500px;
        height: 500px;
        right: -20%;
    }
    .counter__item {
        padding: 15px 10px;
    }
    .counter__item-number {
        font-size: 26px;
    }
    .counter__item-text {
        font-size: 12px;
    }
    .us__items {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }
    .benefits__list {
        row-gap: 15px;
    }
    .benefits__list-item {
        font-size: 16px;
    }
    .benefits__sublist li {
        font-size: 14px;
    }
    .product__item {
        padding: 10px;
    }
    .product__item:nth-child(3n+2) .product__item-img::after,
    .product__item:nth-child(3n) .product__item-img::after {
        left: -10px;
    }
    .about__container {
        flex-direction: column;
        padding: 80px 0;
        row-gap: 50px;
    }
    .about__info {
        margin-right: 0;
    }
    .about__img {
        margin-right: 0;
    }
    .exp__items {
        -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 50px 20px;
    }
    .exp__item-title {
        font-size: 16px;
    }
    .feedback__form {
        -ms-grid-columns: (1fr)[1];
        grid-template-columns: repeat(1, 1fr);
    }
    .feedback__form-field:nth-child(n+4) {
        -ms-grid-column-span: 1;
        grid-column: 1 span;
    }
}

@media (max-width: 576px) {
    .footer__nav-list {
        flex-direction: column;
        align-items: flex-start;
    }
    .footer__nav-item:not(:last-child) {
        margin-right: 0;
        margin-bottom: 30px;
    }
    .footer__info div:nth-child(2) {
        align-items: flex-start;
    }
    .footer__info {
        flex-direction: column;
        row-gap: 15px;
    }
    .hero__title {
        font-size: 30px;
    }
    .counter {
        padding: 50px 0;
    }
    .counter__container {
        transform: unset;
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }
    .benefits__images::before,
    .benefits__images::after {
        display: none;
    }
    .product__items {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }
    .product__item:nth-child(3n+2) .product__item-img::after,
    .product__item:nth-child(3n) .product__item-img::after {
        display: none;
    }
    .product__item-link {
        position: static;
        opacity: 1;
        transform: unset;
        margin-top: 20px;
        margin-bottom: 10px;
    }
    .about__container {
        row-gap: 30px;
    }
    .about__img::before,
    .about__img::after {
        display: none;
    }
    .exp__item-title {
        font-size: 14px;
    }
    .contact__container {
        padding: 50px 0;
    }
    .contact__info {
        margin-bottom: 40px;
    }
    .contact__item {
        width: 100%;
    }
    .contact__map {
        width: 100%;
        height: 300px;
    }
    .contact__map::before,
    .contact__map::after {
        display: none;
    }
}

@media (max-width: 500px) {
    .alert--content {
        width: 92%;
    }
    .alert--img__item svg {
        width: 60px;
        height: 60px;
    }
    .alert--title {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .hero__shape {
        right: -50%;
    }
    .benefits__images {
        width: 100%;
        height: 500px;
        margin-top: 30px;
    }
    .about__img {
        width: 100%;
        height: 500px;
    }
}

@media (max-width: 420px) {
    .benefits__images {
        height: 450px;
    }
    .about__img {
        height: 450px;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        -webkit-animation-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        -webkit-animation-iteration-count: 1 !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}