/*
 * Head slider component style for gallura template.
 */

.swiper {
    position: relative;
}

.swiper section {
    position: absolute;
    z-index: 2;
    top: 25vh;
}

.swiper section h1 {
    color: var(--white);
}

.swiper .swiper-wrapper .swiper-slide {
    position: relative
}

.swiper .swiper-wrapper .swiper-slide::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
}

@media screen and (max-width: 576px) {
    .swiper section {
        top: 8em;
    }
}