.tech-stack-section {
  padding-top: 120px;
  padding-bottom: 120px;
}

.tech-stack-section .section-title {
  margin-bottom: 24px;
  font-family: Satoshi, sans-serif;
  font-size: 64px;
  font-style: normal;
  font-weight: 700;
  line-height: 72px; /* 112.5% */
  color: #F5F7FC;
}

.tech-stack-section .section-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.tech-stack-section .section-content-title {
  margin-bottom: 12px;
  font-family: Satoshi, sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: 40px; /* 125% */
  color: #F5F7FC;
}

.tech-stack-section .section-content-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.tech-stack-section .section-content-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  background: var(--e-global-opacity-black-064);
  border-radius: 12px;
}

.tech-stack-section .section-content-item-image {
  width: 64px;
  height: 64px;
  object-fit: cover;
  object-position: center;
}

.tech-stack-section .section-content-item-name {
  padding: 0;
  margin: 0;
  font-family: Satoshi, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  font-feature-settings: 'liga' off;
  line-height: 24px; /* 150% */
  color: #F5F7FC;
  text-align: center;
}

@media screen and (min-width:1530px) {
  .tech-stack-section .section-content-list {
    grid-template-columns: repeat(6, 1fr);
  }


  .tech-stack-section .section-content-item {
    min-height: 140px;
  }
}

@media screen and (max-width: 1360px) {
  .tech-stack-section {
    padding-top: clamp(40px, -10.9091px + 9.0909vw, 120px);
    padding-bottom: clamp(40px, -10.9091px + 9.0909vw, 120px);
  }

  .tech-stack-section .section-title {
    font-size: clamp(40px, 24.7273px + 2.7273vw, 64px);
    line-height: 1.125;
  }

  .tech-stack-section .section-content-title {
    font-size: clamp(28px, 25.4545px + 0.4545vw, 32px);
    line-height: 1.25;
  }

  .tech-stack-section .section-content-wrapper {
    gap: clamp(32px, 11.6364px + 3.6364vw, 64px);
  }
}

@media screen and (max-width:1024px) {
  .tech-stack-section .section-content-list {
    display: flex;
    overflow-x: auto;
  }

  .tech-stack-section .section-content-list::-webkit-scrollbar {
    width: 0 !important;
    height: 0 !important;
  }

  .tech-stack-section .section-content-list::-webkit-scrollbar-track {
    background: transparent !important;
  }

  .tech-stack-section .section-content-list::-webkit-scrollbar-thumb {
    background: transparent !important;
  }


  .tech-stack-section .section-content-item {
    flex: 0 0 120px ;
  }
}

@media screen and (max-width: 560px) {
  .tech-stack-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .tech-stack-section .section-title {
    font-size: 40px;
    line-height: 48px;
  }

  .tech-stack-section .section-content-title {
    font-size: 28px;
    line-height: 36px;
  }

  .tech-stack-section .section-content-wrapper {
    gap: 32px;
  }
}