#carousel {
    display: block;
}

#carousel .carousel-indicators {
    background-color: rgba(0, 0, 0, .6);
    margin: 0;
    bottom: 0;
}

#carousel .carousel-indicators li {
    border: 1px solid white;
    background-image: url("../../img/redTangle.png");
}

#carousel .carousel-indicators li:not(.active) {
    opacity: .5;
    background-image: url("../../img/grayTangle.png");
}

#carousel .carousel-indicators li img {
    /* transition-property: display; */
    /* display: unset; */
    opacity: 1;
    visibility: visible;
    height: 15vh;
}

#carousel .carousel-indicators li:not(.active) img {
    /* display: none; */
    opacity: 0;
    visibility: hidden;
    transition: all .6s;
    height: 15vh;
}

#carousel .carousel-item .bgcover {
    display: inline-block;
    width: 100vw;
}

#carousel .carousel-item .carousel-caption {
    text-shadow: 1px 1px 2px black;
}

#carousel.carousel1,
#carousel.carousel1 .carousel-item .bgcover {
    height: 56.25vw;
    max-height: 100vh;
}



@media all and (min-width:768px) {
    #carousel:not(.carousel1) {
        height: calc(40.25vw + 60px);
        max-height: 100vh;
    }

    #carousel:not(.carousel1) .carousel-item .bgcover {
        height: 40.25vw;
        max-height: calc(100vh - 120px);
    }

    #carousel .carousel-indicators {
        padding: 2rem 0;
    }

    #carousel .carousel-indicators li {
        height: 72px;
        width: 128px;
    }

    #carousel .carousel-control-next,
    #carousel .carousel-control-prev {
        bottom: 120px;
    }
}



@media all and (max-width:767px) {
    #carousel:not(.carousel1) {
        height: calc(56.25vw + 60px);
        max-height: 100vh;
    }

    #carousel:not(.carousel1) .carousel-item .bgcover {
        height: 62.25vw;
        max-height: calc(100vh - 60px);
    }

    #carousel .carousel-indicators {
        padding: 1rem 0;
    }

    #carousel .carousel-indicators li {
        height: 36px;
        width: 64px;
    }

    #carousel .carousel-item .carousel-caption {
        padding-bottom: 0;
    }

    #carousel .carousel-item h3 {
        font-size: 1.5rem;
    }

    #carousel .carousel-item h5 {
        font-size: .75rem;
    }

    #carousel .carousel-control-next,
    #carousel .carousel-control-prev {
        bottom: 60px;
    }
}