.mv {
  width: 100%;
  height: 100vh;
  position: relative;
}

.mv__slider {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: initial;
  transform: initial;
  z-index: 1;
  overflow: hidden;
}

.mv__slider:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: initial;
  transform: initial;
  z-index: 1;
  background-image: url(../images/img/overlay.png);
  opacity: .4;
}

.mv__slides {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: initial;
  transform: initial;
  z-index: initial;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  animation-name: slides;
  -webkit-animation-name: slides;
  animation-duration: 10s;
  -webkit-animation-duration: 10s;
  animation-timing-function: linear;
  -webkit-animation-timing-function: linear;
}

.mv__slides:not(:first-child) {
  display: none;
}

@keyframes slides {
  100% {
    transform: scale(1.2);
  }
}

@-webkit-keyframes slides {
  100% {
    transform: scale(1.2);
  }
}

.mv__title {
  width: initial;
  height: initial;
  position: absolute;
  top: 50%;
  right: initial;
  bottom: initial;
  left: 50%;
  background: initial;
  transform: translate(-50%, -50%);
  z-index: 2;
  -webkit-transform: translate(-50%, -50%);
}

.mv__title h1 span {
  color: #fff;
  font-size: 42px;
  text-shadow: 5px 5px 20px rgba(0, 0, 0, 0.6);
}

.mv__title h1 img {
  margin: 0 auto;
  width: 80%;
  height: auto;
}

.main__section {
  padding: 80px 0;
}

.section2 {
  background: #eee;
}
