:root {
    --white: #ffffff;
    --black: #000000;
    --main: #EE9632;
    --gray: #ebebeb;
    --box-shadow1: 0px 0px 18px 2px rgba(10, 55, 90, 0.15);
}

.section-top-20 {
    background-image: url('/images/landing-20-aniversario/bg.webp');
    background-position: top;
}

body {
    color: #EE9632;
    -moz-user-select: none;
    -webkit-user-select: none;
    user-select: none;
}

:focus {
    outline: 0px solid transparent !important;
}

.experience {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.timeline {
    position: relative;
    display: flex;
    flex-direction: column;
    align-content: center;
    padding-left: 120px;
    padding-bottom: 50px;
}

.timeline-nodes {
    padding-bottom: 15px;
}

.timeline h5 {
    font-size: 2.5rem;
    text-align: center;
    padding: 5px 15px;
    font-weight: bold;
    background: var(--main);
}

.timeline h4 {
    text-align: left;
    font-size: 2rem;
    color: var(--black);
    font-weight: bold;
}

.timeline h4, .timeline p {
    padding-left: 15px;
}

    .timeline p:last-child {
        padding-bottom: 15px;
    }

.timeline p, .timeline time {
    color: var(--black)
}

.timeline-container {
    display: flex;
    justify-content: flex-start;
    position: relative;
}

.timeline-bar {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 40px;
    border-left: 5px dashed var(--main);
    height: 100%;
    z-index: 1;
}

.pin2 {
    position: absolute;
    top: 0;
    left: 5px;
    z-index: 2;
    width: 75px;
    height: 75px;
}

.timeline-content {
    border: 1px solid var(--main);
    position: relative;
    border-radius: 0 0 10px 10px;
    box-shadow: 0px 3px 25px 0px rgba(10, 55, 90, 0.2);
    background-color: var(--white);
    margin: 0;
}

/*small device style*/
@media (max-width: 767px) {
    .timeline {
        padding-left: 30px;
        padding-right: 30px;
    }

    .timeline h3 {
        font-size: 1.7rem;
    }

    .timeline p {
        font-size: 14px;
    }
}

.lite-youtube-fallback {
    aspect-ratio: 16 / 9;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 1em;
    padding: 1em;
    background-color: #000;
    color: #fff;
    text-decoration: none;
}

    /* right-facing triangle "Play" icon */
    .lite-youtube-fallback::before {
        display: block;
        content: '';
        border: solid transparent;
        border-width: 2em 0 2em 3em;
        border-left-color: red;
    }

    .lite-youtube-fallback:hover::before {
        border-left-color: #fff;
    }

    .lite-youtube-fallback:focus {
        outline: 2px solid red;
    }