.sliders {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    height: calc(100% - 100px);
    padding: 90px 0 0 0;
    background: linear-gradient(90.04deg, rgba(24, 24, 24, 0.7) 1.44%, rgba(24, 24, 24, 0.7) 49.23%, rgba(24, 24, 24, 0.1) 99.97%);
}

.sliders__container {
    width: 100%;
    max-width: 1285px;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    height: 100%;
}

.sliders__title {
    width: 100%;
    font-family: "Manrope";
    font-style: normal;
    font-weight: 600;
    font-size: 44px;
    line-height: 150%;
    text-transform: uppercase;
    color: #fefefe;
}

.slider__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.slide {
    width: 100%;
    max-width: 340px;
    height: 470px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
  /* Rectangle 106 */
    -webkit-transition: all 1s ease-in-out;
    transition: all 1s ease-in-out;
    -webkit-transition: border-left 0.2s;
    transition: border-left 0.2s;
    -webkit-transition: border-right 0.2s;
    transition: border-right 0.2s;
    padding: 0 20px;
}

.slide:nth-of-type(3) {
    border-left: 1px solid rgb(229, 228, 228);
    border-right: 1px solid rgb(229, 228, 228);
}

.slide__title {
    font-family: "Manrope";
    font-style: normal;
    font-weight: 500;
    font-size: 22px;
    line-height: 150%;
    color: #ffffff;
    margin: 0 0 20px 0;
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
    height: 150px;
    text-transform: uppercase;
}

.slide__logo {
    width: 100%;
    height: 137px;
    display: none;
}

.slide__logo img {
    width: 100%;
    height: auto;
}

.slide__decor {
    position: relative;
    overflow: visible;
    height: 2px;
    margin: 0 0 20px 0;
}

.slide.active {
    background: rgba(0, 0, 0, 0.6);
    -webkit-transition: background-color 0ms linear;
    border-right: 1px solid rgb(229, 228, 228);
    -ms-transition: background-color 0ms linear;
    transition: background-color 0ms linear;
    border-left: none !important;
    -webkit-clip-path: polygon(0 28%, 100% 0%, 100% 100%, 0 100%);
    clip-path: polygon(0 28%, 100% 0%, 100% 100%, 0 100%);
}

.slide.active .slide__logo {
    display: block;
}

.slide.active .slide__decor {
    background: rgb(122, 121, 121);
    position: relative;
}

.slide.active .slide__decor::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 2px;
    width: 0;
    background: rgb(255, 255, 255);
    -webkit-animation-name: run;
    animation-name: run;
    -webkit-animation-duration: 5500ms;
    animation-duration: 5500ms;
}

@-webkit-keyframes run {
    0% {
        width: 0;
    }

    100% {
        width: 100%;
    }
}

@keyframes run {
    0% {
        width: 0;
    }

    100% {
        width: 100%;
    }
}