.mp-intro {
    position: relative;

}

.mp-intro__bgimage {
    position: absolute;
    overflow: hidden;
    width: 100%;
    height: 100%;
    inset: 0;
}

.mp-intro__picture,
.mp-intro__picture img {
    position: absolute;
    width: 100%;
    height: 100%;
    inset: 0;
    object-fit: cover;
    object-position: 42.5%;
    opacity: 1;
    transform: none;
    transition: opacity 0.8s ease-in, transform 1s cubic-bezier(0.19, 0.46, 0.45, 0.94);
}

.mp-intro__picture::before {

}

.mp-intro__slider.slick-slider {
    position: absolute;
    overflow: hidden;
    width: 100%;
    height: 100%;
    inset: 0;
}

.mp-intro__slide {
    position: absolute;
    width: 100%;
    height: 100%;
    inset: 0;
    object-fit: cover;
    /*transition: opacity 3s,transform 8s;*/
    /*animation-delay: 5s;
    animation-fill-mode: both;
     animation-fill-mode: forwards ;
     animation-fill-mode: both;
     animation-direction: alternate;
    animation-fill-mode: none;
    animation-delay: 0s;*/

}

.mp-intro__slide.slick-active {
    animation-name: slideTransition;
    animation-duration: 5s;
    animation-timing-function: linear;
    /*animation-iteration-count: infinite;*/
    /*transition: opacity 5s,transform 8s;*/
}

@keyframes slideTransition {
    0% {
        transform: scale(1.3);
    }
    100% {
        transform: scale(1);
    }
}

/*
.mp-intro__slide.slick-slide,
.mp-intro__slide.slick-active + .slick-active ~ .slick-active{
    transform: scale(1.3);
    opacity: .3;

}

.mp-intro__slide.slick-active + .mp-intro__slide.slick-active{
    transform: scale(1);
    opacity: 1;
}*/

@media (min-width: 320px) {
    .scroll-help {
        position: relative;
        display: flex;
        min-height: 100vh;
        flex-direction: column;
        align-items: center;
        justify-content: flex-end;
        padding: 0 0 9rem;
        inset: 0;
        pointer-events: none;
    }

    .scroll-help__body {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        position: absolute;
        bottom: 3rem;
        left: 50%;
        opacity: 1;
        transform: translateX(-50%);
        transition: opacity 0.8s ease-in;
        transition-delay: 1.6s;
    }

    .scroll-help__handle {
        width: 20px;
        height: 30px;
        border: 1px solid var(--white);
        border-radius: 10px;
        animation: scrollHandleMove 1.5s infinite ease-in-out;
        backdrop-filter: blur(10px);
        background: rgba(255, 255, 255, 0.1);
    }

    .scroll-help__text {
        font-size: 0.875rem;
    }
}

.mp-intro__content {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    inset: 0;
    backdrop-filter: blur(0);
    transition: backdrop-filter 0.5s ease-in-out;
    transition-delay: 0.2s;
    background: linear-gradient(rgba(0, 0, 0, 0.1) 60%, rgb(35, 32, 32) 100%);
}

.mp-intro__content::before {
    content: '';
    background: linear-gradient(45deg, rgb(0 0 0 / 0%) 60%, rgba(35, 32, 32, 0.8) 100%);
    width: 100%;
    height: 100%;
    top: 0;
    position: absolute;
    pointer-events: none;
}

.mp-intro__content::after {
    content: '';
    background: linear-gradient(0deg, rgb(0 0 0 / 0%) 60%, rgb(35 32 32) 100%);
    width: 100%;
    height: 100%;
    top: 0;
    position: absolute;
    pointer-events: none;
}

.mp-intro__title {
    font-size: 5rem;
    font-weight: 300;
    line-height: 1.2;
}

.mp-intro__subtitle {
    margin-bottom: 0;
    position: relative;
}

.mp-intro__subtitle span {
    font-size: 1.5rem;
    background: -webkit-linear-gradient(0deg, #fff calc(100% - 1rem), transparent);
    background-clip: border-box;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation-name: dynamic-slogan;
    animation-iteration-count: infinite;
    animation-duration: 5.5s; /* время указано в js */
    display: none;
    white-space: nowrap;
    overflow: hidden;
}

.mp-intro__subtitle span.active {
    display: block;
}

.mp-intro__subtitle span:nth-child(n+1) {
    /*animation-delay: calc(var(--t) * calc(var(--i) + 1));*/
}

.mp-intro__subtitle span:not(:first-child) {
    /*display: none;*/
}

@keyframes dynamic-slogan {
    0% {
        width: 0;
    }
    50%, 75% {
        width: 100%;
    }
    100% {
        width: 0;
    }
}

.mp-intro__slider .slick-track {
    height: 100vh;
}