.hero__wrapper {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.slider-enabled .hero__container {
    padding-bottom: 80px;
}

.hero__wrapper, .hero__text.with-see-more {
    width: 100%;
}

.hero__text {
    color: #000;
}

.hero__text.text-white {
    color: #fff;
}

.hero.no-slider {
    display: flex;
    justify-content: center;
}


.hero__navigation-container {
    display: flex;
    align-items: center;
    z-index: 1;
    position: relative;
    max-width: 92.5rem;
    justify-content: space-between;
    margin-left: 3.125rem;
    margin-right: 3.125rem;
    width: 100%;
}

@media only screen and (max-width: 767px) {
    .hero__navigation-container {
        margin-left: 1.125rem;
        margin-right: 1.125rem;
    }
}

.keen-slider {
    width: 100%;
}

.hero__navigation {
    position: absolute;
    bottom: 50px;
    width: 100%;
    left: 0;
    display: flex;
    justify-content: center;
}

.keen-slider__dots {
    display: flex;
    align-items: center;
}

.keen-slider__dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    margin-right: 10px;
    border: none;
    cursor: pointer;
}

.keen-slider__dot.active {
    background: white;
}

.keen-slider__arrows {
    display: flex;
    align-items: center;
}

.keen-slider__arrow {
    width: 60px;
    height: 60px;
    background: #DB0812;
    color: white;
    font-size: 1.5rem;
    border-radius: 50%;
    border: none;
    margin-left: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

@media only screen and (max-width: 767px) {
    .keen-slider__arrow {
        width: 45px;
        height: 45px;
    }

    .keen-slider__arrow svg {
        width: 25px;
    }
}

.keen-slider__arrow--left {
    transform: translateX(-10px);
}

.keen-slider__slide {
    display: flex;
    justify-content: center;
}

.keen-slider__arrow--right {
    transform: translateX(10px);
}

.keen-slider__arrow.disabled {
    opacity: 0.5;
    pointer-events: none;
}

.hero__overlay {
    background: rgb(255, 255, 255);
    background: linear-gradient(
            180deg,
            rgba(24, 49, 82, 0) 0%,
            rgba(0, 0, 0, 0.7) 100%
    );
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100vh;
    z-index: 1;
}

.hero__overlay {
    /* Döljer overlay på mobila enheter om klassen hide-on-mobile finns */
    @media only screen and (max-width: 767px) {
        .hero__overlay.hide-on-mobile {
            display: none !important;
        }
    }
}
