.top_banners_middle{
    display: grid !important;
    gap: 20px;
    margin-bottom: 20px;
    grid-template-columns: repeat(3, 1fr);
}
.top_banners-item{
    aspect-ratio: 1/1;
    overflow: hidden;

}
.top_banners-item:hover img{
    transform: scale(1.05);

}
.top_banners-item img{
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    width: 100%;
    height: 100%;
    transition: 0.3s ease;
}

@media (max-width: 767.98px){
    .top_banners_middle{
        display: flex !important;
        gap: 20px;
        justify-content: center;
        flex-wrap: wrap;

    }
    .top_banners-item{
        flex: 0 0 calc(50% - 10px);
    }
}