.carousel
{
    position: relative;
    height: 73vh;
    width: 100vw;
    margin-top: -3vh;
    border-radius: 10%;
}

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

.carousel__track-container
{
    height: 100%;
    position: relative;
    overflow: hidden;
    position: relative;
}

.carousel__track
{
    padding: 0;
    margin: 0;
    list-style: none;
    position: relative;
    height: 100%;
    transition: transform 250ms ease-in;
}

.carousel__slide
{
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
}

.carousel__button
{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: 0;
    cursor: pointer;
    color: antiquewhite;
}

.carousel__button--left
{
    color: transparent;
    font-weight: 0;
}

.carousel__button--right
{
    color: transparent;
    font-weight: 0;
}

.carousel__nav  
{
    display: flex;
    justify-content: center;
    padding: 18px 0;
    margin-top: -5vh;
}

.carousel__indicator
{
    border: 0;
    border-radius: 50%;
    width: 10px;
    height: 10px;
    background:rgba(0, 0, 0, 0.879);
    margin: 0 10px;
    cursor: pointer;
    z-index: 15;
}

.carousel__indicator.current-slide
{
    background: antiquewhite;
}

@media (max-width: 800px) 
{
	.carousel
    {
        position: relative;
        height: 73vh;
        width: 100vw;
        margin-top: 2vh;
        border-radius: 10%;
    }
}