/* about  */

.about-img {
  width: 100%;
  height: 406px;
  border-radius: 24px;
  overflow: hidden;
  background-image: url(../img/about.jpg);
  background-position: center;
  background-size: cover;
  margin-top: 24px;
}

@media screen and (min-width: 1436px) {
  .about-img {
    height: 367px;
  }
}

/* story  */

.story1 {
  width: 100%;
  margin-top: 24px;
}

.story2 {
  width: 100%;
  height: 500px;
  border-radius: 24px;
  background-image: url(../img/story2.png);
  background-position: center;
  background-size: cover;
  margin-top: 24px;
}

@media screen and (min-width: 1436px) {
  .story-container {
    display: flex;
    align-items: center;
    gap: 88px;
    flex-direction: row-reverse;
  }

  .story2 {
    width: 510px;
    flex-shrink: 0;
  }
}

/* mission  */

.mission-container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mission-list {
  display: flex;
  flex-direction: column;
  gap: 20px;

  li {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 133%;
    background: linear-gradient(180deg, #fdfdfd 0%, #5c5c5c 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    span {
      font-weight: 600;
      font-size: 24px;
    }
  }
}

@media screen and (min-width: 1436px) {
  .mission-container {
    display: flex;
    flex-direction: row;
    gap: 88px;
  }

  .mission-list {
    li {
      font-size: 18px;
      span {
        font-size: 32px;
      }
    }
  }
}

/* meet  */

.meet-title {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 40px;
  line-height: 120%;
  color: #fff;
  margin-top: 20px;
  margin-bottom: 20px;
}

.meet-description {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 156%;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
}

.meet-next {
  opacity: 0.5;
  margin-left: auto;
  transition: opacity 0.3s ease;
}

.meet-next:hover,
.meet-next:focus {
  opacity: 1;
}

.meet-item {
  img {
    width: 100%;
  }

  p,
  span {
    display: none;
  }
}

@media screen and (min-width: 1436px) {
  .meet-container {
    display: flex;
    align-items: center;
    gap: 80px;
    flex-direction: row-reverse;
  }

  .meet-swiper {
    width: 735px;
    margin: 0;
    flex-shrink: 0;
  }

  .meet-title {
    font-size: 48px;
  }

  .meet-description {
    font-size: 20px;
  }
}

/* join  */

.join-text {
  font-size: 24px;
}

@media screen and (min-width: 1436px) {
  .join-container {
    display: flex;
    align-items: center;
    gap: 44px;
  }

  .join-text {
    font-size: 30px;
  }
}

/* ********************* */

.hidden {
  display: none;
}

.menu-transform {
  transform: translateY(0);
}

.click {
  background-image: url(../img/minus.png);
  transform: rotate(180deg);
}

.popup-click {
  transform: translateY(130%) translateX(-50%);
}

.overflow {
  overflow: hidden;
}
