.caraousel-inner .img-wrapper {
    max-width: 100%;
    height: 28vw;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.carousel-item img {
    max-width: 100%;
    max-height: 100%;
    
}

@media screen and (min-width:770px) {
    .carousel-inner {
        display: flex;
    }

    .carousel-item {
        display: block;
        margin-right: 0;
        flex: 0 0 calc(100%/3);
    }
}

.carousel-inner {
    padding: 1em;
}

.card {
    
    display: block;
    margin: 0 auto;
    max-width: 280px;
    /* max-width: auto; */
    /* max-height: 400px; */
    border-radius: 4px;
    box-shadow: 0 2px 6px rgba(100, 95, 136, 0.16);
    /* overflow: hidden;
    text-overflow: ellipsis; */

}

.carousel-control-prev,
.carousel-control-next {
    width: 6vh;
    height: 6vh;
    background-color: #e1e1e1;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

.centered {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff;
    text-align: center;
    font-weight: bold;
    font-size: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    /* Adjust the shadow properties as needed */
}

@media screen and (min-width:576px){
    .centered {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: #ffffff;
        text-align: center;
        font-weight: bold;
        font-size: 35px;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        /* Adjust the shadow properties as needed */
    }
}

.shadow-inner {
    box-shadow: 500px 500px 500px 100px rgba(0, 0, 0, 0.5) inset;
    /* Change the values as needed */
}

.image-container {
    position: relative;
    display: inline-block;
}

.image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    /* Adjust the shadow values as needed */
    z-index: 1;
    /* Ensure the shadow is on top of the image */
}