.about_header {
  height: 600px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 30px;
  position: relative;

  p:nth-child(2) {
    font-size: 50px;
    font-weight: 500;
    color: var(--headline-color);
    line-height: 1.2;
    padding-top: 50px;

    @media screen and (max-width: 980px) {
      font-size: 40px;
    }

    @media screen and (max-width: 480px) {
      font-size: 30px;
    }
  }

  p:nth-child(3) {
    font-size: 23px;
    font-weight: 400;
    color: #fff;

    @media screen and (max-width: 980px) {
      font-size: 18px;
    }

    @media screen and (max-width: 480px) {
      font-size: 15px;
    }
  }

  p:nth-child(4) {
    font-size: 23px;
    font-weight: 400;
    color: var(--headline-color);

    @media screen and (max-width: 980px) {
      font-size: 18px;
    }

    @media screen and (max-width: 480px) {
      font-size: 15px;
    }
  }
}

.paddingside {
  padding: 0 90px !important;

  @media screen and (max-width: 980px) {
    padding: 0 30px !important;
  }

  @media screen and (max-width: 480px) {
    padding: 0 10px !important;
  }
}

.ahead {
  font-size: 32px;
  color: var(--headline-color);
  padding: 30px 0;
  font-weight: 600;

  @media screen and (max-width: 980px) {
    font-size: 25px;
  }

  @media screen and (max-width: 480px) {
    font-size: 20px;
  }
}

.about_content {
  font-size: 20px;
  color: #fff;
  padding-bottom: 50px !important;
  line-height: 1.6;

  @media screen and (max-width: 980px) {
    font-size: 18px;
  }

  @media screen and (max-width: 480px) {
    font-size: 15px;
  }

  ul {
    list-style: decimal;
    line-height: 1.8;

    li {
      margin-left: 20px;
      padding-left: 10px;

      span {
        color: var(--headline-color);
        font-weight: 500;
      }
    }
  }

  ul:nth-child(6) {
    li::marker {
      color: var(--headline-color);
    }
  }
}

.dev_about {
  height: 4px;
  width: 100%;
  background-color: #fff;
  position: relative;
  z-index: 9;

  &::after {
    content: "";
    position: absolute;
    right: 0;
    height: 14px;
    width: 150px;
    top: -5px;
    background-color: var(--headline-color);
  }
}

.decoration_right {
  position: absolute;
  height: 10px;
  width: 10px;
  background-color: #f878b8;
  top: 130px;
  right: 17px;

  &::after {
    content: "";
    height: 10px;
    width: 10px;
    background-color: #b8f878;
    top: 0;
    right: -17px;
    position: absolute;
  }

  &::before {
    content: "";
    height: 10px;
    width: 10px;
    background-color: #78b8f8;
    top: 0;
    right: 17px;
    position: absolute;
  }
}
