.section-3-events {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
}



.section-3-events .event-card {
    border-radius: 8px;
    border: 1px solid #D9D9D9;
    background: #FFF;
    box-shadow: 0px 0px 45px -10px rgba(0, 0, 0, 0.25);
    padding: 0 40px;
    padding-bottom: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.event-card .event-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.event-card .event-card-header .event-date {
    border-radius: 0px 0px 8px 8px;
    background: #1B304D;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: 'Nunito Sans', Nunito, Helvetica, Arial, Lucida, sans-serif;
    color: white;
    padding: 8px 12px;
    gap: 8px;
}

.conference-card .event-card-header .event-date {
    border-radius: 0px 0px 8px 8px;
    background: #345BA9;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: 'Nunito Sans', Nunito, Helvetica, Arial, Lucida, sans-serif;
    color: white;
    padding: 8px 12px;
    gap: 8px;
}

.webinar-card .event-card-header .event-date {
    border-radius: 0px 0px 8px 8px;
    background: #5E6D85;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: 'Nunito Sans', Nunito, Helvetica, Arial, Lucida, sans-serif;
    color: white;
    padding: 8px 12px;
    gap: 8px;
}



.event-card .event-card-header .event-date .month {
    font-size: 14px;
}

.event-card .event-card-header .event-date .day {
    font-size: 40px;
    line-height: 1em;
    font-weight: bold;
}

.event-card .event-card-header .event-type {
    padding: 5px 15px;
    border-radius: 50px;
    background: #1B304D;
    color: white;
    font-family: 'Nunito Sans', Nunito, Helvetica, Arial, Lucida, sans-serif;
    font-size: 14px;
    line-height: 1em;
}

.webinar-card .event-card-header .event-type {
    padding: 5px 15px;
    border-radius: 50px;
    background: #5E6D85;
    color: white;
    font-family: 'Nunito Sans', Nunito, Helvetica, Arial, Lucida, sans-serif;
    font-size: 14px;
    line-height: 1em;
}

.conference-card .event-card-header .event-type {
    padding: 5px 15px;
    border-radius: 50px;
    background: #345BA9;
    color: white;
    font-family: 'Nunito Sans', Nunito, Helvetica, Arial, Lucida, sans-serif;
    font-size: 14px;
    line-height: 1em;
}

.event-card .event-card-body .event-title {
    color: #101828;
    font-family: 'Aeries Sans Bold', Helvetica, Arial, Lucida, sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    margin: 0;
    margin-top: 20px;
}

.event-card .event-card-body .next-session {
    color: #101828;
    font-family: 'Nunito Sans', Nunito, Helvetica, Arial, Lucida, sans-serif;
    font-size: 14px;
    margin: 0;
}

.event-card .event-card-body .next-session .date {
    color: #101828;
    font-family: 'Nunito Sans', Nunito, Helvetica, Arial, Lucida, sans-serif;
    font-size: 14px;
    font-weight: 700;
}

.event-card .event-card-body .event-description {
    color: #4D4D4D;
    font-family: 'Nunito Sans', Nunito, Helvetica, Arial, Lucida, sans-serif;
    font-size: 16px;
    line-height: 1.5em;
    margin: 0;
    border-top: 1px solid #C1C1C1;
    border-bottom: 1px solid #C1C1C1;
    padding: 20px 0;
}

.event-card .event-register {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 20px;
}

.event-card .event-register a {
    text-decoration: none;
    border-radius: 30px;
    background: #BE202E;
    padding: 8px 30px;
    color: white;
    font-family: 'Nunito Sans', Nunito, Helvetica, Arial, Lucida, sans-serif;
    font-size: 15px;
    filter: drop-shadow(0px 12px 24px rgba(0, 0, 0, 0.25));
}

.event-card .event-register a:hover {
    background: #345BA9;
}

.section-filters-events {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
}

.event-filter-title{
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    align-items: center;
    padding-bottom: 40px;
}
.event-filter-title h3 {
    font-size: 28px;
    color: #0C1E41!important;
    text-align: center;
}

.event-filter-title p {
    font-size: 18px;
    text-align: center;
}
#title_webinar, #title_workshop, #title_conference{
    display: none;
}

.section-filters-events .type {
    display: flex;
    width: 70%;
    justify-content: space-between;
}

.section-filters-events .type button {
    background-color: white;
    border-radius: 8px;
    font-family: 'Nunito Sans', Nunito, Helvetica, Arial, Lucida, sans-serif;
    font-size: 18px;
    padding: 8px 30px;
    cursor: pointer;
}

.section-filters-events .type .btn-type-all {
    border: 1px solid #BE202E;
}

.section-filters-events .type .btn-type-webinars {
    border: 1px solid #5E6D85;
}

.section-filters-events .type .btn-type-workshops {
    border: 1px solid #1B304D;
}

.section-filters-events .type .btn-type-conference {
    border: 1px solid #345BA9;
}

.section-filters-events .type button.active {
    background-color: #D9D9D9;
    border-color: #D9D9D9;
    outline: none;
}

.section-filters-events .month {
    display: flex;
    width: 100%;
    justify-content: space-between;
    padding: 20px 0 40px 0;
    border-top: 1px solid #D9D9D9;
    margin-top: 40px;
}

.section-filters-events .month button {
    background-color: transparent;
    font-family: 'Nunito Sans', Nunito, Helvetica, Arial, Lucida, sans-serif;
    font-size: 18px;
    cursor: pointer;
    border: none;
    position: relative;
    color: #D9D9D9;
}

.section-filters-events .month button::before {
    content: '';
    width: 10px;
    height: 10px;
    background-color: #D9D9D9;
    border-radius: 50px;
    position: absolute;
    top: 0;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
}

.section-filters-events .month button.active {
    color: #345BA9;
}

.section-filters-events .month button.active::before {
    background-color: #345BA9;
}

.no-events-message {
    font-size: 18px;
}

/* WEBINARS AND WORKSHOPS CARDS */
.webinars-workshops-card {
    background: white;
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 40px;
    padding: 20px 40px;
}

.webinars-workshops-card .webinar-workshop {
    display: flex;
    width: 100%;
    gap: 20px;
}

.webinars-workshops-card .webinar-workshop .date {
    display: flex;
    width: 100%;
    flex: .4;
    flex-direction: column;
    align-items: center;
    border: 1px solid #345BA9;
    border-radius: 8px;
    color: #345BA9;
    justify-content: space-evenly;
    font-family: 'Nunito Sans', Nunito, Helvetica, Arial, Lucida, sans-serif;
    max-width: 110px;
    padding: 10px;
}

.webinars-workshops-card .webinar-workshop .date>.month,
.webinars-workshops-card .webinar-workshop .date>.year {
    font-size: 14px;
}
.webinars-workshops-card .webinar-workshop .date>.year{
    letter-spacing: 4.48px;
}

.webinars-workshops-card .webinar-workshop .date>.day{
    font-size: 50px;
    font-weight: bold;
    line-height: 1em;
}

.webinars-workshops-card .webinar-workshop .content {
    display: flex;
    flex: 2;
    width: 100%;
    flex-direction: column;
    font-family: 'Nunito Sans', Nunito, Helvetica, Arial, Lucida, sans-serif;
    justify-content: space-evenly;
}
.webinars-workshops-card .webinar-workshop .content>.title{
    font-size: 26px;
    margin: 0;
    padding: 0;
}
.webinars-workshops-card .webinar-workshop .content button{
    font-size: 16px;
}

/* EVENT MODAL */
.event-information-modal {
    background-color: white;
    margin: 5% auto;
    padding: 40px 40px;
    border: 1px solid #888;
    width: 65%;
    border-radius: 8px;
    box-shadow: 0 3px 10px -1px rgba(0, 0, 0, .3), 0 2px 50px 2px rgba(0, 0, 0, .2);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    z-index: 1000002;
    justify-content: space-evenly;
    overflow: auto;
}

.event-information-modal h3,
.event-information-modal h2,
.event-information-modal h4,
.event-information-modal p {
    margin: 0;
    padding: 0;
}

.event-information-modal h3 {
    font-size: 28px;
    text-align: center;
    width: 100%;
}

.event-information-modal h4 {
    font-size: 24px;
    text-align: start;
    width: 100%;
}

.event-information-modal p {
    font-size: 18px;
    width: 100%;
    text-align: start;
}

.event-modal-description-container {
    width: 100%;
    padding: 20px 0;
    border-top: 1px solid #9a9a9a;
    border-bottom: 1px solid #9a9a9a;
}

.event-modal-date-container {
    width: 100%;
}

.event-information-modal .close {
    color: white;
    float: right;
    font-size: 22px;
    font-weight: bold;
    cursor: pointer;
    background: #345BA9;
    padding: .1em .5em;
    border-radius: 50px;
    position: absolute;
    top: 12px;
    right: 16px;
}

@media (max-width:1024px) {
    .section-3-events {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .section-filters-events .type {
        display: grid;
        width: 100%;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .section-filters-events .month {
        padding: 20px 0 10px 0;
        border-top: 1px solid #D9D9D9;
        margin: 40px 0;
        overflow: auto;
        gap: 20px;
    }

    .webinars-workshops-card .webinar-workshop{
        flex-direction: column;
    }
    .webinars-workshops-card .webinar-workshop .date{
        max-width: none;
    }
    .event-information-modal{
        width: 90%;
    }

}

/* Override Bizzabo widget styles */
.bizzabo-tickets-widget,
.bz-widget-tickets-inline,
.bz-widget-tickets-inline * {
    overflow: visible !important;
    max-height: none !important;
}

/* Ensure the modal content is visible */
.event-information-modal {
    overflow: auto !important;
}

.bz-modal{
    z-index: 99999991 !important;
}

#ticket_script {
    width: 100% !important;
}