.transition1Page {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    position: relative;
    box-sizing: border-box;
    padding-block: 100px;
}

.transition1Page .column {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    position: absolute;
    top: 0;
}

.transition1Page #column1 {
    left: 5%;
}

.transition1Page #column2 {
    right: 5%;
}

.transition1Page #column1 img {

    transform: translateY(-900%);
    animation: column1 1s ease-in;
    opacity: 0;
}

@keyframes column1 {
    0% {

        opacity: 1;
        transform: translateY(-1500%);
    }
    80% {
        transform: translateY(-900%);
        opacity: 1;
    }
    100% {

        opacity: 0;
    }
}

.transition1Page #column2 img {
    transform: translateY(-600%);
    animation: column2 1s ease-in;
    opacity: 0;
}

@keyframes column2 {
    0% {
        transform: translateY(0%);
        opacity: 1;
    }
    80% {
        transform: translateY(-600%);
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

.transition1Page .column::before {
    content: '';
    position: absolute;
    top: 0;
    background: rgba(253, 149, 160, 0.50);
    filter: blur(100px);
    width: 167px;
    height: 120%;
    opacity: 0;
    transform: translateY(-10%);
    animation: columnBackground 1s ease-in;
}

@keyframes columnBackground {
    0% {
        opacity: 1;
    }
    80% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

.transition1Page .column img {
    width: 169px;
    object-fit: contain;
    z-index: 1;
    position: relative;
}


/* ==============CONTENT==========================*/

.transition1Page h2 {
    background: linear-gradient(90deg, #000 0%, #666 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 50px;
    font-style: normal;
    font-weight: 400;
    line-height: 102.579%; /* 51.289px */
    letter-spacing: -2px;
    animation: titleAppear 1.5s ease-in;

}

@keyframes titleAppear {

    0% {
        margin-top: 120vh;
    }

    100% {
        margin-top: 0vh;
    }
}

.transition1Page .roaler {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: black;

}

.transition1Page .roaler span {
    color: black;
    text-align: center;
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.5px;
    transition: all 1s ease-in-out;
}


.transition1Page .roaler #span1 {
    background: linear-gradient(0deg, #000000, #000000 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: span1Animation 4s 3.5s;
}

@keyframes span1Animation {
    0% {
        background: linear-gradient(0deg, #000000, #000000 100%);
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
    37% {
        background: linear-gradient(0deg, #00000047, #00000000 100%);
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
    45% {
        background: linear-gradient(0deg, #00000024, #00000000 100%);
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }  100% {
        background: linear-gradient(0deg, #00000024, #00000000 100%);
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
}

.transition1Page .roaler #span2 {
    background: linear-gradient(180deg, #0000004f 0%, #66666629 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: span2Animation 4s 3.5s;
}

@keyframes span2Animation {
    0% {
        background: linear-gradient(180deg, #0000004f 0%, #66666629 100%);
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
    37% {
        background: linear-gradient(0deg, #000000, #000000 100%);
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
    45% {
        background: linear-gradient(0deg, #0000002b 0%, #66666600 100%);
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }   100% {
        background: linear-gradient(0deg, #0000002b 0%, #66666600 100%);
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
}

.transition1Page .roaler #span3 {
    background: linear-gradient(177deg, #0000002b 0%, #66666600 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: span3Animation 4s 3.5s;
}

@keyframes span3Animation {
    0% {
        background: linear-gradient(180deg, #0000002b 0%, #66666600 100%);
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
    37% {
        background: linear-gradient(180deg, #00000047, #00000000 100%);
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
    45% {
        background: linear-gradient(0deg, #000000, #000000 100%);
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }   100% {
        background: linear-gradient(0deg, #000000, #000000 100%);
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
}


/* ================= ROUE ==========*/
.transition1Page .roue {
    width: 600px;
    position: absolute;
    bottom: 0;
    transform: translateY(50%);
    animation: routeRotate 7s;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.transition1Page .roue img {
    width: 100%;
    object-fit: contain;
}

@keyframes routeRotate {
    0% {
        opacity: 0;
    }
    20% {
        opacity: 0;

        transform: translateY(50%) rotate(0deg);
    }
    35% {
        transform: translateY(50%);
        opacity: 1
    }
    100% {
        transform: translateY(50%) rotate(270deg);
    }
}