.techno-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  background-color: var(--color-neutral--6);
  padding: 48px 36px;
  border-radius: 5px;
  text-align: center;
  min-width: 290px;
  color: var(--color-neutral--2);
}
.techno-item p {
  margin: 0;
}
.techno-item__title p{
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 125%;
}
.techno-item__text p{
  font-size: 1rem;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0.18px;
  font-family: var(--font-fraunces);
}
@media all and (min-width: 768px){
  .techno-item {
    max-width: 324px;
  }
  .techno-item p {
    max-width: 230px;
  }
}
