.agenda {
    position: relative;
    overflow: hidden;
    background: url(../img/info.jpg) no-repeat center fixed;
    background-color: #F5F5F5;
}

.agenda-nav .nav-item a {
    padding: 0.5rem 2.2rem;
    transition: all 0.2s;
    font-size: 1.2rem;
    font-weight: 700;
    background-color: var(--lightY);
    color: var(--color6);
    border: 1px solid var(--main-color2);
    border-radius: 100px;
    margin: 10px;
    letter-spacing: 0.1rem;
    transition: transform .2s cubic-bezier(0, 3, 0.8, 1.5);
}

.agenda-nav .nav-item .active,
.agenda-nav .nav-item a:hover {
    transform: scale(1.05);
    border: 1px solid var(--main-color);
    font-weight: 600;
    background-color: var(--brown);
    color: var(--main-color);
}

.agenda-content {
    position: relative;
    padding: 15px 0;
}

.agenda-content h4 span {
    font-size: 30px;
    font-weight: bolder;
    position: relative;
}

.class-box {
    position: relative;
    padding: 1rem;
    background-color: #eee;
    border-bottom: 1px dashed #c0c0c0;
    border-top: 1px dashed #c0c0c0;
    transition: transform .2s cubic-bezier(0, 3, 0.8, 1.5);
}

.class-box:hover {
    transform: scale(1.01);
}
@media (max-width:991px) {
.class-box:hover {
    transform: scale(1);
}
}
.class-box p {
    margin-bottom: 0;
}

.break {
    background-color: #e94f44;
    color: #fff;
    transition: none;
}

.break:hover {
    transform: none;
}

.timeline {
    display: flex;
    align-items: center;
    font-size: 0.3rem;
}

.agenda-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.agenda-title p {
    font-weight: 600;
    font-size: 20px;
    display: block;
    line-height: 1.5;
}
.agenda-name h5{
    font-size: 19px;
    margin: 4px 0 2px;
}
.agenda-name p {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 0;
    margin-top: 0.2rem;
}

.keynote::before {
    content: 'KEYNOTE';
    display: inline-block;
    background-color: #e94f44;
    color: #fff;
    font-size: 13px;
    padding: 0 6px;
    border-radius: 5px;
}
