.home__main {
  margin: auto;
  padding: 0 0 2rem;
  max-width: 1920px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 48px;
  flex-grow: 1;
}

.home__hero {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.home__hero-video {
  width: 100%;
  max-width: 1280px;
  height: auto;
}

.home__federation {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 26px;
  padding: 16px 10px 10px;
  position: relative;
  width: 100%;
}

.home__federation-description {
  margin: 0;
  color: var(--main-text-color);
  font-family: 'TT Fors', sans-serif;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: normal;
  width: 100%;
  max-width: 770px;
}

.home__federation-link {
  padding: 10px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  justify-content: space-around;
  font-family: 'TT Autonomous', sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0;
  color: var(--main-text-color);
  background-color: hsl(334, 100%, 50%);
  border-radius: 4px;
  text-transform: uppercase;
}

.home__federation-link:hover {
  background-color: hsl(334, 100%, 60%);
}

.home__announcements {
  margin: auto;
  max-width: 1200px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 48px;
  justify-content: center;
}

.home__events {
  margin: auto;
  max-width: 1218px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  overflow: clip;
}
.home__events-header,
.home__announcements-header {
  margin: 0;
  width: 100%;
  color: var(--main-text-color);
  font-family: 'PHGTL', sans-serif;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: normal;
  text-align: center;
}

.home__events-articles {
  max-width: 360px;
}

.home__disciplines {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.home__disciplines-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 1200px;
}

.home__disciplines-header {
  margin: 0;
  color: var(--main-text-color);
  font-family: 'PHGTL', sans-serif;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: normal;
  text-align: center;
}
.home__swiper-navigation {
  margin-top: 14px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media screen and (min-width: 768px) {
  .home__events-articles {
    max-width: 768px;
  }
  .home__disciplines-content {
    gap: 48px;
  }
}
@media screen and (min-width: 1200px) {
  .home__federation {
  }
  .home__federation-description {
    max-width: 1100px;
    font-size: 36px;
  }

  .home__federation-link {
    font-size: 20px;
  }
  .home__events {
    gap: 40px;
  }
  .home__events-articles {
    max-width: 1218px;
  }
  .home__events-header,
  .home__announcements-header {
    font-size: 48px;
  }
  .home__disciplines {
    gap: 40px;
  }
  .home__disciplines-header {
    font-size: 48px;
  }
}
