.initiatives {
  position: relative;
  padding: 60px min(27px, max(16px, calc(27px + 50vw - 180px))) 80px;
  margin-top: 102px;
}

.initiatives * {
  position: relative;
}

.initiatives-selector {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.initiatives-selector-item {
  width: 235px;
  height: 50px;
  border-radius: 25px;
  border: 1px solid #707070;
  font-weight: 500;
  font-size: 16px;
  line-height: 50px;
  text-align: center;
  color: #000;
  background-color: #fff;
}

.initiatives-selector-item.active {
  background-color: #fc9300;
  color: #fff;
  border: 1px solid #fc9300;
}

.initiatives-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 405px));
  max-width: 830px;
  margin: 60px auto 0;
  gap: 40px;
  justify-content: center;
}

.initiatives-item {
  padding: 20px 20px 40px;
  border-radius: 20px;
  background: #fff;
  border: 2px solid #2dbe95;
  max-width: 405px;
}

.initiatives-item__title {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 20px;
  color: #2dbe95;
  text-align: center;
}

.initiatives-item__image {
  display: block;
  margin: 20px auto 0;
  width: fit-content;
}

.initiatives-item__image img {
  object-fit: contain;
  height: auto;
}

.initiatives-item__text {
  margin-top: 17px;
}

.initiatives-item:first-child .initiatives-item__image img {
  width: 85px;
}

.initiatives-item:nth-child(2) .initiatives-item__image img {
  width: 81px;
}

.initiatives-item:nth-child(3) .initiatives-item__image img {
  width: 80px;
}

.initiatives-item:nth-child(4) .initiatives-item__image img {
  width: 75px;
}

.initiatives-item:nth-child(5) .initiatives-item__image img {
  width: 100px;
}

.initiatives-item:nth-child(6) .initiatives-item__image img {
  width: 56px;
}

.initiatives-item:last-child .initiatives-item__image img {
  width: 131px;
}

@media (min-width: 768px) {
  .initiatives-selector {
    flex-direction: row;
    justify-content: center;
  }

  .initiatives {
    padding-top: 42px;
    margin-top: 198px;
    padding-bottom: 200px;
  }

  .initiatives-wrapper {
    column-gap: 20px;
    row-gap: 50px;
    margin-top: 100px;
  }

  .initiatives-selector-item {
    cursor: pointer;
  }

  .initiatives-item {
    padding: 20px;
    height: 510px;
  }

  .initiatives-item__title {
    font-size: 24px;
  }

  .initiatives-item__image {
    margin: 0 auto;
    height: 282px;
    display: flex;
    align-items: center;
  }

  .initiatives-item:first-child .initiatives-item__image img {
    width: 169px;
  }

  .initiatives-item:nth-child(2) .initiatives-item__image img {
    width: 161px;
  }

  .initiatives-item:nth-child(3) .initiatives-item__image img {
    width: 160px;
  }

  .initiatives-item:nth-child(4) .initiatives-item__image img {
    width: 149px;
  }

  .initiatives-item:nth-child(5) .initiatives-item__image img {
    width: 200px;
  }

  .initiatives-item:nth-child(6) .initiatives-item__image img {
    width: 112px;
  }

  .initiatives-item:last-child .initiatives-item__image img {
    width: 262px;
  }

  .initiatives-item__text {
    margin-top: 0px;
  }

  .initiatives-item__image img {
    object-fit: contain;
    height: auto;
    max-height: 164px;
  }
}
