* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

#agenda {
    width: 100%;
    padding: 1rem;
    font-size: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#agenda .agenda_title {
    color: var(--font-color);
    font-family: GothamBlack;
    position: relative;
    font-size: 48px;
}

.agenda_title::after {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 105%;
    height: 50%;
    /* background: #33cc99; */
    content: "";
    z-index: -1;

    /* added from about.css (.underlined) */
    background-image: linear-gradient(120deg, #33cc99 0%, #33cc99 100%);
    background-repeat: no-repeat;
    background-size: 100% 0.55em;
    background-position: 0 88%;
}

#agenda .agenda_item {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    border-radius: 55em;
    background-color: var(--font-color);
    margin: 2rem 0;
    position: relative;
    font-size: 1.1em;
    padding: 0;
}

.agenda_item .item_img {
    width: 20%;
    height: auto;
}

.agenda_item .agenda_item_description {
    margin-left: 0.3em;
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.agenda_item_description h3 {
    margin-bottom: 0.25em;
    font-size: 1.2em;
    font-family: GothamBold;
    color: var(--background-color);
}

.agenda_item_description p {
    font-size: 0.9em;
    font-family: GothamBold;
    color: var(--background-color);
    margin: 0;
}

.agenda_item .agenda_item_time {
    display: flex;
    align-items: center;
    width: 30%;
    padding-right: 0.2em;
    font-family: GothamBook;
    margin-left: 0.2em;
    color: var(--background-color);
}

.agenda_item_time p {
    margin: 0;
}

.agenda_item_time .clock {
    width: 1.1em;
    margin-right: 0.3em;
}

.clock path {
    fill: var(--background-color);
}

@media (min-width: 576px) {
    #agenda {
        font-size: 14px;
    }
}

@media (min-width: 600px) {
    #agenda {
        padding: 0 2rem;
    }

    .agenda_item .item_img {
        width: 5em;
    }

    .agenda_item_description h3 {
        font-size: 1.1em;
    }
    .agenda_item_description p {
        font-size: 0.8em;
    }

    .agenda_item .agenda_item_time {
        justify-content: flex-end;
        padding-right: 0.1em;
    }
    .agenda_item_time .clock {
        margin-right: 1em;
    }
}

@media (min-width: 992px) {
    #agenda {
        font-size: 16px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    #agenda .agenda_item {
        width: 70%;
    }
}

@media (min-width: 1200px) {
    #agenda .agenda_item {
        width: 60%;
    }
}

@media (max-width: 450px) {
    #agenda .agenda_title {
        font-size: 36px;
    }
    .agenda_item_time p {
        font-size: 0.8em;
    }

    .agenda_item_description h3 {
        font-size: 1em;
    }
    .agenda_item_description p {
        font-size: 0.8em;
    }
}

@media (max-width: 370px) {
    .agenda_item .item_img {
        width: 18%;
    }
    .agenda_item_time {
        width: 40%;
    }
    .agenda_item_description {
        width: 40%;
    }
    .agenda_item_time .clock {
        width: 0.9em;
    }
    .agenda_item_time p {
        font-size: 0.6em;
    }

    .agenda_item_description h3 {
        font-size: 0.8em;
    }
    .agenda_item_description p {
        font-size: 0.7em;
    }
}

@media (max-width: 285px) {
    #agenda {
        font-size: 9px;
    }
}

@media (max-width: 225px) {
    #agenda {
        font-size: 8px;
    }

    .agenda_item_time p {
        font-size: 0.6em;
    }

    .agenda_item_description h3 {
        font-size: 0.8em;
    }
}
