.hero-page-builder {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: relative;
  overflow-x: clip;
}

.hero-page-builder__image img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-page-builder__image {
  position: relative;
}

.hero-page-builder__content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem 20px 0 20px;
}

.hero-page-builder__category {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-page-builder__category::before {
  content: '';
  display: block;
  width: 15px;
  height: 1px;
  background-color: var(--color-primary--2);
  flex-shrink: 0;
}

.hero-page-builder__title {
  max-width: 570px;
  font-weight: 400;
  margin-top: 0;
}

.hero-page-builder__title p,
.hero-page-builder__title p {
  margin: 0;
  font-family: var(--font-bungee);
  font-size: 2rem;
  line-height: 120%;
}

.hero-page-builder__text {
  max-width: 580px;
}

.hero-page-builder__text p {
  margin: 0;
  font-size: 1.2rem;
  line-height: 140%;
}

.hero-page-builder__link a {
  display: inline-flex;
  padding: 14px 24px;
  background: var(--color-primary--2);
  color: var(--color-white);
  font-weight: 800;
  text-transform: uppercase;
  text-decoration: none;
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
  border-bottom-left-radius: 2px;
  border-bottom-right-radius: 16px;
  transition: all 0.25s ease;
  z-index: 2;
  position: relative;
}

.hero-page-builder__link a:hover {
  background: var(--color-primary--1);
  text-decoration: none;
}

@media (min-width: 750px) {
  .hero-page-builder {
    flex-direction: row;
    align-items: flex-start;
    gap: 0;
  }

  .hero-page-builder__content {
    flex: 1;
    padding: 1rem 40px 0 40px;
  }

  .hero-page-builder__image {
    flex: 0 0 55%;
  }

  .hero-page-builder__image img {
    width: 100%;
  }
}

@media (min-width: 1000px) {
  .hero-page-builder__content {
    padding: 1rem 60px 0 60px;
  }

  .hero-page-builder__title p {
    font-size: 2.313rem;
    line-height: 130%;
  }

  .hero-page-builder__text p {
    font-size: 1.5rem;
    line-height: 170%;
  }

}

@media (min-width: 1200px) {
  .hero-page-builder__content {
    padding: 1rem 100px 1rem 100px;
  }
}


@media (min-width: 1300px) {
  .hero-page-builder__image::after {
    content: '';
    position: absolute;
    bottom: -45px;
    left: -295px;
    width: 590px;
    height: 421px;
    background-image: url(../../images/hero-page-builder/orange-blue-shape.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: bottom left;
  }
  .hero-page-builder__text {
    max-width: 530px;
  }
}

@media (min-width: 1400px) {
  .hero-page-builder {
    align-items: center;
  }
  .hero-page-builder__image::after {
    bottom: -50px;
    left: -330px;
    width: 660px;
    height: 471px;
  }
}


@media (min-width: 1500px) {
  .hero-page-builder__image::after {
    bottom: -55px;
    left: -385px;
    width: 730px;
    height: 521px;
  }
}

@media (min-width: 1600px) {
  .hero-page-builder__image::after {
    bottom: -60px;
    left: -430px;
    width: 800px;
    height: 571px;
  }
}

@media (min-width: 1700px) {
  .hero-page-builder__image::after {
    bottom: -83px;
    left: -600px;
    width: 1070px;
    height: 764px;
  }

}

@media (min-width: 1800px) {
  .hero-page-builder__image::after {
    bottom: -89px;
    left: -646px;
    width: 1150px;
    height: 821px;
  }
}