.features-gray {
  background-image: url("/assets/images/features-gray/bg.jpg");
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  width: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.features-gray::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 1) 0%,
    transparent 10%,
    transparent 90%,
    rgba(0, 0, 0, 1) 100%
  );
}

.features-gray__container {
  text-align: center;
  max-width: 908px;
  margin: 0 auto;
}

.features-gray__title {
  font-family: "Akrobat", sans-serif;
  font-weight: 600;
  font-size: 72px;
  line-height: 100%;
  text-transform: uppercase;

  background: #000000;
  background: linear-gradient(
    135deg,
    rgb(0, 0, 0) 0%,
    rgba(255, 255, 255, 1) 50%,
    rgba(255, 255, 255, 1) 75%,
    rgb(26, 26, 26) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0;
}

.features-gray__text {
  margin-top: 25px;
  font-family: "Inter Tight", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  letter-spacing: 0;
  color: #afafaf;
}

.features-gray__list {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
}

.features-gray__item-image {
  width: 200px;
  height: 164px;
}

.features-gray__item-text {
  margin-top: 30px;
  font-family: "Inter Tight", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: 0;
  color: #afafaf;
}

.features-gray__item-text strong {
  font-weight: 600;
  color: #fff;
}

@media (max-width: 1024px) {
  .features-gray {
    background-position: center;
  }

  .features-gray__item-image {
    width: 160px;
    height: 131px;
  }

  .features-gray__item-text {
    font-size: 14px;
    margin-top: 20px;
  }
}

@media (max-width: 900px) {
  .features-gray__container {
    margin: 0 30px;
  }
}

@media (max-width: 768px) {
  .features-gray {
    padding-top: 10px;
    padding-bottom: 100px;
  }

  .features-gray__container {
    margin: 0 20px;
  }

  .features-gray__title {
    font-size: 40px;
    background: linear-gradient(
      135deg,
      rgb(0, 0, 0) 0%,
      rgba(255, 255, 255, 1) 50%,
      rgb(26, 26, 26) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .features-gray__item-image {
    width: 200px;
    height: 164px;
  }

  .features-gray__item-text {
    font-size: 16px;
    margin-top: 30px;
  }

  .features-gray__list {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
}
