a:active,
a:visited,
a:visited:hover,
a {
    text-decoration: none !important;
}

/* intro */

.home #scroll-past-pixel {

    top: calc(100vh);
    left: 0;
    position: absolute;
    height: 1px;
    width: calc(100vw);

}

.home #scroll-past-pixel-back {

    top: calc(100vh - 5px);
    left: 0;
    position: absolute;
    height: 1px;
    width: calc(100vw);

}

html:not(.has-scrolled) .home header.wp-block-template-part {

    display: none;

}
html:not(.has-scrolled).intro-done .home header.wp-block-template-part {

    display: block;

}

.intro {

    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--wp--preset--color--base);
    display: none;
    cursor: pointer;
    margin: 0;

}
.intro::after {

    content: "";
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: 80%;
    height: calc(90vh);
    max-width: 600px;
    background-image: URL('../images/logo-intro.svg');
    background-size: contain;
    background-position: center 18vh;
    background-repeat: no-repeat;

}

html[lang='en-US'] .intro::after {

    background-image: URL('../images/logo-intro-en.svg');

}

html[lang='es-ES'] .intro::after {

    background-image: URL('../images/logo-intro-es.svg');

}

.intro + main {

    padding-top: 100vh;

}

.home .intro {
    
    display: none;
    
}

html:not(.has-scrolled) .intro {

    display: block;

}