.image-and-carousel-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 16px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 780px) {
  .image-and-carousel-wrapper.position-left {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .image-and-carousel-wrapper.position-right {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
.image-and-carousel-wrapper .image-section {
  max-width: calc(22% - 8px);
  /*Mobile*/
}
@media (max-width: 480px) {
  .image-and-carousel-wrapper .image-section {
    width: 100%;
    max-width: none;
  }
}
.image-and-carousel-wrapper .carousel-section {
  max-width: calc(78% - 8px);
}
@media (max-width: 480px) {
  .image-and-carousel-wrapper .carousel-section {
    width: 100%;
    max-width: none;
  }
}
