.carousel {
    position: relative;
    width: 80%;
    max-width: 1536px;
    aspect-ratio: 16 / 9;
    /* background-color: #00072d; */
    margin: 30px auto;
}

.carousel-item {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 300ms ease-out;
    transition-delay: 400ms;
}

.carousel-item:nth-child(1) {
    background-image: url("../images/mdsAppBanner.png");
    background-position: center;
    background-size: cover;
}

.carousel-item:nth-child(2) {
    background-image: url("../images/MedicalAppBanner.png");
    background-position: center;
    background-size: cover;
}

.carousel-item:nth-child(3) {
    background-image: url("../images/BillingAppBanner.png");
    background-position: center;
    background-size: cover;
}

.arrow {
    position: absolute;
    z-index: 10000;
    background-color: rgba(0, 0, 0, 1);
    height: 43px;
    width: 43px;
    bottom: .5em;
    color: #fff;
    font-size: 1.5em;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-content: center;
    cursor: pointer;
    opacity: .3;
    transition: 250ms ease-in-out;
    transform-origin: center;
}

.arrow:hover {
    opacity: 1;
    background-color: #FFBF00;
    transform: scale(1.1);
}

.arrow-ico {
    display: block;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.right-arrow {
    right: 1em;
}

.left-arrow {
    left: 1em;
}

.active-slide {
    opacity: 1;
}