.festival-page {
  font-family: 'Formular', Arial, sans-serif;
}

.container {
  max-width: 1440px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
  box-sizing: border-box;
}

.festival-page section > *:first-child {
  margin-top: 0;
}

.festival-page section > *:last-child {
  margin-bottom: 0;
}

.festival-page section {
  margin-bottom: 50px;
}

.festival-page h2 {
  margin: 0 0 30px;
  font-weight: 600;
  color: #009fe3;
  text-transform: uppercase;
  font-size: 36px;
  line-height: 1.23;
}

.festival-page p {
  margin: 20px 0 30px;
  font-weight: 300;
  color: #000;
  font-size: 20px;
  line-height: 1.55;
}

.festival-page p b {
  font-weight: 700;
}

.festival-page .cols-2 {
  display: flex;
  gap: 40px;
  margin-bottom: 50px;
}

.festival-page .cols-2 > * {
  width: 50%;
}

.festival-page .cols-2.align-center {
  align-items: center;
}

.festival-page .cols-2 img {
  width: 100%;
  height: auto;
}

.festival-page .cols-2__text > *:first-child {
  margin-top: 0;
}

.festival-page .cols-2__text > *:last-child {
  margin-bottom: 0;
}

.festival-page .description {
  max-width: 900px;
}

.festival-page .subtitle {
  font-size: 16px;
  margin-bottom: 10px;
}

.festival-page__cols-2 {
  width: 100%;
  display: flex;
  gap: 20px;
}

.festival-page__cols-2 > * {
  width: 50%;
  height: auto;
}

.festival-page .event-list {
  margin: -18px;
  display: flex;
  flex-wrap: wrap;
}

.festival-page .event-list-item {
  width: calc(20% - 36px);
  margin: 18px;
  text-align: center;
}

.festival-page .event-list-item__image-wrapper {
  position: relative;
  width: 100%;
  padding-top: 100%;
  margin-bottom: 15px;
  overflow: hidden;
  border-radius: 50%;
}

.festival-page .event-list-item__image {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.festival-page .event-list-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.festival-page .event-list-item__title {
  text-transform: uppercase;
}

@media screen and (max-width: 1200px) {
  .container {
    padding-left: 30px;
    padding-right: 30px;
  }

  .festival-page .event-list {
    margin: -15px;
  }

  .festival-page .event-list-item {
    width: calc(25% - 30px);
    margin: 15px;
  }
}

@media screen and (max-width: 968px) {
  .festival-page .cols-2 {
    flex-direction: column;
    gap: 20px;
  }

  .festival-page .cols-2__text, .festival-page .cols-2__img {
    width: 100%;
  }

  .festival-page .cols-2__img {
    order: 0;
  }
  .festival-page .cols-2__text {
    order: 1;
  }

  .festival-page .event-list {
    margin: -15px;
  }

  .festival-page .event-list-item {
    width: calc(33.33% - 30px);
    margin: 15px;
  }

  .festival-page p {
    font-size: 18px;
  }
}

@media screen and (max-width: 640px) {
  .festival-page .event-list-item {
    width: calc(50% - 30px);
  }
}

@media screen and (max-width: 576px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .festival-page p {
    font-size: 16px;
    line-height: 1.45;
    margin: 20px 0 30px;
  }

  .festival-page .subtitle {
    font-size: 14px;
    margin-bottom: 2px;
  }

  .festival-page h2 {
    font-size: 28px;
  }

  .festival-page .event-list {
    margin: -10px -15px;
  }

  .festival-page .event-list-item {
    margin: 10px 15px;
  }

  .festival-page .event-list-item__image-wrapper {
    margin-bottom: 10px;
  }

  .festival-page .event-list-item__title {
    font-size: 14px;
  }
}

@media screen and (max-width: 400px) {
  .festival-page .event-list-item {
    width: 100%;
    margin: 15px 0;
  }
}