.section-benefits-of-casino {
    max-width: 790px;
    width: 100%;
    box-sizing: border-box;
    margin: 30px auto;
}

.section-benefits-of-casino h2 {
    color: #1B1A25;
    margin-bottom: 30px;
    font-size: 29px;
    font-weight: 700;
    line-height: 35px;
}

.section-benefits-of-casino p {
    color: #4A4B54;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
}

.tab-wrapper {
    margin: 30px 0;
}

.tab-wrapper .benefits-tabs {
    display: flex;
    color: #1B1A25;
}

.tab-wrapper .benefits-tabs .benefits-item {
    max-width: 20%;
    background-color: #E9E9E9;
    margin-right: 14px;
    padding: 10px 37px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    line-height: 27px;
    transition: .3s;
    text-align: center;
    cursor: pointer;
    hyphens: auto;
    --webkit-hyphens: auto;
    word-break: break-word;
}

.tab-wrapper .benefits-tabs .benefits-item.active {
    background-color: #37269F;
    color: #FFFFFF;
}

.tab-wrapper .benefits-tabs .benefits-item:last-child {
    margin-right: 0;
}

.tab-wrapper .benefits-content {
    background-color: #F5F5F5;
    color: #5F5F5F;
    padding: 35px 40px 35px 45px;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
}

.tab-wrapper .benefits-content .benefits-item {
    display: none;
}

.tab-wrapper .benefits-content .benefits-item.active {
    display: block;
    animation: tab-content-active .3s linear 0s 1;
}

@keyframes tab-content-active {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@media only screen and (min-width: 600px) and (max-width: 1000px) {
    .tab-wrapper .benefits-tabs {
        display: flex;
        color: #1B1A25;
        hyphens: auto;
        --webkit-hyphens: auto;
        flex-wrap: wrap;
    }

    .tab-wrapper .benefits-tabs .benefits-item {
        max-width: unset;
        background-color: #E9E9E9;
        margin-right: 14px;
        padding: 10px 37px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 16px;
        font-weight: 700;
        line-height: 27px;
        transition: .3s;
        text-align: center;
        cursor: pointer;
        margin-bottom: 14px;
        text-align: center;
    }
}

@media only screen and (max-width: 600px) {
    .section-benefits-of-casino {
        padding: 0 10px;
    }

    .section-benefits-of-casino p {
        font-size: 16px;
        line-height: 27px;
    }

    .tab-wrapper .benefits-tabs {
        display: grid;
        grid-gap: 14px;
    }

    .tab-wrapper .benefits-tabs .benefits-item {
        max-width: unset;
        width: 100%;
        margin-right: 0;
    }

    .tab-wrapper .benefits-content {
        margin-top: 20px;
        padding: 35px 25px 35px 30px;
    }
}
