.pw_hero {
  height: 400px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 70px;

  @media screen and (max-width: 768px) {
    height: 300px;
    gap: 0;
    padding: 30px 0;
    justify-content: space-between;
  }

  .pw_hero_title {
    font-size: 85px;
    font-weight: 400;
    letter-spacing: 3px;
    color: var(--headline-color);
    line-height: 51px;
    padding-bottom: 10px;
    text-align: center;

    @media screen and (max-width: 768px) {
      font-size: 40px;
    }

    @media screen and (max-width: 450px) {
      font-size: 30px;
    }
  }
}

.pw_hero_subtitle {
  font-size: 16px;
  color: #fff;
  letter-spacing: 10px;
  text-align: center;

  @media screen and (max-width: 768px) {
    font-size: 16px;
    letter-spacing: 6px;
  }

  @media screen and (max-width: 450px) {
    font-size: 12px;
    letter-spacing: 4px;
  }
}

.pw_hero_child {
  height: 350px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 70px;

  @media screen and (max-width: 768px) {
    height: 300px;
    gap: 0;
    padding: 30px 0;
    justify-content: space-between;
  }

  @media screen and (max-width: 450px) {
    padding: 20px;
  }

  .pw_hero_title {
    font-size: 70px;
    font-weight: 400;
    letter-spacing: 5px;
    color: var(--headline-color);
    line-height: 1;
    padding-bottom: 10px;
    text-align: center;
    text-transform: capitalize;

    @media screen and (max-width: 1200px) {
      font-size: 60px;
    }

    @media screen and (max-width: 1200px) {
      font-size: 50px;
    }

    @media screen and (max-width: 768px) {
      font-size: 40px;
    }

    @media screen and (max-width: 450px) {
      font-size: 23px;
    }
  }
}

.pw_hero2 {
  height: fit-content;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.pw_hero3 {
  height: fit-content;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;

  @media screen and (max-width: 450px) {
    padding: 40px 7px;
  }
}

.pw_header {
  width: 100%;
  height: fit-content;
  padding: 20px;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  position: relative;
  flex-wrap: wrap;

  @media screen and (max-width: 480px) {
    padding: 20px 7px;
    gap: 10px;
  }

  .pw_header_item {
    height: fit-content;
    width: fit-content;
    padding: 7px 20px;
    background-color: #fff;
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    text-transform: uppercase;

    &:hover {
      background-color: var(--primary-color);
      color: #fff;
    }

    &.active {
      background-color: var(--primary-color);
      color: #fff;
    }

    @media screen and (max-width: 480px) {
      font-size: 12px;
    }
  }

  .pw_subheader {
    position: absolute;
    height: 60px;
    font-size: 25px;
    font-weight: 600;
    color: #fff;
    bottom: -55px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 40px;
    text-transform: uppercase;
    border-radius: 0 0 20px 20px;

    @media screen and (max-width: 450px) {
      font-size: 18px;
    }
  }
}