.inner-outer-box {
  padding: 40px 0;
}
.inner-outer-box.background--highlight-2 h3 {
  text-shadow: unset!important;
}
.inner-outer-box.background--highlight-2 p {
  text-shadow: unset!important;
}
.inner-outer-box .inner-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 10px;
  overflow: hidden;
}
.inner-outer-box .inner-box .text-container h3 {
  line-height: 40px;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.8);
}
.inner-outer-box .inner-box .text-container p {
  line-height: 22px;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
}
.inner-outer-box .inner-box .text-container hr {
  width: 10%;
  height: 5px;
  background-color: var(--highlight-2);
  margin-left: 0;
  margin-top: 0;
  margin-bottom: 12px;
  border: none;
}
.inner-outer-box .inner-box .text-container ul {
  list-style: none;
  padding-left: 0;
}
.inner-outer-box .inner-box .text-container ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.inner-outer-box .inner-box .text-container ul li:before {
  content: '✓';
  color: black;
  font-size: 30px;
  margin-right: 10px;
}
.inner-outer-box .inner-box.image-right {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.inner-outer-box .inner-box.image-left {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.inner-outer-box .inner-box .image-container {
  position: relative;
  width: 100%;
  height: 100%;
  padding-top: 25%;
}
@media (max-width: 1200px) {
  .inner-outer-box .inner-box .image-container {
    padding-top: 50%;
  }
}
@media (max-width: 992px) {
  .inner-outer-box .inner-box .image-container {
    padding-top: 80%;
  }
}
.inner-outer-box .inner-box .image-container img {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  -o-object-fit: contain;
     object-fit: contain;
}
