.hero-container{
    width: 100%;
}

.slider-container{
    margin: auto;
    width: 100%;
    max-width: 1400px;
    height: 100%;
    overflow: hidden;
    position: relative;
    background: var(--blue);
}

.slider{
    width: 100%;
    height: 100%;
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide{
    width: 100%;
    min-width: 100%;
    height: 100%;
    box-sizing: border-box;
}

.slide img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    aspect-ratio: 3/1;
}

.slider-button{
    position: absolute;
    top: 50%;
    translate: 0 -50%;
    background: #00000050;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    z-index: 1;
}

.slider-button-prev{
    left: 20px;
}

.slider-button-next{
    right: 20px;
}

/**/

.index-services{
    background: var(--white);
    transition: var(--t-100ms);
    cursor: pointer;
    border: 1px solid var(--white);
}

.index-services:hover{
    background: #C9C9C9;
}

/**/

@media screen and (max-width: 600px){
    .hero-container{
        height: 200px;
    }
}