@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
/* @font-face {
    font-family: "Manrope";
    font-display: swap;
    src: url("../assets/fonts/Manrope.woff2") format("woff2"), url("../assets/fonts/Manrope.woff") format("woff");
    font-weight: 400;
    font-style: normal;
} */

[class*=icon-]:before {
    font-family: "icons";
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

[class*=icon-]:before {
    display: block;
}

:root {
    --white: #fff;
    --grey-01: #f7f6f6;
    --grey-02: #918581;
    --black: #110700;
    --red: #ef4444;
    --gradient: 315deg, #ef4444 10%, #f97316 90%;
}

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

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

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

body {
    color: #000;
    line-height: 1;
    font-family: "Manrope";
    font-size: 1.125rem;
    -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";
    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 li {
    list-style: none;
}

img {
    vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: inherit;
    font-size: inherit;
}

body {
    background-color: var(--grey-01);
}

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

.wrapper {
    min-height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    overflow: hidden;
}

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

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

/*
(i) Стили будут применяться ко 
всем классам содержащим *__container
Например header__container, main__container и т.д.
Снипет (HTML): cnt
*/

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

[class*=__button] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

[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;
}

.header__container {
    min-height: 5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0.625rem;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.header__menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
}

.header__action{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;	
}

.menu__body {
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.menu__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

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

.menu__link {
    display: inline-block;
    font-weight: 400;
    line-height: 100%;
    color: var(--black);
    border-radius: 6.25rem;
    padding: 1.25rem;
}

@supports (font-size: clamp(0.625rem, 0.4394329897rem + 0.824742268vw, 1.125rem)) {
    .menu__link {
        font-size: clamp(0.625rem, 0.4394329897rem + 0.824742268vw, 1.125rem);
    }
}

@supports not (font-size: clamp(0.625rem, 0.4394329897rem + 0.824742268vw, 1.125rem)) {
    .menu__link {
        font-size: calc(0.625rem + 0.5 * (100vw - 22.5rem) / 60.625);
    }
}

@supports (padding-top: clamp(0.625rem, 0.7963917526rem + -0.206185567vw, 0.75rem)) {
    .menu__link {
        padding-top: clamp(0.625rem, 0.7963917526rem + -0.206185567vw, 0.75rem);
    }
}

@supports not (padding-top: clamp(0.625rem, 0.7963917526rem + -0.206185567vw, 0.75rem)) {
    .menu__link {
        padding-top: calc(0.75rem + -0.125 * (100vw - 22.5rem) / 60.625);
    }
}

@supports (padding-bottom: clamp(0.625rem, 0.7963917526rem + -0.206185567vw, 0.75rem)) {
    .menu__link {
        padding-bottom: clamp(0.625rem, 0.7963917526rem + -0.206185567vw, 0.75rem);
    }
}

@supports not (padding-bottom: clamp(0.625rem, 0.7963917526rem + -0.206185567vw, 0.75rem)) {
    .menu__link {
        padding-bottom: calc(0.75rem + -0.125 * (100vw - 22.5rem) / 60.625);
    }
}

.menu__icon-link {
    padding: 0;
}

.menu__button {
    position: relative;
}

.menu__button span {
    font-weight: 600;
    font-size: 1.125rem;
    background: linear-gradient(315deg, #ef4444 10%, #f97316 90%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.menu-open .menu__body {
    right: 0;
}

.bg-lock {
    -webkit-transition: all 1s ease 0s;
    transition: all 1s ease 0s;
}

.lock .bg-lock {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(17, 7, 0, 0.4);
    z-index: 3;
}

.icon-menu {
    display: none;
}

.footer__container {
    border-radius: 1.25rem;
    background: var(--white);
    padding: 4rem 1.25rem;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr);
    grid-template-columns: repeat(4, 1fr);
}

@supports (padding: clamp(1.25rem, -0.837628866rem + 9.2783505155vw, 6.875rem)) {
    .footer__container {
        padding: clamp(1.25rem, -0.837628866rem + 9.2783505155vw, 6.875rem);
    }
}

@supports not (padding: clamp(1.25rem, -0.837628866rem + 9.2783505155vw, 6.875rem)) {
    .footer__container {
        padding: calc(1.25rem + 5.625 * (100vw - 22.5rem) / 60.625);
    }
}

@supports (padding-top: clamp(4rem, 2.7010309278rem + 5.7731958763vw, 7.5rem)) {
    .footer__container {
        padding-top: clamp(4rem, 2.7010309278rem + 5.7731958763vw, 7.5rem);
    }
}

@supports not (padding-top: clamp(4rem, 2.7010309278rem + 5.7731958763vw, 7.5rem)) {
    .footer__container {
        padding-top: calc(4rem + 3.5 * (100vw - 22.5rem) / 60.625);
    }
}

@supports (padding-bottom: clamp(3.75rem, 2.3582474227rem + 6.1855670103vw, 7.5rem)) {
    .footer__container {
        padding-bottom: clamp(3.75rem, 2.3582474227rem + 6.1855670103vw, 7.5rem);
    }
}

@supports not (padding-bottom: clamp(3.75rem, 2.3582474227rem + 6.1855670103vw, 7.5rem)) {
    .footer__container {
        padding-bottom: calc(3.75rem + 3.75 * (100vw - 22.5rem) / 60.625);
    }
}

@supports (gap: clamp(1.25rem, -0.1417525773rem + 6.1855670103vw, 5rem)) {
    .footer__container {
        gap: clamp(1.25rem, -0.1417525773rem + 6.1855670103vw, 5rem);
    }
}

@supports not (gap: clamp(1.25rem, -0.1417525773rem + 6.1855670103vw, 5rem)) {
    .footer__container {
        gap: calc(1.25rem + 3.75 * (100vw - 22.5rem) / 60.625);
    }
}

.footer__menu-item:not(:last-child) {
    margin-bottom: 1.25rem;
}

.footer__menu-link {
    line-height: 100%;
}

@supports (margin-bottom: clamp(0.625rem, 1.4819587629rem + -1.0309278351vw, 1.25rem)) {
    .contact-footer__item:not(:last-child) {
        margin-bottom: clamp(0.625rem, 1.4819587629rem + -1.0309278351vw, 1.25rem);
    }
}

@supports not (margin-bottom: clamp(0.625rem, 1.4819587629rem + -1.0309278351vw, 1.25rem)) {
    .contact-footer__item:not(:last-child) {
        margin-bottom: calc(1.25rem + -0.625 * (100vw - 22.5rem) / 60.625);
    }
}

.contact-footer__title {
    font-size: 12px;
    line-height: 130%;
    background: linear-gradient(315deg, #ef4444 10%, #f97316 90%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.25rem;
}

.contact-footer__text {
    line-height: 100%;
    color: var(--black);
}

@supports (font-size: clamp(1rem, 0.9536082474rem + 0.206185567vw, 1.125rem)) {
    .contact-footer__text {
        font-size: clamp(1rem, 0.9536082474rem + 0.206185567vw, 1.125rem);
    }
}

@supports not (font-size: clamp(1rem, 0.9536082474rem + 0.206185567vw, 1.125rem)) {
    .contact-footer__text {
        font-size: calc(1rem + 0.125 * (100vw - 22.5rem) / 60.625);
    }
}

.info-footer__item {
    display: inline-block;
}

@supports (margin-bottom: clamp(0.625rem, 1.4819587629rem + -1.0309278351vw, 1.25rem)) {
    .info-footer__item {
        margin-bottom: clamp(0.625rem, 1.4819587629rem + -1.0309278351vw, 1.25rem);
    }
}

@supports not (margin-bottom: clamp(0.625rem, 1.4819587629rem + -1.0309278351vw, 1.25rem)) {
    .info-footer__item {
        margin-bottom: calc(1.25rem + -0.625 * (100vw - 22.5rem) / 60.625);
    }
}

@supports (font-size: clamp(1rem, 0.9536082474rem + 0.206185567vw, 1.125rem)) {
    .info-footer__item {
        font-size: clamp(1rem, 0.9536082474rem + 0.206185567vw, 1.125rem);
    }
}

@supports not (font-size: clamp(1rem, 0.9536082474rem + 0.206185567vw, 1.125rem)) {
    .info-footer__item {
        font-size: calc(1rem + 0.125 * (100vw - 22.5rem) / 60.625);
    }
}

.info-footer__item a {
    text-decoration: underline;
    -webkit-text-decoration-skip-ink: none;
    text-decoration-skip-ink: none;
    background: linear-gradient(315deg, #ef4444 10%, #f97316 90%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.info-footer__actions {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0.625rem;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

[data-animate=true] {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
    -webkit-transition: all 0.6s ease-out;
    transition: all 0.6s ease-out;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
}

[data-animate=true].reveal {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

.hero__title {
    font-weight: 600;
    line-height: 100%;
    text-transform: lowercase;
    text-align: center;
    color: var(--black);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    row-gap: 1.6875rem;
}

@supports (font-size: clamp(3.5rem, 2.3173076923rem + 5.2564102564vw, 8.625rem)) {
    .hero__title {
        font-size: clamp(3.5rem, 2.3173076923rem + 5.2564102564vw, 8.625rem);
    }
}

@supports not (font-size: clamp(3.5rem, 2.3173076923rem + 5.2564102564vw, 8.625rem)) {
    .hero__title {
        font-size: calc(3.5rem + 5.125 * (100vw - 22.5rem) / 97.5);
    }
}

@supports ((-moz-column-gap: clamp(0.3125rem, -0.9400773196rem + 5.5670103093vw, 3.6875rem)) or (column-gap: clamp(0.3125rem, -0.9400773196rem + 5.5670103093vw, 3.6875rem))) {
    .hero__title {
        -webkit-column-gap: clamp(0.3125rem, -0.9400773196rem + 5.5670103093vw, 3.6875rem);
        -moz-column-gap: clamp(0.3125rem, -0.9400773196rem + 5.5670103093vw, 3.6875rem);
        column-gap: clamp(0.3125rem, -0.9400773196rem + 5.5670103093vw, 3.6875rem);
    }
}

@supports not ((-moz-column-gap: clamp(0.3125rem, -0.9400773196rem + 5.5670103093vw, 3.6875rem)) or (column-gap: clamp(0.3125rem, -0.9400773196rem + 5.5670103093vw, 3.6875rem))) {
    .hero__title {
        -webkit-column-gap: calc(0.3125rem + 3.375 * (100vw - 22.5rem) / 60.625);
        -moz-column-gap: calc(0.3125rem + 3.375 * (100vw - 22.5rem) / 60.625);
        column-gap: calc(0.3125rem + 3.375 * (100vw - 22.5rem) / 60.625);
    }
}

.hero__title span {
    /* display: inline-block; */
}

.hero__title span img {
    width: -webkit-fill-available;
}

.hero__title span span {
    font-weight: 400;
}

.hero__title span:nth-of-type(1) {
    width: 100%;
}

.hero__title span:nth-of-type(3) {
    max-height: 120px;
}

@supports (max-width: clamp(20rem, 18.3298969072rem + 7.4226804124vw, 24.5rem)) {
    .hero__title span:nth-of-type(3) {
        max-width: clamp(20rem, 18.3298969072rem + 7.4226804124vw, 24.5rem);
    }
}

@supports not (max-width: clamp(20rem, 18.3298969072rem + 7.4226804124vw, 24.5rem)) {
    .hero__title span:nth-of-type(3) {
        max-width: calc(20rem + 4.5 * (100vw - 22.5rem) / 60.625);
    }
}

.hero.hero--error {
    font-weight: 600;
    line-height: 100%;
    text-transform: lowercase;
    text-align: center;
    color: var(--black);
    position: relative;
}

.hero.hero--error .hero__title::before {
    content: "";
    background: var(--background);
    background-size: contain;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0.2;
}

.hero.hero--error .hero__title {
    position: relative;
    row-gap: 0;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

@supports (padding-top: clamp(1.25rem, -0.7680412371rem + 8.9690721649vw, 6.6875rem)) {
    .hero.hero--error .hero__title {
        padding-top: clamp(1.25rem, -0.7680412371rem + 8.9690721649vw, 6.6875rem);
    }
}

@supports not (padding-top: clamp(1.25rem, -0.7680412371rem + 8.9690721649vw, 6.6875rem)) {
    .hero.hero--error .hero__title {
        padding-top: calc(1.25rem + 5.4375 * (100vw - 22.5rem) / 60.625);
    }
}

@supports (padding-bottom: clamp(3.75rem, 0.3402061856rem + 15.1546391753vw, 12.9375rem)) {
    .hero.hero--error .hero__title {
        padding-bottom: clamp(3.75rem, 0.3402061856rem + 15.1546391753vw, 12.9375rem);
    }
}

@supports not (padding-bottom: clamp(3.75rem, 0.3402061856rem + 15.1546391753vw, 12.9375rem)) {
    .hero.hero--error .hero__title {
        padding-bottom: calc(3.75rem + 9.1875 * (100vw - 22.5rem) / 60.625);
    }
}

@supports (font-size: clamp(2.75rem, 1.2190721649rem + 6.8041237113vw, 6.875rem)) {
    .hero.hero--error .hero__title {
        font-size: clamp(2.75rem, 1.2190721649rem + 6.8041237113vw, 6.875rem);
    }
}

@supports not (font-size: clamp(2.75rem, 1.2190721649rem + 6.8041237113vw, 6.875rem)) {
    .hero.hero--error .hero__title {
        font-size: calc(2.75rem + 4.125 * (100vw - 22.5rem) / 60.625);
    }
}

@supports ((-moz-column-gap: clamp(0.3125rem, -0.0818298969rem + 1.7525773196vw, 1.375rem)) or (column-gap: clamp(0.3125rem, -0.0818298969rem + 1.7525773196vw, 1.375rem))) {
    .hero.hero--error .hero__title {
        -webkit-column-gap: clamp(0.3125rem, -0.0818298969rem + 1.7525773196vw, 1.375rem);
        -moz-column-gap: clamp(0.3125rem, -0.0818298969rem + 1.7525773196vw, 1.375rem);
        column-gap: clamp(0.3125rem, -0.0818298969rem + 1.7525773196vw, 1.375rem);
    }
}

@supports not ((-moz-column-gap: clamp(0.3125rem, -0.0818298969rem + 1.7525773196vw, 1.375rem)) or (column-gap: clamp(0.3125rem, -0.0818298969rem + 1.7525773196vw, 1.375rem))) {
    .hero.hero--error .hero__title {
        -webkit-column-gap: calc(0.3125rem + 1.0625 * (100vw - 22.5rem) / 60.625);
        -moz-column-gap: calc(0.3125rem + 1.0625 * (100vw - 22.5rem) / 60.625);
        column-gap: calc(0.3125rem + 1.0625 * (100vw - 22.5rem) / 60.625);
    }
}
.hero__button{
	width: 100%;
}
.hero.hero--error .hero__title span:nth-of-type(3) {
    max-width: none;
    max-height: none;
}

.hero.hero--error .hero__button{
	flex-basis: auto;
  margin-top: 1.875rem;
}

.button {
    cursor: pointer;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-basis: 370px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
	flex-direction: row-reverse;
    font-weight: 600;
    line-height: 100%;
    text-align: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: var(--white);
}

@supports (font-size: clamp(1rem, 0.9072164948rem + 0.412371134vw, 1.25rem)) {
    .button {
        font-size: clamp(1rem, 0.9072164948rem + 0.412371134vw, 1.25rem);
    }
}

@supports not (font-size: clamp(1rem, 0.9072164948rem + 0.412371134vw, 1.25rem)) {
    .button {
        font-size: calc(1rem + 0.25 * (100vw - 22.5rem) / 60.625);
    }
}

.button span {
    transition: all .6s ease 0s;
    position: relative;
    z-index: 3;
    display: inline-block;
    border-radius: 6.25rem;
    padding: 0.875rem 0.875rem 1rem;
    -ms-flex-preferred-size: 23.125rem;
    flex-basis: 23.125rem;
    background: -webkit-gradient(linear, left top, left bottom, from(var(--gradient)));
    background: linear-gradient(var(--gradient));
    flex-basis: 270px;
}

.button::after {
    position: relative;
    z-index: 2;
    -webkit-transition: all .6s ease 0s;
	left: 0;
    transition: all .6s ease 0s;
    content: url(../assets/img/icon/arrow.svg);
    padding: 0.875rem 0.8125rem;
    background: -webkit-gradient(linear, left top, left bottom, from(var(--gradient)));
    background: linear-gradient(var(--gradient));
    border-radius: 6.25rem;
}

@supports (margin-top: clamp( 3.75rem , 2.3582474227rem  +  6.1855670103vw , 7.5rem )) {

    .problem,
    .about,
    .review {
        margin-top: clamp( 3.75rem , 2.3582474227rem  +  6.1855670103vw , 7.5rem );
    }
}

@supports (margin-bottom: clamp( 3.75rem , 2.3582474227rem  +  6.1855670103vw , 7.5rem )) {
    .solution {
        margin-bottom: clamp( 3.75rem , 2.3582474227rem  +  6.1855670103vw , 7.5rem );
    }
}

@supports not (margin-top: clamp( 3.75rem , 2.3582474227rem  +  6.1855670103vw , 7.5rem )) {

    .problem,
    .about,
    .review {
        margin-top: calc(3.75rem + 3.75 * (100vw - 22.5rem) / 60.625);
    }
}

@supports (margin-bottom: clamp( 3.75rem , 2.3582474227rem  +  6.1855670103vw , 7.5rem )) {

    .problem,
    .about,
    .review {
        margin-bottom: clamp( 3.75rem , 2.3582474227rem  +  6.1855670103vw , 7.5rem );
    }
}

@supports not (margin-bottom: clamp( 3.75rem , 2.3582474227rem  +  6.1855670103vw , 7.5rem )) {

    .problem,
    .about,
    .review {
        margin-bottom: calc(3.75rem + 3.75 * (100vw - 22.5rem) / 60.625);
    }
}

.problem__body,
.about__body,
.review__body {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr);
    grid-template-columns: repeat(6, 1fr);
    gap: 1.25rem;
}

@supports (margin-top: clamp(1.875rem, 1.1791237113rem + 3.0927835052vw, 3.75rem)) {

    .problem__body,
    .about__body,
    .review__body {
        margin-top: clamp(1.875rem, 1.1791237113rem + 3.0927835052vw, 3.75rem);
    }
}

@supports not (margin-top: clamp(1.875rem, 1.1791237113rem + 3.0927835052vw, 3.75rem)) {

    .problem__body,
    .about__body,
    .review__body {
        margin-top: calc(1.875rem + 1.875 * (100vw - 22.5rem) / 60.625);
    }
}

.problem__text,
.about__text,
.review__text {
    font-family: var(--font-family);
    font-weight: 600;
    line-height: 100%;
    text-align: center;
    color: var(--black);
}

@supports (margin-top: clamp(1.875rem, 1.6430412371rem + 1.0309278351vw, 2.5rem)) {

    .problem__text,
    .about__text,
    .review__text {
        margin-top: clamp(1.875rem, 1.6430412371rem + 1.0309278351vw, 2.5rem);
    }
}

@supports not (margin-top: clamp(1.875rem, 1.6430412371rem + 1.0309278351vw, 2.5rem)) {

    .problem__text,
    .about__text,
    .review__text {
        margin-top: calc(1.875rem + 0.625 * (100vw - 22.5rem) / 60.625);
    }
}

@supports (font-size: clamp(1.25rem, 1.1572164948rem + 0.412371134vw, 1.5rem)) {

    .problem__text,
    .about__text,
    .review__text {
        font-size: clamp(1.25rem, 1.1572164948rem + 0.412371134vw, 1.5rem);
    }
}

@supports not (font-size: clamp(1.25rem, 1.1572164948rem + 0.412371134vw, 1.5rem)) {

    .problem__text,
    .about__text,
    .review__text {
        font-size: calc(1.25rem + 0.25 * (100vw - 22.5rem) / 60.625);
    }
}

@supports (margin-top: clamp(1.875rem, 1.6430412371rem + 1.0309278351vw, 2.5rem)) {

    .problem__button,
    .about__button,
    .review__button {
        margin-top: clamp(1.875rem, 1.6430412371rem + 1.0309278351vw, 2.5rem);
    }
}

@supports not (margin-top: clamp(1.875rem, 1.6430412371rem + 1.0309278351vw, 2.5rem)) {

    .problem__button,
    .about__button,
    .review__button {
        margin-top: calc(1.875rem + 0.625 * (100vw - 22.5rem) / 60.625);
    }
}

.problem__item:nth-child(1),
.problem__item:nth-child(2),
.problem__item:nth-child(3),
.about__item:nth-child(1),
.about__item:nth-child(2),
.about__item:nth-child(3),
.review__item:nth-child(1),
.review__item:nth-child(2),
.review__item:nth-child(3) {
    -ms-grid-column-span: 2;
    grid-column: span 2;
}

.problem__item:nth-child(4),
.problem__item:nth-child(5),
.about__item:nth-child(4),
.about__item:nth-child(5),
.review__item:nth-child(4),
.review__item:nth-child(5) {
    -ms-grid-column-span: 3;
    grid-column: span 3;
}

.problem__top,
.about__top,
.review__top {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr);
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.problem__bottom,
.about__bottom,
.review__bottom {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr);
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-top: 1.25rem;
}

.problem__item,
.about__item,
.review__item {
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    width: 100%;
    border-radius: 1rem;
    background: var(--white);
    cursor: pointer;
}

@supports (padding: clamp(1rem, 0.675257732rem + 1.4432989691vw, 1.875rem)) {

    .problem__item,
    .about__item,
    .review__item {
        padding: clamp(1rem, 0.675257732rem + 1.4432989691vw, 1.875rem);
    }
}

@supports not (padding: clamp(1rem, 0.675257732rem + 1.4432989691vw, 1.875rem)) {

    .problem__item,
    .about__item,
    .review__item {
        padding: calc(1rem + 0.875 * (100vw - 22.5rem) / 60.625);
    }
}

@supports (padding-bottom: clamp(2rem, 1.3505154639rem + 2.8865979381vw, 3.75rem)) {

    .problem__item,
    .about__item,
    .review__item {
        padding-bottom: clamp(2rem, 1.3505154639rem + 2.8865979381vw, 3.75rem);
    }
}

@supports not (padding-bottom: clamp(2rem, 1.3505154639rem + 2.8865979381vw, 3.75rem)) {

    .problem__item,
    .about__item,
    .review__item {
        padding-bottom: calc(2rem + 1.75 * (100vw - 22.5rem) / 60.625);
    }
}

.problem__item-icon,
.about__item-icon,
.review__item-icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 12px;
    background: linear-gradient(315deg, rgba(239, 68, 68, 0.1) 10%, rgba(249, 115, 22, 0.1) 90%);
    width: 100%;
    height: 100%;
}

@supports (width: clamp(2.875rem, 2.7822164948rem + 0.412371134vw, 3.125rem)) {

    .problem__item-icon,
    .about__item-icon,
    .review__item-icon {
        width: clamp(2.875rem, 2.7822164948rem + 0.412371134vw, 3.125rem);
    }
}

@supports not (width: clamp(2.875rem, 2.7822164948rem + 0.412371134vw, 3.125rem)) {

    .problem__item-icon,
    .about__item-icon,
    .review__item-icon {
        width: calc(2.875rem + 0.25 * (100vw - 22.5rem) / 60.625);
    }
}

@supports (height: clamp(2.875rem, 2.7822164948rem + 0.412371134vw, 3.125rem)) {

    .problem__item-icon,
    .about__item-icon,
    .review__item-icon {
        height: clamp(2.875rem, 2.7822164948rem + 0.412371134vw, 3.125rem);
    }
}

@supports not (height: clamp(2.875rem, 2.7822164948rem + 0.412371134vw, 3.125rem)) {

    .problem__item-icon,
    .about__item-icon,
    .review__item-icon {
        height: calc(2.875rem + 0.25 * (100vw - 22.5rem) / 60.625);
    }
}

.problem__item-title,
.about__item-title,
.review__item-title {
    font-weight: 600;
}

@supports (padding-top: clamp(0.625rem, 0.3930412371rem + 1.0309278351vw, 1.25rem)) {

    .problem__item-title,
    .about__item-title,
    .review__item-title {
        padding-top: clamp(0.625rem, 0.3930412371rem + 1.0309278351vw, 1.25rem);
    }
}

@supports not (padding-top: clamp(0.625rem, 0.3930412371rem + 1.0309278351vw, 1.25rem)) {

    .problem__item-title,
    .about__item-title,
    .review__item-title {
        padding-top: calc(0.625rem + 0.625 * (100vw - 22.5rem) / 60.625);
    }
}

@supports (font-size: clamp(1.25rem, 1.1572164948rem + 0.412371134vw, 1.5rem)) {

    .problem__item-title,
    .about__item-title,
    .review__item-title {
        font-size: clamp(1.25rem, 1.1572164948rem + 0.412371134vw, 1.5rem);
    }
}

@supports not (font-size: clamp(1.25rem, 1.1572164948rem + 0.412371134vw, 1.5rem)) {

    .problem__item-title,
    .about__item-title,
    .review__item-title {
        font-size: calc(1.25rem + 0.25 * (100vw - 22.5rem) / 60.625);
    }
}

.problem__item-text,
.about__item-text,
.review__item-text {
    line-height: 130%;
}

@supports (font-size: clamp(1rem, 0.9072164948rem + 0.412371134vw, 1.25rem)) {

    .problem__item-text,
    .about__item-text,
    .review__item-text {
        font-size: clamp(1rem, 0.9072164948rem + 0.412371134vw, 1.25rem);
    }
}

@supports not (font-size: clamp(1rem, 0.9072164948rem + 0.412371134vw, 1.25rem)) {

    .problem__item-text,
    .about__item-text,
    .review__item-text {
        font-size: calc(1rem + 0.25 * (100vw - 22.5rem) / 60.625);
    }
}

@supports (padding-top: clamp(0.375rem, 0.2822164948rem + 0.412371134vw, 0.625rem)) {

    .problem__item-text,
    .about__item-text,
    .review__item-text {
        padding-top: clamp(0.375rem, 0.2822164948rem + 0.412371134vw, 0.625rem);
    }
}

@supports not (padding-top: clamp(0.375rem, 0.2822164948rem + 0.412371134vw, 0.625rem)) {

    .problem__item-text,
    .about__item-text,
    .review__item-text {
        padding-top: calc(0.375rem + 0.25 * (100vw - 22.5rem) / 60.625);
    }
}

.problem__item-text cite,
.about__item-text cite,
.review__item-text cite {
    display: inline-block;
    font-weight: 500;
    font-style: normal;
}

@supports (font-size: clamp(1.25rem, 1.1572164948rem + 0.412371134vw, 1.5rem)) {

    .problem__item-text cite,
    .about__item-text cite,
    .review__item-text cite {
        font-size: clamp(1.25rem, 1.1572164948rem + 0.412371134vw, 1.5rem);
    }
}

@supports not (font-size: clamp(1.25rem, 1.1572164948rem + 0.412371134vw, 1.5rem)) {

    .problem__item-text cite,
    .about__item-text cite,
    .review__item-text cite {
        font-size: calc(1.25rem + 0.25 * (100vw - 22.5rem) / 60.625);
    }
}

@supports (margin-top: clamp(0.625rem, 0.300257732rem + 1.4432989691vw, 1.5rem)) {

    .problem__item-text cite,
    .about__item-text cite,
    .review__item-text cite {
        margin-top: clamp(0.625rem, 0.300257732rem + 1.4432989691vw, 1.5rem);
    }
}

@supports not (margin-top: clamp(0.625rem, 0.300257732rem + 1.4432989691vw, 1.5rem)) {

    .problem__item-text cite,
    .about__item-text cite,
    .review__item-text cite {
        margin-top: calc(0.625rem + 0.875 * (100vw - 22.5rem) / 60.625);
    }
}

.problem__item-text cite span,
.about__item-text cite span,
.review__item-text cite span {
    font-weight: 400;
    display: inline-block;
    color: var(--grey-02);
}

@supports (font-size: clamp(1rem, 0.9072164948rem + 0.412371134vw, 1.25rem)) {

    .problem__item-text cite span,
    .about__item-text cite span,
    .review__item-text cite span {
        font-size: clamp(1rem, 0.9072164948rem + 0.412371134vw, 1.25rem);
    }
}

@supports not (font-size: clamp(1rem, 0.9072164948rem + 0.412371134vw, 1.25rem)) {

    .problem__item-text cite span,
    .about__item-text cite span,
    .review__item-text cite span {
        font-size: calc(1rem + 0.25 * (100vw - 22.5rem) / 60.625);
    }
}

.review__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

@supports (padding: clamp(1rem, 0.675257732rem + 1.4432989691vw, 1.875rem)) {
    .review__item {
        padding: clamp(1rem, 0.675257732rem + 1.4432989691vw, 1.875rem);
    }
}

@supports not (padding: clamp(1rem, 0.675257732rem + 1.4432989691vw, 1.875rem)) {
    .review__item {
        padding: calc(1rem + 0.875 * (100vw - 22.5rem) / 60.625);
    }
}

.review__item-text {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.title {
    font-weight: 600;
    line-height: 100%;
    text-align: center;
}

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

@supports not (font-size: clamp(2rem, 1.4432989691rem + 2.4742268041vw, 3.5rem)) {
    .title {
        font-size: calc(2rem + 1.5 * (100vw - 22.5rem) / 60.625);
    }
}

.subtitle {
    line-height: 130%;
    text-align: center;
    color: var(--grey-02);
    margin: 0 auto;
    max-width: 51.25rem;
}

@supports (font-size: clamp(1rem, 0.9072164948rem + 0.412371134vw, 1.25rem)) {
    .subtitle {
        font-size: clamp(1rem, 0.9072164948rem + 0.412371134vw, 1.25rem);
    }
}

@supports not (font-size: clamp(1rem, 0.9072164948rem + 0.412371134vw, 1.25rem)) {
    .subtitle {
        font-size: calc(1rem + 0.25 * (100vw - 22.5rem) / 60.625);
    }
}

@supports (margin-top: clamp(0.625rem, 0.3930412371rem + 1.0309278351vw, 1.25rem)) {
    .subtitle {
        margin-top: clamp(0.625rem, 0.3930412371rem + 1.0309278351vw, 1.25rem);
    }
}

@supports not (margin-top: clamp(0.625rem, 0.3930412371rem + 1.0309278351vw, 1.25rem)) {
    .subtitle {
        margin-top: calc(0.625rem + 0.625 * (100vw - 22.5rem) / 60.625);
    }
}

.solution {
    color: var(--white);
}

@supports (margin-top: clamp( 3.75rem , 2.3582474227rem  +  6.1855670103vw , 7.5rem )) {
    .solution {
        margin-top: clamp(3.75rem, 2.3582474227rem + 6.1855670103vw, 7.5rem);
    }
}

@supports not (margin-top: clamp(3.75rem, 2.3582474227rem + 6.1855670103vw, 7.5rem)) {
    .solution {
        margin-top: calc(3.75rem + 3.75 * (100vw - 22.5rem) / 60.625);
    }
}

@supports (margin-bottom: clamp(3.75rem, 2.3582474227rem + 6.1855670103vw, 7.5rem)) {
    .solution {
        margin-bottom: clamp(3.75rem, 2.3582474227rem + 6.1855670103vw, 7.5rem);
    }
}

@supports not (margin-bottom: clamp(3.75rem, 2.3582474227rem + 6.1855670103vw, 7.5rem)) {
    .solution {
        margin-bottom: calc(3.75rem + 3.75 * (100vw - 22.5rem) / 60.625);
    }
}

.solution__container {
    background: var(--black);
}

@supports (border-radius: clamp(1.25rem, 0.7860824742rem + 2.0618556701vw, 2.5rem)) {
    .solution__container {
        border-radius: clamp(1.25rem, 0.7860824742rem + 2.0618556701vw, 2.5rem);
    }
}

@supports not (border-radius: clamp(1.25rem, 0.7860824742rem + 2.0618556701vw, 2.5rem)) {
    .solution__container {
        border-radius: calc(1.25rem + 1.25 * (100vw - 22.5rem) / 60.625);
    }
}

@supports (padding: clamp(3.75rem, 2.8221649485rem + 4.1237113402vw, 6.25rem)) {
    .solution__body {
        padding: clamp(3.75rem, 2.8221649485rem + 4.1237113402vw, 6.25rem);
    }
}

@supports not (padding: clamp(3.75rem, 2.8221649485rem + 4.1237113402vw, 6.25rem)) {
    .solution__body {
        padding: calc(3.75rem + 2.5 * (100vw - 22.5rem) / 60.625);
    }
}

@supports (padding-top: clamp(3.75rem, 2.3582474227rem + 6.1855670103vw, 7.5rem)) {
    .solution__body {
        padding-top: clamp(3.75rem, 2.3582474227rem + 6.1855670103vw, 7.5rem);
    }
}

@supports not (padding-top: clamp(3.75rem, 2.3582474227rem + 6.1855670103vw, 7.5rem)) {
    .solution__body {
        padding-top: calc(3.75rem + 3.75 * (100vw - 22.5rem) / 60.625);
    }
}

@supports (padding-bottom: clamp(3.75rem, 2.3582474227rem + 6.1855670103vw, 7.5rem)) {
    .solution__body {
        padding-bottom: clamp(3.75rem, 2.3582474227rem + 6.1855670103vw, 7.5rem);
    }
}

@supports not (padding-bottom: clamp(3.75rem, 2.3582474227rem + 6.1855670103vw, 7.5rem)) {
    .solution__body {
        padding-bottom: calc(3.75rem + 3.75 * (100vw - 22.5rem) / 60.625);
    }
}

@supports (margin-top: clamp(1.875rem, 1.6430412371rem + 1.0309278351vw, 2.5rem)) {
    .solution__simple-bot {
        margin-top: clamp(1.875rem, 1.6430412371rem + 1.0309278351vw, 2.5rem);
    }
}

@supports not (margin-top: clamp(1.875rem, 1.6430412371rem + 1.0309278351vw, 2.5rem)) {
    .solution__simple-bot {
        margin-top: calc(1.875rem + 0.625 * (100vw - 22.5rem) / 60.625);
    }
}

.solution__pro-bot {
    margin-top: 1.25rem;
}

.solution__text {
    font-weight: 600;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
}

@supports (margin-top: clamp(1.875rem, 1.6430412371rem + 1.0309278351vw, 2.5rem)) {
    .solution__text {
        margin-top: clamp(1.875rem, 1.6430412371rem + 1.0309278351vw, 2.5rem);
    }
}

@supports not (margin-top: clamp(1.875rem, 1.6430412371rem + 1.0309278351vw, 2.5rem)) {
    .solution__text {
        margin-top: calc(1.875rem + 0.625 * (100vw - 22.5rem) / 60.625);
    }
}

@supports (font-size: clamp(1.25rem, 1.1572164948rem + 0.412371134vw, 1.5rem)) {
    .solution__text {
        font-size: clamp(1.25rem, 1.1572164948rem + 0.412371134vw, 1.5rem);
    }
}

@supports not (font-size: clamp(1.25rem, 1.1572164948rem + 0.412371134vw, 1.5rem)) {
    .solution__text {
        font-size: calc(1.25rem + 0.25 * (100vw - 22.5rem) / 60.625);
    }
}

@supports (margin-top: clamp(1.875rem, 1.6430412371rem + 1.0309278351vw, 2.5rem)) {
    .solution__button-wrapper {
        margin-top: clamp(1.875rem, 1.6430412371rem + 1.0309278351vw, 2.5rem);
    }
}

@supports not (margin-top: clamp(1.875rem, 1.6430412371rem + 1.0309278351vw, 2.5rem)) {
    .solution__button-wrapper {
        margin-top: calc(1.875rem + 0.625 * (100vw - 22.5rem) / 60.625);
    }
}

.simple-bot,
.pro-bot {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 30% auto;
    grid-template-columns: 30% auto;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@supports (gap: clamp(1.25rem, 0.7860824742rem + 2.0618556701vw, 2.5rem)) {

    .simple-bot,
    .pro-bot {
        gap: clamp(1.25rem, 0.7860824742rem + 2.0618556701vw, 2.5rem);
    }
}

@supports not (gap: clamp(1.25rem, 0.7860824742rem + 2.0618556701vw, 2.5rem)) {

    .simple-bot,
    .pro-bot {
        gap: calc(1.25rem + 1.25 * (100vw - 22.5rem) / 60.625);
    }
}

.simple-bot__title,
.pro-bot__title {
    font-weight: 600;
    background: -webkit-gradient(linear, left top, left bottom, from(var(--gradient)));
    background: linear-gradient(var(--gradient));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@supports (font-size: clamp(1.75rem, 1.5644329897rem + 0.824742268vw, 2.25rem)) {

    .simple-bot__title,
    .pro-bot__title {
        font-size: clamp(1.75rem, 1.5644329897rem + 0.824742268vw, 2.25rem);
    }
}

@supports not (font-size: clamp(1.75rem, 1.5644329897rem + 0.824742268vw, 2.25rem)) {

    .simple-bot__title,
    .pro-bot__title {
        font-size: calc(1.75rem + 0.5 * (100vw - 22.5rem) / 60.625);
    }
}

.simple-bot__text,
.pro-bot__text {
    line-height: 130%;
    color: rgba(255, 255, 255, 0.8);
}

@supports (font-size: clamp(1rem, 0.9072164948rem + 0.412371134vw, 1.25rem)) {

    .simple-bot__text,
    .pro-bot__text {
        font-size: clamp(1rem, 0.9072164948rem + 0.412371134vw, 1.25rem);
    }
}

@supports not (font-size: clamp(1rem, 0.9072164948rem + 0.412371134vw, 1.25rem)) {

    .simple-bot__text,
    .pro-bot__text {
        font-size: calc(1rem + 0.25 * (100vw - 22.5rem) / 60.625);
    }
}

@supports (margin-top: clamp(0.375rem, 0.050257732rem + 1.4432989691vw, 1.25rem)) {

    .simple-bot__text,
    .pro-bot__text {
        margin-top: clamp(0.375rem, 0.050257732rem + 1.4432989691vw, 1.25rem);
    }
}

@supports not (margin-top: clamp(0.375rem, 0.050257732rem + 1.4432989691vw, 1.25rem)) {

    .simple-bot__text,
    .pro-bot__text {
        margin-top: calc(0.375rem + 0.875 * (100vw - 22.5rem) / 60.625);
    }
}

.simple-bot__body,
.pro-bot__body {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr);
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.item-simple-bot,
.item-pro-bot {
    cursor: pointer;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 1.25rem;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

@supports (padding: clamp(1rem, 0.675257732rem + 1.4432989691vw, 1.875rem)) {

    .item-simple-bot,
    .item-pro-bot {
        padding: clamp(1rem, 0.675257732rem + 1.4432989691vw, 1.875rem);
    }
}

@supports not (padding: clamp(1rem, 0.675257732rem + 1.4432989691vw, 1.875rem)) {

    .item-simple-bot,
    .item-pro-bot {
        padding: calc(1rem + 0.875 * (100vw - 22.5rem) / 60.625);
    }
}

@supports (padding-right: clamp(1rem, 0.9072164948rem + 0.412371134vw, 1.25rem)) {

    .item-simple-bot,
    .item-pro-bot {
        padding-right: clamp(1rem, 0.9072164948rem + 0.412371134vw, 1.25rem);
    }
}

@supports not (padding-right: clamp(1rem, 0.9072164948rem + 0.412371134vw, 1.25rem)) {

    .item-simple-bot,
    .item-pro-bot {
        padding-right: calc(1rem + 0.25 * (100vw - 22.5rem) / 60.625);
    }
}

@supports (padding-left: clamp(1rem, 0.9072164948rem + 0.412371134vw, 1.25rem)) {

    .item-simple-bot,
    .item-pro-bot {
        padding-left: clamp(1rem, 0.9072164948rem + 0.412371134vw, 1.25rem);
    }
}

@supports not (padding-left: clamp(1rem, 0.9072164948rem + 0.412371134vw, 1.25rem)) {

    .item-simple-bot,
    .item-pro-bot {
        padding-left: calc(1rem + 0.25 * (100vw - 22.5rem) / 60.625);
    }
}

@supports (gap: clamp(0.375rem, 0.050257732rem + 1.4432989691vw, 1.25rem)) {

    .item-simple-bot,
    .item-pro-bot {
        gap: clamp(0.375rem, 0.050257732rem + 1.4432989691vw, 1.25rem);
    }
}

@supports not (gap: clamp(0.375rem, 0.050257732rem + 1.4432989691vw, 1.25rem)) {

    .item-simple-bot,
    .item-pro-bot {
        gap: calc(0.375rem + 0.875 * (100vw - 22.5rem) / 60.625);
    }
}

.item-simple-bot__title,
.item-pro-bot__title {
    font-weight: 600;
}

@supports (font-size: clamp(1.25rem, 1.1572164948rem + 0.412371134vw, 1.5rem)) {

    .item-simple-bot__title,
    .item-pro-bot__title {
        font-size: clamp(1.25rem, 1.1572164948rem + 0.412371134vw, 1.5rem);
    }
}

@supports not (font-size: clamp(1.25rem, 1.1572164948rem + 0.412371134vw, 1.5rem)) {

    .item-simple-bot__title,
    .item-pro-bot__title {
        font-size: calc(1.25rem + 0.25 * (100vw - 22.5rem) / 60.625);
    }
}

.item-simple-bot__list,
.item-pro-bot__list {
    line-height: 130%;
    color: rgba(255, 255, 255, 0.8);
}

@supports (font-size: clamp(1rem, 0.9072164948rem + 0.412371134vw, 1.25rem)) {

    .item-simple-bot__list,
    .item-pro-bot__list {
        font-size: clamp(1rem, 0.9072164948rem + 0.412371134vw, 1.25rem);
    }
}

@supports not (font-size: clamp(1rem, 0.9072164948rem + 0.412371134vw, 1.25rem)) {

    .item-simple-bot__list,
    .item-pro-bot__list {
        font-size: calc(1rem + 0.25 * (100vw - 22.5rem) / 60.625);
    }
}

.item-simple-bot__line,
.item-pro-bot__line {
    height: 1px;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.8);
}

.item-simple-bot__text,
.item-pro-bot__text {
    font-weight: 600;
}

@supports (font-size: clamp(1rem, 0.9072164948rem + 0.412371134vw, 1.25rem)) {

    .item-simple-bot__text,
    .item-pro-bot__text {
        font-size: clamp(1rem, 0.9072164948rem + 0.412371134vw, 1.25rem);
    }
}

@supports not (font-size: clamp(1rem, 0.9072164948rem + 0.412371134vw, 1.25rem)) {

    .item-simple-bot__text,
    .item-pro-bot__text {
        font-size: calc(1rem + 0.25 * (100vw - 22.5rem) / 60.625);
    }
}

.schedule {
    color: var(--white);
}

@supports (margin-top: clamp(3.75rem, 2.3582474227rem + 6.1855670103vw, 7.5rem)) {
    .schedule {
        margin-top: clamp(3.75rem, 2.3582474227rem + 6.1855670103vw, 7.5rem);
    }
}

@supports not (margin-top: clamp(3.75rem, 2.3582474227rem + 6.1855670103vw, 7.5rem)) {
    .schedule {
        margin-top: calc(3.75rem + 3.75 * (100vw - 22.5rem) / 60.625);
    }
}

@supports (margin-bottom: clamp(3.75rem, 2.3582474227rem + 6.1855670103vw, 7.5rem)) {
    .schedule {
        margin-bottom: clamp(3.75rem, 2.3582474227rem + 6.1855670103vw, 7.5rem);
    }
}

@supports not (margin-bottom: clamp(3.75rem, 2.3582474227rem + 6.1855670103vw, 7.5rem)) {
    .schedule {
        margin-bottom: calc(3.75rem + 3.75 * (100vw - 22.5rem) / 60.625);
    }
}

.schedule__container {
    background: var(--black);
}

@supports (border-radius: clamp(1.25rem, 0.7860824742rem + 2.0618556701vw, 2.5rem)) {
    .schedule__container {
        border-radius: clamp(1.25rem, 0.7860824742rem + 2.0618556701vw, 2.5rem);
    }
}

@supports not (border-radius: clamp(1.25rem, 0.7860824742rem + 2.0618556701vw, 2.5rem)) {
    .schedule__container {
        border-radius: calc(1.25rem + 1.25 * (100vw - 22.5rem) / 60.625);
    }
}

@supports (padding: clamp(3.75rem, 2.8221649485rem + 4.1237113402vw, 6.25rem)) {
    .schedule__body {
        padding: clamp(3.75rem, 2.8221649485rem + 4.1237113402vw, 6.25rem);
    }
}

@supports not (padding: clamp(3.75rem, 2.8221649485rem + 4.1237113402vw, 6.25rem)) {
    .schedule__body {
        padding: calc(3.75rem + 2.5 * (100vw - 22.5rem) / 60.625);
    }
}

@supports (padding-top: clamp(3.75rem, 2.3582474227rem + 6.1855670103vw, 7.5rem)) {
    .schedule__body {
        padding-top: clamp(3.75rem, 2.3582474227rem + 6.1855670103vw, 7.5rem);
    }
}

@supports not (padding-top: clamp(3.75rem, 2.3582474227rem + 6.1855670103vw, 7.5rem)) {
    .schedule__body {
        padding-top: calc(3.75rem + 3.75 * (100vw - 22.5rem) / 60.625);
    }
}

@supports (padding-bottom: clamp(3.75rem, 2.3582474227rem + 6.1855670103vw, 7.5rem)) {
    .schedule__body {
        padding-bottom: clamp(3.75rem, 2.3582474227rem + 6.1855670103vw, 7.5rem);
    }
}

@supports not (padding-bottom: clamp(3.75rem, 2.3582474227rem + 6.1855670103vw, 7.5rem)) {
    .schedule__body {
        padding-bottom: calc(3.75rem + 3.75 * (100vw - 22.5rem) / 60.625);
    }
}

.schedule__line {
    position: absolute;
    z-index: 2;
    top: 0%;
    bottom: 8%;
    left: 33.6%;
    width: 3px;
    background-image: -webkit-gradient(linear, left bottom, left top, from(transparent), color-stop(50%, transparent), color-stop(50%, var(--black)), to(var(--black))), -webkit-gradient(linear, left top, left bottom, from(var(--gradient)));
    background-image: linear-gradient(0deg, transparent, transparent 50%, var(--black) 50%, var(--black) 100%), linear-gradient(var(--gradient));
    background-size: 12px 9px, 100% 28px;
}

.schedule__list {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
}

@supports (margin-top: clamp(1.875rem, 1.1791237113rem + 3.0927835052vw, 3.75rem)) {
    .schedule__list {
        margin-top: clamp(1.875rem, 1.1791237113rem + 3.0927835052vw, 3.75rem);
    }
}

@supports not (margin-top: clamp(1.875rem, 1.1791237113rem + 3.0927835052vw, 3.75rem)) {
    .schedule__list {
        margin-top: calc(1.875rem + 1.875 * (100vw - 22.5rem) / 60.625);
    }
}

.schedule__item {
    display: -ms-grid;
    display: grid;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    -ms-grid-columns: 30% auto auto;
    grid-template-columns: 30% auto auto;
}

@supports (gap: clamp(0.625rem, 0.2074742268rem + 1.8556701031vw, 1.75rem)) {
    .schedule__item {
        gap: clamp(0.625rem, 0.2074742268rem + 1.8556701031vw, 1.75rem);
    }
}

@supports not (gap: clamp(0.625rem, 0.2074742268rem + 1.8556701031vw, 1.75rem)) {
    .schedule__item {
        gap: calc(0.625rem + 1.125 * (100vw - 22.5rem) / 60.625);
    }
}

@supports (margin-top: clamp(1.25rem, 0.7860824742rem + 2.0618556701vw, 2.5rem)) {
    .schedule__item:not(:first-child) {
        margin-top: clamp(1.25rem, 0.7860824742rem + 2.0618556701vw, 2.5rem);
    }
}

@supports not (margin-top: clamp(1.25rem, 0.7860824742rem + 2.0618556701vw, 2.5rem)) {
    .schedule__item:not(:first-child) {
        margin-top: calc(1.25rem + 1.25 * (100vw - 22.5rem) / 60.625);
    }
}

.schedule__item-title {
    font-weight: 600;
}

@supports (font-size: clamp(1.25rem, 1.1572164948rem + 0.412371134vw, 1.5rem)) {
    .schedule__item-title {
        font-size: clamp(1.25rem, 1.1572164948rem + 0.412371134vw, 1.5rem);
    }
}

@supports not (font-size: clamp(1.25rem, 1.1572164948rem + 0.412371134vw, 1.5rem)) {
    .schedule__item-title {
        font-size: calc(1.25rem + 0.25 * (100vw - 22.5rem) / 60.625);
    }
}

.schedule__item-data {
    background: linear-gradient(315deg, #ef4444 10%, #f97316 90%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@supports (margin-top: clamp(0.375rem, 0.2822164948rem + 0.412371134vw, 0.625rem)) {
    .schedule__item-data {
        margin-top: clamp(0.375rem, 0.2822164948rem + 0.412371134vw, 0.625rem);
    }
}

@supports not (margin-top: clamp(0.375rem, 0.2822164948rem + 0.412371134vw, 0.625rem)) {
    .schedule__item-data {
        margin-top: calc(0.375rem + 0.25 * (100vw - 22.5rem) / 60.625);
    }
}

@supports (font-size: clamp(1rem, 0.9072164948rem + 0.412371134vw, 1.25rem)) {
    .schedule__item-data {
        font-size: clamp(1rem, 0.9072164948rem + 0.412371134vw, 1.25rem);
    }
}

@supports not (font-size: clamp(1rem, 0.9072164948rem + 0.412371134vw, 1.25rem)) {
    .schedule__item-data {
        font-size: calc(1rem + 0.25 * (100vw - 22.5rem) / 60.625);
    }
}

.schedule__point {
    position: relative;
    z-index: 3;
    border-radius: 24px;
    background-image: -webkit-gradient(linear, left top, left bottom, from(var(--gradient)));
    background-image: linear-gradient(var(--gradient));
    /* Fill the inside with white */
    background-origin: border-box;
    -webkit-box-shadow: inset 0 100vw var(--black);
    box-shadow: inset 0 100vw var(--black);
    /* A transparent border, so the very edge of the button shows through */
    border: 2px solid transparent;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

@supports (width: clamp(1.25rem, 1.1572164948rem + 0.412371134vw, 1.5rem)) {
    .schedule__point {
        width: clamp(1.25rem, 1.1572164948rem + 0.412371134vw, 1.5rem);
    }
}

@supports not (width: clamp(1.25rem, 1.1572164948rem + 0.412371134vw, 1.5rem)) {
    .schedule__point {
        width: calc(1.25rem + 0.25 * (100vw - 22.5rem) / 60.625);
    }
}

@supports (height: clamp(1.25rem, 1.1572164948rem + 0.412371134vw, 1.5rem)) {
    .schedule__point {
        height: clamp(1.25rem, 1.1572164948rem + 0.412371134vw, 1.5rem);
    }
}

@supports not (height: clamp(1.25rem, 1.1572164948rem + 0.412371134vw, 1.5rem)) {
    .schedule__point {
        height: calc(1.25rem + 0.25 * (100vw - 22.5rem) / 60.625);
    }
}

.schedule__point.active {
    -webkit-box-shadow: inset 0 100vw var(--gradient);
    box-shadow: inset 0 100vw var(--gradient);
}

.schedule__item-text {
    line-height: 130%;
    color: rgba(255, 255, 255, 0.8);
}

@supports (font-size: clamp(1rem, 0.9072164948rem + 0.412371134vw, 1.25rem)) {
    .schedule__item-text {
        font-size: clamp(1rem, 0.9072164948rem + 0.412371134vw, 1.25rem);
    }
}

@supports not (font-size: clamp(1rem, 0.9072164948rem + 0.412371134vw, 1.25rem)) {
    .schedule__item-text {
        font-size: calc(1rem + 0.25 * (100vw - 22.5rem) / 60.625);
    }
}

@supports (margin-top: clamp(3.75rem, 2.3582474227rem + 6.1855670103vw, 7.5rem)) {
    .rate {
        margin-top: clamp(3.75rem, 2.3582474227rem + 6.1855670103vw, 7.5rem);
    }
}

@supports not (margin-top: clamp(3.75rem, 2.3582474227rem + 6.1855670103vw, 7.5rem)) {
    .rate {
        margin-top: calc(3.75rem + 3.75 * (100vw - 22.5rem) / 60.625);
    }
}

@supports (margin-bottom: clamp(3.75rem, 2.3582474227rem + 6.1855670103vw, 7.5rem)) {
    .rate {
        margin-bottom: clamp(3.75rem, 2.3582474227rem + 6.1855670103vw, 7.5rem);
    }
}

@supports not (margin-bottom: clamp(3.75rem, 2.3582474227rem + 6.1855670103vw, 7.5rem)) {
    .rate {
        margin-bottom: calc(3.75rem + 3.75 * (100vw - 22.5rem) / 60.625);
    }
}

.rate__title svg {
    display: none;
}

.rate__list {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    -ms-grid-columns: (1fr);
    grid-template-columns: repeat(3, 1fr);
}

@supports (margin-top: clamp(1.875rem, 1.1791237113rem + 3.0927835052vw, 3.75rem)) {
    .rate__list {
        margin-top: clamp(1.875rem, 1.1791237113rem + 3.0927835052vw, 3.75rem);
    }
}

@supports not (margin-top: clamp(1.875rem, 1.1791237113rem + 3.0927835052vw, 3.75rem)) {
    .rate__list {
        margin-top: calc(1.875rem + 1.875 * (100vw - 22.5rem) / 60.625);
    }
}

@supports (gap: clamp(0.625rem, 0.3930412371rem + 1.0309278351vw, 1.25rem)) {
    .rate__list {
        gap: clamp(0.625rem, 0.3930412371rem + 1.0309278351vw, 1.25rem);
    }
}

@supports not (gap: clamp(0.625rem, 0.3930412371rem + 1.0309278351vw, 1.25rem)) {
    .rate__list {
        gap: calc(0.625rem + 0.625 * (100vw - 22.5rem) / 60.625);
    }
}

.card {
    border-radius: 1.25rem;
    background: var(--white);
    overflow: hidden;
}

.card.reverse .card__inner {
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
}

.card.reverse .card__back {
    position: relative;
}

.card.reverse .card__front {
    position: absolute;
}

.card__inner {
    position: relative;
    width: 100%;
    height: 100%;
    -webkit-transition: -webkit-transform 0.8s;
    transition: -webkit-transform 0.8s;
    transition: transform 0.8s;
    transition: transform 0.8s, -webkit-transform 0.8s;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

.card__front {
    background: var(--white);
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.card__img-ibg {
    aspect-ratio: 420/420;
}

.card__content{
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}


@supports (margin: clamp(1.25rem, 1.0180412371rem + 1.0309278351vw, 1.875rem)) {
    .card__content {
        margin: clamp(1.25rem, 1.0180412371rem + 1.0309278351vw, 1.875rem);
    }
}

@supports not (margin: clamp(1.25rem, 1.0180412371rem + 1.0309278351vw, 1.875rem)) {
    .card__content {
        margin: calc(1.25rem + 0.625 * (100vw - 22.5rem) / 60.625);
    }
}

.card__title {
    font-weight: 600;
}

@supports (font-size: clamp(1.25rem, 0.8788659794rem + 1.6494845361vw, 2.25rem)) {
    .card__title {
        font-size: clamp(1.25rem, 0.8788659794rem + 1.6494845361vw, 2.25rem);
    }
}

@supports not (font-size: clamp(1.25rem, 0.8788659794rem + 1.6494845361vw, 2.25rem)) {
    .card__title {
        font-size: calc(1.25rem + 1 * (100vw - 22.5rem) / 60.625);
    }
}

.card__text {
    line-height: 130%;
    color: var(--grey-02);
	flex: 1 1 auto;
}

@supports (font-size: clamp(1rem, 0.9072164948rem + 0.412371134vw, 1.25rem)) {
    .card__text {
        font-size: clamp(1rem, 0.9072164948rem + 0.412371134vw, 1.25rem);
    }
}

@supports not (font-size: clamp(1rem, 0.9072164948rem + 0.412371134vw, 1.25rem)) {
    .card__text {
        font-size: calc(1rem + 0.25 * (100vw - 22.5rem) / 60.625);
    }
}

@supports (margin-top: clamp(0.375rem, 0.050257732rem + 1.4432989691vw, 1.25rem)) {
    .card__text {
        margin-top: clamp(0.375rem, 0.050257732rem + 1.4432989691vw, 1.25rem);
    }
}

@supports not (margin-top: clamp(0.375rem, 0.050257732rem + 1.4432989691vw, 1.25rem)) {
    .card__text {
        margin-top: calc(0.375rem + 0.875 * (100vw - 22.5rem) / 60.625);
    }
}

.card__price {
    font-weight: 600;
    background: linear-gradient(315deg, #ef4444 10%, #f97316 90%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@supports (font-size: clamp(1.25rem, 0.7860824742rem + 2.0618556701vw, 2.5rem)) {
    .card__price {
        font-size: clamp(1.25rem, 0.7860824742rem + 2.0618556701vw, 2.5rem);
    }
}

@supports not (font-size: clamp(1.25rem, 0.7860824742rem + 2.0618556701vw, 2.5rem)) {
    .card__price {
        font-size: calc(1.25rem + 1.25 * (100vw - 22.5rem) / 60.625);
    }
}

@supports (margin-top: clamp(0.625rem, 0.1610824742rem + 2.0618556701vw, 1.875rem)) {
    .card__price {
        margin-top: clamp(0.625rem, 0.1610824742rem + 2.0618556701vw, 1.875rem);
    }
}

@supports not (margin-top: clamp(0.625rem, 0.1610824742rem + 2.0618556701vw, 1.875rem)) {
    .card__price {
        margin-top: calc(0.625rem + 1.25 * (100vw - 22.5rem) / 60.625);
    }
}

.card__button{
	flex-basis: auto;
	justify-content: flex-end;		
}

@supports (margin-top: clamp(0.625rem, 0.3930412371rem + 1.0309278351vw, 1.25rem)) {
    .card__button {
        margin-top: clamp(0.625rem, 0.3930412371rem + 1.0309278351vw, 1.25rem);
    }
}

@supports not (margin-top: clamp(0.625rem, 0.3930412371rem + 1.0309278351vw, 1.25rem)) {
    .card__button {
        margin-top: calc(0.625rem + 0.625 * (100vw - 22.5rem) / 60.625);
    }
}

.card__back {
    background: var(--white);
    position: absolute;
    z-index: 3;
    top: 0;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
}

@supports (padding: clamp(1.25rem, 1.0180412371rem + 1.0309278351vw, 1.875rem)) {
    .card__back {
        padding: clamp(1.25rem, 1.0180412371rem + 1.0309278351vw, 1.875rem);
    }
}

@supports not (padding: clamp(1.25rem, 1.0180412371rem + 1.0309278351vw, 1.875rem)) {
    .card__back {
        padding: calc(1.25rem + 0.625 * (100vw - 22.5rem) / 60.625);
    }
}

@supports (padding-bottom: clamp(1.25rem, 0.5077319588rem + 3.2989690722vw, 3.25rem)) {
    .card__back {
        padding-bottom: clamp(1.25rem, 0.5077319588rem + 3.2989690722vw, 3.25rem);
    }
}

@supports not (padding-bottom: clamp(1.25rem, 0.5077319588rem + 3.2989690722vw, 3.25rem)) {
    .card__back {
        padding-bottom: calc(1.25rem + 2 * (100vw - 22.5rem) / 60.625);
    }
}

@supports (padding-top: clamp(3.25rem, 3.25rem + 0vw, 3.25rem)) {
    .card__back {
        padding-top: clamp(3.25rem, 3.25rem + 0vw, 3.25rem);
    }
}

@supports not (padding-top: clamp(3.25rem, 3.25rem + 0vw, 3.25rem)) {
    .card__back {
        padding-top: calc(3.25rem + 0 * (100vw - 22.5rem) / 60.625);
    }
}

.card__cross {
    position: absolute;
    top: 0.625rem;
    right: 0.625rem;
    cursor: pointer;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

@supports (width: clamp(1.875rem, 1.4110824742rem + 2.0618556701vw, 3.125rem)) {
    .card__cross {
        width: clamp(1.875rem, 1.4110824742rem + 2.0618556701vw, 3.125rem);
    }
}

@supports not (width: clamp(1.875rem, 1.4110824742rem + 2.0618556701vw, 3.125rem)) {
    .card__cross {
        width: calc(1.875rem + 1.25 * (100vw - 22.5rem) / 60.625);
    }
}

@supports (margin-bottom: clamp(1.25rem, 1.0180412371rem + 1.0309278351vw, 1.875rem)) {
    .card__description:not(:last-child) {
        margin-bottom: clamp(1.25rem, 1.0180412371rem + 1.0309278351vw, 1.875rem);
    }
}

@supports not (margin-bottom: clamp(1.25rem, 1.0180412371rem + 1.0309278351vw, 1.875rem)) {
    .card__description:not(:last-child) {
        margin-bottom: calc(1.25rem + 0.625 * (100vw - 22.5rem) / 60.625);
    }
}

.card__description-title {
    margin-bottom: 0.625rem;
    font-weight: 600;
    color: var(--black);
}

@supports (font-size: clamp(1.25rem, 1.1572164948rem + 0.412371134vw, 1.5rem)) {
    .card__description-title {
        font-size: clamp(1.25rem, 1.1572164948rem + 0.412371134vw, 1.5rem);
    }
}

@supports not (font-size: clamp(1.25rem, 1.1572164948rem + 0.412371134vw, 1.5rem)) {
    .card__description-title {
        font-size: calc(1.25rem + 0.25 * (100vw - 22.5rem) / 60.625);
    }
}

.card__description-item {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: auto 1fr;
    grid-template-columns: auto 1fr;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
    gap: 4px;
    line-height: 130%;
}

.card__description-item:not(:last-child) {
    margin-bottom: 0.25rem;
}

@supports (font-size: clamp(1rem, 0.9072164948rem + 0.412371134vw, 1.25rem)) {
    .card__description-item {
        font-size: clamp(1rem, 0.9072164948rem + 0.412371134vw, 1.25rem);
    }
}

@supports not (font-size: clamp(1rem, 0.9072164948rem + 0.412371134vw, 1.25rem)) {
    .card__description-item {
        font-size: calc(1rem + 0.25 * (100vw - 22.5rem) / 60.625);
    }
}

.review__slider {
    height: auto;
}

.cooperation {
    color: var(--white);
}

@supports (margin-top: clamp(3.75rem, 2.3582474227rem + 6.1855670103vw, 7.5rem)) {
    .cooperation {
        margin-top: clamp(3.75rem, 2.3582474227rem + 6.1855670103vw, 7.5rem);
    }
}

@supports not (margin-top: clamp(3.75rem, 2.3582474227rem + 6.1855670103vw, 7.5rem)) {
    .cooperation {
        margin-top: calc(3.75rem + 3.75 * (100vw - 22.5rem) / 60.625);
    }
}

@supports (margin-bottom: clamp(3.75rem, 2.3582474227rem + 6.1855670103vw, 7.5rem)) {
    .cooperation {
        margin-bottom: clamp(3.75rem, 2.3582474227rem + 6.1855670103vw, 7.5rem);
    }
}

@supports not (margin-bottom: clamp(3.75rem, 2.3582474227rem + 6.1855670103vw, 7.5rem)) {
    .cooperation {
        margin-bottom: calc(3.75rem + 3.75 * (100vw - 22.5rem) / 60.625);
    }
}

.cooperation__subtitle a {
    text-decoration: underline;
    -webkit-text-decoration-skip-ink: none;
    text-decoration-skip-ink: none;
    background: linear-gradient(315deg, #ef4444 10%, #f97316 90%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cooperation__container {
    background: var(--black);
}

@supports (border-radius: clamp(1.25rem, 0.7860824742rem + 2.0618556701vw, 2.5rem)) {
    .cooperation__container {
        border-radius: clamp(1.25rem, 0.7860824742rem + 2.0618556701vw, 2.5rem);
    }
}

@supports not (border-radius: clamp(1.25rem, 0.7860824742rem + 2.0618556701vw, 2.5rem)) {
    .cooperation__container {
        border-radius: calc(1.25rem + 1.25 * (100vw - 22.5rem) / 60.625);
    }
}

@supports (padding: clamp(3.75rem, 2.5902061856rem + 5.1546391753vw, 6.875rem)) {
    .cooperation__body {
        padding: clamp(3.75rem, 2.5902061856rem + 5.1546391753vw, 6.875rem);
    }
}

@supports not (padding: clamp(3.75rem, 2.5902061856rem + 5.1546391753vw, 6.875rem)) {
    .cooperation__body {
        padding: calc(3.75rem + 3.125 * (100vw - 22.5rem) / 60.625);
    }
}

@supports (padding-top: clamp(3.75rem, 2.3582474227rem + 6.1855670103vw, 7.5rem)) {
    .cooperation__body {
        padding-top: clamp(3.75rem, 2.3582474227rem + 6.1855670103vw, 7.5rem);
    }
}

@supports not (padding-top: clamp(3.75rem, 2.3582474227rem + 6.1855670103vw, 7.5rem)) {
    .cooperation__body {
        padding-top: calc(3.75rem + 3.75 * (100vw - 22.5rem) / 60.625);
    }
}

@supports (padding-bottom: clamp(3.75rem, 2.3582474227rem + 6.1855670103vw, 7.5rem)) {
    .cooperation__body {
        padding-bottom: clamp(3.75rem, 2.3582474227rem + 6.1855670103vw, 7.5rem);
    }
}

@supports not (padding-bottom: clamp(3.75rem, 2.3582474227rem + 6.1855670103vw, 7.5rem)) {
    .cooperation__body {
        padding-bottom: calc(3.75rem + 3.75 * (100vw - 22.5rem) / 60.625);
    }
}



.cooperation__form .input {
    background-color: inherit;
    color: rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding-top: 0.25rem;
    padding-left: 0;
}

@supports (font-size: clamp(1rem, 0.9072164948rem + 0.412371134vw, 1.25rem)) {
    .cooperation__form .input {
        font-size: clamp(1rem, 0.9072164948rem + 0.412371134vw, 1.25rem);
    }
}

@supports not (font-size: clamp(1rem, 0.9072164948rem + 0.412371134vw, 1.25rem)) {
    .cooperation__form .input {
        font-size: calc(1rem + 0.25 * (100vw - 22.5rem) / 60.625);
    }
}

@supports (padding-bottom: clamp(1rem, 0.9072164948rem + 0.412371134vw, 1.25rem)) {
    .cooperation__form input {
        padding-bottom: clamp(1rem, 0.9072164948rem + 0.412371134vw, 1.25rem);
    }
}

@supports not (padding-bottom: clamp(1rem, 0.9072164948rem + 0.412371134vw, 1.25rem)) {
    .cooperation__form .input {
        padding-bottom: calc(1rem + 0.25 * (100vw - 22.5rem) / 60.625);
    }
}

.cooperation__form .input:focus {
    outline: none;
    -o-border-image: linear-gradient(315deg, #ef4444 10%, #f97316 90%) 0.7;
    border-image: linear-gradient(315deg, #ef4444 10%, #f97316 90%) 0.7;
    border-radius: 5px;
    /* this doesn't work */
    border-bottom-width: 1px;
    border-style: solid;
}

.cooperation__bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@supports (margin-top: clamp(1.875rem, 1.5270618557rem + 1.5463917526vw, 2.8125rem)) {
    .cooperation__bottom {
        margin-top: clamp(1.875rem, 1.5270618557rem + 1.5463917526vw, 2.8125rem);
    }
}

@supports not (margin-top: clamp(1.875rem, 1.5270618557rem + 1.5463917526vw, 2.8125rem)) {
    .cooperation__bottom {
        margin-top: calc(1.875rem + 0.9375 * (100vw - 22.5rem) / 60.625);
    }
}

@supports (gap: clamp(0.375rem, -0.4136597938rem + 3.5051546392vw, 2.5rem)) {
    .cooperation__bottom {
        gap: clamp(0.375rem, -0.4136597938rem + 3.5051546392vw, 2.5rem);
    }
}

@supports not (gap: clamp(0.375rem, -0.4136597938rem + 3.5051546392vw, 2.5rem)) {
    .cooperation__bottom {
        gap: calc(0.375rem + 2.125 * (100vw - 22.5rem) / 60.625);
    }
}

.cooperation__text {
    line-height: 130%;
    color: var(--white);
}

@supports (font-size: clamp(1rem, 0.9072164948rem + 0.412371134vw, 1.25rem)) {
    .cooperation__text {
        font-size: clamp(1rem, 0.9072164948rem + 0.412371134vw, 1.25rem);
    }
}

@supports not (font-size: clamp(1rem, 0.9072164948rem + 0.412371134vw, 1.25rem)) {
    .cooperation__text {
        font-size: calc(1rem + 0.25 * (100vw - 22.5rem) / 60.625);
    }
}

.cooperation__social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
}

.cooperation__social svg {
    cursor: pointer;
}

.form__block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1.25rem;
}

.form__button {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
}

.form__text {
    -ms-flex-preferred-size: 11.25rem;
    flex-basis: 11.25rem;
    font-size: 0.75rem;
    line-height: 130%;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
}















@supports (margin-top: clamp( 2.375rem , 1.335rem  +  5.2vw , 5.625rem )) {
  .blog-post {
    margin-top: clamp( 2.375rem , 1.335rem  +  5.2vw , 5.625rem );
  }
}

@supports not (margin-top: clamp( 2.375rem , 1.335rem  +  5.2vw , 5.625rem )) {
  .blog-post {
    margin-top: calc(2.375rem + 3.25*(100vw - 20rem)/62.5);
  }
}

@supports (margin-top: clamp( 3.75rem , 3.35rem  +  2vw , 5rem )) {
  .blog-post {
    margin-top: clamp( 3.75rem , 3.35rem  +  2vw , 5rem );
  }
}

@supports not (margin-top: clamp( 3.75rem , 3.35rem  +  2vw , 5rem )) {
  .blog-post {
    margin-top: calc(3.75rem + 1.25*(100vw - 20rem)/62.5);
  }
}

.blog-post__title {
  margin-bottom: 1.25rem;
  font-weight: 600;
  text-align: center;
}

@supports (font-size: clamp( 2.5rem , 2.18rem  +  1.6vw , 3.5rem )) {
  .blog-post__title {
    font-size: clamp( 2.5rem , 2.18rem  +  1.6vw , 3.5rem );
  }
}

@supports not (font-size: clamp( 2.5rem , 2.18rem  +  1.6vw , 3.5rem )) {
  .blog-post__title {
    font-size: calc(2.5rem + 1*(100vw - 20rem)/62.5);
  }
}

.blog-post__subtitle {
  color: #918581;
  text-align: center;
}

@supports (font-size: clamp( 1rem , 0.92rem  +  0.4vw , 1.25rem )) {
  .blog-post__subtitle {
    font-size: clamp( 1rem , 0.92rem  +  0.4vw , 1.25rem );
  }
}

@supports not (font-size: clamp( 1rem , 0.92rem  +  0.4vw , 1.25rem )) {
  .blog-post__subtitle {
    font-size: calc(1rem + 0.25*(100vw - 20rem)/62.5);
  }
}

@supports (margin-top: clamp( 2.5rem , 2.1rem  +  2vw , 3.75rem )) {
  .blog-post__body {
    margin-top: clamp( 2.5rem , 2.1rem  +  2vw , 3.75rem );
  }
}

@supports not (margin-top: clamp( 2.5rem , 2.1rem  +  2vw , 3.75rem )) {
  .blog-post__body {
    margin-top: calc(2.5rem + 1.25*(100vw - 20rem)/62.5);
  }
}

.blog-post__body--grid {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(420px, 1fr));
  gap: 1.25rem;

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

.categories-filter {
  margin-top: 40px;
  text-align: center;
}

.categories-filter__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@supports (gap: clamp( 0.625rem , 0.425rem  +  1vw , 1.25rem )) {
  .categories-filter__list {
    gap: clamp( 0.625rem , 0.425rem  +  1vw , 1.25rem );
  }
}

@supports not (gap: clamp( 0.625rem , 0.425rem  +  1vw , 1.25rem )) {
  .categories-filter__list {
    gap: calc(0.625rem + 0.625*(100vw - 20rem)/62.5);
  }
}

.categories-filter__link {
  display: inline-block;
  padding: 10px 20px 12px;
  border-radius: 6.25rem;
  color: #110700;
  background-color: #fff;
  -webkit-transition: background-color .3s ease,color .3s ease,border-color .3s ease;
  transition: background-color .3s ease,color .3s ease,border-color .3s ease;
  cursor: pointer;
  font-size: 14px;
}

.categories-filter__link:hover {
  background: linear-gradient(315deg, #ef4444 10%, #f97316 90%);
  color: #fff;
}

.categories-filter__link.active {
  background: linear-gradient(315deg, #ef4444 10%, #f97316 90%);
  color: #fff;
}

.card-post {
  background-color: #fff;
  border-radius: 1rem;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 100%;
}

.card-post {
    position: relative;
    transition: all 0.3s ease;
}

.card-post:hover {
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.card-post:hover::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(315deg, #ef4444 10%, #f97316 90%);
}

.card__link {
	padding: 1.875rem;
}

.card-post__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.card-post__image-ibg {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background-size: cover;
  background-position: center;
}

.card-post__image-ibg img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  -o-object-fit: cover;
     object-fit: cover;
}

.card-post__content {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.card-post__title {
  margin-top: 1.25rem;
  margin-bottom: 0.625rem;
  line-height: 1.3;
  color: #110700;
}

@supports (font-size: clamp( 1.25rem , 1.17rem  +  0.4vw , 1.5rem )) {
  .card-post__title {
    font-size: clamp( 1.25rem , 1.17rem  +  0.4vw , 1.5rem );
  }
}

@supports not (font-size: clamp( 1.25rem , 1.17rem  +  0.4vw , 1.5rem )) {
  .card-post__title {
    font-size: calc(1.25rem + 0.25*(100vw - 20rem)/62.5);
  }
}

.card-post__text {
  color: #918581;
  margin-bottom: 1.25rem;
  line-height: 130%;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;  
	display: -webkit-box;
   -webkit-line-clamp: 3;
           line-clamp: 3;
   -webkit-box-orient: vertical;
    overflow: hidden;
	
	@media (max-width:$mobile){      
	   -webkit-line-clamp: 4;
			   line-clamp: 4;
	}
}

@supports (font-size: clamp( 1rem , 0.92rem  +  0.4vw , 1.25rem )) {
  .card-post__text {
    font-size: clamp( 1rem , 0.92rem  +  0.4vw , 1.25rem );
  }
}

@supports not (font-size: clamp( 1rem , 0.92rem  +  0.4vw , 1.25rem )) {
  .card-post__text {
    font-size: calc(1rem + 0.25*(100vw - 20rem)/62.5);
  }
}

@supports (margin-top: clamp( 2.5rem , 2.1rem  +  2vw , 3.75rem )) {
  .posts-pagination-wrapper {
    margin-top: clamp( 2.5rem , 2.1rem  +  2vw , 3.75rem );
  }
}

@supports not (margin-top: clamp( 2.5rem , 2.1rem  +  2vw , 3.75rem )) {
  .posts-pagination-wrapper {
    margin-top: calc(2.5rem + 1.25*(100vw - 20rem)/62.5);
  }
}

.posts-pagination-wrapper ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.25rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.posts-pagination-wrapper a,
.posts-pagination-wrapper span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 1.25rem;
  background-color: #fff;
  font-size: 1.125rem;
}

.posts-pagination-wrapper span {
  background-color: #e5e5e5;
}

.posts-pagination-wrapper a:hover,
.posts-pagination-wrapper span:hover {
  background-color: #e5e5e5;
  cursor: pointer;
}

.post-tags-section .tags-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.375rem;
}

.post-tags-section .tag-item {
  list-style: none;
}

.post-tags-section .tag-item:before {
  content: "";
}

.post-tags-section .tag-link {
  display: inline-block;
  padding: 0.75rem 1.25rem;
  background-color: #fff;
  color: #918581;
  border-radius: 1rem;
  font-size: .9em;
  text-decoration: none;
  -webkit-transition: background-color .2s ease,color .2s ease;
  transition: background-color .2s ease,color .2s ease;
}

.post-tags-section .tag-link:hover {
  background: linear-gradient(315deg, #ef4444 10%, #f97316 90%);
  color: #fff;
}

.block-product__action {
  margin-top: 3.125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3.125rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@supports (margin-bottom: clamp( 3.75rem , 3.35rem  +  2vw , 5rem )) {
  .template-block {
    margin-bottom: clamp( 3.75rem , 3.35rem  +  2vw , 5rem );
  }
}

@supports not (margin-bottom: clamp( 3.75rem , 3.35rem  +  2vw , 5rem )) {
  .template-block {
    margin-bottom: calc(3.75rem + 1.25*(100vw - 20rem)/62.5);
  }
}

.template-block ul.social-share-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.5625rem;
}

.share-item a:hover {
  -webkit-transform: translateY(-2px);
      -ms-transform: translateY(-2px);
          transform: translateY(-2px);
}


#backToTopBtn {    
	position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    border: none;
    outline: none;
    background: white;
    color: white;
    cursor: pointer;
    padding: 6px;
    border-radius: 10px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    width: 50px;
    height: 50px;
    border-radius: 100%;
    transform: rotate(90deg);
}

#backToTopBtn:hover {
	background: linear-gradient(315deg, #ef4444 10%, #f97316 90%);
}   
#backToTopBtn:hover path{
	fill: white;
}
#backToTopBtn.show {
  opacity: 1;
  visibility: visible;
}





















@media (min-width: 29.99875em) {
    .rate__list {
        display: -ms-grid;
        display: grid;
        -webkit-box-align: stretch;
        -ms-flex-align: stretch;
        align-items: stretch;
    }
}

@media (min-width: 60em) {
    .hero__title span:nth-of-type(4) {
        margin-top: 1.6875rem;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        max-width: 26.25rem;
        text-transform: none;
        font-size: 1.25rem;
        line-height: 130%;
        text-align: center;
        color: var(--grey-02);
        width: 40%;
    }

    @supports (gap: clamp(1.875rem, 1.6430412371rem + 1.0309278351vw, 2.5rem)) {
        .hero__title span:nth-of-type(4) {
            gap: clamp(1.875rem, 1.6430412371rem + 1.0309278351vw, 2.5rem);
        }
    }

    @supports not (gap: clamp(1.875rem, 1.6430412371rem + 1.0309278351vw, 2.5rem)) {
        .hero__title span:nth-of-type(4) {
            gap: calc(1.875rem + 0.625 * (100vw - 22.5rem) / 60.625);
        }
    }

    .hero.hero--error .hero__title span:nth-of-type(4) {
        color: var(--black);
    }

    @supports (max-width: clamp(12.5rem, 9.7164948454rem + 12.3711340206vw, 20rem)) {
        .hero.hero--error .hero__title span:nth-of-type(4) {
            max-width: clamp(12.5rem, 9.7164948454rem + 12.3711340206vw, 20rem);
        }
    }

    @supports not (max-width: clamp(12.5rem, 9.7164948454rem + 12.3711340206vw, 20rem)) {
        .hero.hero--error .hero__title span:nth-of-type(4) {
            max-width: calc(12.5rem + 7.5 * (100vw - 22.5rem) / 60.625);
        }
    }
}

@media (max-width: 959.98px) {
    .menu__body {
        position: fixed;
        width: -webkit-fit-content;
        width: -moz-fit-content;
        width: fit-content;
        height: 100%;
        right: -100%;
        bottom: 0;
        z-index: 4;
        overflow: auto;
        padding: 5.125rem 1.25rem 1.25rem;
        background-color: var(--white);
    }

    @supports (width: clamp(2.1%rem, 7.7902061856%rem + -6.8453608247%vw, 6.25%rem)) {
        .menu__body {
            width: clamp(2.1%rem, 7.7902061856%rem + -6.8453608247%vw, 6.25%rem);
        }
    }

    @supports not (width: clamp(2.1%rem, 7.7902061856%rem + -6.8453608247%vw, 6.25%rem)) {
        .menu__body {
            width: calc(6.25%rem + -4.15% * (100vw - 22.5rem) / 60.625);
        }
    }

    .menu__body .menu__list {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 1.25rem;
    }

    .menu__body .menu__item {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .menu__body .menu__item:first-child {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 1.25rem;
    }
	
	.menu__body .menu__item.menu__action{
		flex-direction: row;		
	}

    .menu__body .menu__link {
        font-size: 1rem;
    }
}

@media (max-width: 40em) {

    .simple-bot__body,
    .pro-bot__body {
        -ms-grid-columns: auto;
        grid-template-columns: auto;
    }
}

@media (max-width: 68.75em) {
    .solution__body {
        padding-left: 0rem;
        padding-right: 0rem;
    }

    .schedule__body {
        padding-left: 0rem;
        padding-right: 0rem;
    }

    .cooperation__body {
        padding-left: 0rem;
        padding-right: 0rem;
    }
}

@media (max-width: 61.99875em) {
    .footer__container {
        padding: 5rem 1.4375rem;
    }

    @supports (gap: clamp(1.25rem, 0.7860824742rem + 2.0618556701vw, 2.5rem)) {
        .footer__container {
            gap: clamp(1.25rem, 0.7860824742rem + 2.0618556701vw, 2.5rem);
        }
    }

    @supports not (gap: clamp(1.25rem, 0.7860824742rem + 2.0618556701vw, 2.5rem)) {
        .footer__container {
            gap: calc(1.25rem + 1.25 * (100vw - 22.5rem) / 60.625);
        }
    }

    .simple-bot,
    .pro-bot {
        -ms-grid-columns: auto;
        grid-template-columns: auto;
    }
}

@media (max-width: 59.99875em) {
    .icon-menu {
        display: block;
        position: relative;
        cursor: pointer;
        z-index: 5;
        background: -webkit-gradient(linear, left top, left bottom, from(var(--gradient)));
        background: linear-gradient(var(--gradient));
        padding: 0.9375rem 0.75rem;
        border-radius: 12px;
    }

    .icon-menu__wrapper {
        position: relative;
        width: 1.125rem;
        height: 0.75rem;
    }

    .icon-menu__wrapper span,
    .icon-menu__wrapper::before,
    .icon-menu__wrapper::after {
        content: "";
        -webkit-transition: all 0.3s ease 0s;
        transition: all 0.3s ease 0s;
        right: 0;
        position: absolute;
        width: 100%;
        height: 0.125rem;
        border-radius: 50px;
        background-color: var(--white);
    }

    .icon-menu__wrapper::before {
        top: 0;
    }

    .icon-menu__wrapper::after {
        bottom: 0;
    }

    .icon-menu__wrapper span {
        top: calc(50% - 0.0625rem);
    }

    .menu-open .icon-menu__wrapper span {
        width: 0;
    }

    .menu-open .icon-menu__wrapper::before {
        top: calc(50% - 0.0625rem);
        -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }

    .menu-open .icon-menu__wrapper::after {
        bottom: calc(50% - 0.0625rem);
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
    }
}

@media (max-width: 59.9375em) {
	.header__menu{		
    	order: 1;
	}
	.header__action{
        flex-direction: column;
	}
    .hero__title {
        row-gap: 0.6875rem;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .hero__title span:nth-of-type(5) {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        gap: 1.25rem;
        text-transform: none;
        font-size: 1.25rem;
        line-height: 130%;
        text-align: center;
        color: var(--grey-02);
        width: 100%;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .hero__title span:nth-of-type(5) a {
        width: 100%;
    }

    .hero__title span:nth-of-type(5) span {
        max-width: 26.25rem;
    }
}

@media (max-width: 47.99875em) {
    .footer__container {
        -ms-grid-columns: (1fr);
        grid-template-columns: repeat(3, 1fr);
    }

    .footer__container .info-footer {
        -ms-grid-row: 2;
        -ms-grid-row-span: 1;
        -ms-grid-column: 1;
        -ms-grid-column-span: 3;
        grid-area: 2/1/3/4;
    }

    .footer__container .info-footer__top {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
        justify-content: space-evenly;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        gap: 0.625rem;
        margin-bottom: 1.25rem;
    }

    .footer__container .info-footer__bottom {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        gap: 2.5rem;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .footer__container .info-footer__item {
        margin-bottom: 0;
    }

    .hero__title span:nth-of-type(5) {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .problem__body,
    .about__body,
    .review__body {
        -ms-grid-columns: (1fr);
        grid-template-columns: repeat(4, 1fr);
    }

    .problem__item:nth-child(4),
    .about__item:nth-child(4),
    .review__item:nth-child(4) {
        -ms-grid-column-span: 2;
        grid-column: span 2;
    }

    .problem__item:nth-child(5),
    .about__item:nth-child(5),
    .review__item:nth-child(5) {
        -ms-grid-column-span: 4;
        grid-column: span 4;
    }

    .schedule__line {
        top: 0%;
        bottom: 15%;
        left: 9px;
    }

    .schedule__item {
        -ms-grid-columns: auto auto;
        grid-template-columns: auto auto;
    }

    .schedule__point {
        -ms-grid-row: 1;
        -ms-grid-row-span: 2;
        grid-row: 1/span 2;
    }

    .rate__list {
        -ms-grid-columns: (1fr);
        grid-template-columns: repeat(2, 1fr);
    }

    .rate__list .card:nth-child(3n) {
        -ms-grid-column-span: 2;
        grid-column: span 2;
    }

    .rate__list .card:nth-child(3n) .card__text {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
        flex: 1 1 auto;
    }

    .rate__list .card:nth-child(3n) .card__content {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }    

    .rate__list .card:nth-child(3n) .card__front {
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    }

    .rate__list .card:nth-child(3n) .card__img-ibg {
        aspect-ratio: auto;
    }
}

@media (max-width: 41.875em) {
    .rate__list {
        -ms-grid-columns: (1fr);
        grid-template-columns: repeat(2, 1fr);
    }

    .rate__list .card {
        -ms-grid-column-span: 2;
        grid-column: span 2;
    }

    .rate__list .card .card__text {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
        flex: 1 1 auto;
    }

    
	
	

    .rate__list .card .card__front {
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    }

    .rate__list .card .card__img-ibg {
        aspect-ratio: auto;
    }
}

@media (max-width: 33.75em) {
    .footer__container {
        -ms-grid-columns: (1fr);
        grid-template-columns: repeat(1, 1fr);
        justify-items: center;
        text-align: center;
    }

    .footer__container .info-footer {
        grid-area: auto;
    }

    .footer__container .info-footer__bottom {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 1.25rem;
    }
}

@media (max-width: 31.25em) {
    .rate__list {
        -ms-grid-columns: (1fr);
        grid-template-columns: repeat(2, 1fr);
    }

    .rate__list .card .card__inner .card__front {
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }

    .rate__list .card .card__inner .card__img-ibg {
        aspect-ratio: 420/420;
    }
}

@media (max-width: 29.99875em) {

    .problem__body,
    .about__body,
    .review__body {
        -ms-grid-columns: (1fr);
        grid-template-columns: repeat(2, 1fr);
    }

    .problem__item:nth-child(5),
    .about__item:nth-child(5),
    .review__item:nth-child(5) {
        -ms-grid-column-span: 2;
        grid-column: span 2;
    }

    .rate__title {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -ms-flex-pack: distribute;
        justify-content: space-around;
        gap: 0.625rem;
    }

    .rate__title svg {
        display: block;
    }

    .rate__title._spoller-active+.rate__list {
        display: -ms-grid;
        display: grid;
    }

    .cooperation__bottom {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        text-align: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
}

@media (max-width: 47.99875em) and (min-width: 29.99875em) {
    .form__text {
        -ms-grid-column-span: 2;
        grid-column: span 2;
    }
}

@media (any-hover: hover) {
    .menu__item:first-child .menu__link:hover {
        background: linear-gradient(315deg, #ef4444 10%, #f97316 90%);
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .menu__icon-link:hover svg path:first-child {
        fill: url(#paint0_linear_101_1749);
    }

    .menu__icon-link:hover svg path:nth-child(2) {
        fill: white;
    }

    .menu__icon-watsapp:hover svg path:first-child {
        fill: url(#paint0_linear_101_1749);
    }

    .menu__icon-watsapp:hover svg path:nth-child(2) {
        fill: white;
    }

    .menu__button:hover {
        background: linear-gradient(315deg, #ef4444 10%, #f97316 90%);
    }

    .menu__button:hover span {
        -webkit-text-fill-color: aliceblue;
        color: var(--white);
        background-clip: border-box;
    }

    .footer__menu-link:hover {
        background: linear-gradient(315deg, #ef4444 10%, #f97316 90%);
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .contact-footer__text:hover {
        cursor: pointer;
        background: linear-gradient(315deg, #ef4444 10%, #f97316 90%);
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .info-footer__item:hover {
        cursor: pointer;
        background: linear-gradient(315deg, #ef4444 10%, #f97316 90%);
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .info-footer__action:hover {
        scale: 1.1;
    }

    .button:hover {
/*         justify-content: flex-start; */
    }

    .button:hover:after {
        transform: translatex(270px);
    }

    .button:hover span {
        transform: translatex(-52px)
    }

    .problem__item:hover,
    .about__item:hover,
    .review__item:hover {
        background: -webkit-gradient(linear, left top, left bottom, from(var(--gradient)));
        background: linear-gradient(var(--gradient));
        color: var(--white);
    }

    .problem__item:hover div:first-child,
    .about__item:hover div:first-child,
    .review__item:hover div:first-child {
        background: var(--white);
    }

    .problem__item:hover span,
    .about__item:hover span,
    .review__item:hover span {
        color: var(--white);
    }

    .item-simple-bot:hover,
    .item-pro-bot:hover {
        background: -webkit-gradient(linear, left top, left bottom, from(var(--gradient)));
        background: linear-gradient(var(--gradient));
    }

    .item-simple-bot:hover svg path,
    .item-pro-bot:hover svg path {
        stroke: #fff;
    }

    .card__cross:hover svg rect {
        fill: url(#paint0_linear_197_870);
        fill-opacity: 1;
    }

    .card__cross:hover svg path {
        stroke: #fff;
    }

    .cooperation__social svg:hover {
        -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
        transform: scale(1.1);
    }
}

@media(max-width: 480px) {
    .review__body {
        gap: 0;
    }

    .swiper {
        overflow: hidden;
    }

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

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

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

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

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

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

}