/* 
    Theme Name: NTAG
*/

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
}

*::before,
*::after {
    box-sizing: border-box;
}

html {
    font-size: 14px;
    overflow-x: hidden;
}

a[href^="tel"],
a[href^="mailto"] {
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    /* или другой фон */
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.preloader.active {
    display: none;
}

.preloader video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blackout {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    /* затемнение */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    z-index: 999;
    /* ниже сайдбара, но выше всего остального */
}

.blackout-active {
    opacity: 1;
    visibility: visible;
}

.no-scroll {
    overflow: hidden;
}

.sidebar {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: fixed;
    top: 0;
    right: -450px;
    /* Скрыто за экраном справа */
    width: 450px;
    height: 100%;
    transition: right 0.3s ease;
    z-index: 1000;
    background-color: white;
    padding: 40px 30px;
}

.sidebar .navigation {
    position: unset;
    text-transform: unset;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 800;
    gap: 1vw;
}

.sidebar .navigation a {
    text-decoration: none;
    color: rgba(7, 37, 65, 1);
    margin-bottom: 25px;
    transition: 0.3s;
}

.sidebar .navigation a:hover {
    width: 100%;
    border-bottom: 2px solid rgba(7, 37, 65, 1);
    padding-bottom: 10px;
}

.sidebar-footer {
    gap: 3vw;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.sidebar .block-logo img {
    width: 15rem;
}

.sidebar-footer .text-block {
    display: flex;
    flex-direction: column;
    gap: 2.5vw;
}

.footer-text .text-two {
    font-weight: 500;
}

.sidebar-footer .footer-text {
    width: 30vw;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sidebar-footer .low-border {
    border: 1px solid lightgray;
    margin-bottom: 5px;
    width: 26vw;
}

.sidebar-footer .footer-text .text-one {
    font-size: 1.3rem;
}

.sidebar-footer .footer-text .text-two {
    font-weight: 550;
    font-size: 1.2rem;
}

.sidebar-footer .footer-contact {
    gap: 2vw;
    display: flex;
    flex-direction: column;
    font-weight: 550;
}

.sidebar-footer .footer-contact img {
    width: 1.2rem;
}

.sidebar-footer .footer-contact .contact {
    gap: 2vw;
}

.sidebar.active {
    right: 0;
}

/* header */

.header {
    background-color: rgba(7, 37, 65, 1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4rem 6rem 0 6rem;
}

.logo {
    width: 18.75rem;
}

.navigation {
    position: absolute;
    right: 21.5%;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 4rem;
    font-size: 1.35rem;
    flex-wrap: wrap;
    font-weight: 500;
}

.navigation a {
    position: relative;
    color: white;
    text-decoration: none;
}

.navigation a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    /* немного ниже, чтобы не сдвигать сам элемент */
    width: 100%;
    height: 2px;
    background-color: white;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.navigation a:hover::after {
    transform: scaleX(1);
}

.menu-icon {
    width: 3.5rem;
}

.header .wrap {
    display: flex;
    gap: 12vw;
}

.first-block {
    position: relative;
    background-color: rgba(7, 37, 65, 1);
    color: rgba(255, 255, 255, 1);
    padding: 5.625rem 6rem;
    /* height: 100vh; */
}

.info {
    display: flex;
    justify-content: space-between;
}

.title {
    font-weight: 750;
    width: 25vw;
    color: rgba(18, 109, 149, 1);
    font-size: 4.06vw;
    font-family: "Swis721 Blk BT", sans-serif;
}

.first-block .info .text-block {
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 3.125rem;
    color: rgba(255, 255, 255, 1);
    width: 45%;
}

.first-block .info .title {
    font-weight: 700;
    font-size: 4rem;
    width: 565px;
    color: rgba(255, 255, 255, 1);
}

.first-block .info .desc h4 {
    display: flex;
    flex-direction: column;
    width: 80%;
    color: rgba(255, 255, 255, 1);
    margin-bottom: 30px;
    font-weight: 500;
    font-size: 2rem;
}

.first-block .info .desc p {
    text-align: justify;
    width: 95%;
    font-size: 1.2rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 1);
}

.first-block .image-block {
    z-index: 0;
    position: absolute;
    right: 0vw;
    top: 5.5vh;
    width: 46vw;
}

.first-block .image {
    width: 100%;
}

/* main */

.second-block {
    background-color: rgba(187, 199, 204, 1);
    padding-left: 6vw;
    display: flex;
    gap: 5vw;
}

.second-block .image {
    width: 32.5vw;
}

.icons {}

.about-us {
    padding-top: 12.6%;
    display: flex;
    flex-direction: column;
    gap: 2vw;
}



.desc p {
    text-align: justify;
    width: 80%;
    font-weight: 400;
    font-size: 1.4rem;
    color: rgba(7, 37, 65, 1);
}

.third-block {
    background-color: rgba(255, 255, 255, 1);
    padding: 0px 0.5vw 0 0.5vw;
    height: 65vw;
}

.clearfix {
    clear: both;
}

.block-right {
    position: relative;
    top: 100px;
    float: inline-end;
    display: flex;
    gap: 3vw;
    margin-bottom: 8.3vw;
    right: -0.55vw;
    align-items: end;
}

.block-right .title {
    width: 100%;
}

.block-right .desc p {
    width: 45vw;
    font-size: 1.4rem;
}

.block-right .image {
    width: 40vw;
}

.wrap-right {
    display: flex;
    flex-direction: column;
    gap: 4.7vw;
}

.wrap-right-inner {
    display: flex;
    flex-direction: column;
    gap: 2.08vw;
}

.wrap-left {
    display: flex;
    flex-direction: column;
    gap: 4.7vw;
}

.wrap-left-inner {
    display: flex;
    flex-direction: column;
    gap: 2.08vw;
}

.block-left {
    position: relative;
    top: 100px;
    float: inline-start;
    display: flex;
    gap: 3vw;
    left: -0.6vw;
    align-items: end;
}

.block-left .title {
    width: 25vw;
    /* ~427px */
}

.block-left .desc p {
    width: 40vw;
    /* ~659px */
    font-size: 1.4rem;
}

.block-left .image {
    width: 45.4vw;
    /* ~700px */
}

.border {
    background-color: rgba(18, 109, 149, 1);
    height: 2px;
    width: 100%;
}

.border-2 {
    position: relative;
    top: -5px;
    border: 1px solid rgba(7, 37, 65, 1);
    width: 58vw;
    margin-bottom: 5px;
}

.low-border {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    margin-bottom: 5px;
}

.low-border .arrow {
    width: 1.2rem;
}

.forth-block {
    background-color: rgba(187, 199, 204, 1);
    padding: 9.375rem 0;
    /* 150px */
}

.forth-block .title {
    position: relative;
    left: 13vw;
    font-size: 4.8rem;
    /* ~78px */
    color: rgba(7, 37, 65, 1);
    width: 35.24vw;
    margin-bottom: 9.375rem;
    /* 150px */
}

.forth-block-items {
    display: flex;
    flex-direction: column;
    gap: 5.2vw;
    /* 100px при ширине 1920px */
}

.forth-block-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.forth-block-item .wrap {
    display: flex;
    align-items: flex-start;
    gap: 20%;
    margin-left: 12.5vw;
}

.forth-block-item .wrap-inner {
    display: flex;
    flex-direction: column;
    gap: 1.5625rem;
    /* 25px */
}

.forth-block-item .icon {
    width: 6.7rem;
    margin-top: 5px;
}

.forth-block-item .title-inner {
    width: 30vw;
    /* 382px */
    font-size: 3.625rem;
    /* ~58px */
    color: rgba(18, 109, 149, 1);
    font-weight: 700;
}

.forth-block-item .title-inner_modif {
    font-size: 3.625rem;
    /* ~58px */
    color: rgba(18, 109, 149, 1);
    font-weight: 700;
    width: 32.9vw;
    /* 478px */
}

.forth-block-item .desc p {
    width: 33vw;
    height: auto;
    font-size: 1.3rem;
    line-height: 1.28;
    color: rgba(7, 37, 65, 1);
}

.forth-block-item .image-block {
    display: flex;
}

.forth-block-item .image {
    width: 35vw;
    /* 585px */
    max-width: 600px;
    flex-shrink: 0;
}

.fifth-block {
    background-color: rgba(255, 255, 255, 1);
    padding: 9.375rem 0 8.125rem 0;
    /* 150px 0 130px 0 */
}

.fifth-block .title {
    position: relative;
    left: 13vw;
    font-size: 4.875rem;
    /* ~78.01px */
    color: rgba(7, 37, 65, 1);
    width: 35.25rem;
    /* 523px */
    margin-bottom: 9.375rem;
    /* 150px */
}

.fifth-block-items {
    position: relative;
    left: 13vw;
    width: 85vw;
    display: flex;
    /* justify-content: center; */
    gap: 15vw;
    /* 250px ≈ 13vw при 1920px */
    margin-bottom: 6.875rem;
    /* 110px */
    flex-wrap: wrap;
}

.fifth-block-item {
    display: flex;
    flex-direction: column;
    width: 33%;
    gap: 2.5rem;
    /* 40px */
}

.fifth-block .wrap-inner {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    /* 20px */
}

.fifth-block-item .text-block {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    /* 20px */
}

.fifth-block-item .title-inner {
    width: 21.875rem;
    /* 350px */
    font-size: 3.06rem;
    /* 49px */
    color: rgba(18, 109, 149, 1);
    font-weight: 700;
}

.fifth-block-item .desc p {
    font-size: 1.3rem;
    width: 26rem;
    height: 90px;
}

.sixth-block {
    padding-left: 7.5vw;
    background-color: rgba(7, 37, 65, 1);
    color: rgba(255, 255, 255, 1);
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.sixth-block .wrap {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    /* 40px */
}

.sixth-block .title {
    color: rgba(255, 255, 255, 1);
    font-size: 4.8rem;
    /* 78.01px */
    width: 32.7rem;
    /* 523px */
}

.sixth-block .desc p {
    width: 50vw;
    font-size: 1.35rem;
    color: rgba(255, 255, 255, 1);
}

.sixth-block .image-block {
    position: relative;
    top: 5.75rem;
    /* 140px */
    z-index: 2;
}

.sixth-block .image {
    width: 35rem;
    /* 560px */
}

.seventh-block {
    position: relative;
    background-color: #fff;
    padding-top: 9.375rem;
    /* 150px */
    padding-bottom: 8rem;
}

.seventh-block .wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2.5rem;
    width: 80vw;
    margin: 0 0 0 11vw;
}

.seventh-block .title {
    font-size: 4.8rem;
    /* 78.01px */
    color: rgba(7, 37, 65, 1);
    width: 85vw;
    line-height: 1.2;
}

.seventh-block .desc p {
    width: 65%;
    font-size: 1.3rem;
    /* ~20px */
    line-height: 1.3;
    color: rgba(7, 37, 65, 1);
}

.seventh-block .seventh-block-items {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    /* 20px */
    width: 100%;
}

.seventh-block .seventh-block-item {
    display: flex;
    align-items: flex-end;
    gap: 0.8rem;
}

.seventh-block .icon-block {
    position: relative;
}

.seventh-block .icon {
    position: relative;
    top: 4px;
    width: 1.25rem;
}

.seventh-block .text {
    font-size: 1.473rem;
    /* 23.57px */
    font-weight: 700;
    font-size: 1.1rem;
    color: rgba(7, 37, 65, 1);
}

.seventh-block .border {
    border: 0.1px solid rgba(7, 37, 65, 1);
    width: 25vw;
    max-width: 550px;
    height: 0.1px;
    margin-top: 0.5rem;
}

.seventh-block .text-block {
    font-size: 1.3rem;
    /* 23.57px */
    font-weight: 500;
    width: 45%;
    color: rgba(7, 37, 65, 1);
}

.seventh-block .image-block {
    position: absolute;
    right: 5vw;
    bottom: -0.55vh;
}

.seventh-block .image {
    width: 10vw;
}

.eighth-block {
    background-color: rgba(187, 199, 204, 1);
    padding: 4rem 0;
}

.eighth-block .wrap {
    display: flex;
    align-items: center;
    gap: 8vw;
    padding: 0 10vw;
}

.eighth-block .image-block {
    position: relative;
    bottom: 6vw;
}

.eighth-block .image {
    width: 35vw;

    flex-shrink: 0;
}

.eighth-block .wrap-inner {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    flex: 1;
    min-width: 300px;
}

.eighth-block .title {
    font-size: 4.8rem;
    /* 48px */
    font-weight: 700;
    color: rgba(7, 37, 65, 1);
    width: 40vw;
    line-height: 1.3;
}

.eighth-block .desc p {
    font-size: 1.2rem;
    /* 22.4px */
    line-height: 1.3;
    max-width: 50%;
    color: rgba(7, 37, 65, 1);
    margin-top: 17px;
}

.eighth-block .eighth-block-items {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.eighth-block .eighth-block-item {
    display: flex;
    align-items: flex-end;
    gap: 1.25rem;
}

.eighth-block-item .icon-block {
    position: relative;
}

.eighth-block-item .icon {
    position: relative;
    top: 4px;
    width: 1.25rem;
}

.eighth-block .text {
    font-size: 1.2rem;
    /* 19.2px */
    font-weight: 700;
    line-height: 1.4;
    color: rgba(7, 37, 65, 1);
}

.eighth-block .border {
    border: 0.1px solid rgba(7, 37, 65, 1);
    width: 25vw;
    height: 1px;
}

.ninth-block {
    position: relative;
    background-color: rgba(18, 109, 149, 1);
    height: 343px;
    color: rgba(255, 255, 255, 1);
    display: flex;
    align-items: center;
    justify-content: start;
    padding: 0 0 0 4vw;
}

.ninth-block .text {
    font-size: 55px;
    font-weight: 700;
    width: 1063px;
    position: relative;
    left: 5.5vw;
}

.ninth-block .image-block {
    position: absolute;
    bottom: -1vw;
    right: 5vw;
}

.ninth-block .image {}

.tenth-block {
    position: relative;
    left: 10vw;
    background-color: rgba(255, 255, 255, 1);
    height: 913px;
    width: 50vw;
    align-items: center;
    display: flex;
}

.tenth-block .wrap {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 4vw;
}

.tenth-block .image {
    width: 543px;
}

.tenth-block .title {
    font-size: 4.8rem;
    width: 514px;
    color: rgba(7, 37, 65, 1);
}

.tenth-block .desc p {
    color: rgba(7, 37, 65, 1);
    width: 48vw;
    height: 130px;
    font-weight: 400;
    font-size: 21px;
    letter-spacing: 1%;
}

.tenth-block .desc p span {
    font-weight: 700;
}

.tenth-block .wrap-inner {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.footer {
    background-color: #126d98;
    color: rgba(255, 255, 255, 1);
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 20vw;

    padding: 100px 0 50px 0;
}

.footer .text-block {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.footer .low-border {
    border: 1px solid rgba(187, 199, 204, 1);
}

.footer .text-block {
    display: flex;
    flex-direction: column;
    gap: 10vh;
}

.footer-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.text-one {
    font-weight: 700;
    font-size: 24px;
}

.text-two {
    word-spacing: 2.5px;
    font-weight: 450;
    font-size: 21px;
}

.footer-contact {
    display: flex;
    font-size: 16px;
    font-weight: 450;
}

.geolocation {
    display: flex;
    align-items: flex-start;
    width: 354px;
    gap: 10px;
}

.contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 5px;
}

.contact p {
    display: flex;
    align-items: center;
    gap: 10px;
}

@media (max-width: 1920px) {
    .first-block .image-block {
        width: 41vw;
    }

    .header .wrap {
        display: flex;
        gap: 16vw;
    }
}

/* Full HD десктопы */
@media (max-width: 1920px) {
    .navigation {
        right: 22%;
    }
}

/* Ультрабуки / маленькие ноутбуки */
@media (max-width: 1280px) {
    .navigation {
        right: 12%;
    }
}

@media (max-width: 1820px) {
    .navigation {
        right: 21%;
    }
}

@media (max-width: 1750px) {
    .navigation {
        right: 20%;
    }
}

@media (max-width: 1680px) {
    .navigation {
        right: 19%;
    }
}

@media (max-width: 1560px) {
    .navigation {
        right: 17.5%;
    }
}

@media (max-width: 1480px) {
    .header {
        padding-left: 5.5vw;
        padding-right: 5.5vw;
    }

    .header .wrap {
        gap: 6.5vw;
    }

    .title {
        width: 25vw;
        font-size: 3.2rem;
    }

    .first-block {
        padding: 4rem 5vw 8rem;
        /* height: 80vh; */
    }

    .logo {
        width: 240px;
    }

    .navigation {
        right: 13vw;
        font-size: 1.4rem;
    }

    .first-block .info .title {
        z-index: 2;
        font-size: 3.5vw;
        width: 90%;
    }

    .first-block .info .desc h4 {}

    .first-block .info .desc p {
        position: relative;
        z-index: 4;
        width: 53vw;
        font-size: 1rem;
    }

    .about-us {
        padding-top: 13.6%;
    }

    .second-block .desc p {
        width: 90%;
        font-size: 1.1rem;
    }

    .first-block .image-block {
        width: 39vw;
        z-index: 0;
        right: 0vw;
        top: 4vh;
    }

    .first-block .image {
        z-index: 0;
        width: 100%;
    }

    .third-block {
        padding: 80px 1vw 0 1vw;
        height: auto;
    }

    .block-right,
    .block-left {
        gap: 60px;
        margin-bottom: 100px;
        top: 50px;
    }

    .block-right {
        right: -1vw;
    }

    .block-left {
        left: -1vw;
    }

    .block-right .title,
    .block-left .title {
        width: 100%;
        font-size: 3.2rem;
    }

    .block-right .desc p,
    .block-left .desc p {
        width: 100%;
        font-size: 1.1rem;
    }

    .block-right .image,
    .block-left .image {
        width: 50vw;
    }

    .wrap-right,
    .wrap-left {
        gap: 60px;
    }

    .wrap-right-inner,
    .wrap-left-inner {
        gap: 30px;
    }

    .forth-block {
        position: relative;
        padding: 8vw 3vw;
    }

    .forth-block .title {
        left: 5vw;
        font-size: 3rem;
        width: 28vw;
        margin-bottom: 5vw;
    }

    .forth-block-items {
        gap: 6vw;
    }

    .forth-block-item .image-block {
        position: relative;
        right: -3vw;
    }

    .border-2 {
        top: -6px;
        left: -5%;
    }

    .forth-block-item {
        justify-content: space-between;
    }

    .forth-block-item .wrap {
        gap: 5vw;
        margin-left: 5vw;
    }

    .forth-block-item .wrap-inner {
        gap: 1.5vw;
    }

    .forth-block-item .title-inner,
    .forth-block-item .title-inner_modif {
        font-size: 2.2rem;
        /* около 42px */
        width: 30vw;
    }

    .forth-block-item .title-inner_modif {
        font-size: 2.2rem;
        /* около 42px */
        width: 32vw;
    }

    .forth-block-item .desc p {
        font-size: 1.1rem;
        width: 32vw;
        height: auto;
        font-size: 1rem;
        /* около 14-16px */
    }

    .forth-block-item .image {
        width: 40vw;
        height: auto;
    }

    .fifth-block {
        padding: 8vw 0 6vw 0;
    }

    .fifth-block .title {
        left: 10vw;
        font-size: 3rem;
        /* примерно 56px при 1480px ширины */
        width: 30vw;
        margin-bottom: 5vw;
    }

    .fifth-block-items {
        left: 10.5vw;
        gap: 6vw;
        margin-bottom: 6vw;
        flex-wrap: wrap;
        /* justify-content: center; */
    }

    .fifth-block-item {
        gap: 2.5vw;
    }

    .fifth-block .wrap-inner {
        gap: 1.5vw;
    }

    .fifth-block-item .text-block {
        gap: 1.5vw;
    }

    .fifth-block-item {
        width: 41%;
    }

    .fifth-block-item .title-inner {
        width: 40%;
        font-size: 1.8rem;
        /* примерно 42px */
    }

    .fifth-block-item .desc p {
        font-size: 1.1rem;
        /* примерно 14-15px */
    }

    .sixth-block {
        left: 4vw;
    }

    .sixth-block .wrap {
        gap: 2.5vw;
    }

    .sixth-block .title {
        font-size: 3rem;
        /* около 56px при 1480px */
        width: 35vw;
    }

    .sixth-block .desc p {
        width: 50vw;
        font-size: 1.1rem;
    }

    .sixth-block .image-block {}

    .sixth-block .image {
        width: 30rem;
    }

    .seventh-block {
        padding-top: 5.375rem;
    }

    .seventh-block .wrap {
        gap: 2vw;
        /* margin: 0 5vw; */
    }

    .seventh-block .title {
        font-size: 3rem;
        /* адаптация заголовка */
        width: 85vw;
    }

    .seventh-block .desc p {
        width: 57%;
        font-size: 1.1rem;
    }

    .seventh-block .text {
        font-size: 1.1rem;
    }

    .seventh-block .text-block {
        width: 50%;
    }

    .seventh-block .border {
        width: 45vw;
        max-width: 500px;
    }

    .seventh-block .image {}

    .eighth-block {
        padding: 3vw 0;
    }

    .eighth-block .image-block {
        bottom: 4vh;
    }

    .eighth-block .image {
        bottom: 5vh;
    }

    .eighth-block .wrap {}

    .eighth-block .title {
        font-size: 4rem;
        width: 40vw;
    }

    .eighth-block .desc p {
        font-size: 1.1rem;
        max-width: 100%;
    }

    .eighth-block .eighth-block-items {
        gap: 1.5vw;
    }

    .eighth-block .eighth-block-item {
        flex-direction: row;
        gap: 1.5vw;
    }

    .eighth-block .text {
        font-size: 1.25rem;
    }

    .eighth-block .border {
        width: 30vw;
        max-width: 480px;
    }

    .ninth-block {
        position: relative;
        height: auto;
        padding: 5vh 5vw;
    }

    .ninth-block .text {
        font-size: 3rem;
        width: 80vw;
    }

    .ninth-block .image {
        width: 10vw;
    }

    .tenth-block {
        height: auto;
        padding: 5vh 0vw;
    }

    .tenth-block .wrap {
        align-items: flex-end;
        gap: 5vh;
    }

    .tenth-block .image {
        width: 35vw;
    }

    .tenth-block .title {
        width: 100%;
        font-size: 3rem;
    }

    .tenth-block .desc p {
        width: 40vw;
        max-width: 700px;
        height: auto;
        font-size: 1.1rem;
    }

    .tenth-block .wrap-inner {
        gap: 2rem;
        align-items: flex-start;
    }

    .tenth-block img[src*="arrow.svg"] {
        display: block;
    }

    .footer {
        gap: 20vw;
        padding: 60px 8vw 40px 8vw;
    }

    .footer .text-block {
        gap: 5vh;
    }

    .footer-text {
        gap: 15px;
    }

    .text-one {
        font-size: 20px;
    }

    .text-two {
        font-size: 18px;
    }

    .footer-contact {
        gap: 20px;
        font-size: 14px;
    }

    .geolocation {
        width: auto;
        max-width: 90vw;
    }

    .footer-logo {
        width: 25rem;
    }

    .footer .low-border {
        width: 100%;
        margin-top: 30px;
    }
}

@media (max-width: 1420px) {
    .seventh-block .desc p {
        width: 60%;
    }

    .about-us {
        padding-top: 13%;
    }
}

@media (max-width: 1400px) {
    .seventh-block .desc p {
        width: 60%;
    }
}

@media (max-width: 1380px) {
    .header .wrap {
        gap: 5vw;
    }
}

@media (max-width: 1370px) {
    .seventh-block .desc p {
        width: 63%;
    }
}

@media (max-width: 1330px) {
    .header .wrap {
        gap: 4vw;
    }

    .navigation {
        gap: 3rem;
    }

    .fifth-block-item .title-inner {
        width: 50%;
    }

    .fifth-block-item .wrap-inner .top-icon {
        width: 8rem;
    }
}

@media (max-width: 1250px) {
    .header {
        justify-content: space-between;
        padding-left: 5.5vw;
        padding-right: 5.5vw;
    }

    .first-block {
        /* height: 78vh; */
    }

    .first-block .image-block {
        z-index: 0;
        right: 0vw;
        top: 4.5vh;
    }

    .header .navigation {
        display: none;
    }

    .first-block .image {
        z-index: 0;
        width: 100%;
    }

    .sixth-block .image-block {
        top: 4.75rem;
    }

    .sixth-block .image {
        width: 27rem;
    }

    .footer {
        gap: 10vw;
    }

    .footer-logo {
        width: 20rem;
    }
}

@media (max-width: 1220px) {
    .first-block {
        height: auto;
    }
}

@media (max-width: 1150px) {
    .sidebar .block-logo img {
        width: 12rem;
    }

    .sidebar-footer .footer-text {
        width: 50vw;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .sidebar-footer .low-border {
        border: 1px solid lightgray;
        margin-bottom: 5px;
        width: 40vw;
    }

    .first-block .image-block {
        z-index: 0;
        right: 0vw;
        top: 4.5vh;
        width: 40vw;
    }

    .first-block .image {
        z-index: 0;
        width: 100%;
    }

    .about-us {
        padding-top: 12.5%;
    }

    .sixth-block {
        padding-left: 6.5vw;
        background-color: rgba(7, 37, 65, 1);
        color: rgba(255, 255, 255, 1);
        display: flex;
        justify-content: space-evenly;
        align-items: center;
    }

    .seventh-block .wrap {
        margin: 0 6.4vw;
    }

    .ninth-block .text {
        font-size: 2.5rem;
    }
}

@media (max-width: 1100px) {
    .second-block {
        padding-left: 6vw;
    }

    .about-us {
        padding-top: 11.9%;
    }

    .header .menu-icon {
        display: block;
    }

    .fifth-block-item .title-inner {
        width: 60%;
    }

    .eighth-block .title {
        font-size: 3rem;
        width: 40vw;
    }

    .seventh-block .wrap {
        margin: 0 6vw;
    }
}

@media (max-width: 1000px) {}

@media (max-width: 950px) {
    .sidebar-footer .footer-contact .geolocation {
        align-items: flex-start;
    }

    .second-block .image {
        width: 15vw;
    }

    .preloader video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .first-block {
        position: relative;
        background-color: rgba(7, 37, 65, 1);
        color: rgba(255, 255, 255, 1);
        padding: 30px 25px;
        height: 100%;
        width: 100%;
    }

    .header {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .logo {
        width: 200px;
    }

    .navigation {
        display: none;
    }

    .menu-icon {
        display: block;
        width: 4rem;
    }

    .first-block .image-block {
        width: 70%;
    }

    .first-block .image {
        width: 100%;
    }

    .first-block .info .text-block {
        z-index: 2;
        display: flex;
        flex-direction: column;
        gap: 3.125rem;
        margin: 280px 0 0 0;
        color: rgba(255, 255, 255, 1);
        width: 100%;
    }

    .first-block .info .title {
        font-weight: 700;
        font-size: 3.125rem;
        /* 50px */
        width: 408px;
        /* 565px */
        color: rgba(255, 255, 255, 1);
    }

    .first-block .info .desc {
        display: flex;
        flex-direction: column;
        gap: 1.25rem;
        /* 20px */
        color: rgba(255, 255, 255, 1);
        font-weight: 500;
        font-size: 1.5rem;
        /* 24px */
    }

    .first-block .info .desc p {
        width: 100%;
        /* 755px */
        font-size: 1.1rem;
        /* 16px */
        font-weight: 400;
        color: rgba(255, 255, 255, 1);
    }

    .first-block .info .desc h4 {
        width: 100%;
        font-size: 1.6rem;
    }

    .fifth-block .image-block {
        position: absolute;
        right: 0vw;
        top: 7vh;
    }

    .second-block {
        gap: 3vh;
        padding: 0vh 2vw;
    }

    .about-us {
        padding-top: 14%;
    }

    .icons {
        height: 45vw;
    }

    .icons .icons-item img {
        width: 150px;
    }

    .title,
    .desc p {
        font-size: 2.8rem;
        width: 100%;
    }

    .third-block {
        background-color: rgba(255, 255, 255, 1);
        padding: 0px;
    }

    .block-right {
        display: flex;

        position: relative;
        top: -1px;
        float: none;
        flex-direction: column-reverse;
        gap: 0px;
        margin-bottom: 0px;
    }

    .block-right .title {
        height: 57px;
        font-size: 3rem;
    }

    .block-right .desc p {
        font-size: 1.1rem;
        width: 90vw;
        height: 82px;
    }

    .block-right .image-block {
        position: relative;
        display: flex;
        justify-content: end;
        margin-bottom: 20px;
        right: -5vw;
    }

    .block-right .image {
        position: relative;
        width: 75vw;
    }

    .block-right,
    .block-left .wrap {
        position: relative;
        width: 90vw;
        left: 5vw;
        top: 1%;
    }

    .wrap-right {
        display: flex;
        flex-direction: column;
        gap: 0px;
        justify-content: center;
    }

    .block-right .low-border {
        width: 95%;
    }

    .wrap-right-inner {
        display: flex;
        align-items: start;
        flex-direction: column;
        gap: 20px;
    }

    .block-left {
        position: relative;
        top: 5vh;
        float: none;
        display: flex;
        flex-direction: column;
        gap: 5vw;
    }

    .block-left .image {
        width: 80vw;
    }

    .wrap-left {
        position: relative;
        left: -5vw;
        display: flex;
        flex-direction: column;
        gap: 0px;
        justify-content: center;
    }

    .wrap-left-inner {
        display: flex;
        align-items: start;
        flex-direction: column;
        gap: 20px;
    }

    .block-left .title {
        width: 289px;
        height: 57px;
        font-size: 3rem;
    }

    .block-left .desc p {
        font-size: 1.1rem;
        width: 90vw;
        height: 82px;
    }

    .block-left .image-block {
        position: relative;
        left: -19vw;
    }

    .block-left .low-border {
        width: 100%;
    }

    .forth-block {
        padding: 43px 0 80px 0;
    }

    .forth-block .title {
        width: 70vw;
        left: 3vw;
        font-size: 3.2rem;
        margin-bottom: 40px;
    }

    .forth-block-items {
        flex-direction: column;
        gap: 2rem;
    }

    .forth-block-items .border-2 {
        margin-top: 5%;
        width: 90%;
    }

    .forth-block-item {
        flex-direction: column;
        position: relative;
        padding-top: 300px;
        /* место под изображение */
    }

    .forth-block-item .wrap {
        position: static;
        margin: 0 3vw;
        gap: 1rem;
        flex-direction: column;
        align-items: flex-start;
    }

    .forth-block-item .wrap-inner {
        position: static;
        top: 0;
        gap: 1rem;
    }

    .forth-block-item .icon {
        width: 6rem;
    }

    .forth-block-item .title-inner,
    .forth-block-item .title-inner_modif {
        position: static;
        top: 0;
        width: 70%;
        font-size: 3rem;
        text-align: left;
    }

    .forth-block-item .desc p {
        width: 100%;
        height: auto;
        font-size: 1.1rem;
    }

    .forth-block-item .image-block {
        position: absolute;
        top: 0;
        right: 0;
        width: 100%;
        max-width: 400px;
        z-index: 0;
    }

    .forth-block-item .image {
        width: 100%;
        max-width: 400px;
    }

    .fifth-block {
        background-color: rgba(255, 255, 255, 1);
        padding: 2.5rem 0 3rem 0;
    }

    .fifth-block .title {
        position: relative;
        left: 3vw;
        font-size: 3.2rem;
        /* примерно 52.65px */
        color: rgba(7, 37, 65, 1);
        width: 75vw;
        max-width: 523px;
        margin-bottom: 3rem;
    }

    .fifth-block-item .wrap-inner .top-icon {
        width: 6.5rem;
        max-width: 100%;
    }

    .fifth-block-items {
        left: 3vw;
        /* margin-left: 3vw; */
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        gap: 2.625rem;
        margin-bottom: 2.625rem;
    }

    .fifth-block-item {
        display: flex;
        flex-direction: column;
        gap: 0.625rem;
        width: 95%;
    }

    .fifth-block .wrap-inner {
        display: flex;
        flex-direction: column;
        gap: 0.625rem;
    }

    .fifth-block-item .text-block {
        display: flex;
        flex-direction: column;
        gap: 0.625rem;
    }

    .fifth-block-item .title-inner {
        font-size: 2.51rem;
        color: rgba(18, 109, 149, 1);
        font-weight: 700;
    }

    .fifth-block-item .desc p {
        font-size: 1.1rem;
        line-height: 1.5;
    }

    .sixth-block {
        background-color: rgba(7, 37, 65, 1);
        color: rgba(255, 255, 255, 1);
        display: flex;
        flex-direction: column-reverse;
        justify-content: center;
        gap: 5px;
        padding-bottom: 5vw;
        padding-left: 0vw;
    }

    .sixth-block .wrap {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .sixth-block .title {
        color: rgba(255, 255, 255, 1);
        font-size: 3.2rem;
        width: 90vw;
    }

    .sixth-block .desc p {
        width: 90vw;
        font-size: 1.1rem;
        color: rgba(255, 255, 255, 1);
    }

    .sixth-block .image-block {
        top: -3.5vw;
        right: -1.75vw;
        left: unset;
        padding: 0 0;
    }

    .sixth-block .image {
        width: 96.5vw;
        height: 90vw;
    }

    .seventh-block {
        padding-top: 4rem;
    }

    .seventh-block .wrap {
        margin: 0 5vw;
        gap: 2rem;
    }

    .seventh-block .title {
        font-size: 3.2rem;
    }

    .seventh-block .desc p,
    .seventh-block .text-block {
        width: 100%;
        font-size: 1.1rem;
    }

    .seventh-block .desc p {
        width: 100%;
        font-size: 1rem;
    }

    .seventh-block .text {
        font-size: 1.2rem;
    }

    .seventh-block .border {
        width: 80vw;
    }

    .eighth-block .wrap {
        position: relative;
        display: flex;
        align-items: flex-start;
        flex-direction: column;
        gap: 0vw;
        padding: 0 10vw;
    }

    .eighth-block .wrap-inner {
        margin-top: 30px;
        position: relative;
        left: -2.5vh;
    }

    .eighth-block .title {
        width: 70vw;
        font-size: 3.2rem;
    }

    .eighth-block .desc p {
        width: 80vw;
        font-size: 1.1rem;
    }

    .eighth-block .border {
        width: 80vw;
        max-width: 550px;
    }

    .eighth-block .image-block {
        position: relative;
        top: -1vw;
        left: -13%;
    }

    .eighth-block .image {
        width: 90vw;
        height: 95vw;
    }

    .eighth-block .eighth-block-items {
        gap: 2.4vw;
    }

    .ninth-block {
        position: relative;
        height: 152px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 3vw;
    }

    .ninth-block .text {
        left: 0.5vw;
        font-size: 2rem;
    }

    .tenth-block {
        flex-direction: column;
        justify-content: unset;
        align-items: unset;
    }

    .tenth-block .wrap {
        position: relative;
        display: flex;

        align-items: flex-start;
        flex-direction: column;
        gap: 30px;
    }

    .tenth-block .image-block {
        position: relative;
        left: -6%;
        bottom: 3vw;
    }

    .tenth-block .image {
        width: 100%;
    }

    .tenth-block .wrap-inner {
        position: relative;
        right: 2vw;
        gap: 20px;
        top: 0;
    }

    .tenth-block .title {
        font-size: 3.2rem;
    }

    .tenth-block .desc p {
        width: 85vw;
        font-size: 1.1rem;
    }

    .tenth-block img[src*="arrow.svg"] {
        display: none;
    }

    .footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 3vh;
        padding-left: 26px;
    }

    .footer .low-border {
        width: 90vw;
    }

    .footer-logo {
        width: 12rem;
    }

    .footer-text .text-one {
        font-size: 19.65px;
    }

    .footer-text .text-two {
        font-size: 1.2rem;
    }

    .footer-contact {
        gap: 40px;
        flex-direction: column;
    }

    .footer-contact img {
        /* width: 3.2vw; */
    }

    .footer .low-border {
        margin-top: 5px;
    }

    .contact {
        gap: 30px;
    }

    .geolocation,
    .contact {
        width: 100%;
    }

    .geolocation {
        align-items: center;
    }
}

@media (max-width: 885px) {
    .sidebar-footer .low-border {
        border: 1px solid lightgray;
        margin-bottom: 5px;
        width: 47vw;
    }

    .fifth-block-item {
        width: 90%;
    }

    .fifth-block-item .desc p {
        text-align: left;
        width: 90%;
    }
}

@media (max-width: 800px) {
    .about-us {
        padding-top: 13.5%;
    }
}

@media (max-width: 750px) {
    .sidebar {
        right: -350px;
        /* Скрыто за экраном справа */
        width: 350px;
    }

    .sidebar .navigation {
        gap: 5vw;
    }

    .sidebar .block-logo img {
        width: 10rem;
    }

    .sidebar-footer .footer-text {
        width: 50vw;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .sidebar-footer .footer-text .text-two {
        word-spacing: 0px;
        font-size: 1rem;
    }

    .sidebar-footer .low-border {
        border: 1px solid lightgray;
        margin-bottom: 5px;
        width: 47vw;
    }
}

@media (max-width: 700px) {
    .fifth-block-item .title-inner {
        width: 80vw;
        font-size: 2.51rem;
        color: rgba(18, 109, 149, 1);
        font-weight: 700;
    }

    .about-us {
        padding-top: 12.5%;
    }

    .icons {
        height: unset;
    }

    .ninth-block .text {
        font-size: 1.5rem;
    }

    .first-block .image-block {
        width: 80%;
    }
}

@media (max-width: 637px) {

    .forth-block-item .title-inner,
    .forth-block-item .title-inner_modif {
        width: 75vw;
    }
}

@media (max-width: 600px) {
    .sidebar-footer .footer-text {
        width: 60vw;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .sidebar-footer .low-border {
        border: 1px solid lightgray;
        margin-bottom: 5px;
        width: 57vw;
    }

    .sidebar .block-logo img {}

    .first-block .image-block {
        width: 80%;
    }

    .seventh-block .title {
        font-size: 3.5rem;
    }

    .header {
        padding-left: 5vw;
        padding-right: 5vw;
    }

    .header .logo {
        width: 160px;
    }

    .header .menu-icon {
        width: 3.5rem;
    }

    .title,
    .desc p {
        font-size: 2.2rem;
        width: 100%;
    }

    .second-block .desc p {
        width: 100%;
        font-size: 1rem;
    }

    .about-us {
        padding-top: 13.5%;
    }
}

/* Для мобильных устройств (до 480px) */
@media (max-width: 480px) {
    .sidebar .navigation {
        font-size: 1.8rem;
    }

    .sidebar-footer {
        gap: 5vw;
    }

    .sidebar-footer .footer-text {
        width: 70vw;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .sidebar-footer .text-block {
        gap: 4.5vw;
    }

    .sidebar-footer .footer-contact {
        gap: 4vw;
    }

    .sidebar-footer .footer-contact .contact {
        gap: 4vw;
    }

    /* 
    .sidebar .block-logo img {
        width: 10rem;
    } */

    .sidebar-footer .low-border {
        border: 1px solid lightgray;
        margin-bottom: 5px;
        width: 70vw;
    }

    .first-block {
        padding: 30px 20px;
    }

    .header {
        padding-left: 5vw;
        padding-right: 5vw;
        padding-top: 2rem;
    }

    .header .logo {
        width: 120px;
    }

    .header .menu-icon {
        width: 2.5rem;
    }

    .first-block .image {
        right: -20%;
    }

    .first-block .info .text-block {
        gap: 1.5rem;
        margin: 246px 0 0 0;
    }

    .first-block .info .title {
        font-size: 3rem;
        width: 25rem;
    }

    .first-block .info .desc {
        gap: 1rem;
    }

    .first-block .info .desc p {
        font-size: 1.1rem;
        width: 100%;
    }

    .second-block {
        gap: 6vw;
        padding: 0 0 0 2.5vw;
    }

    .second-block .title {
        font-size: 3rem;
    }

    .about-us {
        padding-top: 21.5%;
        gap: 4vw;
    }

    .second-block .desc p {
        font-size: 1rem;
        word-spacing: -1px;
        width: 90%;
    }

    .second-block .image {
        position: relative;
        width: 25vw;
    }

    .third-block {
        padding: 0;
        height: auto;
    }

    .block-right .title,
    .block-left .title {
        font-size: 3rem;
        width: 80%;
        height: auto;
        text-align: left;
    }

    .block-right .desc p,
    .block-left .desc p {
        height: auto;
        line-height: 1.5;
        font-size: 1.05rem;
    }

    .block-right .image-block {
        justify-content: center;
        margin-bottom: 20px;
    }

    .block-right .image,
    .block-left .image {
        max-width: 90vw;
    }

    .block-left .image {
        position: relative;
        left: -10%;
    }

    .wrap-right,
    .wrap-left {
        gap: 20px;
        width: 90vw;
    }

    .wrap-left {
        left: -4vw;
    }

    .wrap-right-inner,
    .wrap-left-inner {
        gap: 16px;
    }

    .block-right .low-border {
        width: 100%;
    }

    .forth-block {
        padding: 30px 0 60px 0;
    }

    .forth-block .title {
        font-size: 3rem;
        /* ~32px */
        width: 90vw;
        margin: 0 auto 30px auto;
        text-align: left;
        position: static;
    }

    .forth-block-items {
        display: flex;
        flex-direction: column;
        gap: 3rem;
    }

    .forth-block-items .border-2 {
        width: 90%;
    }

    .forth-block-item {
        position: relative;
        padding-top: 260px;
        /* место под картинку */
        display: flex;
        flex-direction: column;
    }

    .forth-block-item .image-block {
        position: absolute;
        margin: 0 auto;
        width: 90%;
        max-width: 340px;
        z-index: 0;
    }

    .forth-block-item .image {
        width: 100%;
        height: auto;
    }

    .forth-block-item .wrap {
        position: static;
        margin: 0 1rem;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .forth-block-item .wrap-inner {
        position: static;
        top: 0;
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .forth-block-item .icon {
        width: 5rem;
    }

    .forth-block-item .title-inner,
    .forth-block-item .title-inner_modif {
        font-size: 2.5rem;
        /* ~28px */
        width: 80%;
        text-align: left;
        position: static;
    }

    .forth-block-item .desc p {
        font-size: 1.1rem;
        /* 16px */
        width: 100%;
        line-height: 1.5;
    }

    .fifth-block {
        background-color: rgba(255, 255, 255, 1);
        padding: 2rem 0 2.5rem 0;
        height: auto;
    }

    .fifth-block .title {
        position: static;
        font-size: 3rem;
        width: 90vw;
        margin: 0 auto 2rem auto;
        text-align: left;
    }

    .fifth-block-items {
        margin-left: 5vw;
        margin-right: 5vw;
        display: flex;
        flex-direction: column;
        gap: 2rem;
        margin-bottom: 2rem;
    }

    .fifth-block-item {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .fifth-block-item .wrap-inner {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .fifth-block-item .wrap-inner img {
        height: auto;
    }

    .fifth-block-item .text-block {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }

    .fifth-block-item .title-inner {
        width: 60vw;
        font-size: 2.2rem;
        color: rgba(18, 109, 149, 1);
        font-weight: 700;
    }

    .fifth-block-item .title-inner_modif {
        width: 80vw;
    }

    .fifth-block-item .desc p {
        font-size: 1.1rem;
        line-height: 1.5;
    }

    .fifth-block-item .icon {
        width: 1.2rem;
    }

    .sixth-block {
        background-color: rgba(7, 37, 65, 1);
        color: rgba(255, 255, 255, 1);
        display: flex;
        flex-direction: column-reverse;
        justify-content: center;
        align-items: center;
        height: auto;
        padding: 2rem 0;
    }

    .sixth-block .wrap {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
        padding: 0 1rem;
    }

    .sixth-block .title {
        font-size: 2.7rem;
        /* ~32px */
        width: 100%;
        text-align: left;
    }

    .sixth-block .desc p {
        font-size: 1rem;
        width: 100%;
        line-height: 1.4;
    }

    .sixth-block .image-block {
        top: -7.5vw;
        /*         right: -1.9vw; */
        left: unset;
        padding: 0 0;
    }

    .sixth-block .image {
        width: 96.5vw;
        height: 90vw;
    }

    .seventh-block {
        padding-top: 3.5rem;
        padding-bottom: 6rem;
    }

    .seventh-block .wrap {
        margin: 0 1rem;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }

    .seventh-block .title {
        font-size: 3rem;
        /* ~26px */
        text-align: left;
    }

    .seventh-block .desc p,
    .seventh-block .text-block,
    .seventh-block .text {
        font-size: 1rem;
        line-height: 18px;
        text-align: left;
    }

    .seventh-block .text-block {
        font-size: 1.1rem;
        width: 90vw;
    }

    .seventh-block .desc p {
        font-size: 1.05rem;
        text-align: justify;
        width: 90vw;
    }

    .seventh-block .border {
        width: 82vw;
        background-color: rgba(187, 199, 204, 1);
        /* если нужно вручную задать цвет */
    }

    .eighth-block .eighth-block-items {
        width: 90%;
    }

    .eighth-block .wrap {
        position: relative;
        display: flex;
        align-items: flex-start;
        flex-direction: column;
        padding: 0 10vw;
    }

    .eighth-block .wrap-inner {
        min-width: 0px;
        gap: 1.5rem;
        margin-bottom: 4vw;
    }

    .eighth-block .title {
        font-size: 3rem;
        width: 100%;
        text-align: left;
    }

    .eighth-block .text {
        font-size: 1rem;
    }

    .eighth-block .desc p {
        width: 80vw;
        font-size: 1.1rem;
        line-height: 1.5;
        text-align: left;
    }

    .eighth-block .border {
        width: 85vw;
    }

    .eighth-block .image-block {
        position: relative;
        top: 1vw;
        left: -13%;
    }

    .eighth-block .image {
        width: 95vw;
        height: 95vw;
    }

    .ninth-block {
        height: auto;
        padding: 1.5rem 1rem;
    }

    .ninth-block .text {
        left: -0.1vw;
        width: 70vw;
        font-size: 1rem;
        /* ~16px */
        font-weight: 600;
    }

    .ninth-block .image {
        width: 10vw;
    }

    .tenth-block {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 2rem 1rem;
        gap: 2rem;
    }

    .tenth-block .wrap {
        width: 90vw;
        position: relative;
        left: 15vw;
        display: flex;
        align-items: flex-start;
        flex-direction: column;
        gap: 30px;
    }

    .tenth-block .image-block {
        /* left: 10vw; */
        bottom: 2vw;
    }

    .tenth-block .image {
        width: 100%;
        max-width: 100%;
        height: auto;
    }

    .tenth-block .wrap-inner {
        display: flex;
        flex-direction: column;
        gap: 1.25rem;
    }

    .tenth-block .title {
        font-size: 3rem;
        /* ~32px */
        width: 100%;
    }

    .tenth-block .desc p {
        width: 100%;
        font-size: 0.95rem;
    }

    .tenth-block img[src*="arrow.svg"] {
        display: none;
    }

    .footer-text .text-one {
        font-size: 1.3rem;
    }

    .footer-text .text-two {
        font-size: 1rem;
    }

    .footer-contact {
        gap: 30px;
        word-spacing: 2px;
    }

    .footer-logo {
        width: 10rem;
    }
}

@media (max-width: 400px) {
    .sidebar-footer .footer-text {
        width: 80vw;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .sidebar-footer .low-border {
        border: 1px solid lightgray;
        margin-bottom: 5px;
        width: 78vw;
    }

    .first-block .image-block {
        top: 3.5vh;
    }

    .first-block .info .text-block {
        gap: 1.5rem;
        margin: 205px 0 0 0;
    }

    .first-block .info .desc h4 {
        font-size: 1.5rem;
        width: 18rem;
    }

    .first-block .info .desc p {
        width: 100%;
    }

    .second-block .image {
        width: 30vw;
    }

    .about-us {
        padding-top: 26%;
        gap: 6vw;
    }

    .forth-block-item .title-inner,
    .forth-block-item .title-inner_modif {
        width: 80vw;
    }

    .fifth-block-item .title-inner {
        font-size: 2.2rem;
        width: 80vw;
    }

    .fifth-block-item .title-inner_modif {
        width: 88vw;
    }

    .seventh-block .desc p,
    .seventh-block .text-block,
    .seventh-block .text {
        width: 90vw;
        font-size: 1rem;
    }

    .seventh-block .border {
        width: 82vw;
        background-color: rgba(187, 199, 204, 1);
    }

    .sixth-block .image-block {
        top: -9vw;
    }

    .eighth-block .wrap-inner {
        margin-top: 30px;
        position: relative;
        left: -6.5vw;
    }

    .eighth-block .desc p {
        width: 80vw;
        font-size: 1.1rem;
        line-height: 1.5;
        text-align: left;
    }

    .tenth-block .image-block {}
}

.fade-in {
    opacity: 0;
}

.fade-in.active {
    animation: fadeIn 2.5s forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.fade-out {
    opacity: 1;
}

.fade-out.active {
    animation: fadeOut 2s forwards;
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        display: none;
    }
}

.slide-right {
    opacity: 0;
}

.slide-right.active {
    animation: slideRight 2s forwards;
}

@keyframes slideRight {
    from {
        transform: translateX(100%);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-left {
    opacity: 0;
}

.slide-left.active {
    animation: slideLeft 2s forwards;
}

@keyframes slideLeft {
    from {
        transform: translateX(-100%);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-top {
    opacity: 0;
}

.slide-top.active {
    animation: slideTop 2s forwards;
}

@keyframes slideTop {
    from {
        transform: translateY(-100%);
    }

    to {
        opacity: 1;
        transform: translateY(0%);
    }
}

.slide-bottom {
    opacity: 0;
}

.slide-bottom.active {
    animation: slideBottom 2.5s forwards;
}

@keyframes slideBottom {
    from {
        transform: translateY(30%);
    }

    to {
        opacity: 1;
        transform: translateY(0%);
    }
}

.clip-from-right {
    opacity: 0;
}

.clip-from-right.active {
    clip-path: polygon(100% 0, 100% 0, 100% 0, 100% 0);
    transform: scale(0.95);
    animation: fromRightCorner 1s ease-out forwards;
}

@keyframes fromRightCorner {
    0% {
        clip-path: polygon(100% 0, 100% 0, 100% 0, 100% 0);
        transform: scale(0.95);
    }

    100% {
        clip-path: polygon(0 0, 0 100%, 100% 100%, 100% 0);
        opacity: 1;
        transform: scale(1);
    }
}

.clip-from-left-bottom {
    opacity: 0;
}

.clip-from-left-bottom.active {
    clip-path: polygon(0 100%, 0 100%, 0 100%, 0 100%);
    transform: scale(0.95);
    animation: fromLeftBottom 1s ease-out forwards;
}

@keyframes fromLeftBottom {
    0% {
        clip-path: polygon(0 100%, 0 100%, 0 100%, 0 100%);
        transform: scale(0.95);
    }

    100% {
        clip-path: polygon(0 0, 0 100%, 100% 100%, 100% 0);
        opacity: 1;
        transform: scale(1);
    }
}

.clip-from-top {
    opacity: 0;
}

.clip-from-top.active {
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    transform: translateY(-10px);
    animation: fromTop 1s ease-out forwards;
}

@keyframes fromTop {
    0% {
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        opacity: 0;
        transform: translateY(-10px);
    }

    100% {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        opacity: 1;
        transform: translateY(0);
    }
}

.clip-from-bottom {
    opacity: 0;
}

.clip-from-bottom.active {
    clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
    transform: translateY(10px);
    animation: fromBottom 1s ease-out forwards;
}

@keyframes fromBottom {
    0% {
        clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
        opacity: 0;
        transform: translateY(10px);
    }

    100% {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        opacity: 1;
        transform: translateY(0);
    }
}

.clip-from-left {
    opacity: 0;
}

.clip-from-left.active {
    clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
    transform: translateX(-10px);
    animation: fromLeft 1.5s ease-out forwards;
}

@keyframes fromLeft {
    0% {
        clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
        opacity: 0;
        transform: translateX(-10px);
    }

    100% {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        opacity: 1;
        transform: translateX(0);
    }
}

.clip-from-right {
    opacity: 0;
}

.clip-from-right.active {
    clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
    transform: translateX(10px);
    animation: fromRight 1.5s ease-out forwards;
}

@keyframes fromRight {
    0% {
        clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
        opacity: 0;
        transform: translateX(10px);
    }

    100% {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        opacity: 1;
        transform: translateX(0);
    }
}

.clip-from-top-left {
    opacity: 0;
}

.clip-from-top-left.active {
    clip-path: polygon(0 0, 0 0, 0 0, 0 0);
    transform: scale(0.95);
    animation: fromTopLeft 1.5s ease-out forwards;
}

@keyframes fromTopLeft {
    0% {
        clip-path: polygon(0 0, 0 0, 0 0, 0 0);
        opacity: 0;
        transform: scale(0.95);
    }

    100% {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        opacity: 1;
        transform: scale(1);
    }
}

.geolocation span {
    border-bottom: none;
}

.contact p {
    border-bottom: none;
}