.about_hero {
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.about_hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 800px) {
  .about_hero {
    height: 90vh;
  }
}
@media (max-width: 600px) {
  .about_hero {
    height: 65vh;
  }
}

.about_info {
  width: 100%;
  background-color: var(--main-background-color-white);
  padding: 8.75em 1.56em;
}
.about_info .about_info_wrapper {
  width: 100%;
  max-width: 1400px;
  gap: 3.75em;
}
.about_info .about_info_wrapper .image {
  width: 50%;
}
.about_info .about_info_wrapper .image img {
  width: 100%;
}
.about_info .about_info_wrapper .column {
  width: calc(50% - 3.75em);
  gap: 2.5em;
}
.about_info .about_info_wrapper .column .title_h1 {
  font-size: 4em;
}
@media (max-width: 600px) {
  .about_info .about_info_wrapper .column .title_h1 {
    font-size: 3em;
  }
}
.about_info .about_info_wrapper .column .richText {
  width: 100%;
}
@media (max-width: 1050px) {
  .about_info .about_info_wrapper {
    gap: 2.5em;
  }
  .about_info .about_info_wrapper .column {
    width: calc(50% - 2.5em);
  }
}
@media (max-width: 850px) {
  .about_info .about_info_wrapper {
    flex-direction: column-reverse;
  }
  .about_info .about_info_wrapper .image {
    width: 100%;
  }
  .about_info .about_info_wrapper .column {
    width: 100%;
  }
}
@media (max-width: 600px) {
  .about_info {
    padding: 5em 10px;
  }
  .about_info .about_info_wrapper .column .btn {
    width: 100%;
  }
}

.about_video {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}
.about_video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about_video .video_cover {
  width: 100%;
  height: 100%;
}
.about_video .video_cover .bg {
  width: 100%;
  height: 100%;
  background-color: var(--main-color);
  opacity: 0.5;
}
.about_video .video_cover .play svg {
  width: 2.5em;
}
.about_video .video_cover .play span {
  color: var(--main-background-color-white);
  font-size: 1.25em;
  font-weight: 400;
  line-height: 1.2em;
}
@media (max-width: 1400px) {
  .about_video {
    height: auto;
  }
}

.about_separator {
  width: calc(100% - 3.12em);
  background-color: #E8E8F0;
  margin: 5em 1.56em;
}
@media (max-width: 600px) {
  .about_separator {
    width: calc(100% - 20px);
    background-color: #E8E8F0;
    margin: 5em 10px;
  }
}

.about_club {
  width: 100%;
  gap: 1.25em;
  padding: 8.75em 1.56em;
}
.about_club .richText {
  width: 50%;
}
.about_club .richText.text_bottom {
  align-self: flex-end;
}
.about_club .about_gallery {
  width: 100%;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-gap: 10px;
  margin: 2.5em 0;
}
.about_club .about_gallery .image {
  width: 100%;
  overflow: hidden;
}
.about_club .about_gallery .image:first-child {
  grid-column: 1/2;
  grid-row: 1/3;
}
.about_club .about_gallery .image:nth-child(2) {
  grid-column: 2/4;
  grid-row: 1/2;
}
.about_club .about_gallery .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
}
@media (min-width: 1200px) {
  .about_club .about_gallery .image:hover img {
    transform: scale(1.05);
  }
}
.about_club .about_gallery .image.more {
  height: 100%;
}
.about_club .about_gallery .image.more img {
  display: none;
}
.about_club .about_gallery .image.more svg {
  width: 50%;
  max-width: 11em;
  transition: transform 0.3s ease;
}
@media (min-width: 1200px) {
  .about_club .about_gallery .image.more:hover svg {
    transform: rotate(90deg);
  }
}
.about_club .about_gallery .image.hidden {
  display: none;
}
@media (max-width: 850px) {
  .about_club .richText {
    width: 100%;
  }
}
@media (max-width: 600px) {
  .about_club {
    padding: 0.625em 10px;
  }
  .about_club .about_gallery {
    grid-template-columns: 1fr 1fr;
  }
  .about_club .about_gallery .image:first-child {
    grid-column: 1/3;
    grid-row: 1/2;
  }
  .about_club .about_gallery .image:nth-child(2) {
    grid-column: 1/3;
    grid-row: 2/3;
  }
}

.about_journey {
  width: 100%;
  height: 100vh;
  padding: 0 1.56em;
  margin-bottom: 2.5em;
}
.about_journey .journey_svg {
  width: 100%;
}
.about_journey .column {
  width: 100%;
  gap: 1.25em;
}
.about_journey .column .text {
  color: var(--main-text-color-dark);
  font-size: min(10vw, 200px);
  font-weight: 300;
  line-height: 1.2em;
  text-align: center;
}
.about_journey .column .text div {
  color: var(--main-text-color-dark);
  font-size: 1em;
  font-weight: 300;
  line-height: 1.2em;
  text-align: center;
}
.about_journey .column .btn {
  width: 100%;
  max-width: 600px;
}
@media (max-width: 900px) {
  .about_journey {
    height: auto;
    padding: 15em 1.56em;
  }
}
@media (max-width: 750px) {
  .about_journey {
    height: auto;
    padding: 10em 1.56em;
  }
}
@media (max-width: 600px) {
  .about_journey {
    padding: 10em 10px;
  }
  .about_journey .journey_svg {
    display: none;
  }
}

/*# sourceMappingURL=about.css.map */
