#carousel{
    background-image: url(media/carousel-bg.png);
    background-size: cover;
    background-position: center;
    color: #fff;
    max-width: 800px;
    width: 60%;
    overflow: hidden;
}
.carousel-inner, .carousel-item{
    height: 100% !important;
}
.carousel-caption{
    bottom: auto;
    top : 70vh;
    padding-top: 0 !important;
    top : calc(var(--vh, 1vh) * 70);
}
.carousel-item img{
    max-height: 50vh;
    max-height: calc(var(--vh, 1vh) * 50);
    width: auto !important;
    margin: 15vh auto 20vh;
    margin: calc(var(--vh, 1vh) * 15) auto calc(var(--vh, 1vh) * 20);
}
.carousel-item h5{
    font-size: 24px;
    line-height: 1.5;
    margin: 0 auto 10px;
    max-width: 80%;
}
.carousel-item p{
    font-size: 16px;
    line-height: 20px;
    margin: 0 auto;
    max-width: 70%;
}
.carousel-indicators{
    bottom: auto !important;
    top : calc(99vh - 14px);
    top : calc(var(--vh, 1vh) * 99 - 14px);
}
.carousel-indicators [data-bs-target]{
    height : 14px !important;
    width: 14px !important;
    border-radius: 10px !important;
    opacity: 1 !important;
    box-sizing: border-box !important;
    background-clip: border-box !important;
    border: 0px solid !important;
}
.carousel-indicators .active{
    background-color: #047361 !important;
}
.carousel-circle{
    height: 40vh;
    height: calc(var(--vh, 1vh) * 40);
    width: 40vh;
    width: calc(var(--vh, 1vh) * 40);
    border-radius: 20vh;
    border-radius: calc(var(--vh, 1vh) * 20);
    left : 50%;
    margin-left: -20vh;
    margin-left: calc(var(--vh, 1vh) * -20);
    top: 20vh;
    top: calc(var(--vh, 1vh) * 20);
    position: absolute;
    background-color: #fff;
    opacity: 0.2;
    box-shadow: 0px 4px 8px rgba(93, 99, 112, 0.15);
}
.carousel-control-next, .carousel-control-prev{
    top: 71vh !important;
    top : calc(var(--vh, 1vh) * 71) !important;
    height:32px !important;
    opacity: 1 !important;
}
@media (max-width : 1091px){
    #carousel{
        width: 50%;
    }
}
@media (max-width : 767px){
    #carousel{
        display: none;
    }
}