.owl-nav-custom {
display: flex;
justify-content: center;
position: absolute;
top: 50%;
left: 0;
right: 0;
transform: translateY(-50%);
justify-content: space-between;
}
.owl-nav-custom .owl-prev{
margin-left: -40px;
background: none;
border: none;
font-size: xxx-large;
font-weight: normal;
}
.owl-nav-custom .owl-next {
margin-right: -40px;
background: none;
border: none;
font-size: xxx-large;
font-weight: normal;
}
.owl-nav-custom .owl-prev:hover,
.owl-nav-custom .owl-next:hover {
cursor: pointer;
}  .events-wrap {
display: grid;
grid-template-columns: repeat(3, 1fr); gap: 20px; } @media (max-width: 980px) {
.events-wrap {
grid-template-columns: repeat(2, 1fr);
}
} @media (max-width: 767px) {
.events-wrap {
grid-template-columns: 1fr;
}
}
.event-item {
border: 1px solid #000000;
box-sizing: border-box;
overflow: hidden; }
.event-image-wrap img {
width: 100%;
height: auto;
display: block;
transition: transform 0.3s ease-in-out; }
.event-content-wrap {
padding: 15px;
}
.event-item:hover .event-image-wrap img {
transform: scale(1.1); }
.event-title-wrap {
margin-top: 10px;
padding-bottom: 0px;
}
.event-title {
font-family: 'Montserrat', Helvetica, Arial, Lucida, sans-serif;
font-weight: 600;
font-size: 20px;  
line-height: 23px;
min-height: 80px;
color: #802650;
}
.event-meta .fas::before{
padding-right: 5px;
font-size: 20px;
}
.event-schedule-warp {
display: flex;
flex-direction: row;
justify-content: space-between;
font-size: 15px;
}
.event-schedule-warp .event-date {
align-items: flex-start;  
padding: 10px;
background-color: rgba(0, 0, 0, 0.05);
float: none;
font-weight: 500;
font-size: 18px;
}
.event-schedule-warp .event-time {
align-items: flex-end;
padding: 10px;
background-color: rgba(0, 0, 0, 0.05);
float: none;
font-weight: 500;
font-size: 18px;
}
.event-location-warp {
display: flex;
flex-direction: row;
font-size: 15px;
margin: 10px 0;
}
.event-location-warp .event-location {  
width: 100%;
padding: 10px;
background-color: rgba(0, 0, 0, 0.05);
} @media (max-width: 1024px) {
.event-item {
flex: 1 0 calc(50% - 20px);
}
}
@media (max-width: 768px) {
.event-item {
flex: 1 0 100%;
}
}
/**
.owl-carousel-eventos .owl-dots{
margin-top: 20px;
text-align: center;
}
.owl-carousel-eventos .owl-dots .owl-dot span {
width: 10px;
height: 10px;
margin: 5px 7px;
background: #D6D6D6;
display: block;
-webkit-backface-visibility: visible;
transition: opacity .2s ease;
border-radius: 30px;
}
.owl-carousel-eventos .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
background: #802650;
}