.full-height-image-hero-block {
  max-width: unset !important;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  border-radius: 10px;
  margin: 10px !important;
  overflow: hidden;
  padding: 0 !important;
  height: 650px;
}
.full-height-image-hero-block.color-red {
  background: #cc2f5e;
  color: white;
}
.full-height-image-hero-block.color-grey {
  background: #f2f4f6;
}
.full-height-image-hero-block.color-blue {
  background: #3b3ad5;
  color: white;
}
.full-height-image-hero-block.color-light-blue {
  background: #5cbef9;
  color: white;
}
.full-height-image-hero-block.color-white {
  background: white;
}
.full-height-image-hero-block .text-container {
  width: 40%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 992px) {
  .full-height-image-hero-block .text-container {
    width: 100%;
    padding: 48px;
  }
}
.full-height-image-hero-block .text-container .title {
  font-weight: 600;
  font-size: 24px;
}
.full-height-image-hero-block .text-container .with-underline {
  border-bottom: solid 1px black;
  padding: 0 0 10px 0;
}
.full-height-image-hero-block .text-container .cta-button {
  width: 30%;
}
@media (max-width: 1200px) {
  .full-height-image-hero-block .text-container .cta-button {
    width: 50%;
  }
}
@media (max-width: 576px) {
  .full-height-image-hero-block .text-container .cta-button {
    width: 100%;
  }
}
.full-height-image-hero-block .asset-container {
  display: flex;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 650px;
  flex: 1 1 50%;
}
@media (max-width: 992px) {
  .full-height-image-hero-block .asset-container {
    width: 100%;
    height: 350px;
  }
}
.full-height-image-hero-block.image-left, .full-height-image-hero-block.image-right {
  display: flex;
  flex-wrap: wrap;
}
.full-height-image-hero-block.image-left {
  flex-direction: row-reverse;
}
.full-height-image-hero-block.image-left .text-container {
  padding-right: 100px;
}
@media (max-width: 992px) {
  .full-height-image-hero-block.image-left .text-container {
    padding: 48px;
  }
}
.full-height-image-hero-block.image-right {
  flex-direction: row;
}
.full-height-image-hero-block.image-right .text-container {
  padding-left: 100px;
}
@media (max-width: 992px) {
  .full-height-image-hero-block.image-right .text-container {
    padding: 48px;
  }
}
.full-height-image-hero-block.image-left-and-right {
  position: relative;
  padding: 0;
  min-height: 650px;
}
.full-height-image-hero-block.image-left-and-right .text-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50%;
  z-index: 2;
  text-align: center;
  border-radius: 16px;
  padding: 48px;
}
.full-height-image-hero-block.image-left-and-right .text-container .cta-button {
  align-self: center;
}
@media (max-width: 992px) {
  .full-height-image-hero-block.image-left-and-right .text-container {
    width: 100%;
  }
}
.full-height-image-hero-block.image-left-and-right .asset-container {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
  max-height: unset !important;
  height: 650px;
}
@media (max-width: 768px) {
  .full-height-image-hero-block.image-left-and-right .asset-container {
    width: 100%;
  }
}
.full-height-image-hero-block.image-left-and-right .asset-container .asset {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 768px) {
  .full-height-image-hero-block.image-left-and-right .asset-container .asset {
    object-fit: cover;
    object-position: center;
  }
}
@media (max-width: 576px) {
  .full-height-image-hero-block.image-left-and-right .asset-container .asset {
    object-fit: cover;
    object-position: center center;
  }
}
@media (max-width: 992px) {
  .full-height-image-hero-block {
    gap: 0;
    height: unset;
  }
}
