.bg {
    position: absolute;
    inset: 0;
    background: var(--color-black);
    z-index: 0;
    filter: blur(8px);
    transform: scale(1.1);
    background-size: cover;
    background-position: center;
}

.header {
    position: absolute;
    top: 1rem;
    text-align: center;
    width: 100%;
    z-index: 3;
}


h1 {
    color: var(--color-black);
}

.main {
    position: relative;
    z-index: 2;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    overflow: visible;
}


.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    position: relative;
}

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

.swiper-slide {
    width: 100% !important;
    height: 100% !important;
}

.explore-btn {
    position: absolute;
    left: 12rem;
    top: 5rem;
    border-radius: 0;
    z-index: 2;
    transition: all 0.3s ease;
}

@keyframes pulse-glow {
    0% {
        opacity: 0.7;
        transform: scale(1);
    }
    100% {
        opacity: 1;
        transform: scale(1.05);
    }
}


@media (max-width: 1054px) {
    .explore-btn {
        left: 5rem;
    }

    .swiper-slide img {
        border-radius: 0;
    }
}

@media (max-width: 767px) {
    /*.swiper-slide img {*/
    /*    width: 165%;*/
    /*}*/

    .explore-btn {
        left: 50%;
        transform: translateX(-50%);
        bottom: 3rem;
        top: auto;
    }
}