tour-wellcome {
    display: block;
    position: absolute;
    box-sizing: border-box;
    left: 50%; top: 50%; 
    width: 100%; height: 100%; 
    border-width: 2rem 0 2rem 0!important;
    /* background-color: var(--color-cream-opaque); */

    /* background-image: url(images/intro_bg.jpg);
    background-size: cover;
    background-position: center; */

    /* backdrop-filter: blur(10px); */
    pointer-events: all;
    padding: 4rem;
    /* padding-bottom: 10rem; */
    text-align: center;
    opacity: 0;
    position: none;
    transform: translate(-50%,-50%) scaleY(1);
    transition: opacity calc(var(--transition-duration) * 1);
    z-index: 3;

}


tour-wellcome.visible {
    opacity: 1;
    /* transform: translate(-50%,-50%) scale(1); */
    transition: opacity calc(var(--transition-duration) * 3);
}

tour-wellcome::before {
    content: '';
    position: absolute;
    left: 50%; bottom: 0rem; transform: translate(-50%);
    width: 20rem; height: 4rem;
    background-image: url(images/pattern-lines.svg);
    background-repeat: repeat;
    transform: translate(-50%,100%);
    transition: transform calc(var(--transition-duration) * 2);
}

tour-wellcome .enter {
    border: 0;
    background-color: var(--color-gold);
    position: absolute;
    left: 50%; bottom: 7rem; transform: translate(-50%);
    width: 20rem; height: 5.6rem;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Playfair Display Regular', Arial, Helvetica, sans-serif;
    font-size: 1.8rem;
    text-transform: uppercase;
    color: white;
    cursor: pointer;
    filter: brightness(1);
    transform: translate(-50%,16rem);
    transition: filter calc(var(--transition-duration) * 1.5), transform calc(var(--transition-duration) * 2);
}

tour-wellcome.animate::before {
    transform: translate(-50%,0%);
    transition-delay: 1.35s;
}

tour-wellcome.animate .enter {
    transform: translate(-50%,0%);
    transition-delay: 0.7s;
}

tour-wellcome .enter:active {
    filter: brightness(1.5);
    transition: none;
}

tour-wellcome .enter:before {
    content: '';
    position: absolute;
    left: 50%; top: 50%; transform: translate(-50%,-50%);
    width: calc(100% + 2.2rem); height: calc(100% + 2.2rem);
    border: 0.1rem solid var(--color-gold);
}

tour-wellcome .msg {
    position: absolute;
    left: 50%; bottom: 15.6rem; transform: translate(-50%);
    max-width: 56rem; height: auto; width: 80%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

tour-wellcome .msg h2 {
    text-align: center;
    font-family: 'Playfair Display Regular', Arial, Helvetica, sans-serif;
    letter-spacing: 2%;
    font-size: 6.0rem;
    font-weight: lighter;
    color: #ffffff;
    margin: 0; padding: 0;
    margin-bottom: 0rem;
    opacity: 0.0;
    transform: translateY(4rem) scale(1);
    transition: opacity calc(var(--transition-duration) * 8), transform calc(var(--transition-duration) * 2) ;
}

tour-wellcome.animate .msg h2 {
    opacity: 1;
    transform: translateY(0rem) scale(1);
    transition-delay: 0.2s;
}

tour-wellcome .msg p {
    width: 85%;
    text-align: center;
    font-family: 'Playfair Display Regular', Arial, Helvetica, sans-serif;
    font-size: 2.2rem;
    font-weight: lighter;
    font-style: italic;
    color: #ffffff;
    letter-spacing: 2%;
    margin: 0 auto; 
    padding: 0;
    opacity: 0.0;
    transform: translateY(3rem) scale(0.6);
    transition: opacity calc(var(--transition-duration) * 10), transform calc(var(--transition-duration) * 2) ;
}

tour-wellcome.animate .msg p {
    opacity: 1;
    transform: translateY(0rem) scale(1);
    transition-delay: 0.5s;
}

tour-wellcome .msg span {
    width: 85%;
    max-width: 80rem;
    text-align: center;
    font-family: National;
    font-size: 1.6rem;
    color: #000000;
    letter-spacing: 2%;
    margin: 2rem auto; 
    padding: 0;
    opacity: 0.5;
    margin-bottom: 2rem;
}

main.intro div[data-ui="logo"] {
    transform: translate(-50%,50vh) scale(2);
}


@media screen and (max-width: 500px) {
    
    tour-wellcome .msg h2 {
        font-size: 3.6rem;
    }

    tour-wellcome .msg p {
        font-size: 1.4rem;
    }

    tour-wellcome .msg span {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
    }

    tour-wellcome .enter {
        bottom: 7rem;
    }

    tour-wellcome .msg {
        bottom: 15.6rem;
    }

}
