* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    font-family: "Poppins";
}

/* styled sheet */
.container {
    max-width: 1280px;
    margin: auto;
}

.btn {
    font-size: 20px;
    font-weight: medium;
    color: #FFFFFF;
    padding: 15px 25px;
    background-color: #DD0000;
    border-radius: 5px;
    border: none;
}

/* banner section */
.banner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 51px;
    background-color: #161616;
    border-radius: 30px;
    margin: 50px auto;
}

.banner-left {
    padding-left: 125px;
    max-width: 50%;
}

.banner-right {
    padding-right: 17px;
    max-width: 50%;
}

.banner-right img {
    display: block;
    padding-top: 33px;
}

.banner h2 {
    font-size: 70px;
    font-weight: 600;
    color: #FFFFFF;
    line-height: 70px;
}

.banner p {
    color: #FFFFFF;
    margin-top: 20px;
    margin-bottom: 30px;
}

/* upcoming-matches */
.upcoming-matches {
    display: flex;
    padding: 150px 0;
    gap: 50px;
}

.upcoming-matches-left {
    background-color: black;
    width: 25%;
    display: flex;
    flex-direction: column;
    gap: 15px;
    border-radius: 8px;
    padding: 15px;
    height: fit-content;
}

.upcoming-matches-left .btn:nth-child(1),
.upcoming-matches-left .btn:nth-child(2) {
    background-color: white;
    color: black;
}


.upcoming-matches-right {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.card {
    border: 1px solid rgb(232, 232, 232);
    border-radius: 10px;
}
.card-body{
    padding: 20px;
}
.card img {
    width: 100%;
    height: 175px;
    border-radius: 10px 10px 0 0;
}
.card button {
    padding: 4px 16px;
    border-radius: 8px;
    margin-top: 20px;
    margin-bottom: 15px;
}

.card-icon {
    color: #161616;
    margin-top: 20px;
    margin-bottom: 20px;
}


/* tab responsive */
@media screen and (max-width: 992px) {
    .upcoming-matches{
        flex-direction: column;
    }
    .upcoming-matches-left {
        flex-direction: row;
        width: 100%;
        background-color: transparent;

    }
    .upcoming-matches-left *{
        flex: 1;
    }
    .upcoming-matches-left .btn {
        border: 1px solid rgb( 232, 232, 232);
    }

}