

.event-box {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: nowrap;
    border: 1px solid #E4E4E4;
    border-radius: 25px;
    margin: 20px;
    padding: 10px 20px;
    transition: all .5s ease;
    cursor: pointer;
    



}

.event-box:hover {
    transform: scale(1.05);
    
    background: #f7f7f7;
    border: 1px solid #947348;
}




.event-date {
    margin-right: 55px;
    flex-basis: 110px;
    display: flex;
    flex-direction: row;
    align-items: center;
    max-width:100px;
}

.left-side {
    font-size: 70px;
    color: #947348;
    font-family: 'Sansation';
    align-items: center;
    margin-right: 5px;
}

.right-side {
    line-height: 1;
    margin-top: 3px;
}

.event-month {
    text-transform: uppercase;
    font-weight: bold;
    font-family: 'Sansation';
    color:  #2B2B2B;

}

.event-year {
    font-size: 10px;
    font-family: 'Sansation';
    color:  #2B2B2B;


}

.event-picture {
    margin-right: 25px;
    flex: 0 100 150px;
    border-radius: 25px;
    min-width: 150px;
}

.event-picture img {
    height:100px !important;
    object-fit: cover;

}

.event-title {
    margin-right: 50px;
    display: flex;
    color:  #2B2B2B;
    flex-wrap: nowrap;
}

.event-button {
    white-space: nowrap;
    margin-left: auto;
    background-color: #947348;
;
    padding: 10px 25px;
    border-radius: 10px;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    position: relative;
    color: white !important;
    backface-visibility: hidden;
    

}



@media only screen and (max-width: 1024px) {
    .event-box {
        flex-direction:column;
    }
    .event-picture{
        display:none;
    }
    .event-date{
        flex-direction: column;
        margin-right:0;
    }

    .event-button{
        margin-left:0;
    }
    .event-title {
        margin-right: 0px;
        text-align: center;
    }

    .right-side {
        margin-top: -15px;
    }

}