@font-face {
    font-family: 'ALSHauss';
    src: url('fonts/ALS_Hauss_Medium_1.2.otf') format('opentype');
    font-weight: 500;
}

@font-face {
    font-family: 'ALSHauss';
    src: url('fonts/ALS_Hauss_Regular_1.2.otf') format('opentype');
    font-weight: 400;
}

@font-face {
    font-family: 'ALSHauss';
    src: url('fonts/ALS_Hauss_Book_1.2.otf') format('opentype');
    font-weight: 300;
}

@font-face {
    font-family: 'FiraSansOT';
    src: url('fonts/FiraSansOT-Bold.otf') format('opentype');
    font-weight: 800;
}

@font-face {
    font-family: 'FiraSansOT';
    src: url('fonts/FiraSansOT-Medium.otf') format('opentype');
    font-weight: 500;
}

@font-face {
    font-family: 'FiraSansOT';
    src: url('fonts/FiraSansOT-Light.otf') format('opentype');
    font-weight: 300;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    outline: 0;
    /* outline: 1px solid red; */
}

:root {
    --base-size: 4px;
    /* Fonts */
    --fira-sans-ot: "FiraSansOT";
    /* Colors */
    --white-color: #fff;
    --white-color-t-50: rgba(255,255,255,0.5);
    --black-color: #333;
    --gray-light-color: #fafafa;
    --main-color: #D3D9F27A;
    --main-color-no-alpha: #eaedf8;
    --accent-color: #243BB2;
    --accent-color-alpha-50: #243BB27F;
    --accent-color-alpha-75: #243BB2BF;
    --border-color: #143C8926;
    --green-color: #199450;
    --red-color: #d71616;
    /* sizes */
    --size-585: calc(var(--base-size) * 146.25);
    --size-500: calc(var(--base-size) * 125);
    --size-192: calc(var(--base-size) * 48);
    --size-177: calc(var(--base-size) * 44.25);
    --size-162: calc(var(--base-size) * 40.5);
    --size-150: calc(var(--base-size) * 37.5);
    --size-142: calc(var(--base-size) * 35.5);
    --size-185: calc(var(--base-size) * 46.25);
    --size-130: calc(var(--base-size) * 32.5);
    --size-120: calc(var(--base-size) * 30);
    --size-118: calc(var(--base-size) * 29.5);
    --size-98: calc(var(--base-size) * 24.5);
    --size-95: calc(var(--base-size) * 23.75);
    --size-90: calc(var(--base-size) * 22.5);
    --size-80: calc(var(--base-size) * 20);
    --size-75: calc(var(--base-size) * 18.75);
    --size-70: calc(var(--base-size) * 17.5);
    --size-65: calc(var(--base-size) * 16.25);
    --size-56: calc(var(--base-size) * 14);
    --size-48: calc(var(--base-size) * 12);
    --size-45: calc(var(--base-size) * 11.25);
    --size-42: calc(var(--base-size) * 10.5);
    --size-38: calc(var(--base-size) * 9.5);
    --size-36: calc(var(--base-size) * 9);
    --size-35: calc(var(--base-size) * 8.75);
    --size-32: calc(var(--base-size) * 8);
    --size-28: calc(var(--base-size) * 7);
    --size-25: calc(var(--base-size) * 6.25);
    --size-24: calc(var(--base-size) * 6);
    --size-20: calc(var(--base-size) * 5);
    --size-18: calc(var(--base-size) * 4.5);
    --size-16: calc(var(--base-size) * 4);
    --size-15: calc(var(--base-size) * 3.75);
    --size-12: calc(var(--base-size) * 3);
    --size-10: calc(var(--base-size) * 2.5);
    --size-5: calc(var(--base-size) * 1.25);
    --wrapper-width: calc(var(--base-size) * 300);
    --left-wrapper-margin: calc((100vw - var(--wrapper-width)) / 2);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--size-130);
}

body {
    font-family: "ALSHauss";
    background-color: var(--white-color);
}

html.kz body {
    font-family: 'Arial';
}

:root html.kz {
     --fira-sans-ot: "Arial";
}

img {
    max-width: 100%;
    height: auto;
}

.global-wrapper {
    display: flex;
    flex-direction: column;
    gap: var(--size-75);
}

.wrapper {
    width: var(--wrapper-width);
    margin: auto;
}

.pusher {
    margin-top: var(--size-142);
}

.header {
    --__header-width: calc(var(--wrapper-width) + (var(--size-15) * 2));
    position: fixed;
    top: var(--size-25);
    width: var(--__header-width);
    left: calc((100% - var(--__header-width)) / 2);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: var(--size-15);
    border-radius: var(--size-32);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scroll {
    background-color: var(--white-color-t-50);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.header__left {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--size-32);
}

.header__left .logo {
    display: block;
    max-width: var(--size-185);
}

.header__menu {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--size-10);
    font-family: var(--fira-sans-ot);
    font-weight: 400;
    font-size: var(--size-20);
    line-height: 1;
    list-style-type: none;
}

.header__menu li a {
    display: block;
    color: var(--accent-color);
    padding: var(--size-10);
    border-radius: var(--size-10);
    text-decoration: none;
}

.header__menu li a:hover,
.header__menu li.active a {
    background-color: var(--main-color);
}

.header__right {
    position: relative;
}

.header__lang-switcher {
    position: absolute;
    top: calc(var(--size-5) * -1);
    left: 0;
    display: flex;
    flex-direction: column;
    gap: var(--size-5);
    width: var(--size-48);
    padding: var(--size-5);
    border-radius: var(--size-48);
}

.header__lang-switcher:hover {
    background-color: var(--white-color);
}

.lang-btn {
    display: flex;
    width: var(--size-38);
    height: var(--size-38);
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    background-color: var(--accent-color-alpha-75);
    text-decoration: none;
    border-radius: 100%;
    text-transform: uppercase;
}

.lang-btn:not(:first-child) {
    display: none;
}

.header__lang-switcher:hover .lang-btn:not(:first-child) {
    display: flex;
}

.mobile-menu__button {
    display: none;
    position: relative;
    flex-direction: column;
    justify-content: space-between;
    width: var(--size-35);
    height: var(--size-25);
}

.mobile-menu__button::before,
.mobile-menu__button::after {
    content: "";
    width: 100%;
    height: var(--base-size);
    background-color: var(--black-color);
    border-radius: var(--base-size);
    transition: all 0.3s ease;
}

.mobile-menu__button.active::before {
    transform: rotate(45deg);
    width: 90%;
    background-color: var(--accent-color);
    transform-origin: top left;
}

.mobile-menu__button.active::after {
    transform: rotate(-45deg);
    width: 90%;
    background-color: var(--accent-color);
    transform-origin: bottom left;
}

.top-banner {
    --__top-banner-width: calc(var(--wrapper-width) + var(--left-wrapper-margin));
    width: var(--__top-banner-width);
    margin-top: var(--size-142);
    margin-inline: auto;
    padding: var(--size-95) var(--size-35);
    background-color: var(--main-color);
    border-radius: var(--size-36);
}

.top-banner .wrapper {
    position: relative;
}

.top-banner__content {
    position: relative;
    display: flex;
    max-width: 55%;
    flex-direction: column;
    gap: var(--size-95);
    justify-content: space-between;
    z-index: 500;
}

.top-banner__content h1 {
    font-family: var(--fira-sans-ot);
    color: var(--accent-color);
    font-size: var(--size-70);
    line-height: var(--size-80);
    font-weight: 800;
}

.top-banner__promo-image {
    position: absolute;
    max-width: var(--size-585);
    bottom: calc(var(--size-98) * -1);
    right: 0;
    z-index: 100;
}

.about .wrapper {
    display: grid;
    grid-template-columns: 1fr max-content;
    align-items: center;
    gap: var(--size-150);
}

.about h2 {
    color: var(--accent-color);
    font-family: var(--fira-sans-ot);
    font-size: var(--size-24);
    line-height: 1.5;
    font-weight: 500;
}

.block h2,
.badge-block h2,
.contact-form h2 {
    color: var(--accent-color);
    font-family: var(--fira-sans-ot);
    font-size: var(--size-65);
    line-height: var(--size-70);
    font-weight: 500;
    text-align: center;
    margin: 0 0 var(--size-48) 0;
}

.contact-form h2 {
    margin: 0;
}

.service-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--size-20);
}

.service-item {
    display: flex;
    flex-direction: column;
    gap: var(--size-90);
    justify-content: space-between;
    background-color: var(--main-color);
    padding: var(--size-45);
    border-radius: var(--size-48);
}

.service-item.v2b {
    /* grid-column-start: 2;
    grid-row-start: 1;
    grid-row-end: 3; */
    grid-column: span 1;
    grid-row: span 2;
}

.service-item.h2b {
    grid-column: span 2;
    grid-row: span 1;
}

.service-item__header {
    display: grid;
    grid-template-columns: 1fr var(--size-120);
    gap: var(--size-45);
    justify-content: space-between;
}

.service-item__header img {
    max-width: var(--size-120);
}

.service-item.v2b .service-item__header,
.service-item.h2b .service-item__header {
    grid-template-columns: 1fr;
}

.service-item.h2b .service-item__header h3 {
    grid-area: service-h3;
}

.service-item.h2b .service-item__header img {
    grid-area: service-img;
}

.service-item.h2b .service-item__header p {
    grid-area: service-p;
}

.service-item.h2b .service-item__header {
    max-width: 70%;
    grid-template-areas: 
        "service-img"
        "service-h3"
        "service-p";
}

.service-item__header h3 {
    color: var(--accent-color);
    font-family: var(--fira-sans-ot);
    font-size: var(--size-36);
    line-height: var(--size-45);
}

.service-item.v2b .service-item__header h3 {
    max-width: 17ch;
}

.service-item__header p {
    color: var(--accent-color);
    font-size: var(--size-24);
    line-height: var(--size-32);
    font-weight: 300;
}

.service-item.v2b .service-item__header p {
    max-width: 27ch;
}

.service-banner .wrapper {
    display:flex;
    flex-direction: column;
    align-items: center;
    gap: var(--size-65);
    justify-content: space-between;
    padding: var(--size-45);
    border-radius: var(--size-48);
    background-color: var(--main-color);
}

.service-banner__header {
    display: flex;
    flex-direction: column;
    gap: var(--size-35);
    align-items: center;
    justify-content: space-between;
}

.service-banner__header img {
    max-width: var(--size-177);
}

.service-banner__header h2 {
    color: var(--accent-color);
    font-family: var(--fira-sans-ot);
    font-size: var(--size-65);
    line-height: var(--size-75);
    max-width: 25ch;
    font-weight: 500;
    text-align: center;
}

.connect-banner .wrapper {
    position: relative;
    background-color: var(--main-color);
    padding: var(--size-45);
    border-radius: var(--size-36);
}

.connect-banner__content {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: var(--size-120);
    max-width: 50%;
    z-index: 500;
}

.connect-banner__content h2 {
    color: var(--accent-color);
    font-family: var(--fira-sans-ot);
    font-size: var(--size-65);
    line-height: var(--size-75);
    font-weight: 500;
}

img.connect-banner__img {
    position: absolute;
    display: block;
    bottom: 0;
    right: 0;
    max-height: var(--size-500);
    z-index: 100;
}

.badge-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    justify-content: space-between;
    gap: var(--size-45);
    padding: var(--size-45);
    border-radius: var(--size-48);
    background-color: var(--main-color);
}

.badge-item a,
.badge-item .badge-item__wrapper {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    background-color: var(--white-color);
    padding: var(--size-15);
    border-radius: var(--size-24);
}

.partners .badge-item a,
.partners .badge-item .badge-item__wrapper {
    padding: var(--size-25) var(--size-45);
}

.contact-form .wrapper {
    display: flex;
    flex-direction: column;
    gap: var(--size-25);
    padding: var(--size-45);
    background-color: var(--main-color);
    border-radius: var(--size-48);
}

.contact-form .wrapper form {
    display: flex;
    flex-direction: column;
    gap: var(--size-25);
}

.input-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--size-25);
}

form .form-error-input {
    display: none;
}

.input-field {
    color: var(--accent-color);
    font-size: var(--size-20);
    line-height: 1;
    font-weight: 300;
    padding: var(--size-25);
    border-radius: var(--size-28);
    border: 1px solid var(--border-color);
}

.input-field.is-error {
    border: 1px solid var(--red-color);
}

textarea.input-field {
    font-family: "ALSHauss";
    font-weight: 400;
    min-height: var(--size-142);
}

.input-field::placeholder {
    color: var(--accent-color-alpha-50);
}

.form-footer {
    display: grid;
    grid-template-columns: 1fr max-content;
    max-width: 70%;
    margin: auto;
    align-items: center;
    gap: var(--size-45);
    padding: var(--size-20) 0;
}

.form-check__mark label {
    display: grid;
    grid-template-columns: var(--size-48) 1fr;
    gap: var(--size-20);
    align-items: start;
    margin: var(--size-20) 0;
}

.form-check__mark label input {
    display: none;
    visibility: hidden;
}

.form-check__mark label p {
    color: var(--accent-color-alpha-75);
    font-size: var(--size-15);
    line-height: var(--size-20);
    font-weight: 300;
}

.form-check__mark label p a {
    color: var(--accent-color-alpha-75);
}

.brief-checkbox-preview {
    display: block !important;
    width: var(--size-48);
    height: var(--size-48);
    object-fit: contain;
    opacity: 1;
    /* background-color: var(--white-color); */
    background-image: url(img/chekmark-empty.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    cursor: pointer;
}

input.brief-checkbox:checked + .brief-checkbox-preview {
    background-image: url(img/chekmark-chek.png);
}

input.brief-checkbox.is-error + .brief-checkbox-preview {
    border: 2px solid var(--red-color);
    border-radius: var(--size-15);
}

.coockie-popup {
    position: fixed;
    display: grid;
    grid-template-columns: 1fr max-content;
    gap: var(--size-25);
    bottom: -35vh;
    align-items: center;
    left: 50%;
    max-width: 550px;
    padding: var(--size-25);
    background-color: var(--white-color-t-50);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--size-28);
    transform: translateX(-50%);
    z-index: 1000;
    /* box-shadow: 0 3px 12px 0 rgba(0,0,0,0.3);    */
    transition: all 0.3s ease; 
}

.coockie-popup.active {
    bottom: var(--size-25);
}

.coockie-popup p {
    color: var(--accent-color-alpha-75);
    font-size: var(--size-16);
    line-height: 1.2;
}

.coockie-popup p a {
    color: var(--accent-color-alpha-75);
}

.mobile-menu__wrapper {
    position: fixed;
    display: block;
    top: var(--size-130);
    left: var(--size-35);
    right: var(--size-35);
    width: auto;
    padding: var(--size-35);
    background-color: var(--white-color-t-50);
    border-radius: var(--size-32);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: -100;
    transition:all 0.3s ease;
}

.mobile-menu__wrapper.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    z-index: 9000;
}

ul.mobile__menu {
    display: flex;
    flex-direction: column;
    gap: var(--size-15);
    list-style-type: none;
}

ul.mobile__menu li a {
    color: var(--accent-color);
    font-size: var(--size-25);
    line-height: 1;
    text-decoration: none;
}

.goto-top-button {
    position: fixed;
    width: var(--size-38);
    height: var(--size-38);
    right: var(--size-25);
    bottom: -60px;
    transition: all 0.7s ease;
    z-index: 10000;
}


.goto-top-button.active {
    bottom: var(--size-25);
}

.goto-top-button a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: var(--white-color);
    background-color: var(--accent-color);
    border-radius: var(--size-5);
    text-decoration: none;
}}

.footer {
    /* margin-top: var(--size-75); */
    margin-bottom: var(--size-120);
}

.footer .wrapper {
    display: flex;
    flex-direction: column;
    gap: var(--size-36);
    background-color: var(--main-color);
    padding: var(--size-75) var(--size-45);
    border-radius: var(--size-48);
}

.footer__logo {
    max-width: var(--size-185);
}

ul.social-links {
    display: flex;
    flex-wrap: nowrap;
    gap: var(--size-24);
    list-style-type: none;
}

ul.social-links a {
    display: block;
    width: var(--size-24);
    height: var(--size-24);
}

.f-line {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: var(--size-20);
}

.f-line:nth-child(2) {
    padding: var(--size-36) 0;
    border-top: 1px solid var(--accent-color-alpha-75);
    border-bottom: 1px solid var(--accent-color-alpha-75);
}

.f-line p {
    color: var(--accent-color);
}

.f-address h6,
.f-address p,
.f-copy p,
.f-legal p,
.f-madein p {
    color: var(--accent-color);
    font-size: var(--size-18);
    line-height: var(--size-24);
    /* font-weight: 500; */
}

.f-address p {
    max-width: 27ch;
}

.f-address h6 {
    font-weight: 600;
    margin: 0 0 var(--size-18) 0;
}

.f-contacts {
    display: flex;
    flex-direction: column;
    gap: var(--size-5);
    text-align: right;
}

.f-contacts a {
    font-size: var(--size-28);
    line-height: var(--size-42);
}

.f-line a {
    color: var(--accent-color);
    text-decoration: none;
}

/* Assets */
.btn-line {
    display: flex;
    flex-wrap: nowrap;
    gap: var(--size-18);
    align-items: center;
}

.btn {
    color: var(--accent-color);
    font-size: var(--size-20);
    line-height: 1;
    max-width: fit-content;
    padding: var(--size-25) var(--size-35);
    border: 1px solid var(--accent-color);
    border-radius: var(--size-16);
    cursor: pointer;
    text-decoration: none;
}

.btn-white {
    color: var(--white-color);
    border: 1px solid var(--white-color);
}

.btn-accept {
    color: var(--white-color);
    background-color: var(--accent-color);
}

.btn-accept-white {
    color: var(--accept-color);
    background-color: var(--white-color);
    border: 1px solid var(--white-color);
}

.btn-message {
    display: grid;
    grid-template-columns: var(--size-42) max-content;
    align-items: center;
    color: var(--accent-color);
    background-color: var(--white-color);
    font-size: var(--size-20);
    line-height: 1;
    max-width: fit-content;
    padding: var(--size-15) var(--size-25) var(--size-15) var(--size-20);
    gap: var(--size-20);
    border: 1px solid var(--white-color);
    border-radius: var(--size-36);
    text-decoration: none;
}

.btn-message::before {
    content: "";
    width: 100%;
    aspect-ratio: 1 / 1;
    background-image: url(img/message-accent.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.btn-message-header {
    grid-template-columns: var(--size-18) max-content;
    font-size: var(--size-18);
    color: var(--white-color);
    background-color: var(--accent-color);
    gap: var(--size-5);
    margin-left: var(--size-48);
    padding: var(--size-10) var(--size-15) var(--size-10) var(--size-10);
    border: 1px solid var(--accent-color);
}

.btn-message-header::before {
    background-image: url(img/message-white.png);
}

.btn-download {
    display: grid;
    grid-template-columns: max-content var(--size-48);
    max-width: fit-content;
    gap: var(--size-20);
    align-items: center;
    padding: var(--size-15) var(--size-15) var(--size-15) var(--size-35);
    background-color: var(--white-color);
    border-radius: var(--size-36);
    font-weight: 300;
    border: 1px solid var(--white-color);
}

.btn-download::after {
    content: "";
    width: var(--size-48);
    height: var(--size-48);
    background-image: url(img/link-arrow.png);
    background-repeat: no-repeat;
    background-size: contain;
}

.btn-send {
    display: grid;
    grid-template-columns: var(--size-35) 1fr;
    gap: var(--size-20);
    align-items: center;
    border-radius: var(--size-32);
    transition: all 0.3s ease;
}

.btn-send::before {
    content: "";
    display: block;
    width: var(--size-35);
    height: var(--size-35);
    background-image: url(img/paper-plane-w.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.btn-send-load::before {
    background-image: url(img/load-w.png);
    animation: rotation360 3s infinite linear;
}

.btn-send-success {
    background-color: var(--green-color);
    border: 1px solid var(--green-color);
}

.btn-send-success::before {
    background-image: url(img/check-w.png);
}

.btn-send-error {
    background-color: var(--red-color);
    border: 1px solid var(--red-color);
}

.btn-send-error::before {
    background-image: url(img/mail-error-w.png);
}

.btn-main-bg {
    background-color: var(--main-color-no-alpha);
}

/* Адаптив */

@media only screen and (max-width: 1270px) {
    .top-banner,
    .top-banner .wrapper {
        width: auto;
    }

    .header.wrapper {
        width: 100%;
        left: unset;
        padding: var(--size-15) var(--size-35);
    }

    .wrapper:not(.top-banner .wrapper):not(.header.wrapper) {
        width: auto;
        padding-inline: var(--size-35);
    }
}

@media only screen and (max-width: 1090px) {
    .service-wrapper {
        grid-template-columns: 1fr;
    }

    .service-item.v2b,
    .service-item.h2b {
        grid-column-start: unset;
        grid-row-start: unset;
        grid-row-end: unset;
    }

    .service-item.v2b .service-item__header h3,
    .service-item.h2b .service-item__header {
        max-width: unset;
    }
}

@media only screen and (max-width: 1058px) {
    .header__menu {
        display: none;
    }

    .header__left {
        gap: var(--size-20);
    }

    .mobile-menu__button {
        display: flex;
    }
    
    .top-banner__content,
    .connect-banner__content {
        max-width: 75%;
    }

    .top-banner__promo-image,
    img.connect-banner__img {
        opacity: 0.5;
    }

    .about .wrapper {
        grid-template-columns: 1fr;
        gap: var(--size-35);
        justify-content: centerk;
    }
}

@media only screen and (max-width: 900px) {
    .form-footer {
        max-width: 90%;
    }
}

@media only screen and (max-width: 850px) {
    .top-banner__content,
    .connect-banner__content {
        max-width: 100%;
    }

    .top-banner__content h1 {
        font-size: var(--size-56);
        line-height: 1.2;
    }

    .block h2, 
    .badge-block h2,
    .contact-form h2,
    .service-banner__header h2,
    .connect-banner__content h2 {
        font-size: var(--size-45);
        line-height: var(--size-56);
    }

    .about h2 {
        font-size: var(--size-20);
    }

    .service-item__header h3 {
        font-size: var(--size-25);
        line-height: 1.2;
    }

    .badge-wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: var(--size-25);
        padding: var(--size-25);
    }

    .badge-item {
        min-height: var(--size-142);
    }

    .partners .badge-item a {
        padding: var(--size-15);
    }
}

@media only screen and (max-width: 750px) {
	.coockie-popup {
		left: var(--size-35);
		right: var(--size-35);
    	max-width: 100%;
    	transform: unset;
	}
}

@media only screen and (max-width: 735px) {
    .btn-message-header {
        grid-template-columns: var(--size-18);
        gap: 0;
        padding: var(--size-10);
    }
    .btn-message-header span {
        display: none;
    }
    
    .form-footer {
        grid-template-columns: 1fr;
        gap: var(--size-20);
        grid-template-areas: 
            "form-button"
            "form-check";
    }

    .form-check__mark {
        grid-area: form-check;
        padding: 0 var(--size-35);
    }

    .form-button {
        grid-area: form-button;
    }

    .btn-send {
        max-width: 100%;
        min-width: 100%;
    }
}

@media only screen and (max-width: 708px) {
    
    
    .f-contacts {
        text-align: unset;
    }
}

@media only screen and (max-width: 650px) {
    .service-item__header,
    .input-wrapper {
        grid-template-columns: 1fr;
    }

    /* .badge-wrapper {
        grid-template-columns: 1fr;
    } */

    .f-line {
        flex-direction: column;
        text-align: center;
    }

    .form-check__mark {
        padding: 0 var(--size-15);
    }

    .footer {
        margin-bottom: var(--size-70);
    }
}

@media only screen and (max-width: 550px) {
    .top-banner, 
    .footer .wrapper {
        border-radius: 0;
    }

    .top-banner__content h1 {
        font-size: var(--size-45);
    }

    .top-banner__promo-image {
        right: calc(var(--size-35) * -1);
    }

    .top-banner__content .btn-line {
        flex-direction: column;
    }

    .top-banner__content .btn-line .btn,
    .btn-accept {
        max-width: 100%;
        min-width: 100%;
        text-align: center;
    }

    .block h2, 
    .badge-block h2, 
    .contact-form h2, 
    .service-banner__header h2, 
    .connect-banner__content h2 {
        font-size: var(--size-32);
        line-height: 1.2;
    }

    .service-item {
        padding: var(--size-35);
    }

    .service-item__header p {
        font-size: var(--size-16);
        line-height: 1.2;
    }

    .service-item.v2b .service-item__header p {
        max-width: 85%;
    }

    .btn-download {
        grid-template-columns: 1fr var(--size-48);
        font-size: var(--size-20);
        line-height: 1.2;
        max-width: 100%;
        min-width: 100%;
    }

    .connect-banner .btn-message {
        grid-template-columns: var(--size-42) 1fr;
        font-size: var(--size-20);
        line-height: 1.2;
        max-width: 100%;
        min-width: 100%;
    }

    .connect-banner .btn-message span {
        text-align: center;
    }

    .footer {
        margin-bottom: 0;
    }

	.coockie-popup {
    	grid-template-columns: 1fr;
	}

	.coockie-popup .btn-accept {
		display: block;
	}
	
	.goto-top-button {
        width: var(--size-32);
        height: var(--size-32);
    }
}
@media only screen and (max-width: 450px) {
    .form-check__mark {
        padding: 0;
    }

    .form-check__mark label p {
        font-size: var(--size-12);
        line-height: 1.2;
    }
}

@media only screen and (max-width: 400px) {
    .header__left .logo {
        max-width: var(--size-130);
    }
}

/* Анимации */

@keyframes rotation360 {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }

}