/* CUERPO */
.info{
font-weight: 50;
font-family: Calibri;
color: rgb(44, 44, 44);
text-align: center;
left: 50%;
top: 50%;
margin: 0;
padding: 0 23rem;
vertical-align: middle;
padding-bottom: 30px;
}
.text-help{
	font-size: 25px;
	font-family: Calibri;
	text-align: center;
}
.butt-contact{
	font-family: "Roboto", sans-serif;
	text-transform: uppercase;
	outline: 0;
	background: rgb(0, 0, 0);
	border-radius: 10px;
	border: 0;
	padding: 15px;
	color: #FFFFFF;
	font-size: 14px;
	-webkit-transition: all 0.3 ease;
	transition: all 0.3 ease;
	cursor: pointer;
  }
.infoa{
	font-weight: 50;
	font-family: Calibri;
	color: rgb(44, 44, 44);
	text-align: center;
	left: 50%;
	top: 50%;
	margin: 0;
	padding: 0 20rem;
	vertical-align: middle;
	padding-bottom: 30px;
	}
.foto{
margin-top: 20px;
}
.titulo{
font-family: Calibri;
font-size: 35px;
text-align: center;

}
.titulol{
font-family:Calibri;
font-size: 35px;
margin-right: 600px;
}
/* SLIDER */

.slider {
	width: 35%;
	margin: auto;
	overflow:hidden;
}

.slider ul {
	display: flex;
	padding: 0;
	width: 400%;
	animation: cambio 17s infinite alternate linear;
}

.slider li {
	width: 130%;
	list-style: none;
}

.slider img {
	width: 100%;
}


@keyframes cambio {
	0% {margin-left: 0;}
	20% {margin-left: 0;}
	
	25% {margin-left: -100%;}
	45% {margin-left: -100%;}
	
	50% {margin-left: -200%;}
	70% {margin-left: -200%;}
	
	75% {margin-left: -300%;}
	100% {margin-left: -300%;}
}

/* ANIMACIONES */

/* HORIZONTALES */

#scroll-horizontal {
	height: 100%;
	text-align: center;
}

#first-header header #nav-menu {
  line-height: 70px;
  float: right;
  font-size: 11px;
}
#first-header header #nav-menu a {
  color: rgba(0, 0, 0, 0.6);
  font-weight: 700;
  margin: 0 15px;
  position: relative;
}
#first-header header #nav-menu a:last-child {
  margin-right: 50px;
}
#first-header header #nav-menu a:after {
  content: " ";
  position: absolute;
  width: 0;
  height: 2px;
  background: #4d4d4d;
  bottom: -10px;
  left: 0;
  transition: 0.1s linear;
}
#first-header header #nav-menu a:hover:after {
  width: 70%;
}

/* BOTON*/
.wrap {
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
  }
  
  .button {
	width: 160px;
	height: 55px;
	font-family: Calibri;
	font-size: 16px;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	font-weight: 500;
	color: #ffffff;
	background-color: #000000;
	border: none;
	border-radius: 45px;
	transition: all 0.3s ease 0s;
	cursor: pointer;
	outline: none;
	}
  
  .button:hover {
	background-color: #2ab90d;
	box-shadow: 0px 15px 20px rgba(72, 238, 22, 0.562);
	color: #fff;
	transform: translateY(-7px);
  }