.full-width-highlight {
  padding-top: 0;
  padding-bottom: 0;
  border-radius: 0 0 0 0;
  overflow: hidden;
  position: relative;
}

.full-width-highlight h1,
.full-width-highlight h2,
.full-width-highlight h3,
.full-width-highlight h4,
.full-width-highlight h5,
.full-width-highlight p {
  color:#FFF;
}

@media (min-width: 768px) {
  .full-width-highlight {
    padding-top: 0;
    padding-bottom: 0;
    border-radius: 0 150px 0 0;
  }
}

.full-width-highlight__content {
  display: flex;
  flex-direction: column;

}
@media (min-width: 768px) {
  .full-width-highlight__content {
    flex-direction: row;
  }
}

.full-width-highlight__content-text {
  background: #063354;
  padding: 53px 23px 25px 26px;
  color: white!important;
  width: 100%;
  display: flex;
  align-items: center;
}
@media (min-width: 768px) {
  .full-width-highlight__content-text {
    width: 50%;
  }
}
@media (min-width: 1400px) {
  .full-width-highlight__content-text {
    padding: 33px 137px;
    padding-left: 0;
  }
}

.full-width-highlight__content-image {
  border-radius: 0 100px 0 0;
  width: 100%;
  overflow: hidden;
}
@media (min-width: 768px) {
  .full-width-highlight__content-image {
    border-radius: 0 150px 0 0;
    width: 50%;
  }
}

.full-width-highlight__content-text, .full-width-highlight__content-image {
  position: relative;
  z-index: 2;
}

.full-width-highlight__content-image img {
  object-fit: cover;
  object-position: right center;
  width: 100%;
  height: 100%;
  /* max-height: 207px; */
}
@media (max-width: 480px) {
  .full-width-highlight__content-image img {
    max-height: 207px;
  }
}

.full-width-highlight__content-image.img-align-top img {
  object-position: top!important;
}
.full-width-highlight__content-image.img-align-center img {
  object-position: center!important;
}
.full-width-highlight__content-image.img-align-bottom img {
  object-position: bottom!important;
}

.flex-1 {
  flex-grow: 1;
}

.content-underlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

@media (max-width: 767px) {
  .content-underlay {
    position: relative;
  }
  .full-width-highlight__content .container {
  max-width: none !important;
  padding: 0;

 }
 .full-width-highlight__content .container .full-width-highlight__content-text {
    /* background-color: rgba(6, 51, 84, 0.9); */
 }

 .full-width-highlight__content .content-underlay  .full-width-highlight__content-text {
  display: none;
 }
}

