.steps__title {
    margin-bottom: 6rem;
}

.steps__list-wrap {
    width: 100vw;
    overflow: hidden;
}

.steps__list {
    box-sizing: border-box;
    display: flex;
    width: max-content;
    gap: 2rem;
    transform-style: preserve-3d;
}

.steps-item {
    flex: 0 0 auto;
    box-sizing: border-box;
    display: flex;
    width: 31.5vw;
    padding: 0.1rem;
    position: relative;
    z-index: 1;
    cursor: pointer;
}

.steps-item:hover .steps-item__text {
    opacity: 1;
}

.steps-item::after {
    content: "";
    display: block;
    background: transparent;
    background: linear-gradient(141.8deg, #06ffff 14.44%, #01c4e5 86.47%);
    background-repeat: no-repeat;
    border-radius: inherit;
    position: absolute;
    inset: 0;
    transition: inherit;
    pointer-events: none;
    z-index: -1;
    padding: 0.1rem;
    -webkit-mask: linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.steps-item__inner {
    box-sizing: border-box;
    width: 100%;
    padding: 4rem;
    position: relative;
}

.steps-item__image {
    aspect-ratio: 420/150;
    margin-bottom: 2rem;
}

.steps-item__image img {
    object-fit: cover;
    border-radius: 0.8rem;
}

.steps-item__title {
    font-weight: 500;
    line-height: 1.2;
}

.steps-item__text {
    padding: 4rem;
    color: #666666;
    background: #050505;
    color: #fff;
    line-height: 1.75;
    opacity: 0;
    position: absolute;
    inset: 0;
    z-index: 1;
    transition: opacity 0.3s ease-out !important;
}

.steps-item__plus {
    font-size: 3rem;
    color: #06ffff;
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    display: none;
}

/* media queries START */
@media screen and (min-width: 768px) {
    section.steps {
        padding-top: calc(15rem + 50dvh);
    }

    .steps__list-wrap {
        position: sticky;
        top: 50%;
        translate: 0 -50%;
    }
}

@media (max-width: 1024.9px) {
    .steps-item {
        width: 45vw;
        transform: unset !important;
    }
}

@media (max-width: 767.9px) {
    .steps__title {
        text-align: center;
    }

    .steps__list {
        width: 100%;
        flex-direction: column;
        align-items: center;
        padding: 0 2rem;
    }

    .steps-item {
        width: 75vw;
    }

    .steps-item__plus {
        display: block;
    }
}

@media (max-width: 575.9px) {
    .steps-item {
        width: 95vw;
    }
}
/* media queries END */