
#agenda {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 1400px;
}
#agenda-bg {
    height: 1400px;
    text-align: center;
}

#agenda > .path-box {
    position: absolute;
    left: 153px;
    top: 104px;
    width: 280px;
    height: 661px;
    z-index: -1;
}
#agenda .path-box > .path {
    width: 100%;
    height: 100%;
}
#agenda .path-box > .ball {
    display: block;
    position: absolute;
    left: -3px;
    top: -5px;
    width: 10px;
    height: 10px;
    background-color: #fff;
    border-radius: 100%;
    animation: agenda-ball 3.5s;
    animation-play-state: paused;
    transition-timing-function: cubic-bezier(0, 0, 0.1, 1);
}

#agenda.triggered .path-box > .ball {
    animation-play-state: running;
}

@keyframes agenda-ball {
    0% {
        opacity: 0;
        top: 335px;
    }
    5% {
        opacity: 1;
        top: 335px;
    }
    100% {
        top: -5px;
    }
}

#agenda .agenda-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    max-width: 1000px;
    box-sizing: border-box;
    background-color: rgba(11, 19, 66, 0.74);
    padding: 60px;
    margin-top: 40px;
}
#agenda .action-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    position: relative;
    width: 100%;
    height: 120px;
    box-sizing: border-box;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding: 20px 30px;
}
#agenda .action-card:last-child {
    border-bottom: none;
}
#agenda .action-card > .image-group {
    display: block;
    position: relative;
    width: 80px;
    height: 80px;
    background-color: #273688;
    border-radius: 100%;
}
#agenda .action-card > .image-group > img {
    width: 100%;
    height: 100%;
}
#agenda .action-card .content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    position: relative;
    width: calc(100% - 100px);
}
#agenda .action-card .content > .time {
    color: #84d8ff;
    font-size: 21px;
    font-weight: bold;
    white-space: nowrap;
    margin-right: 30px;
    transform-origin: center;
    transform: skew(-10deg, 0);
}
#agenda .action-card .content > .length {
    position: relative;
    width: 90px;
    color: #141d36;
    font-size: 18px;
    font-weight: bold;
    line-height: 25px;
    text-align: center;
    z-index: 1;
    margin-right: 30px;
    transform-origin: center;
    transform: skew(-10deg, 0);
}
#agenda .action-card .content > .length::before {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    content: "";
    background-color: rgba(91, 153, 202, 0.95);
    z-index: -1;
}
#agenda .action-card .content > .title {
    flex: 1;
    color: #fff;
    font-size: 18px;
}
#agenda .action-card .content > .speaker {
    position: relative;
    width: 105px;
    color: #121834;
    font-size: 18px;
    font-weight: bold;
    line-height: 25px;
    text-align: center;
    z-index: 1;
    margin-left: 30px;
}
#agenda .action-card .content > .speaker::before {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    content: "";
    background-color: rgba(184, 124, 255, 0.95);
    z-index: -1;
    transform-origin: center;
    transform: skew(-10deg, 0);
}

#agenda .action-card.rest {
    justify-content: center;
    height: 80px;
    color: #4044c3;
    font-size: 16px;
    font-weight: bold;
}

.md #agenda .action-card {
    padding: 20px 0;
}
.md #agenda .action-card .content {
    width: calc(100% - 100px);
}
.md #agenda .action-card .content > .time {
    margin-right: 20px;
}
.md #agenda .action-card .content > .length {
    width: 80px;
    margin-right: 20px;
}
.md #agenda .action-card .content > .speaker {
    width: 95px;
    margin-left: 20px;
}

.sm #agenda {
    height: 840px;
}
.sm #agenda-bg {
    height: 840px;
}

.sm #agenda > .path-box {
    left: 33px;
    top: 19px;
}

.sm #agenda .agenda-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    max-width: 1000px;
    box-sizing: border-box;
    background-color: rgba(11, 19, 66, 0.74);
    padding: 20px;
    margin-top: 40px;
}
.sm #agenda .action-card {
    height: 80px;
    max-width: 450px;
    padding: 10px 0;
}
.sm #agenda .action-card > .image-group {
    width: 40px;
    height: 40px;
}
.sm #agenda .action-card .content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    width: calc(100% - 50px);
    height: 40px;
}
.sm #agenda .action-card .content > .time {
    position: absolute;
    left: 0;
    top: 21px;
    font-size: 15px;
    white-space: nowrap;
    margin-right: 0;
}
.sm #agenda .action-card .content > .length {
    position: absolute;
    width: 55px;
    left: 0;
    top: 1px;
    font-size: 14px;
    line-height: 20px;
    margin-right: 0;
}
.sm #agenda .action-card .content > .title {
    color: #fff;
    font-size: 15px;
    margin-left: 100px;
}
.sm #agenda .action-card .content > .speaker {
    width: 70px;
    font-size: 14px;
    line-height: 20px;
    margin-left: 10px;
}

.sm #agenda .action-card.rest {
    height: 50px;
    font-size: 15px;
}