<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.page-template-timeline .site-inner .wrap {
    max-width: 100%;
}

.t-wrap {
    max-width: 1200px;
    margin: auto;
}

#intro {
    background: black;
    padding: 70px 20px;
}

.intro-title {
    margin-bottom: 20px;
    text-align: center;
    text-decoration: underline;
    text-decoration-color: var(--orange);
    font-family: var(--bold-font);
    font-size: 50px;
}

#intro p {
    text-align: center;
    margin-bottom: 10px;
}

#intro ul {
    text-align: center;
    font-family: var(--bold-font);
    text-transform: uppercase;

    display: flex;
    justify-content: space-around;
    gap: 15px;
    flex-wrap: wrap;
}

#intro li::before {
    content: "\f058";
    font-family: "Font Awesome 5 Free";
    font-weight: bold;
    margin-right: 10px;
    color: var(--orange);
    display: inline-block;
}

/* TIMELINE */

.fade-down {
    height: 50px;
    width: 100%;
    background: linear-gradient(180deg, rgba(13,13,13,1) 20%, rgba(0,0,0,0) 100%);

    position: absolute;
    top: 0;
    left: 0;
    z-index: 60;
}

.fade-up {
    height: 50px;
    width: 100%;
    background: linear-gradient(0deg, rgba(13,13,13,1) 20%, rgba(0,0,0,0) 100%);

    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 60;
}

#timeline {
    padding: 50px 20px;
    position: relative;
}

#timeline::before {
    content: "";
    display: block;
    height: 100%;
    width: 7px;
    background: var(--orange);

    position: absolute;
    top: 0;
    left: 50%;
    transform: translatex(-50%);

    animation: lineDown 6s;
}


@keyframes lineDown {
    0% {
        height: 0%;
    }    

    100% {
        height: 100%;
    }
}

.timeline {
    position: relative;

    display: flex;
    flex-direction: column;
    gap: 20px;
}

.time-row {
    display: flex;
    width: 100%;
    position: relative;
}

.time-row:nth-of-type(even) {
    justify-content: flex-end;
}

.dot {
    content: "";
    display: block;
    height: 40px;
    width: 40px;
    background: var(--orange);
    border-radius: 100%;

    position: absolute;
    /* top: 50%;
    left: 50%;
    transform: translate(-50%, -50%)!important; */

    margin: auto;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

.bubble {
    width: 46%;
    background: white;
    color: black;
    border-radius: 20px;
    padding: 20px;

    position: relative;
}

.bubble::before {
    content: "";
    display: block;
    height: 20px;
    width: 20px;
    background: white;

    position: absolute;
    left: 100%;
    top: 50%;
    transform: translatey(-50%);
    z-index: 60;

    clip-path: polygon(0 0, 0% 100%, 100% 50%);
}

.time-row:nth-of-type(even) .bubble::before {
    left: initial;
    right: 100%;
    clip-path: polygon(100% 0, 100% 100%, 0 50%);
}

.time-title {
    color: var(--orange);
    font-family: var(--bold-font);
    margin-bottom: 10px;
    text-align: center;
    font-size: 25px;
}

.date {
    border-bottom: 1px solid black;
    margin-bottom: 10px;
    padding-bottom: 10px;
    font-family: var(--main-font);
    font-weight: bold;
    text-align: center;
}

.bubble p {
    margin: 0px;
    line-height: 20px;
    font-size: 16px;
}

.bubble ul {
    padding-left: 30px;
    padding-top: 10px;
}

.bubble li {
    font-family: var(--thin-font);
    line-height: 20px;
    font-size: 16px;
    list-style-type: disc;
}

.bubble img {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 16 / 9;
    border-radius: 15px;
    margin-top: 10px;
    margin-bottom: 0px;
}




@media(max-width: 768px) {
    .intro-title {
        font-size: 35px;
    }
    
    .bubble {
        width: 95%;
    }

    .time-row {
        justify-content: flex-end;
    }

    .time-row:nth-of-type(odd) .bubble::before {
        left: initial;
        right: 100%;
        clip-path: polygon(100% 0, 100% 100%, 0 50%);
    }

    .dot {
        /* left: calc(0% - 40px); */
        /* margin: initial; */
        margin-left: -40px;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        
    }

    #timeline::before {
        left: calc(0% + 2px);
    }

    
}

@media(max-width: 500px) {
    .time-title {
        font-size: 20px;
    }

    .bubble p {
        font-size: 14px;
    }
}</pre></body></html>