/* TECH STACK */
.services-content .its-tech_stack {
  background: #ffffff;
}
.services-content .its-tech_stack .tech-stack__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.services-content .its-tech_stack .tech-stack__item {
  background: #f8fafc;
  border: 1px solid #cfd8dc;
  border-radius: 4px;
  padding: 30px 25px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}
.services-content .its-tech_stack .tech-stack__item:hover {
  transform: translateY(-3px);
  border-color: #e35d44;
  box-shadow: 0 5px 15px rgba(227, 93, 68, 0.06);
}
.services-content .its-tech_stack .tech-stack__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 4px;
  background: rgba(227, 93, 68, 0.06);
  margin-bottom: 20px;
  color: #e35d44;
}
.services-content .its-tech_stack .tech-stack__icon img {
  max-width: 24px;
  max-height: 24px;
}
.services-content .its-tech_stack .tech-stack__icon--svg svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
}
.services-content .its-tech_stack .tech-stack__name {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #152f3d;
  margin: 0 0 12px;
}
.services-content .its-tech_stack .tech-stack__copy {
  font-size: 15px;
  color: #555555;
}
.services-content .its-tech_stack .tech-stack__copy p {
  margin: 0 0 10px;
}
