/* About */
#about {
  padding-top: 60px;
}

#about .about__title {
  font-weight: 900;
  font-size: clamp(46px, 6vw, 92px);
  line-height: clamp(55px, 6vw, 110px);
  color: var(--stb-gray);
  text-transform: uppercase;
  opacity: 0.75;
  margin-bottom: -20px;
  max-width: 1200px;
  margin-left: auto;
  z-index: 1;
  position: relative;
}

#about .content__container {
  display: flex;
  gap: 80px;
  justify-content: space-between;
  margin: 80px 0;
  max-width: 1200px;
  margin-inline: auto;
  margin-bottom: 80px;
  height: auto;
}

#about .logo__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  width: 340px;
}

#about .logo__container .logo {
  --size: 200px;
  width: var(--size);
  height: var(--size);
  position: relative;
}

#about .logo__container .logo svg {
  width: 100%;
  height: 100%;
}

#about .logo__container .logo-indicator {
  --indicator-size: 20px;
  width: var(--indicator-size);
  height: var(--indicator-size);
  border-radius: 50%;
  position: absolute;
  translate: -50% -0%;
  opacity: 0;
}

#about .logo__container .logo-indicator.top {
  top: 0%;
  left: 50%;
  background-color: #F4695A;
}

#about .logo__container .logo-indicator.left {
  top: 25%;
  left: 10%;
  background-color: #EE2975;
}

#about .logo__container .logo-indicator.right {
  top: 25%;
  right: 0%;
  background-color: #FAA83E;
}

#about .logo__container .logo-indicator.bottom {
  bottom: 0;
  left: 50%;
  background-color: #F5695A;
}


@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

#about .content__container .logo-text {}

#about .about-texts,
#about .text-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  max-width: 756px;
}

#about .about-texts {
  position: relative;
  width: 100%;
  min-height: 400px;
}

#about .text-content {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  opacity: 0;
}

#about .about-texts .text-content p {
  color: var(--stb-black);
  text-wrap: pretty;
}

#about .about-texts .text-content a {
  width: fit-content;
}

@media screen and (max-width: 1024px) {

  #about .content__container {
    flex-direction: column;
    position: relative;
    gap: var(--stb-space);
    justify-content: flex-start;
    align-items: flex-start;
  }

  #about .logo__container {
    width: 100%;
  }

  #about .stelab-logo__over-section {
    visibility: collapse;
  }

  #about .logo__container .logo {
    position: absolute;
    opacity: 0.25;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
  }

  #about .text-content {
    position: absolute;
    top: 0;
    left: 0;
    transform: translateY(0);
    width: 100%;
    opacity: 0;
  }
}