/* Top links CSS Start */
.top-links {
    padding-top: 35px;
    padding-bottom: 72px;
    padding-left: 16px;
    padding-right: 16px;
    position: relative;
    overflow: hidden;
}
@media (min-width: 1024px) {
    .top-links {
    padding-top: 4.375rem;
    padding-bottom: 40px;
}
}
.top-links .container{
    position: relative;
    z-index: 2;
}

.top-links::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--light-blue);
    z-index: 1;
}

@media (min-width: 1024px) {
    .top-links::after {
        height: 21.688rem;
    }
}

.top-links .link-block {
    padding: 20px;
    background-color: var(--white);
    box-shadow: 0 0 1.25rem rgba(0, 0, 0, 0.1);
    font-family: var(--zf);
    font-size: 23px;
    font-weight: 700;
    line-height: 28px;
    height: 108px;
    display: flex;
    align-items: center;
    position: relative;
    color: var(--primary);
    text-decoration: none;
    width: 100%;
}

.top-links .link-block::after {
    content: "";
    background-image: url('icon-grid-arrow.svg');
    background-repeat: no-repeat;
    position: absolute;
    right: 15px;
    top: 15px;
    width: 0.875rem;
    height: 0.875rem;
}
.top-links .link-block:hover{
    box-shadow: 0 0 1.25rem rgba(0, 0, 0, 0.2);
}

/* Top links CSS End */
