/* about  */

.about {
  padding-top: 230px;
  padding-bottom: 280px;
  background-image: url(../img/about.jpg);
  background-position: center;
  background-size: cover;
}

@media screen and (min-width: 1436px) {
  .about {
    padding-top: 280px;
    padding-bottom: 370px;
  }
}

/* description  */

.desciption-img {
  width: 100%;
  margin: 0 auto;
  margin-bottom: 22px;
}

.description-text {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 162%;
  text-align: center;
  color: #030809;
}

@media screen and (min-width: 1436px) {
  .description-container {
    display: flex;
    align-items: center;
    gap: 40px;
  }

  .desciption-img {
    width: auto;
    margin: 0;
    flex-shrink: 0;
  }

  .description-text {
    text-align: start;
  }
}

/* mission  */

.mission {
  background-image: url(../img//bg.png);
  background-size: cover;
  padding-bottom: 0;
}

.mission-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 22px;

  li {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  h5 {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 20px;
    line-height: 130%;
    text-align: center;
    color: #030809;
  }

  p {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;
    text-align: center;
    color: #030809;
  }
}

@media screen and (min-width: 1436px) {
  .mission-container {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 145px;
  }
}

/* features  */

.features {
  background: #3b44f6;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 20px;

  div {
    width: 100%;
    height: 6px;
    border-radius: 99px;
    box-shadow: 0 0 25px #a097b4;
    background-color: #fff;
    margin-bottom: 24px;
  }

  h5 {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 20px;
    line-height: 120%;
    text-align: center;
    color: #fff;
    margin-bottom: 6px;
  }

  p {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: -0.02em;
    text-align: center;
    color: #fff;
  }
}

@media screen and (min-width: 768px) {
  .features-list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 30px;

    li {
      width: calc((100% - 30px) / 2);
    }
  }
}

@media screen and (min-width: 1436px) {
  .features-list {
    gap: 60px;

    li {
      width: calc((100% - 180px) / 4);
    }
  }
}

/* team  */

.team-text {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 162%;
  text-align: center;
  color: #030809;
  margin-bottom: 40px;
}

.team-list {
  display: flex;
  flex-direction: column;
  gap: 12px;

  li {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  h6 {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 20px;
    line-height: 130%;
    text-align: center;
    color: #030809;
  }

  p {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;
    text-align: center;
    color: #030809;
  }
}

@media screen and (min-width: 768px) {
  .team-list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 40px;

    li {
      width: calc((100% - 40px) / 2);
    }
  }
}

@media screen and (min-width: 1436px) {
  .team-text {
    margin-bottom: 40px;
  }

  .team-list {
    li {
      width: calc((100% - 120px) / 4);
    }
  }
}

/* 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;
}
