.wedc-events-container {
    display: flex;
    flex-direction: column;
}

.wedc-events-row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: stretch;
}

.wedc-event {
    flex: 1 1 30%;
    margin: 20px 1.66%;
    display: flex;
    flex-direction: column;
}

.wedc-event-image-wrapper {
    overflow: hidden;
}

.wedc-event-image-wrapper:hover .wedc-event-image {
    opacity: .9;
    -webkit-transform: scale3d(1.1,1.1,1);
    transform: scale3d(1.1,1.1,1);
    transition: opacity 1s, transform 1s, -webkit-transform 1s;
}

.wedc-event-image {
    opacity: 1;
    height: 216px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transition: opacity 1s, transform 1s, -webkit-transform 1s;
}

.wedc-event-information {
    min-height: 95px;
    height: auto;
    padding: 20px;
    background-color: #FFF;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.wedc-event-title {
    color: #e96f2c!important;
    font-size: 24px!important;
    line-height: 32px!important;
}

.wedc-event-information h2 {
    margin-bottom: 15px!important;
}

.wedc-event-title:hover {
    color: #2d7aac!important;
}

.wedc-event-meta {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.wedc-event-date {
    color: #333333!important;
    font-weight: bold!important;
    margin: 0!important;
}

.wedc-event-venue {
    margin: 0!important;
}

.wedc-event-excerpt {
    margin-bottom: 15px;
    line-height: 1.5!important;
}

@media screen and (max-width: 480px) {

}

.wedc-events-container.wedc-carousel {
    overflow: hidden;
    margin: 2px 0 !important;
    position: relative;
    display: block;
}

.wedc-events-container.wedc-carousel .wedc-events-prev {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    background-color: rgba(0,0,0,0.6);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.wedc-events-container.wedc-carousel .wedc-events-next{
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    background-color: rgba(0,0,0,0.6);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.wedc-events-container.wedc-carousel .wedc-events-prev:before {
    content: '\f104';
    display: block;
    position: relative;
    line-height: 29px;
    font-size: 14px;
    color: #fff;
    font-family: icomoon;
}

.wedc-events-container.wedc-carousel .wedc-events-next:before{
    content: '\f105';
    display: block;
    position: relative;
    line-height: 29px;
    font-size: 14px;
    color: #fff;
    font-family: icomoon;
}

.wedc-events-container.wedc-carousel:before {
    overflow: hidden;
}

.wedc-events-rotate-container {
    width: 100%;
    height: 350px;
    position: relative;
}

.wedc-events-container.wedc-carousel .wedc-event {
    width: 33.33%;
    margin: 0;
    height: 350px;
    cursor: pointer;
    position: absolute;
    border-top: 2px solid transparent !important;
    border-bottom: 2px solid transparent !important;
    border-left: 15px solid transparent !important;
    border-right: 15px solid transparent !important;
    background-repeat: no-repeat !important;
    background-clip: content-box;
    box-sizing: border-box;

    background-color: #FFF;

    transform: translate(-100%, 0);

    transition: 0.6s ease;
}

.wedc-events-container.wedc-carousel .wedc-event.active {
    transform: translate(0, 0);
}

.wedc-events-container.wedc-carousel .wedc-event.active + .wedc-event {
    transform: translate(100%, 0);
}

.wedc-events-container.wedc-carousel .wedc-event.active + .wedc-event + .wedc-event {
    transform: translate(200%, 0);
}

.wedc-events-container.wedc-carousel .wedc-event:nth-child(1n+5){
    transform: translate(300%, 0);
}

@media screen and (min-width: 740px) and (max-width: 1099px) {
    .wedc-events-container.wedc-carousel .wedc-event {
        width: 50%;
    }
    .wedc-events-container.wedc-carousel.no-mobile .wedc-event {
        width: 33.33%;
    }
}

@media screen and (max-width: 800px) {
    .wedc-events-container.wedc-carousel .wedc-event {
        width: 100%;
    }
    .wedc-events-container.wedc-carousel.no-mobile .wedc-event {
        width: 33.33%;
    }

    .wedc-event {
        flex: 1 1 100% !important;
    }
}