
.categoriesSection{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  margin-bottom: 2em;
}
.category a{
  font-weight: 500;
  margin: 10px;
  text-transform: uppercase;
  color: rgb(62, 62, 64);
}
.active a{
  color: #f37123;
}
.events{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
}
.event{
  width: 16em;
  height: 18em;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  padding: 10px;
  margin-bottom: 2em;
}

.layer{
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0.7;
  top: 0;
  left: 0;
}
.eventDate{
  margin-top: 1em;
  font-weight: 500;
  color: white;
  font-family: inherit;
  text-transform: uppercase;
  font-size: 24px;
}
@media(max-width: 768px){

	.eventDate{
 
  font-size: 20px;
}
}
.eventOverview p {
  font-weight: 400;
  color: white;
  font-family: inherit;
}
.eventCategories{
  line-height: initial;
  font-size: 16px;
}
.eventContent{
  position: relative;
}
.eventTitle{
  margin-bottom: 0px;
  text-transform: uppercase;
}
.eventInfo {
  font-weight: 400;
  color: white;
  font-family: inherit;
  font-size: 16px;
}
.eventLink{
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.arrowIcon{
  color: white;
  position: absolute;
  right: 5px;
  bottom: 15px;
  display: none;
}
.event:hover .arrowIcon{
  display: block;
}
.event:hover .layer{
  opacity: 0.9;
}