.games__warpper {
}

.games__warpper .swiper-wrapper {
    align-items: stretch !important;
}
.games_card {
    height: unset !important;
    max-width: 190px;
    aspect-ratio: 1/0.8;
    border-radius: var(--brad);
    overflow: hidden;
    cursor: pointer;
}
.games_card:hover::after {
    opacity: 1;
}
.games_card::after {
    transition: 0.4s all cubic-bezier(0.075, 0.82, 0.165, 1);
    opacity: 0;
    width: 100%;
    height: 100%;
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    background-color: rgba(0, 0, 0, 0.45);
    background-image: url("../assets/img/play.svg");
    background-repeat: no-repeat;
    background-position: center;
}

@media (max-width: 768px) {
    .games_card {
        max-width: 135px;
    }
}
