body {
  margin: 0;
}

.slider {
  overflow: hidden;
  width: 100vw;
  height: 100vh;
  position: relative;
}

.slider .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  animation: slide 30s infinite;
}

.slider .slide:nth-child(1) {
  background-image: url('../img/boutique-arriba.jpg');
  animation-delay: -0;
}

.slider .slide:nth-child(2) {
  background-image: url('../img/guru-botellero.jpg');
  animation-delay: -5s;
}
  
.slider .slide:nth-child(3) {
  background-image: url('../img/boutique-cabezon.jpg');
  animation-delay: -10s;
}
  
.slider .slide:nth-child(4) {
  background-image: url('../img/guru-barra.jpg');
  animation-delay: -15s;
}

.slider .slide:nth-child(5) {
  background-image: url('../img/boutique-m1.jpg');
  animation-delay: -20s;
}

.slider .slide:nth-child(6) {
  background-image: url('../img/guru-sf.jpg');
  animation-delay: -25s;
}

@keyframes slide {
  0%, 15%, 100% {
    transform: translateX(0);
    animation-timing-function: ease;
  }
  20% {
    transform: translateX(-100%);
    animation-timing-function: step-end;
  }
  95% {
    transform: translateX(100%);
    animation-timing-function: ease;
  }
}

img.logo {
  width: 350px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

img.logo-boutique {
  width: 250px;
  position: absolute;
  top: 15%;
  right: -5%;
  transform: translate(-50%, -50%);
}

img.logo-guru {
  width: 200px;
  position: absolute;
  top: 10%;
  left: 10%;
  transform: translate(-50%, -50%);
}

@media (max-width: 480px) {
	img.logo-guru {
	  width: 200px;
	  bottom: 10%;
	  top: initial;
	  left: 50%;
	}
	img.logo-boutique {
	  width: 200px;
	  bottom: 30%;
	  top: initial;
	  left: 50%;
	}
	img.logo {
	  width: 300px;
	  top: 20%;
	  left: 50%;
	}
	
}