.webshop-title-banner {
    text-align: center;
    font: normal normal 500 36px/15vh Montserrat;
    letter-spacing: 0;
    color: var(--primary);
}

.webshop-slider-container {
    width: 100%;
    height: calc(900vw/16);
    position: relative;
}

.webshop-slider {
    position: absolute!important;
    width: 100%;
    height: 100%;
}

.webshop-slider>img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.webshop-slider-controls-overlay {
    z-index: 10;
    width: 100%;
    height: 100%;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.webshop-slider-arrow-left {
    transform: rotate(180deg);
    background: url("../assets/img/arrow_right.svg");
    margin-left: 60px;
    width: 23px;
    height: 61px;
}

.webshop-slider-arrow-right {
    background: url("../assets/img/arrow_right.svg");
    margin-right: 60px;
    width: 23px;
    height: 61px;
}

@media (max-width: 986px) {

    .webshop-title-banner {
        font: normal normal 500 26px/5vh Montserrat;
        margin: 4vh;
    }

}