.link-items_row {
    gap: .375rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.link-items-item {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 1rem;
    color: #052E44;
    font-weight: 600;
    background-color: #ECF4FD;
    border-radius: 0.375rem;
    transition: 0.5s;
    line-height: 1.5;
    width: calc(16.667% - 5px);
    flex: 0 0 calc(16.667% - 5px);
    min-height: 4rem;
    padding: 0.5rem;
}

.link-items-item.hasLink:hover a {
    color: #fff;
}

.link-items-item.hasLink:hover {
    color: #fff;
    background-color: #052E44;
}

a.link-items-item-inner {
    text-decoration: underline;
    color: #052E44;
    transition: 0.5s;
}

@media (max-width:1399.98px) {
    .link-items-item {
        width: calc(20% - 4.8px);
        flex: 0 0 calc(20% - 4.8px);
    }
}

@media (max-width:1199.98px) {
    .link-items-item {
        width: calc(25% - 4.5px);
        flex: 0 0 calc(25% - 4.5px);
    }
}

@media (max-width:991.98px) {}

@media (max-width:767.98px) {
    .link-items-item {
        width: calc(33.333% - 4px);
        flex: 0 0 calc(33.333% - 4px);
    }
}

@media (max-width:575.98px) {
    .link-items-item {
        width: calc(50% - 3px);
        flex: 0 0 calc(50% - 3px);
    }
}