@import url('https://fonts.googleapis.com/css2?family=Mulish&display=swap');

html {
    position: relative;
    height: 100%;
}

body {
    background: #eee;
    font-family: 'Mulish', sans-serif;
    font-size: 14px;
    color: #000;
    margin: 0;
    padding: 0;
    height: 100%;
    position: relative;
}

.back__index {
    position: absolute;
    padding: 0.5rem;
    width: 4rem;
    z-index: 999;
    filter: drop-shadow(5px 5px 10px #000);
    border-radius: 66% 34% 63% 37% / 61% 61% 39% 39%;
    background-color: #A01212;
}

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

.swiper-slide {
    text-align: center;
    font-size: 1.125rem;
    background: #fff;
    position: relative;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(70%);
}

.swiper-pagination-bullet {
    width: 0.75rem;
    height: 0.75rem;
    display: inline-block;
    border-radius: 100%;
    background: white;
    opacity: 0.2;
}

.swiper-pagination-bullet-active {
    opacity: 1;
}

@media (max-width: 768px) {
    .back__index {
        width: 2.5rem;
    }
}