.quick-links__wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    /* gap: 0 2px; */
    justify-content: space-between;
}

.quick-links__item {
    /* width: calc(33.33% - 2px); */
    width: 33.2%;
}

.quick-link {
    background: var(--navy);
    text-decoration: none;
    border: none;
    width: 100%;
    height: 100px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: var(--white);
    border-radius: 3px;
}

.quick-links__item:first-child .quick-link {
    border-radius: 0 3px 3px 0
}

.quick-links__item:last-child .quick-link {
    border-radius: 3px 0 0 3px
}

.quick-link__icon {
    font-size: 2.0625rem;
    font-weight: normal;
    line-height: 1em;
    color: var(--gold);
    width: 100%;
    text-align: center;
}

.quick-link__info {
    width: 100%;
    text-align: center;
}

.quick-link__info span {
    color: var(--white);
    font-size: 1rem;
    line-height: 1.2em;
    font-weight: 500;
    margin-top: 0;
    display: none;
}

.quick-link__info h4 {
    margin: 0;
    padding: 0;
    color: var(--white);
    font-size: 1rem;
    line-height: 1.2em;
    font-weight: 700;
    margin-top: 6px;
    text-transform: uppercase;
    font-family: "Montserrat", sans-serif;
}


@media (min-width: 768px) {
    .quick-link {
        height: 85px;
        flex-direction: row;
        gap: 10px;
    }

    .quick-link__icon {
        width: auto;
        text-align: left;
    }

    .quick-link__info {
        width: auto;
        text-align: left;
    }

    .quick-link__info span {
        display: block;
    }

    .quick-link__info h4 {
        font-size: 1.25rem;
        margin-top: 0;
    }
    
}

@media (min-width: 1200px) {
    .quick-links__wrap {
        gap: 0 3px;
    }

    .quick-links__item {
        width: calc(33.33% - 2px);
    }

    .quick-link {
        height: 138px;
        gap: 0 20px;
    }

    .quick-link__icon {
        font-size: 3.4375rem;
    }

    .quick-link__icon .icon-meet {
        font-size: 3.8125rem;
    }

    .quick-link__icon .icon-location {
        font-size: 3.125rem;
    }

    .quick-link__info span {
        font-size: 1.375rem;
    }

    .quick-link__info h4 {
        font-size: 1.675rem;
        position: relative;
        padding-right: 45px;
    }

    .quick-link__info h4::after {
        content: "";
        position: absolute;
        right: 0;
        top: 50%;
        transform: translate(0, -50%);
        width: 35px;
        height: 4px;
        background: #DE8D00;
    }

    .quick-link:hover {
        background: #36618C;
    }

    .quick-link:hover .quick-link__icon {
        color: var(--white);
    }
    
}
