.bannerGrid_row{
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.bannerGrid_col{
    padding: 15px;
    width: 33.33%;
}

.bannerGrid_item{
    display: block;
    padding-top: 121.92%;
    position: relative;
    overflow: hidden;
}

.bannerGrid_img{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
    transition: .3s;
}

.bannerGrid_dark{
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.30);
}

.bannerGrid_text{
    position: absolute;
    width: 100%;
    bottom: 0;
    padding: 20px 28px;
    color: #fff;
}

.bannerGrid_name{
    font-size: 30px;
    font-weight: 500;
    margin: 0;
}

.bannerGrid_subtitle{
    font-size: 18px;
    font-weight: 400;
    margin: 0;
}

.bannerGrid_item:hover .bannerGrid_img{
    transform: scale(1.3);
}

@media (max-width: 992px) {
    .bannerGrid_row{
        flex-wrap: nowrap;
        overflow-x: auto;
    }

    .bannerGrid_col{
        width: 250px;
        flex: none;
    }
}