/* @group Big Links List
------------------------------------ */

.big-links-list ul li {
    padding-block: 2.5rem;
    border-bottom: 1px solid var(--tower-grey);
    color: var(--tower-red);
    --fs: 2.5rem;
    --lh: normal;
    --ls: .008em;
}
.big-links-list ul li:first-of-type {
    border-top: 1px solid var(--tower-grey);
}
.big-links-list ul li a {
    text-decoration: underline;
}

@media only screen
and (min-width : 961px) {
    .big-links-list ul li {
        --fs: 2rem;
        --ls: .0057em;
    }
}
@media only screen
and (min-width : 961px)
and (max-width : 1440px) {
}
@media only screen
and (min-width : 0)
and (max-width : 960px) {
}

/* @end */


/* Animations
------------------------------------ */
:where(#wrapper) .contenedor .elemento {
	opacity: 0;
	--duration: 1s;
}
:where(#wrapper) .contenedor.animateActive .elemento {
	animation: fade var(--duration) forwards;
	animation-delay: var(--delay, 0);
}
:where(#wrapper) .contenedor.animateActive .elemento {
    --delay: 0.3s;
}