*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
/*
body{
	background-color: green;
}
*/


/*

.hidden{
    overflow: hidden;
}
.centrado{
    height:100vh;
    background-color: #000000;
    display: flex;
    justify-content: center;
    align-items: center; 
}
.lds-ellipsis {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.lds-ellipsis div {
  position: absolute;
  top: 33px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #fff;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
.lds-ellipsis div:nth-child(1) {
  left: 8px;
  animation: lds-ellipsis1 0.6s infinite;
}
.lds-ellipsis div:nth-child(2) {
  left: 8px;
  animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(3) {
  left: 32px;
  animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(4) {
  left: 56px;
  animation: lds-ellipsis3 0.6s infinite;
}
@keyframes lds-ellipsis1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes lds-ellipsis3 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes lds-ellipsis2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(24px, 0);
  }
}
*/


img.nohover:hover{
	border-radius: 0px;
}

.content-all{
	width: 200px;
	margin: auto;
	perspective: 1000px;
	position: relative;
	margin-top: 100px;
}

.content-carrousel{
	width: 100%;
	position: absolute;
	animation: rotar 40s infinite linear;
	transform-style: preserve-3d;
}

.content-carrousel:hover{
	animation-play-state: paused;
	cursor: pointer;
}

.content-carrousel figure{
	width: 120%;
	height: 120px;
	overflow: hidden;
	position: absolute;
	box-shadow: 0px 0px 20px 0px black;
	transition: all 300ms;
}

.content-carrousel figure:hover{
	box-shadow: 0px 0px 0px 0px black;
	transition: all 300ms;
}


.content-carrousel figure:nth-child(1){transform: rotateY(0deg) translateZ(350px);}
.content-carrousel figure:nth-child(2){transform: rotateY(72deg) translateZ(350px);}
.content-carrousel figure:nth-child(3){transform: rotateY(144deg) translateZ(350px);}
.content-carrousel figure:nth-child(4){transform: rotateY(216deg) translateZ(350px);}
.content-carrousel figure:nth-child(5){transform: rotateY(288deg) translateZ(350px);}
.content-carrousel figure:nth-child(6){transform: rotateY(360deg) translateZ(350px);}

.content-carrousel img{
	width: 100%;
	transition: all 300ms;
}

.content-carrousel img:hover{
	transform: scale(0.8);
	transition: all 300ms;
}

@keyframes rotar{
	from{
		transform: rotateY(0deg);
	}to{
		transform: rotateY(360deg);
	}
}
