.festivalWrapper {
  align-items: center;
  justify-content: center;
  background-image: url('../../../images/background/festivals.png');
  height: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.festivalWrapper::after {
  background: #000;
  content: "";
  height: 100%;
  min-height: 100vh;
  left: 0;
  opacity: 0.6;
  position: absolute;
  right: 0;
  top: 0;
}

.festivalWrapper h1 {
  z-index: 5;
}

.festivalContent {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 auto;
  position: static;
  transform: none;
  z-index: 5;
}

.festival {
  flex-basis: 22%;
  margin-top: 5rem;
  margin-right: 2rem;
  text-align: center;
}

.festival h3 {
  text-align: center;
  font-size: 2.0rem;
}

.festival img {
  width: 200px;
  height: 200px;
  border-radius: 100px;
  margin-right: 1rem;
  filter: grayscale(100%);
}

.festival a:hover img {
  filter: grayscale(0);
}


@media (max-width: 450px) {

  .festivalWrapper h1 {
    margin: 30px 0 20px 0;
  }
}

@media (max-height: 500px) {

  .festivalWrapper h1 {
    margin: 30px 0 10px 0;
  }
}

@media (max-width: 768px) {
  .festival {
    flex-basis: 100%;
    margin: 5rem auto 0 auto;
  }

  .festival img {
    width: 150px;
    height: 150px;
    border-radius: 75px;
    filter: grayscale(0);
  }

  .festival h3 {
    font-size: 1.6rem;
    padding: 0 1.5rem;
  }

  .festivalWrapper {
    background-position: center;
  }

}
