:root {
    --swiper-theme-color: #fff;
}
.swiper,
.swiper-slide {
    width: 100%;
    height: 650px;
}
.swiper .fullscreen,
.swiper .fullscreen .swiper-slide {
    width: 100%;
    height: calc(100vh - 200px);
}

.swiper-slide {
    position: relative;
    overflow: hidden;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* donkere overlay */
.slide-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

/* content */
.slide-content {
    position: absolute;
    inset: 0;
    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    color: white;
    padding: 20px;
}

.slide-content h1 {
    font-size: 2rem;
    font-weight: 700;
}

.slide-content p {
    font-size: 1rem;
    max-width: 700px;
    margin: auto;
}

@media (max-width: 768px) {
    .slide-content h1 {
        font-size: 2.5rem;
    }

    .slide-content p {
        font-size: 1rem;
    }
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.swiper {
  cursor: grab;
}

.swiper:active {
  cursor: grabbing;
}
@media (max-width: 768px) {
    .swiper {
        display: none;
    }
}

/*.swiper-slide {*/
/*    position: relative;*/
/*    height: 100vh;*/
/*}*/

/*.swiper-slide img {*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    object-fit: cover;*/
/*}*/

/*.slide-content {*/
/*    position: absolute;*/
/*    top: 50%;*/
/*    left: 50%;*/
/*    transform: translate(-50%, -50%);*/

/*    text-align: center;*/
/*    color: white;*/
/*}*/
