h2 {
  margin-top: 0px;
  line-height: 1;
  font-size: 42px;
  color: white;
  margin-bottom: 35px;
  position: relative;
}
.view_all {
  display: block;
  position: relative;
  text-align: right;
  padding-left: 70px;
  border-bottom: 2px solid rgba(230, 231, 233, 0.1);
  color: white;
  text-transform: uppercase;
  font-family: Roboto-Bold;
  margin-bottom: 40px;
}
.view_all::after {
  content: '';
  position: absolute;
  left: 0;
  display: block;
  bottom: 3px;
  height: 16px;
  width: 70px;
  background-color: #f73646;
}
.eventSale {
  display: inline-block;
  padding: 10px 20px;
  border: 2px solid #f73646;
  background-color: #f73646;
  float: right;
  text-align: center;
  color: white;
  line-height: 1;
  margin-top: 5px;
  font-size: 11px;
  text-transform: uppercase;
  transition: all 0.25s ease-in-out;
  margin-right: 10px;
}
.eventSale.soldOut {
  color: #f73646;
  background-color: white;
}
.eventSale.soldOut:hover {
  color: white;
  background-color: #f73646;
}
.eventSale:hover {
  background-color: #f73646;
  border-color: #f73646;
  text-decoration: none;
  color: white;
}
.eventSale:focus {
  outline: none;
  color: white !important;
  text-decoration: none;
}
a.loadMore {
  color: white;
  text-transform: uppercase;
  position: relative;
  text-decoration: none;
  transition: all 0.25s ease-in-out;
  cursor: pointer;
}
a.loadMore:hover {
  color: #f73646;
}
a.loadMore:hover:after {
  border-top: 7px solid #f73646;
}
a.loadMore:before {
  position: absolute;
  bottom: -20px;
  content: '';
  border-right: 6px solid transparent;
  border-left: 6px solid transparent;
  width: 10px;
  height: 10px;
  border-top: 6px solid #181f2b;
  left: 0;
  right: 0;
  margin: auto;
  Z-INDEX: 3;
}
a.loadMore:after {
  position: absolute;
  bottom: -20px;
  content: '';
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
  width: 10px;
  height: 10px;
  border-top: 7px solid white;
  left: 0;
  right: 0;
  margin: auto;
  Z-INDEX: 2;
}
.closed-event {
  opacity: 0.5;
}
.imgMoreArticles {
  transition: all 0.3s ease-in-out;
  position: relative;
  overflow: hidden;
}
.imgMoreArticles:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: 50% 0;
  transform-origin: 50% 0;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.4s;
  transition-duration: 0.4s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.imgMoreArticles:hover:before {
  transform: scaleY(1);
}
