* {
    padding: 0;
    margin: 0;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    overflow-y: auto;
}

body {
    font-family: "TT Norms";
    overflow-x: hidden;
    overflow-y: auto;
    position: relative;
}

input:focus {
    outline: none;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
    cursor: pointer;
    color: rgba(255, 255, 255, 1);
}

@font-face {
    font-family: 'SF Pro Display';
    src: url('logoFont/SF-Pro-Display-Black.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
}

.header-logo {
    font-family: 'SF Pro Display';
    font-weight: 900;
    font-style: Black;
    font-size: 64px;
    line-height: 150%;
    letter-spacing: 0%;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-logo--logo {
    font-family: 'SF Pro Display';
    font-weight: 900;
    font-style: Black;
    font-size: 11px;
    line-height: 150%;
    letter-spacing: 0%;
    color: #FFFFFF;
}

.background-img {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100vh;
}

.parallax {
    position: absolute;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    background-image: url(images/back.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    transform: translateZ(0);
    will-change: transform;
    z-index: -1;
    transition: transform 0.3s ease-out;
}

.header-wrapper {
    max-width: 1437px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 29px 10px 0 10px;
}

.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #a6a5a5;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 10px 10px !important;
    animation: fadeIn 0.3s ease-out;
    max-width: 100% !important;
    width: auto;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.header-list__lists {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 128px;
}

.header-list {
    font-weight: 700;
    font-size: 12px;
    line-height: 100%;
    text-transform: uppercase;
    color: #FFFFFF;
    transition: color 0.5s ease;

    &:hover {
        color: #32A1DF;
    }
}

.header-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.header-contact__contact {
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    color: #FFFFFF;
    transition: color 0.5s ease;
}

.main-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-left: 243px;
}

.main-text__title {
    font-family: TT Norms;
    font-weight: 800;
    font-size: 54px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #FFFFFF;
}

.main-text__text {
    font-family: TT Norms;
    font-weight: 400;
    font-size: 26px;
    letter-spacing: 0%;
    color: #CFCFCF;
    max-width: 650px;
}

.main-info {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.main-info__lists {
    max-width: 1398px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 26px;
    padding-bottom: 50px;
    padding: 0 10px 50px 10px;
}

.main_info__text {
    font-weight: 700;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 0%;
    color: #ffffff;
    display: flex;
    flex-direction: column;
}

.main-info__text--text {
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
    letter-spacing: 0%;
    color: #C9C9C9;
    max-width: 290px;
    width: 100%;
}

.main-wrapper {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    cursor: pointer;
    position: relative;
    z-index: 1001;
    margin-right: 20px;
}

.burger-line {
    width: 30px;
    height: 3px;
    background-color: #FFFFFF;
    margin: 3px 0;
    transition: all 0.3s ease;
}

.burger-menu.active .burger-line:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.burger-menu.active .burger-line:nth-child(2) {
    opacity: 0;
}

.burger-menu.active .burger-line:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.mobile-contact {
    display: none;
}

.close-btn {
    display: none;
    position: absolute;
    top: 20px;
    right: 20px;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

.activity-title {
    font-weight: 700;
    font-size: 46px;
    line-height: 150%;
    color: #000000;
    text-align: center;
}

.main-back {
    background-color: #FFFFFF;
    position: relative;
}

.activity-container {
    max-width: 1526px;
    width: 100%;
    margin: 0 auto;
    padding-top: 120px;
}

.activity-block__wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 50px 10px 224px 10px;
}

.activity-block {
    max-width: 496px;
    max-height: 400px;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;

    &:hover {
        .activity-block__img {
            transform: scale(1.2);
        }
    }
}

.activity-block__img {
    width: 100%;
    height: 100%;
    transition: transform 2s ease;
}

.activity-block__btn {
    font-weight: 500;
    font-size: 20px;
    line-height: 150%;
    color: #FFFFFF;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #118BDD;
    box-sizing: border-box;
    padding: 17px 0 17px 28px;
    max-height: 64px;
    transition: opacity 0.5s ease;

    &:hover {
        opacity: 0.9;
    }
}

.activity-block__btn--svg {
    padding-right: 28px;
    background: #32A1DF;
    padding: 24px 28px 24px 28px;
}

.activity-block {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.activity-block.visible {
    opacity: 1;
    transform: translateY(0);
}

.parners-img.first {
    margin-left: 80px;
}

.marquee {
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
    width: 100%;
}

.partners-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 100px;
    padding: 50px 10px 220px 10px;
    animation: marquee 20s linear infinite;
}

@keyframes marquee {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-100%);
    }
}

.parners-img {
    /* max-width: 180px; */
    width: auto;
    height: auto;
}

/* .swiper-button-next, .swiper-button-prev {
    color: #118BDD;
}

.swiper-button-prev,
.swiper-button-next {
    width: 49px;
    height: 49px;
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    z-index: 10;
} */

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: stretch;
    height: auto;
    margin-bottom: 30px;
    box-sizing: border-box;
}

.slider-img {
    max-width: 400px;
    width: 100%;
    height: auto;
    /* aspect-ratio: 1/2; */
    object-fit: contain;
}

.feedback-wrapper {
    padding: 50px 10px 120px 10px;
}

.footer-block {
    background: #0C0E16;
    width: 100%;
}

.footer-wrapper {
    max-width: 1387px;
    margin: 0 auto;
    padding: 50px 10px 90px 10px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-lists {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.footer-lists__title {
    font-weight: 500;
    font-size: 14px;
    line-height: 150%;
    color: #606269;
}

.footer-lists__list {
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: #FFFFFF;
}

.footer-lists__list.link {
    transition: color 0.5s ease;

    &:hover {
        color: #32A1DF;
    }
}

.footer-hr {
    width: 100%;
    height: 1px;
    background: #464958;
    margin-bottom: 30px;
}

.footer-down__lists {
    display: flex;
    justify-content: space-evenly;
    padding-bottom: 50px;
}

.footer-down__list {
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    color: #606269;
}

.footer-lists.last {
    margin-right: 20px;
}

.company-wrapper {
    max-width: 1526px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    padding: 200px 10px 200px 10px;
}

.company-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.company-text__title {
    font-weight: 700;
    font-size: 46px;
    line-height: 150%;
    color: #000000;
}

.company-text__wrap {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.company-text__text {
    font-weight: 400;
    font-size: 15px;
    line-height: 180%;
    color: #434343;
    max-width: 884px;
}

.company-img__img {
    width: auto;
    height: auto;
    max-width: 257px;
    max-height: 312px;
    object-fit: cover;
}

.company-img--wrapper {
    display: flex;
    gap: 60px;
}

.company-img__text {
    font-weight: 400;
    font-size: 15px;
    line-height: 180%;
    color: #434343;
    text-align: center;
}

.company-img {
    display: flex;
    flex-direction: column;
    gap: 23px;
}

.map {
    display: block;
}

.contact-map {
    position: relative;
}

.contact-tel__title {
    font-weight: 700;
    font-size: 18px;
    line-height: 150%;
    color: #000000;
}

.contact-tel__tel {
    font-weight: 400;
    font-size: 15px;
    line-height: 180%;
    color: #434343;
    transition: opacity 0.5s ease;

    &:hover {
        opacity: 0.8;
    }
}

.contact-wrap {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    width: 100%;
    gap: 30px;
}

.contact-tel {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    position: absolute;
    left: 10%;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 1);
    border-radius: 15px;
    padding: 50px 20px;
    box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.1);
}

.contact-title {
    padding: 30px 0;
}

.obj-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
    justify-content: center;
    padding: 50px 10px 30px 10px;
    position: relative;
}

.obj-btn {
    font-weight: 700;
    font-size: 18px;
    line-height: 150%;
    text-align: center;
    display: flex;
    align-items: center;
    margin-right: 20%;
    margin-left: auto;
    gap: 15px;
    color: #fff;
    background: #118BDD;
    padding: 10px 25px;
    border-radius: 5px;
    box-sizing: border-box;
    margin-bottom: 200px;
    max-width: 300px;
    transition: opacity 0.5s ease;

    &:hover {
        opacity: 0.8;
    }
}

.obj-text__wrap {
    display: flex;
    flex-direction: column;
    gap: 100px;
}

.obj-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.obj-text__number {
    font-weight: 800;
    font-size: 80px;
    line-height: 100%;
    text-transform: uppercase;
    color: #2991D6;
}

.obj-text__text {
    font-weight: 400;
    font-size: 18px;
    line-height: 150%;
    letter-spacing: 0%;
    color: #8B8B8B;
    text-align: center;
}

.modal {
    display: none;
    position: absolute;
    left: 32%;
    /* position: fixed; */
    top: 50%;
    transform: translateY(-50%);
    /* left: 0; */
    /* width: 100%; */
    /* height: 100%; */
    /* background-color: rgba(0, 0, 0, 0.7); */
    z-index: 1000;
    align-items: center;
    /* justify-content: center; */
}

.modal-content {
    max-width: 420px;
    width: 100%;
    box-shadow: 0px 10px 50px 0px #2C3B6326;
    background: #FFFFFF;
    position: relative;
    animation: fadeIn 0.3s ease-out;
    min-height: 440px;
    max-height: 440px;
}

.modal-block__img {
    transition: opacity 0.5s ease;
    display: block;
    width: auto;
    height: auto;
}

.modal-block__img.hoverable {
    cursor: pointer;
}

.modal-text {
    display: flex;
    flex-direction: column;
    padding: 20px 20px 30px 20px;
}

.modal-text__title {
    font-weight: 700;
    font-size: 24px;
    line-height: 150%;
    letter-spacing: 0%;
    color: #000;
    margin-bottom: 6px;
}

.modal-text__address {
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
    color: #000;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.modal-text__desc {
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    color: #8B8B8B;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.highlight {
    transition: all 0.3s ease;
}

.highlight:hover {
    filter: brightness(85%);
}

.map-point {
    cursor: pointer;
    padding: 25px;
    z-index: 10;
}

#map {
    width: 100%;
    height: 100vh;
}

.balloon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    max-width: 400px;
    display: none;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    font-size: 20px;
}

.service-section {
    width: 100%;
    background: #2991D6;
    padding-bottom: 100px;
    position: relative;
}

.service-title {
    font-weight: 700;
    font-size: 46px;
    line-height: 150%;
    text-align: center;
    color: #FFFFFF;
    padding: 76px 10px 104px 10px;
}

.service-block {
    max-width: 413px;
    width: 100%;
    height: 571px;
    background: #FFFFFF;
    border-radius: 15px;
    box-sizing: border-box;
}

.service-block__title {
    font-weight: 700;
    font-style: Bold;
    font-size: 24px;
    line-height: 150%;
    color: #000000;
    /* padding: 30px 0;
    margin-left: 32px;
    max-width: 339px; */
    padding-right: 20px;
    margin-bottom: 20px;
}

.service-block__img {
    margin-top: 44px;
    margin-left: 32px;
}

.service-block__text--wrap {
    display: flex;
    flex-direction: column;
}

.service-block__text {
    font-weight: 400;
    font-style: Regular;
    font-size: 20px;
    line-height: 30px;
    color: #7D7D7D;
    list-style: disc;
    margin-left: 22px;
    /* margin-right: 15px; */
}

.service-block {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.service-block2 {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.service-block.visible {
    opacity: 1;
    transform: translateY(0);
}

.service-block2.visible {
    opacity: 1;
    transform: translateY(0);
}

.swiper-pagination.service {
    bottom: 50px;
}

.swiper2 {
    padding: 0 10px 100px 10px;
}

.footer-hr {
    display: none;
}

.footer-down {
    display: none;
}

.obj-header {
    background: #0C0E16;
    box-shadow: 25px 25px 150px 0px #000000CC inset;
    padding-bottom: 20px;
}

.objectpage-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 50px;
    padding: 50px 0 100px 0;
}

.objectpage-link__main {
    font-weight: 500;
    font-size: 18px;
    line-height: 100%;
    color: #000000;
}

.objectpage-link__current {
    font-weight: 500;
    font-size: 18px;
    line-height: 100%;
    color: #2991D6;
}

.objectpage-link {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 50px;
    margin-left: 40px;
}

.header-logo__img {
    width: 220px;
    height: 76px;
    object-fit: contain;
    transition: filter 0.5s ease;

    &:hover {
        filter: brightness(0.8);
    }
}

.custom-modal {
    display: none;
    position: fixed;
    z-index: 1100;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
}

.custom-modal-content {
    margin: auto;
    display: block;
    max-width: 95%;
    max-height: 90vh;
    animation-name: custom-zoom;
    animation-duration: 0.3s;
}

@keyframes custom-zoom {
    from {
        transform: scale(0.7)
    }

    to {
        transform: scale(1)
    }
}

.custom-close {
    position: absolute;
    top: 10px;
    right: 15px;
    color: #fff;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.custom-close:hover,
.custom-close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

#custom-caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    font-size: 18px;
}

/* #company, */
#service,
#obj,
#feed,
#contact {
    scroll-margin-top: 120px;
    position: relative;
}

.service-wrapper {
    display: flex;
    justify-content: center;
    gap: 43px;
    padding: 0 10px;
}

.service-wrap {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 43px;
}

.service-block2 {
    padding: 24px 50px 35px 50px;
    background: #FFFFFF;
    box-shadow: 0px 10px 50px 0px #2C3B6326;
}

.service-block__text--short {
    max-width: 528px;
}

.service-block__text--long {
    max-width: 745px;
}

#feed {
    padding-top: 100px;
}

.service-wrap2 {
    justify-content: space-between;
    gap: 0;
}

.job-link {
    font-family: TT Norms;
    font-weight: 800;
    font-style: ExtraBold;
    font-size: 20px;
    leading-trim: NONE;
    line-height: 180%;
    letter-spacing: 0%;
    color: #FFFFFF;
    border-radius: 10px;
    background: #32A1DF82;
    padding: 5px 41px;
    max-height: 41px;
    transition: opacity 0.5s ease;
    margin-bottom: 50px;

    &:hover {
        opacity: 0.8;
    }
}

.job-wrap {
    max-width: 1398px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-end;
}

.job-link--header {
    display: none;
}

@media (max-width:1920px) {
    .modal {
        left: 26%;
    }
}

@media (max-width:1458px) {
    .header-wrapper {
        max-width: none;
        width: auto;
        gap: 60px;
    }

    .header-logo {
        font-size: 48px;
        line-height: 100%;
        gap: 5px;
    }

    .header-logo--logo {
        font-size: 10px;
        line-height: 120%;
    }

    .header-list__lists {
        gap: 40px;
    }

    .main-text {
        margin-left: 120px;
    }

    .service-wrapper {
        gap: 20px;
    }

    .service-wrap {
        gap: 20px;
    }

    .service-wrap2 {
        gap: 10px;
    }

    .service-block__text {
        font-size: 17px;
    }

    .service-block2 {
        padding: 20px 30px 30px 30px;
    }

    .modal {
        left: 20%;
    }
}

@media (max-width:1350px) {
    .service-wrap2 {
        gap: 0px;
    }
}

@media (max-width: 1300px) {
    .activity-block__btn {
        font-size: 18px;
    }
}

@media (max-width:1033px) {
    .header-wrapper {
        width: 100%;
        padding: 0;
        padding-top: 20px;
    }

    .header-logo {
        margin-left: 20px;
    }

    .burger-menu {
        display: flex;
    }

    .header-list__lists {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 0;
        background-color: #a6a5a5;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 25px;
        padding: 0;
        margin: 0;
        overflow: hidden;
        transition: height 0.5s cubic-bezier(0.33, 1, 0.68, 1);
        z-index: 1000;
    }

    .header-list__lists.active {
        height: 100vh;
    }

    .header-list {
        font-size: 18px;
        opacity: 0;
        transform: translateY(-20px);
        transition: opacity 0.3s, transform 0.3s;
    }

    .header-list__lists.active .header-list {
        opacity: 1;
        transform: translateY(0);
        transition: opacity 0.3s 0.2s, transform 0.3s 0.2s;
    }

    .header-contact {
        display: none;
    }

    .header-contact--obj {
        display: flex;
        margin-right: 20px;
    }

    .mobile-contact {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
        margin-top: 30px;
    }

    .mobile-contact a {
        color: white;
        text-decoration: none;
        opacity: 0;
        transform: translateY(20px);
    }

    .header-list__lists.active .mobile-contact a {
        opacity: 1;
        transform: translateY(0);

        &:nth-child(1) {
            transition: opacity 0.3s 0.4s, transform 0.3s 0.4s;
        }

        &:nth-child(2) {
            transition: opacity 0.3s 0.5s, transform 0.3s 0.5s;
        }
    }

    .close-btn {
        display: block;
        opacity: 0;
        transition: opacity 0.3s;
    }

    .header-list__lists.active~.close-btn {
        opacity: 1;
        transition: opacity 0.3s 0.3s;
    }

    .main-text {
        margin: 0 auto;
        padding: 0 20px;
    }

    .main-text__title {
        font-size: 38px;
        text-align: center;
        word-wrap: break-word;
    }

    .main-text__text {
        font-size: 20px;
        color: #ececec;
        max-width: none;
        text-align: center;
        word-wrap: break-word;
    }

    .main-info__lists {
        flex-wrap: wrap;
        padding: 0 20px 20px 20px;
        gap: 15px;
    }

    .main-info {
        width: 330px;
    }

    .company-text__text {
        font-size: 12px;
        line-height: 150%;
    }

    .company-wrapper {
        gap: 50px;
        padding: 100px 10px 100px 10px;
    }

    .company-text__title {
        font-size: 26px;
    }

    .service-block__img {
        margin-top: 20px;
        margin-left: 10px;
        width: 36px;
        height: 36px;
    }

    .service-block__title {
        font-size: 18px;
        line-height: 100%;
        /* padding: 20px 0;
        margin-left: 10px; */
        margin-right: 10px;
        margin-bottom: 10px;
    }

    .service-block__text {
        font-size: 13px;
        margin-left: 25px;
        margin-right: 20px;
    }

    .service-block {
        height: 480px;
    }

    .swiper2 {
        padding: 0 20px 70px 20px;
    }

    .objectpage-link {
        margin-left: 20px;
    }

    .header-logo__img {
        width: 160px;
        height: 46px;
        margin-left: 20px;
    }

    .service-wrapper {
        flex-direction: column;
        padding: 0 20px;
    }

    .service-wrap2 {
        gap: 20px;
    }

    .job-wrap {
        justify-content: center;
    }

    .job-link--header {
        display: block;
    }

    .job-link {
        display: none;
    }

    .job-link--header {
        display: block;
    }
}

@media (max-width:900px) {
    .activity-block__wrapper {
        flex-direction: column;
        gap: 30px;
        padding: 30px 20px 100px 20px;
    }

    .activity-title {
        font-size: 26px;
    }

    .partners-wrapper {
        gap: 50px;
        padding: 30px 20px 100px 20px;
    }

    .parners-img.first {
        margin-left: 30px;
    }

    /* .parners-img {
        max-width: 100px;
    } */

    .swiper-slide {
        margin-bottom: 50px;
    }

    .feedback-wrapper {
        padding: 30px 20px 100px 20px;
    }

    .footer-wrapper {
        max-width: none;
        width: auto;
        margin: 0;
        padding: 50px 20px 90px 20px;
        align-items: center;
        flex-direction: column;
        gap: 30px;
    }

    .footer-lists {
        width: 300px;
        align-items: center;
        gap: 7px;
    }

    .footer-lists.last {
        margin-right: 0;
    }

    .footer-lists__list {
        text-align: center;
    }

    .footer-down__lists {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 20px;
    }

    .company-wrapper {
        align-items: flex-start;
    }

    .company-text__text {
        line-height: 100%;
    }

    .map {
        height: 300px !important;
    }

    .header-logo.footer {
        margin-left: 0px;
    }

    .header-logo__img.footer {
        margin-left: 0px;
    }

    .contact-wrapper {
        position: static;
        transform: translateY(0);
        align-items: center;
    }

    .contact-wrap {
        align-items: flex-start;
        max-width: 368px;
    }

    .contact-title {
        padding: 0;
    }

    .obj-wrapper {
        flex-direction: column;
    }

    .obj-text__wrap {
        flex-direction: row;
        gap: 50px;
    }

    .obj-map {
        width: 100%;
        height: auto;
    }

    .obj-text__number {
        font-size: 50px;
    }

    .obj-text__text {
        font-size: 14px;
    }

    .service-title {
        font-size: 26px;
        padding: 50px 10px 50px 10px;
    }

    .obj-btn {
        margin: 0 auto 100px;
    }

    .company-wrapper {
        flex-direction: column;
        align-items: center;
        max-width: none;
        width: auto;
        padding: 30px 20px 50px 20px;
    }

    .obj-map {
        display: none;
    }
}

@media (max-width: 600px) {
    .activity-container {
        padding-top: 50px;
    }

    .company-text {
        align-items: center;
    }

    .company-text__text {
        text-align: center;
    }

    .parners-img {
        max-height: 60px;
    }

    .modal-content {
        max-width: 360px;
    }

    .modal-block__img {
        max-width: 360px;
    }

    .header-logo--obj {
        font-size: 38px;
    }

    .header-logo--logo--obj {
        font-size: 8px;
    }

    .service-block2 {
        padding: 20px 20px 20px 20px;
    }

    .company-img--wrapper {
        gap: 20px;
        flex-direction: column;
    }
}

@media (max-width: 400px) {
    .activity-block__btn {
        font-size: 15px;
    }

    .header-contact__contact {
        font-size: 13px;
    }
}