/* COLORS */
/* TYPOGRAPHY */
/* ---- MEDIA QUERIES ----- */
.left-right-block {
  position: relative;
}
.left-right-block .container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.left-right-block .text-content.left {
  padding: 0 0 0 11.5rem;
}
.left-right-block .text-content.right {
  padding: 0 11.5rem 0 0;
}
.left-right-block .text-content .heading-container {
  margin: 0 0 3.7rem;
}
.left-right-block .text-content .link {
  margin: 2.5rem 0 0;
}
.left-right-block .image-content {
  position: absolute;
  top: 0;
  bottom: 0;
}
.left-right-block .image-content.left {
  left: 0;
}
.left-right-block .image-content.right {
  right: 0;
}
.left-right-block .image-content img {
  width: 50vw;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 1100px) {
  .left-right-block {
    position: relative;
  }
  .left-right-block .container {
    grid-template-columns: 1fr;
    grid-column: 1/-1 !important;
  }
  .left-right-block .fake {
    display: none;
  }
  .left-right-block .text-content {
    order: 2;
  }
  .left-right-block .text-content.left {
    padding: 0 2.5rem;
  }
  .left-right-block .text-content.right {
    padding: 0 2.5rem;
  }
  .left-right-block .image-content {
    position: static;
    order: 1;
  }
  .left-right-block .image-content img {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .left-right-block .text-content .heading-container {
    margin: 0 0 1.6rem;
  }
  .left-right-block .text-content .link {
    margin: 1.6rem 0 0;
  }
}