/*Подключение шрифтов*/
@font-face {
    font-family: 'a_MonumentoTitulSl';
    src: url('../fonts/a_MonumentoTitulSl/a_MonumentoTitulSl.eot');
    src: url('../fonts/a_MonumentoTitulSl/a_MonumentoTitulSl.eot?#iefix') format('embedded-opentype'),
        url('../fonts/a_MonumentoTitulSl/a_MonumentoTitulSl.woff2') format('woff2'),
        url('../fonts/a_MonumentoTitulSl/a_MonumentoTitulSl.woff') format('woff'),
        url('../fonts/a_MonumentoTitulSl/a_MonumentoTitulSl.ttf') format('truetype'),
        url('../fonts/a_MonumentoTitulSl/a_MonumentoTitulSl.svg#a_MonumentoTitulSl') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Matricha';
    src: url('../fonts/Matricha/Matricha.eot');
    src: url('../fonts/Matricha/Matricha.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Matricha/Matricha.woff2') format('woff2'),
        url('../fonts/Matricha/Matricha.woff') format('woff'),
        url('../fonts/Matricha/Matricha.ttf') format('truetype'),
        url('../fonts/Matricha/Matricha.svg#Matricha') format('svg');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Nikoleta';
    src: url('../fonts/Nikoleta/Nikoleta.eot');
    src: url('../fonts/Nikoleta/Nikoleta.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Nikoleta/Nikoleta.woff2') format('woff2'),
        url('../fonts/Nikoleta/Nikoleta.woff') format('woff'),
        url('../fonts/Nikoleta/Nikoleta.ttf') format('truetype'),
        url('../fonts/Nikoleta/Nikoleta.svg#Nikoleta') format('svg');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
/*Обнуление*/
*,
*::before,
*::after {
    padding: 0;
	margin: 0;
	border: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

ul,
ol,
li {
    list-style: none;
}

img {
    vertical-align: top;
}

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

html {
    height: 100%;
    line-height: 1;
    background: #ffffff;
    font-family: 'Inter';
    scroll-behavior: smooth;
}
body {
    height: 100%;
    line-height: 1;
    background: #ffffff;
    font-family: 'Inter';
}
/*----------КОНТЕЙНЕРЫ----------*/
.wrapper {
    min-height: 100%;
    overflow: clip;
    display: flex;
    flex-direction: column;
}
._container {
    max-width: 1300px;
    padding: 0px 15px;
    margin: 0 auto;
    box-sizing: content-box;
}
/*----------HEADER----------*/
.header {
    position: fixed;
    width: 100%;
    left: 0;
    z-index: 50;
    background-color: #EBF037;
}
.header__container {
    position: relative;
    display: flex;
    height: 130px;
}
.header__logo {
    width: 130px;
    height: 130px;
    background: url(/img/header/logo.svg) no-repeat;
    margin: 15px 20px 15px 0px;
}
.header__column {
}
.header__burger-btn {
    display: none;
    position: relative;
    width: 40px;
    height: 40px;
    border: none;
    background-color: transparent;
    z-index: 2;
    margin: 20px 0px 0px 0px;
}
.header__burger-btn span {
    position: absolute;
    width: 30px;
    height: 3px;
    background-color: #000000;
    left: 5px;
    transition: transform .5s, opacity .5s, background-color .5s;
}
.header__burger-btn span:nth-child(1) {
    transform: translateY(-10px);
}
.header__burger-btn span:nth-child(3) {
    transform: translateY(10px);
}
.header.open .header__burger-btn span:nth-child(1) {
    transform: translateY(0) rotate(45deg);
}
.header.open .header__burger-btn span:nth-child(2) {
    opacity: 0;
}
.header.open .header__burger-btn span:nth-child(3) {
    transform: translateY(0) rotate(-45deg);
}
.header__menu {
    margin: 45px 0px 0px 165px;
}
.menu {
}
.menu__list {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-wrap: wrap;
    min-height: 40px;
    background-color: #EBF037;
    background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' rx='10' ry='10' stroke='%238D9021FF' stroke-width='4' stroke-dasharray='3%2c 11' stroke-dashoffset='0' stroke-linecap='square'/%3e%3c/svg%3e");
    border-radius: 10px;
}
.menu__item {
    padding: 10px 10px;
}
.menu__item:not(:last-child) {
    margin: 0px 50px 0px 0px;
}
.menu__link {
    font-family: 'Nikoleta';
    font-size: 20px;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: 2px;
    color: #000000;
}
.menu__link:hover {
    color: #6E2BAC;
}
@media (max-width: 1220px) {
    .header__menu {
        margin: 45px 0px 0px 130px;
    }
    .menu__item:not(:last-child) {
        margin: 0px 25px 0px 0px;
    }
}
@media (max-width: 1075px) {
    .header__menu {
        margin: 25px 0px 0px 100px;
    }
    .menu__list {
        flex-wrap: nowrap;
    }
    .menu__item {
        flex: 0 1 20%;
        padding: 10px 10px;
    }
    .menu__item:not(:last-child) {
        margin: 0;
    }
}
@media (max-width: 880px) {
    .header__menu {
        margin: 25px 0px 0px 20px;
    }
}
@media (max-width: 660px) {
    .header__container {
        justify-content: space-between;
    }
}
@media (max-width: 660px) {
    .header__menu {
        margin: 25px 0px 0px 0px;
    }
    .header__logo {
        display: none;
    }
}
@media (max-width: 480px) {
    .header__container {
        display: flex;
        height: 90px;
    }
    .header__column {
        display: flex;
    }
    .header__logo {
        display: block;
        width: 130px;
        height: 130px;
        background: url(/img/header/480/logo.svg) no-repeat;
        margin: 15px 20px 15px 0px;
    }
    .header__burger-btn {
        display: block;
        margin-left: auto;
        margin-right: 0;
    }
    .header__menu {
        min-width: 0;
        max-width: 200px;
        position: absolute;
        top: 0;
        right: -215px;
        margin: 0;
        padding: 70px 20px 0px 0px;
        transition: transform .5s;
    }
    .menu__list {
        flex-wrap: wrap;
        text-align: right;
    }
    .menu__item {
        flex: 0 1 100%;
    }
    .header.open .header__menu {
        transform: translateX(-100%);
    }
}
/*----------PAGE----------*/
.page {
    flex: 1 1 auto;
}
.page__flow {
}
.page__functional {
}
.page__forwhome {
}
.page__work {
}
.page__clients {
}
.page__rates {
}
.page__automation {
}
/*----------FLOW----------*/
.flow {
    position: relative;
    background-color: #EBF037;
    padding: 275px 0px 75px 0px;
}
.flow__container {
}
.flow__body {
    position: relative;
    z-index: 1;
}
.flow__content {
    position: relative;
    z-index: 5;
    display: flex;
    justify-content: center;
    margin: 0px 0px 20px 0px;
}
.flow__column {
    display: flex;
    flex-direction: column;
    max-width: 807px;
}
.flow__image {
    width: 98.514%;
}
.image__flow {
    margin: 0px 0px 20px 0px;
}
.flow__title {
    font-family: 'JetBrains Mono';
    font-size: 48px;
    font-weight: 500;
    line-height: 131.25%;
    text-transform: uppercase;
    opacity: 0.8;
}
.title__flow {
    margin: 0px 0px 20px 0px;
}
.flow__subtitle {
    font-family: 'Bellota Text';
    font-size: 28px;
    font-weight: 700;
    line-height: 130%;
}
.flow__telega-image {
    margin: 0px 0px 0px 25px;
    width: 35.462%;
    min-height: 465px;
}
.flow__button {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0px 0px 0px 0px;
}
.flow__button-free {
    position: relative;
    border-radius: 100px;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 122.222%;
    padding: 15px 30px;
    transition: all .2s;
}
.flow__button-free:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.flow__button-free:active {
    transform: translateY(-1px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}
.flow__button-free-white {
    background-color: #6E2BAC;
    color: #ffffff;
}
.flow__button-free::after {
    content: "";
    display: inline-block;
    height: 100%;
    width: 100%;
    border-radius: 100px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: all .4s;
}
.flow__button-free-white::after {
    background-color: #6E2BAC;
}
.flow__button-free:hover::after {
    transform: scaleX(1.4) scaleY(1.6);
    opacity: 0;
}
.flow__button-free-animate {
    animation: moveInBottom 5s ease-out;
    animation-fill-mode: backwards;
}
@media (max-width: 1024px) {
    .flow {
        padding: 235px 0px 0px 0px;
    }
    .flow__content {
        margin: 0px 0px 90px 0px;
    }
    .flow__title {
        font-size: 36px;
    }
    .flow__subtitle {
        font-size: 24px;
    }
    .flow__telega-image {
        min-height: 0;
    }
    .flow__button {
        padding: 0px 0px 35px 0px;
    }
    .flow__button-free {
        border-radius: 10px;
        padding: 20px 15.5px;
    }
}
@media (max-width: 480px) {
    .flow {
        padding: 285px 0px 0px 0px;
    }
    .flow__body {
        background: url(/img/flow/480/02.png) 0 85%/100% no-repeat;
    }
    .flow__content {
        margin: 0px 0px 30px 0px;
    }
    .flow__telega-image {
        display: none;
    }
    .flow__column {
        display: flex;
        text-align: center;
    }
    .image__flow {
        margin: 0px 0px 30px 0px;
    }
    .title__flow {
        margin: 0px 0px 10px 0px;
    }
    .flow__button {
        padding: 0px 0px 245px 0px;
    }
    .flow__button-free {
        font-size: 16px;
        font-weight: 500;
        border-radius: 100px;
        padding: 10px;
    }
}
@media (max-width: 320px) {
    .flow__body {
        background: url(/img/flow/480/01.png) /100% no-repeat;
    }
    .flow__title {
        font-size: 20px;
    }
    .flow__subtitle {
        font-size: 14px;
    }
    .flow__button-free {
        font-size: 13px;
    }
    .flow__button {
        padding: 0px 0px 200px 0px;
    }
}
/*----------FUNCTIONAL---------*/
.functional {
    background-color: #ffffff;
    margin: 60px 0px 0px 0px;
    padding: 0px 0px 60px 0px;
}
.functional__container {
}
.functional__body {
}
.functional__row {
    display: flex;
}
.functional__row:not(:last-child) {
    margin: 0px 0px 40px 0px;
}
.functional__title {
    font-family: 'a_MonumentoTitulSl';
    font-size: 32px;
    font-weight: 400;
    line-height: 130%;
    color: #6E2BAC;
}
.title__functional {
    min-width: 21.154%;
}
.functional__text {
    font-size: 18px;
    font-weight: 400;
    line-height: 150%;
    text-align: left;
}
.text__functional {
    max-width: 965px;
    padding: 10px;
    margin: 0px 0px 0px 40px;
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 10px;
}
@media (max-width: 1310px) {
    .title__functional {
        min-width: 23.094%;
    }
    .functional__title {
        font-size: 26px;
    }
    .functional__text {
        font-size: 16px;
    }
}
@media (max-width: 990px) {
    /* .functional {
        padding: 0px 0px 60px 0px;
        margin: 0px 0px 20px 0px;
    } */
    .text__functional {
        margin: 0px 0px 0px 15px;
    }
    .title__functional {
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: left;
        margin: 0px 0px 15px 0px;
    }
}
@media (max-width: 650px) {
    .functional__row {
        flex-direction: column;
    }
    .functional__row:not(:last-child) {
        margin: 0px 0px 30px 0px;
    }
    .text__functional {
        margin: 0;
    }
}
@media (max-width: 480px) {
    .functional__row {
        flex-direction: column;
    }
    .functional__row:not(:last-child) {
        margin: 0px 0px 30px 0px;
    }
    .text__functional {
        margin: 0;
    }
}
@media (max-width: 320px) {
    .functional__title {
        font-size: 16px;
    }
    .functional__text {
        font-size: 14px;
    }
}
/*----------HEADER-BLOCK----------*/
.header-block {
    text-align: center;
}
.header-block__title {
    font-family: 'a_MonumentoTitulSl';
    font-size: 32px;
    font-weight: 400;
    color: #6E2BAC;
}
/*----------FORWHOME---------*/
.forwhome {
    position: relative;
    z-index: -1;
    background-color: #EBF037;
}
.forwhome__image {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
.forwhome__container {
}
.forwhome__body {
    position: relative;
    z-index: 5;
}
.forwhome__header {
    padding: 40px 0px;
}
.forwhome__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0px 0px 45px 0px;
}
.forwhome__row-one {
    display: flex;
}
.forwhome__column {
    flex: 0 1 33.333%;
    background-color: #ffffff;
    background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' rx='10' ry='10' stroke='%23000000FF' stroke-width='4' stroke-dasharray='3%2c 11' stroke-dashoffset='0' stroke-linecap='square'/%3e%3c/svg%3e");
    border-radius: 10px;
    max-width: 415px;
    min-height: 263px;
}
.forwhome__column:not(:last-child) {
    margin: 0px 15px 0px 0px;
}
.forwhome__items {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 40px 20px 30px 20px;
}
.forwhome__items > *:not(:last-child) {
    margin: 0px 0px 20px 0px;
}
.forwhome__items-content {
    flex: 1 1 auto;
}
.forwhome__items-content > *:not(:last-child) {
    margin: 0px 0px 20px 0px;
}
.forwhome__items-business {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 10px 20px 30px 20px;
}
.forwhome__items-business-content {
    flex: 1 1 auto;
}
.forwhome__img {
}
.forwhome__title {
    font-family: 'VT323';
    font-size: 90px;
    font-weight: 400;
    line-height: 93%;
    letter-spacing: 7%;
    text-align: left;
    opacity: 0.8;
}
.title-business {
    margin: 0px 0px 18px 0px;
}
.forwhome__text {
    font-size: 18px;
    font-weight: 400;
    line-height: 150%;
    text-align: left;
}
.forwhome__buttons {
    display: flex;
    align-items: center;
    text-align: left;
}
.forwhome__buttons-quality {
    display: flex;
    align-items: center;
    text-align: left;
}
.button-investors {
    border-radius: 100px;
    background-color: #6E2BAC;
    font-family: 'Bellota Text';
    font-size: 14px;
    font-weight: 400;
    line-height: 150%;
    color: #ffffff;
    padding: 2px 5px;
    margin: 0px 10px 10px 0px;
}
.button-creation {
    border-radius: 100px;
    background-color: #6E2BAC;
    font-family: 'Bellota Text';
    font-size: 14px;
    font-weight: 400;
    line-height: 150%;
    color: #ffffff;
    padding: 2px 5px;
    margin: 0px 10px 10px 0px;
}
.button-it {
    border-radius: 100px;
    background-color: #6E2BAC;
    font-family: 'Bellota Text';
    font-size: 14px;
    font-weight: 400;
    line-height: 150%;
    color: #ffffff;
    padding: 2px 8.5px;
    margin: 0px 10px 10px 0px;
}
.button-news {
    border-radius: 100px;
    background-color: #6E2BAC;
    font-family: 'Bellota Text';
    font-size: 14px;
    font-weight: 400;
    line-height: 150%;
    color: #ffffff;
    padding: 2px 5px;
    margin: 0px 10px 10px 0px;
}
.button-channels {
    border-radius: 100px;
    background-color: #6E2BAC;
    font-family: 'Bellota Text';
    font-size: 14px;
    font-weight: 400;
    line-height: 150%;
    color: #ffffff;
    padding: 2px 5px;
    margin: 0px 10px 10px 0px;
}
.button-blogs {
    border-radius: 100px;
    background-color: #6E2BAC;
    font-family: 'Bellota Text';
    font-size: 14px;
    font-weight: 400;
    line-height: 150%;
    color: #ffffff;
    padding: 2px 5px;
    margin: 0px 10px 10px 0px;
}
.button-business {
    border-radius: 100px;
    background-color: #6E2BAC;
    font-family: 'Bellota Text';
    font-size: 14px;
    font-weight: 400;
    line-height: 150%;
    color: #ffffff;
    padding: 2px 5px;
    margin: 0px 10px 10px 0px;
}
.forwhome__row-two {
    max-width: 1275px;
    min-height: 160px;
    background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' rx='10' ry='10' stroke='%23000000FF' stroke-width='4' stroke-dasharray='3%2c 11' stroke-dashoffset='0' stroke-linecap='square'/%3e%3c/svg%3e");
    border-radius: 10px;
    background-color: #ffffff;
    margin: 15px 0px 0px 0px;
}
.forwhome__items-quality {
    padding: 30px 20px 20px 20px;
}
.forwhome__items-quality-content {
    display: flex;
}
.forwhome__items-quality-content:not(:last-child) {
    margin: 0px 0px 20px 0px;
}
.forwhome__img-quality {
    margin: 0px 0px 0px 15px;
}
@media (max-width: 1024px) {
    .forwhome__text {
        font-size: 16px;
    }
}
@media (max-width: 900px) {
    .forwhome__buttons {
        flex-wrap: wrap;
    }
}
@media (max-width: 650px) {
    .forwhome__header {
        padding: 20px 0px;
    }
    .forwhome__row-one {
        flex-direction: column;
    }
    .forwhome__column {
        max-width: 100%;
        min-height: 140px;
    }
    .forwhome__column:not(:last-child) {
        margin: 0px 0px 15px 0px;
    }
    .forwhome__items {
        padding: 15px 10px;
    }
    .forwhome__items > *:not(:last-child) {
        margin: 0px 0px 10px 0px;
    }
    .forwhome__items-content > *:not(:last-child) {
        margin: 0px 0px 10px 0px;
    }
    .forwhome__items-business {
        padding: 15px 10px;
    }
    .forwhome__img {
        display: flex;
        justify-content: center;
    }
    .forwhome__img img {
        max-width: 50px;
    }
    .forwhome__title {
        font-size: 76px;
    }
    .title-business {
        margin: 0;
        text-align: center;
    }
    .text-business {
        margin: 0px 0px 10px 0px;
    }
    .forwhome__buttons {
        flex-direction: row;
        justify-content: center;
    }
    .forwhome__buttons > *:not(:last-child) {
        margin: 0px 10px 0px 0px;
    }
    .button-investors {
        margin: 0px 10px 0px 0px;
    }
    .button-creation {
        margin: 0px 10px 0px 0px;
    }
    .button-it {
        margin: 0px 10px 0px 0px;
    }
    .button-news {
        margin: 0px 10px 0px 0px;
    }
    .button-channels {
        margin: 0px 10px 0px 0px;
    }
    .button-blogs {
        margin: 0px 10px 0px 0px;
    }
    .button-business {
        margin: 0px 10px 0px 0px;
    }
    .forwhome__items-quality-content {
        flex-direction: column-reverse;
    }
    .forwhome__items-quality-content:not(:last-child) {
        margin: 0px 0px 10px 0px;
    }
    .forwhome__img-quality {
        display: flex;
        justify-content: center;
        margin: 0px 0px 10px 0px;
    }
    .forwhome__img-quality img {
        max-width: 50px;
    }
    .forwhome__items-quality {
        padding: 15px 10px;
    }
    .forwhome__buttons-quality {
        justify-content: center;
    }
    .header-block__title {
        font-size: 26px;
    }
}
@media (max-width: 320px) {
    .forwhome__header {
        padding: 15px 0px;
    }
    .header-block__title {
        font-size: 16px;
    }
    .forwhome__text {
        font-size: 14px;
    }
    .forwhome__img img {
        max-width: 40px;
    }
    .forwhome__title {
        font-size: 66px;
    }
    .forwhome__img-quality img {
        max-width: 40px;
    }
}
/*----------WORK---------*/
.work {
    position: relative;
    background-color: #ffffff;
    background: url(/img/work/work-footer.png) bottom/100% no-repeat;
}
.work__image {
    position: absolute;
    width: 100%;
    height: 64.271%;
    top: 155px;
    left: 0;
}
.work__container {
}
.work__body {
    position: relative;
    z-index: 5;
}
.work__header {
    padding: 30px 0px 0px 0px;
    margin: 0px 0px 40px 0px;
}
.work__content {
    margin: 0px 0px 45px 0px;
}
.work__column {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 985px;
    margin: 0 auto;
    background-color: #EBF037;
    background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' rx='10' ry='10' stroke='%23000000FF' stroke-width='4' stroke-dasharray='3%2c 11' stroke-dashoffset='0' stroke-linecap='square'/%3e%3c/svg%3e");
    border-radius: 10px;
}
.work__title {
    font-family: 'a_MonumentoTitulSl';
    font-size: 24px;
    font-weight: 400;
    color: #6E2BAC;
}
.title__work {
    margin: 10px 0px;
}
.work__text {
    font-size: 18px;
    font-weight: 400;
    line-height: 150%;
}
.text__work {
    margin: 0px 0px 25px 0px;
    padding: 0px 15px;
}
.work__img-arrow {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0px;
}
.work__row {
    position: relative;
    z-index: 5;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-wrap: wrap;
}
.work__phone {
    flex: 0 1 25%;
    margin: 0px 0px 40px 0px;
}
@media (max-width: 1250px) {
    .work__row {
        margin: 0;
    }
    .work__phone {
        flex: 0 1 50%;
    }
}
@media (max-width: 1024px) {
    .work__text {
        font-size: 16px;
    }
}
@media (max-width: 650px) {
    .work__header {
        padding: 20px 0px 0px 0px;
        margin: 0px 0px 20px 0px;
    }
}
@media (max-width: 480px) {
    .work__img-arrow {
        margin: 15px 0px;
    }
}
@media (max-width: 320px) {
    .work__header {
        padding: 15px 0px 0px 0px;
        margin: 0px 0px 15px 0px;
    }
    .work__img-arrow {
        margin: 10px 0px;
    }
    .work__title {
        font-size: 16px;
    }
    .work__text {
        font-size: 14px;
    }
}
/*----------CLIENTS---------*/
.clients {
    position: relative;
    background-color: #6E2BAC;
    margin: -1px 0px 0px 0px;
    padding: 0px 0px 55px 0px;
}
.clients__container {
}
.clients__header {
    margin: 0px 0px 40px 0px;
}
.header-block__title-clients {
    font-family: 'a_MonumentoTitulSl';
    font-size: 32px;
    font-weight: 400;
    line-height: 130%;
    color: #ffffff; 
}
.clients__body {
}
.clients__row {
    display: flex;
}
.clients__content {
    flex: 0 1 25%;
    padding: 0px 7.5px;
}
.clients__column {
    display: flex;
    flex-direction: column;
    height: 100%;
    background-color: rgba(147, 75, 216, 0.4);
    border-radius: 15px;
}
.clients__items {
    flex: 1 1 auto;
}
.clients__text {
    font-size: 18px;
    font-weight: 400;
    line-height: 150%;
    text-align: left;
    color: #ffffff;
}
.text__clients {
    min-height: 140px;
    padding: 15px;
}
.clients__icon {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px 0px 15px 0px;
}
@media (max-width: 1024px) {
    .clients__header {
        margin: 0px 0px 25px 0px;
    }
    .header-block__title-clients {
        font-size: 26px; 
    }
    .clients__body {
        padding: 0px 0px 25px 0px;
    }
    .clients__row {
        flex-wrap: wrap;
    }
    .clients__content {
        flex: 0 1 50%;
        padding: 7.5px 7.5px;
    }
    .clients__column {
        flex-direction: column-reverse;
    }
    .clients__items {
        flex: 1 1 auto;
    }
    .clients__text {
        font-size: 16px;
    }
    .text__clients {
        min-height: 100px;
    }
    .clients__icon {
        padding: 20px 0px 0px 0px;
    }
    .clients__icon img {
        width: 70px;
        height: 70px;
    }
}
@media (max-width: 505px) {
    .clients__header {
        margin: 0px 0px 20px 0px;
    }
    .header-block__title-clients {
        font-size: 24px; 
    }
    .clients__body {
        padding: 0px 0px 20px 0px;
    }
    .clients__content {
        flex: 0 1 100%;
        padding: 7.5px 0px;
    }
    .text__clients {
        min-height: 65px;
        padding: 10px;
    }
    .clients__icon {
        padding: 15px 0px 0px 0px;
    }
    .clients__icon img {
        width: 50px;
        height: 50px;
    }
}
@media (max-width: 320px) {
    .header-block__title-clients {
        font-size: 16px; 
    }
    .clients__text {
        font-size: 14px;
    }
    .clients__icon img {
        max-width: 30px;
        max-height: 30px;
    }
}
/*----------RATES---------*/
.rates {
    background-color: #EBF037;
    margin: 0px 0px 40px 0px;
}
.rates__container {
}
.rates__header {
    padding: 40px 0px 35px 0px;
}
.rates__body {
}
.rates__body-title {
    font-size: 18px;
    font-weight: 400;
    line-height: 150%;
    text-align: center;
}
.title-body__rates {
    padding: 0px 0px 35px 0px;
}
.rates__row {
    display: flex;
    justify-content: center;
    text-align: center;
    margin: 0px 0px 40px 0px;
}
.rates__content {
    flex: 0 1 25%;
    /* max-width: 23.847%; */
    min-height: 415px;
    /* filter: blur(3px); */
    transition: 0.5s;
}
/* .rates__content:hover {
    filter: blur(0);
    transform: scale(1.0); 
    cursor: pointer;
} */
.rates__column {
    min-height: 390px;
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 0px 19.5px;
    margin: 0px 7.5px;
}
.rates__title {
    font-family: 'Matricha';
    font-size: 40px;
    font-weight: 400;
    line-height: normal;
    text-align: center;
    color: #ffffff;
    text-transform: uppercase;
}
.title__rates {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px 0px 10px 0px;
}
.rates__function {
    filter: blur(4px);
}
.rates__function li::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: #000000;
    display: inline-block;
    margin: 0px 10px 2px 0px;
}
.rates__function-text {
    font-size: 18px;
    font-weight: 400;
    line-height: 150%;
    text-align: left;
}
.rates__prices {
    padding: 0px 0px 40px 0px;
    filter: blur(4px);
}
.rates__prices li::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: #000000;
    display: inline-block;
    margin: 0px 10px 2px 0px;
}
.rates__prices-text {
    font-size: 18px;
    font-weight: 400;
    line-height: 150%;
    text-align: left;
}
.rates__buttons {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: -25px auto;
    max-width: 155px;
    filter: blur(4px);
}
.rates__button {
    border-radius: 10px;
    background-color: #6E2BAC;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 150%;
    padding: 12px;
    transition: all .2s;
}
.rates__button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.rates__button:active {
    transform: translateY(-1px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}
.rates__button-white {
    background-color: #6E2BAC;
    color: #ffffff;
}
.rates__button::after {
    content: "";
    display: inline-block;
    height: 100%;
    width: 100%;
    border-radius: 10px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: all .4s;
}
.rates__button-white::after {
    background-color: #6E2BAC;
}
.rates__button:hover::after {
    transform: scaleX(1.4) scaleY(1.6);
    opacity: 0;
}
.rates__button-animate {
    animation: moveInBottom 5s ease-out;
    animation-fill-mode: backwards;
}
.rates__body-text {
    font-size: 18px;
    font-weight: 400;
    line-height: 150%;
    text-align: left;
}
.rates__body-text a {
    text-decoration: underline #6E2BAC;
    font-weight: 600;
}
.rates__body-text-link {
    color: #6E2BAC;
}
.rates__body-text-link:hover {
    color: #6E2BAC;
}
.text-body__ratex {
    padding: 0px 0px 40px 0px;
}
@media (max-width: 1200px) {
    .rates__title {
        font-size: 32px;
    }
}
@media (max-width: 1061px) {
    .rates__row {
        flex-wrap: wrap;
        margin: 0px 0px 20px 0px;
    }
    .rates__content {
        flex: 0 1 50%;
        max-width: none;
    }
    .rates__column {
        margin: 0px 7.5px;
    }
    .rates__content:nth-last-child(n + 1) {
        margin: 0px 0px 30px 0px;
    }
    .rates__column:hover {
        filter: blur(0);
        transform: none; 
        cursor: pointer;
    }
    .rates__body-title {
        font-size: 18px;
    }
}
@media (max-width: 535px) {
    .rates__content {
        flex: 0 1 100%;
    }
    .rates__content {
        max-width: 350px;
        min-height: 335px;
    }
    .rates__column {
        min-height: 310px;
    }
    .rates__function-text {
        font-size: 16px;
    }
    .rates__prices {
        padding: 0px 0px 10px 0px;
    }
    .rates__prices-text {
        font-size: 16px;
    }
    .rates__body-text {
        font-size: 16px;
    }
}
@media (max-width: 320px) {
    .rates__row {
        margin: 0;
    }
    .rates__header {
        padding: 20px 0px 10px 0px;
    }
    .rates__content:nth-last-child(n + 1) {
        margin: 0px 0px 30px 0px;
    }
    .title-body__rates {
        padding: 0px 0px 15px 0px;
    }
    .rates__body-title {
        font-size: 16px;
    }
    .rates__title {
        font-size: 24px;
    }
    .rates__function-text {
        font-size: 14px;
    }
    .rates__prices-text {
        font-size: 14px;
    }
    .rates__body-text {
        font-size: 12px;
    }
    .rates__body-text a {
        font-size: 14px;
    }
    .rates__button {
        font-size: 14px;
    }
    .text-body__ratex {
        padding: 0px 0px 15px 0px;
    }
}
/*----------AUTOMATION---------*/
.automation {
}
.automation__container {
}
.automation__body {
}
.automation__row {
    display: flex;
    margin: 0px 0px 65px 0px;
}
.automation__content {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.automation__column {
    width: 100%;
    background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' rx='10' ry='10' stroke='%23000000FF' stroke-width='4' stroke-dasharray='3%2c 11' stroke-dashoffset='0' stroke-linecap='square'/%3e%3c/svg%3e");
    border-radius: 10px;
    background-color: #EBF037;
}
.automation__title {
    font-family: 'a_MonumentoTitulSl';
    font-size: 24px;
    font-weight: 400;
    color: #6E2BAC;
    text-align: center;
}
.title__automation {
    margin: 10px 0px;
}
.automation__text {
    font-size: 18px;
    font-weight: 400;
    line-height: 150%;
    text-align: center;
}
.automation__text-block-free {
    font-size: 18px;
    font-weight: 400;
    line-height: 150%;
    text-align: left;
}
.automation__text {
    margin: 0px 0px 10px 0px;
    padding: 0px 15px;
}
.automation__img-arrow {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0px;
}
.automation__telegram-img {
    margin: 0px 0px 0px 175px;
}
.automation__subtitle {
    font-family: 'Matricha';
    font-size: 20px;
    line-height: 150%;
    text-align: left;
    text-transform: uppercase;
}
.subtitle__automation {
    margin: 0px 0px 50px 0px;
}
.automation__button {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;  
} 
.automation__button-support {
    position: relative;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 122.222%;
    padding: 20px 40px;
    transition: all .2s;
    background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' rx='10' ry='10' stroke='%23000000FF' stroke-width='4' stroke-dasharray='3%2c 11' stroke-dashoffset='0' stroke-linecap='square'/%3e%3c/svg%3e");
}
.automation__button-support:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.automation__button-support:active {
    transform: translateY(-1px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}
.automation__button-support-white {
    background-color: #EBF037;
    color: #6E2BAC;
}
.automation__button-support::after {
    position: absolute;
    content: "";
    display: inline-block;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: all .4s;
}
.automation__button-support-white::after {
    background-color: #EBF037;
}
.automation__button-support:hover::after {
    transform: scaleX(1.4) scaleY(1.6);
    opacity: 0;
}
.automation__button-support-animate {
    animation: moveInBottom 5s ease-out;
    animation-fill-mode: backwards;
}
@media (max-width: 1061px) {
    .automation__telegram-img {
        margin: 0px 0px 0px 131.25px;
    }
}
@media (max-width: 1024px) {
    .automation__telegram-img {
        margin: 0px 0px 0px 87.75px;
    }
    .automation__text {
        font-size: 16px;
    }
    .automation__button-support {
        padding: 15px 30px;
    }
}
@media (max-width: 768px) {
    .automation__telegram-img {
        margin: 0px 0px 0px 23.75px;
    }
}
@media (max-width: 650px) {
    .automation__row {
        flex-direction: column-reverse;
        margin: 0px 0px 40px 0px;
    }
    .automation__telegram-img {
        display: flex;
        justify-content: center;
        margin: 0px 0px 40px;
    }
    .automation__subtitle {
        font-size: 19px;
    }
    .subtitle__automation {
        margin: 0px 0px 50px 0px;
    }
}
@media (max-width: 320px) {
    .automation__row {
        flex-direction: row;
    }
    .automation__telegram-img {
        display: none;
    }
    .automation__title {
        font-size: 16px;
    }
    .automation__text {
        font-size: 14px;
    }
    .automation__subtitle {
        font-size: 14px;
    }
    .subtitle__automation {
        margin: 0px 0px 35px 0px;
    }
    .automation__button-support {
        padding: 10px 20px;
    }
}
/*----------FOOTER---------*/
.footer {
    height: 395px;
    background: url(/img/footer/footer-image.png) bottom/100% 395px no-repeat;
}
.footer__container {
}
.footer__body {
    height: 395px;
    background: url(/img/footer/logo.png) 0px 215px no-repeat;
}
.footer__logo {
    /* max-width: 365px;
    min-height: 135px; */
    /* margin: 215px 0px 0px 0px; */
}
.footer__logo img {
    width: 100%;
    height: 100%;
}
@media (max-width: 1024px) {
    .footer {
        height: 265px;
        background: url(/img/footer/1024/footer-image.png) bottom/100% 265px  no-repeat;
    }
    .footer__body {
        height: 265px;
        background: url(/img/footer/logo.png) 0px 120px no-repeat;
    }
}
@media (max-width: 480px) {
    .footer {
        height: 220px;
        background: url(/img/footer/320/footer-image.png) bottom/100% 220px  no-repeat;
    }
    .footer__body {
        height: 265px;
        background: url(/img/footer/320/logo.png) 50% 120px no-repeat;
    }
}
/*----------id---------*/
#a:before {
    display: block;
    content: " ";
    margin-top: -190px;
    height: 190px;
    visibility: hidden;
}
@media (max-width: 480px) {
    #a:before {
        display: block;
        content: " ";
        margin-top: -150px;
        height: 150px;
        visibility: hidden;
    }
}
#b:before {
    display: block;
    content: " ";
    margin-top: -125px;
    height: 125px;
    visibility: hidden;
}
@media (max-width: 480px) {
    #b:before {
        display: block;
        content: " ";
        margin-top: -85px;
        height: 85px;
        visibility: hidden;
    }
}
#c:before {
    display: block;
    content: " ";
    margin-top: -125px;
    height: 125px;
    visibility: hidden;
}
@media (max-width: 480px) {
    #c:before {
        display: block;
        content: " ";
        margin-top: -85px;
        height: 85px;
        visibility: hidden;
    }
}
#d:before {
    display: block;
    content: " ";
    margin-top: -125px;
    height: 125px;
    visibility: hidden;
}
@media (max-width: 480px) {
    #d:before {
        display: block;
        content: " ";
        margin-top: -85px;
        height: 85px;
        visibility: hidden;
    }
}