.css-events-list h2 {
    text-transform: uppercase;
    font-size: 24px;
}

.css-events-list h2:after {
    content: "";
    display: block;
    width: 50px;
    height: 3px;
    background-color: #b5ce00;
}

.events-list {
    margin: 0 -25px;
}

.events-list-single {
    float: left;
    width: 100%;
    max-width: 33.33333%;
    min-height: 400px;
    padding: 0 25px;
    box-sizing: border-box;
}

.events-list-single figure {
    position: relative;
}

.events-list-single figure img {
    display: block;
    width: 100%;
    height: auto;
    margin: 0;
}

.events-list-single figure:hover .fig-event-overlay {
    opacity: 1;
}

.fig-event-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(181, 206, 0, .8);
    opacity: 0;
    transition: opacity, 300ms;
}

.fig-event-overlay:before,
.fig-event-overlay:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    margin: 0 auto;
    background-color: white;
    transform: translateY(-50%);
}

.fig-event-overlay:before {
    width: 4px;
    height: 35px;
}

.fig-event-overlay:after {
    width: 35px;
    height: 4px;
}

.events-list-single--title {
    margin: 10px 0 !important;
}

.events-list-single--title a {
    color: black !important;
}

.events-list-single--title a:hover {
    color: #b5ce00 !important;
}

.events-list-single--date {
    position: relative;
    padding-left: 20px;
    box-sizing: border-box;
}

.events-list-single--date:before {
    content: "\f017";
    position: absolute;
    top: 2px;
    left: 0;
    font-family: "FontAwesome";
    color: #b5ce00;
}

.events-map {
    display: none;
}

.em-pagination-wrap {
    text-align: center;
}

.em-pagination {
    display: inline-block;
}

.em-pagination .page-numbers {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 3;
    border-right: 2px solid #f2f2f2;
    color: black !important;
}

.em-pagination .page-numbers:after {
    content: "";
    display: block;
    width: 40%;
    height: 0;
    position: absolute;
    right: 0;
    bottom: 5px;
    left: 0;
    margin: 0 auto;
    background-color: black;
    transition: height, 300ms;
}

.em-pagination .page-numbers:hover:after,
.em-pagination .page-numbers.current:after {
    height: 3px;
}

.page-numbers.current {
    font-weight: bold;
}

.em-pagination .page-numbers.next {
    border-right: none;
}