@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: 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: 200;
    src: url("../fonts/IBMPlexSans-ExtraLight.woff") format("woff"), url("../fonts/IBMPlexSans-ExtraLight.woff2") format("woff2"), url("../fonts/IBMPlexSans-ExtraLight.ttf") format("ttf"), url("../fonts/IBMPlexSans-ExtraLight.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: "Oswald";
    font-style: normal;
    font-weight: bold;
    src: url("../fonts/Oswald-Bold.woff") format("woff"), url("../fonts/Oswald-Bold.woff2") format("woff2"), url("../fonts/Oswald-Bold.ttf") format("ttf"), url("../fonts/Oswald-Bold.eot") format("eot");
}

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

@font-face {
    font-family: "Formular";
    font-style: normal;
    font-weight: normal;
    src: url("../fonts/Formular.woff") format("woff"), url("../fonts/Formular.woff2") format("woff2"), url("../fonts/Formular.ttf") format("ttf"), url("../fonts/Formular.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: #393f42;
    background-color: #fff;
    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: 1810px;
    padding: 0 15px;
    margin: 0 auto;
    position: relative;
}

section {
    position: relative;
}

.button {
    padding: 0.75rem 1.5rem;
    background-color: #393f42;
    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(33.3658536585, 36.8780487805, 38.6341463415);
}

.input,
.textarea,
.select {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 4px;
    border: 1px solid #ccc;
    background: #fff;
    color: #393f42;
    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;
    -webkit-box-shadow: 0 4px 30px 0 rgba(96, 109, 116, 0.05);
    box-shadow: 0 4px 30px 0 rgba(96, 109, 116, 0.05);
    background: var(--white);
}

.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;
    padding: 7px 0;
}

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

@media screen and (max-width: 1075px) {
    .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: 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: clamp(10px, 10px + (10 - 10) * (100vw - 375px) / (1920 - 375), 10px) clamp(10px, 10px + (70 - 10) * (100vw - 375px) / (1920 - 375), 70px);
}

.header__menu ul li a {
    font-weight: 400;
    font-size: clamp(16px, 16px + (18 - 16) * (100vw - 375px) / (1920 - 375), 18px);
    line-height: 140%;
    color: var(--grey);
}

@media screen and (max-width: 1075px) {
    .header__button {
        display: none;
    }
}

.header__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: 20px;
    border: 1px solid var(--stroke);
    border-radius: 100px;
    padding: 8px 8px 8px 30px;
    font-weight: 400;
    font-size: clamp(14px, 14px + (18 - 14) * (100vw - 375px) / (1920 - 375), 18px);
    color: var(--grey);
}

.header__burger {
    display: none;
}

@media screen and (max-width: 1075px) {
    .header__burger {
        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: #fafafa;
        border: 1px solid #eaeaea;
        border-radius: 100px;
        padding: 16px 20px;
    }
}

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

.block-1__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(50px, 50px + (60 - 50) * (100vw - 375px) / (1920 - 375), 60px);
}

@media (max-width: 768px) {
    .block-1__header {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
}

.block-1__header h1 {
    font-weight: 400;
    font-size: clamp(24px, 24px + (60 - 24) * (100vw - 375px) / (1920 - 375), 60px);
    line-height: 100%;
    color: var(--grey);
    width: 100%;
    max-width: 880px;
}

.block-1__site {
    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: wrap;
    flex-wrap: wrap;
    gap: 10px;
    border: 1px solid #eaeaea;
    border-radius: 10px;
    background: #fafafa;
    padding: clamp(5px, 5px + (20 - 5) * (100vw - 375px) / (1920 - 375), 20px) clamp(20px, 20px + (20 - 20) * (100vw - 375px) / (1920 - 375), 20px);
    font-weight: 400;
    font-size: clamp(14px, 14px + (18 - 14) * (100vw - 375px) / (1920 - 375), 18px);
    color: var(--grey);
    line-height: normal;
    width: 100%;
    max-width: 620px;
}

.block-1__site svg {
    width: 100%;
    max-width: 24px;
}

.block-1__site a {
    font-weight: 400;
    font-size: clamp(14px, 14px + (18 - 14) * (100vw - 375px) / (1920 - 375), 18px);
    line-height: normal;
    font-weight: 600;
    text-decoration: underline;
    -webkit-text-decoration-skip-ink: none;
    text-decoration-skip-ink: none;
    color: var(--blue);
}

.block-1__video {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    min-height: 600px;
    max-height: 600px;
    border-radius: clamp(0px, 0px + (20 - 0) * (100vw - 375px) / (1920 - 375), 20px);
}

.block-1__video video {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    min-height: 600px;
    max-height: 600px;
    border-radius: clamp(0px, 0px + (20 - 0) * (100vw - 375px) / (1920 - 375), 20px);
}

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

.block-2__content-block {
    background: var(--blue);
    border-radius: clamp(10px, 10px + (20 - 10) * (100vw - 375px) / (1920 - 375), 20px);
    padding: clamp(30px, 30px + (60 - 30) * (100vw - 375px) / (1920 - 375), 60px) clamp(16px, 16px + (60 - 16) * (100vw - 375px) / (1920 - 375), 60px) clamp(20px, 20px + (60 - 20) * (100vw - 375px) / (1920 - 375), 60px);
}

.block-2__content-block h2 {
    font-weight: 500;
    font-size: clamp(24px, 24px + (48 - 24) * (100vw - 375px) / (1920 - 375), 48px);
    color: var(--white);
    line-height: normal;
    margin-bottom: clamp(20px, 20px + (40 - 20) * (100vw - 375px) / (1920 - 375), 40px);
}

.block-2__content {
    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: clamp(20px, 20px + (20 - 20) * (100vw - 375px) / (1920 - 375), 20px) clamp(20px, 20px + (60 - 20) * (100vw - 375px) / (1920 - 375), 60px);
}

.block-2__content:nth-child(2) {
    border-radius: clamp(5px, 5px + (10 - 5) * (100vw - 375px) / (1920 - 375), 10px);
    padding: clamp(20px, 20px + (40 - 20) * (100vw - 375px) / (1920 - 375), 40px) clamp(20px, 20px + (40 - 20) * (100vw - 375px) / (1920 - 375), 40px) clamp(20px, 20px + (40 - 20) * (100vw - 375px) / (1920 - 375), 40px);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    -webkit-box-shadow: inset 0 -30px 50px 0 rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 -30px 50px 0 rgba(255, 255, 255, 0.1);
    background: var(--white);
    position: relative;
    z-index: 5;
}

@media (max-width: 480px) {
    .block-2__content:nth-child(2) {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.block-2__content:nth-child(3) {
    margin-top: -13%;
}

@media (max-width: 768px) {
    .block-2__content:nth-child(3) {
        margin-top: 20px;
    }
}

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

@media (max-width: 480px) {
    .block-2__info:first-child .block-2__button {
        display: none;
    }
}

.block-2__info:last-child .block-2__button {
    display: none;
}

@media (max-width: 480px) {
    .block-2__info:last-child .block-2__button {
        display: block;
    }

    .block-2__info:last-child .block-2__button a {
        padding: 6px 6px 6px 12px;
    }

    .block-2__info:last-child .block-2__button a svg {
        width: 100%;
        max-width: 25px;
        max-height: 25px;
    }
}

.block-2__info h5 {
    font-weight: 600;
    font-size: clamp(16px, 16px + (18 - 16) * (100vw - 375px) / (1920 - 375), 18px);
    color: var(--blue);
    line-height: normal;
    margin-bottom: 10px;
}

.block-2__info p {
    margin-bottom: 10px;
    font-weight: 400;
    font-size: clamp(16px, 16px + (18 - 16) * (100vw - 375px) / (1920 - 375), 18px);
    color: var(--grey);
}

.block-2__button {
    margin-top: 20px;
}

.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: 20px;
    border: 1px solid var(--stroke);
    border-radius: 100px;
    padding: 8px 8px 8px 20px;
    font-weight: 400;
    font-size: clamp(14px, 14px + (18 - 14) * (100vw - 375px) / (1920 - 375), 18px);
    color: var(--grey);
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
}

.block-2__image-block {
    position: relative;
}

.block-2__image {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.block-2__image img {
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.block-2__image-info {
    position: absolute;
    bottom: 0;
    left: 0;
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    -webkit-box-shadow: inset 0 -30px 50px 0 rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 -30px 50px 0 rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.1);
    z-index: 10;
    border-radius: 10px;
    padding: clamp(15px, 15px + (20 - 15) * (100vw - 375px) / (1920 - 375), 20px) clamp(10px, 10px + (40 - 10) * (100vw - 375px) / (1920 - 375), 40px);
}

@media (max-width: 480px) {
    .block-2__image-info {
        position: relative;
        bottom: 20px;
    }
}

.block-2__image-info h5 {
    font-weight: 500;
    font-size: clamp(12px, 12px + (18 - 12) * (100vw - 375px) / (1920 - 375), 18px);
    color: var(--white);
    line-height: normal;
    margin-bottom: 10px;
}

.block-2__image-info p {
    font-weight: 400;
    font-size: clamp(12px, 12px + (18 - 12) * (100vw - 375px) / (1920 - 375), 18px);
    color: var(--white);
}

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

.block-3 h2 {
    font-weight: 400;
    font-size: clamp(24px, 24px + (48 - 24) * (100vw - 375px) / (1920 - 375), 48px);
    color: var(--grey);
    line-height: normal;
    margin-bottom: clamp(20px, 20px + (40 - 20) * (100vw - 375px) / (1920 - 375), 40px);
}

.block-3__items {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: auto;
    gap: 20px;
    margin-bottom: 30px;
}

@media (max-width: 1366px) {
    .block-3__items {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

@media (max-width: 480px) {
    .block-3__items {
        display: none;
    }
}

.block-3__item {
    border-radius: clamp(0px, 0px + (20 - 0) * (100vw - 375px) / (1920 - 375), 20px);
    padding: clamp(0px, 0px + (20 - 0) * (100vw - 375px) / (1920 - 375), 20px) clamp(0px, 0px + (20 - 0) * (100vw - 375px) / (1920 - 375), 20px);
}

.block-3__item-ico {
    margin-bottom: clamp(10px, 10px + (20 - 10) * (100vw - 375px) / (1920 - 375), 20px);
}

.block-3__item-ico-name {
    font-weight: 600;
    font-size: clamp(14px, 14px + (16 - 14) * (100vw - 375px) / (1920 - 375), 16px);
    color: var(--blue);
    line-height: normal;
    margin-bottom: 5px;
}

.block-3__item-name {
    font-weight: 600;
    font-size: clamp(18px, 18px + (24 - 18) * (100vw - 375px) / (1920 - 375), 24px);
    color: var(--grey);
    line-height: normal;
    margin-bottom: clamp(10px, 10px + (20 - 10) * (100vw - 375px) / (1920 - 375), 20px);
}

.block-3__item-desc {
    font-weight: 400;
    font-size: clamp(16px, 16px + (18 - 16) * (100vw - 375px) / (1920 - 375), 18px);
    color: var(--grey);
    line-height: normal;
}

.block-3__image {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.block-3__image img {
    -o-object-fit: cover;
    object-fit: cover;
}

.block-3__slider-block {
    display: none;
}

@media (max-width: 480px) {
    .block-3__slider-block {
        display: block;
        margin-bottom: 50px;
    }
}

.block-3__slider-arrows {
    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;
    margin-top: 30px;
    border: 1px solid #ececec;
    border-radius: 100px;
    padding: 7px 10px;
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
}

.block-3__slider-arrow-counts {
    font-weight: 400;
    font-size: 16px;
    color: var(--dop-tekst);
    line-height: normal;
}

.block-3__slider-arrow-count-current {
    font-weight: 600;
    font-size: 16px;
    color: var(--blue);
    line-height: normal;
}

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

.block-4 h2 {
    font-weight: 400;
    font-size: clamp(24px, 24px + (48 - 24) * (100vw - 375px) / (1920 - 375), 48px);
    color: var(--grey);
    line-height: normal;
    margin-bottom: clamp(20px, 20px + (40 - 20) * (100vw - 375px) / (1920 - 375), 40px);
}

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

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

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

.block-4__item {
    background: #fafafa;
    border-radius: 10px;
    padding: clamp(5px, 5px + (30 - 5) * (100vw - 375px) / (1920 - 375), 30px) clamp(10px, 10px + (20 - 10) * (100vw - 375px) / (1920 - 375), 20px);
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
    position: relative;
}

@media (max-width: 480px) {
    .block-4__item {
        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: 10px;
    }
}

.block-4__item:hover {
    background: #edf6fd;
}

.block-4__item-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
}

.block-4__item-ico {
    margin-bottom: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

@media (max-width: 480px) {
    .block-4__item-ico {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }
}

.block-4__item-name {
    font-weight: 400;
    font-size: clamp(14px, 14px + (18 - 14) * (100vw - 375px) / (1920 - 375), 18px);
    color: var(--grey);
    line-height: normal;
    text-align: center;
}

@media (max-width: 480px) {
    .block-4__item-name {
        text-align: left;
    }
}

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

.block-5 h2 {
    font-weight: 400;
    font-size: clamp(24px, 24px + (48 - 24) * (100vw - 375px) / (1920 - 375), 48px);
    color: var(--grey);
    line-height: normal;
    margin-bottom: clamp(20px, 20px + (40 - 20) * (100vw - 375px) / (1920 - 375), 40px);
}

.block-5__banner {
    position: relative;
}

.block-5__info {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 0;
    max-width: calc(39.325843% + 60px); /* 700/1780 */
    padding-left: clamp(20px, 20px + (60 - 20) * (100vw - 375px) / (1920 - 375), 60px);
}

@media (max-width: 480px) {
    .block-5__info {
        max-width: 261px;
    }
}

.block-5__info h3 {
    font-weight: 500;
    font-size: clamp(14px, 14px + (32 - 14) * (100vw - 375px) / (1920 - 375), 32px);
    color: var(--grey);
    line-height: normal;
    margin-bottom: clamp(20px, 20px + (40 - 20) * (100vw - 375px) / (1920 - 375), 40px);
}

.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: 20px;
    border: 1px solid var(--stroke);
    border-radius: 100px;
    padding: 8px 8px 8px 20px;
    font-weight: 400;
    font-size: clamp(14px, 14px + (18 - 14) * (100vw - 375px) / (1920 - 375), 18px);
    color: var(--grey);
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
    background: var(--white);
}

@media (max-width: 480px) {
    .block-5__button a {
        padding: 6px 6px 6px 12px;
    }

    .block-5__button a svg {
        width: 100%;
        max-width: 25px;
        max-height: 25px;
    }
}

.block-5__image {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    min-height: 510px;
}

@media (max-width: 480px) {
    .block-5__image {
        min-height: 207px;
    }
}

.block-5__image img {
    -o-object-fit: cover;
    object-fit: cover;
    object-position: right;
}

.footer {
    background: #fafafa;
}

.footer__top {
    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: wrap;
    flex-wrap: wrap;
    gap: 20px;
    padding: clamp(20px, 20px + (60 - 20) * (100vw - 375px) / (1920 - 375), 60px) clamp(0px, 0px + (0 - 0) * (100vw - 375px) / (1920 - 375), 0px) clamp(20px, 20px + (60 - 20) * (100vw - 375px) / (1920 - 375), 60px);
    border-bottom: 1px solid var(--stroke);
}

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

@media (max-width: 480px) {
    .footer__logo {
        max-width: 100%;
        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: wrap;
        flex-wrap: wrap;
        gap: 20px;
    }
}

.footer__logo img {
    margin-bottom: 15px;
}

@media (max-width: 480px) {
    .footer__logo img {
        max-width: 121px;
        margin-bottom: 0;
    }
}

.footer__logo p {
    font-weight: 400;
    font-size: clamp(12px, 12px + (16 - 12) * (100vw - 375px) / (1920 - 375), 16px);
    line-height: 140%;
    color: var(--dop-tekst);
    text-align: center;
}

.footer__info {
    width: 100%;
    max-width: 810px;
}

.footer__info p:nth-child(1) {
    font-weight: 400;
    font-size: clamp(14px, 14px + (18 - 14) * (100vw - 375px) / (1920 - 375), 18px);
    line-height: 140%;
    color: var(--black);
    opacity: 0.4;
    margin-bottom: 5px;
}

.footer__info p:nth-child(2) {
    font-weight: 400;
    font-size: clamp(16px, 16px + (18 - 16) * (100vw - 375px) / (1920 - 375), 18px);
    line-height: 140%;
    color: var(--grey);
    margin-bottom: 20px;
}

.footer__info p:nth-child(3) {
    font-weight: 400;
    font-size: clamp(14px, 14px + (16 - 14) * (100vw - 375px) / (1920 - 375), 16px);
    line-height: 140%;
    color: var(--dop-tekst);
    margin-bottom: 20px;
}

.footer__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: wrap;
    flex-wrap: wrap;
    gap: 20px;
    border: 1px solid var(--stroke);
    border-radius: 100px;
    padding: 8px 8px 8px 20px;
    font-weight: 400;
    font-size: clamp(14px, 14px + (18 - 14) * (100vw - 375px) / (1920 - 375), 18px);
    color: var(--grey);
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
}

@media (max-width: 480px) {
    .footer__button a {
        padding: 6px 6px 6px 12px;
        gap: 10px;
    }

    .footer__button a svg {
        width: 100%;
        max-width: 25px;
        max-height: 25px;
    }
}

.footer__contacts a {
    display: block;
}

.footer__contacts a:first-child {
    font-weight: 400;
    font-size: clamp(24px, 24px + (48 - 24) * (100vw - 375px) / (1920 - 375), 48px);
    line-height: 140%;
    color: var(--blue);
    margin-bottom: clamp(5px, 5px + (20 - 5) * (100vw - 375px) / (1920 - 375), 20px);
}

.footer__contacts a:last-child {
    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__bottom {
    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: wrap;
    flex-wrap: wrap;
    gap: 20px;
    padding: clamp(20px, 20px + (20 - 20) * (100vw - 375px) / (1920 - 375), 20px) clamp(0px, 0px + (0 - 0) * (100vw - 375px) / (1920 - 375), 0px) clamp(20px, 20px + (50 - 20) * (100vw - 375px) / (1920 - 375), 50px);
}

@media (max-width: 480px) {
    .footer__bottom {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        gap: 5px;
    }
}

.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__politic a {
    font-weight: 400;
    font-size: clamp(12px, 12px + (16 - 12) * (100vw - 375px) / (1920 - 375), 16px);
    color: var(--dop-tekst);
    line-height: normal;
}

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

.footer__developer 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: 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;
    font-weight: 400;
    font-size: clamp(12px, 12px + (16 - 12) * (100vw - 375px) / (1920 - 375), 16px);
    color: var(--dop-tekst);
    line-height: normal;
}

.breadcrumbs {
    padding-top: clamp(90px, 90px + (123 - 90) * (100vw - 375px) / (1920 - 375), 123px);
    padding-bottom: clamp(50px, 50px + (80 - 50) * (100vw - 375px) / (1920 - 375), 80px);
}

.breadcrumbs__items {
    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: wrap;
    flex-wrap: wrap;
    gap: 25px;
}

.breadcrumbs__item a {
    font-weight: 400;
    font-size: clamp(14px, 14px + (18 - 14) * (100vw - 375px) / (1920 - 375), 18px);
    color: var(--grey);
    line-height: normal;
}

.breadcrumbs__item span {
    font-weight: 400;
    font-size: clamp(14px, 14px + (18 - 14) * (100vw - 375px) / (1920 - 375), 18px);
    text-decoration: underline;
    -webkit-text-decoration-skip-ink: none;
    text-decoration-skip-ink: none;
    color: var(--grey);
}

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

.about-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(0px, 0px + (0 - 0) * (100vw - 375px) / (1920 - 375), 0px) clamp(20px, 20px + (150 - 20) * (100vw - 375px) / (1920 - 375), 150px);
}

.about-block-1__info {
    width: 100%;
    max-width: 730px;
}

@media (max-width: 992px) {
    .about-block-1__info {
        max-width: 100%;
    }
}

.about-block-1__info h1 {
    font-weight: 400;
    font-size: clamp(24px, 24px + (48 - 24) * (100vw - 375px) / (1920 - 375), 48px);
    line-height: 100%;
    color: var(--grey);
    margin-bottom: clamp(20px, 20px + (30 - 20) * (100vw - 375px) / (1920 - 375), 30px);
}

.about-block-1__info .about-block-1__video-block {
    display: none;
}

@media (max-width: 992px) {
    .about-block-1__info .about-block-1__video-block {
        display: block;
        margin-bottom: 20px;
    }
}

.about-block-1__mission {
    background: linear-gradient(276deg, #88bfff 0%, #4890f2 100%);
    border-radius: 100px;
    padding: 10px 30px;
    font-weight: 400;
    font-size: clamp(14px, 14px + (18 - 14) * (100vw - 375px) / (1920 - 375), 18px);
    color: var(--white);
    line-height: normal;
    max-width: 450px;
    margin-bottom: clamp(20px, 20px + (30 - 20) * (100vw - 375px) / (1920 - 375), 30px);
}

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

.about-block-1__item-count {
    font-weight: 500;
    font-size: clamp(32px, 32px + (64 - 32) * (100vw - 375px) / (1920 - 375), 64px);
    color: var(--blue);
    line-height: normal;
    margin-bottom: 15px;
}

.about-block-1__item-desc {
    font-weight: 400;
    font-size: clamp(14px, 14px + (16 - 14) * (100vw - 375px) / (1920 - 375), 16px);
    color: var(--grey);
    line-height: normal;
}

.about-block-1__video-block {
    width: 100%;
    max-width: 900px;
    border-radius: clamp(4px, 4px + (10 - 4) * (100vw - 375px) / (1920 - 375), 10px);
    position: relative;
}

@media (max-width: 992px) {
    .about-block-1__video-block {
        display: none;
    }
}

.about-block-1__video {
    min-height: 600px;
}

.about-block-1__video video {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: clamp(4px, 4px + (10 - 4) * (100vw - 375px) / (1920 - 375), 10px);
    min-height: 600px;
}

.about-block-1__advantages {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
}

.about-block-1__advantage {
    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: 10px;
    border-radius: clamp(38px, 38px + (100 - 38) * (100vw - 375px) / (1920 - 375), 100px);
    padding: 4px 16px 4px 4px;
    background: var(--white);
    font-weight: 400;
    font-size: clamp(10px, 10px + (18 - 10) * (100vw - 375px) / (1920 - 375), 18px);
    color: var(--grey);
    line-height: normal;
    position: absolute;
}

.about-block-1__advantage:first-child {
    top: 35%;
    left: 5%;
}

.about-block-1__advantage:nth-child(2) {
    right: 5%;
    top: 61%;
}

.about-block-1__advantage:last-child {
    bottom: 9%;
    left: 5%;
}

.about-block-2 {
    margin-bottom: clamp(50px, 50px + (130 - 50) * (100vw - 375px) / (1920 - 375), 130px);
    background: #fafafa;
    padding: clamp(30px, 30px + (100 - 30) * (100vw - 375px) / (1920 - 375), 100px) clamp(0px, 0px + (0 - 0) * (100vw - 375px) / (1920 - 375), 0px);
}

.about-block-2 h2 {
    font-weight: 400;
    font-size: clamp(24px, 24px + (48 - 24) * (100vw - 375px) / (1920 - 375), 48px);
    color: var(--grey);
    line-height: normal;
    margin-bottom: clamp(20px, 20px + (30 - 20) * (100vw - 375px) / (1920 - 375), 30px);
}

.about-block-2__slider-years {
    border-top: 1px solid var(--stroke);
    border-bottom: 1px solid var(--stroke);
}

.about-block-2__slide-year {
    font-weight: 200;
    font-size: clamp(30px, 30px + (150 - 30) * (100vw - 375px) / (1920 - 375), 150px);
    color: var(--dop-tekst);
    line-height: normal;
    position: relative;
}

.about-block-2__slide-year.swiper-slide-active {
    font-weight: 600;
    color: #000;
}

.about-block-2__slide-year::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #000;
}

@media (max-width: 768px) {
    .about-block-2__slide-year::before {
        width: 6px;
        height: 6px;
    }
}

.about-block-2__slider-contents-block {
    padding: clamp(20px, 20px + (60 - 20) * (100vw - 375px) / (1920 - 375), 60px) clamp(0px, 0px + (0 - 0) * (100vw - 375px) / (1920 - 375), 0px);
}

.about-block-2__slide-content {
    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(20px, 20px + (100 - 20) * (100vw - 375px) / (1920 - 375), 100px);
}

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

.about-block-2__slide-img {
    width: 100%;
    max-width: 730px;
}

.about-block-2__slide-info {
    width: 100%;
    max-width: 800px;
}

.about-block-2__slide-info h3 {
    font-weight: 500;
    font-size: clamp(18px, 18px + (24 - 18) * (100vw - 375px) / (1920 - 375), 24px);
    color: var(--grey);
    line-height: normal;
    margin-bottom: 10px;
}

.about-block-2__slide-info p {
    font-weight: 400;
    font-size: clamp(16px, 16px + (18 - 16) * (100vw - 375px) / (1920 - 375), 18px);
    line-height: 140%;
    color: var(--grey);
}

.about-block-2__slider-arrows {
    display: none;
}

@media (max-width: 768px) {
    .about-block-2__slider-arrows {
        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: 10px;
        margin-top: 20px;
    }
}

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

.about-block-3 h2 {
    font-weight: 400;
    font-size: clamp(24px, 24px + (48 - 24) * (100vw - 375px) / (1920 - 375), 48px);
    color: var(--grey);
    line-height: normal;
    margin-bottom: clamp(20px, 20px + (40 - 20) * (100vw - 375px) / (1920 - 375), 40px);
}

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

@media screen and (max-width: 1280px) {
    .about-block-3__grid {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        grid-template-rows: auto;
        gap: 20px;
    }
}

@media screen and (max-width: 576px) {
    .about-block-3__grid {
        display: none;
    }
}

.about-block-3__columns:first-child {
    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: 20px;
}

.about-block-3__columns:last-child {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
}

.about-block-3__column {
    border: 1px solid #e0e0e0;
    border-radius: clamp(0px, 0px + (10 - 0) * (100vw - 375px) / (1920 - 375), 10px);
    padding: clamp(0px, 0px + (20 - 0) * (100vw - 375px) / (1920 - 375), 20px) clamp(0px, 0px + (20 - 0) * (100vw - 375px) / (1920 - 375), 20px);
    width: 100%;
    height: 100%;
}

@media screen and (max-width: 576px) {
    .about-block-3__column {
        border: none;
    }
}

.about-block-3__column-ico {
    margin-bottom: clamp(10px, 10px + (15 - 10) * (100vw - 375px) / (1920 - 375), 15px);
}

.about-block-3__column-name {
    font-weight: 500;
    font-size: clamp(18px, 18px + (24 - 18) * (100vw - 375px) / (1920 - 375), 24px);
    color: var(--grey);
    line-height: normal;
    margin-bottom: clamp(10px, 10px + (15 - 10) * (100vw - 375px) / (1920 - 375), 15px);
}

.about-block-3__column-text {
    font-weight: 400;
    font-size: clamp(16px, 16px + (18 - 16) * (100vw - 375px) / (1920 - 375), 18px);
    color: var(--grey);
    line-height: normal;
}

.about-block-3__column-text p {
    margin-bottom: 15px;
}

.about-block-3__column-text p:last-child {
    margin-bottom: 0;
}

.about-block-3__column-last {
    border-radius: 10px;
    padding: clamp(20px, 20px + (30 - 20) * (100vw - 375px) / (1920 - 375), 30px) clamp(20px, 20px + (40 - 20) * (100vw - 375px) / (1920 - 375), 40px);
    background: var(--blue);
}

@media screen and (max-width: 576px) {
    .about-block-3__column-last {
        margin-top: 30px;
    }
}

.about-block-3__column-last-name {
    font-weight: 500;
    font-size: clamp(18px, 18px + (24 - 18) * (100vw - 375px) / (1920 - 375), 24px);
    color: var(--white);
    line-height: normal;
    margin-bottom: clamp(10px, 10px + (15 - 10) * (100vw - 375px) / (1920 - 375), 15px);
}

.about-block-3__column-last-text {
    font-weight: 400;
    font-size: clamp(16px, 16px + (18 - 16) * (100vw - 375px) / (1920 - 375), 18px);
    color: var(--white);
    line-height: normal;
}

.about-block-3__column-last-button {
    margin-top: 20px;
}

.about-block-3__column-last-button a {
    font-weight: 400;
    font-size: clamp(14px, 14px + (18 - 14) * (100vw - 375px) / (1920 - 375), 18px);
    color: var(--grey);
    line-height: normal;
    background: var(--white);
    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: 16px;
    border: 1px solid #ececec;
    border-radius: 100px;
    padding: 6px 7px 8px 20px;
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
}

@media (max-width: 480px) {
    .about-block-3__column-last-button a {
        padding: 6px 6px 6px 12px;
    }

    .about-block-3__column-last-button a svg {
        width: 100%;
        max-width: 25px;
        max-height: 25px;
    }
}

.about-block-3__slider-block {
    display: none;
}

@media screen and (max-width: 576px) {
    .about-block-3__slider-block {
        display: block;
    }
}

.about-block-3__slider-arrows {
    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;
    margin-top: 30px;
    border: 1px solid #ececec;
    border-radius: 100px;
    padding: 7px 10px;
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
}

.about-block-3__slider-arrow-counts {
    font-weight: 400;
    font-size: 16px;
    color: var(--dop-tekst);
    line-height: normal;
}

.about-block-3__slider-arrow-count-current {
    font-weight: 600;
    font-size: 16px;
    color: var(--blue);
    line-height: normal;
}

.about-block-4 {
    padding: clamp(30px, 30px + (60 - 30) * (100vw - 375px) / (1920 - 375), 60px) clamp(0px, 0px + (0 - 0) * (100vw - 375px) / (1920 - 375), 0px) clamp(0px, 0px + (0 - 0) * (100vw - 375px) / (1920 - 375), 0px);
    margin-bottom: clamp(50px, 50px + (130 - 50) * (100vw - 375px) / (1920 - 375), 130px);
    background: #fafafa;
}

.about-block-4__facts h2 {
    font-weight: 400;
    font-size: clamp(24px, 24px + (48 - 24) * (100vw - 375px) / (1920 - 375), 48px);
    color: var(--black);
    line-height: normal;
    margin-bottom: 10px;
}

.about-block-4__facts p {
    font-weight: 400;
    font-size: clamp(16px, 16px + (18 - 16) * (100vw - 375px) / (1920 - 375), 18px);
    color: var(--grey);
    line-height: normal;
}

.about-block-4__facts-items-block {
    position: relative;
    margin-top: clamp(30px, 30px + (60 - 30) * (100vw - 375px) / (1920 - 375), 60px);
}

.about-block-4__img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    min-height: 600px;
}

.about-block-4__img img {
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.about-block-4__facts-items-absolute {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 0;
    z-index: 5;
    width: 100%;
}

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

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

.about-block-4__facts-item {
    background: var(--white);
    border-radius: 10px;
    padding: clamp(15px, 15px + (30 - 15) * (100vw - 375px) / (1920 - 375), 30px) clamp(15px, 15px + (40 - 15) * (100vw - 375px) / (1920 - 375), 40px);
}

.about-block-4__facts-item-count {
    font-weight: 600;
    font-size: clamp(32px, 32px + (64 - 32) * (100vw - 375px) / (1920 - 375), 64px);
    color: var(--blue);
    line-height: normal;
    margin-bottom: 10px;
}

.about-block-4__facts-item-desc {
    font-weight: 400;
    font-size: clamp(14px, 14px + (16 - 14) * (100vw - 375px) / (1920 - 375), 16px);
    color: var(--grey);
    line-height: normal;
}

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

.drugs__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(20px, 20px + (40 - 20) * (100vw - 375px) / (1920 - 375), 40px);
}

@media (max-width: 768px) {
    .drugs__header {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        gap: 10px;
    }
}

.drugs__header h1 {
    font-weight: 400;
    font-size: clamp(24px, 24px + (48 - 24) * (100vw - 375px) / (1920 - 375), 48px);
    line-height: 100%;
    color: var(--grey);
}

.drugs__header p {
    font-weight: 400;
    font-size: clamp(16px, 16px + (18 - 16) * (100vw - 375px) / (1920 - 375), 18px);
    color: var(--grey);
    line-height: normal;
    width: 100%;
    max-width: 730px;
}

.drugs__header p a {
    font-weight: 700;
    text-decoration: underline;
    -webkit-text-decoration-skip-ink: none;
    text-decoration-skip-ink: none;
    color: var(--blue);
}

.drugs__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: flex-start;
    -ms-flex-align: flex-start;
    align-items: flex-start;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    gap: 20px;
}

@media (max-width: 992px) {
    .drugs__block {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.drugs__categories {
    width: 100%;
    max-width: 24.157303%; /* 430/1780 */
}

@media (max-width: 1280px) {
    .drugs__categories {
        max-width: 30.157303%;
    }
}

@media (max-width: 992px) {
    .drugs__categories {
        max-width: 100%;
    }
}

.drugs__category {
    border-radius: 10px;
    padding: 5px 10px;
    background: #fafafa;
    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;
    margin-bottom: 5px;
    position: relative;
    transition: 0.2s all;
}

.drugs__category:last-child {
    margin-bottom: 0;
}

.drugs__category.active, .drugs__category:hover {
    background: #edf6fd;
}

.drugs__category-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
}

.drugs__category-ico {
    width: 100%;
    max-width: 60px;
}

@media (max-width: 992px) {
    .drugs__category-ico {
        max-width: 30px;
    }
}

.drugs__category-name {
    font-weight: 400;
    font-size: clamp(14px, 14px + (18 - 14) * (100vw - 375px) / (1920 - 375), 18px);
    color: var(--grey);
    line-height: normal;
}

.drugs__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);
    width: 100%;
}

@media (max-width: 1280px) {
    .drugs__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);
    }
}

.drugs__item {
    border: 1px solid var(--stroke);
    border-radius: 5px;
    padding: clamp(15px, 15px + (30 - 15) * (100vw - 375px) / (1920 - 375), 30px) clamp(10px, 10px + (30 - 10) * (100vw - 375px) / (1920 - 375), 30px);
    display: flex;
    flex-direction: column;
}

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

.drugs__item-name {
    font-weight: 500;
    font-size: clamp(14px, 14px + (20 - 14) * (100vw - 375px) / (1920 - 375), 20px);
    color: var(--black);
    line-height: normal;
    margin-bottom: clamp(10px, 10px + (20 - 10) * (100vw - 375px) / (1920 - 375), 20px);
}

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

.drugs__item-desc.disabled {
    display: none;
}

.drugs__quantity {
    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: 10px;
    margin-bottom: clamp(15px, 15px + (20 - 15) * (100vw - 375px) / (1920 - 375), 20px);
}

.drugs__quantity-things {
    background: #f8f8f8;
    border-radius: 5px;
    padding: clamp(5px, 5px + (13 - 5) * (100vw - 375px) / (1920 - 375), 13px) clamp(10px, 10px + (22 - 10) * (100vw - 375px) / (1920 - 375), 22px);
}

.drugs__quantity-things.active {
    border: 1px solid var(--stroke);
}

.drugs__buttons {
    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: wrap;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: auto;
}

.drugs__buttons a {
    border-radius: 100px;
    padding: clamp(10px, 10px + (13 - 10) * (100vw - 375px) / (1920 - 375), 13px) clamp(22px, 22px + (22 - 22) * (100vw - 375px) / (1920 - 375), 22px);
    font-weight: 500;
    font-size: clamp(14px, 14px + (18 - 14) * (100vw - 375px) / (1920 - 375), 18px);
    text-align: center;
    display: block;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    white-space: nowrap;
    background: var(--blue);
    color: var(--white);
}

/*.drugs__buttons a:first-child {*/
/*    background: var(--blue);*/
/*    color: var(--white);*/
/*}*/

/*.drugs__buttons a:last-child {*/
/*    border: 1px solid var(--stroke);*/
/*    color: var(--grey);*/
/*}*/

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

.news__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: wrap;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: clamp(20px, 20px + (40 - 20) * (100vw - 375px) / (1920 - 375), 40px);
}

.news__header h1 {
    font-weight: 400;
    font-size: clamp(24px, 24px + (48 - 24) * (100vw - 375px) / (1920 - 375), 48px);
    line-height: 100%;
    color: var(--grey);
}

.news__header p {
    font-weight: 400;
    font-size: clamp(16px, 16px + (18 - 16) * (100vw - 375px) / (1920 - 375), 18px);
    color: var(--dop-tekst);
    line-height: normal;
    width: 100%;
    max-width: 880px;
}

.news__items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    gap: 0;
    gap: clamp(40px, 40px + (60 - 40) * (100vw - 375px) / (1920 - 375), 60px) clamp(20px, 20px + (20 - 20) * (100vw - 375px) / (1920 - 375), 20px);
    width: 100%;
}

.news__item {
    position: relative;
}

.news__item-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

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

.news__item-img img {
    -o-object-fit: cover;
    object-fit: cover;
}

.news__item-date-type {
    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: wrap;
    flex-wrap: wrap;
    gap: 20px;
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    -webkit-box-shadow: inset 0 -30px 50px 0 rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 -30px 50px 0 rgba(255, 255, 255, 0.1);
    background: #e3e9f8;
    padding: clamp(10px, 10px + (15 - 10) * (100vw - 375px) / (1920 - 375), 15px) clamp(15px, 15px + (20 - 15) * (100vw - 375px) / (1920 - 375), 20px);
    margin-bottom: clamp(10px, 10px + (25 - 10) * (100vw - 375px) / (1920 - 375), 25px);
}

.news__item-date {
    font-weight: 500;
    font-size: clamp(14px, 14px + (18 - 14) * (100vw - 375px) / (1920 - 375), 18px);
    color: var(--grey);
    line-height: normal;
}

.news__item-type {
    font-weight: 500;
    font-size: clamp(14px, 14px + (18 - 14) * (100vw - 375px) / (1920 - 375), 18px);
    color: var(--grey);
    line-height: normal;
}

.news__item-name {
    font-weight: 500;
    font-size: clamp(16px, 16px + (20 - 16) * (100vw - 375px) / (1920 - 375), 20px);
    text-decoration: underline;
    -webkit-text-decoration-skip-ink: none;
    text-decoration-skip-ink: none;
    color: var(--black);
    margin-bottom: 10px;
}

.news__item-text {
    font-weight: 400;
    font-size: clamp(14px, 14px + (18 - 14) * (100vw - 375px) / (1920 - 375), 18px);
    line-height: 140%;
    color: var(--grey);
}

.news__arrows {
    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: 20px;
    margin-top: clamp(30px, 30px + (50 - 30) * (100vw - 375px) / (1920 - 375), 50px);
    border: 1px solid #ececec;
    border-radius: 100px;
    padding: 7px 10px;
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
    margin-left: auto;
    margin-right: auto;
}

.news__arrow-counts {
    font-weight: 400;
    font-size: 16px;
    color: var(--dop-tekst);
    line-height: normal;
}

.news__arrow-count-current {
    font-weight: 600;
    font-size: 16px;
    color: var(--blue);
    line-height: normal;
}

.career-block-1 {
    margin-bottom: clamp(50px, 50px + (80 - 50) * (100vw - 375px) / (1920 - 375), 80px);
}

.career-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: 20px;
}

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

.career-block-1__info {
    width: 100%;
    max-width: 725px;
}

.career-block-1__info h1 {
    font-weight: 400;
    font-size: clamp(24px, 24px + (48 - 24) * (100vw - 375px) / (1920 - 375), 48px);
    line-height: 100%;
    color: var(--grey);
    margin-bottom: clamp(20px, 20px + (30 - 20) * (100vw - 375px) / (1920 - 375), 30px);
}

.career-block-1__info p {
    font-weight: 400;
    font-size: clamp(16px, 16px + (18 - 16) * (100vw - 375px) / (1920 - 375), 18px);
    color: var(--grey);
    line-height: normal;
}

.career-block-1__img {
    width: 100%;
    max-width: 750px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.career-block-1__img img {
    -o-object-fit: cover;
    object-fit: cover;
}

.career-block-2 {
    background: #fafafa;
    padding: clamp(0px, 0px + (80 - 0) * (100vw - 375px) / (1920 - 375), 80px) clamp(0px, 0px + (0 - 0) * (100vw - 375px) / (1920 - 375), 0px);
    margin-bottom: clamp(50px, 50px + (130 - 50) * (100vw - 375px) / (1920 - 375), 130px);
}

@media (max-width: 480px) {
    .career-block-2 {
        background: #ffffff;
    }
}

.career-block-2__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: 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: 0;
}

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

.career-block-2__column {
    width: 100%;
    max-width: 32.58427%; /* 580/1780 */
    border-radius: 20px 0 0 20px;
    background: var(--blue);
    padding: clamp(30px, 30px + (40 - 30) * (100vw - 375px) / (1920 - 375), 40px) clamp(16px, 16px + (40 - 16) * (100vw - 375px) / (1920 - 375), 40px) clamp(30px, 30px + (60 - 30) * (100vw - 375px) / (1920 - 375), 60px);
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
}

@media (max-width: 1024px) {
    .career-block-2__column {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .career-block-2__column {
        border-radius: 0;
    }
}

@media (max-width: 480px) {
    .career-block-2__column {
        margin-bottom: 30px;
    }
}

.career-block-2__column h2 {
    font-weight: 400;
    font-size: clamp(24px, 24px + (48 - 24) * (100vw - 375px) / (1920 - 375), 48px);
    line-height: 100%;
    color: var(--white);
    margin-bottom: clamp(20px, 20px + (30 - 20) * (100vw - 375px) / (1920 - 375), 30px);
}

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

.career-block-2__column video {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    max-height: 280px;
    margin-bottom: clamp(20px, 20px + (30 - 20) * (100vw - 375px) / (1920 - 375), 30px);
}

.career-block-2__email-block {
    background: var(--white);
    border-radius: clamp(5px, 5px + (10 - 5) * (100vw - 375px) / (1920 - 375), 10px);
    padding: clamp(16px, 16px + (20 - 16) * (100vw - 375px) / (1920 - 375), 20px) clamp(16px, 16px + (20 - 16) * (100vw - 375px) / (1920 - 375), 20px);
}

.career-block-2__email-text {
    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: 15px;
    font-weight: 400;
    font-size: clamp(16px, 16px + (18 - 16) * (100vw - 375px) / (1920 - 375), 18px);
    color: var(--grey);
    line-height: normal;
    margin-bottom: 5px;
}

.career-block-2__email a {
    font-weight: 600;
    font-size: clamp(16px, 16px + (18 - 16) * (100vw - 375px) / (1920 - 375), 18px);
    color: var(--blue);
    line-height: normal;
}


@media (max-width: 480px) {
    .career-block-2__items-block {
        display: none;
    }
}

.career-block-2__items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    gap: 20px;
    padding: clamp(0px, 0px + (80 - 0) * (100vw - 375px) / (1920 - 375), 80px) clamp(0px, 0px + (80 - 0) * (100vw - 375px) / (1920 - 375), 80px) clamp(0px, 0px + (0 - 0) * (100vw - 375px) / (1920 - 375), 0px);
    background: var(--white);
    width: 100%;
}

@media (max-width: 768px) {
    .career-block-2__items {
        grid-template-columns: repeat(2, 1fr);
    }
}

.career-block-2__item-column {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    gap: 20px;
    padding: clamp(20px, 20px + (20 - 20) * (100vw - 375px) / (1920 - 375), 20px) clamp(0px, 0px + (80 - 0) * (100vw - 375px) / (1920 - 375), 80px) clamp(0px, 0px + (80 - 0) * (100vw - 375px) / (1920 - 375), 80px);
    background: var(--white);
}

.career-block-2__item {
    border-radius: clamp(0px, 0px + (20 - 0) * (100vw - 375px) / (1920 - 375), 20px);
    padding: clamp(0px, 0px + (20 - 0) * (100vw - 375px) / (1920 - 375), 20px) clamp(0px, 0px + (20 - 0) * (100vw - 375px) / (1920 - 375), 20px);
    background: #fafafa;
}

.career-block-2__item-ico {
    margin-bottom: clamp(10px, 10px + (20 - 10) * (100vw - 375px) / (1920 - 375), 20px);
}

.career-block-2__item-ico-name {
    font-weight: 600;
    font-size: clamp(14px, 14px + (16 - 14) * (100vw - 375px) / (1920 - 375), 16px);
    color: var(--blue);
    line-height: normal;
    margin-bottom: 5px;
}

.career-block-2__item-name {
    font-weight: 600;
    font-size: clamp(18px, 18px + (24 - 18) * (100vw - 375px) / (1920 - 375), 24px);
    color: var(--grey);
    line-height: normal;
    margin-bottom: clamp(10px, 10px + (20 - 10) * (100vw - 375px) / (1920 - 375), 20px);
}

.career-block-2__item-desc {
    font-weight: 400;
    font-size: clamp(16px, 16px + (18 - 16) * (100vw - 375px) / (1920 - 375), 18px);
    color: var(--grey);
    line-height: normal;
}

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

.career-block-3 h2 {
    font-weight: 400;
    font-size: clamp(24px, 24px + (48 - 24) * (100vw - 375px) / (1920 - 375), 48px);
    line-height: 100%;
    color: var(--grey);
    margin-bottom: clamp(20px, 20px + (40 - 20) * (100vw - 375px) / (1920 - 375), 40px);
}

.career-block-3__vacancy {
    border-bottom: 1px solid var(--stroke);
    border-top: 1px solid var(--stroke);
    padding: clamp(16px, 16px + (25 - 16) * (100vw - 375px) / (1920 - 375), 25px) clamp(16px, 16px + (20 - 16) * (100vw - 375px) / (1920 - 375), 20px);
    cursor: pointer;
}

.career-block-3__vacancy.active .career-block-3__vacancy-name svg:nth-child(1) {
    display: none;
}

.career-block-3__vacancy.active .career-block-3__vacancy-name svg:nth-child(2) {
    display: block;
}

.career-block-3__vacancy-name {
    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;
    font-weight: 600;
    font-size: clamp(16px, 16px + (24 - 16) * (100vw - 375px) / (1920 - 375), 24px);
    color: var(--blue);
    line-height: normal;
}

.career-block-3__vacancy-name svg:nth-child(2) {
    display: none;
}

.career-block-3__vacancy-content {
    display: none;
    padding: 20px 0;
}

.career-block-3__vacancy-content p {
    font-weight: 400;
    font-size: clamp(16px, 16px + (18 - 16) * (100vw - 375px) / (1920 - 375), 18px);
    color: var(--grey);
    line-height: normal;
    margin-bottom: 10px;
}

.career-block-3__vacancy-content ul {
    list-style: disc;
    padding-left: 20px;
    font-weight: 400;
    font-size: clamp(16px, 16px + (18 - 16) * (100vw - 375px) / (1920 - 375), 18px);
    line-height: 160%;
    color: var(--grey);
    margin-bottom: 20px;
}

.career-block-3__vacancy-email-block {
    background: rgba(0, 134, 229, 0.1);
    border-radius: clamp(5px, 5px + (10 - 5) * (100vw - 375px) / (1920 - 375), 10px);
    padding: clamp(16px, 16px + (20 - 16) * (100vw - 375px) / (1920 - 375), 20px) clamp(16px, 16px + (20 - 16) * (100vw - 375px) / (1920 - 375), 20px);
}

.career-block-3__vacancy-email-text {
    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: 15px;
    font-weight: 400;
    font-size: clamp(16px, 16px + (18 - 16) * (100vw - 375px) / (1920 - 375), 18px);
    color: var(--grey);
    line-height: normal;
    margin-bottom: 5px;
}

.career-block-3__vacancy-email a {
    font-weight: 600;
    font-size: clamp(16px, 16px + (18 - 16) * (100vw - 375px) / (1920 - 375), 18px);
    color: var(--blue);
    line-height: normal;
}

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

.contacts h1 {
    font-weight: 400;
    font-size: clamp(24px, 24px + (48 - 24) * (100vw - 375px) / (1920 - 375), 48px);
    line-height: 100%;
    color: var(--grey);
    margin-bottom: clamp(20px, 20px + (40 - 20) * (100vw - 375px) / (1920 - 375), 40px);
}

.contacts__items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    gap: 0;
    gap: clamp(5px, 5px + (5 - 5) * (100vw - 375px) / (1920 - 375), 5px) clamp(20px, 20px + (20 - 20) * (100vw - 375px) / (1920 - 375), 20px);
    margin-bottom: clamp(35px, 35px + (40 - 35) * (100vw - 375px) / (1920 - 375), 40px);
}

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

.contacts__item {
    background: #fafafa;
    padding: clamp(16px, 16px + (30 - 16) * (100vw - 375px) / (1920 - 375), 30px) clamp(16px, 16px + (30 - 16) * (100vw - 375px) / (1920 - 375), 30px);
    border-radius: clamp(5px, 5px + (10 - 5) * (100vw - 375px) / (1920 - 375), 10px);
}

.contacts__item-title {
    font-weight: 400;
    font-size: clamp(14px, 14px + (18 - 14) * (100vw - 375px) / (1920 - 375), 18px);
    line-height: 140%;
    color: var(--grey);
    margin-bottom: 5px;
}

.contacts__item-phone a {
    font-weight: 500;
    font-size: clamp(24px, 24px + (32 - 24) * (100vw - 375px) / (1920 - 375), 32px);
    line-height: 140%;
    color: var(--blue);
}

.contacts__item-email a {
    font-weight: 500;
    font-size: clamp(20px, 20px + (24 - 20) * (100vw - 375px) / (1920 - 375), 24px);
    line-height: 140%;
    color: var(--blue);
}

.contacts__item-address {
    font-weight: 500;
    font-size: clamp(16px, 16px + (18 - 16) * (100vw - 375px) / (1920 - 375), 18px);
    color: var(--blue);
    line-height: normal;
}

.contacts__feedback {
    position: relative;
    margin-bottom: clamp(30px, 30px + (40 - 30) * (100vw - 375px) / (1920 - 375), 40px);
}

.contacts__feedback-img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    min-height: 900px;
}

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

.contacts__feedback-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: 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;
    padding: clamp(30px, 30px + (40 - 30) * (100vw - 375px) / (1920 - 375), 40px) clamp(16px, 16px + (40 - 16) * (100vw - 375px) / (1920 - 375), 40px);
    background: url("../img/img-12.png") no-repeat;
    background-size: cover;
}

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

@media (max-width: 480px) {
    .contacts__feedback-block {
        background: #fafafa;
    }
}

.contacts__feedback-info {
    width: 100%;
    max-width: 565px;
}

.contacts__feedback-info h2 {
    font-weight: 400;
    font-size: clamp(24px, 24px + (48 - 24) * (100vw - 375px) / (1920 - 375), 48px);
    line-height: 100%;
    color: var(--white);
    margin-bottom: clamp(10px, 10px + (30 - 10) * (100vw - 375px) / (1920 - 375), 30px);
}

@media (max-width: 480px) {
    .contacts__feedback-info h2 {
        color: var(--grey);
    }
}

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

@media (max-width: 480px) {
    .contacts__feedback-info p {
        color: var(--grey);
    }
}

.contacts__feedback-form {
    width: 100%;
    max-width: 1000px;
    background: var(--white);
    border-radius: 10px;
    padding: clamp(30px, 30px + (40 - 30) * (100vw - 375px) / (1920 - 375), 40px) clamp(16px, 16px + (40 - 16) * (100vw - 375px) / (1920 - 375), 40px);
}

@media (max-width: 480px) {
    .contacts__feedback-form {
        background: none;
        padding: 0;
    }
}

.contacts__feedback-form h3 {
    font-weight: 500;
    font-size: clamp(18px, 18px + (24 - 18) * (100vw - 375px) / (1920 - 375), 24px);
    color: var(--grey);
    line-height: normal;
    margin-bottom: 10px;
}

@media (max-width: 480px) {
    .contacts__feedback-form h3 {
        display: none;
    }
}

.contacts__feedback-form p {
    font-weight: 400;
    font-size: clamp(14px, 14px + (18 - 14) * (100vw - 375px) / (1920 - 375), 18px);
    line-height: 140%;
    color: var(--grey);
    margin-bottom: 15px;
}

@media (max-width: 480px) {
    .contacts__feedback-form p {
        display: none;
    }
}

.contacts__feedback-form-options {
    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: wrap;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
}

@media (max-width: 480px) {
    .contacts__feedback-form-options {
        margin-bottom: 0;
    }
}

@media (max-width: 480px) {
    .contacts__feedback-form-option {
        width: 100%;
    }
}

.contacts__feedback-form-option a {
    font-weight: 500;
    font-size: 18px;
    color: var(--grey);
    line-height: normal;
    border: 1px solid var(--stroke);
    border-radius: 100px;
    padding: 15px 30px;
    display: inline-block;
}

@media (max-width: 480px) {
    .contacts__feedback-form-option a {
        width: 100%;
        display: block;
        text-align: center;
    }
}

.contacts__feedback-form-option.active a {
    background: var(--blue);
    color: var(--white);
    border: 1px solid var(--blue);
}

.contacts form {
    margin-top: 30px;
}

@media (max-width: 480px) {
    .contacts form {
        display: none;
    }
}

.contacts__feedback-form-input {
    margin-bottom: 15px;
}

.contacts__feedback-form-input input {
    border: 1px solid var(--stroke);
    border-radius: 100px;
    padding: 15px 20px;
    font-weight: 400;
    font-size: clamp(14px, 14px + (18 - 14) * (100vw - 375px) / (1920 - 375), 18px);
    color: var(--dop-tekst);
    line-height: normal;
    width: 100%;
}

.contacts__feedback-form-input textarea {
    border: 1px solid var(--stroke);
    border-radius: 10px;
    padding: 15px 20px;
    font-weight: 400;
    font-size: clamp(14px, 14px + (18 - 14) * (100vw - 375px) / (1920 - 375), 18px);
    color: var(--dop-tekst);
    line-height: normal;
    width: 100%;
    min-height: 117px;
    max-height: 117px;
}

.contacts__feedback-form-submit {
    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;
}

.contacts__feedback-form-submit input {
    border: 1px solid var(--blue);
    border-radius: 100px;
    padding: 15px 40px;
    font-weight: 500;
    font-size: clamp(14px, 14px + (18 - 14) * (100vw - 375px) / (1920 - 375), 18px);
    color: var(--blue);
    line-height: normal;
    cursor: pointer;
}

.contacts__feedback-form-submit p {
    font-weight: 400;
    font-size: 15px;
    line-height: 120%;
    color: #999ea6;
    margin-bottom: 0;
}

.contacts__feedback-form-submit p a {
    font-weight: 400;
    font-size: 15px;
    line-height: 120%;
    color: #999ea6;
    text-decoration: underline;
    -webkit-text-decoration-skip-ink: none;
    text-decoration-skip-ink: none;
}

.contacts__map-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: normal;
    -ms-flex-align: normal;
    align-items: normal;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    gap: 20px;
}

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

.contacts__details {
    width: 100%;
    max-width: 41.011236%; /* 730/1780 */
    border-radius: clamp(0px, 0px + (10 - 0) * (100vw - 375px) / (1920 - 375), 10px);
    padding: clamp(0px, 0px + (40 - 0) * (100vw - 375px) / (1920 - 375), 40px) clamp(0px, 0px + (30 - 0) * (100vw - 375px) / (1920 - 375), 30px);
    background: #fafafa;
}

@media (max-width: 768px) {
    .contacts__details {
        max-width: 100%;
        background: #ffffff;
    }
}

.contacts__details h4 {
    font-weight: 500;
    font-size: clamp(16px, 16px + (20 - 16) * (100vw - 375px) / (1920 - 375), 20px);
    line-height: 100%;
    color: var(--grey);
    margin-bottom: clamp(10px, 10px + (20 - 10) * (100vw - 375px) / (1920 - 375), 20px);
}

.contacts__details p {
    font-weight: 400;
    font-size: clamp(14px, 14px + (16 - 14) * (100vw - 375px) / (1920 - 375), 16px);
    color: var(--grey);
    line-height: normal;
}

.contacts__map {
    width: 100%;
    max-width: 57.865169%; /* 1030/1780 */
}

@media (max-width: 768px) {
    .contacts__map {
        max-width: 100%;
        height: 500px;
    }
}

.contacts__map iframe {
    height: 100%;
}

.news__detail h1 {
    font-weight: 400;
    font-size: clamp(20px, 20px + (40 - 20) * (100vw - 375px) / (1920 - 375), 40px);
    color: var(--grey);
    line-height: normal;
    margin-bottom: 20px;
    text-align: center;
}

.news__detail-header {
    display: none;
}

@media (max-width: 768px) {
    .news__detail-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: 15px;
    }

    .news__detail-header .news__detail-type {
        display: block;
        margin: 0;
        padding: 10px 20px;
    }

    .news__detail-header .news__detail-date {
        display: block;
        margin: 0;
    }
}

.news__detail-type {
    font-weight: 500;
    font-size: clamp(14px, 14px + (18 - 14) * (100vw - 375px) / (1920 - 375), 18px);
    color: var(--black);
    line-height: normal;
    border-radius: 100px;
    padding: 15px 33px;
    background: #e5eaf8;
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
    margin: 0 auto 20px;
}

@media (max-width: 768px) {
    .news__detail-type {
        display: none;
    }
}

.news__detail-date {
    font-weight: 400;
    font-size: clamp(14px, 14px + (18 - 14) * (100vw - 375px) / (1920 - 375), 18px);
    text-align: center;
    color: var(--grey);
    line-height: normal;
    margin-bottom: 50px;
}

@media (max-width: 768px) {
    .news__detail-date {
        display: none;
    }
}

.news__detail-image {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 40px;
}

.news__detail-text {
    font-weight: 400;
    font-size: clamp(14px, 14px + (18 - 14) * (100vw - 375px) / (1920 - 375), 18px);
    color: var(--grey);
    line-height: normal;
    margin-bottom: 50px;
}

.news__detail-text p {
    margin-bottom: 15px;
}

.news__detail-text img {
    width: 100%;
}

.news__detail-text ul {
    list-style: disc;
    padding-left: 20px;
}

.news__detail-text ul li {
    margin-bottom: 10px;
}

.news__detail-text ul li:last-child {
    margin-bottom: 0px;
}

.news__detail-arrows {
    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;
}

.news__detail-arrow-prev 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: 20px;
    border: 1px solid #ececec;
    border-radius: 100px;
    font-weight: 400;
    font-size: clamp(14px, 14px + (18 - 14) * (100vw - 375px) / (1920 - 375), 18px);
    color: var(--dop-tekst);
    line-height: normal;
    padding: 15.5px 37.5px;
    width: 100%;
}

@media (max-width: 768px) {
    .news__detail-arrow-prev a {
        padding: 10px 26px;
    }
}

.news__detail-arrow-next 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: 20px;
    border: 1px solid #ececec;
    border-radius: 100px;
    font-weight: 500;
    font-size: clamp(14px, 14px + (18 - 14) * (100vw - 375px) / (1920 - 375), 18px);
    color: var(--blue);
    line-height: normal;
    padding: 15.5px 37.1px;
    width: 100%;
}

@media (max-width: 768px) {
    .news__detail-arrow-next a {
        padding: 10px 26px;
    }
}

.header__burger-close {
    display: none;
}

.header-mob {
    padding-top: 50px;
    padding-bottom: 70px;
    display: none;
}

.header-mob__menu ul {
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    color: var(--grey);
    margin-bottom: 40px;
}

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

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

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

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

.header-mob__email {
    margin-bottom: 20px;
}

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

.header-mob__address {
    font-weight: 500;
    font-size: 16px;
    color: var(--blue);
    line-height: normal;
    margin-bottom: 20px;
}

.header-mob__info {
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    color: var(--dop-tekst);
    margin-bottom: 20px;
}

.header-mob__button a {
    font-weight: 400;
    font-size: 14px;
    color: var(--grey);
    line-height: normal;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid #ececec;
    border-radius: 100px;
    padding: 6.5px 7px 6.5px 12px;
    max-width: max-content;
}

.career-block-1__button {
    margin-top: 20px;
}

.career-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: 20px;
    border: 1px solid var(--stroke);
    border-radius: 100px;
    padding: 8px 8px 8px 20px;
    font-weight: 400;
    font-size: clamp(14px, 14px + (18 - 14) * (100vw - 375px) / (1920 - 375), 18px);
    color: var(--grey);
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
}

@media (max-width: 480px) {
    .career-block-1__button a {
        padding: 6px 6px 6px 12px;
    }
}

.contacts__feedback-form-2 {
    display: none;
}

.wpcf7-spinner {
    display: none !important;
}

.drugs__item-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 200;
    background: rgba(32, 44, 91, 0.2);
    display: none;
}

.drugs__item-modal-flex {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.drugs__item-modal-block {
    width: 100%;
    max-width: 800px;
    background: var(--white);
    border-radius: 0.31rem;
    padding: 3.75rem;
    position: relative;
}

@media (max-width: 768px) {
    .drugs__item-modal-block {
        padding: 50px 20px 40px;
    }
}

.drugs__item-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
}

@media (max-width: 768px) {
    .drugs__item-modal-close {
        top: 15px;
        right: 15px;
    }
}

.drugs__item-modal-text h3 {
    font-weight: 500;
    font-size: 1.5rem;
    text-align: center;
    color: var(--black);
    line-height: normal;
    margin-bottom: 15px;
}

.drugs__item-modal-text p {
    margin-bottom: 10px;
    font-weight: 400;
    font-size: 1.12rem;
    text-align: center;
    color: var(--grey);
    line-height: normal;
}

.drugs__item-modal-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    max-width: 370px;
    margin: 30px auto 0;
}

.drugs__item-modal-buttons a {
    font-weight: 500;
    font-size: 1.12rem;
    line-height: normal;
    border-radius: 6.25rem;
    padding: 0.81rem 20px;
    display: block;
    border: 1px solid transparent;
    width: 100%;
    text-align: center;
}

.drugs__item-modal-buttons a:first-child {
    color: var(--white);
    background: var(--blue);
}

.drugs__item-modal-buttons a:last-child {
    color: var(--grey);
    border: 1px solid var(--stroke);
}

.cookies {
    position: fixed;
    left: 0;
    bottom: 60px;
    width: 100%;
    z-index: 999;
    display: none;
}

@media (max-width: 576px) {
    .cookies {
        bottom: 30px;
    }
}

.cookies.active {
    display: block;
}

.cookies__content {
    border: 1px solid #eaeaea;
    border-radius: 10px;
    padding: 20px 30px;
    background: #fafafa;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    max-width: 1660px;
    margin: 0 auto;
}

@media (max-width: 576px) {
    .cookies__content {
        flex-direction: column;
        gap: 10px;
        padding: 20px 15px;
    }
}

.cookies__text {
    width: 100%;
    max-width: 1400px;
}

.cookies__text h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 20px;
    line-height: 100%;
    color: var(--grey);
    margin-bottom: 10px;
}

.cookies__text p {
    font-weight: 400;
    font-size: 16px;
    color: var(--grey);
    line-height: normal;
    margin-bottom: 10px;
}

.cookies__text p a {
    font-weight: 600;
    font-size: 16px;
    text-decoration: underline;
    text-decoration-skip-ink: none;
    color: var(--blue);
}

.cookies__button {
    width: 100%;
    max-width: 120px;
    font-weight: 700;
    font-size: 16px;
    color: var(--white);
    line-height: normal;
    border-radius: 100px;
    padding: 9px 15px;
    background: var(--blue);
    text-align: center;
    cursor: pointer;
}