.carousel {
    width: 100%;
    height: 87dvh;
    overflow: hidden;
    position: relative;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.slide {
    min-width: 100%;
    height: 87dvh;
}

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

.carousel .btn-carousel {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    aspect-ratio: 1;
    height: 5dvh;
    color: #f1f1f1;
    z-index: 10;
    font-size: 5dvh;
}

.carousel .overlay-tint {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(29, 52, 82, 0.7);
}

.carousel .btn-carousel-prev {
    left: 2dvw;
}

.carousel .btn-carousel-next {
    right: 2dvw;
}