/* Youtube fullpage */
.videoYt {
  position: relative;
  padding-bottom: 56.25%;
  overflow: hidden;
  border-radius: 0px
}

.videoYt iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0
}

/* Lazy Youtube */
.NexosYt {
  position: relative;
  overflow: hidden;
  padding-top: 56.25%;
  border-radius: 4px;
  border: 2px solid rgba(255, 255, 255, .9);
}

.NexosYt img {
  width: 100%;
  top: -16.84%;
  left: 0;
  opacity: .95
}

.NexosYt img,
.NexosYt iframe,
.NexosYt .play {
  position: absolute
}

.NexosYt iframe {
  width: 100%;
  height: 100%;
  bottom: 0;
  right: 0
}

.NexosYt .play {
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
  transition: all .5s ease;
  display: block;
  width: 70px;
  height: 70px;
  z-index: 1;
  cursor: pointer
}

.NexosYt .play svg {
  width: inherit;
  height: inherit;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-miterlimit: 10;
  stroke-width: 10
}

.NexosYt .play .c {
  stroke: rgba(255, 255, 255, .9);
  stroke-dasharray: 650;
  stroke-dashoffset: 650;
  transition: all .4s ease-in-out;
  opacity: .3
}

.NexosYt .play .t {
  stroke: rgba(255, 255, 255, .75);
  stroke-dasharray: 240;
  stroke-dashoffset: 480;
  transition: all .6s ease-in-out;
  transform: translateY(0)
}

.NexosYt .play:hover .t {
  animation: nudge .6s ease-in-out;
  -webkit-animation: nudge .6s ease-in-out
}

.NexosYt .play:hover .t,
.NexosYt .play:hover .c {
  stroke-dashoffset: 0;
  opacity: .7;
  stroke: #FF0000
}

.nAmp .NexosYt {
  display: none
}

@keyframes nudge {
  0% {
    transform: translateX(0)
  }

  30% {
    transform: translateX(-5px)
  }

  50% {
    transform: translateX(5px)
  }

  70% {
    transform: translateX(-2px)
  }

  100% {
    transform: translateX(0)
  }
}