.container-1 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}
.event {
    width: 30%;
    margin: 10px;
    border-radius: 8px;
    background: #f0f0f0;
    overflow: hidden;
    box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.15) !important;
    text-align: center;
    padding-bottom: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.event .img-wrapper{
    height: 200px;
    overflow: hidden;
}
.event img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.event h3{
    font-family: "Inter", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 800;
    letter-spacing: 0px;
    line-height: 20px;
    text-decoration: none;
    text-transform: none;
    padding: 0 10px;
}
.event a{
    text-decoration: none;
    font-size: 12px;
    font-weight: bold;
    background: #e96226;
    padding: 15px 25px;
    border-radius: 30px;
    color: white;
}
.event a:hover{
    background: #2f343a;
}
.event .event-date{
    font-weight: bold;
    font-size: 14px;
    font-weight: 700;
    margin: 5px 0 25px 0;
}
.event .event-date:before {
    content: '\f332';
    display: inline-block;
    font: normal normal normal 14px / 1 Material-Design-Iconic-Font;
    font-size: inherit;
    text-rendering: auto;
    margin: 0 6px;
}
@media only screen and (max-width: 780px) {
    .event {
        width: 100%;
    }
}