.fixed-aspect-ratio-image-grid .card{
    overflow: hidden;
}

.fixed-aspect-ratio-image-grid .card .card-background-image{
    background-size: cover; 
    background-position: center center;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    transition: transform 0.2s;
}

.fixed-aspect-ratio-image-grid .card .card-img-overlay{
    top: calc(100% - 85px);
    background-color: rgba(40, 40, 40, 0.8);
    font-size: 18px;
    line-height: 1.3;
    color: #fff;
}

.fixed-aspect-ratio-image-grid .card .card-img-overlay .card-title{
    text-transform: uppercase;
}

.fixed-aspect-ratio-image-grid .card img{
    transition: all 0.2s;
}

.fixed-aspect-ratio-image-grid .card:hover  .card-background-image{
    transform: scale(1.2);
}

.fixed-aspect-ratio-image-grid.ar-4-3 .card{
    padding-top: 133%; 
}

.carousel-main .carousel-item{
    max-height: 100vh;
}