@font-face{
	font-family: "Ubuntu";
	src: url(font/Ubuntu-Regular.ttf);
}
*{
  margin: 0;
  padding: 0;
	box-sizing: border-box;
}
ol, ul{
  list-style: none;
}
.wrapper{
  width: 80%;
  max-width: 1000px;
  padding: 20px;
  margin: auto;
  border-radius: 15px;

  background-color: black;
  opacity: 0.7;
}
body{
  font-family: "Ubuntu";
  background-image: url(img/rsz_download5.jpg);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;

  margin: 20px 0px;
}
header{
  width: 100%;
  height: 150px;
  margin-bottom: 20px;
}
/*Detalle de Formulario de Contacto*/
.formulario{
	display: block;
	width: 300px;
	margin: 0 auto;
}
iframe{
	display: block;
	width: 80%;
	min-width: 300px;
	margin: 20px auto;
}
form label{
	font-size: large;
	color: white;
}
form input{
	font-size: large;
	height: 35px;
	width: 300px;
}
form textarea{
	font-size: large;
	width: 300px;
	height: 300px;
}
/*Contactos*/
.contactos{
	text-align: center;
}
.foto{
	opacity: 0.9;
}
/*Menu de celulares, fijo en la parte superior y desplegable, oculto cuando hay resoluciones mayores*/
.btn_menu{
	display: none;
	overflow: hidden;
	background-image: url(img/back2.png);
  position: fixed;
  width: 100%;
  height: 50px;
  padding-left: 20px;
}
.menu2{
	left: -100%;
	background-image: url(img/back2.png);
  position: fixed;
	top: 50px;
  width: 75%;
  padding-left: 20px;
}
.menu2 ul li {
	height: 55px;
	border-top: solid 1px rgba(50, 50, 50, 0.7);
	padding: 15px;
}
.menu2 ul li a{
	text-decoration: none;
	color: white;
}
.boton{
	text-decoration: none;
	color: white;
	box-sizing: border-box;
	display: block;
}
.boton span{
	float: right;
}
/*Menu para pantallas grandes, despues del titulo*/
.menu ul{
  background-image: url(img/back2.png);
	overflow: hidden;
  position: relative;
  width: 100%;
  height: 50px;
  border-radius: 15px;
  padding-left: 20px;
}
.menu ul li{
  float: left;
  padding: 10px;
  font-size: x-large;
  color: white;
}
.menu ul li a{
  color: white;
  text-decoration: none;
}
.menu ul li a:hover{
  color: darkslateblue;
}
/*------------------------------------------*/
h1,h2,h3{
  color: white;
}
main{
  text-align: justify;
  padding: 20px;
  margin-top: 10px;
}
.sublist{
	list-style: circle;
	padding-left: 10px;
}
footer{
	display: inline-block;
  border-top: 5px solid white;
  padding: 20px;
  width: 100%;
  text-align: center;
}
/*Configuracion pantallas de tablet*/
@media screen and (max-width:850px) {
	.wrapper{
		width: 100%;
		padding: 0;
		border-radius: 5px;
	}
	.menu ul{
		border-radius: 0;
	}
	body{
		margin: 5px;
	}
}
/*Configuracion pantallas de celulares*/
@media screen and (max-width:650px) {
	.menu ul{
		display: none;
	}
	.titulo{
		position: relative;
		text-align: center;
		top: 50px;
		z-index: -1;
	}
	.btn_menu{
		display: block;
		padding: 10px 20px;
	}
	.btn_menu h2, .btn_menu span{
		display: inline;
	}
	.menu2 ul{
		display:inline-block;
	}
	.wrapper{
		border-radius: 0;
	}
	body{
		margin: 0;
	}
}
