.quick-links ul {
    display: flex;
    margin: 0;
    padding: 0;
    flex-direction: column;
    list-style: none;
    gap: 10px;
}

.quick-links ul > li > a {
    font-family: 'Nunito Sans';
    font-weight: 800;
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #6b8080;
    font-size: 1rem;
}

.development_team--heading, .awards--heading {
    text-align: center;
    margin-bottom: 2rem;
}

.awards--heading h2 {
    color: #fff;
}

.development_team--list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    row-gap: 2rem;
    column-gap: 2rem;
}

.awards--list {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    row-gap: 2rem;
    column-gap: 2rem;
    text-align: center;
}

.development_team--list h4, .awards--item h3 {
    font-family: 'Nunito Sans';
    font-size: 15px !important;
    font-weight: 800 !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0;
    padding-bottom: 0;
}

.awards--item h3 {
    color: #ecf0f0;
}

.development--item, .awards--item p {
    color: rgb(107, 128, 128);
    font-size: 15px;
    font-weight: 600;
}


.awards--item p {
    color: #6b8080;
}

@media(max-width: 768px) {

    .development_team--heading {
        text-align: center;
        margin-bottom: 2rem;
    }

    .development_team--list {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 1rem;
    }

}


@media(max-width: 480px) {
    .development_team--list {
        grid-template-columns: 1fr;
        row-gap: 1rem;
    }

}
