
/* 2 */
.slider{ 
	position: relative;
	width: 100%;
	z-index: 0;
}
.myslide{
	height: 655px;
	width: 100%;
	display: none;
	overflow: hidden;
}

.prev, .next{
	text-decoration: none;
	position: absolute;
	top: 50%;
	transform: translate(0, -50%);
	font-size: 50px;
	padding: 15px;
	cursor: pointer;
	color: #fff;
	transition: 0.05s;
	user-select: none;
}
.prev:hover, .next:hover{
	color: rgba(130, 194, 71, 1.0); 
}
.next{
	right: 0;
}
.dotsbox{
	position: absolute;
	left: 50%;
	transform: translate(-50%);
	bottom: 20px;
	cursor: pointer;
}
.dot{
	display: inline-block;
	width: 15px;
	height: 15px;
	border: 3px solid #fff;
	border-radius: 50%;
	margin: 0 10px;
	cursor: pointer;
}
/* /2 */

/* javascript */
.active, .dot:hover{
	border-color: rgba(130, 194, 71, 1.0); /* blue */
}
/* /javascript */

/* muslide add fade */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 10s;
  animation-name: fade;
  animation-duration: 10s;
}

@-webkit-keyframes fade {
  from {opacity: 0.8}
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: 0.8}
  to {opacity: 1}
}
/* /muslide add fade */

/* 3 */
.txt{
	background-color: rgba(0, 0, 0, 0.6);
	padding: 30px;
	position: absolute;
	color: #fff;
	letter-spacing: 2px;
	line-height: 35px;
	top: 25%;
	left: 15%;
	max-width: 600px;
	-webkit-animation-name: posi;
  	-webkit-animation-duration: 3s;
  	animation-name: posi;
  	animation-duration: 3s;
	z-index: 1;
}

@-webkit-keyframes posi {
  from {left: 25%;}
  to {left: 15%;}
}


@keyframes posi {
  from {left: 25%;}
  to {left: 15%;}
}

.txt h1{
	color: white; /* blue */
	font-weight: bold;
	font-size: 35px;
}
.txt .subTitulo{
	font-weight: bold;
	margin-bottom: -5px;
	color: rgb(130, 194, 71, 1.0);
	text-transform: uppercase;
}
/* /3 */

.txt p{
	font-size: 15px;
}

/**/ .myslide img{
	width: 100%;
	height: 100%;
	transform: scale(1.5, 1.5);
	-webkit-animation-name: zoomin;
  	-webkit-animation-duration: 80s;
  	animation-name: zoomin;
  	animation-duration: 80s;
} 

@-webkit-keyframes zoomin {
  from {transform: scale(1, 1);}
  to {transform: scale(1.5, 1.5);}
}


@keyframes zoomin {
  from {transform: scale(1, 1);}
  to {transform: scale(1.5, 1.5);}
}
/* /4 */
@media (max-width:1200px){
	
	.txt h1{
		font-size: 20px;
	}
		.txt p{
		font-size: 13px;
	}
}


/* 5 */
@media screen and (max-width: 800px){
	.myslide{
		height: 500px;
	}
	.txt{
		letter-spacing: 2px;
		line-height: 25px;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		-webkit-animation-name: posi2;
		-webkit-animation-duration: 2s;
		animation-name: posi2;
		animation-duration: 2s;
	}

	@-webkit-keyframes posi2 {
	  from {top: 35%;}
	  to {top: 50%;}
	}


	@keyframes posi2 {
	  from {top: 35%;}
	  to {top: 50%;}
	}

	.txt h1{
		font-size: 30px;
	}
	.txt p{
		font-size: 13px;
	}

}
/* /5 */

/* 6 */
@media screen and (max-width: 520px){
	.txt h1{
		font-size: 20px;
		margin-bottom: 20px;
	}
	.sign{
		margin-right: 20px;
	}
	.sign a{
		font-size: 12px;
	}
	
	.txt{
		width: 300px;
	}

}
/* /6 */

.myslide button{
	border:0px;
	margin-top:-10px;
	font-weight: bold;
	font-size: 15px;
	opacity:1;
	top:-10%;
    transition: all 300ms ease;
}


.myslide  button:hover{
	background:white;
	color:rgba(130, 194, 71, 1.0);
	border:0px;
}

.myslide button span{
	margin-left:10px;
}














