@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Oswald:wght@200..700&display=swap');

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

html {
    height: 100%;
}

body {
    font-family: Oswald, sans-serif;
    position: relative;
    min-height: 100%;
    display: grid;
    grid-template-rows: auto 1fr auto;
}

input:focus {
    outline: none;
    border: none;
}

input.active-input {
    border: none;
}

.container {
    max-width: 1600px;
    margin: 0 auto;

}

.button-open-panel {
    width: 50px;
    height: 50px;
    cursor: pointer;
    margin-left: auto;
    display: none;
    align-items: center;
    justify-content: center;
    margin-top: 5px;
    margin-right: 5px;
    background-color: rgba(9, 10, 11, 1);
    z-index: 1000;
}

.icon-open-panel {
    width: 25px;
    height: 25px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.nav-menu {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 0;
    height: 100%;
    background-color: #1a1a1a;
    padding-top: 60px;
    transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
    max-width: 650px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #555 #1a1a1a;
}

.nav-menu::-webkit-scrollbar {
    width: 8px;
}

.nav-menu::-webkit-scrollbar-track {
    background: #1a1a1a;
}

.nav-menu::-webkit-scrollbar-thumb {
    background: #555;
    border-radius: 4px;
}

.nav-menu::-webkit-scrollbar-thumb:hover {
    background: #777;
}

.nav-menu.active {
    width: 80%;
    max-width: 650px;
    display: block;
}

.nav-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    padding-left: 40px;
    padding-right: 40px;
}

.nav-menu ul li {
    padding: 15px 0px;
    color: #fff;
    font-family: Inter, sans-serif;
    font-size: 21px;
    white-space: nowrap;
    transition: background-color 0.2s ease, opacity 0.5s ease, transform 0.5s ease;
    opacity: 0;
    transform: translateX(20px);
    position: relative;
}

.nav-menu.active ul li {
    opacity: 1;
    transform: translateX(0);
}

.nav-menu ul li:nth-child(1) {
    transition-delay: 0.3s;
}

.nav-menu ul li:nth-child(2) {
    transition-delay: 0.4s;
}

.nav-menu ul li:nth-child(3) {
    transition-delay: 0.5s;
}

.nav-menu ul li:nth-child(4) {
    transition-delay: 0.6s;
}

.nav-menu ul li:nth-child(5) {
    transition-delay: 0.7s;
}

.nav-menu ul li:nth-child(6) {
    transition-delay: 0.8s;
}

.nav-menu ul li:nth-child(7) {
    transition-delay: 0.9s;
}

.nav-menu ul li:nth-child(8) {
    transition-delay: 1s;
}

.nav-menu ul li:nth-child(9) {
    transition-delay: 1.1s;
}

.nav-menu ul li:nth-child(10) {
    transition-delay: 1.2s;
}

.nav-menu ul li a {
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-menu ul li a:hover {
    color: #00ccff;
}

.submenu {
    display: block;
    padding-left: 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.8s cubic-bezier(0.4, 0, 0.2, 1), padding 0.5s ease;
}

.nav-menu ul li.active .submenu {
    max-height: 1000px;
    padding-left: 15px;
}

.submenu li {
    padding: 10px 0;
    font-size: 18px;
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.nav-menu ul li.active .submenu li {
    opacity: 1;
    transform: translateX(0);
}

.nav-menu ul li:not(.active) .submenu li {
    opacity: 0;
    transform: translateX(20px);
}

.toggle-icon {
    width: 15px;
    height: 15px;
    transition: transform 0.3s ease;
}

.nav-menu ul li.active .toggle-icon {
    transform: rotate(180deg);
}

.close-button {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    transition: transform 0.2s ease, opacity 0.5s ease 0.3s;
    opacity: 0;
}

.nav-menu.active .close-button {
    opacity: 1;
}

.close-button:hover {
    transform: scale(1.2);
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0);
    z-index: 1000;
    transition: background-color 0.5s ease;
    pointer-events: none;
}

.overlay.active {
    background-color: rgba(0, 0, 0, 0.6);
    pointer-events: auto;
}

.header {
    width: 90%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 5px 0 0 0;
}

.header__top {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    border-bottom: 1px solid #ccc;
}


.header__right-contacts {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-left: auto;
}

.header__logo {
    display: flex;
    align-items: center;
}

.header__logo img {
    max-height: 90px;
    margin-right: 10px;
}

.header__logo h1 {
    font-family: Oswald, sans-serif;
    color: #222;
    font-size: 30px;
    margin: 0;
}

.header__logo a {
    text-decoration: none;
}

.header__logo p {
    font-family: Montserrat, sans-serif;
    color: #666;
    font-size: 22px;
}

.header__contacts {
    text-align: right;
}

.header__icons {
    margin-right: 35px;
    display: flex;
    gap: 10px;
}

.header-icon-link {
    display: inline-flex;
    height: auto;
    width: 40px;
}

.header__icons img {
    width: 40px;
    height: 40px;
    border-radius: 5px;
}

.header__phone p {
    font-family: Montserrat, sans-serif;
    color: #222222;
    font-size: 14px;
}

.header__phone a {
    font-family: Oswald, sans-serif;
    color: #222;
    font-size: 26px;
    font-weight: bold;
    text-decoration: none;
    margin-top: 6px;
}

.navigation ul {
    font-family: Montserrat, sans-serif;
    list-style: none;
    display: flex;
    padding: 20px 0;
    flex-wrap: wrap;
    border-bottom: 1px solid #ccc;
}

.navigation ul a {
    text-decoration: none;
    color: #111;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;

}

.navigation ul a:hover {
    transition: 0.25s all ease;
    color: #00DBFF;
}

.navigation li {
    position: relative;
    margin: 0 15px;
}

/* Убедимся, что подменю скрыто по умолчанию */
.dropdown {
    display: none !important;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
    min-width: 350px;
    /* border: 1px solid #ddd; */
    z-index: 1;
}

/* Показываем подменю только при наведении */
.navigation li:hover>.dropdown {
    display: block !important;
}

.dropdown li {
    margin: 0;
}

.dropdown li a {
    text-decoration: none;
    display: block;
    padding: 15px 20px 15px 30px;
    color: #333;
    font-size: 14px;
}


.main {
    margin: 0 auto;
    width: 90%;
    /* padding: 20px 0; */
}

.section-hero {
    display: flex;
    width: 100%;
    position: relative;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    padding-bottom: 0px;
    filter: none;
    overflow-x: visible;
    overflow-y: visible;
    -webkit-box-align: center;
    align-items: center;
    margin-bottom: 50px;
}

.container-hero {
    width: 100%;
    max-width: 1600px;
    position: relative;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
    -webkit-box-align: stretch;
    align-items: stretch;
    padding-left: 0%;
    padding-right: 0%;
    justify-content: space-between;
    height: 100%;
    overflow-x: visible;
    overflow-y: visible;
    border-bottom-style: solid;
    border-bottom-width: 1px;
    border-bottom-color: rgba(34, 34, 34, 0.1);
}

.container-left-text-hero {
    width: 40%;
    display: flex;
    -webkit-box-align: start;
    align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    margin-left: 0px;
    margin-right: 0px;
    padding-bottom: 60px;
    justify-content: center;
    padding-top: 60px;
    padding-left: 0px;
    padding-right: 0px;
    border-bottom-style: none;
    border-bottom-width: 1px;
    border-bottom-color: rgba(34, 34, 34, 0.1);
}

.wrapper-left-text-hero {
    width: 100%;
    position: relative;
    display: flex;
    -webkit-box-flex: 1;
    flex-grow: 1;
    flex-shrink: 0;
    -webkit-box-align: start;
    align-items: flex-start;
    padding-top: 0px;
    padding-bottom: 0px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    justify-content: center;
    padding-right: 0px;
    margin-right: 0px;
    margin-left: 0px;
}

.left-text-hero-title {
    display: flex;
    font-size: 30px;
    line-height: 40px;
    vertical-align: top;
    position: relative;
    width: 100%;
    margin-left: 0px;
    font-family: Montserrat, sans-serif;
    font-weight: 300;
    color: rgba(22, 22, 22, 0.8);
    margin-right: 0px;
    margin-top: 10px;
    padding-left: 0px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.left-text-hero-title-strong {
    font-size: 2.8vw;
    margin-top: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
    display: flex;
    position: relative;
    width: auto;
    font-weight: 700;
    font-family: Oswald, sans-serif;
    overflow-wrap: break-word;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
    color: rgba(47, 47, 47, 1);
    text-transform: uppercase;
    text-align: left;
    line-height: 3.4vw;
}

.left-text-hero-btn {
    width: auto;
    position: relative;
    display: flex;
    -webkit-box-align: start;
    align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 24px;
    margin-left: 0px;
    margin-right: 0px;
    padding-bottom: 0px;
    overflow: hidden;
    transition: background-color 0.3s ease;
    animation: btnUp 1s ease-in-out alternate;
}

@keyframes btnUp {
    from {
        opacity: 0;
        transform: translateY(85px);
    }

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

.left-text-hero-btn-link {
    display: flex;
    cursor: pointer;
    vertical-align: top;
    padding: 30px 50px 30px 50px;
    font-size: 12px;
    background-color: rgba(0, 219, 255, 1);
    color: rgba(255, 255, 255, 1);
    position: relative;
    text-decoration-line: none;
    font-weight: 700;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
    justify-content: center;
    transition-property: all;
    transition-duration: 300ms;
    transition-delay: 0ms;
    transition-timing-function: ease;
    text-align: center;
    box-shadow: none;
    -webkit-box-align: center;
    align-items: center;
    overflow-x: hidden;
    overflow-y: hidden;
    background-image: none;
    background-repeat: repeat;
    background-position: 0 0;
    background-size: auto;
    background-attachment: scroll;
}

.left-text-hero-btn-square {
    width: 30px;
    position: absolute;
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.3);
    height: 30px;
    left: 30px;
    transition-property: all;
    transition-duration: 650ms;
    transition-delay: 0ms;
    transition-timing-function: ease;
    transform: translateY(-50%, -50%);
    z-index: 1;
    transition: all 0.6s ease;
    border-radius: 5px;
}

.left-text-hero-btn-link:hover .left-text-hero-btn-square {
    width: 100%;
    height: 100%;
    left: 0;
    transform: none;
}

.left-text-hero-btn-title {
    display: inline-flex;
    vertical-align: top;
    position: relative;
    text-transform: uppercase;
    font-size: 17px;
    font-family: Oswald, sans-serif;
    line-height: 140%;
    font-weight: 600;
}

.container-right-block-hero {
    width: 60%;
    position: relative;
    display: inline-flex;
    padding-top: 0px;
    padding-bottom: 0px;
    -webkit-box-align: start;
    align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    min-width: auto;
}

.wrapper-right-block-hero {
    width: 100%;
    position: relative;
    display: flex;
    padding-right: 0px;
    -webkit-box-align: stretch;
    align-items: stretch;
}

.wrapper-right-left-block-hero {
    width: 40%;
    position: relative;
    display: block;
    height: auto;
    overflow-x: hidden;
    overflow-y: hidden;
    margin-right: 4%;
    max-width: none;
    padding-right: 0px;
    border-right-style: none;
    border-right-color: rgba(0, 219, 255, 1);
    -webkit-box-flex: 1;
    flex-grow: 1;
    flex-shrink: 0;
}

.wrapper-right-left-img-hero {
    width: auto;
    position: relative;
    height: auto;
    display: flex;
}

.wrapper-right-left-img-fit-hero {
    position: relative;
    display: inline-block;
    vertical-align: top;
    overflow-x: hidden;
    overflow-y: hidden;
    width: 100%;
    height: 402px;
}

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

.wrapper-right-img-fit-overlay-hero {
    display: none;
    position: absolute;
    left: 0px;
    right: 0px;
    top: 0px;
    bottom: 0px;
    background-color: rgba(0, 0, 0, 0.4);
}

.wrapper-right-img-fit-zoom-hero {
    display: none;
    position: absolute;
    right: 10px;
    bottom: 10px;
    width: 20px;
    height: 20px;
    background-color: rgba(56, 163, 204, 1);
}

.svg_image {
    position: relative;
    display: inline-flex;
    vertical-align: top;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    height: 20px;
    width: 20px;
    overflow-x: hidden;
    overflow-y: hidden;
}

/*  */

.section-services {
    width: 100%;
    position: relative;
    display: block;
    margin-top: 20px;
    margin-bottom: 20px;
}

.container-services {
    display: flex;
    width: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    position: relative;
    -webkit-box-align: start;
    align-items: flex-start;
    margin-top: 0px;
}

.services-item {
    display: flex;
    margin-bottom: 8px;
    margin-top: 8px;
    -webkit-box-align: center;
    align-items: center;
    justify-content: center;
    max-width: none;
    margin-right: 16px;
    animation: servicesUp 1s ease-in-out alternate;
}

.services-item-icon {
    width: 10px;
    position: relative;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    height: 10px;
    margin-right: 10px;
    flex-shrink: 0;
    background-color: rgba(255, 255, 255, 0);
    -webkit-box-align: center;
    align-items: center;
    justify-content: center;
}

.services-item-icon-img {
    position: relative;
    display: inline-flex;
    vertical-align: top;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    height: 100%;
    width: 100%;
    overflow-x: hidden;
    overflow-y: hidden;
}

.services-item-text {
    font-family: Inter, sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: rgba(34, 34, 34, 1);

}

@keyframes servicesUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.wrapper-right-right-block-hero {
    width: 56%;
    position: relative;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-align: start;
    align-items: flex-start;
}

.wrapper-right-right-img-hero {
    width: 100%;
    position: relative;
    top: 0%;
    display: flex;
    background-image: none;
    background-repeat: repeat;
    background-position: 0 0;
    background-size: auto;
    background-attachment: scroll;
    height: 100%;
    background-color: rgba(17, 39, 43, 1);
    min-width: auto;
}

.wrapper-right-right-img-fit-hero {
    position: relative;
    display: inline-block;
    vertical-align: top;
    overflow-x: hidden;
    overflow-y: hidden;
    width: 100%;
    height: 100%;
}







.services {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 80px;
    margin-bottom: 50px;
    row-gap: 50px;

}

.services_container ul {
    font-family: Inter, sans-serif;
    color: #222222;
    list-style: none;
    display: flex;
    padding: 27px 0;

}

.services_container li {
    padding-right: 25px;

}

.services_container img {
    padding-right: 8px;
}

.service {
    background: #fff;
    border: 1px solid #ddd;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 40px 30px;
    flex-shrink: 0;
    max-width: 100%;
    width: 30%;
    height: auto;
}

.service__icon {
    background: #090A0B;
    width: 80px;
    height: 80px;
    margin-bottom: 34px;
}

.service__icon_border {
    width: 80px;
    height: 80px;
    border: 2px solid #00DBFF;
    position: relative;
    left: 12px;
    top: 12px;
}

.service__icon img {
    display: flex;
    width: 45px;
    height: 45px;
    left: 13px;
    top: 13px;
    position: relative;
}

.service__image {
    margin-bottom: 24px;
}

.service__image img {
    display: flex;
    width: 100%;
    height: auto;
}

.service__title {
    display: flex;
    color: #161616;
    font-weight: 500;
    /* margin-top: 8px;
    font-size: 1.3vw; */
    font-size: 25px;
}

/* --------------------- */

/* Контейнер кнопки */
/* .service__button {
    position: relative;
} */

/* Стили кнопки */
/* .service__button-span {
    position: relative;
    display: inline-block;
    padding: 15px 30px;
    color: #000;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    border: 2px solid #000;
    text-align: center;
    overflow: hidden;
    background-color: #fff;
    z-index: 1;
    transition: color 0.3s ease;
} */

/* Синий квадрат внутри кнопки */
/* .service__button-span .square {
    position: absolute;
    top: 20%;
    left: 20%;
    width: 30px;
    height: 30px;
    background-color: #00aaff;
    transform: translate(-50%, -50%);
    z-index: -1;
    transition: all 0.4s ease;
} */

/* Анимация при наведении */
/* .service__button-span:hover .square {
    width: 100%;
    height: 100%;
}

.service__button-span:hover {
    color: #fff;
} */


/* ---------------------- */

.service__button-container {
    width: 100%;
    position: relative;
    display: flex;
}

.service__button {
    width: 145px;
    height: 64px;
    display: flex;
    background: #fff;
    color: #222222;
    border: 1px solid #00DBFF;
    cursor: pointer;
    text-transform: uppercase;
    margin-top: 20px;
    position: relative;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    overflow: hidden;
    transition: color 0.5s ease, opacity 1s ease, transform 1s ease;
    opacity: 0;
    transform: translateY(40px);
}

.service__button.show {
    opacity: 1;
    transform: translateY(0);
}


.service__button-span {
    display: inline-block;
    font-family: Oswald, sans-serif;
    font-size: 17px;
    font-weight: 600;
    z-index: 2;
    position: relative;
}

.btn__inside-uslugi {
    position: absolute;
    background: #00DBFF;
    width: 30px;
    height: 30px;
    right: auto;
    top: 55%;
    left: 25%;
    transform: translate(-50%, -50%);
    z-index: 1;
    transition: all 0.4s ease;
}

.service__button:hover .btn__inside-uslugi {
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    transform: none;
}


.service__button:hover {
    color: #fff;
}

/*-- Конец карточек услуг --*/

/* --Начало "О нас"-- */


.section-about-us {
    display: block;
    width: 100%;
    position: relative;
    padding-top: 50px;
    padding-bottom: 50px;
    -webkit-box-flex: 1;
}

.container-about-us {
    width: 100%;
    max-width: 1600px;
    margin-right: auto;
    margin-left: auto;
    position: relative;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
    -webkit-box-align: stretch;
    align-items: stretch;
    height: auto;
    padding-top: 0px;
    padding-bottom: 0px;
    -webkit-box-flex: 0;
    padding-left: 0px;
    padding-right: 0px;
}

.wrapper-image-about-us {
    width: 30%;
    position: relative;
    display: inline-flex;
    margin-left: 0%;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px;
    background-image: url(/Img/Photo-about-us.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-attachment: scroll;
    -webkit-box-align: center;
    align-items: center;
    margin-right: 5%;
}

.square-image-about-us {
    width: auto;
    position: relative;
    height: auto;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px;
    background-color: rgba(0, 219, 255, 1);
    margin-left: auto;
    margin-top: 0px;
    display: flex;
    padding-top: 40px;
    padding-left: 40px;
    padding-bottom: 40px;
    padding-right: 40px;
    -webkit-box-align: center;
    align-items: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    margin-right: -60px;
    margin-bottom: -120px;
    opacity: 0;
    transform: scale(0.3);
    transition: transform 0.5s ease-out, opacity 0.5s ease-out;
}

.square-image-about-us.show {
    transform: scale(1);
    opacity: 1;
}

.square-title-about-us {
    line-height: 120%;
    margin: 0px;
    display: flex;
    position: relative;
    font-family: Oswald, sans-serif;
    font-size: 3.5vw;
    color: rgba(255, 255, 255, 1);
    font-weight: 400;
    text-transform: uppercase;
}

.square-text-about-us {
    display: inline-flex;
    vertical-align: top;
    position: relative;
    color: rgba(255, 255, 255, 0.8);
    font-size: 21px;
    letter-spacing: 0.8px;
}

.wrapper-description-about-us {
    position: relative;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-align: start;
    align-items: flex-start;
    width: 65%;
    padding-left: 40px;
    padding-top: 0px;
    padding-bottom: 0px;
    padding-right: 0px;
    margin-bottom: 0px;
    background-color: rgba(255, 255, 255, 0);
}

.page-title {
    font-size: 2.8vw;
    margin-top: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
    display: flex;
    position: relative;
    width: auto;
    font-weight: 700;
    font-family: Oswald, sans-serif;
    overflow-wrap: break-word;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
    color: rgba(47, 47, 47, 1);
    text-transform: uppercase;
    text-align: left;
    line-height: 3.4vw;
}

.wrapper-work-starting-year {
    width: 100%;
    position: relative;
    display: flex;
    padding-top: 20px;
    padding-bottom: 20px;
    -webkit-box-align: center;
    align-items: center;
}

.work-starting-year {
    font-size: 2vw;
    line-height: 2.5vw;
    margin: 0px;
    display: flex;
    position: relative;
    width: auto;
    font-weight: 300;
    color: rgba(34, 34, 34, 1);
    font-family: Oswald, sans-serif;
    overflow-wrap: break-word;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
    letter-spacing: 0.5px;
    text-shadow: none;
    text-transform: none;
}

.wrapper-about-us-link {
    width: 80%;
    position: relative;
    display: block;
    padding-top: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
    padding-right: 0px;
    border-top-style: none;
    border-right-style: none;
    border-bottom-style: none;
    border-left-style: none;
    border-top-width: 1px;
    border-right-width: 1px;
    border-bottom-width: 1px;
    border-left-width: 1px;
    border-top-color: rgba(26, 26, 26, 0.1);
    border-right-color: rgba(26, 26, 26, 0.1);
    border-bottom-color: rgba(26, 26, 26, 0.1);
    border-left-color: rgba(26, 26, 26, 0.1);
    margin-top: 0px;
    margin-bottom: 0px;
}

.about-us-link-list {
    display: flex;
    flex-wrap: wrap;
}

.about-us-link-list-item {
    padding: 0px;
    max-width: none;
    width: auto;
    margin-right: 2%;
    min-width: auto;
}

.about-us-link-list a {
    text-decoration: none;
    padding: 15px 20px;
    display: flex;
    /* Устанавливаем flexbox для элемента <a> */
    align-items: center;
    /* Центрируем элементы по вертикали */
    position: relative;
    /* Устанавливаем контекст позиционирования для квадрата */
    overflow: hidden;
    /* Скрываем выходящие за пределы квадрата элементы */
}

.about-us-link-universal {
    display: flex;
    cursor: pointer;
    vertical-align: top;
    padding-top: 15px;
    padding-right: 20px;
    padding-bottom: 15px;
    padding-left: 20px;
    position: relative;
    text-decoration-line: none;
    border-top-width: 0px;
    border-right-width: 0px;
    border-bottom-width: 0px;
    border-left-width: 0px;
    border-top-style: none;
    border-right-style: none;
    border-bottom-style: none;
    border-left-style: none;
    -webkit-box-align: center;
    align-items: center;
    transition-property: all;
    transition-duration: 600ms;
    transition-delay: 0ms;
    transition-timing-function: ease;
    -webkit-box-flex: 0;
    min-height: auto;
    margin-top: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
    height: auto;
    overflow-x: hidden;
    overflow-y: hidden;
}

.about-us-link-universal-square {
    width: 10px;
    position: absolute;
    display: inline-block;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px;
    background-color: rgba(0, 219, 255, 1);
    height: 10px;
    left: 0px;
    transition-property: all;
    transition-duration: 500ms;
    transition-delay: 0ms;
    transition-timing-function: ease;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    transition: all 0.6s ease;
    /* Анимация изменения размеров */
    z-index: -1;
    /* Отправляем квадрат под текст */
}

.about-us-link-list a:hover .about-us-link-universal-square {
    width: 100%;
    /* Растягиваем на всю ширину ссылки */
    height: 100%;
    /* Растягиваем на всю высоту ссылки */
}

.about-us-link-list a:hover span {
    color: #FFFFFF;
    /* Меняем цвет текста на белый при наведении */
}

.about-us-link-list span {
    font-size: 19px;
    color: #161616;
    /* Устанавливаем начальный цвет текста */
    font-weight: 500;
    position: relative;
    /* Сохраняем текст поверх квадрата */
    z-index: 1;
    /* Текст находится над квадратом */
    transition: color 0.3s ease;
    /* Плавное изменение цвета текста */
}

.about-us-link-universal-text {
    margin-right: 0px;
    font-weight: 500;
    transition-property: all;
    transition-duration: 300ms;
    transition-delay: 0ms;
    transition-timing-function: ease;
    width: auto;
    display: inline-block;
    -webkit-box-flex: 1;
    flex-grow: 1;
    flex-shrink: 0;
    color: rgba(22, 22, 22, 1);
    z-index: 1;
    font-size: 19px;
    font-family: Oswald, sans-serif;
    margin-top: 0px;
}


.about-us-info-text {
    display: flex;
    vertical-align: top;
    position: relative;
    max-width: 100%;
    overflow-x: auto;
    font-size: 17px;
    font-family: Inter, sans-serif;
    font-weight: 400;
    color: rgba(34, 34, 34, 0.85);
    line-height: 28px;
}

.about-us-info-text p {
    display: block;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    unicode-bidi: isolate;
}

.about-us-btn {
    position: relative;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
    justify-content: flex-start;
    padding-left: 0px;
    padding-top: 0px;
    margin-left: 0px;
    margin-right: 0px;
    flex-wrap: wrap;
    /* Начальное состояние кнопки */
    opacity: 0;
    transform: translateY(65px);
    /* Смещение вниз */
    transition: opacity 1s ease, transform 1s ease;
    /* Плавный переход */
}

/* Состояние кнопки при появлении */
.about-us-btn.show {
    opacity: 1;
    transform: translateY(0);
    /* Возвращаем на место */
}

.about-us-btn-link {
    display: inline-flex;
    cursor: pointer;
    vertical-align: top;
    padding-top: 20px;
    padding-right: 30px;
    padding-bottom: 20px;
    padding-left: 30px;
    font-size: 12px;
    background-color: rgba(255, 255, 255, 0);
    color: rgba(255, 255, 255, 1);
    position: relative;
    text-decoration-line: none;
    margin-left: 0px;
    font-weight: 700;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
    justify-content: center;
    transition-property: all;
    transition-duration: 300ms;
    transition-delay: 0ms;
    transition-timing-function: ease;
    text-align: center;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px;
    margin-right: 0px;
    box-shadow: inset 0px 0px 0px 1px rgba(0, 219, 255, 0.4);
    -webkit-box-align: center;
    align-items: center;
    overflow-x: hidden;
    overflow-y: hidden;
    background-image: none;
    background-repeat: repeat;
    background-position: 0 0;
    background-size: auto;
    background-attachment: scroll;
    margin-top: 24px;

    cursor: pointer;
    text-decoration: none;
    overflow: hidden;
    text-transform: uppercase;
    transition: color 0.35s ease;
}

.about-us-btn-square {
    width: 30px;
    position: absolute;
    display: inline-block;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px;
    background-color: rgba(0, 219, 255, 1);
    height: 30px;
    left: 20px;
    transition-property: all;
    transition-duration: 650ms;
    transition-delay: 0ms;
    transition-timing-function: ease;
    top: 55%;
    left: 18%;
    transform: translate(-50%, -50%);
    z-index: 1;
    transition: all 0.5s ease;
}

.about-us-btn-text {
    display: inline-flex;
    vertical-align: top;
    position: relative;
    text-transform: uppercase;
    font-size: 17px;
    font-family: Oswald, sans-serif;
    line-height: 140%;
    color: rgba(34, 34, 34, 1);
    font-weight: 600;
    white-space: nowrap;
    transition: color 0.35s ease;
    z-index: 2;
}

.about-us-btn:hover .about-us-btn-square {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    transform: none;
}

.about-us-btn:hover .about-us-btn-text {
    color: #fff;
    /* Корректный селектор для изменения цвета текста */
}

/* Скрытие кнопки по умолчанию (для анимации) */
.about-us-btn {
    opacity: 0;
    transform: translateY(65px);
    transition: opacity 1s ease, transform 1s ease;
}

/* Класс для появления кнопки при прокрутке */
.about-us-btn.show {
    opacity: 1;
    transform: translateY(0);
}


/*  */
.section-benefit-working {
    display: inline-block;
    width: 100%;
    position: relative;
    padding-top: 50px;
    padding-bottom: 50px;
    -webkit-box-flex: 1;
    flex-grow: 1;
    flex-shrink: 0;
}

.container-benefit-working {
    margin-top: 0px;
    margin-right: auto;
    margin-bottom: 0px;
    margin-left: auto;
    position: relative;
    min-height: auto;
    padding-left: 0px;
    padding-right: 0px;
    display: flex;
    justify-content: space-between;
}

.container-free-expert-consultation {
    width: 35%;
    position: relative;
    top: 0%;
    margin-right: 0px;
    padding-bottom: 40px;
    display: inline-flex;
    margin-left: 0px;
    padding-right: 30px;
    padding-top: 40px;
    padding-left: 30px;
    background: #090A0B;
    height: auto;
    min-width: auto;
}

.free-expert-consultation {
    min-height: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 0px;
    width: auto;
    margin-right: 5%;
}

.free-expert-consultation form {
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
}

.free-expert-consultation-text-section {
    display: block;
    flex-direction: row;
    justify-content: flex-start;
    padding-top: 0px;
    width: auto;
}

.free-expert-consultation-caption span {
    color: #FFFFFF;
    font-size: 2vw;
    line-height: 2.5vw;
    display: block;
    font-weight: 400;
}

.free-expert-consultation-text {
    line-height: normal;
    margin-bottom: 0px;
    display: flex;
    font-family: Montserrat, sans-serif;
    font-size: 15px;
    color: #FFFFFF66;
    padding-bottom: 0px;
    box-shadow: none;
    font-weight: 400;
    margin-top: 0px;
}

.free-expert-consultation-phone-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.free-expert-consultation-phone {
    margin-bottom: 10px;
    font-family: Open Sans, sans-serif;
    margin-top: 10px;
    width: auto;
    max-width: none;
    min-width: 48%;
}

.free-expert-consultation-phone-index {
    color: rgba(169, 142, 92, 0.8);
    font-family: Montserrat, sans-serif;
    font-size: 14px;
}

.free-expert-consultation-phone-click {
    margin-bottom: 10px;
}

.free-expert-consultation-phone-click-span-first {
    font-weight: 400;
    font-family: Playfair Display, serif;
    letter-spacing: 1px;
    margin-bottom: 3px;
}

.free-expert-consultation-phone-click-span-second {
    color: rgba(237, 12, 91, 1);
}

.free-expert-consultation-phone-click-visibly {
    display: flex;
    align-items: flex-start;
    min-width: auto;
}

.free-expert-consultation-phone-click-visibly-icon {
    width: 25px;
    height: 25px;
    margin-top: 6px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
    position: absolute;
    bottom: auto;
}

.free-expert-consultation-phone-click-visibly-icon-span {
    position: relative;
    display: inline-flex;
    vertical-align: top;
    justify-content: center;
    align-items: center;
    height: 25px;
    width: 25px;
    overflow-x: hidden;
    overflow-y: hidden;
}

.free-expert-consultation-phone-click-visibly-input {
    width: 100%;
    display: block;
    height: auto;
    border-bottom-width: 1px;
    border-top-style: none;
    border-bottom-style: solid;
    padding-bottom: 8px;
    padding-top: 8px;
    padding-left: 36px;
    padding-right: 10px;
    background-color: rgba(255, 255, 254, 0);
    flex-shrink: 1;
    font-weight: 400;
    border-right-width: 0px;
    border-left-width: 0px;
    color: rgba(255, 255, 255, 0.9);
    font-family: Montserrat, sans-serif;
    font-size: 17px;
}

.free-expert-consultation-phone-click-visibly-input:hover {
    border-top-color: rgba(34, 34, 34, 0.5);
    border-right-color: rgba(34, 34, 34, 0.5);
    border-bottom-color: rgba(34, 34, 34, 1);
    border-left-color: rgba(34, 34, 34, 0.5);
}

.agree-data-processing {
    margin-bottom: 10px;
    font-family: Open Sans, sans-serif;
    margin-top: 10px;
    width: auto;
    max-width: none;
    min-width: 48%;
}

.is-removed {
    display: none !important;
}

.agree-data-processing-index {
    color: rgba(169, 142, 92, 0.8);
    font-family: Montserrat, sans-serif;
    font-size: 14px;
}

.agree-data-processing-removed-span {
    font-weight: 400;
    font-family: Playfair Display, serif;
    letter-spacing: 1px;
    margin-bottom: 3px;
}

.agree-data-processing-removed-star {
    color: rgba(237, 12, 91, 1);
}

.agree-data-processing-label {
    display: inline-flex;
    align-items: center;
    margin-top: 0px;
    margin-bottom: 0px;
    flex-direction: row;
}

.agree-data-processing-label-span {
    display: none;
    width: 15px;
    height: 15px;
    flex-shrink: 0;
    border-top-left-radius: 2px;
    border-bottom-left-radius: 2px;
    border-bottom-right-radius: 2px;
    border-top-right-radius: 2px;
    border-top-width: 1px;
    border-right-width: 1px;
    border-bottom-width: 1px;
    border-left-width: 1px;
    border-top-style: solid;
    border-right-style: solid;
    border-bottom-style: solid;
    border-left-style: solid;
    border-top-color: rgba(128, 128, 128, 1);
    border-right-color: rgba(128, 128, 128, 1);
    border-bottom-color: rgba(128, 128, 128, 1);
    border-left-color: rgba(128, 128, 128, 1);
    background-color: rgba(0, 135, 255, 0.2);
}

.agree-data-processing-label-span-second {
    font-size: 14px;
    margin-left: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-family: Montserrat, sans-serif;
    line-height: 22px;
}

.agree-data-processing-label-span-second-color {
    color: rgba(255, 255, 255, 1);
}

.agree-data-processing-label-span-second a {
    color: inherit;
}

.get-consultation {
    width: 100%;
    position: relative;
    display: block;
}

.get-consultation-button {
    display: flex;
    cursor: pointer;
    vertical-align: top;
    padding-top: 25px;
    padding-right: 40px;
    padding-bottom: 25px;
    padding-left: 40px;
    font-size: 12px;
    background-color: rgba(0, 219, 255, 1);
    color: rgba(255, 255, 255, 1);
    position: relative;
    text-decoration-line: none;
    margin-left: 0px;
    font-weight: 700;
    flex-direction: row;
    justify-content: center;
    margin-top: 24px;
    font-family: Oswald, sans-serif;
    z-index: 2;
    overflow: hidden;
    /* Ограничение выхода квадрата за пределы */
}

.get-consultation-square {
    position: absolute;
    background: rgba(255, 255, 255, 0.3);
    width: 30px;
    height: 30px;
    top: 52%;
    left: 16%;
    transform: translate(-50%, -50%);
    z-index: 1;
    transition: all 0.6s ease;
    border-radius: 5px;
}

.get-consultation-button:hover .get-consultation-square {
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.get-consultation-span {
    display: inline-flex;
    font-size: 17px;
    line-height: 22px;
    vertical-align: top;
    position: relative;
    font-family: Oswald, sans-serif;
    font-weight: 600;
    color: rgba(255, 255, 255, 1);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    z-index: 1;
}

.form-success-text {
    font-family: Open Sans, sans-serif;
    padding-top: 0px;
    color: rgba(255, 255, 255, 1);
}

.container-benefit-working-with-us {
    width: 65%;
    position: relative;
    display: inline-block;
    padding-top: 0px;
    padding-left: 40px;
}

.benefit-working-with-us {
    width: 100%;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.benefit-working-with-us-cont {
    flex-shrink: 1;
    flex-grow: 0;
    min-width: auto;
    max-width: 100%;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 40px;
    padding-bottom: 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition-property: all;
    transition-duration: 500ms;
    transition-delay: 0ms;
    transition-timing-function: ease;
    box-shadow: inset 0px 0px 0px 2px rgba(26, 26, 26, 1);
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px;
    border-top-style: none;
    border-right-style: none;
    border-bottom-style: none;
    border-left-style: none;
    border-top-width: 1px;
    border-right-width: 1px;
    border-bottom-width: 1px;
    border-left-width: 1px;
    border-top-color: rgba(255, 255, 255, 0.05);
    border-right-color: rgba(255, 255, 255, 0.05);
    border-bottom-color: rgba(255, 255, 255, 0.05);
    border-left-color: rgba(255, 255, 255, 0.05);
    width: 50%;
}

.benefit-working-with-us-text {
    font-size: 2vw;
    display: flex;
    text-transform: none;
    font-family: Oswald, sans-serif;
    font-weight: 500;
    z-index: auto;
    margin-left: 0px;
    line-height: 2.5vw;
    color: rgba(22, 22, 22, 1);
}

.benefit-working-with-us-paragraphts {
    display: flex;
    vertical-align: top;
    position: relative;
    font-family: Inter, sans-serif;
    line-height: 28px;
    margin-top: 10px;
    margin-left: 0;
    padding-right: 0%;
    font-size: 16px;
    color: rgba(34, 34, 34, 0.8);
    width: auto;
    min-width: auto;
    flex-grow: 1;
    flex-shrink: 0;
    text-shadow: none;
    align-items: stretch;
    max-width: none;
    background-color: rgba(26, 26, 26, 0);
    text-transform: none;
    font-weight: 500;
}

.benefit-working-with-us-profitable-conditions {
    width: 100%;
    position: relative;
    display: block;
}

.benefit-working-with-us-profitable-conditions-text {
    margin-bottom: 10px;
    font-size: 23px;
    display: flex;
    color: rgba(17, 17, 17, 1);
    font-weight: 600;
    font-family: Oswald, sans-serif;
    line-height: 120%;
    margin-top: 24px;
}

.container-how-we-work {
    box-shadow: inset 0px 0px 0px 2px rgba(26, 26, 26, 1);
    width: 45%;
    height: auto;
    padding: 40px;
}

.how-we-work-title {
    font-size: 2vw;
    display: flex;
    text-transform: none;
    font-family: Oswald, sans-serif;
    font-weight: 500;
    z-index: auto;
    margin-left: 0px;
    line-height: 2.5vw;
    text-transform: uppercase;
    color: rgba(22, 22, 22, 1);
}

.how-we-work-description-first {
    display: flex;
    vertical-align: top;
    position: relative;
    font-family: Inter, sans-serif;
    line-height: 28px;
    margin-top: 20px;
    font-size: 16px;
    color: rgba(34, 34, 34, 0.8);
    width: auto;
    min-width: auto;
    -webkit-box-flex: 1;
    text-shadow: none;
    -webkit-box-align: stretch;
    align-items: center;
    max-width: none;
    background-color: rgba(26, 26, 26, 0);
    text-transform: none;
    font-weight: 500;
    height: auto;
}

.how-we-work-description-icon img {
    width: 55px;
    height: auto;
    margin-right: 20px;
}

.how-we-work-description {
    display: flex;
    align-items: center;
    vertical-align: top;
    position: relative;
    font-family: Inter, sans-serif;
    line-height: 28px;
    margin-top: 15px;
    font-size: 16px;
    color: rgba(34, 34, 34, 0.8);
    width: auto;
    min-width: auto;
    -webkit-box-flex: 1;
    text-shadow: none;
    -webkit-box-align: stretch;
    max-width: none;
    background-color: rgba(26, 26, 26, 0);
    text-transform: none;
    font-weight: 500;
    height: auto;
}

.footer {
    background: #f8f8f8;
    text-align: center;
    margin-top: auto;
}

.footer .section {
    display: flex;
    width: 100%;
    position: relative;
    flex-direction: column;
    padding-left: 4%;
    padding-right: 4%;
    padding-top: 2%;
    padding-bottom: 2%;
    color: rgba(50, 50, 50, 1);
    cursor: auto;
    font-family: Montserrat, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    letter-spacing: normal;
    line-height: normal;
    overflow-wrap: break-word;
    text-align: left;
    text-indent: 0px;
    text-shadow: none;
    text-transform: none;
    box-shadow: inset 0px 1px 0px 0px rgba(238, 238, 238, 1);
}

.footer .container {
    width: 100%;
    position: relative;
    display: flex;
    max-width: 1600px;
    flex-direction: row-reverse;
    align-items: flex-start;
    opacity: 1;
    transform: translateY(65px);
    transition: transform 1s ease;
}

.footer .container.show {
    transform: translateY(0px);
}

.footer-icons {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    margin-right: 0%;
    flex-grow: 1;
    flex-shrink: 0;
    top: 15%;
}

.footer-icons-container {
    width: 100%;
    position: relative;
    display: block;
}

.footer-icons-list {
    display: flex;
    max-width: none;
}

.icons-list-item {
    transition-property: all;
    transition-duration: 300ms;
    transition-delay: 0ms;
    transition-timing-function: ease;
    opacity: 0.6;
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
    margin-top: 10px;
    margin-right: 0px;
    margin-left: 20px;
}

.link-icons {
    display: flex;
    cursor: pointer;
    text-decoration-line: none;
    align-items: center;
    color: rgba(228, 232, 237, 1);
}

.photo-icons {
    width: 40px;
    position: relative;
    display: block;
    height: 40px;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px;
    box-shadow: inset 0px 0px 0px 1px rgba(185, 171, 159, 0.5);
}

.footer-image {
    position: relative;
    display: inline-flex;
    vertical-align: top;
    justify-content: center;
    align-items: center;
    height: 40px;
    width: 40px;
    overflow-x: hidden;
    overflow-y: hidden;
}

.text-icons {
    display: inline-flex;
    font-weight: 600;
    line-height: 125%;
    font-size: 17px;
    flex-shrink: 0;
    font-family: Nunito, sans-serif;
    margin-left: 12px;
    color: rgba(22, 22, 22, 1);
}

.footer-info-text {
    position: relative;
    display: flex;
    flex-direction: column-reverse;
    flex-grow: 1;
    flex-shrink: 0;
}

.footer-info-text-bottom {
    position: relative;
    display: flex;
    flex-direction: row;
    margin-bottom: 0%;
    justify-content: space-between;
    margin-top: 4%;
}

.working-time-section {
    width: 48%;
    position: relative;
    display: inline-flex;
    align-items: flex-start;
}

.working-time-container {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
}

.working-time-text {
    display: block;
    color: rgba(50, 50, 50, 0.6);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 4px;
}

.weekday-section {
    display: block;
    margin-left: 0px;
    margin-right: 0px;
    width: 100%;
}

.weekday-list-item {
    padding: 0px;
    margin-left: 0px;
    margin-right: 0px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin-top: 6px;
    margin-bottom: 6px;
}

.weekday-container {
    width: 100%;
    position: relative;
    display: block;
}

.weekday-text {
    display: block;
    font-size: 15px;
    font-weight: 500;
}

.letters-suggestions {
    width: 48%;
    position: relative;
    display: inline-flex;
    align-items: flex-start;
    padding-top: 0px;
    flex-direction: column;
}

.letters-suggestions-text {
    display: inline-block;
    color: rgba(50, 50, 50, 0.6);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 6px;
}

.mail-list {
    display: inline-flex;
}

.mail-list-item {
    /* padding-top: 10px;
    padding-right: 0px;
    padding-bottom: 10px;
    padding-left: 0px; */
    margin-bottom: 0px;
    display: flex;
    align-items: center;
    font-family: Yeseva One, cursive;
    justify-content: flex-start;
}

.mail-link {
    display: flex;
    cursor: pointer;
    text-decoration-line: none;
    flex-direction: column;
    align-items: flex-start;
}

.mail-text {
    display: block;
    font-size: 20px;
    font-family: Oswald, sans-serif;
    color: rgba(34, 34, 34, 1);
    min-width: 120px;
    font-weight: 600;
    padding-bottom: 0px;
    line-height: 150%;
    /* padding-top: 3px; */
}

.line-under-mail {
    width: 100%;
    position: relative;
    display: inline-block;
    margin-top: 5px;
    height: 1px;
    background-color: rgba(0, 219, 255, 1);
    transition-property: all;
    transition-duration: 500ms;
    transition-delay: 0ms;
    transition-timing-function: ease;
}

.mail-link:hover .line-under-mail {
    background-color: rgba(92, 173, 57, 1);
}

.footer-info-text-top {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.footer-phone-section {
    width: 48%;
    position: relative;
    display: inline-flex;
    align-items: flex-start;
    flex-wrap: wrap;
}

.footer-phone-list {
    display: block;
    margin-left: 0px;
    margin-right: 0px;
    width: 100%;
}

.footer-phone-list-item {
    padding: 0px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: flex-start;
    margin-bottom: 10px;
    align-items: stretch;
}

.footer-phone-container {
    position: relative;
    display: flex;
    flex-direction: column;
    margin-right: 6%;
}

.footer-phone-text {
    display: block;
    color: rgba(50, 50, 50, 0.6);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 6px;
}

.footer-phone-link {
    display: flex;
    cursor: pointer;
    text-decoration-line: none;
}

.footer-phone-text-number {
    display: block;
    font-family: Oswald, sans-serif;
    font-size: 21px;
    font-weight: 700;
    color: rgba(50, 50, 50, 1);
}

.footer-address-section {
    width: 48%;
    position: relative;
    display: inline-flex;
    align-items: flex-start;
}

.footer-address-list {
    display: block;
    margin-left: 0px;
    margin-right: 0px;
    width: 100%;
}

.footer-address-list-item {
    margin-left: 0px;
    margin-right: 0px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
    flex-direction: column;
}

.footer-address-container {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
}

.footer-address-text {
    display: block;
    color: rgba(50, 50, 50, 0.6);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 6px;
}

.ooter-address-text-info {
    display: block;
    font-size: 14px;
    line-height: 140%;
    font-weight: 500;
}

.footer-icons-company-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    margin-right: 0%;
    flex-shrink: 0;
    top: 15%;
}

.company-copyright {
    white-space: normal;
    line-height: normal;
    display: inline-block;
    position: relative;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 5px;
}

.footer-icons-company-text {
    white-space: nowrap;
    display: flex;
    vertical-align: top;
    position: relative;
    font-size: 15px;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.7);
    margin-bottom: 5px;
}

.text-block-wrap-div {
    flex-grow: 1;
    max-width: 100%;
}

.text-block-wrap-div-bolder {
    font-weight: bolder;
}

.section-copyright {
    display: flex;
    width: 100%;
    position: relative;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    padding: 2% 4%;
    box-shadow: inset 0px 1px 0px 0px rgba(238, 238, 238, 1);
    color: rgba(50, 50, 50, 1);
    cursor: auto;
    font-family: Montserrat, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    letter-spacing: normal;
    line-height: normal;
    overflow-wrap: break-word;
    text-align: left;
    text-indent: 0px;
    text-shadow: none;
    text-transform: none;
}

.container-copyright {
    width: 100%;
    margin-top: 0px;
    margin-right: auto;
    margin-bottom: 0px;
    margin-left: auto;
    position: relative;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
    max-width: 1600px;
}

.container-copyright-left {
    width: 33%;
    position: relative;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-flex: 1;
    flex-grow: 1;
    flex-shrink: 0;
    -webkit-box-align: start;
    align-items: flex-start;
    justify-content: center;
}

.container-copyright-center {
    position: relative;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-flex: 1;
    flex-grow: 1;
    flex-shrink: 0;
    -webkit-box-align: center;
    align-items: center;
    justify-content: center;
}

.container-copyright-right {
    position: relative;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
    -webkit-box-flex: 1;
    flex-grow: 1;
    flex-shrink: 0;
    -webkit-box-align: center;
    align-items: center;
    justify-content: flex-end;
}

.button-up {
    flex-shrink: 0;
    pointer-events: auto;
    cursor: pointer;
    width: 4vw;
    height: 4vw;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: all 300ms ease;
    box-shadow: inset 0px 0px 0px 2px rgba(238, 238, 238, 0.93);
    border: none;
    outline: none;
    background-color: transparent;
}

.button-up::before {
    content: '';
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 219, 255, 1);
    transition: transform 300ms ease;
    z-index: 0;
}

.button-up:hover::before {
    transform: translateY(-100%);
}

.button-up-img {
    position: relative;
    display: inline-flex;
    vertical-align: top;
    justify-content: center;
    align-items: center;
    width: 30%;
    overflow: hidden;
    z-index: 1;
}

.button-up-img img {
    transition: filter 300ms ease;
    filter: none;
}

.button-up:hover .button-up-img img {
    filter: brightness(0) invert(1);
}

@media (min-width: 768px) {
    .hero__text {
        max-width: 50%;
        text-align: left;
    }

    .services ul li {
        flex: 1 1 auto;
        text-align: left;
    }
}

@media (min-width: 1024px) {
    .hero {
        flex-wrap: nowrap;
    }
}

/* Модальное окно формы */
.form-modal {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.45);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 200ms ease, visibility 200ms ease;
    z-index: 2000;
}

.form-modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.form-modal__overlay {
    position: absolute;
    inset: 0;
}

.form-modal__content {
    position: relative;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    padding: 24px 28px 24px 24px;
    max-width: 420px;
    width: calc(100% - 32px);
    border: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: center;
}

.form-modal__content.is-error {
    border-color: #f59e0b;
}

.form-modal__title {
    font-size: 20px;
    font-weight: 700;
    color: #111827;
}

.form-modal__message {
    font-size: 16px;
    color: #374151;
    line-height: 1.4;
    word-break: break-word;
}

.form-modal__content.is-error .form-modal__title {
    color: #b91c1c;
}

.form-modal__content.is-error .form-modal__message {
    color: #991b1b;
}

.form-modal__close {
    position: absolute;
    top: 10px;
    right: 12px;
    border: none;
    background: transparent;
    font-size: 24px;
    line-height: 1;
    color: #6b7280;
    cursor: pointer;
    padding: 4px;
}

.form-modal__close:hover {
    color: #111827;
}

/* Модалка "Оставить заявку" */
.application-modal {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.45);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 200ms ease, visibility 200ms ease;
    z-index: 2001;
}

.application-modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.application-modal__overlay {
    position: absolute;
    inset: 0;
}

.application-modal__content {
    position: relative;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    padding: 26px 30px;
    max-width: 520px;
    width: calc(100% - 32px);
    border: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.application-modal__title {
    font-size: 22px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 2px;
    text-align: center;
}

.application-modal__error {
    display: none;
    padding: 10px 12px;
    border-radius: 8px;
    background: rgba(185, 28, 28, 0.08);
    color: #b91c1c;
    font-size: 14px;
    border: 1px solid rgba(185, 28, 28, 0.25);
}

.application-modal__error.is-visible {
    display: block;
}

.application-modal__form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.application-modal__field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.application-modal__field label {
    font-size: 14px;
    color: #4b5563;
}

.application-modal__field input[type="text"],
.application-modal__field input[type="tel"],
.application-modal__field input[type="file"] {
    width: 100%;
    padding: 12px 12px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 15px;
    color: #111827;
    outline: none;
    transition: border-color 150ms ease, box-shadow 150ms ease;
}

.application-modal__field input[type="text"]:focus,
.application-modal__field input[type="tel"]:focus,
.application-modal__field input[type="file"]:focus {
    border-color: #00DBFF;
    box-shadow: 0 0 0 3px rgba(0, 219, 255, 0.2);
}

.application-modal__policy {
    font-size: 13px;
    color: #4b5563;
    line-height: 1.45;
}

.application-modal__checkbox {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.application-modal__checkbox input[type="checkbox"] {
    margin-top: 4px;
}

.application-modal__checkbox a {
    color: #00DBFF;
}

.application-modal__submit {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 14px 18px;
    background-color: #00DBFF;
    color: #fff;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 150ms ease, transform 120ms ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.application-modal__submit:hover {
    background-color: #00c8e8;
}

.application-modal__submit:active {
    transform: translateY(1px);
}

.application-modal__close {
    position: absolute;
    top: 10px;
    right: 12px;
    border: none;
    background: transparent;
    font-size: 24px;
    line-height: 1;
    color: #6b7280;
    cursor: pointer;
    padding: 4px;
}

.application-modal__close:hover {
    color: #111827;
}

@media (max-width: 480px) {
    .application-modal__content {
        padding: 22px 18px;
    }

    .application-modal__title {
        font-size: 20px;
    }
}