*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Roboto', sans-serif;
}
/*GENERALES*/
html{
	scroll-behavior: smooth;
}
a{
	text-decoration: none;
	color: inherit;
}
ul li{
	list-style: none;
	margin-right: 70px;
	color: #a2a2a2;
	font-size: 10px;
	cursor: pointer;
	transition: 0.3s;
}
ul li:hover{
	color: white;
	transition: 0.3s;
}
form{
	margin: 20px 0;
}
label{
	font-weight: bold;
	color: #262626;
}
select{
	padding: 10px;
	margin-left: 15px;
	background-color: #3c3c3c;
	color: white;
	cursor: pointer;
	font-size: 17px;
	transition: 0.2s;
	font-weight: bold;
}
select:hover{
	background-color: white;
	color: #3c3c3c;
	transition: 0.2s;
}
select:hover option{
	color: #3c3c3c;
}
option{
	font-weight: bold;
}
.flex{
	display: flex;
}
.center{
	justify-content: center;
	align-items: center;
}
.between{
	justify-content: space-between;
}
.columna{
	flex-direction: column;
}
.end{
	justify-content: flex-end;
}
.start{
	justify-content: flex-start;
}
.relativa{
	position: relative;
}
.absoluta{
	position: absolute;
}
/*FIN GENERALES*/
/*INICIO*/
.inicio{
	width: 100%;
	height: 100vh;
	background-color: white;
	position: fixed;
	top: 0;
	right: 0;
	z-index: 3;
}
.inicio img{
	width: 60%;
}
/*FIN INICIO*/
/*NAVEGADOR*/

.nav{
	width: 100%;
	background-color: white;
	padding: 10px;
	transition: 1s;
	position: fixed;
	top: 0;
	right: 0;
	z-index: 1;
}
.nav i{
	font-size: 10px;
	color: #a2a2a2;
}
.navdos{
	width: 100%;
	background-color: #262626;
	transition: 1s;
	position: fixed;
    top: 39px;
    opacity: 0.9;
    z-index: 1;
}
.navdos li{
	font-size: 13px;
	font-weight: bold;
/*	color: rgba(0,0,0,0.8);*/
	color: #a5a5a5;
	transition: 0.5s;
	position: relative;
}
.navdos li:hover{
	color: white;
	transition: 0.5s;
}
.logo{
	width: 38%;
}
.logo img{
	width: 20%;
	transition: 0.2s;
}
.logo img:hover{
	width: 20%;
	opacity: 0.3;
	transition: 0.2s;
}
.wrappertop{
	max-width: 1200px;
	margin: auto;
}
.burger{
	cursor: pointer;
}
.burger:hover div{
	background-color: white;
	transition: 0.3s;
}
.oculto{
	display: none;
}
.linea{
	width: 20px;
	height: 2px;
	background-color: lightgray;
	margin-bottom: 5px;
}
.linealarga{
	width: 100%;
	height: 1px;
	background-color: lightgray;
	margin: 20px 0;
}
.store{
	cursor: pointer;
}
.store i:hover{
	color: white;
	transition: 0.3s;
}
.menu{
	width: 80%;
	margin: auto;
	color: white;
}
.menu p{
	margin: 20px 0;
	color: lightgray;
	border-bottom: 1px solid lightgray;
	padding-bottom: 10px;
	cursor: pointer;
}
.menu p:hover{
	color: white;
	transition: 0.3s;
}
.menu p:first-child{
	margin-top: 50px;
}
.arriba.fadeOutUp{
	top: -50px;
}
.navdos li::after {
	content:'';
	display: block;
	width: 0%;
	height: 2.5px;
	background-color: white;
	position: absolute;
	top: 130%;
	transition: 0.5s;
}
.navdos li:hover::after{
	width: 100%;
}
/*SECCION*/
.seccion{
	width: 100%;
	height: 1108px;
	background-color: #14191f;
	transition: 0.5s;
}
.wrapper{
	max-width: 1600px;
	margin: auto;
}
.cabecera{
	width: 100%;
	height: 1000px;
	background-image: url('imagenes/dos.jpg');
	background-size: cover;
	background-position: center;
	transition: 0.5s;
	position: relative;
    top: 105px;
}
/*.cabecera:hover{
	opacity: 0.5;
	transition: 0.5s;
}*/
.texto{
	width: 20%;
}
.texto h1{
	color: #dabe57;
	font-size: 20px;
	font-weight: bold;
	letter-spacing: -1px;
	margin-top: 600px;
	cursor: pointer;
	transition: 0.3s;
}
.texto h1:hover{
	color: #833339;
	transition: 0.5s;
}
.texto p{
	color: lightgray;
	font-size: 15px;
	margin-top: 15px;
	font-weight: inherit;
	text-align: center;
}

.boton{
	transition: 0.3s;
	margin-bottom: 200px;
	opacity: 0;
}
.boton p{
	color: white;
	font-size: 11px;
	font-weight: bold;
	letter-spacing: 1px;
}
.slider{
	width: 5%;
	position: absolute;
	bottom: 10px;
	left: 47%;
	z-index: 1;
}
.circulo{
	width: 10px;
	height: 10px;
	border-radius: 10px;
	background-color: white;
	cursor: pointer;
	transition: 0.3s;
	margin-bottom: 20px;
}
.circulo:hover{
	opacity: 0.3;
	transition: 0.3s;
}
.opaco{
	opacity: 0.3;
}

/*CABECERA DOS*/
.cabecerados{
	width: 100%;
	height: 1000px;
	background-image: url('imagenes/oncedesea.jpg');
	background-size: cover;
	background-position: top center;
	transition: 0.5s;
	position: relative;
    top: 105px;
}

/*SECCION DOS*/
.secciondos{
	width: 100%;
	background-color: white;
	transition: 0.5s;
	margin-top: 150px;
}
.wrapperdos{
	max-width: 1200px;
	margin: auto;
}
.foto{
	width: 49%;
}
.foto img{
	width: 100%;
	transition: 0.3s;
}
.inforopa{
	width: 30%;
	position: relative;
	right: 200px;
	top: 0px;
}
.inforopa h1{
	font-size: 30px;
	color: #262626;
	font-style: italic;
	font-weight: 900;
}
.inforopa h2{
	color: #aeaeae;
	font-size: 25px;
	margin-bottom: 20px;
}
.inforopa h4{
	font-weight: 400;
	font-size: 13px;
	color: #262626;
}
.inforopa p{
	font-style: italic;
	font-weight: 400;
}
.inforopa .linealarga{
	margin-top: 10px;
	margin-bottom: 0;
	height: 2px;
}

/*.foto img:hover{
	opacity: 0.5;
	transition: 0.3s;
}*/
/*.foto:hover .boton{
	opacity: 1;
}*/
.camiseta{
	width: 55%;
}
.camiseta img{
	width: 100%;
}
.blanco{
	background-color: white;
	border: 3px solid black;
}
.rojo{
	background-color: #c90511;
}
.mostaza{
	background-color: #dabe57;
}
.negro{
	background-color: black;
}
.circulodos{
	width: 20px;
	height: 20px;
	border-radius: 10px;
	cursor: pointer;
	transition: 0.3s;
	margin: 20px 0;
}
.circulodos:hover{
	opacity: 0.3;
	transition: 0.3s;
}
.sliderdos{
	width: 35%;
	margin-top: 15px;
}
.botonn{
	background-color: #262626;
	border-radius: 10px;
	padding: 25px 40px;
	color: black;
	transition: 0.3s;
	cursor: pointer;
	margin-bottom: 30px;
	width: 100%;
	transition: 0.2s;
}
.botonn p{
	font-weight: bold;
	color: white;
	letter-spacing: 1px;
	font-style: normal;
}
.botonn:hover{
	opacity: 0.5;
	transition: 0.2s;
}
.inforopa i{
	margin-right: 10px;
	font-size: 12px;
}
.tallas{
	right: 45%;
}
.chica{
	width: 20%;
}

/*INICIO FOOTER---------------------------------------*/
.footer{
	width: 90%;
    margin: 300px auto;
    padding: 50px 0;
    border-top: 2px solid #f6f6f6;
    border-bottom: 2px solid #f6f6f6;
}
.wrapperfooter{
	max-width: 1200px;
	margin: auto;
}
.footer h1{
	font-size: 16px;
	color: #5a5a5a;
	margin-bottom: 20px;
}
.footer p{
	font-size: 14px;
	color: #bbbbbb;
	margin-bottom: 15px;
}
.redes{
	width: 180px;
	margin: 50px 0;
}
.redes i{
	font-size: 25px;
}

.redes i:hover{
	color: #5f5f5f73;;
	transition: 0.2s;
}
.footer a{
	color: black;
}
.footer h3{
	font-size: 15px;
}
@media (max-width: 750px){
/*--------INICIO MENU BURGER----------*/
	.navdos{
		display: none;
	}
	.logo{
		display: block;
		width: 90%;
		padding: 0;
	}
	.lista{
		display: none;
	}
	.wrappertop{
		max-width: 450px;
		justify-content: flex-start;
		align-items: center;
	}
	.nav{
		background-color: black;
		transition: 1s;
		position: fixed;
	}
	.responsive{
		height: 100vh;
    	background-color: #000000c7;
    	transition: 1s;
    	position: fixed;
    	z-index: 100;
    	width: 100%;
    	top: 65px;
	}
	.burger{
		display: block;
	}
	.store{
		display: none;
	}

/*--------FIN MENU BURGER----------*/
	.wrapper{
		flex-direction: column;
		align-items: center;
	}
	.seccion{
		height: inherit;
	}
	.secciondos{
		margin-top: 100px;
	}
	.inicio img{
		width: 90%;
	}
	.cabecera{
		top: 0;
	}
	.fondo{
		height: 150px;
	}
	.foto{
		width: 90%;
		margin-bottom: 30px;
	}
	.inforopa{
		right: 0;
		width: 77%;
		align-items: center;
	}
	.inforopa h1, h2{
		text-align: center;
		margin: 10px 0;
	}
	.wrapperdos{
		flex-direction: column;
	}
	.camiseta{
		width: 90%;
	}
/*------------INICIO FOOTER-----------	*/
	.wrapperfooter{
		flex-wrap: wrap;
		max-width: 200px;
	}
}

@keyframes fadeOutUp {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
  animation-duration: 0.5s;
}

@keyframes fadeIn {
  0%{
    opacity: 0;
  }

  50%{
    opacity: 1;
  }
  100%{
  	opacity: 0;
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
  animation-duration: 4s;
  animation-fill-mode: forwards;
}

@keyframes fadeInn {
  0%{
    opacity: 1;
  }
  45%{
  	opacity: 1;
  }
  90%{
  	opacity: 0;
  	left: 0;
  }
  100% {
  	opacity: 0;
  	left: 100%;
  }
}

.fadeInn {
  -webkit-animation-name: fadeInn;
  animation-name: fadeInn;
  animation-duration: 4s;
  animation-fill-mode: forwards;
}

@keyframes fadeCabecera {
  0%{
    opacity: 0;
  }

  100%{
  	opacity: 1;
  }
}

.fadeCabecera {
  -webkit-animation-name: fadeCabecera;
  animation-name: fadeCabecera;
  animation-duration: 2s;
  animation-fill-mode: forwards;
}

@keyframes fadeCamisetas {
  0%{
    opacity: 0.5;
  }

  100%{
  	opacity: 1;
  }
}

.fadeCamisetas {
  -webkit-animation-name: fadeCamisetas;
  animation-name: fadeCamisetas;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
}
