.service-section {
  padding-top: var(--settings_padding_top);
  padding-bottom: var(--settings_padding_bottom);
  margin-top: var(--settings_margin_top);
  margin-bottom: var(--settings_margin_bottom);
}
.service-section .service-row {
  flex-wrap: wrap;
  background-color: var(--settings_background_color);
}
.service-section .image-col {
  flex: 1 1 42.5%;
  max-width: 42.5%;
}
.service-section .content-col {
  flex: 1 1 57.5%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-section .content-col .inner {
  padding: 20px 60px;
}
.service-section .image-col .owl-carousel,
.service-section .image-col .owl-carousel .owl-stage-outer,
.service-section .image-col .owl-carousel .owl-stage {
  height: 100%;
}
.service-section .image-col .owl-carousel .owl-stage {
  display: flex;
}
.service-section .image-col .owl-carousel .owl-item .item {
  height: 100%;
}
.service-section .image-col .owl-carousel .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-section .image-col .owl-carousel .owl-nav button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 32px;
  text-shadow: 0px 0px 10px rgba(0, 0, 0, .5);
}
.service-section .image-col .owl-carousel .owl-nav button.owl-prev {
  left: 15px;
}
.service-section .image-col .owl-carousel .owl-nav button.owl-next {
  right: 15px;
}
@media screen and (max-width: 991px) {
  .service-section .service-row {
    flex-direction: column-reverse;
    background-color: var(--settings_background_color, #f1f1f1);
  }
  .service-section .service-row>.col {
    flex-basis: 100%;
    max-width: 100%;
  }
  .service-section .content-col .inner {
    padding: 20px;
  }
}
@media screen and (max-width: 767px) {
  .service-section .content-col .inner {
    padding: 15px;
  }
}