@charset "utf-8";
/* CSS Document */

/* Contenedor Slideshow*/
.slideshow-container {
 width: 100%;
 
  position: relative;
  margin: auto;
  margin-top:80px;
	
  }
  
  .slideshow-container img{
	 
	  box-shadow:3px 3px 3px #77777a;
  -webkit-box-shadow:3px 3px 3px #77777a;
	-moz-box-shadow:3px 3px 3px #77777a;
width: 100%;
	  
}

/* Botones de anterior y siguiente */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 0;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
}

/* Posición de el boton siguiente a la derecha*/
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* Hover boton anterior y siguiente */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

/* text */

.text a{
	font-size: 18px;
	font-weight: bold;
	display: block;
	position: absolute;
	top:50%;
	left:20%;
	transform: translateX(-20%) translateY(-50%);
	padding:7px;
	text-align: center;
	text-decoration: none;
	color:#fff;
	border:2px solid #fff;
	background: rgba(0,74,151,0.5);
		}

.text a:hover{
	background: rgba(0,3,85,0.6);
	color:#E7FF01;
	transition: 0.3s;
	box-shadow:3px 3px 3px #77777a;
  -webkit-box-shadow:3px 3px 3px #77777a;
	-moz-box-shadow:3px 3px 3px #77777a;
	
}



.Calculo a:hover{
	background: rgba(113,110,116,0.5);
	color:#ffff;	
	transition: all 0.5s;
	
	}


/*Los puntos*/
.dot {
  cursor:pointer;
  height: 13px;
  width: 13px;
  margin: 0 2px;
  background-color:#004a97;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
	margin-top: -5px;
	margin-bottom: 20px;
}

.active, .dot:hover {
  background-color: #77777a;
}

/* Animacion Fading */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1s;
  animation-name: fade;
  animation-duration: 1s;
}

@-webkit-keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}



@media (min-width: 1280px){
	
	.slideshow-container {
		top:22px;
		width:95%;
		
		
		
		
	}
	
	
		.slideshow-container img{
			box-shadow:5px 5px 5px #77777a;
			-webkit-box-shadow:5px 5px 5px #77777a;
			  -moz-box-shadow:5px 5px 5px #77777a;
			
	  width: 100%;
			
	
	
	}
	
	

	.text a{
		font-size: 30px;
			top:50%;
	left:15%;
	transform: translateX(-15%) translateY(-50%);
		padding:20px;
		border:1px double #fff;
	}
	
	
	
	.prev, .next{font-size:30px;}
	
	.dot{
		display:none;
	}
	
	
}



