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

html {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    overflow-x: hidden;
    overflow-x: clip;
    background: #000;
}

html,
body,
div,
span,
object,
iframe,
figure,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
code,
em,
img,
small,
strike,
strong,
sub,
sup,
tt,
b,
u,
i,
ol,
ul,
li,
fieldset,
form,
label,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
main,
canvas,
embed,
footer,
header,
nav,
section,
video,
input {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

footer,
header,
nav,
section,
main {
    display: block;
}

body {
    line-height: 1;
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    min-width: 0;
    overflow-x: hidden;
    overflow-x: clip;
}

img,
svg {
    display: block;
    max-width: 100%;
}

button,
input {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

:focus-visible {
    outline: 2px solid #ffac30;
    outline-offset: 4px;
}

button {
    background-color: initial;
    border: none;
    padding: 0;
    margin: 0;
    color: inherit;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

input {
    -webkit-appearance: none;
    border-radius: 0;
}

.header {
    display: flex;
    width: 100%;
    padding: 14px 65px;
    position: fixed;
    justify-content: space-between;
    align-items: center;
    left: 50%;
    color: #fff;
    text-align: center;
    transition:
        transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
        background-color 0.25s ease;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    top: 0;
    transform: translate3d(-50%, 0, 0);
    will-change: transform;
    z-index: 1000;
    isolation: isolate;
}
.header::after {
    content: '';
    width: 100%;
    display: block;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.3);
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
}
.header .header_logo {
    max-width: 30px;
    width: 100%;
}
.header .header_logo img {
    width: 100%;
    height: 100%;
}

.header--scrolled {
    background-color: rgba(20, 20, 20, 0.7);
}
.header--scrolled::after {
    background-color: rgba(255, 255, 255, 0.3);
}

.header--hidden {
    transform: translate3d(-50%, -110%, 0);
}

.left__list {
    align-items: center;
}

.aside_inActive {
    opacity: 0 !important;
}

@keyframes round {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(2);
    }
    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(3);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(4);
    }
}
.burger__btn {
    display: block;
    height: 30px;
    width: 30px;
    cursor: pointer;
    position: relative;
    z-index: 110;
}
.burger__btn span {
    display: block;
    background-color: #fff;
    height: 1px;
    position: absolute;
    left: 5px;
    transition:
        width 0.35s ease,
        transform 0.35s ease,
        opacity 0.35s ease;
}
.burger__btn span:nth-child(1) {
    width: 15px;
    top: 7px;
}
.burger__btn span:nth-child(2) {
    width: 13px;
    top: 14px;
}
.burger__btn span:nth-child(3) {
    width: 20px;
    top: 21px;
}

.burger__btn__active span:nth-child(1) {
    width: 24px;
    left: 3px;
    top: 14px;
    transform: rotate(45deg);
}
.burger__btn__active span:nth-child(2) {
    opacity: 0;
}
.burger__btn__active span:nth-child(3) {
    width: 24px;
    left: 3px;
    top: 14px;
    transform: rotate(-45deg);
}

.main__aside {
    position: fixed;
    align-items: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 1;
    transition: opacity 0.35s ease;
    top: 50%;
    transform: translateY(-50%);
    left: 65px;
    height: auto;
    width: auto;
    z-index: 100;
}

.soc_aside {
    display: flex;
    flex-direction: column;
    gap: 45px;
}

.line__aside {
    display: block;
    margin: 60px 0 80px 0;
    width: 1px;
    height: 154px;
    background-color: rgba(255, 255, 255, 0.25);
}

.aside__text {
    transform: rotate(180deg);
    writing-mode: vertical-rl;
    margin-top: 93px;
    white-space: nowrap;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 3px;
}

@media (max-width: 768px) {
    .header {
        padding: 10px 0;
        top: 0;
    }
    .left__list {
        margin: 0;
    }
    .main__aside {
        left: 10px;
    }
    .header--hidden {
        transform: translate3d(0, -110%, 0);
    }
    .soc_aside {
        gap: 10px;
    }
}
.burger {
    position: fixed;
    top: -100%;
    height: 100vh;
    height: 100dvh;
    opacity: 0;
    bottom: 0;
    right: 0;
    left: 0;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    visibility: hidden;
    z-index: 100;
    background-color: rgba(46, 46, 46, 0.6);
    transition:
        transform 0.6s ease,
        opacity 0.4s ease,
        visibility 0.4s ease;
    pointer-events: none;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    overflow-x: clip;
    overscroll-behavior: contain;
}

.burger__active {
    top: 0;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.burger__nav {
    height: 100%;
}

.menu-items {
    display: flex;
    justify-content: center;
    position: relative;
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding-bottom: 190px;
}

.nav__item_wrap {
    width: 100%;
    display: flex;
    flex-direction: column;
    min-height: 0;
    justify-content: space-between;
    align-items: center;
    transition: all 0.6s ease;
    position: relative;
}

.nav__link_arrow {
    opacity: 0;
    transition: all 0.6s ease;
}

.nav__item {
    max-width: 292px;
    padding: 0 15px;
    text-align: center;
    flex: 1 1 auto;
    position: relative;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.6s ease;
}
.nav__item:nth-child(1)::before {
    left: -2px;
    opacity: 0;
}
.nav__item:nth-child(5)::after {
    right: -2px;
    opacity: 0;
}
.nav__item::before {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    height: 250px;
    transform: translateY(-50%);
    bottom: 0;
    left: -1px;
    width: 3px;
    background: linear-gradient(rgba(255, 255, 255, 0), rgb(255, 255, 255), rgba(255, 255, 255, 0));
    transition: all 0.6s ease;
}
.nav__item::after {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    height: 250px;
    transform: translateY(-50%);
    bottom: 0;
    right: -2px;
    width: 3px;
    background: linear-gradient(rgba(255, 255, 255, 0), rgb(255, 255, 255), rgba(255, 255, 255, 0));
    transition: all 0.6s ease;
}
html.can-hover .nav__item:hover {
    background-color: rgba(0, 0, 0, 0.3);
}
html.can-hover .nav__item:hover::before,
html.can-hover .nav__item:hover::after {
    top: 0;
    height: 100%;
    transform: translateY(0);
}
html.can-hover .nav__item:hover:nth-child(5)::after {
    top: 0;
    height: 100%;
    transform: translateY(0);
    opacity: 1;
}
html.can-hover .nav__item:hover:nth-child(1)::before {
    opacity: 1;
}
html.can-hover .nav__item:hover:nth-child(5)::after {
    opacity: 1;
}
html.can-hover .nav__item:hover .nav__link_arrow {
    transform: translateY(40px);
    opacity: 1;
}

.nav__link {
    font-size: clamp(18px, 18px + 12 * (100vw - 1024px) / 896, 30px);
    color: #fff;
    text-transform: uppercase;
}

.burger__footer {
    max-width: 1564px;
    margin: 0 auto;
    position: absolute;
    bottom: 0;
    background-color: #fff;
    width: 100%;
    max-height: 45vh;
    max-height: 45dvh;
    overflow-y: auto;
    padding-top: clamp(15px, 15px + 23 * (100vw - 1024px) / 896, 38px);
    padding-left: clamp(25px, 25px + 35 * (100vw - 1024px) / 896, 60px);
    padding-right: clamp(25px, 25px + 35 * (100vw - 1024px) / 896, 60px);
    padding-bottom: clamp(15px, 15px + 27 * (100vw - 1024px) / 896, 42px);
}

.burger__footer__title {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    align-items: center;
    padding-bottom: clamp(15px, 15px + 17 * (100vw - 1024px) / 896, 32px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}
.burger__footer__title h3 {
    font-size: 24px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 20px;
}
.burger__footer__title .form__btn_arrow {
    margin-right: 20px;
}

.nav__boogrer__list {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.burger__footer__social {
    padding: 22px 0 0 0;
}

.nav__boogrer__link {
    font-size: clamp(12px, 12px + 6 * (100vw - 1024px) / 896, 18px);
    font-weight: 300;
    color: #000;
}

.nav__boogrer__item {
    display: flex;
    align-items: center;
    gap: clamp(10px, 10px + 30 * (100vw - 1024px) / 896, 40px);
}

html {
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
}

.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

body {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    background: #000;
}

.wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

#smooth-content {
    width: 100%;
    min-height: 0;
    will-change: transform;
}

.call-btn {
    position: fixed;
    bottom: 50px;
    right: 65px;
    align-items: center;
    gap: 67px;
    margin-left: auto;
    z-index: 100;
    opacity: 1;
    visibility: visible;
    transition:
        opacity 0.3s ease,
        transform 0.3s ease,
        visibility 0.3s ease;
}
.call-btn a {
    display: flex;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    position: relative;
}
.call-btn a::after {
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    animation: round 2s infinite;
}

.call-btn--hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(20px);
}

.demo-popup {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    inset: 0;
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.75);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}
.demo-popup[hidden] {
    display: none;
}

.demo-popup__dialog {
    position: relative;
    width: 100%;
    max-width: 520px;
    width: min(100%, 520px);
    padding: clamp(32px, 5vw, 56px);
    border: 1px solid rgba(255, 172, 48, 0.45);
    background-color: #171717;
    color: #fff;
    text-align: center;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}
.demo-popup__dialog h2 {
    margin-bottom: 18px;
    color: #ffac30;
    font-family: 'Bruno Ace', sans-serif;
    font-size: clamp(24px, 4vw, 38px);
    line-height: 1.2;
}
.demo-popup__dialog p {
    margin-bottom: 32px;
    font-size: clamp(15px, 2vw, 18px);
    line-height: 1.6;
}

.demo-popup__close {
    position: absolute;
    top: 12px;
    right: 16px;
    padding: 4px 8px;
    color: #fff;
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
}

.demo-popup__button {
    min-width: 180px;
    padding: 14px 24px;
    background-color: #ffac30;
    color: #111;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
}

.__container {
    max-width: 1564px;
    margin: 0 auto;
}

.main__section,
.section__two,
.section_for,
.section__three {
    position: relative;
    box-shadow: 0px -6px 10px rgba(0, 0, 0, 0.4);
}

.main__section {
    width: 100%;
}

.back_img {
    position: relative;
    width: 100%;
    min-height: 100vh;
    min-height: 100svh;
    overflow: hidden;
    position: relative;
}
.back_img picture {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    inset: 0;
}
.back_img::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: block;
    background-color: rgba(0, 0, 0, 0.6);
}
.back_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.discuss__wrap {
    height: 380px;
    display: none;
    position: fixed;
    bottom: 0;
    right: 0;
    background-color: #fff;
    padding: 0 120px;
    z-index: 10;
}

.discuss__form {
    margin-top: 81px;
}

.title__img {
    position: absolute;
    top: 267px;
    left: 314px;
}
.title__img img {
    width: 100%;
}

.form__box {
    display: flex;
    flex-direction: column;
}
.form__box input {
    border: none;
    outline: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
    font-size: 18px;
    width: 500px;
    padding: 20px 0;
}

.discuss__btn {
    font-size: 20px;
    color: #ffac30;
    text-transform: uppercase;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-top: 44px;
}

.form__btn_arrow {
    width: 100px;
    display: block;
    height: 1px;
    background-color: #ffac30;
    position: relative;
}
.form__btn_arrow::after,
.form__btn_arrow::before {
    content: '';
    position: absolute;
    display: block;
    width: 20px;
    height: 1px;
    background-color: #ffac30;
}
.form__btn_arrow::after {
    top: -6px;
    right: -20px;
    transform: rotate(35deg);
}
.form__btn_arrow::before {
    top: 5px;
    right: -20px;
    transform: rotate(-35deg);
}

.arrow_color_white {
    background-color: rgba(255, 255, 255, 0.5);
}
.arrow_color_white::after,
.arrow_color_white::before {
    background-color: rgba(255, 255, 255, 0.5);
}

.navigation__circles {
    position: fixed;
    display: flex;
    flex-direction: column;
    gap: 30px;
    top: 50%;
    transform: translateY(-50%);
    right: 65px;
    z-index: 10;
}
.navigation__circles span {
    position: relative;
    display: block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
}
.navigation__circles .active_circle {
    background-color: #ffac30;
}
.navigation__circles .active_circle::after {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 25px;
    height: 25px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.section__two {
    position: relative;
}

.about_main {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    transform: translate(-50%, -50%);
    z-index: 10;
}
.about_main p {
    display: block;
    max-width: 535px;
    margin: 0 auto;
    text-align: center;
    font-size: 20px;
    font-family: 'Roboto', sans-serif;
    text-transform: uppercase;
    color: #fff;
    font-weight: 700;
    letter-spacing: 5px;
}

.about__columns {
    display: flex;
    justify-content: center;
    margin-top: 64px;
}

.about__column {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 250px;
    justify-content: center;
    width: 33.33%;
    gap: 18px;
}
.about__column h3 {
    font-family: 'Bruno Ace', sans-serif;
    font-size: 60px;
    color: #fff;
}
.about__column h4 {
    display: block;
    text-align: center;
    max-width: 334px;
    font-size: 30px;
    color: #fff;
    text-transform: uppercase;
}

.line_about {
    position: relative;
}
.line_about::after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 3px;
    background: linear-gradient(rgba(255, 255, 255, 0), rgb(255, 255, 255), rgba(255, 255, 255, 0));
}
.line_about::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 3px;
    background: linear-gradient(rgba(255, 255, 255, 0), rgb(255, 255, 255), rgba(255, 255, 255, 0));
}

html.no_scroll,
body.no_scroll {
    overflow: hidden;
    touch-action: none;
    overscroll-behavior: none;
}

.black__box {
    pointer-events: none;
    position: absolute;
    bottom: -100px;
    display: block;
    width: 100%;
    height: 200px;
    background: linear-gradient(rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.8901960784), rgba(255, 255, 255, 0));
    z-index: 5;
    transition: all 0.6s ease;
}

.footer_black__box {
    height: 100px;
    bottom: -46px;
}

.section__three {
    position: relative;
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.sect_three_box {
    width: 33.33%;
    min-height: 100vh;
    min-height: 100svh;
    transition:
        width 0.6s ease,
        height 0.6s ease;
    position: relative;
    overflow: hidden;
}
.sect_three_box::after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.7);
}

.box_content {
    display: flex;
    position: absolute;
    gap: 60px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 15;
    align-items: center;
    transition: left 0.5s ease;
}
.box_content h4 {
    font-size: 36px;
    font-family: 'Bruno Ace', sans-serif;
    color: #fff;
    transition: color 0.4s ease;
    width: 200px;
    height: 200px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.box_content h4::after {
    content: '';
    width: 200px;
    height: 200px;
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 50%;
    border-right: 2px solid transparent;
    transform: rotate(135deg);
    transition: all 0.6s ease;
}

.box_content_main {
    visibility: hidden;
    width: 0;
    opacity: 0;
    height: auto;
    flex-direction: column;
    transition: opacity 2s ease;
    position: absolute;
}
.box_content_main p {
    font-size: 16px;
    font-weight: 600;
    width: 0;
    display: block;
    color: #fff;
    line-height: 25px;
    height: auto;
}
.box_content_main a {
    text-transform: uppercase;
}

.sect_three_box picture {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    inset: 0;
}
.sect_three_box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
}
html.can-hover .sect_three_box:hover {
    width: 80%;
}
html.can-hover .sect_three_box:hover .box_content_main {
    display: flex;
    visibility: visible;
    position: relative;
    opacity: 1;
}
html.can-hover .sect_three_box:hover .box_content_main p {
    width: 300px;
}
html.can-hover .sect_three_box:hover .box_content {
    left: 25%;
}
html.can-hover .sect_three_box:hover .box_content h4 {
    color: #ffac30;
}
html.can-hover .sect_three_box:hover .box_content h4::after {
    border-right: 2px solid #ffac30;
    transform: rotate(0deg);
}
html.can-hover .sect_three_box:hover .box_content_link {
    display: flex;
}
html.can-hover .sect_three_box:hover::after {
    background-color: rgba(0, 0, 0, 0.5);
}

.vert__line_l,
.vert__line_r {
    position: relative;
}
.vert__line_l::before,
.vert__line_r::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    z-index: 15;
    width: 3px;
    background: linear-gradient(rgba(255, 255, 255, 0), rgb(255, 255, 255), rgba(255, 255, 255, 0));
}

.vert__line_r::before {
    left: 0;
}

.box_content_link {
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    color: #fff;
    width: 314px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 5px;
}

._show_gallery {
    font-size: 20px;
    margin: 35px 0 69px 0;
    color: #ffac30;
}

.section_for {
    position: relative;
}

.horizontal_scroll {
    display: flex;
    gap: clamp(20px, 20px + 64 * (100vw - 1024px) / 896, 84px);
    overflow: hidden;
    position: absolute;
    z-index: 20;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    align-items: center;
}

.clock-container {
    position: relative;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.clock {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.clock-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Bruno Ace', sans-serif;
    font-size: 64px;
    font-weight: 400;
    color: #fff;
}

.hour-mark {
    position: absolute;
    width: 8px;
    height: 8px;
    background-color: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    cursor: pointer;
    transition: all 2s ease;
}

.pulse {
    position: relative;
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.pulse__active {
    transition: all 2s ease;
}
.pulse__active::after {
    content: '';
    display: block;
    position: absolute;
    width: 8px;
    height: 8px;
    transition: all 2s ease;
    border-radius: 50%;
    border: 1px solid #ffac30;
    -webkit-animation: doteAfter 3s linear infinite;
    animation: doteAfter 3s linear infinite;
    will-change: transform, opacity;
}
.pulse__active::before {
    content: '';
    display: block;
    position: absolute;
    width: 8px;
    height: 8px;
    transition: all 2s ease;
    border-radius: 50%;
    border: 1px solid #ffac30;
    -webkit-animation: doteAfter 3s linear 1s infinite;
    animation: doteAfter 3s linear 1s infinite;
    will-change: transform, opacity;
}

@-webkit-keyframes doteAfter {
    0% {
        -webkit-transform: scale(1);
        opacity: 1;
    }
    100% {
        -webkit-transform: scale(3);
        opacity: 0;
    }
}

@keyframes doteAfter {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(3);
        opacity: 0;
    }
}
#mark-12 {
    top: 26px;
    left: 50%;
    transform: translateX(-50%);
}

#mark-2 {
    top: 56px;
    right: 17px;
    transform: translateY(-50%);
}

#mark-4 {
    bottom: 56px;
    right: 17px;
    transform: translateY(50%);
}

#mark-6 {
    bottom: 26px;
    left: 50%;
    transform: translateX(-50%);
}

#mark-8 {
    bottom: 56px;
    left: 17px;
    transform: translateY(50%);
}

#mark-10 {
    top: 56px;
    left: 17px;
    transform: translateY(-50%);
}

.slider {
    width: 100%;
}
.slider > div:not(:first-child) {
    display: none;
}
.slider.slider--ready > div {
    display: none;
}
.slider.slider--ready > .slider__item--active {
    display: block;
}

.slide {
    min-width: 100%;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
}

.slide__arrow {
    margin: 0 clamp(20px, 20px + 58 * (100vw - 1024px) / 896, 78px) 0
        clamp(10px, 10px + 39 * (100vw - 1024px) / 896, 49px);
}

.slide__title {
    display: flex;
    align-items: center;
    gap: clamp(10px, 10px + 48 * (100vw - 1024px) / 896, 58px);
}
.slide__title h3 {
    font-size: clamp(18px, 18px + 18 * (100vw - 1024px) / 896, 36px);
    font-weight: 500;
    color: #fff;
    width: clamp(125px, 125px + 125 * (100vw - 1024px) / 896, 250px);
}

.slide__title__img {
    width: 78px;
    height: 92px;
}
.slide__title__img img {
    width: 100%;
    object-fit: cover;
}

.slide__main {
    max-width: 320px;
}
.slide__main p {
    font-size: clamp(16px, 16px + 2 * (100vw - 1024px) / 896, 18px);
    font-weight: 500;
    color: #fff;
    width: 100%;
}

.clock-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.clock-svg .bg-circle {
    fill: none;
    stroke: rgba(221, 221, 221, 0.4);
    stroke-width: 1;
}

.clock-svg .arc {
    fill: none;
    stroke: #ffac30;
    stroke-width: 1;
    stroke-dasharray: 0 565.48;
    transform: rotate(-90deg);
    transform-origin: center;
    transition: all 1s ease;
}

.content {
    width: 100%;
    max-width: 900px;
    box-sizing: border-box;
}
.content h3 {
    position: relative;
    text-align: center;
}

.footer {
    padding: 24px clamp(20px, 3.4vw, 65px);
    width: 100%;
    background-color: #fff;
    position: relative;
    z-index: 200;
    margin-bottom: 0;
}

.footer__form {
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin: 0 auto;
}

.input__name,
.input__phone {
    width: 100%;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
    padding: 16px 0 4px;
    font-size: 14px;
}
.input__name::placeholder,
.input__phone::placeholder {
    font-size: 14px;
    transition: all 0.4s ease;
}
.input__name:focus,
.input__phone:focus {
    outline: none;
}

.input__btn {
    display: flex;
    align-items: center;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    height: 40px;
    justify-content: center;
    max-width: 244px;
    width: 100%;
    background-color: #ffac30;
    border-radius: 24px;
}

@media screen and (max-width: 1600px) {
    .content {
        max-width: 750px;
    }
    .horizontal_scroll {
        gap: 10px;
    }
}
@media screen and (max-width: 1400px) {
    .about__column {
        width: 27%;
    }
    .about__column h3 {
        font-size: 50px;
    }
    .about__column h4 {
        font-size: 24px;
    }
    .box_content {
        gap: 20px;
    }
}
@media screen and (max-width: 1280px) {
    .title__img {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
}
@media screen and (max-width: 1240px) {
    .slide__main {
        max-width: 270px;
    }
    .content {
        max-width: 550px;
    }
    html.can-hover .sect_three_box:hover {
        width: 50%;
    }
    ._show_gallery {
        margin: 15px 0 30px 0;
    }
    .box_content {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    .box_content h4 {
        font-size: 24px;
        width: 50px;
        height: 90px;
    }
    .box_content h4::after {
        width: 90px;
        height: 90px;
    }
    html.can-hover .sect_three_box:hover .box_content_main {
        width: 200px;
    }
    .box_content_main {
        transform: translate(0, 80%);
        z-index: -1;
        transition:
            transform 0.5s ease,
            z-index 0.5s ease;
    }
    .box_content_main p {
        font-size: 14px;
        width: 230px;
        transform: translate(-100px, 0);
    }
    html.can-hover .sect_three_box:hover .box_content {
        left: 40%;
        top: 60%;
    }
    html.can-hover .sect_three_box:hover .box_content_main {
        transform: translate(0, 0);
        z-index: 5;
    }
    html.can-hover .sect_three_box:hover .box_content_main p {
        transform: translate(0, 0);
        width: 270px;
    }
    .box_content_link {
        width: 285px;
    }
    .box_content_link .form__btn_arrow {
        width: 70px;
    }
}
@media screen and (max-width: 1024px) {
    #smooth-content {
        transform: none !important;
        will-change: auto;
    }

    .vert__line_l::before,
    .vert__line_r::before {
        display: none;
    }
    .slide__main p {
        font-size: clamp(16px, 16px + 2 * (100vw - 1024px) / 896, 18px);
        width: 300px;
        text-align: center;
    }
    .slide {
        flex-direction: column;
        gap: 15px;
        height: auto;
        width: 100%;
    }
    .slide__arrow {
        display: none !important;
    }
    .slide__title {
        gap: 15px;
    }
    .slide__title h3 {
        font-size: 24px;
        width: 100%;
        text-align: center;
    }
    .slide__title {
        flex-direction: column;
    }
    .black__box {
        bottom: -60px;
        height: 130px;
    }
    .main__aside {
        display: none;
    }
    .header {
        width: 100%;
        padding: 20px 0px;
        top: 0;
        left: 0;
        transform: translateX(0);
        right: 0;
    }
    .header::after {
        bottom: 0px;
    }
    .left__list {
        margin: 0;
    }
    .call-btn {
        right: 16px;
    }
    .navigation__circles {
        display: none;
    }
    .title__img {
        width: 60%;
    }
    .about__column {
        width: 33.33%;
    }
    .section__three {
        justify-content: center;
        width: 100%;
        flex-direction: column;
    }
    .sect_three_box {
        width: 100%;
    }
    .box_content {
        flex-direction: row;
        gap: 100px;
    }
    .box_content h4 {
        font-size: clamp(18px, 18px + 26 * (100vw - 360px) / 664, 44px);
    }
    .box_content h4::after {
        width: 140px;
        height: 140px;
        top: -20%;
        left: -80%;
        border-right: 2px solid #ffac30;
        transform: rotate(-45deg);
    }
    .box_content_main {
        transform: translate(100%, 0);
        transition: transform 1s ease;
    }
    .horizontal_scroll {
        flex-direction: column;
        align-items: center;
    }
    .sect_three_box {
        min-height: 100%;
    }
    html.can-hover .sect_three_box:hover {
        width: 100%;
        min-height: 640px;
        min-height: max(640px, 80svh);
        font-size: clamp(18px, 18px + 26 * (100vw - 360px) / 664, 44px);
    }
    html.can-hover .sect_three_box:hover .box_content {
        left: 50%;
        top: 50%;
    }

    .sect_three_box .box_content_link {
        padding-right: 20px;
    }

    #mark-12 {
        top: 6px;
    }

    #mark-6 {
        bottom: 6px;
    }
}
@media screen and (max-width: 980px) {
    .burger__footer {
        position: static;
    }
    .burger__active {
        overflow-y: auto;
        overflow-x: hidden;
        overflow-x: clip;
    }
    .menu-items {
        flex-direction: column;
        left: 0%;
        top: 100px;
        transform: translate(0%, 0%);
        height: auto;
        min-height: 100%;
        padding: 0;
    }
    .nav__item {
        min-height: 100px !important;
    }
    .nav__item::after {
        top: auto;
        height: 1px;
        transform: translateY(0%);
        bottom: 0;
        width: 100%;
        background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgb(255, 255, 255), rgba(255, 255, 255, 0));
    }
    .nav__item::before {
        display: none;
    }
    .nav__item:hover {
        background-color: rgba(0, 0, 0, 0);
    }
    .nav__item:hover::before,
    .nav__item:hover::after {
        top: auto;
        height: 1px;
        transform: translateY(0);
    }
    .nav__item:hover .nav__link_arrow {
        transform: translateY(0px);
        opacity: 0;
    }
    .nav__item {
        max-width: 100%;
        width: 100%;
        min-width: 0;
        top: 0%;
        transform: translateY(0%);
    }

    .nav__item_wrap,
    .nav__link,
    .nav__boogrer__item,
    .nav__boogrer__link {
        min-width: 0;
        max-width: 100%;
    }

    .nav__link_arrow {
        display: none;
    }

    .nav__boogrer__link {
        overflow-wrap: anywhere;
    }
}
@media screen and (max-width: 768px) {
    .burger {
        height: 100vh;
        height: 100dvh;
    }

    .box_content {
        position: relative;
        top: auto;
        transform: translate(-50%, 0px);
        left: 50%;
    }
    .sect_three_box {
        padding: 48px 16px;
    }
    .sect_three_box img {
        position: absolute;
        top: 0;
        left: 0;
    }
    .main__section,
    .section__two,
    .section_for,
    .section__three {
        position: relative;
    }
    .back_img {
        min-height: 100svh;
    }
    .burger__footer__social {
        padding: 30px 0 40px 0;
    }
    .nav__boogrer__list {
        gap: 10px;
        flex-direction: column;
    }
    .burger__footer__title {
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
        padding-bottom: 30px;
        padding-top: 25px;
    }
    .burger__footer__title img {
        display: none;
    }
    .burger__footer__title h3 {
        font-size: clamp(16px, 16px + 8 * (100vw - 320px) / 704, 24px);
        letter-spacing: 10px;
        line-height: 25px;
    }
    .footer__form {
        flex-direction: column;
        max-width: 518px;
        gap: 46px;
    }
    .input__btn span {
        font-size: 20px;
    }
    .horizontal_scroll {
        gap: 40px;
    }
    .slide__title__img {
        width: 68px;
        height: 82px;
    }
    .slide__title h3 {
        font-size: 18px;
    }
    .slide__main {
        max-width: 300px;
    }
    .slide__main p {
        font-size: 14px;
    }
    .content {
        max-width: 320px;
    }
    .about_main {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    .title__img {
        width: 80%;
    }
    .call-btn p {
        display: none;
    }
    .about__column {
        width: 100%;
        min-height: auto;
    }
    .about__column h3 {
        font-size: 40px;
    }
    .about__column h4 {
        font-size: 24px;
    }
    .about__columns {
        flex-direction: column;
        gap: 40px;
    }
    .line_about::before {
        top: -150%;
        bottom: 0;
        transform: rotate(90deg) translateX(-50%);
        left: 50%;
    }
    .line_about::after {
        bottom: -150%;
        transform: rotate(90deg) translateX(-50%);
        right: 50%;
    }
}
@media screen and (max-width: 600px) {
    .header {
        padding: 10px 16px;
    }
    .form__btn_arrow {
        width: 95%;
    }
    .box_content {
        flex-direction: column;
        gap: 50px;
    }
    .box_content h4::after {
        width: 150px;
        height: 150px;
        top: -30%;
        left: -110%;
    }
    .box_content_main {
        transform: translate(0, 0);
        pointer-events: none;
    }
    html.can-hover .sect_three_box:hover .box_content_main {
        pointer-events: auto;
        width: 100%;
    }
}
@media screen and (max-width: 540px) {
    .about_main p {
        font-size: 18px;
    }
}
@media (hover: none), (pointer: coarse) {
    .sect_three_box {
        height: auto;
    }
    .sect_three_box:hover {
        height: auto;
    }
    .sect_three_box .box_content {
        width: 90%;
        max-width: 420px;
        width: min(90%, 420px);
        flex-direction: column;
        gap: 28px;
    }
    .sect_three_box .box_content_main {
        display: flex;
        visibility: visible;
        position: relative;
        width: 100%;
        opacity: 1;
        transform: none;
        z-index: 1;
        pointer-events: auto;
    }
    .sect_three_box .box_content_main p {
        width: 100%;
        transform: none;
    }
    .sect_three_box .box_content_link {
        display: flex;
        width: 100%;
    }
}
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    /* The clock is functional progress feedback and must remain consistent
       across devices even when the OS motion preference differs. */
    .pulse__active::before,
    .pulse__active::after {
        -webkit-animation-duration: 3s !important;
        animation-duration: 3s !important;
        -webkit-animation-iteration-count: infinite !important;
        animation-iteration-count: infinite !important;
    }

    .hour-mark,
    .clock-svg .arc {
        transition-duration: 1s !important;
    }
}
@media screen and (max-width: 375px) {
    .menu-items {
        top: 185px;
    }
}
