/*--------------------------------------------------------------
# Owl Carousel
--------------------------------------------------------------*/
/*
 *  Owl Carousel - Core
 */
/* line 4, ../sass/third-party/owl-carousel/partials/_core.scss */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
}
/* line 12, ../sass/third-party/owl-carousel/partials/_core.scss */
.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
  touch-action: manipulation;
  -moz-backface-visibility: hidden;
  /* fix firefox animation glitch */
}
/* line 19, ../sass/third-party/owl-carousel/partials/_core.scss */
.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
/* line 28, ../sass/third-party/owl-carousel/partials/_core.scss */
.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
}
/* line 35, ../sass/third-party/owl-carousel/partials/_core.scss */
.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}
/* line 45, ../sass/third-party/owl-carousel/partials/_core.scss */
.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}
/* line 53, ../sass/third-party/owl-carousel/partials/_core.scss */
.owl-carousel .owl-item img {
  display: block;
  width: 100%;
}
/* line 58, ../sass/third-party/owl-carousel/partials/_core.scss */
.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
  display: none;
}
/* line 63, ../sass/third-party/owl-carousel/partials/_core.scss */
.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
  cursor: pointer;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
/* line 74, ../sass/third-party/owl-carousel/partials/_core.scss */
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next,
.owl-carousel button.owl-dot {
  background: none;
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inherit;
}
/* line 84, ../sass/third-party/owl-carousel/partials/_core.scss */
.owl-carousel.owl-loaded {
  display: block;
}
/* line 88, ../sass/third-party/owl-carousel/partials/_core.scss */
.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}
/* line 93, ../sass/third-party/owl-carousel/partials/_core.scss */
.owl-carousel.owl-hidden {
  opacity: 0;
}
/* line 97, ../sass/third-party/owl-carousel/partials/_core.scss */
.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}
/* line 101, ../sass/third-party/owl-carousel/partials/_core.scss */
.owl-carousel.owl-drag .owl-item {
  touch-action: pan-y;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
/* line 109, ../sass/third-party/owl-carousel/partials/_core.scss */
.owl-carousel.owl-grab {
  cursor: move;
  cursor: grab;
}
/* line 114, ../sass/third-party/owl-carousel/partials/_core.scss */
.owl-carousel.owl-rtl {
  direction: rtl;
}
/* line 118, ../sass/third-party/owl-carousel/partials/_core.scss */
.owl-carousel.owl-rtl .owl-item {
  float: right;
}

/* No Js */
/* line 124, ../sass/third-party/owl-carousel/partials/_core.scss */
.no-js .owl-carousel {
  display: block;
}

/*
 *  Owl Carousel - Animate Plugin
 */
/* line 5, ../sass/third-party/owl-carousel/partials/_animate.scss */
.owl-carousel .animated {
  animation-duration: 1000ms;
  animation-fill-mode: both;
}
/* line 9, ../sass/third-party/owl-carousel/partials/_animate.scss */
.owl-carousel .owl-animated-in {
  z-index: 0;
}
/* line 12, ../sass/third-party/owl-carousel/partials/_animate.scss */
.owl-carousel .owl-animated-out {
  z-index: 1;
}
/* line 15, ../sass/third-party/owl-carousel/partials/_animate.scss */
.owl-carousel .fadeOut {
  animation-name: fadeOut;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/*
 * 	Owl Carousel - Auto Height Plugin
 */
/* line 5, ../sass/third-party/owl-carousel/partials/_autoheight.scss */
.owl-height {
  transition: height 500ms ease-in-out;
}

/*
 * 	Owl Carousel - Lazy Load Plugin
 */
/* line 6, ../sass/third-party/owl-carousel/partials/_lazyload.scss */
.owl-carousel .owl-item {
  /**
  	This is introduced due to a bug in IE11 where lazy loading combined with autoheight plugin causes a wrong
  	calculation of the height of the owl-item that breaks page layouts
   */
}
/* line 7, ../sass/third-party/owl-carousel/partials/_lazyload.scss */
.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity 400ms ease;
}
/* line 16, ../sass/third-party/owl-carousel/partials/_lazyload.scss */
.owl-carousel .owl-item .owl-lazy[src^=""], .owl-carousel .owl-item .owl-lazy:not([src]) {
  max-height: 0;
}
/* line 20, ../sass/third-party/owl-carousel/partials/_lazyload.scss */
.owl-carousel .owl-item img.owl-lazy {
  transform-style: preserve-3d;
}

/*
 * 	Owl Carousel - Video Plugin
 */
/* line 8, ../sass/third-party/owl-carousel/partials/_video.scss */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}
/* line 14, ../sass/third-party/owl-carousel/partials/_video.scss */
.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: transform 100ms ease;
}
/* line 29, ../sass/third-party/owl-carousel/partials/_video.scss */
.owl-carousel .owl-video-play-icon:hover {
  transform: scale(1.3, 1.3);
}
/* line 33, ../sass/third-party/owl-carousel/partials/_video.scss */
.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none;
}
/* line 38, ../sass/third-party/owl-carousel/partials/_video.scss */
.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 400ms ease;
}
/* line 47, ../sass/third-party/owl-carousel/partials/_video.scss */
.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}

/*
 * 	Default theme - Owl Carousel CSS File
 */
/* line 4, ../sass/third-party/owl-carousel/partials/_theme.scss */
.owl-theme .owl-nav {
  margin-top: 10px;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}
/* line 9, ../sass/third-party/owl-carousel/partials/_theme.scss */
.owl-theme .owl-nav [class*='owl-'] {
  color: #FFF;
  font-size: 14px;
  margin: 5px;
  padding: 4px 7px;
  background: #D6D6D6;
  display: inline-block;
  cursor: pointer;
  border-radius: 3px;
}
/* line 19, ../sass/third-party/owl-carousel/partials/_theme.scss */
.owl-theme .owl-nav [class*='owl-']:hover {
  background: #869791;
  color: #FFF;
  text-decoration: none;
}
/* line 25, ../sass/third-party/owl-carousel/partials/_theme.scss */
.owl-theme .owl-nav .disabled {
  opacity: 0.5;
  cursor: default;
}
/* line 32, ../sass/third-party/owl-carousel/partials/_theme.scss */
.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 10px;
}
/* line 36, ../sass/third-party/owl-carousel/partials/_theme.scss */
.owl-theme .owl-dots {
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}
/* line 40, ../sass/third-party/owl-carousel/partials/_theme.scss */
.owl-theme .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
  *display: inline;
}
/* line 45, ../sass/third-party/owl-carousel/partials/_theme.scss */
.owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px 7px;
  background: #D6D6D6;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity 200ms ease;
  border-radius: 30px;
}
/* line 58, ../sass/third-party/owl-carousel/partials/_theme.scss */
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
  background: #869791;
}

/*--------------------------------------------------------------
# Common
--------------------------------------------------------------*/
/* line 3, ../sass/common/_classes.scss */
.list-items-carousel.owl-theme a {
  text-decoration: none;
}
/* line 6, ../sass/common/_classes.scss */
.list-items-carousel.owl-theme.with-dots .owl-stage-outer {
  margin-bottom: 40px;
}
/* line 9, ../sass/common/_classes.scss */
.list-items-carousel.owl-theme.six-columns .item-img-wrapper {
  height: 120px;
}
/* line 12, ../sass/common/_classes.scss */
.list-items-carousel.owl-theme .owl-stage-outer {
  position: relative;
}
/* line 15, ../sass/common/_classes.scss */
.list-items-carousel.owl-theme .owl-nav {
  margin-top: 0;
}
/* line 17, ../sass/common/_classes.scss */
.list-items-carousel.owl-theme .owl-nav [class*="owl-"] {
  margin: 0;
}
/* line 19, ../sass/common/_classes.scss */
.list-items-carousel.owl-theme .owl-nav [class*="owl-"]:hover {
  background: none;
  color: #333;
}
/* line 24, ../sass/common/_classes.scss */
.list-items-carousel.owl-theme .owl-nav button {
  position: absolute;
  bottom: -40px;
  outline: 0;
  color: #999;
  z-index: 100;
}
/* line 30, ../sass/common/_classes.scss */
.list-items-carousel.owl-theme .owl-nav button.owl-prev {
  left: 0;
}
/* line 33, ../sass/common/_classes.scss */
.list-items-carousel.owl-theme .owl-nav button.owl-next {
  right: 0;
}
/* line 36, ../sass/common/_classes.scss */
.list-items-carousel.owl-theme .owl-nav button span {
  font-size: 60px;
}
/* line 41, ../sass/common/_classes.scss */
.list-items-carousel.owl-theme .owl-dots {
  width: 100%;
  position: absolute;
  bottom: -40px;
  z-index: 99;
  margin: 0 auto;
}
/* line 48, ../sass/common/_classes.scss */
.list-items-carousel.owl-theme .item-img-wrapper img {
  width: 100%;
  height: auto;
  min-height: 100%;
}
/* line 53, ../sass/common/_classes.scss */
.list-items-carousel.owl-theme .item-title {
  background: #dd3333;
  padding: 0;
  margin-bottom: 0;
}
/* line 57, ../sass/common/_classes.scss */
.list-items-carousel.owl-theme .item-title h3 {
  font-size: 1.1em;
  line-height: 1.3em;
  color: #fff;
  text-align: center;
  padding: 10px 0;
}
/* line 65, ../sass/common/_classes.scss */
.list-items-carousel.owl-theme .item-desc {
  text-align: center;
  padding: 5px;
  background: #eee;
  border-bottom: 3px solid #dedede;
  color: #111;
}
/* line 75, ../sass/common/_classes.scss */
.list-items-carousel.owl-theme.testimonial-items-carousel .testimonial-wrapper:hover .testimonial {
  background: #0facc2;
}
/* line 78, ../sass/common/_classes.scss */
.list-items-carousel.owl-theme.testimonial-items-carousel .testimonial-wrapper:hover .testimonial-image,
.list-items-carousel.owl-theme.testimonial-items-carousel .testimonial-wrapper:hover .testimonial-desc,
.list-items-carousel.owl-theme.testimonial-items-carousel .testimonial-wrapper:hover .testimonial-title {
  color: #fff;
}
/* line 83, ../sass/common/_classes.scss */
.list-items-carousel.owl-theme.testimonial-items-carousel .testimonial-wrapper:hover .testimonial-desc {
  background-image: url("../img/icons/quote-white.png");
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: 40px;
}
/* line 89, ../sass/common/_classes.scss */
.list-items-carousel.owl-theme.testimonial-items-carousel .testimonial-wrapper:hover .testimonial-icon .svg svg {
  fill: #0facc2;
}
/* line 92, ../sass/common/_classes.scss */
.list-items-carousel.owl-theme.testimonial-items-carousel .testimonial-wrapper:hover .testimonial-title h3 {
  color: #ffff99;
}
/* line 95, ../sass/common/_classes.scss */
.list-items-carousel.owl-theme.testimonial-items-carousel .testimonial-wrapper:hover .testimonial-meta {
  color: #000;
}
/* line 101, ../sass/common/_classes.scss */
.list-items-carousel.owl-theme.testimonial-items-carousel .item.testimonial {
  background: #f4f6f7;
  border-radius: 10px;
  padding: 20px 15px;
}
/* line 105, ../sass/common/_classes.scss */
.list-items-carousel.owl-theme.testimonial-items-carousel .item.testimonial a {
  color: #111;
  text-decoration: none;
}
/* line 111, ../sass/common/_classes.scss */
.list-items-carousel.owl-theme.testimonial-items-carousel .testimonial-image {
  text-align: center;
}
/* line 113, ../sass/common/_classes.scss */
.list-items-carousel.owl-theme.testimonial-items-carousel .testimonial-image img {
  display: inline-block;
  width: 50%;
  height: auto;
  border-radius: 50%;
  margin-bottom: 5px;
}
/* line 121, ../sass/common/_classes.scss */
.list-items-carousel.owl-theme.testimonial-items-carousel .testimonial-desc {
  text-align: center;
  padding: 0 0 50px;
  background-image: url("../img/icons/quote.png");
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: 40px;
}
/* line 130, ../sass/common/_classes.scss */
.list-items-carousel.owl-theme.testimonial-items-carousel .item-title.testimonial-title {
  background: transparent;
  margin-bottom: 0;
}
/* line 133, ../sass/common/_classes.scss */
.list-items-carousel.owl-theme.testimonial-items-carousel .item-title.testimonial-title h3 {
  color: #dd3333;
  font-weight: bold;
}
/* line 139, ../sass/common/_classes.scss */
.list-items-carousel.owl-theme.testimonial-items-carousel .testimonial-meta {
  width: 100%;
  text-align: center;
  color: #006699;
  font-weight: bold;
  margin-bottom: 10px;
}
/* line 146, ../sass/common/_classes.scss */
.list-items-carousel.owl-theme.testimonial-items-carousel .testimonial-icon {
  width: 100%;
  text-align: center;
}
/* line 149, ../sass/common/_classes.scss */
.list-items-carousel.owl-theme.testimonial-items-carousel .testimonial-icon .svg {
  display: inline-block;
}
/* line 151, ../sass/common/_classes.scss */
.list-items-carousel.owl-theme.testimonial-items-carousel .testimonial-icon .svg svg {
  fill: #f4f6f7;
}
/* line 153, ../sass/common/_classes.scss */
.list-items-carousel.owl-theme.testimonial-items-carousel .testimonial-icon .svg svg:not(:root) {
  overflow: hidden;
}
/* line 161, ../sass/common/_classes.scss */
.list-items-carousel.owl-theme.reference-items-carousel .reference-image {
  text-align: center;
}
/* line 163, ../sass/common/_classes.scss */
.list-items-carousel.owl-theme.reference-items-carousel .reference-image img {
  display: inline-block;
  width: auto;
  max-width: 100%;
  min-height: auto;
}
/* line 174, ../sass/common/_classes.scss */
.list-items-carousel.owl-theme.news-items-carousel a, .list-items-carousel.owl-theme.blog-items-carousel a, .list-items-carousel.owl-theme.photo-gallery-items-carousel a {
  text-decoration: none;
}
/* line 177, ../sass/common/_classes.scss */
.list-items-carousel.owl-theme.news-items-carousel .news-image,
.list-items-carousel.owl-theme.news-items-carousel .blog-image,
.list-items-carousel.owl-theme.news-items-carousel .photo-gallery-image, .list-items-carousel.owl-theme.blog-items-carousel .news-image,
.list-items-carousel.owl-theme.blog-items-carousel .blog-image,
.list-items-carousel.owl-theme.blog-items-carousel .photo-gallery-image, .list-items-carousel.owl-theme.photo-gallery-items-carousel .news-image,
.list-items-carousel.owl-theme.photo-gallery-items-carousel .blog-image,
.list-items-carousel.owl-theme.photo-gallery-items-carousel .photo-gallery-image {
  margin-bottom: 0;
}
/* line 182, ../sass/common/_classes.scss */
.list-items-carousel.owl-theme.news-items-carousel .news-title,
.list-items-carousel.owl-theme.news-items-carousel .blog-title,
.list-items-carousel.owl-theme.news-items-carousel .photo-gallery-title, .list-items-carousel.owl-theme.blog-items-carousel .news-title,
.list-items-carousel.owl-theme.blog-items-carousel .blog-title,
.list-items-carousel.owl-theme.blog-items-carousel .photo-gallery-title, .list-items-carousel.owl-theme.photo-gallery-items-carousel .news-title,
.list-items-carousel.owl-theme.photo-gallery-items-carousel .blog-title,
.list-items-carousel.owl-theme.photo-gallery-items-carousel .photo-gallery-title {
  padding: 0;
  margin-bottom: 0;
}
/* line 187, ../sass/common/_classes.scss */
.list-items-carousel.owl-theme.news-items-carousel .news-title h3,
.list-items-carousel.owl-theme.news-items-carousel .blog-title h3,
.list-items-carousel.owl-theme.news-items-carousel .photo-gallery-title h3, .list-items-carousel.owl-theme.blog-items-carousel .news-title h3,
.list-items-carousel.owl-theme.blog-items-carousel .blog-title h3,
.list-items-carousel.owl-theme.blog-items-carousel .photo-gallery-title h3, .list-items-carousel.owl-theme.photo-gallery-items-carousel .news-title h3,
.list-items-carousel.owl-theme.photo-gallery-items-carousel .blog-title h3,
.list-items-carousel.owl-theme.photo-gallery-items-carousel .photo-gallery-title h3 {
  font-size: 1em;
  line-height: 1.3em;
  padding: 10px 5px;
}

@media only screen and (min-width: 768px) {
  /* line 198, ../sass/common/_classes.scss */
  .list-items-carousel.owl-theme.with-nav {
    width: 94%;
    margin: 0 auto;
  }
  /* line 203, ../sass/common/_classes.scss */
  .list-items-carousel.owl-theme .owl-nav button {
    height: 100%;
    position: absolute;
    top: 0;
    outline: 0;
    color: #999;
  }
  /* line 209, ../sass/common/_classes.scss */
  .list-items-carousel.owl-theme .owl-nav button.owl-prev {
    left: -30px;
  }
  /* line 212, ../sass/common/_classes.scss */
  .list-items-carousel.owl-theme .owl-nav button.owl-next {
    right: -30px;
  }
  /* line 215, ../sass/common/_classes.scss */
  .list-items-carousel.owl-theme .owl-nav button span {
    font-size: 60px;
  }
  /* line 220, ../sass/common/_classes.scss */
  .list-items-carousel.owl-theme.two-columns .item-img-wrapper {
    height: 200px;
  }
  /* line 223, ../sass/common/_classes.scss */
  .list-items-carousel.owl-theme.three-columns .item-img-wrapper {
    height: 200px;
  }
  /* line 226, ../sass/common/_classes.scss */
  .list-items-carousel.owl-theme.four-columns .item-img-wrapper {
    height: 200px;
  }
  /* line 229, ../sass/common/_classes.scss */
  .list-items-carousel.owl-theme.five-columns .item-img-wrapper {
    height: 140px;
  }
  /* line 232, ../sass/common/_classes.scss */
  .list-items-carousel.owl-theme.six-columns .item-img-wrapper {
    height: 100px;
  }
  /* line 236, ../sass/common/_classes.scss */
  .list-items-carousel.owl-theme.testimonial-items-carousel .item-img-wrapper {
    height: auto;
  }
  /* line 238, ../sass/common/_classes.scss */
  .list-items-carousel.owl-theme.testimonial-items-carousel .item-img-wrapper img {
    min-height: auto;
  }
  /* line 243, ../sass/common/_classes.scss */
  .list-items-carousel.owl-theme.testimonial-items-carousel.one-column .item-img-wrapper {
    float: left;
    width: 50%;
  }
  /* line 246, ../sass/common/_classes.scss */
  .list-items-carousel.owl-theme.testimonial-items-carousel.one-column .item-img-wrapper img {
    width: 75%;
  }
  /* line 250, ../sass/common/_classes.scss */
  .list-items-carousel.owl-theme.testimonial-items-carousel.one-column .testimonial-desc-wrapper {
    float: left;
    width: 50%;
  }
  /* line 254, ../sass/common/_classes.scss */
  .list-items-carousel.owl-theme.testimonial-items-carousel.one-column .testimonial-desc-wrapper .testimonial-title h3 {
    text-align: left;
  }
  /* line 258, ../sass/common/_classes.scss */
  .list-items-carousel.owl-theme.testimonial-items-carousel.one-column .testimonial-desc-wrapper .testimonial-desc {
    text-align: left;
    background-position: bottom left;
  }
  /* line 262, ../sass/common/_classes.scss */
  .list-items-carousel.owl-theme.testimonial-items-carousel.one-column .testimonial-desc-wrapper .testimonial-meta {
    text-align: left;
  }
  /* line 269, ../sass/common/_classes.scss */
  .list-items-carousel.owl-theme.reference-items-carousel .item-img-wrapper {
    height: auto;
  }
  /* line 271, ../sass/common/_classes.scss */
  .list-items-carousel.owl-theme.reference-items-carousel .item-img-wrapper img {
    min-height: auto;
  }
}
@media only screen and (min-width: 992px) {
  /* line 281, ../sass/common/_classes.scss */
  .list-items-carousel.owl-theme.two-columns .item-img-wrapper {
    height: 250px;
  }
  /* line 284, ../sass/common/_classes.scss */
  .list-items-carousel.owl-theme.three-columns .item-img-wrapper {
    height: 250px;
  }
  /* line 287, ../sass/common/_classes.scss */
  .list-items-carousel.owl-theme.four-columns .item-img-wrapper {
    height: 180px;
  }
  /* line 290, ../sass/common/_classes.scss */
  .list-items-carousel.owl-theme.five-columns .item-img-wrapper {
    height: 130px;
  }
  /* line 293, ../sass/common/_classes.scss */
  .list-items-carousel.owl-theme.six-columns .item-img-wrapper {
    height: 100px;
  }
  /* line 297, ../sass/common/_classes.scss */
  .list-items-carousel.owl-theme.testimonial-items-carousel .item-img-wrapper {
    height: auto;
  }
  /* line 301, ../sass/common/_classes.scss */
  .list-items-carousel.owl-theme.testimonial-items-carousel.one-column .item-img-wrapper {
    width: 33.33%;
  }
  /* line 304, ../sass/common/_classes.scss */
  .list-items-carousel.owl-theme.testimonial-items-carousel.one-column .testimonial-desc-wrapper {
    width: 66.66%;
  }
  /* line 310, ../sass/common/_classes.scss */
  .list-items-carousel.owl-theme.reference-items-carousel .item-img-wrapper {
    height: auto;
  }
  /* line 312, ../sass/common/_classes.scss */
  .list-items-carousel.owl-theme.reference-items-carousel .item-img-wrapper img {
    min-height: auto;
  }
  /* line 321, ../sass/common/_classes.scss */
  .list-items-carousel.owl-theme.news-items-carousel.one-column .news-image,
  .list-items-carousel.owl-theme.news-items-carousel.one-column .blog-image,
  .list-items-carousel.owl-theme.news-items-carousel.one-column .photo-gallery-image, .list-items-carousel.owl-theme.blog-items-carousel.one-column .news-image,
  .list-items-carousel.owl-theme.blog-items-carousel.one-column .blog-image,
  .list-items-carousel.owl-theme.blog-items-carousel.one-column .photo-gallery-image, .list-items-carousel.owl-theme.photo-gallery-items-carousel.one-column .news-image,
  .list-items-carousel.owl-theme.photo-gallery-items-carousel.one-column .blog-image,
  .list-items-carousel.owl-theme.photo-gallery-items-carousel.one-column .photo-gallery-image {
    text-align: center;
  }
  /* line 325, ../sass/common/_classes.scss */
  .list-items-carousel.owl-theme.news-items-carousel.one-column .news-image img,
  .list-items-carousel.owl-theme.news-items-carousel.one-column .blog-image img,
  .list-items-carousel.owl-theme.news-items-carousel.one-column .photo-gallery-image img, .list-items-carousel.owl-theme.blog-items-carousel.one-column .news-image img,
  .list-items-carousel.owl-theme.blog-items-carousel.one-column .blog-image img,
  .list-items-carousel.owl-theme.blog-items-carousel.one-column .photo-gallery-image img, .list-items-carousel.owl-theme.photo-gallery-items-carousel.one-column .news-image img,
  .list-items-carousel.owl-theme.photo-gallery-items-carousel.one-column .blog-image img,
  .list-items-carousel.owl-theme.photo-gallery-items-carousel.one-column .photo-gallery-image img {
    width: auto;
    max-width: 100%;
    min-height: auto;
    display: inline-block;
  }
}
@media only screen and (min-width: 1200px) {
  /* line 339, ../sass/common/_classes.scss */
  .list-items-carousel.owl-theme.two-columns .item-img-wrapper {
    height: 280px;
  }
  /* line 342, ../sass/common/_classes.scss */
  .list-items-carousel.owl-theme.three-columns .item-img-wrapper {
    height: 200px;
  }
  /* line 345, ../sass/common/_classes.scss */
  .list-items-carousel.owl-theme.four-columns .item-img-wrapper {
    height: 150px;
  }
  /* line 348, ../sass/common/_classes.scss */
  .list-items-carousel.owl-theme.five-columns .item-img-wrapper {
    height: 120px;
  }
  /* line 351, ../sass/common/_classes.scss */
  .list-items-carousel.owl-theme.six-columns .item-img-wrapper {
    height: 100px;
  }
  /* line 355, ../sass/common/_classes.scss */
  .list-items-carousel.owl-theme.testimonial-items-carousel .item-img-wrapper {
    height: auto;
  }
  /* line 359, ../sass/common/_classes.scss */
  .list-items-carousel.owl-theme.testimonial-items-carousel.one-column .item-img-wrapper {
    width: 25%;
  }
  /* line 362, ../sass/common/_classes.scss */
  .list-items-carousel.owl-theme.testimonial-items-carousel.one-column .testimonial-desc-wrapper {
    width: 75%;
  }
  /* line 368, ../sass/common/_classes.scss */
  .list-items-carousel.owl-theme.reference-items-carousel .item-img-wrapper {
    height: auto;
  }
  /* line 370, ../sass/common/_classes.scss */
  .list-items-carousel.owl-theme.reference-items-carousel .item-img-wrapper img {
    min-height: auto;
  }
}
