.pinnedList {
    --main-color: var(--marron-oscuro);
    color: var(--main-color);
    transition: background-color .25s ease;
    position: absolute;
    z-index: var(--z-index-site-nav);
    width: 100%;
    padding: 2rem 6rem;
}
.pinnedList.is-fixed {
    background-color: var(--crema-fondo);
}
.pinnedList ul {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    row-gap: 1rem;
}
.pinnedList ul li {
    list-style: none;
    position: relative;
    display: inline-block;
    font-size: 1.4rem;
    font-weight: var(--font-weight-regular);
    line-height: 1.57em;
}
.pinnedList ul li h2 {
    font-family: var(--scotch-deck-condensed);
    font-size: 2.3rem;
    font-weight: var(--font-weight-light);
    line-height: 1.34em;
}
.pinnedList ul li:not(:last-of-type) {
    margin-right: 1.5rem;
    padding-right: 1.5rem;
    position: relative;
}
.pinnedList ul li:not(:last-of-type)::after {
    content: '';
    width: 1px;
    height: 26px;
    background-color: var(--main-color);
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(0, -50%);
}
.pinnedList ul li a {
    color: var(--main-color);
}
@media only screen
and (min-width : 961px) {
    .pinnedList {
        padding: 2rem 0;
        background: transparent;
        --main-color: var(--crema-fondo);
    }
    .pinnedList.is-fixed {
        --main-color: var(--marron-oscuro);
    }
    .pinnedList .row {
        max-width: 60%;
        margin: 0 auto;
    }
    .pinnedList:not(.is-fixed) ul li {
        text-shadow: 0px 0px 10px rgba(44, 32, 12, 0.80); 
    }
}
@media only screen
and (min-width : 961px)
and (max-width : 1440px) {
}
@media only screen
and (min-width : 0)
and (max-width : 960px) {
    .pinnedList ~ .header-with-icon-and-video {
        margin-bottom: calc(var(--height-pinnedList) + 3rem);
    }
}