.techno {
  position: relative;
  padding: 120px 0 200px;
  overflow: hidden;
}
.techno-items {
  display: flex;
  flex-direction: column;
  gap: 65px;
}
.techno-title {
  color: rgb(58, 58, 59);
  font-size: clamp(42px, 10vw, 80px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -2.3px;
  text-transform: uppercase;
  transition: all 0.3s;
}
.techno-title span {
  color: rgb(58, 58, 59);
}
.techno-title.aos-animate {
  color: #890607;
  transition: all 0.3s;
}
.techno-title.aos-animate span {
  color: #fff;
  transition: all 0.3s;
}
.techno-item {
  position: relative;
  display: flex;
  gap: 50px;
}
.techno .aos-animate .techno-title {
  color: #890607;
  transition: all 0.3s;
}
.techno .aos-animate .techno-title span {
  color: #fff;
  transition: all 0.3s;
}
.techno .aos-animate .techno-element {
  border-color: rgb(176, 7, 7);
}
.techno .aos-animate .techno-element p {
  color: #fff;
}
.techno-elements {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
  margin-top: 10px;
  position: relative;
}
.techno-element {
  background: rgba(176, 7, 7, 0.16);
  flex: 0 0 310px;
  padding: 13px 25px;
  border: 1px solid rgb(58, 58, 59);
  border-radius: 16px;
  transition: all 0.3s;
}
.techno-element span {
  color: rgba(255, 255, 255, 0.45);
  font-family: "Gilroy";
  font-size: 16px;
  font-weight: 300;
  line-height: 1.3;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.techno-element p {
  color: rgba(255, 255, 255, 0.6);
  font-family: "Gilroy";
  font-size: clamp(16px, 5vw, 21px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 8px;
  text-transform: uppercase;
  transition: all 0.3s;
}
@media (max-width: 1700px) {
  .techno-items {
    gap: 50px;
  }
  .techno-item {
    gap: 20px;
    flex-direction: column;
  }
  .techno-elements {
    position: relative;
    margin-left: 0;
  }
}
@media (max-width: 1270px) {
  .techno-item {
    flex-direction: column;
  }
}
@media (max-width: 992px) {
  .techno {
    padding: 100px 0 100px;
  }
  .techno-element:first-child {
    margin-left: 0;
  }
}
@media (max-width: 480px) {
  .techno {
    padding: 60px 0 60px;
  }
  .techno-title {
    line-height: 1;
  }
}