/* ABOUT STYLES */
.about__wrap {
  max-width: 1100px;
  height: 900px;
  margin-top: 40px;
  margin-inline: auto;
  margin-bottom: 200px;
}

.about__heading {
  font-size: 30px;
  font-weight: 800;
  text-align: center;
  color: transparent;
  background: var(--gradientColor);
  background-clip: text;
  -webkit-background-clip: text;
}

.about__desc-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about__desc {
  color: var(--subTextColor);
}

.about__desc-title {
  font-size: 18px;
  font-weight: 700;
}

.about__desc-content {
  font-size: 16px;
  font-weight: 400;
}
/* end ABOUT STYLES */

/* Mobile & Tablet */
@media only screen and (max-width: 1023px) {
  .about__wrap {
    margin-top: var(--headerHeight);
    padding-top: 52px;
    height: 100vh;
    margin-inline: 16px;
    margin-bottom: 50px;
  }

  .about__heading {
    margin-bottom: 30px;
  }
}
