p {
    margin-bottom: 0;
}
/* Event Highlight */
section.event-highlight {
    /*padding-top: 108px;*/
    padding-bottom: 0;
    background-color: #fff;
}

.event-highlight h1.title {
    font-family: 'Avenir Black';
    font-size: 32px;
    line-height: 44px;
    text-align: center;
    color: #000000;
    margin-bottom: 50px;
}

.event-highlight .event-highlight-wrapper {
    display: flex;
    align-items: center;
    /*height: 423px;*/
    box-shadow: 0px 4px 16px rgba(153, 153, 153, 0.25);
    border-radius: 5px;
}

.event-highlight-wrapper .event-highlight-img,
.event-highlight-wrapper .event-highlight-desc {
    width: 50%;
}

.event-highlight-wrapper .event-highlight-img {
    object-fit: cover;
    /*height: 423px;*/
    width: 60%;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

.event-highlight-wrapper .event-highlight-desc {
    padding-left: 45px;
    padding-right: 15px;
}

.event-highlight-wrapper .event-highlight-desc .date {
    font-family: 'Avenir Black';
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 22px;
    color: #B0001F;
}

.event-highlight-wrapper .event-highlight-desc .subtitle {
    margin-bottom: 30px;
    font-size: 32px;
    line-height: 45px;
    color: #000000;
}

.event-highlight-wrapper .event-highlight-desc .location-group {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.event-highlight-wrapper .event-highlight-desc .location-group img {
    width: 20px;
    height: 20px;
}

.event-highlight-wrapper .event-highlight-desc .location-group .place {
    font-family: 'Avenir Black';
    padding-left: 10px;
    font-size: 18px;
    line-height: 25px;
    color: #000000;
}

.event-highlight-wrapper .event-highlight-desc .location-group .address {
    font-size: 15px;
    padding-left: 10px;
    line-height: 20px;
    color: #000000;
}

.event-highlight-wrapper .event-highlight-desc .location-group .space-border {
    width: 1px;
    height: 16px;
    background: #B0B0B0;
    margin-left: 10px;
}

/* Event Filter */
section.event-filter {
    padding-top: 44px;
    padding-bottom: 122px;
}

.event-filter form {
    display: flex;
    align-items: center;
    margin-bottom: 38px;
}

.event-filter form label {
    font-family: 'Avenir Black';
    font-size: 24px;
    line-height: 36px;
    color: #000000;
    padding-right: 25px;
}

.event-filter form select {
    max-width: 352px;
    border-radius: 0;
    height: 44px;
    margin-bottom: 0;
    font-size: 16px;
    border-color: #7D858C;
    border-radius: 4px;
}

.event-filter form select:focus {
    border-color: #7D858C;
    box-shadow: none;
}

.mobile {
    display: none;
}

.desktop {
    display: block;
}

@media (max-width: 1200px) {
    .mobile {
        display: block;
    }

    .desktop {
        display: none;
    }

    section.event-highlight {
        padding-top: 84px;
    }

    .event-highlight h1.title {
        margin-bottom: 28px;
        font-size: 32px;
        line-height: 44px;
    }

    .event-highlight .event-highlight-wrapper {
        display: block;
        height: auto;
    }

    .event-highlight-wrapper .event-highlight-img,
    .event-highlight-wrapper .event-highlight-desc {
        width: 100%;
    }

    .event-highlight-wrapper .event-highlight-img {
        height: auto;
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
    }

    .event-highlight-wrapper .event-highlight-desc {
        padding: 20px;
    }

    .event-highlight-wrapper .event-highlight-desc .date {
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 15px;
    }

    .event-highlight-wrapper .event-highlight-desc .subtitle {
        font-size: 20px;
        line-height: 30px;
        margin-bottom: 20px;
    }

    .event-highlight-wrapper .event-highlight-desc .location-group {
        margin-bottom: 25px;
    }

    .event-highlight-wrapper .event-highlight-desc .location-group .place {
        padding-left: 5px;
        font-size: 16px;
        line-height: 24px;
    }

    .event-highlight-wrapper .event-highlight-desc .location-group .address {
        font-size: 16px;
        line-height: 24px;
    }

    section.event-filter {
        padding-top: 48px;
        padding-bottom: 50px;
    }

    .event-filter form {
        display: block;
        margin-bottom: 28px;
    }

    .event-filter form label {
        margin-bottom: 10px;
        font-size: 18px;
        line-height: 27px;
    }

    .event-filter form select {
        font-size: 12px;
    }
}

@media (max-width: 991px) {
    section.event-highlight {
        padding-top: 55px;
    }
}
