.slide {
    position: absolute;
    height: 100%;
    width: 1536px;
    flex-direction: column;
    justify-content: center;
    display: none;
}
.slide_active {
    display: flex;
}

.slide_active .slide__title {
    animation-name: fadeIn;
    animation-delay: 0s;
    animation-duration: 2s;
    animation-fill-mode: forwards;
}

.slide_active .slide__subtitle {
    animation-name: fadeIn;
    animation-delay: 1s;
    animation-duration: 2s;
    animation-fill-mode: forwards;
}
.slide_active .slide__text {
    animation-name: fadeIn;
    animation-delay: 2s;
    animation-duration: 2s;
    animation-fill-mode: forwards;
}
.slide_active .slide__button {
    animation-name: fadeIn;
    animation-delay: 3s;
    animation-duration: 2s;
    animation-fill-mode: forwards;;
}


@media screen and (max-width: 1920px){
    .slide {
        width: 100vw;
    }
}
.slide_without-slider {
    height: 680px;
    width: 100%;
    max-width: 1536px;
    margin: 0 auto 56px auto;
    justify-content: flex-end;
    padding: 0 0 84px 0;
    position: relative;
    display: flex;
}
.slide_without-slider_center {
    justify-content: center;
    padding: 0;
}
.slide_without-slider .slide__title {
    opacity: 1;
}

.slide_without-slider .slide__subtitle {
    opacity: 1;
}
.slide_without-slider .slide__text {
    opacity: 1;
}
.slide_without-slider .slide__button {
    opacity: 1;
}

.slide__content {
    position: relative;
    z-index: 4;
    margin-left: 112px;
}
.slide__channel-image{
    /* height: 70px; */
    /* position: absolute; */
    /* top: 30px; */
    /* left: 30px; */
    z-index: 4;
}
.slide_without-slider .slide__title{
    margin-bottom: 0;
}
.slide__title {
    opacity: 0;
    margin-bottom: 60px;
    text-shadow: 0px 0px 2px var(--black-blue);
}

.slide__subtitle {
    opacity: 0;
    max-width: 560px;
    text-shadow: 0px 0px 2px var(--black-blue);
}
.slide__text {
    opacity: 0;
    max-width: 480px;
    text-shadow: 0px 0px 2px var(--black-blue);
}
.slide__button {
    opacity: 0;
    max-width: 213px;
}
.slide__background-mask {
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    position: absolute;
    background: linear-gradient(70deg,var(--black) 0%, rgba(84, 84, 84, 0) 50%);
    z-index: 3;
    opacity: 0.6;
}
.slide__path {
    z-index: 2;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    position: absolute;
    clip-path: polygon(0 0, 13% 0%, 25% 100%, 0% 100%);
    background: linear-gradient(180deg,
    var(--gradient-dark-blue) 0%,
    var(--gradient-blue) 45.1%,
    var(--gradient-light-blue) 100%);
}

.slide__background-image {
    position: relative;
    object-fit: cover;
    height: 100%;
    width: 100%;
}
.slide__background-image-container {
    top: 0;
    left: 0;
    overflow: hidden;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    z-index: -1;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/*
@media screen and (max-width: 1279px) {
    .slide__title {
        margin-bottom: 30px;
    }
    .slide__content {
        margin-left: 100px;
    }
    .slide_without-slider {
        height: 500px;
        padding: 0 0 60px 0;
    }
    .slide__channel-image {
        height: 100px;
    }
}
*/
