/* EVENTS FACADE */

.event-name{
    font-weight:700;
    font-size:1.5em;
}

.events-list.events-list {
    margin: 0;
    padding: 0;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
    min-width: calc(100% + 20px);
    list-style: none;
}

a.events-link {
    box-shadow: 0 0 10px rgba(0, 0, 0, .15);
    text-decoration: none;
    overflow: hidden;
    height: 100%;
    transition: box-shadow 1s cubic-bezier(0,.29,.05,.99);
}

.events-item {
    background: rgba(255,255,255,.9);
    position: relative;
    -webkit-flex: auto;
    -ms-flex: auto;
    flex: auto;
    width: 245px;
    margin: 0 10px 20px;
    padding: 0;
    max-width: calc(100% - 20px);
    list-style:none;
}

.events-img-container {
    position: relative;
    background-size: cover;
    background-position: center center;
    background-repeat:no-repeat;
    padding-bottom: 75%;
    height: 0;
    transform: scale(1);
    -webkit-transition: -webkit-transform 1s cubic-bezier(0,.29,.05,.99);
    transition: transform 1s cubic-bezier(0,.29,.05,.99), -webkit-transform 1s cubic-bezier(0,.29,.05,.99), -o-transform 1s cubic-bezier(0,.29,.05,.99);
}

.events-date {
    position: absolute;
    top: 0;
    left: 0;
    background: #575560;
    color: #fff;
    min-width: 70px;
    min-height: 70px;
    text-align: center;
    line-height: 1.1;
    padding: 10px 5px 5px;
}

.events-date-month{
    text-transform:uppercase;
}
.events-date-day{
    font-size:150%;
}
.events-info {
    padding: 5px 10px 20px 10px;
    position: relative;
    color: #575560;
}

.events-list .events-item a.events-link .btn-event-info {
    background-color: #a16332;
    padding: .5em 1em;
    display: inline-block;
    opacity: 0;
}

.events-list .events-item a.events-link:hover .btn-event-info, .events-list .events-item a.events-link:focus .btn-event-info {
    opacity: 1;
}
.text-bg-light{
    color:#000;
    background-color:rgba(248,249,250,.9);
}