
.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: flex-start;
}

.event{
  width: 15em;
  height: 18em;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  padding: 10px;
  margin-bottom: 2em;
  margin-right: 4px;
}

@media(max-width: 1220px){

.events{

  justify-content: space-evenly;
}

.event{
 margin-right: 0px;
}

}

/*floating event button code*/
.buttonizer.buttonizer-style-default.bottom.right{
  display: flex;



}
.buttonizer .buttonizer-button{
  background-image: url(/wp-content/plugins/events/images/noun_events.svg);
  background-size: 70%;
  background-position: center;
  background-repeat:no-repeat;
}
.fas{
  display: none;
  /*background-image: url(/wp-content/plugins/events/images/noun_events.svg);
  background-size: 100px 82px !important;*/
}

.layer{
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  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.2;
}
