/* База */

:root {
    --white: #fff;
    --light: #EDF5F8;
    --black: #000;
    --dark: #111111;
    --dark-light: rgba(17, 17, 17, .6);
    --dark-white: rgba(17, 17, 17, .4);
    --blue: #0097D8;
    --super-blue: #24D6FF;
    --blue-light: #E7F2F6;
    --green: #1BCE1B;
    --teal: #0AAA9B;
    --super-green: #37EE50;
    --font-main: "Brown LL Pan", Arial, sans-serif;
    --mobile: 1199px;
}

@font-face {
    font-display: swap;
    font-family: 'Brown LL Pan';
    src: url('./fonts/BrownLLPan-Medium.woff') format('woff'),
    url('./fonts/BrownLLPan-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-display: swap;
    font-family: 'Brown LL Pan';
    src: url('./fonts/BrownLLPan-Regular.woff') format('woff'),
    url('./fonts/BrownLLPan-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-display: swap;
    font-family: 'Brown LL Pan';
    src: url('./fonts/BrownLLPan-Light.woff') format('woff'),
    url('./fonts/BrownLLPan-Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    display: flex;
    flex-direction: column;
    min-width: 375px;
    min-height: 100vh;
    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    color: var(--dark);
    background-color: var(--white);
    overflow-x: hidden;
}

body.fixed {
    overflow: hidden;
}

svg {
    display: flex;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
}

.main {
    flex-grow: 1;
    overflow-x: clip;
    padding-top: 105px;
}

@media screen and (max-width: 1199px) {
    .mob-hidden {
        display: none !important;
    }

    .main {
        padding-top: 60px;
    }
}

.fixed {
    overflow: hidden;
}

.hidden {
    display: none;
}

*[disabled] {
    pointer-events: none;
    opacity: .5;
}

.center {
    justify-self: center;
}

.centered {
    margin: 0 auto;
}

.temp-img {
    display: flex;
    width: 100vw;
    height: 840px;
    object-fit: cover;
    object-position: center;
}

.grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-flow: dense;
    gap: 40px;
    width: 100%;
}

@media screen and (max-width: 1199px) {
    .grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
}

.grid .grid__item--1 {
    grid-column: span 1;
}

.grid .grid__item--2 {
    grid-column: span 2;
}

.grid .grid__item--3 {
    grid-column: span 3;
}

.grid .grid__item--4 {
    grid-column: span 4;
}

.grid .grid__item--5 {
    grid-column: span 5;
}

.grid .grid__item--6 {
    grid-column: span 6;
}

.grid .grid__item--7 {
    grid-column: span 7;
}

.grid .grid__item--8 {
    grid-column: span 8;
}

.grid .grid__item--9 {
    grid-column: span 9;
}

.grid .grid__item--10 {
    grid-column: span 10;
}

.grid .grid__item--11 {
    grid-column: span 11;
}

.grid .grid__item--12 {
    grid-column: span 12;
}

@media screen and (max-width: 1199px) {
    .grid .grid__item-mob--1 {
        grid-column: span 1;
    }

    .grid .grid__item-mob--2 {
        grid-column: span 2;
    }

    .grid .grid__item-mob--3 {
        grid-column: span 3;
    }

    .grid .grid__item-mob--4 {
        grid-column: span 4;
    }
}

.mb-34 {
    margin-bottom: 34px;
}

.mb-50 {
    margin-bottom: 50px;
}

.mb-70 {
    margin-bottom: 70px;
}

.mb-100 {
    margin-bottom: 100px;
}

@media screen and (max-width: 1199px) {
    .mbm-40 {
        margin-bottom: 40px;
    }
}

/* !База */

.container {
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    max-width: 1240px;
    z-index: 1;
}

.container.container--fluid {
    max-width: 100%;
}

.button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 17px 56px;
    min-width: 184px;
    width: fit-content;
    background-color: var(--light);
    border-radius: 75px;
    transition: .2s ease;
    cursor: pointer;
}

.button span {
    font-size: 20px;
    font-weight: 400;
    color: var(--blue);
}

.button.button--light {
    padding: 16px 56px;
    min-width: 260px;
    background: #FFFFFF1A;
    border: 1px solid var(--white);
    backdrop-filter: blur(10px);
}

.button.button--light:hover {
    background-color: var(--green);
    border-color: var(--green);
}

.button.button--light span {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    background: transparent;
}

@media screen and (max-width: 1199px) {
    .button.button--light {
        padding: 16px 30px;
        min-width: 176px;
    }

    .button.button--light span {
        font-size: 20px;
    }
}

.text {
    font-size: 20px;
    font-weight: 400;
    color: var(--dark);
}

.text.text--accent {
    font-size: 24px;
}

@media screen and (max-width: 1199px) {
    .text.text--accent {
        font-size: 20px;
    }
}

.show-more {
    display: flex;
    align-items: center;
    gap: 16px;
    width: fit-content;
    font-size: 24px;
    font-weight: 400;
    color: var(--blue);
}

.show-more svg {
    display: flex;
    width: 40px;
    height: 21px;
}

@media screen and (max-width: 1199px) {
    .logo {
        display: flex;
        width: 142px;
        height: 36px;
    }
}

/* HEADER */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    padding: 19px 0;
    min-height: 105px;
    background-color: var(--white);
    border-bottom: 1px solid #00000014;
    z-index: 1001;
    transition: transform .2s ease;
}

@media screen and (max-width: 1199px) {
    .header {
        padding: 12px 0;
        min-height: 60px;
    }
}

.header__meta {
    display: none;
    align-items: center;
    gap: 34px;
}

@media screen and (max-width: 1199px) {
    .header__meta {
        display: flex;
    }
}

.header.hidden {
    transform: translateY(-115px);
}

.header__wrapper {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

@media screen and (max-width: 1199px) {
    .header__wrapper {
        align-items: center;
    }
}

.header__menu {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 18px;
}

.header__top {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 32px;
}

.header__link {
    padding: 0 !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    color: var(--dark-light) !important;
    text-decoration: none !important;
    transition: .2s ease !important;
}

.header__menu a {
    padding: 0;
}

.header__link:hover {
    color: var(--dark) !important;
}

.header__dropdown {
    position: absolute;
    top: calc(100% + 20px);
    right: 0;
    min-width: 880px;
}

.header__dropdown .header__link:hover {
    opacity: .7;
}

.header__item {
    display: none;
    align-items: stretch;
    justify-content: space-between;
    gap: 20px;
    height: fit-content;
    background-color: var(--white);
    border-radius: 0 0 32px 32px;
}

.header__item.active {
    display: flex;
}

.header__info {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 24px 0 40px 46px;
}

.header__nav {
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.header__nav .header__link {
    font-size: 20px !important;
    color: var(--dark) !important;
}

.header__picture {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
    width: 100%;
    max-width: 384px;
    min-height: 353px;
    height: auto;
    border-radius: 0 0 31px 0;
    pointer-events: none;
    user-select: none;
    overflow: hidden;
}

.header__picture img {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.header__title {
    display: flex;
    align-items: flex-end;
    gap: 16px;
    font-size: 34px;
    font-weight: 400;
    text-transform: uppercase;
    text-decoration: none !important;
    color: var(--blue) !important;
}

.header__title svg {
    display: flex;
    width: 36px;
    height: 36px;
    transform: rotate(-90deg);
}

/* !HEADER */

.burger {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 24px;
    height: 16px;
    cursor: pointer;
}

.burger__item,
.burger::before,
.burger::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--blue);
}

.burger__item {
    top: 7px;
}

.burger::after {
    top: 14px;
}

.burger.active .burger__item {
    display: none;
}

.burger.active::before {
    top: 7px;
    transform: rotate(45deg);
}

.burger.active::after {
    top: 7px;
    transform: rotate(-45deg);
}

.nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav__link {
    position: relative;
    display: flex;
    align-items: center;
    gap: 4px;
    text-transform: uppercase;
    color: var(--dark);
    text-decoration: none !important;
    cursor: pointer;
}

.nav__link.active {
    color: var(--blue);
}

.nav__link.active::before {
    background-color: var(--blue);
}

.nav__link::before {
    content: '';
    position: absolute;
    top: calc(100% + 2px);
    left: 0;
    width: 100%;
    height: 2px;
    background-color: transparent;
}

.nav__link:hover {
    color: var(--blue);
}

.nav__link:hover::before {
    background-color: var(--blue);
}

.nav__link svg {
    display: flex;
    width: 18px;
    height: 18px;
}

@media screen and (max-width: 1199px) {
    .nav {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 32px;
    }

    .nav__link {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        font-size: 20px;
        font-weight: 400;
        text-transform: uppercase;
    }

    .nav__link::before {
        display: none;
    }

    .nav__link.active::before {
        display: none;
    }

    .nav__link.active svg {
        transform: rotate(180deg);
    }

    .nav__link.active .nav__list {
        padding-top: 32px;
        height: 100%;
    }

    .nav__wrapper {
        display: flex;
        align-items: center;
        gap: 4px;
    }

    .nav__list {
        display: flex;
        flex-direction: column;
        gap: 32px;
        align-items: flex-start;
        padding-left: 20px;
        height: 0;
        overflow: hidden;
    }

    .nav__list .nav__link {
        font-size: 20px;
        font-weight: 400;
        text-align: left;
        text-transform: none;
    }
}

.nav__search {
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav__search svg {
    display: flex;
    width: 20px;
    height: 20px;
}

.lang-switcher {
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 7px;
}

.lang-switcher.lang-switcher--dark .lang-switcher__link {
    color: var(--dark);
}

.lang-switcher.active .lang-switcher__dropdown {
    opacity: 1;
    visibility: visible;
}

.lang-switcher__dropdown {
    position: absolute;
    top: 100%;
    left: -11px;
    display: flex;
    flex-direction: column;
    padding: 12px 6px 12px 12px;
    min-width: 85px;
    background-color: var(--white);
    border-radius: 0 0 10px 10px;
    opacity: 0;
    visibility: hidden;
    transition: .2s ease;
    z-index: 3;
}

.lang-switcher__dropdown .lang-switcher__link {
    padding: 11px 0;
    font-size: 18px;
    font-weight: 400;
    border-top: 1px solid #00000014;
}

.lang-switcher__dropdown .lang-switcher__link:last-child {
    padding-bottom: 0;
}

.lang-switcher__link {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
    color: var(--dark);
}

.lang-switcher__link svg {
    display: flex;
    width: 18px;
    height: 18px;
}

.section.section--default {
    padding: 80px 0;
    background-color: var(--white);
}

@media screen and (max-width: 1199px) {
    .section.section--default {
        padding: 60px 0;
    }
}

.section.section--about {
    position: relative;
    min-height: 880px;
    padding: 190px 0;
    background-image: var(--background);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

@media screen and (max-width: 1199px) {
    .section.section--about {
        padding-top: 140px;
        padding-bottom: 230px;
    }
}

.section.section--about::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: #00000033;
    z-index: 0;
    pointer-events: none;
    user-select: none;
}

.header-block {
    display: flex;
}

.title {
    position: relative;
    position: relative;
    display: flex;
    width: fit-content !important;
    font-size: 48px;
    font-weight: 400;
    color: var(--dark);
}

@media screen and (max-width: 1199px) {
    .title {
        font-size: 34px;
    }
}

.title::before {
    content: '';
    position: absolute;
    top: calc(100% + 8px);
    display: block;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #0097D8 0%, #1BCE1B 100%);
}

.slider.slider--auto {
    display: flex;
    width: 100%;
}

.slider.slider--auto .swiper {
    width: 100%;
}

.slider.slider--visible .swiper {
    overflow: visible !important;
}

.slider.slider--auto-width .swiper-slide {
    max-width: fit-content;
}

.slider.slider--projects {
    position: relative;
}

.slider.slider--projects .swiper-meta {
    position: relative;
    width: 100%;
    margin-top: -22px;
}

@media screen and (max-width: 1199px) {
    .slider.slider--projects .swiper-meta {
        margin-top: 20px;
    }
}

.slider.slider--projects .swiper-slide {
    width: 100% !important;
}

.slider .swiper-slide {
    height: auto;
}

.swiper-pagination {
    display: flex !important;
    align-items: center !important;
    gap: 4px !important;
    position: static !important;
}

@media screen and (max-width: 1199px) {
    .swiper-pagination {
        justify-content: center !important;
        margin: 0 auto;
    }
}

.swiper-pagination-bullet {
    display: flex !important;
    flex-shrink: 0 !important;
    width: 16px !important;
    height: 16px !important;
    background-color: var(--blue-light) !important;
    opacity: 1 !important;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: var(--blue) !important;
}

.swiper-meta {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 10px;
    min-height: 58px;
    z-index: 1;
}

@media screen and (max-width: 1199px) {
    .swiper-meta {
        min-height: auto;
    }
}

.swiper-control {
    display: flex;
    align-items: center;
    gap: 44px;
    margin-left: auto;
}

.swiper-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 58px;
    height: 58px;
    background-color: transparent;
    border-radius: 50%;
    border: none;
    transition: .2s ease;
    cursor: pointer;
}

@media screen and (max-width: 1199px) {
    .swiper-btn {
        display: none;
    }
}

.swiper-btn:hover {
    background-color: var(--light);
}

.swiper-btn.swiper-btn--prev {
    transform: rotate(180deg);
}

.swiper-btn svg {
    display: flex;
    width: 30px;
    height: 30px;
    margin-right: -5px;

}

.article-news {
    display: flex;
    flex-direction: column;
    height: 100%;
    border-radius: 24px;
    overflow: hidden;
    transition: .2s ease;
}

@media screen and (max-width: 1199px) {
    .article-news {
        box-shadow: 0 4px 40px 0 #0000001F;
    }
}

.article-news:hover {
    box-shadow: 0 4px 40px 0 #0000001F;
}

.article-news__picture {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 260px;
    overflow: hidden;
}

.article-news__picture img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.article-news__info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 21px 13px 42px;
    background-color: var(--white);
}

.article-news__time {
    font-size: 20px;
    font-weight: 400;
    color: var(--dark-white);
}

.article-news__text {
    font-size: 20px;
    font-weight: 400;
    color: var(--dark);
    /*overflow: hidden;*/
    /*display: -webkit-box;*/
    /*-webkit-line-clamp: 3;*/
    /*line-clamp: 3;*/
    /*-webkit-box-orient: vertical;*/
}

.about-block {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 60px;
    z-index: 1;
}

.about-block__title {
    font-size: 48px;
    font-weight: 700;
    color: var(--white);
}

.about-block__text {
    font-size: 34px;
    font-weight: 400;
    color: var(--white);
}

@media screen and (max-width: 1199px) {
    .about-block__text {
        font-size: 24px;
        font-weight: 400;
    }

    .about-block__title {
        font-size: 34px;
        font-weight: 700;
    }
}

.analytics {
    display: flex;
    flex-direction: column;
    gap: 84px;
}

.analytics__wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 18px;
}

@media screen and (max-width: 1199px) {
    .analytics__wrapper {
        display: flex;
        flex-direction: column;
        gap: 60px;
    }
}

.analytics__item {
    display: flex;
    flex-direction: column;
    height: 532px;
    cursor: pointer;
    border-radius: 1px;
    overflow: hidden;
    box-shadow: 0 6px 2.77px 0 #00000040, -10px 8px 13px 0 #00000059;

}

@media screen and (max-width: 1199px) {
    .analytics__item {
        width: 100%;
        max-width: 264px;
        height: 371px;
    }
}

.analytics__picture {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.analytics__picture img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.footer {
    padding: 45px 0 48px;
    border-top: 3px solid var(--blue-light);
}

@media screen and (max-width: 1199px) {
    .footer {
        padding: 53px 0 120px;
    }
}

.footer__wrapper {
    display: flex;
    flex-direction: column;
    gap: 110px;
}

@media screen and (max-width: 1199px) {
    .footer__wrapper {
        gap: 65px;
    }
}

.footer__languages {
    display: flex;
    align-items: center;
    gap: 43px;
}

@media screen and (max-width: 1199px) {
    .footer__languages {
        justify-content: space-between;
        gap: 10px;
        width: 100%;
    }
}

.footer__main {
    display: flex;
    justify-content: space-between;
}

.footer__nav {
    display: grid;
    grid-template-columns: repeat(2, auto);
    justify-content: space-between;
    gap: 20px;
}

@media screen and (max-width: 1199px) {
    .footer__nav {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 32px;
    }
}

.footer__link {
    font-size: 20px;
    font-weight: 400;
    color: var(--dark);
    transition: .2s ease;
}

.footer__link:hover {
    opacity: .7;
}

@media screen and (max-width: 1199px) {
    .footer__link {
        text-align: center;
    }
}

.footer__info {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.footer__logo {
    display: flex;
    flex-shrink: 0;
    width: 100%;
    height: 97px;
}

@media screen and (max-width: 1199px) {
    .footer__logo {
        width: 314px;
        height: 80px;
    }

    .footer__info {
        gap: 51px;
    }
}

.footer__location {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    font-size: 19px;
    font-weight: 400;
    color: var(--dark);
    transition: .2s ease;
}

.footer__location:hover {
    opacity: .7;
}

@media screen and (max-width: 1199px) {
    .footer__location {
        gap: 12px;
        font-size: 16px;
    }
}

.footer__location svg {
    display: flex;
    width: 24px;
    height: 24px;
    color: var(--blue);
}

.footer__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media screen and (max-width: 1199px) {
    .footer__meta {
        flex-direction: column;
        gap: 40px;
    }
}

.social {
    display: flex;
    align-items: center;
    gap: 20px;
}

.social__link {
    display: flex;
    cursor: pointer;
    transition: .2s ease;
}

.social__link:hover {
    opacity: .7;
}

.projects {
    position: relative;
}

.projects__item {
    background-color: var(--white);
}

.projects__wrapper {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 26px;
    z-index: 1;
}

@media screen and (max-width: 1199px) {
    .projects__wrapper {
        position: static;
        gap: 10px;
        margin-top: -60px;
    }
}

.projects__branch {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 218px;
    height: 180px;
    background-color: var(--blue);
    border-radius: 24px;
    overflow: hidden;
}

@media screen and (max-width: 1199px) {
    .projects__branch {
        padding: 12px;
        margin-right: 8px;
        width: 176px;
        height: 120px;
    }
}

.picture-project {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 813px;
    height: 564px;
    border-radius: 24px;
    overflow: hidden;
}

@media screen and (max-width: 1199px) {
    .picture-project {
        height: 236px;
    }
}

.picture-project img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.projects__info {
    display: flex;
    width: 508px;
    flex-direction: column;
    background-color: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 40px 0 #0000001F;
}

@media screen and (max-width: 1199px) {
    .projects__info {
        width: 100%;
    }
}

.article-branch {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    background-color: var(--blue);
}

@media screen and (max-width: 1199px) {
    .article-branch {
        gap: 8px;
    }
}

.article-branch__picture {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 95px;
    height: 95px;
    overflow: hidden;
}

@media screen and (max-width: 1199px) {
    .article-branch__picture {
        width: 68px;
        height: 68px;
    }
}

.article-branch__picture img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.article-branch span {
    font-size: 20px;
    font-weight: 500;
    color: var(--white);
}

@media screen and (max-width: 1199px) {
    .article-branch span {
        font-size: 16px;
        font-weight: 500;
    }
}

.article-info {
    display: flex;
    flex-direction: column;
    background-color: var(--white);
    width: 508px;
    padding: 26px 28px 20px 32px;
}

.article-info__title {
    margin-bottom: 23px;
    font-size: 34px;
    font-weight: 400;
    line-height: 100%;
    color: var(--black);
}

.article-info__text {
    font-size: 16px;
    font-weight: 400;
    line-height: 100%;
    color: var(--black);
}

.article-info__text.article-info__text--accent {
    margin-bottom: 18px;
    font-size: 48px;
}

@media screen and (max-width: 1199px) {
    .article-info {
        width: 100%;
    }

    .article-info__title {
        margin-bottom: 18px;
        font-size: 24px;
        font-weight: 400;
    }

    .article-info__text.article-info__text--accent {
        margin-bottom: 8px;
    }
}

.features-block {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
}

@media screen and (max-width: 1199px) {
    .features-block {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }
}

.features-block__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    height: 100%;
}

@media screen and (max-width: 1199px) {
    .features-block__item {
        max-width: 240px;
    }
}

.features-block__item.features-block__item--nowrap .features-block__text {
    white-space: nowrap;
}

.features-block__picture {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 86px;
    height: 86px;
}

.features-block__picture img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.features-block__text {
    font-size: 20px;
    font-weight: 400;
    color: var(--dark);
    text-align: center;
}

.stats {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.stats__wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

@media screen and (max-width: 1199px) {
    .stats__wrapper {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }
}

.stats__block {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.stats__block--info {
    gap: 16px;
}

@media screen and (max-width: 1199px) {
    .stats__block--list {
        gap: 24px;
    }

    .stats__block--list .stats__element:first-child {
        padding-top: 0;
    }

    .stats__block--list .stats__element:last-child {
        padding-bottom: 0;
    }
}

.stats__item {
    display: flex;
    flex-direction: column;
    gap: 28px;
    padding: 23px 25px 19px 32px;
    height: 100%;
    box-shadow: 0 4px 40px 0 #0000001F;
    background-color: var(--white);
    border-radius: 24px;
}

.stats__item--accent {
    justify-content: space-between;
    padding: 32px 32px 24px;
    box-shadow: none;
}

@media screen and (max-width: 1199px) {
    .stats__item--accent {
        padding: 24px 20px 24px;
        min-height: 340px;
    }
}

.stats__item--blue {
    background-color: var(--super-blue);
}

.stats__item--green {
    background-color: var(--super-green);
}

.stats__item--green .stats__text {
    font-size: 34px;
    font-weight: 400;
    color: var(--dark);
}

.stats__item--blue .stats__text {
    font-size: 34px;
    font-weight: 400;
    color: var(--white);
}

.stats__item--blue .stats__text--accent {
    font-weight: 400;
    color: var(--white);
}

.stats__item--blue .stats__text--accent span {
    font-weight: 400;
}

.stats__text {
    font-size: 20px;
    font-weight: 400;
    color: var(--dark);
}

.stats__text--accent {
    font-size: 34px;
    font-weight: 700;
    color: var(--super-blue);
}

.stats__text--green {
    color: var(--super-green);
}

.stats__text--accent span {
    font-size: 70px;
    font-weight: 700;
}

.stats__text--small {
    font-size: 16px;
    font-weight: 400;
    color: var(--black);
}

.stats__title {
    font-size: 24px;
    font-weight: 400;
    color: var(--super-blue);
}

@media screen and (max-width: 1199px) {
    .stats__title {
        font-size: 20px;
    }
}

.stats__title--green {
    color: var(--super-green);
}

.stats__list {
    display: flex;
    flex-direction: column;
}

.stats__element {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 22px 0;
}

@media screen and (max-width: 1199px) {
    .stats__element {
        gap: 12px;
    }
}

.stats__element:not(:last-child) {
    border-bottom: 1px solid var(--dark-white);
}

.stats__element:last-child {
    padding-bottom: 0;
}

.stats__head {
    font-size: 48px;
    font-weight: 400;
    color: var(--black);
}

.arrow-up {
    position: fixed;
    right: 50px;
    bottom: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: var(--white);
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: .2s ease;
    z-index: 3;
}

@media screen and (max-width: 1199px) {
    .arrow-up {
        right: 28px;
        bottom: 28px;
        background-color: var(--light);
    }
}

.arrow-up:hover {
    background-color: var(--light);
}

.arrow-up.active {
    opacity: 1;
    visibility: visible;
}

.arrow-up svg {
    display: flex;
    width: 26px;
    height: 34px;
}

@media screen and (max-width: 1199px) {
    .order--mob-0 {
        order: 0;
    }

    .order--mob-1 {
        order: 1;
    }
}


.mobile-menu {
    position: fixed;
    top: 61px;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    padding: 28px 20px 32px;
    background-color: var(--white);
    opacity: 0;
    visibility: hidden;
    transition: .2s ease;
    transform: none !important;
    pointer-events: auto !important;
    z-index: 1100;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu__wrapper {
    display: flex;
    flex-direction: column;
    gap: 32px;
    height: 500px;
    overflow-y: auto;
}

.mobile-menu__link {
    font-size: 20px;
    font-weight: 400;
    color: var(--dark);
}

.mobile-menu__footer {
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-top: auto;
}

.fixed {
    overflow: hidden !important;
}

@media screen and (min-width: 1200px) {
    .desktop-hidden {
        display: none !important;
    }
}

.header a:hover {
    text-decoration: none !important;
}

a {
    text-decoration: none;
    color: var(--dark);
}

.header__search {
    margin-left: 0;
}

.section.first {
    height: 100vh;
    max-height: 920px;
    position: relative;
    overflow: hidden;
}

@media screen and (max-width: 1199px) {
    .section.first {
        max-height: 754px;
    }
}

@media screen and (max-width: 640px) {
    .start-section__info {
        align-items: flex-start;
        margin: 45px 0 37px 15px
    }

    .start-section__info .container {
        padding-left: 4.44444444vw;
        padding-right: 4.44444444vw
    }
}

@media (min-width: 641px) and (max-width: 1024px) {
    .start-section__info .container {
        padding-left: 4.16666667vw;
        padding-right: 4.16666667vw
    }
}

@media screen and (min-width: 1440px) {
    .start-section__info .container {
        padding-left: 6.7%;
    }
}

@media screen and (max-width: 640px) {
    .start-section__info {
        /*margin: 44px 0 0 0*/
    }
}

@media (min-width: 641px) and (max-width: 1024px) {
    .start-section__info {
        margin: 140px 0 0 0
    }
}

@media screen and (max-width: 640px) {
    .start-section__info-content {
        padding-bottom: 12.22222222vw
    }
}

@media (min-width: 641px) and (max-width: 1024px) {
    .start-section__info-content {
        padding-bottom: 16.63541667vw
    }
}

@media (min-width: 1025px) and (max-width: 1440px) {
    .start-section__info-content {
        padding-bottom: 3.6vw
    }
}

@media (min-width: 1441px) and (max-width: 1919px) {
    .start-section__info-content {
        padding-bottom: 3.6vw
    }
}

@media (min-width: 641px) and (max-width: 1024px) {
    .start-section__info-content {
        display: flex;
        justify-content: space-between
    }
}

@media screen and (min-width: 1025px) {
    .start-section__info-content {
        display: flex;
        align-content: flex-start;
        margin-top: 1vw;
    }
}

@media screen and (min-width: 1920px) {
    .start-section__info-content {
        padding-bottom: 9.25%
    }
}

.start-section__info .container {
    max-width: 100%;
    padding-left: 8.33333333vw;
    padding-right: 8.33333333vw;
}


.header .container {
    padding-left: 20px;
    padding-right: 20px;
    max-width: 1240px;
}

@media screen and (max-width: 1199px) {
    .start-section__images [data-index="5"] .start-section__item-image:nth-child(2) img {
        object-position: -480px 0;
    }
}
