﻿.evtframe {
    display:grid;
    grid-template-columns:repeat(5, 1fr);
    column-gap:20px;
    row-gap:20px;
}

.evt {
    padding:15px;
    border:5px solid #8EB81D!important;
    border-radius:15px;
}

.evtimg {
    padding:0 0 10px 0;
    border-radius:15px;
    height:150px;
}
.evtimg img {
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.5s;
}
.evtimg img:hover {
    transform:scale(1.1, 1.1);
}

.evtname {
    padding:0 0 5px 0;
    color:#278A11;
}

.evtinfo1 {
    padding:0 0 10px 0;
}
.evtinfo2 {
    padding:0 0 25px 0;
    display:flex;
    justify-content:space-between;
}

.evtprice {
    font-weight:bold;
    color:#7CAB10;
}

.evtact {
    text-align:center;
}