.enlaces {
    width: 100% !important;
    margin: auto;
    max-width: 1700px !important;
    scroll-margin-top: 100px;
    margin-top: 40px;
}

.enlaces .items {
    margin-top: 20px;
    text-align: center;
    display: grid;
    row-gap: 35px;
    grid-template-columns: repeat(5, 1fr);
    grid-auto-rows: auto;
    justify-content: space-between;
    align-items: center;
}

.enlaces .items a {
    margin: auto;
}

.enlaces .items a img {
    width: 200px;
}

@media screen and (max-width: 1100px) {
    .enlaces .items {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 700px) {
    .enlaces .items {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 500px) {
    .enlaces .items {
        grid-template-columns: repeat(1, 1fr);
    }
}