
.systems-section {
  padding: 110px 0;
  position: relative;
}
.systems-section .systems-section__top p {
  font: var(--normal-font-16);
  color: var(--font-grey-color);
  width: 100%;
  max-width: 400px;
  margin: 10px auto 0 0;
  text-align: left;
}

.systems-section .systems-section__items-wrapper {
  width: 100%;
  display: flex;
  margin-top: 26px;
  gap: 20px;
}
.systems-section .systems-section__item {
  height: 150px;
  background: linear-gradient(143.46deg, #161617 0%, #1C1E29 100%);
  border-radius: 5px;
  width: calc(100% / 5);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
}
.systems-section .systems-section__item-img-wrapper {
  max-width: 172px;
  display: flex;
  justify-content: center;
}
.systems-section .systems-section__item-img-wrapper img {
  width: 100%;
}

/* Responsiveness */
@media (max-width: 1024px) {
  .systems-section .systems-section__items-wrapper {
    gap: 10px;
  }
  .systems-section .systems-section__item {
    height: 110px;
    width: calc(100% / 5);
  }
  .systems-section .systems-section__item-img-wrapper {
    max-width: 130px;
  }
}

@media (max-width: 768px) {
  .systems-section .systems-section__item {
    height: 80px;
  }
  .systems-section .systems-section__item-img-wrapper {
    max-width: 90px;
  }
}

@media (max-width: 680px) {
  .systems-section .systems-section__items-wrapper {
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0;
  }
  .systems-section .systems-section__item:nth-child(1),
  .systems-section .systems-section__item:nth-child(2) {
    width: calc((100% / 2) - 5px);
  }

  .systems-section .systems-section__item:nth-child(n+3) {
    width: calc((100% / 3) - 5px);
    margin-top: 10px;
  }
}

@media (max-width: 425px) {
  .systems-section .systems-section__item:nth-child(n+3) {
    width: calc((100% / 2) - 5px);
  }
  .systems-section .systems-section__item:nth-child(5) {
    margin: 10px auto 0 auto;
  }
}
