#events .section-hero {
    background-image: url(../img/events-hero-image@2x.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center 99%;
    padding: 150px 0 75px;
    position: relative
}

.events-date {
    margin: 50px 0 10px
}

.events-date strong {
    font-family: WorkSans-Medium;
    font-size: 24px;
    font-weight: 400
}

.event-block {
    background-color: #fff;
    border: 1px solid #e6e6e6;
    border-radius: 2px;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, .09);
    margin-bottom: 25px;
    position: relative
}

.event-block:before {
    background-color: #1a41ff;
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    transition: all .3s linear
}

.event-block:hover:before {
    width: 5px
}

.event-block-right {
    display: flex;
    padding: 25px;
    flex-direction: column;
    justify-content: space-between
}

.event-block-right strong {
    font-family: WorkSans-Regular;
    text-align: center;
    font-weight: 400;
    font-size: 20px
}

.event-details {
    padding: 15px
}

.event-details small {
    display: inline-block;
    color: #868686;
    font-size: 12px;
    padding: 4px 20px 4px 0;
    position: relative;
    margin-bottom: 10px;
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    transition: all .3s linear
}

.event-details small:before {
    border-style: solid;
    border-width: 13px 6px 13px 0;
    border-color: transparent #fff transparent transparent;
    content: '';
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    right: 0;
    top: 0
}

.event-block:hover .event-details small {
    background-color: #1a41ff;
    color: #fff;
    padding-left: 10px
}

.event-details p {
    color: #969696;
    font-weight: 400
}

.event-details b {
    color: #252525;
    font-family: WorkSans-Regular;
    font-size: 14px;
    font-weight: 400
}

.event-details h4 {
    font-family: WorkSans-Medium
}

.event-image a {
    display: block;
    height: 100%;
    overflow: hidden
}

.event-image img {
    /*-o-object-fit: cover;
    object-fit: cover;*/
    width: 100%;
    height: auto;
}

.event-block a.btn {
    border: solid 1px #1a41ff;
    border-radius: 0;
    color: #1a41ff;
    text-transform: uppercase;
    height: 56px;
    line-height: 42px;
    letter-spacing: .9px;
    font-size: 14px;
    width: 157px;
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    transition: all .3s linear
}

.event-block a.btn:hover {
    color: #fff;
    background-color: #1a41ff
}

@media screen and (min-width:992px) {
    .section-events {
        padding-left: 20px
    }
    .event-block,
    .event-block-left {
        display: flex
    }
    .event-image a {
        min-width: 230px;
        max-width: 230px
    }
    .event-block-right strong {
        text-align: right
    }
    .event-details {
        padding: 25px 0 25px 25px
    }
}

@media screen and (max-width:991px) {
    .event-block-right {
        align-items: center
    }
    .event-block-right .btn {
        margin-top: 10px
    }
}