.about-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;
}

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

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

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

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

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

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

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

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

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

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

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

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

.about-page .link-cards {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  width: calc(100% + 20px);
  gap: 20px;
}

.about-page .link-card {
  width: calc(25% - 20px);
  display: flex;
  flex-direction: column;
  cursor: pointer;
  text-decoration: none;
}

.about-page .link-card__image-wrapper {
  position: relative;
  width: 100%;
  padding-top: 49.23%;
}

.about-page .link-card__image {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}

.about-page .link-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about-page .link-card__body {
  position: relative;
  background: #6666cc;
  padding: 22px 60px 22px 28px;
  flex-grow: 1;
  font-size: 20px;
  line-height: 1.20833;
  font-weight: 500;
  text-transform: uppercase;
  color: #fff;
  transition: background 0.25s ease-in-out;
}

.about-page .link-card__arrow {
  position: absolute;
  color: #D1FF10;
  bottom: 28px;
  right: 20px;
  width: 24px;
  height: 16px;
  transition: right 0.25s ease-in-out;
}

.about-page .link-card__arrow svg {
  display: block;
  fill: currentColor;
}

.list-cards {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 20px;
}

.list-card {
  width: calc(33.33% - 20px);
  background: #6666cc;
  padding: 30px 20px;
  color: #ffffff;
  box-sizing: border-box;
  flex-grow: 1;
}

.list-card__title {
  font-size: 22px;
  color: #d1ff10;
  margin-bottom: 18px;
}

.list-card__list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.list-card__list-item {
  position: relative;
  padding-left: 20px;
  font-size: 21px;
  margin-bottom: 24px;
}

.list-card__list-item:before {
  position: absolute;
  content: '';
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #d1ff10;
  left: 0;
  top: 5px;
}


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

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

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

  .about-page .link-card {
    width: calc(33.33% - 20px);
  }

  .list-card {
    width: calc(50% - 20px);
  }
}

@media screen and (max-width: 968px) {
  .about-page .event-list {
    margin: -15px;
  }

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

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

  .about-page .link-card {
    width: calc(50% - 20px);
  }

  .list-cards {
    margin: 0;
  }

  .list-card {
    width: 100%;
  }
}

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

@media screen and (min-width: 577px) {
  .about-page .link-card:hover .link-card__body {
    background: #8ed800;
  }

  .about-page .link-card:hover .link-card__arrow {
    right: 35px;
  }
}

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

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

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

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

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

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

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

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

  .about-page .link-cards {
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
    width: 100%;
    gap: 20px;
  }

  .about-page .link-card {
    width: 100%;
  }

  .about-page .link-card__image-wrapper {
    display: none;
  }

  .about-page .link-card__body {
    padding: 0;
    background: none;
    color: #009fe3;
    display: flex;
    justify-content: space-between;
    font-size: 26px;
    font-weight: 600;
    gap: 10px;
  }

  .about-page .link-card__arrow {
    color: #6666cc;
    position: relative;
    right: auto;
    bottom: auto;
    top: 7px;
    flex-shrink: 0;
  }
}

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