
.av-outro{
    background-color: var(--color-dark);
    color: var(--text-light);
}

@media (min-width: 1200px) {
    .av-outro {
        height: 100%;
        min-height: 700px;
        max-height: 1100px;
    }
}

.av-outro  .av-header a::after {
    content: '';
    width: 100%;
    height: 1px;
    margin-right: auto;
    margin-left: auto;
    position: absolute;
    left: 0;
    right: 0;
    bottom: -12px;
    background-color: var(--color-secondary);
    transition: width 700ms ease , opacity  2000ms ease-out;
    transform-origin: 50% 50%;
    border-radius: 2px;
}

.av-outro  .av-header a:hover::after {
    width:0;
    opacity: 0;
}

.av-outro-body {
    grid-template-columns: repeat(3, auto);
    row-gap: 40px;
}


@media (max-width:1199.98px) {
    .av-outro-body {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 479.98px) {
    .av-outro-copyright a {
        display: none;
    }
}