body {
	background: white;
	font-family: Century Gothic, CenturyGothic, AppleGothic, sans-serif;
	color: #333;
	font-size: 0.8rem;
	line-height: 1.2em; 
	margin: 0;
}

h1 {
	font-size: 2rem;
	line-height: 1.3em;
}


p {
	margin-bottom: 1.6em;
	text-align: justify;
}

.container {
	width: 85%;
	max-width: 850px;
	margin: 0 auto;
}

.header {
	background: #333;
	color: white;
	padding: 0.3rem 0;
	
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
}

.header a {
	color: white;
	text-decoration: none;
	padding: 2rem 0;
}

.logo {
	text-align: center;
}

.logo-nav-container { 
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

#btn-menu {
	display: none;
}

header label {
	display: none;
	width: 30px;
	height: 30px;
	padding: 10px;
	border-right: 1px solid #fff;
}

header label: hoover {
	cursor: pointer;
	background: rgba(0,0,0,0.4);
}

.menu ul {
	margin: 0;
	list-style: none;
	padding: 0;
	display: flex;
}

.menu-icon{
	display: none;
}

.navigation li{
	border-right: 1px solid #fff;
}

.navigation li: hover{
	background: rgba(0,0,0,0.3);
}

.navigation li a {
	display: block;
	padding: 15px 20px;
	color: #fff;
	text-decoration: none;
}

.navigation ul{
		margin: 0;
		padding: 0;
		list-style: none;
	}

	.navigation ul li {
		display: inline-block;
	}

	.navigation ul li a {
		display: block;
		padding: 0.5rem 1rem;
		transition: all 0.4s linear;
		
	}

	.navigation ul li a:hover {
		background: #4a4a4a;
	}

.main {
	padding-top: 5rem;
}

form {
	font-family: Century Gothic, CenturyGothic, AppleGothic, sans-serif;
	width: 450px;
	margin: auto;
	background: rgba(0,0,0,0.4);
	padding: 10px 20px;
	box-sizing: border-box;
	margin-top: 20px;
	border-radius: 3px;
}

h2 {
	color:black;
	font-family: Century Gothic, CenturyGothic, AppleGothic, sans-serif;
	text-align: center;
	margin: 0;
	font-size: 20px;
	margin-bottom: 5px;
}

input, textarea, select, option, .button {
	font-family: Century Gothic, CenturyGothic, AppleGothic, sans-serif;
	width: 100%;
	margin-bottom: 20px;
	padding: 7px;
	box-sizing: border-box;
	font-size: 14px;
	border: none;
}



textarea {
	font-family: Century Gothic, CenturyGothic, AppleGothic, sans-serif;
	min-height: 100px;
	max-height: 200px;
	max-width: 100%
}

#boton{
	background: #31384A;
	color: #fff;
	padding: 20px;
}

.captcha-image{
	display: block;
	margin: 0 auto;
}
.g-recaptcha > div{
	display: block;
	margin: 0 auto;
}
#boton:hover{
	cursor: pointer;
}
.footer {
	background: #DCDBDB;
	font-size: 0.8rem;
	padding: 0.8rem 0;
	text-align: center;
    }

@media (max-width: 480px){
	form{
		width:100%;
	}
}

@media (max-width:480px){
	header label {
		display: block;
	}

@media only screen and (max-width: 480px){
.menu-icon{
	display:block;
	cursor: pointer;
	padding: 0.5rem 1rem;
}

	.navigation {
		width: 100%;
		margin-top: 1 rem;
	}

	.navigation ul{
		display:none;
	}

	.navigation ul.show {
		display:block;
	}

	.navigation ul li {
		display: block;
	}

	

}