* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

body {
    font-family: 'Playfair Display', serif;
    color: #000;
    background: #fff;
    overflow-x: hidden;
    transition: background .6s, color .6s
}

header.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px
}

.logo {
    position: relative;
    display: flex;
    align-items: center
}

.logo img {
    height: 40px
}

.logo-text {
    position: absolute;
    left: 60px;
    opacity: 0;
    transition: all 1s ease;
    font-size: 24px
}

.logo:hover .logo-text {
    opacity: 1;
    transform: translateX(20px)
}

.nav a {
    margin: 0 15px;
    text-decoration: none;
    color: #000;
    font-size: 16px;
    text-transform: uppercase;
    transition: .3s

}

.nav a:hover {
    color: #555
}

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative
}

.hero-text h1 {
    font-size: 80px
}

.hero-text p {
    font-size: 24px;
    margin-top: 20px
}

.split-block {
    display: flex;
    align-items: center;
    height: 100vh
}

.split-text, .split-img {
    flex: 1;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative
}

.split-img img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.sticky-text {
    position: sticky;
    top: 50%;
    transform: translateY(-50%);
    text-align: left;
    padding: 40px
}

.sticky-text h2 {
    font-size: 60px;
    margin-bottom: 20px
}

.sticky-text p {
    font-size: 20px
}

/* sliders */
.sliders {
    padding: 64px 0;
    background: transparent
}

.slider {
    position: relative;
    width: 100vw;
    overflow: hidden;
    padding: 20px 0
}

.slider__track {
    display: flex;
    align-items: center;
    gap: 20px;
    will-change: transform
}

.slider--main .slider__item {
    flex: 0 0 70vw;
    height: 420px;
    background: #eee;
    border-radius: 8px;
    display: flex;
    align-items: flex-end;
    padding: 20px;
    font-size: 24px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .06)
}

.slider--mini .slider__item {
    flex: 0 0 240px;
    height: 135px;
    background: #f1f1f1;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center
}

.footer {
    text-align: center;
    padding: 50px 0;
    background: #fff;
    font-size: 18px
}

.split-img {
    overflow: hidden; /* Скрываем части изображения, выходящие за границы */
    position: relative;
    width: 100%;
    height: 100vh; /* Блок неподвижен и занимает всю высоту viewport */
}

.split-img img {
    width: 100%;
    height: 120%; /* Изображение чуть больше контейнера для параллакса */
    object-fit: cover; /* Масштабируем изображение, чтобы оно заполняло контейнер */
    position: absolute;
    top: 0;
    left: 0;
    transform: translateY(0); /* Начальная позиция для параллакса */
    transition: transform 0.1s linear; /* Плавное движение */
}

.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.hero-text {
    z-index: 2;
    color: white;
}

.slider__item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 0;
}

.slider__item__text {
    color: white;
    position: relative;
    z-index: 1;
    padding: 10px 10px;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(3px);
    border-radius: 8px;
}

.slider__item {
    color: white;
}

.sticky-text h2,
.sticky-text p {
    overflow-wrap: break-word;
    word-break: break-all;
}
.logo-text--mobile{
    font-size: 24px
}
.mobile {
    display: none;
}

@media (max-width: 768px) {
    .split-block {
        height: 40vh
    }

    .mobile {
        display: block;
    }

    .split-img {
        height: 100%
    }

    .split-img img {
        height: 150%
    }

    .nav {
        display: none;
    }

    .sticky-text h2 {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .sticky-text p {
        font-size: 15px;
    }
}