.service-page .main-banner {
    position: relative;
    padding: 30px 0;
    height: 100vh;
    max-height: 730px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    /* margin-bottom: var(--section-bottom-space); */
}
.service-page .main__btn-page {
    width: fit-content;
}
.service-page .main-banner-img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.service-page .main-banner__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    object-fit: cover;
    object-position: 30%;
    z-index: 1;
}
.escalator-page .main-banner__video {
    object-position: 50%;
}
.add-works-page .main-banner__video {
    object-position: bottom 30%;
    top: unset;
    bottom: 0;
}
.equipment-page .main-banner__video {
    object-position: center;
}
.service-page .main-banner.dark-layer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background:rgba(0, 0, 0, 0.3);
}

.service-page .main-banner__desc {
    width: 100%;
}

.service-page .main-banner__content > * {
    z-index: 3;
}
.service-page .main-banner__content h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 1.6rem;
    line-height: 1.2;
    letter-spacing: 0.02rem;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.service-page .main-banner__content h2 {
    margin-bottom: 1.5rem;
}
.steps__container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.steps__block {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
    position: relative;
    overflow: visible;
}
.step {
    position: -webkit-sticky;
    position: sticky;
    top: 100px;
    min-height: 116px;
    background-color: #FFFFFF;
    border: 1px solid var(--color-card-border);
    display: grid;
    grid-template-columns: 1fr ;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1rem 2rem;
    align-items: center;
    border-radius: var(--border-radius-small);
    box-shadow: var(--box-shadow-s);
}
.step__icon {
    max-width: 100px;
}
.step__desc {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}
.step__title {
        text-transform: uppercase;
        color: var(--color-title);
        font-weight: 700;
    }

@media screen and (min-width: 768px) {
    .service-page .main-banner {
            height: 100vh;
    }
    .step {
        grid-template-columns: 64px 1fr;
    }
   
    .step__desc {
        display: flex;
        flex-direction: row;
        gap: 1.5rem;
    }
    .step__title {
        min-width: 160px;
    }
}

@media screen and (min-width: 1024px) {
    .service-page .main-banner__content {
            padding: 0;
            margin-left: 0;
         }
    .elevator-page .main-banner__content {
        width: auto;
        margin-left: 51%;
    }
    
    .steps__container {
        flex-direction: row;
     }
    .steps__desc {
        width: 50%;
        position: relative;
        top: 0;
        overflow: visible; 
    }
    .steps__desc > * {
        position: sticky;
        display: block;
    }
    .step {
        grid-template-columns: 86px 1fr;
    }
}
@media screen and (min-width: 1280px) {
    .service-page .main-banner__video {
            object-position: center;
        }
    .add-works-page .main-banner__video {
        object-position: bottom;
    }
    /* .escalator-page .main-banner.dark-layer::after {
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.2) 100%);
    } */
}

