@font-face {
    font-family: "IBM Plex Sans";
    font-style: normal;
    font-weight: normal;
    src: url("../fonts/IBMPlexSans.woff") format("woff"), url("../fonts/IBMPlexSans.woff2") format("woff2"), url("../fonts/IBMPlexSans.ttf") format("ttf"), url("../fonts/IBMPlexSans.eot") format("eot");
}

@font-face {
    font-family: "IBM Plex Sans";
    font-style: normal;
    font-weight: 300;
    src: url("../fonts/IBMPlexSans-Light.woff") format("woff"), url("../fonts/IBMPlexSans-Light.woff2") format("woff2"), url("../fonts/IBMPlexSans-Light.ttf") format("ttf"), url("../fonts/IBMPlexSans-Light.eot") format("eot");
}

@font-face {
    font-family: "IBM Plex Sans";
    font-style: normal;
    font-weight: 500;
    src: url("../fonts/IBMPlexSans-Medium.woff") format("woff"), url("../fonts/IBMPlexSans-Medium.woff2") format("woff2"), url("../fonts/IBMPlexSans-Medium.ttf") format("ttf"), url("../fonts/IBMPlexSans-Medium.eot") format("eot");
}

@font-face {
    font-family: "IBM Plex Sans";
    font-style: normal;
    font-weight: 600;
    src: url("../fonts/IBMPlexSans-SemiBold.woff") format("woff"), url("../fonts/IBMPlexSans-SemiBold.woff2") format("woff2"), url("../fonts/IBMPlexSans-SemiBold.ttf") format("ttf"), url("../fonts/IBMPlexSans-SemiBold.eot") format("eot");
}

@font-face {
    font-family: "IBM Plex Sans";
    font-style: normal;
    font-weight: bold;
    src: url("../fonts/IBMPlexSans-Bold.woff") format("woff"), url("../fonts/IBMPlexSans-Bold.woff2") format("woff2"), url("../fonts/IBMPlexSans-Bold.ttf") format("ttf"), url("../fonts/IBMPlexSans-Bold.eot") format("eot");
}

@font-face {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: bold;
    src: url("../fonts/Montserrat-Bold.woff") format("woff"), url("../fonts/Montserrat-Bold.woff2") format("woff2"), url("../fonts/Montserrat-Bold.ttf") format("ttf"), url("../fonts/Montserrat-Bold.eot") format("eot");
}

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

:root {
    --black: #011926;
    --blue: #0086e5;
    --grey: #393f42;
    --dop-tekst: #878787;
    --stroke: #cbcbcb;
    --white: #fff;
}

* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    height: 100%;
}

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

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

ul,
ol {
    list-style: none;
    margin: 0;
    padding: 0;
}

button,
input,
textarea,
select {
    font: inherit;
    border: none;
    outline: none;
    background: none;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
}

html {
    font-size: clamp(12px, 1vw + 0.5rem, 16px);
}

body {
    font-family: "IBM Plex Sans", sans-serif;
    color: #fff;
    background-color: #59596b;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    min-height: 100vh;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

main {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

footer {
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.container {
    width: 100%;
    max-width: 1550px;
    padding: 0 15px;
    margin: 0 auto;
    position: relative;
}

section {
    position: relative;
}

.button {
    padding: 0.75rem 1.5rem;
    background-color: #fff;
    color: #fff;
    border-radius: 6px;
    cursor: pointer;
    -webkit-transition: background-color 0.3s ease;
    transition: background-color 0.3s ease;
}

.button:hover {
    background-color: rgb(229.5, 229.5, 229.5);
}

.input,
.textarea,
.select {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 4px;
    border: 1px solid #ccc;
    background: #fff;
    color: #fff;
    font-family: inherit;
}

.input:focus,
.textarea:focus,
.select:focus {
    border-color: rgb(165.75, 165.75, 165.75);
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
}

header.color {
    background: #59596b;
}

.header {
    border-bottom: 1px solid var(--white);
    padding-top: 15px;
    padding-bottom: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    gap: 20px;
}

@media (max-width: 768px) {
    .header__logo {
        max-width: 70px;
    }
}

@media (max-width: 992px) {
    .header__menu {
        display: none;
    }
}

.header__menu ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    gap: clamp(20px, 20px + (20 - 20) * (100vw - 375px) / (1920 - 375), 20px) clamp(10px, 10px + (70 - 10) * (100vw - 375px) / (1920 - 375), 70px);
}

.header__menu ul li a {
    font-weight: 400;
    font-size: 18px;
    line-height: 140%;
    color: var(--white);
    padding-bottom: 40px;
}

.header__menu ul li:hover a {
    font-weight: 700;
}

.header__menu ul li:last-child a {
    font-weight: 700;
    text-transform: uppercase;
    border-bottom: 3px solid var(--white);
}

.header__burger-block {
    display: none;
}

@media (max-width: 992px) {
    .header__burger-block {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        gap: 20px;
    }
}

.header__burger-block a {
    font-weight: 700;
    font-size: 12px;
    line-height: 140%;
    text-transform: uppercase;
    text-decoration: underline;
    -webkit-text-decoration-skip-ink: none;
    text-decoration-skip-ink: none;
    color: var(--white);
}

.header-mobile {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: #fafafa;
    padding-bottom: 40px;
    display: none;
}

.header-mobile__head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    gap: 20px;
    border-bottom: 1px solid var(--stroke);
    padding: 10px 15px;
}

@media (max-width: 992px) {
    .header-mobile__logo {
        max-width: 70px;
    }
}

.header-mobile__close-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    gap: 20px;
}

.header-mobile__close-block a {
    font-weight: 700;
    font-size: 12px;
    line-height: 140%;
    text-transform: uppercase;
    text-decoration: underline;
    -webkit-text-decoration-skip-ink: none;
    text-decoration-skip-ink: none;
    color: #26356f;
}

.header-mobile__menu {
    margin: 60px 0;
    padding: 0 15px;
}

.header-mobile__menu ul {
    font-weight: 400;
    font-size: 18px;
    line-height: 140%;
    color: var(--black);
}

.header-mobile__menu ul li {
    margin-bottom: 20px;
}

.header-mobile__menu ul li:last-child {
    margin-bottom: 0;
}

.header-mobile__contacts {
    padding: 0 15px;
}

.header-mobile__tel {
    margin-bottom: 5px;
}

.header-mobile__tel a {
    font-weight: 400;
    font-size: 32px;
    line-height: 140%;
    color: var(--blue);
}

.header-mobile__email {
    margin-bottom: 40px;
}

.header-mobile__email a {
    font-weight: 400;
    font-size: 20px;
    line-height: 140%;
    text-align: right;
    color: var(--black);
}

.header-mobile__company {
    font-weight: 600;
    font-size: 18px;
    line-height: 140%;
    color: var(--grey);
    margin-bottom: 10px;
}

.header-mobile__legal-address {
    margin-bottom: 10px;
}

.header-mobile__legal-address p:first-child {
    font-weight: 600;
    font-size: 14px;
    line-height: 140%;
    color: var(--blue);
    margin-bottom: 5px;
}

.header-mobile__legal-address p:last-child {
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    color: var(--grey);
}

.background-1 {
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
}

.block-1 {
    padding-top: clamp(100px, 100px + (200 - 100) * (100vw - 375px) / (1920 - 375), 200px);
    margin-bottom: clamp(80px, 80px + (150 - 80) * (100vw - 375px) / (1920 - 375), 150px);
}

.block-1__flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    gap: clamp(40px, 40px + (40 - 40) * (100vw - 375px) / (1920 - 375), 40px) clamp(20px, 20px + (50 - 20) * (100vw - 375px) / (1920 - 375), 50px);
}

@media (max-width: 768px) {
    .block-1__flex {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    }
}

.block-1__info {
    width: 100%;
}

.block-1__info h1 {
    font-weight: 500;
    font-size: clamp(18px, 18px + (40 - 18) * (100vw - 375px) / (1920 - 375), 40px);
    color: var(--white);
    line-height: normal;
    margin-bottom: clamp(15px, 15px + (30 - 15) * (100vw - 375px) / (1920 - 375), 30px);
}

.block-1__info h1 span {
    font-weight: 700;
    font-size: clamp(30px, 30px + (50 - 30) * (100vw - 375px) / (1920 - 375), 50px);
    line-height: 120%;
    text-transform: uppercase;
    color: var(--white);
}

.block-1__info p {
    font-weight: 400;
    font-size: clamp(14px, 14px + (20 - 14) * (100vw - 375px) / (1920 - 375), 20px);
    color: var(--white);
    line-height: normal;
    margin-bottom: clamp(30px, 30px + (40 - 30) * (100vw - 375px) / (1920 - 375), 40px);
}

.block-1__button a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    gap: 10px;
    background: #fdcf10;
    border-radius: 100px;
    padding: clamp(20px, 20px + (24 - 20) * (100vw - 375px) / (1920 - 375), 24px) clamp(15px, 15px + (15 - 15) * (100vw - 375px) / (1920 - 375), 15px);
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: clamp(14px, 14px + (16 - 14) * (100vw - 375px) / (1920 - 375), 16px);
    text-transform: uppercase;
    color: #000;
    line-height: normal;
    max-width: 294px;
}

@media screen and (max-width: 576px) {
    .block-1__button a {
        max-width: 100%;
    }
}

.block-1__img {
    width: 100%;
}

.block-2 {
    margin-bottom: clamp(30px, 30px + (180 - 30) * (100vw - 375px) / (1920 - 375), 180px);
}

.block-2__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    gap: 20px;
    margin-bottom: clamp(30px, 30px + (60 - 30) * (100vw - 375px) / (1920 - 375), 60px);
}

@media (max-width: 768px) {
    .block-2__info {
        width: 100%;
    }
}

.block-2__info h2 {
    font-weight: 700;
    font-size: clamp(24px, 24px + (40 - 24) * (100vw - 375px) / (1920 - 375), 40px);
    line-height: 120%;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: clamp(15px, 15px + (30 - 15) * (100vw - 375px) / (1920 - 375), 30px);
}

.block-2__info p {
    font-weight: 400;
    font-size: clamp(14px, 14px + (20 - 14) * (100vw - 375px) / (1920 - 375), 20px);
    color: var(--white);
    line-height: normal;
}

.block-2__button {
    width: 100%;
    max-width: 294px;
}

@media (max-width: 768px) {
    .block-2__button {
        display: none;
    }
}

.block-2__button a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    gap: 10px;
    background: #fdcf10;
    border-radius: 100px;
    padding: clamp(20px, 20px + (24 - 20) * (100vw - 375px) / (1920 - 375), 24px) clamp(15px, 15px + (15 - 15) * (100vw - 375px) / (1920 - 375), 15px);
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: clamp(14px, 14px + (16 - 14) * (100vw - 375px) / (1920 - 375), 16px);
    text-transform: uppercase;
    color: #000;
    line-height: normal;
}

.block-2__items {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: auto;
    gap: 20px;
}

@media (max-width: 992px) {
    .block-2__items {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: auto;
        gap: 20px;
    }
}

@media screen and (max-width: 576px) {
    .block-2__items {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
        gap: 15px;
    }
}

.block-2__item {
    -webkit-box-shadow: 0 5px 20px 0 rgba(0, 53, 86, 0.06);
    box-shadow: 0 5px 20px 0 rgba(0, 53, 86, 0.06);
    background: #434353;
    border-radius: 10px;
    padding: clamp(10px, 10px + (40 - 10) * (100vw - 375px) / (1920 - 375), 40px) clamp(10px, 10px + (20 - 10) * (100vw - 375px) / (1920 - 375), 20px);
}

@media screen and (max-width: 576px) {
    .block-2__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: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

.block-2__item-ico {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: clamp(10px, 10px + (40 - 10) * (100vw - 375px) / (1920 - 375), 40px);
}

@media screen and (max-width: 576px) {
    .block-2__item-ico {
        max-width: 40px;
        margin: 0 auto 10px;
    }
}

.block-2__item-name {
    font-weight: 400;
    font-size: clamp(14px, 14px + (20 - 14) * (100vw - 375px) / (1920 - 375), 20px);
    text-align: center;
    color: var(--white);
}

.block-3 {
    margin-bottom: clamp(40px, 40px + (130 - 40) * (100vw - 375px) / (1920 - 375), 130px);
}

.block-3 video {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.block-4 {
    padding-bottom: clamp(80px, 80px + (108 - 80) * (100vw - 375px) / (1920 - 375), 108px);
}

.block-4__flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    gap: clamp(40px, 40px + (40 - 40) * (100vw - 375px) / (1920 - 375), 40px) clamp(20px, 20px + (60 - 20) * (100vw - 375px) / (1920 - 375), 60px);
}

@media (max-width: 768px) {
    .block-4__flex {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.block-4__img {
    width: 100%;
}

.block-4__info {
    width: 100%;
}

.block-4__info h2 {
    font-weight: 700;
    font-size: clamp(24px, 24px + (40 - 24) * (100vw - 375px) / (1920 - 375), 40px);
    line-height: 120%;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: clamp(15px, 15px + (30 - 15) * (100vw - 375px) / (1920 - 375), 30px);
}

.block-4__info p {
    font-weight: 400;
    font-size: clamp(18px, 18px + (20 - 18) * (100vw - 375px) / (1920 - 375), 20px);
    color: var(--white);
    line-height: normal;
    margin-bottom: clamp(15px, 15px + (30 - 15) * (100vw - 375px) / (1920 - 375), 30px);
}

.block-4__info p:nth-child(3) {
    font-style: italic;
    font-weight: 500;
    color: #c8ab00;
}

.block-4__info p:nth-child(6) {
    color: #828793;
}

.block-4__info ul {
    list-style: disc;
    padding-left: 20px;
    font-weight: 400;
    font-size: clamp(18px, 18px + (20 - 18) * (100vw - 375px) / (1920 - 375), 20px);
    color: var(--white);
    line-height: normal;
    margin-bottom: clamp(15px, 15px + (30 - 15) * (100vw - 375px) / (1920 - 375), 30px);
}

.block-4__info ul li {
    margin-bottom: 15px;
}

.block-4__info ul li:last-child {
    margin-bottom: 0;
}

@media screen and (max-width: 576px) {
    .block-4__button {
        margin-top: 30px;
    }
}

.block-4__button a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    gap: 10px;
    background: #fdcf10;
    border-radius: 100px;
    padding: clamp(20px, 20px + (24 - 20) * (100vw - 375px) / (1920 - 375), 24px) clamp(15px, 15px + (15 - 15) * (100vw - 375px) / (1920 - 375), 15px);
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: clamp(14px, 14px + (16 - 14) * (100vw - 375px) / (1920 - 375), 16px);
    text-transform: uppercase;
    color: #000;
    line-height: normal;
    max-width: 294px;
}

@media screen and (max-width: 576px) {
    .block-4__button a {
        max-width: 100%;
    }
}

.block-5 {
    padding-top: clamp(40px, 40px + (100 - 40) * (100vw - 375px) / (1920 - 375), 100px);
    padding-bottom: clamp(40px, 40px + (100 - 40) * (100vw - 375px) / (1920 - 375), 100px);
    background: #ffffff;
}

.block-5__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    gap: 20px;
    margin-bottom: clamp(30px, 30px + (50 - 30) * (100vw - 375px) / (1920 - 375), 50px);
}

@media (max-width: 768px) {
    .block-5__info {
        width: 100%;
    }
}

.block-5__info h2 {
    font-weight: 700;
    font-size: clamp(24px, 24px + (40 - 24) * (100vw - 375px) / (1920 - 375), 40px);
    line-height: 120%;
    text-transform: uppercase;
    color: #13131d;
    margin-bottom: clamp(15px, 15px + (30 - 15) * (100vw - 375px) / (1920 - 375), 30px);
}

.block-5__info p {
    font-weight: 400;
    font-size: clamp(18px, 18px + (20 - 18) * (100vw - 375px) / (1920 - 375), 20px);
    color: #13131d;
    line-height: normal;
    margin-bottom: 10px;
}

.block-5__info p:nth-child(3) {
    color: #828793;
    margin-bottom: 0;
}

.block-5__button {
    width: 100%;
    max-width: 325px;
}

@media (max-width: 768px) {
    .block-5__button {
        display: none;
    }
}

.block-5__button.mob {
    display: none;
}

@media (max-width: 768px) {
    .block-5__button.mob {
        display: block;
        margin-top: 30px;
    }
}

@media screen and (max-width: 576px) {
    .block-5__button.mob {
        max-width: 100%;
    }
}

.block-5__button a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    gap: 10px;
    border: 1px solid #12121c;
    border-radius: 100px;
    padding: clamp(20px, 20px + (24 - 20) * (100vw - 375px) / (1920 - 375), 24px) clamp(15px, 15px + (15 - 15) * (100vw - 375px) / (1920 - 375), 15px);
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: clamp(14px, 14px + (16 - 14) * (100vw - 375px) / (1920 - 375), 16px);
    text-transform: uppercase;
    color: #000;
    line-height: normal;
}

.block-5__items {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: auto;
    gap: 0;
    gap: clamp(30px, 30px + (30 - 30) * (100vw - 375px) / (1920 - 375), 30px) clamp(20px, 20px + (185 - 20) * (100vw - 375px) / (1920 - 375), 185px);
}

@media (max-width: 768px) {
    .block-5__items {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: auto;
        gap: 0;
        gap: clamp(30px, 30px + (30 - 30) * (100vw - 375px) / (1920 - 375), 30px) clamp(20px, 20px + (185 - 20) * (100vw - 375px) / (1920 - 375), 185px);
    }
}

@media screen and (max-width: 576px) {
    .block-5__items {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        grid-template-rows: auto;
        gap: 0;
        gap: clamp(30px, 30px + (30 - 30) * (100vw - 375px) / (1920 - 375), 30px) clamp(20px, 20px + (185 - 20) * (100vw - 375px) / (1920 - 375), 185px);
    }
}

@media screen and (max-width: 576px) {
    .block-5__item {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: auto;
        gap: 35px;
    }
}

.block-5__item-day {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: clamp(20px, 20px + (40 - 20) * (100vw - 375px) / (1920 - 375), 40px);
}

.block-5__item-time {
    text-align: center;
    margin-bottom: clamp(20px, 20px + (40 - 20) * (100vw - 375px) / (1920 - 375), 40px);
}

.block-5__item-time p {
    font-weight: 400;
    font-size: clamp(12px, 12px + (20 - 12) * (100vw - 375px) / (1920 - 375), 20px);
    text-align: center;
    color: #666;
    line-height: normal;
    margin-bottom: clamp(20px, 20px + (40 - 20) * (100vw - 375px) / (1920 - 375), 40px);
}

.block-5__item-time img {
    margin: 0 auto;
}

.block-5__item-tablets p {
    font-weight: 400;
    font-size: clamp(12px, 12px + (20 - 12) * (100vw - 375px) / (1920 - 375), 20px);
    text-align: center;
    color: #666;
    line-height: normal;
    margin-bottom: clamp(20px, 20px + (40 - 20) * (100vw - 375px) / (1920 - 375), 40px);
}

.block-5__item-tablets img {
    margin: 0 auto;
}

.block-6 {
    padding-top: clamp(80px, 80px + (180 - 80) * (100vw - 375px) / (1920 - 375), 180px);
    padding-bottom: clamp(80px, 80px + (180 - 80) * (100vw - 375px) / (1920 - 375), 180px);
}

.block-6 h2 {
    font-weight: 700;
    font-size: clamp(24px, 24px + (40 - 24) * (100vw - 375px) / (1920 - 375), 40px);
    line-height: 120%;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: clamp(20px, 20px + (60 - 20) * (100vw - 375px) / (1920 - 375), 60px);
}

.block-6__column {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: normal;
    -ms-flex-align: normal;
    align-items: normal;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    gap: 0px;
    border-radius: 20px;
}

@media (max-width: 768px) {
    .block-6__column {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    }
}

.block-6__column:first-child {
    background: #363646;
    margin-bottom: 20px;
}

.block-6__column:last-child {
    background: #434353;
}

.block-6__column-info {
    width: 100%;
    padding: clamp(20px, 20px + (50 - 20) * (100vw - 375px) / (1920 - 375), 50px) clamp(15px, 15px + (30 - 15) * (100vw - 375px) / (1920 - 375), 30px);
}

.block-6__column-info h3 {
    font-weight: 500;
    font-size: clamp(20px, 20px + (32 - 20) * (100vw - 375px) / (1920 - 375), 32px);
    line-height: 120%;
    color: var(--white);
    margin-bottom: clamp(15px, 15px + (20 - 15) * (100vw - 375px) / (1920 - 375), 20px);
}

.block-6__column-info ul {
    list-style: disc;
    padding-left: 20px;
    font-weight: 400;
    font-size: clamp(16px, 16px + (20 - 16) * (100vw - 375px) / (1920 - 375), 20px);
    color: var(--white);
    line-height: normal;
    margin-bottom: clamp(15px, 15px + (20 - 15) * (100vw - 375px) / (1920 - 375), 20px);
}

.block-6__column-info ul li {
    margin-bottom: 15px;
}

.block-6__column-info ul li:last-child {
    margin-bottom: 0;
}

.block-6__column-info p {
    font-weight: 400;
    font-size: clamp(12px, 12px + (14 - 12) * (100vw - 375px) / (1920 - 375), 14px);
    color: #828793;
    line-height: normal;
}

.block-6__img {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.block-6__img img {
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 0 20px 20px 0;
}

@media (max-width: 768px) {
    .block-6__img img {
        border-radius: 20px 20px 0 0;
    }
}

.block-6__button {
    margin-top: clamp(15px, 15px + (40 - 15) * (100vw - 375px) / (1920 - 375), 40px);
}

.block-6__button a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    gap: 10px;
    background: #fdcf10;
    border-radius: 100px;
    padding: clamp(20px, 20px + (24 - 20) * (100vw - 375px) / (1920 - 375), 24px) clamp(15px, 15px + (15 - 15) * (100vw - 375px) / (1920 - 375), 15px);
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: clamp(14px, 14px + (16 - 14) * (100vw - 375px) / (1920 - 375), 16px);
    text-transform: uppercase;
    color: #000;
    line-height: normal;
    max-width: 294px;
}

.block-7 {
    padding-top: clamp(60px, 60px + (100 - 60) * (100vw - 375px) / (1920 - 375), 100px);
    padding-bottom: clamp(60px, 60px + (130 - 60) * (100vw - 375px) / (1920 - 375), 130px);
    background: #fafafa;
}

.block-7 h2 {
    font-weight: 600;
    font-size: clamp(30px, 30px + (40 - 30) * (100vw - 375px) / (1920 - 375), 40px);
    text-align: center;
    color: #000;
    line-height: normal;
    margin-bottom: 20px;
}

.block-7__items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto;
    gap: 0;
    gap: clamp(15px, 15px + (20 - 15) * (100vw - 375px) / (1920 - 375), 20px) clamp(15px, 15px + (20 - 15) * (100vw - 375px) / (1920 - 375), 20px);
}

@media (max-width: 992px) {
    .block-7__items {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: auto;
        gap: 0;
        gap: clamp(15px, 15px + (20 - 15) * (100vw - 375px) / (1920 - 375), 20px) clamp(15px, 15px + (20 - 15) * (100vw - 375px) / (1920 - 375), 20px);
    }
}

@media (max-width: 768px) {
    .block-7__items {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
        gap: 0;
        gap: clamp(15px, 15px + (20 - 15) * (100vw - 375px) / (1920 - 375), 20px) clamp(15px, 15px + (20 - 15) * (100vw - 375px) / (1920 - 375), 20px);
    }
}

.block-7__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-shadow: 0 5px 20px 0 rgba(0, 53, 86, 0.06);
    box-shadow: 0 5px 20px 0 rgba(0, 53, 86, 0.06);
}

footer {
    background: #fafafa;
}

.footer__flex {
    border-top: 1px solid var(--stroke);
    border-bottom: 1px solid var(--stroke);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: normal;
    -ms-flex-align: normal;
    align-items: normal;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    gap: 20px;
}

.footer__flex:first-child {
    padding: clamp(40px, 40px + (50 - 40) * (100vw - 375px) / (1920 - 375), 50px) clamp(0px, 0px + (0 - 0) * (100vw - 375px) / (1920 - 375), 0px) clamp(20px, 20px + (50 - 20) * (100vw - 375px) / (1920 - 375), 50px);
}

@media (max-width: 992px) {
    .footer__flex:first-child {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 40px;
    }
}

.footer__flex:last-child {
    padding: 20px 0;
}

.footer__logo-block {
    width: 100%;
    max-width: 180px;
}

@media (max-width: 992px) {
    .footer__logo-block {
        max-width: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        gap: 20px;
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
    }
}

.footer__logo:first-child {
    margin-bottom: 30px;
}

@media (max-width: 992px) {
    .footer__logo:first-child {
        margin-bottom: 0;
    }
}

.footer__info {
    width: 100%;
    max-width: 41.513158%; /* 631/1520 */
}

@media (max-width: 992px) {
    .footer__info {
        max-width: 100%;
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3;
    }
}

.footer__company {
    font-weight: 600;
    font-size: clamp(18px, 18px + (20 - 18) * (100vw - 375px) / (1920 - 375), 20px);
    line-height: 140%;
    color: var(--grey);
    margin-bottom: clamp(10px, 10px + (20 - 10) * (100vw - 375px) / (1920 - 375), 20px);
}

.footer__legal-address {
    margin-bottom: clamp(10px, 10px + (20 - 10) * (100vw - 375px) / (1920 - 375), 20px);
}

.footer__legal-address p:first-child {
    font-weight: 600;
    font-size: clamp(14px, 14px + (16 - 14) * (100vw - 375px) / (1920 - 375), 16px);
    line-height: 140%;
    color: var(--blue);
    margin-bottom: 5px;
}

.footer__legal-address p:last-child {
    font-weight: 400;
    font-size: clamp(16px, 16px + (18 - 16) * (100vw - 375px) / (1920 - 375), 18px);
    line-height: 140%;
    color: var(--grey);
}

.footer__contacts {
    width: 100%;
    max-width: 440px;
    text-align: right;
}

@media (max-width: 992px) {
    .footer__contacts {
        max-width: 100%;
        text-align: left;
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }
}

.footer__tel {
    margin-bottom: clamp(5px, 5px + (20 - 5) * (100vw - 375px) / (1920 - 375), 20px);
}

.footer__tel a {
    font-weight: 400;
    font-size: clamp(32px, 32px + (48 - 32) * (100vw - 375px) / (1920 - 375), 48px);
    line-height: 140%;
    color: var(--blue);
    line-height: normal;
}

.footer__email {
    text-align: right;
}

@media (max-width: 992px) {
    .footer__email {
        text-align: left;
    }
}

.footer__email a {
    font-weight: 400;
    font-size: clamp(20px, 20px + (28 - 20) * (100vw - 375px) / (1920 - 375), 28px);
    line-height: 140%;
    text-align: right;
    color: var(--black);
}

.footer__copyright {
    font-weight: 400;
    font-size: clamp(12px, 12px + (16 - 12) * (100vw - 375px) / (1920 - 375), 16px);
    color: var(--dop-tekst);
    line-height: normal;
}

.footer__develop a {
    font-weight: 400;
    font-size: clamp(12px, 12px + (16 - 12) * (100vw - 375px) / (1920 - 375), 16px);
    line-height: 140%;
    color: var(--dop-tekst);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    gap: 5px;
}