.quick-links {
    position: relative;
}

.quick-links__top-content h3 {
    color: var(--blue);
}

.bg-navy-blue .quick-links__top-content h3 {
    color: #fff;
}

.quick-links-item {
    margin-bottom: 8px;
}

.quick-link {
    margin: 0;
    padding: 0 62px 0 24px;
    width: 100%;
    height: 91px;
    background: var(--lightest-blue);
    border-radius: 24px 0 0 0;
    display: flex;
    align-items: center;
    font-size: 16px;
    color: var(--dark-blue);
    line-height: 1.5em;
    font-weight: 700;
    border: none;
    position: relative;
}

.quick-links.bg-light-blue .quick-link {
    background: #fff;
}

.quick-link:before {
    content: '\e901';
    font-family: 'synergy-business-icon';
    position: absolute;
    top: 50%;
    right: 24px;
    font-size: 22px;
    line-height: 1em;
    font-weight: normal;
    -webkit-transform: translate(0, -50%);
            transform: translate(0, -50%);
}


@media( min-width: 768px ) {
    .quick-links__wrap .row {
        --bs-gutter-x: 16px;
    }

    .quick-links-item {
        margin: 8px 0;
    }
    
    .quick-link {
        padding: 0 62px 0 24px;
        height: 92px;
        font-size: 18px;
        line-height: 1.22em;
    }
    
}

@media( min-width: 1200px ) {
    .quick-links__wrap .row {
        --bs-gutter-x: 24px;
    }

    .quick-links-item {
        margin: 24px 0 0 0;
    }
    
    .quick-link {
        padding: 0 62px 0 24px;
        height: 96px;
        font-size: 20px;
        line-height: 1.2em;
    }

    .quick-links.bg-light-blue .quick-link:hover,
    .quick-link:hover {
        background: var(--light-blue);
    }
    
}