:root {
    --bg-controls: #19197B;
    --bg-buttons: #19197B;
}

.carousel-img {
    position: absolute;
    right: 0;
    width: 100%;
    height: 90vh;
}

.carousel-img-desktop {
    display: none;
}

.carousel-item {
    height: 80vh;
}

.carousel-caption {
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 768px) {

    .carousel-item {
        height: 110vh;
    }

    .carousel-img {
        display: none;
    }

    .carousel-img-desktop {
        display: block;
        position: absolute;
        right: 0;
        width: 100%;
        height: 110vh;
    }
}

.carousel-caption .btn {
    background-color: var(--bg-buttons);
}

.carousel-control-prev .btn, .carousel-control-next .btn  {
    background-color: var(--bg-controls);
    position: absolute;
    top: 3;
}

.carousel-control-prev {
    margin-left: 1rem;
}


.carousel-control-next  {
    margin-right: 1.5rem;
}