.players-also-like-section {
    padding-top: 50px;
    padding-bottom: 50px;
    display: block;
    text-align: center
}

.players-also-like-section h2 {
    margin-bottom: 20px;
    font-weight: bold;
}

.players-also-like-section ul {
    padding-left: 0;
    display: grid;
    grid-gap: 18px;
    justify-content: center;
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 1fr;
    list-style-type: none;
}

.players-also-like-section li {
    max-height: 300px;
    height: 100%;
}

.players-also-like-section a {
    height: 100%;
    color: #252525!important;
    margin: 0;
    border: 1px solid #CE151F;
    border-radius: 5px;
    padding: 10px 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 15px;
    font-weight: 700;
    line-height: 20px;
    cursor: pointer;
}

.players-also-like-section .box-holder {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.players-also-like-section .box-holder a {
    border: 1px solid var(--main-color);
    border-radius: 5px;
    padding: 10px 15px;
    margin: 0 10px;
    font-size: 15px;
    font-weight: bold;
    color: #252525 !important;
    line-height: 20px;
    display: flex;
    justify-content: center;
    cursor: pointer;
}

@media only screen and (min-width: 600px) and (max-width: 1000px) {    
    .players-also-like-section ul {
        display: flex;
    }

    .players-also-like-section .box-holder {
        flex-direction: column;
    }

    .players-also-like-section .box-holder p {
        width: 100%;
        display: block;
    }
}

@media only screen and (max-width: 600px) {
    .players-also-like-section ul {
        display: flex;
    }

    .players-also-like-section .box-holder p {
        width: 100%;
        display: block;
    }
}
