.carousel{
    height: 90vH;
    width: 100vw;
    /* margin-top: 40px; */
    margin-bottom: 40px;
    /* max-width: 678px; */
    overflow-x: hidden;
    position: relative;
    display: flex;
    justify-content: flex-start;
    /* border-radius: 13px; */
}


.carousel-inner{
    height: 100%;
    /* min-width: 400%; */
    display: flex;
    transition: all ease .5s;
}

.carousel-item{
    flex: 1;
    height: 85vH;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-size: cover;
}

.carousel-item h1{
    opacity: .5;
}

.carousel-controls .prev{
    font-family: "Font Awesome 6 Free";
    font-style: normal;
    display: inline-block;
    height: 32px;
    width: 32px;
    padding-top: 6px;
    position: absolute;
    left: 1%;
    top: 50%;
    transform: translateY(-50%);
    /* background-image: url('prev.svg'); */
    background-color: white;
    background-position: center;
    background-size: auto 100%;
    background-repeat: no-repeat;
    cursor: pointer;
    opacity: .5;
}

.carousel-controls .next{
    font-family: "Font Awesome 6 Free";
    font-style: normal;
    display: inline-block;
    height: 32px;
    width: 32px;
    padding-top: 6px;
    position: absolute;
    right: 2%;
    top: 50%;
    transform: translateY(-50%);
    /* background-image: url('next.svg'); */
    background-color: white;
    background-position: center;
    background-size: auto 100%;
    background-repeat: no-repeat;
    cursor: pointer;
    opacity: .5;
}

.prev:hover, .next:hover{
    opacity: 1;
}

.carousel-indicators{
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

.carousel-indicators span{
    display: inline-block;
    background-color: darkgray;
    width: 30px;
    height: 6px;
    border-radius: 3px;
    opacity: .8;
    cursor: pointer;
    margin: 3px;
}

.carousel-indicators span.active{
    opacity: 1;
    width: 30px;
    height: 6px;
    margin: 3px;
    background-color: #df790d;
}
