.hero-contact {
  position: relative;
}

.hero-contact__background {
  position: relative;
}

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

.hero-contact__background::after {
  content: '';
  position: absolute;
  inset: 0;
}

.hero-contact__content {
  position: absolute;
  top: 50%;
  left: 20px;
  right: 20px;
  transform: translateY(-50%);
  z-index: 2;
  max-width: 800px;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-contact__title {
  margin: 0;
}

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

.hero-contact__text {
  max-width: 580px;
}

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

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

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


@media (min-width: 768px) {
  .hero-contact__content {
    left: 100px;
  }
}

@media (min-width: 1000px) {
  .hero-contact__title p {
    font-size: 3rem;
    line-height: 130%;
  }

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

  .hero-contact__background::before {
    content: '';
    position: absolute;
    bottom: -77px;
    right: 0;
    width: 518px;
    height: 562px;
    background-image: url('../../images/hero/blue-shape.svg');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: bottom right;
    z-index: 1;
  }
}

@media (min-width: 1200px) {
  .hero-contact__content {
    top: 40%;
  }
}