.what-we-achived-block {
    position: relative;
    display: flex;
    align-items: flex-start;
    width: 100%;
    padding: 60px 20px;
    min-height: 50vh;
}

.what-we-achived__container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 3em;
}

.what-we-achived__title {
    font-family: var(--second-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 90%;
    letter-spacing: -0.06em;
    text-transform: uppercase;
    color: #f2f2f2;
    margin: 0;
}

.what-we-achived__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  column-gap: clamp(24px, 3vw, 64px);
  row-gap: clamp(16px, 2vw, 40px);
  align-items: start;
  width: 100%;
}

.what-we-achived__item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 2em;
}

.what-we-achived__item-top {
    display: flex;
    flex-direction: column;
}

.what-we-achived__metric {
    font-family: var(--first-family);
    font-weight: 600;
    font-size: 100px;
    line-height: 100%;
    letter-spacing: -0.02em;
    color: #f2f2f2;
    margin: 0;
}

.what-we-achived__subtitle {
    font-family: var(--second-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 110%;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: #f2f2f2;
}

.what-we-achived__item-bottom {
    display: flex;
    width: 100%;
    max-width: 260px;
}

.what-we-achived__text {
    font-family: var(--second-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 110%;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: #f2f2f2;
    margin: 0;
}

@media (max-width: 1200px) {
  .what-we-achived__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .what-we-achived__metric {
    font-size: 80px;
  }
}

@media (max-width: 1024px) {
  .what-we-achived__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .what-we-achived__grid {
    grid-template-columns: 1fr;
    gap: 2em;
  }

  .what-we-achived__item {
    gap: 1em;
  }

  .what-we-achived__metric {
    font-size: 60px;
  }

  .what-we-achived__subtitle {
    font-size: 15px;
  }

  .what-we-achived__text {
    font-size: 15px;
  }
}