/* about */
.about {
  position: relative;
}

.about__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 80px 14px 72px 14px;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .about__container {
    gap: 28px;
    padding: clamp(80px, 8.33vw, 120px) clamp(40px, 11.8vw, 170px) clamp(90px, 9.72vw, 140px) clamp(40px, 11.8vw, 170px);
  }
}

.powerTX {
  z-index: 1000;
  position: absolute;
  width: 106px;
  height: 72px;
  bottom: -34px;
  left: 20px;
}

@media screen and (min-width: 768px) {
  .powerTX {
    width: clamp(180px, 19.44vw, 280px);
    height: clamp(120px, 13.26vw, 191px);
    bottom: clamp(-55px, -5.69vw, -82px);
    left: clamp(60px, 6.94vw, 100px);
  }
}

@media screen and (min-width: 1441px) {
  .powerTX {
    left: calc((100vw - 1360px) / 2 + 100px);
  }
}

.about__description {
  letter-spacing: unset;
}

@media screen and (min-width: 768px) {
  .about__description {
    letter-spacing: 0.02em;
  }
  
}