/* COLORS */
/* TYPOGRAPHY */
/* ---- MEDIA QUERIES ----- */
.left-right-hero-block {
  position: relative;
  min-height: 100vh;
}
.left-right-hero-block .container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  grid-column: 1/-1 !important;
}
.left-right-hero-block .heading-container,
.left-right-hero-block .text {
  max-width: 74.7rem;
}
.left-right-hero-block .heading-container {
  margin: 0 0 4rem;
}
.left-right-hero-block .text-content {
  padding: 20.5rem 5rem 12.5rem;
}
.left-right-hero-block .image-content {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
}
.left-right-hero-block .image-content img {
  width: 50vw;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.left-right-hero-block .email-container {
  margin: 2rem 0 0;
}
.left-right-hero-block .email-container svg {
  fill: #000034;
  transition: fill 0.2s ease-in-out;
}
.left-right-hero-block .email-container svg:hover {
  fill: #F69A09;
}
.left-right-hero-block .button-container {
  margin: 4rem 0 0;
}
.left-right-hero-block .button-container svg {
  rotate: 180deg;
}

.single-coworker .left-right-hero-block .image-content img {
  width: 37vw;
}

@media (max-width: 1100px) {
  .left-right-hero-block {
    position: relative;
    min-height: 100vh;
  }
  .left-right-hero-block .container {
    grid-template-columns: 1fr;
  }
  .left-right-hero-block .text-content {
    order: 1;
  }
  .left-right-hero-block .image-content {
    order: 2;
    position: static;
  }
  .left-right-hero-block .image-content img {
    width: 100%;
    aspect-ratio: 16/12;
  }
  .single-coworker .left-right-hero-block .image-content img {
    width: 100vw;
  }
}
@media (max-width: 768px) {
  .left-right-hero-block {
    min-height: auto;
  }
  .left-right-hero-block .heading-container {
    margin: 0 0 1.6rem;
  }
  .left-right-hero-block .text-content {
    padding: 8.4rem 2.5rem 6.4rem;
  }
}