.kv {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 50px 40px;
}

@media (min-width: 996px) {
  .kv {
    padding: 80px 15vw;
  }
}

@media (min-width: 996px) {
  .kv__box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.kv__title {
  position: relative;
  width: 90%;
  margin: 0 auto;
  max-width: auto;
}

@media (min-width: 996px) {
  .kv__title {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 45%;
            flex: 0 0 45%;
  }
}

.kv__title__text {
  position: absolute;
  inset: 0;
}

.kv__title__text.base {
  position: relative;
}

.kv__pd {
  position: relative;
}

@media (min-width: 996px) {
  .kv__pd {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
  }
}

.kv__pd__nb {
  position: absolute;
  inset: 0;
  z-index: 2;
  -webkit-animation: 2s float infinite ease-in-out;
          animation: 2s float infinite ease-in-out;
}

.kv__cloud {
  position: absolute;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  white-space: nowrap;
  text-transform: uppercase;
}

.kv__cloud span {
  position: absolute;
  margin-right: 60px;
  -webkit-animation: marquee 40s linear infinite;
          animation: marquee 40s linear infinite;
  width: 150px;
}

@media (min-width: 996px) {
  .kv__cloud span {
    width: 200px;
  }
}

.kv__cloud span:nth-child(1) {
  top: 10%;
  left: 0;
}

.kv__cloud span:nth-child(2) {
  top: 25%;
  left: 30%;
}

.kv__cloud span:nth-child(3) {
  top: 40%;
  left: 50%;
}

.kv__cloud span:nth-child(4) {
  top: 60%;
  left: 70%;
}

.kv__cloud span:nth-child(5) {
  top: 70%;
  left: 80%;
}

.kv__cloud span:nth-child(6) {
  top: 80%;
  left: 120%;
}

.kv__cloud span:nth-child(7) {
  top: 50%;
  left: 190%;
}

.kv__terms {
  color: #fff;
  font-size: 16px;
  padding-top: 25px;
}

@-webkit-keyframes marquee {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

@keyframes marquee {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

@-webkit-keyframes float {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(5px);
            transform: translateY(5px);
  }
}

@keyframes float {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(5px);
            transform: translateY(5px);
  }
}

.project {
  position: relative;
  background: -webkit-gradient(linear, left top, left bottom, from(#4c010d), color-stop(3%, #8a0917), color-stop(10%, #54020f), color-stop(#4c010d), color-stop(#970b19), to(#4c010d));
  background: linear-gradient(to bottom, #4c010d 0%, #8a0917 3%, #54020f 10%, #4c010d, #970b19, #4c010d);
}

.project::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url("../images/bg.png") top center repeat-y;
  background-size: 100% auto;
  pointer-events: none;
}

.project__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.project__bg::before {
  content: "";
  position: absolute;
  z-index: 10;
  width: 20px;
  height: 100%;
  top: 0;
  left: 0;
  background: url("../images/bg-line.png") top left repeat-y;
  background-size: 100% auto;
}

@media (min-width: 996px) {
  .project__bg::before {
    width: 5vw;
  }
}

.project__bg::after {
  content: "";
  position: absolute;
  z-index: 10;
  width: 20px;
  height: 100%;
  top: 0;
  right: 0;
  background: url("../images/bg-line.png") top left repeat-y;
  background-size: 100% auto;
}

@media (min-width: 996px) {
  .project__bg::after {
    width: 5vw;
  }
}

.project img {
  max-width: 100%;
  vertical-align: bottom;
}

.project picture {
  display: block;
}
/*# sourceMappingURL=kv-body.css.map */