/* About */
.about {
    background: var(--secondary);
    padding: 50px 0px;
}

.about-div {
    display: grid;
    align-items: start;
    justify-content: space-between;
    margin: auto;
}

.about-left h1 {
    color: var(--main);
    font-weight: var(--fw-xxxl);
    text-transform: uppercase;
}

.about-left h1 span {
    color: var(--text-primary);
}

.about-right h5 {
    color: var(--text-primary);
    font-weight: var(--fw-lg);
    margin-bottom: 10px;
}

.about-right h6 {
    color: var(--text-secondary);
    font-weight: var(--fw-md);
    margin-bottom: 10px;
}

/* Sponsor Card */
.sponsor {
    background: var(--bg);
    padding: 50px 0px;
}

.sponsor-div {
    margin: auto;
}

.sponsor-group {
    display: grid;
    align-items: start;
    justify-content: space-between;
    gap: 15px;
}

.sponsor-card {
    background: var(--secondary);
    border-radius: 10px;
    height: 100%;
    padding: 15px;
    transition: var(--transition);
}

.sponsor-top {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.sponsor-top h4 {
    color: var(--text-dark);
    font-weight: var(--fw-lg);
    margin-bottom: 0px;
}

.sponsor-bottom h6 {
    color: var(--text-secondary);
    font-weight: var(--fw-md);
    margin-bottom: 0px;
}

.sponsor-card:hover {
    background: var(--yellow);
}

.sponsor-card:hover .sponsor-top h4,
.sponsor-card:hover .sponsor-bottom h6 {
    color: var(--text-primary);
}

@media screen and (min-width: 1098px) {

    /* About */
    .about-div {
        width: 85%;
        grid-template-columns: repeat(2, 1fr);
    }

    .about-left h1 {
        font-size: 60px;
    }

    .about-right h5 {
        font-size: 18px;
    }

    .about-right h6 {
        font-size: 16px;
    }

    /* Sponsor Card */
    .sponsor-div {
        width: 85%;
    }

    .sponsor-group {
        grid-template-columns: repeat(4, 1fr);
    }

    .sponsor-top h4 {
        font-size: 18px;
    }

    .sponsor-bottom h6 {
        font-size: 16px;
    }
}

@media screen and (min-width: 767px) and (max-width: 1098px) {
    
    /* About */
    .about-div {
        width: 90%;
        grid-template-columns: repeat(2, 1fr);
    }

    .about-left h1 {
        font-size: 50px;
    }

    .about-right h5 {
        font-size: 16px;
    }

    .about-right h6 {
        font-size: 14px;
    }

    /* Sponsor Card */
    .sponsor-div {
        width: 90%;
    }

    .sponsor-group {
        grid-template-columns: repeat(4, 1fr);
    }

    .sponsor-top h4 {
        font-size: 16px;
    }

    .sponsor-bottom h6 {
        font-size: 14px;
    }
}

@media screen and (max-width: 767px) {
    
    /* About */
    .about-div {
        width: 95%;
        grid-template-columns: repeat(1, 1fr);
        row-gap: 15px;
    }

    .about-left h1 {
        font-size: 40px;
    }

    .about-right h5 {
        font-size: 16px;
    }

    .about-right h6 {
        font-size: 14px;
    }

    /* Sponsor Card */
    .sponsor-div {
        width: 95%;
    }

    .sponsor-group {
        grid-template-columns: repeat(1, 1fr);
        row-gap: 15px;
    }

    .sponsor-top h4 {
        font-size: 16px;
    }

    .sponsor-bottom h6 {
        font-size: 14px;
    }
}