.wdo-slider {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin: 0 0 24px;
  background: #f5f5f5;
  display: block;
  clear: both;
  box-sizing: border-box;
}

.wdo-slider-track {
  position: relative;
  min-height: inherit;
  height: 100%;
}

.wdo-slide {
  display: none;
  position: relative;
  min-height: inherit;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.wdo-slide.active {
  display: block;
}

.wdo-slide-overlay {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.wdo-slide-link {
  display: block;
  position: relative;
  min-height: inherit;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.wdo-slide-link:hover,
.wdo-slide-link:focus {
  color: inherit;
  text-decoration: none;
}

.wdo-slide-inner {
  position: relative;
  z-index: 2;
  min-height: inherit;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  box-sizing: border-box;
}

.wdo-content-left {
  justify-content: flex-start;
}

.wdo-content-center {
  justify-content: center;
}

.wdo-content-right {
  justify-content: flex-end;
}

.wdo-slide-content {
  max-width: 640px;
}

.wdo-title {
  margin: 0 0 12px;
  line-height: 1.1;
}

.wdo-subtitle {
  margin-bottom: 10px;
  font-size: 16px;
  opacity: .92;
}

.wdo-description {
  margin: 0 0 20px;
  line-height: 1.6;
}

.wdo-btn {
  display: inline-block;
  position: relative;
  z-index: 3;
  text-decoration: none;
  padding: 12px 18px;
}

.wdo-slide-object {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 48%;
}

.wdo-slide-object.align-left {
  order: -1;
}

.wdo-slide-object.align-center {
  margin: 0 auto;
}

.wdo-slide-object img {
  display: block;
  max-width: 100%;
  height: auto;
}

.wdo-slide-image-only .wdo-slide-inner,
.wdo-force-cover .wdo-slide-inner {
  max-width: none;
  padding: 0 !important;
}

.wdo-slide-image-only .wdo-slide-content,
.wdo-force-cover .wdo-slide-content {
  display: none;
}

.wdo-slide-image-only .wdo-slide-object,
.wdo-force-cover .wdo-slide-object {
  width: 100% !important;
  max-width: 100%;
  min-height: inherit;
  height: 100%;
  margin: 0;
}

.wdo-slide-image-only .wdo-slide-object picture,
.wdo-slide-image-only .wdo-slide-object img,
.wdo-force-cover .wdo-slide-object picture,
.wdo-force-cover .wdo-slide-object img {
  display: block;
  width: 100%;
  min-height: inherit;
  height: 100%;
}

.wdo-slide-image-only .wdo-slide-object img,
.wdo-force-cover .wdo-slide-object img {
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center center;
}

.wdo-slider-transitioning .wdo-slider-track {
  overflow: hidden;
}

.wdo-slider-transitioning .wdo-slide {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  min-height: inherit;
  height: 100%;
  opacity: 0;
  z-index: 1;
  transition-property: opacity, transform;
  transition-timing-function: ease;
}

.wdo-slider-transitioning .wdo-slide.active {
  display: block;
}

.wdo-slider-transitioning .wdo-enter {
  z-index: 2;
}

.wdo-slider-transitioning .wdo-leave {
  z-index: 1;
}

.wdo-effect-fade .wdo-enter {
  opacity: 0;
}

.wdo-effect-fade .wdo-enter.wdo-in {
  opacity: 1;
}

.wdo-effect-fade .wdo-leave {
  opacity: 1;
}

.wdo-effect-fade .wdo-leave.wdo-in {
  opacity: 0;
}

.wdo-effect-slide .wdo-enter-next {
  opacity: 1;
  transform: translateX(100%);
}

.wdo-effect-slide .wdo-enter-prev {
  opacity: 1;
  transform: translateX(-100%);
}

.wdo-effect-slide .wdo-enter.wdo-in {
  transform: translateX(0);
}

.wdo-effect-slide .wdo-leave {
  opacity: 1;
  transform: translateX(0);
}

.wdo-effect-slide .wdo-leave-next.wdo-in {
  transform: translateX(-100%);
}

.wdo-effect-slide .wdo-leave-prev.wdo-in {
  transform: translateX(100%);
}

.wdo-effect-zoom .wdo-enter {
  opacity: 0;
  transform: scale(1.04);
}

.wdo-effect-zoom .wdo-enter.wdo-in {
  opacity: 1;
  transform: scale(1);
}

.wdo-effect-zoom .wdo-leave {
  opacity: 1;
  transform: scale(1);
}

.wdo-effect-zoom .wdo-leave.wdo-in {
  opacity: 0;
  transform: scale(.98);
}

.wdo-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  border: 0;
  background: rgba(0, 0, 0, .35);
  color: #fff;
  width: 42px;
  height: 42px;
  cursor: pointer;
}

.wdo-arrow.prev {
  left: 12px;
}

.wdo-arrow.next {
  right: 12px;
}

.wdo-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 14px;
  z-index: 5;
  text-align: center;
}

.wdo-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 0;
  margin: 0 4px;
  background: rgba(255, 255, 255, .55);
  cursor: pointer;
}

.wdo-dot.active {
  background: #fff;
}

@media (max-width: 767px) {
  .wdo-slide {
    min-height: 220px;
  }

  .wdo-mobile-contain .wdo-slide {
    background-size: contain !important;
  }

  .wdo-mobile-contain .wdo-slide-image-only .wdo-slide-object img,
  .wdo-mobile-contain.wdo-force-cover .wdo-slide-object img {
    object-fit: contain;
  }

  .wdo-slide-inner {
    display: block;
  }

  .wdo-slide-content,
  .wdo-slide-object {
    max-width: 100%;
    width: 100% !important;
  }

  .wdo-slide-object {
    margin-top: 16px;
  }

  .wdo-slide-image-only .wdo-slide-object,
  .wdo-force-cover .wdo-slide-object {
    margin-top: 0;
  }

  .wdo-content-mobile-left {
    justify-content: flex-start;
  }

  .wdo-content-mobile-center {
    justify-content: center;
  }

  .wdo-content-mobile-right {
    justify-content: flex-end;
  }
}
