.event-detail {
    padding: 20px 20px 30px;
}
.event-box {
    border: 1px solid #ddd;
    box-shadow: 0 0 10px #bfbebe;
    height: 100%;
    transition: all 0.5s ease;
}
.event-list {
    padding-top: 15px;
    padding-bottom: 15px;
}
.event-title a{
    font-size: 32px;
    font-weight: 600;
    color: var(--color--color1);
}
.event-title a:hover{
color: #000;
}
.event-image a {
    height: 350px;
    background-color: #fafafa;
    display: flex;
    align-items: center;
    justify-content: center;
}
.event-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}
.event-meta {
    margin-bottom: 20px;
}
.event-box:hover {
    transform: scale(1.03);
}
.event-image.event-default-image img {
    max-width: 250px;
}
.event-form {
    margin-top: 40px;
}
.event-thumbnail a.html5lightbox span.play-icon {
    margin: auto;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: #752124;
}
.event-thumbnail a.html5lightbox::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    left: 0;
    top: 0;
}
.event-thumbnail img {
    width: 100%;
}
.event-thumbnail a.html5lightbox:hover .play-icon {
    border-color: rgba(103, 11, 30, 1);
    background-color: rgba(103, 11, 30, 1);
    transition: 1s;
    transform: scale(1.1);
}
@media screen and (max-width: 991px) {
.event-image a {
    height: 300px;
}
.event-thumbnail {
    margin-bottom: 20px;
}
}
@media screen and (max-width: 767px) {
.event-image a {
    height: auto;
}
.event-title a {
    font-size: 28px;
}
.list-style ul li:after {
   top: 10px;
}
}