.mv-add {
  position: relative;
  overflow: hidden;
}

.mv-slider {
  position: relative;
  width: 100%;
  cursor: -webkit-grab;
  cursor: grab;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.mv-slider:active {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

.mv-slides {
  position: relative;
  width: 100%;
}

.mv-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.5s ease, visibility 0.5s ease;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.mv-slide.is-active {
  position: relative;
  height: auto;
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.mv-slide-picture {
  display: block;
  line-height: 0;
  height: 100%;
}
.mv-slide.is-active .mv-slide-picture {
  height: auto;
}
.mv-slide-picture img {
  display: block;
  width: 100%;
  vertical-align: top;
  -webkit-user-drag: none;
  user-drag: none;
  pointer-events: none;
}
.mv-slide.is-active .mv-slide-picture img {
  height: auto;
}
.mv-slide:not(.is-active) .mv-slide-picture img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.mv-slide-link {
  position: absolute;
  z-index: 2;
  display: block;
  overflow: hidden;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
  text-decoration: none;
}
@media print, screen and (min-width: 1024px) {
  .mv-slide-link {
    color: #fff;
    font-size: 19px;
    font-weight: bold;
    text-align: center;
    line-height: 1.5;
    height: 59px;
    width: 288px;
    border-radius: 10px;
    background-color: #ed6d00;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media print, screen and (max-width: 1023.9px) {
  .mv-slide-link {
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    bottom: 52%;
    width: 60%;
    height: 10%;
    min-height: 20px;
    border-radius: 10px;
    background-color: #ed6d00;
    color: #FFF;
    font-weight: bold;
    font-size: 14px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media print, screen and (min-width: 1024px) {
  .mv-slide-link:hover {
    background-color: #d78129;
    opacity: 1;
  }
}
@media print, screen and (min-width: 1024px) {
  .mv-slide:nth-child(1) .mv-slide-link {
    left: 15vw;
    bottom: 9vw;
    min-height: 48px;
  }
}
@media print, screen and (min-width:1280px) {
  .mv-slide:nth-child(1) .mv-slide-link {
    left: 17vw;
    bottom: 10vw;
  }
}
@media print, screen and (min-width: 1600px) {
  .mv-slide:nth-child(1) .mv-slide-link {
    left: 20vw;
  }
}
@media print, screen and (min-width: 1024px) {
  .mv-slide:nth-child(2) .mv-slide-link {
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    bottom: 53%;
  }
}

.mv-dots {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  z-index: 3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 12px;
  padding: 0;
  list-style: none;
  margin: 0;
}
@media print, screen and (max-width: 1023.9px) {
  .mv-dots {
    bottom: 16px;
    gap: 10px;
  }
}

.mv-dot {
  width: 12px;
  height: 12px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background-color: #a1a1a1;
  cursor: pointer;
  -webkit-transition: background-color 0.25s ease;
  transition: background-color 0.25s ease;
}
.mv-dot:hover {
  background-color: #808080;
}
.mv-dot.is-active {
  background-color: #000;
  cursor: default;
}
@media print, screen and (max-width: 1023.9px) {
  .mv-dot {
    width: 10px;
    height: 10px;
  }
}
