.carousel .dots-container {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    right: 1.25vw;
    z-index: 2000;
    display: none;
}

.carousel .dots {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.carousel .dots li {
    width: 16px;
    height: 16px;
    margin: 16px 0;
}

.carousel .dots li.on svg {
    fill: #1d1d1b;
    fill-opacity: 1;
}

.carousel .carousel-images {
    margin: 0;
    list-style-type: none;
    margin-bottom: 70px;
    width: 100vw;
    height: 100%;
}

.carousel .carousel-images li {
    position: relative;
    width: 100vw;
    padding-bottom: 56.25%;
    background-repeat: no-repeat;
    background-size: cover;
}

.carousel .carousel-images li span {
    display: block;
    position: absolute;
    top: 0; left: 0;
    width: 100%;
}

.carousel .dots li svg {
    fill-opacity: 0.6;
    fill: #9c9b9b;
    -webkit-transition: fill 250ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
    -moz-transition: fill 250ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
    transition: fill 250ms cubic-bezier(0.455, 0.03, 0.515, 0.955);

    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.carousel .carousel-images li .content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

@media (min-width: 768px) {
    .carousel .dots-container {
        display: block;
    }
}

@media (min-width: 1920px) {
    .carousel .carousel-images li {
        width: 1920px;
        height: 1080px;
        padding: 0;
    }
}

@media (max-width: 1023px) and (min-width: 768px) {
    .carousel .carousel-images {
        margin-bottom: 200px;
    }
}
