.tabs-games .tabs__head {
    display: grid;
    gap: 8px;
    grid-template-columns: repeat(4, 1fr);
    margin-bottom: 40px;
}
.tabs-games .tabs__head-item {
    display: flex;
    gap: 8px;
    justify-content: center;
    align-items: center;
    border: none;
    outline: none;
    padding: 12px;
    border: 2px solid transparent;
    border-radius: var(--border-radius);
    font-weight: 700;
    background-color: var(--color-light);
    transition: 0.3s;
}
.tabs-games .tabs__head-item:hover {
    background-color: #ffffff1a;
}
.tabs-games .tabs__head-item--active {
    border: 2px solid #fff;
}
.tabs-games .tabs__head-item use {
    fill: #5c5c68;
    transition: 0.3s;
}
.tabs-games .tabs__head-item:hover use {
    fill: #fff;
}
.tabs-games .tabs__content .tabs__game {
    display: flex;
    gap: 8px;
    flex-flow: column;
    align-items: center;
}
.tabs__head-item img{
    display: block;
    width: 24px;
    height: 24px;
}
@media (hover: hover) {
    .tabs-games .tabs__content .tabs__game:hover .tabs__game-image {
        transform: scale(1.07);
    }
}
.tabs__game-picture {
    border-radius: var(--border-radius);
    overflow: hidden;
}
.tabs-games .tabs__content .tabs__game .tabs__game-image {
    display: block;
    width: 100%;
    transition: 0.3s;
}
/* .tabs-games .tabs__content:last-child {
}
.tabs-games .tabs__content:last-child .tabs__game {
    position: relative;
    align-items: flex-start;
    padding: clamp(20px, 2.778vw, 40px);
    border-radius: var(--border-radius);
    overflow: hidden;
} */
/* .tabs-games .tabs__content:last-child .tabs__game:nth-child(1) {
    background: linear-gradient(135deg, #32ca4e 0%, #a7ffb7 100%);
}
.tabs-games .tabs__content:last-child .tabs__game:nth-child(2) {
    background: linear-gradient(135deg, #dd3100 0%, #ffb599 100%);
}
.tabs-games .tabs__content:last-child .tabs__game:nth-child(3) {
    background: linear-gradient(135deg, #93bf00 0%, #dfff73 100%);
}
.tabs-games .tabs__content:last-child .tabs__game:nth-child(4) {
    background: linear-gradient(135deg, #12c5ed 0%, #a1eeff 100%);
}
.tabs-games .tabs__content:last-child .tabs__game:nth-child(5) {
    background: linear-gradient(135deg, #be6f24 0%, #fabe85 100%);
}
.tabs-games .tabs__content:last-child .tabs__game:nth-child(6) {
    background: linear-gradient(135deg, #0d8f4f 0%, #7beeb6 100%);
}
.tabs-games .tabs__content:last-child .tabs__game:nth-child(7) {
    background: linear-gradient(135deg, #d02828 0%, #ffbdbd 100%);
}
.tabs-games .tabs__content:last-child .tabs__game:nth-child(8) {
    background: linear-gradient(135deg, #9d26ff 0%, #e0acff 100%);
} */

/* .tabs-games .tabs__content:last-child .tabs__game .tabs__game-image {
    position: absolute;
    bottom: -25%;
    right: -25%;
} */
.tabs-games .tabs__content .tabs__game .tabs__game-title {
    font-weight: 700;
}
/* .tabs-games .tabs__content:last-child .tabs__game .tabs__game-title {
    position: relative;
    font-size: clamp(22px, 2.083vw, 30px);
    line-height: 120%;
    font-weight: 700;
    z-index: 5;
} */

@media screen and (max-width: 992px) {
    .tabs-games .tabs__head {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .tabs__content.show {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 576px) {
    .tabs-games .tabs__head-item .counter {
        display: none;
    }
    .tabs__content.show {
        grid-template-columns: repeat(2, 1fr);
    }
}


.faq__item-title {
    font-size: 20px;
    line-height: 24px;
    font-weight: 700;
}

.reviews > .container {
    display: grid;
    gap: 32px;
    grid-template-columns: auto 1fr;
    padding: clamp(16px, 2.222vw, 32px);
    border-radius: 24px;
    background-color: var(--color-light);
}
.reviews__picture {
    width: 100%;
    max-width: 190px;
    height: 100%;
    max-height: 190px;
    border-radius: 12px;
    overflow: hidden;
}
.reviews__name {
    display: flex;
    align-items: center;
}
.reviews__name-text {
    font-size: 20px;
    line-height: 120%;
    font-weight: 700;
}
.reviews__job {
    margin-bottom: 0;
}

@media screen and (max-width: 768px) {
    .reviews > .container {
        grid-template-columns: 1fr;
        justify-items: center;
    }
}

@media screen and (max-width: 430px) {
    .reviews__picture {
        max-width: 100%;
        max-height: 100%;
    }
}
