.more-features {
  display: flex;
  flex-flow: column;
  justify-content: center;
}
@media all and (min-width: 768px) {
  .more-features {
    flex-flow: wrap;
    align-items: center;
  }
}
@media all and (min-width: 768px) {
  .more-features .image {
    width: 50%;
  }
}
.more-features .image img {
  width: 100%;
}
.more-features .wrapper {
  padding: 40px 40px;
  box-sizing: border-box;
}
@media all and (min-width: 768px) {
  .more-features .wrapper {
    width: 50%;
    padding: 40px 60px;
  }
}
.more-features .wrapper .features {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.more-features .wrapper .features .title {
  font-size: 24px;
  line-height: 24px;
  font-weight: bold;
}
.more-features .wrapper .features .feature {
  color: var(--white-color);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.more-features .wrapper .features .feature .contents {
  overflow: hidden;
  width: 100%;
}
.more-features .wrapper .features .feature .contents .slides-wrapper {
  display: flex;
  position: relative;
}
.more-features .wrapper .features .feature .contents .slides-wrapper .slide {
  width: 100%;
  user-select: none;
  padding-right: 100px;
}
.more-features .wrapper .features .feature .contents .buttons {
  display: flex;
  gap: 12px;
  justify-content: end;
  transform: translateY(-100%);
}
.more-features .wrapper .features .feature .contents .buttons a svg {
  width: 50px;
}
.more-features .wrapper .features .feature .contents .buttons a svg .color {
  fill: var(--white-color);
}
.more-features .wrapper .features .feature .contents .buttons a#prev {
  transform: scaleX(-1);
}
.more-features.light {
  background-color: var(--white-color);
}
.more-features.light .wrapper .features .feature {
  color: var(--default-font-color);
}
.more-features.light .wrapper .features .feature .contents .buttons a svg .color {
  fill: var(--black-color);
}
.more-features.right-position .image {
  order: 2;
}
.owl-carousel .owl-dots {
  display: flex;
  gap: 6px;
  justify-content: center;
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
}
.owl-carousel button.owl-dot {
  background-color: #cacaca;
  width: 20px;
  height: 20px;
  border-radius: 50%;
}
.owl-carousel button.owl-dot.active {
  background-color: #696969;
}
