
.hp-links {
    display: block;
}

.hp-link {
    display: block;
    margin: 0 auto 20px auto;
    align-items: center;
    text-align: center;
    line-height: 170px;
    max-width: 170px;
    min-width: 170px;
    height: 170px;
    border-radius: 100%;
    background: var(--aesc-green-a50);
    box-shadow: 0 0 6px #00000032;
    color: #ffffff;
    text-transform: uppercase;
    transition: all .3s ease;
}

.hp-link > span {
    flex: 1;
    line-height: 1.5;
    text-align: center;
    font-size: 20px;
}

.hp-link:hover {
    background: var(--aesc-green-a80);
}
.hp-link:hover > span {
    text-decoration: underline;
}


@media screen and (min-width: 992px) {
    .hp-links {
        display: flex;
        justify-content: space-evenly;
        align-items: center;
        margin: 40px 0 0 0;
    }

    .hp-link {
        flex: 1;
        display: flex;
        margin: auto;
    }
}
