* {
	margin: 0;
	padding: 0;
	-webket-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
}

h1 {
	font-size: 52px;
	line-height: 1;
}

h2 {
	font-size: 48px;
	line-height: 1;
    letter-spacing: 2;    
}

h3 {
    font-size: 24px;
    color: #45687e;
    letter-spacing: 1;
}

h1, h2, h3 {
    font-weight: 500;
    text-transform: uppercase;
    font-family: 'Raleway', sans-serif;
}

p {
    color: #44687d;
    font-size: 18px;
    font-weight: 300;
    font-family: 'Lato', sans-serif;
}

h1, h2, p {
    color: #f4f8fa;
}

hr {
    width: 100px;
    margin: 20px 0;
    border: 1px solid #eec200;
}

a:link, a:visited {
    text-decoration: none;
    list-style: none;
    color: #f4f8fa;
}

a:hover {
    color: #8cb7c7;
    transition: all 0.3s ease 0s;
}

nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    color: #b1b5b8;
    position: fixed;
    width: 100%;
    z-index: 10;
}

nav img {
    width: 140px;
}

nav ul {
    float: left;
}

nav ul li {
    margin: 20px 0px;
    padding: 0 12px 0 12px;
    display: inline-block;
}

nav ul li a {
    font-size: 14px;
    letter-spacing: 1;
    text-transform: uppercase;
    font-family: 'Raleway', sans-serif;
}

header label img {
    width: 100px;
    margin-left: 40px;
    margin-top: -6px;
}

#inicio {
    height: 100vh;
}

#inicio, #descarga, #numeros, footer {
	background: url(../img/montain.png) top center/cover; 
    background-attachment: fixed;
	height: auto;  
	width: 100%; 
	position: relative;
	background-repeat: no-repeat;
    background-size: cover;
}

body {
	background-color: #8cb7c7;
    font-family: 'Raleway', sans-serif;
}

form input {
    display: block;
    height: 34px;
    border-radius: 25px;
    padding: 3px 12px;
    position: relative;
}

form textarea {
	height: 170px;
    display: block;
    line-height: 2px;
    padding: 12px;
    border-radius: 15px;
    resize: none;
}

form input, form textarea {
    border: 1px solid #f4f8fa;
    font-weight: 300;
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    background-color: transparent;
    margin: 24px 0;
}

form input, form textarea {
    color: #f4f8fa;
    width: 100%;
    line-height: 2px;
}

placeholder {
    color: #f4f8fa;
}

footer {
    padding: 80px 150px;
}

footer img {
    width: 160px;
}

footer a:link {
    font-weight: 500;
    color: #8cb7c7;
    text-decoration: underline;
}

footer p {
    display: inline-block;
}

footer p, #formulario p {
    font-size: 14px;
}

footer center .material-icons {
    float: none;
    color: #f4f8fa;
}

footer .categoria {
    padding: 0px;
    position: absolute;
    top: -10px;
    left: 48%;
}

footer .categoria i {
    height: 50px;
    width: 50px;
    margin: 0px;
    background-color: #45687e;
    border: 2px solid #45687e;
}

footer .categoria a:link {
    color: none;
    text-decoration: none;
}

footer .categoria i:hover {
    background-color: #f4f8fa;
    border: 2px solid #f4f8fa;
}

.menuicon {
    position: fixed;
    cursor: pointer;
    height: 50px;
    width: 50px;
    padding: 15;
    display: none;
    z-index: 10;
    width: 100%;
}

.menuicon span {
    display: block;
    top: 8px;
    width: 25px;
    height: 3px;
    border-radius: 3px;
    background-color: #f4f8fa;
    position: relative;
    -webkit-transition-duration: 0;
    -moz-transition-duration: 0;
    -ms-transition-duration: 0;
    -o-transition-duration: 0;
    transition-duration: 0;
    -webkit-transition-delay: 0.2s;
    -moz-transition-delay: 0.2s;
    -ms-transition-delay: 0.2s;
    -o-transition-delay: 0.2s;
    transition-delay: 0.2s;
}

.menuicon span::after, .menuicon span::before {
    display: block;
    content: '';
    position: absolute;
    width: 25px;
    height: 3px;
    border-radius: 3px;
    background-color: #f4f8fa;
    -webkit-transition-property: margin, -webkit-transform;
    -webkit-transition-duration: 0.2s;
    -moz-transition-duration: 0.2s;
    -ms-transition-duration: 0.2s;
    -o-transition-duration: 0.2s;
    transition-duration: 0.2s;
    -webkit-transition-delay: 0.2s, 0;
    -moz-transition-delay: 0.2s, 0;
    -ms-transition-delay: 0.2s, 0;
    -o-transition-delay: 0.2s, 0;
    transition-delay: 0.2s, 0;
}

.menuicon span::before {
    margin-top: -8px;
}

.menuicon span::after {
    margin-top: 8px;
}

#hamburger {
    display: none;
}

#hamburger:checked ~ .menuicon span {
    background-color: transparent;
    box-shadow: none;
    -webkit-transition-delay: 0, 0.2s;
    -moz-transition-delay: 0, 0.2s;
    -ms-transition-delay: 0, 0.2s;
    -o-transition-delay: 0, 0.2s;
    transition-delay: 0, 0.2s;
}

#hamburger:checked ~ .menuicon span::before, #hamburger:checked ~ .menuicon span::after {
    margin-top: 0px;
    -webkit-transition-delay: 0, 0.2s;
    -moz-transition-delay: 0, 0.2s;
    -ms-transition-delay: 0, 0.2s;
    -o-transition-delay: 0, 0.2s;
    transition-delay: 0, 0.2s;
}

#hamburger:checked ~ .menuicon span::before {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

#hamburger:checked ~ .menuicon span::after {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

#hamburger:checked ~ .menu {
	display: block;
    -webkit-transform: translateX(0%);
    -moz-transform: translateX(0%);
    -ms-transform: translateX(0%);
    -o-transform: translateX(0%);
    transform: translateX(0%);
}

.cabecera .titulo {
    padding-top: 80px;
}

.titulo {
    padding-bottom: 60px;
}

.cabecera img {
    width: 260px;
}

#caracteristicas .titulo p, #contacto .titulo p {
    color: #45687e;
}

.titulo p {
    font-weight: 400;
    font-size: 20px;
}

.derecha {
    text-align: right;
}

.derecha, .izquierda {
    padding-top: 14px;
}

.categoria i {
    color: #183241;
    border: 2px solid #183241;
    border-radius: 80px;
    height: 70px;
    width: 70px;
}

.categoria i:hover {
    color: #8cb7c7;
    background-color: #183241;
    transition: all 0.3s ease 0s;
}

.categoria {
    padding: 20px;
}

.fa-picture-o, .fa-calendar, .fa-search {
    float: left;
    margin-right: 16px;
}

fa-map-marker, .material-icons {
    float: right;
    margin-left: 16px;
}

.fa-picture-o, .fa-calendar, .fa-search, .fa-map-marker, .material-icons {
    font-size: 38px;
    margin-bottom: 8px;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.mobiledescarga {
	position: relative;
    /*top: 270px;*/
    right: -100px;
    display: -webkit-flex;
    -webkit-align-items: flex-end;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.mobiledescarga img {
    height: 400px;
}

.botonesdescarga {
    z-index: 1;
    position: relative;
    width: 100%;
}

.cabecera {
	position: relative;
    overflow: hidden;
    height: 100%;
    padding: 150px 150px 0 150px;
}

.mobile {
    top: 10px;
	height: 500px;
	position: relative;
    padding-left: 100px;
}

.cabecera p {
    color: #f4f8fa;
    font-size: 20px;
}

.boton, .boton2 {
    width: 186px;
    height: 48px;
    display: inline-block;
    text-align: center;
    padding: 10px 30px;
    margin: 0px 10px 0 0;
    border-radius: 60px;
}

.boton {
    border: 2px solid #f4f8fa;
}

.boton2 {
    border: 2px solid #8cb7c7;
    background-color: #8cb7c7;
}

.boton p, .boton2 p {
    font-size: 18px;
}

.boton p {
    color: #f4f8fa;
}

.boton:hover p, .boton2:hover p {
    color: #8cb7c7;
}

.boton:hover {
    transition: .3s ease;
    border: 2px solid #f4f8fa;
    background-color: #f4f8fa;
}

.boton2:hover {
    transition: .3s ease;
    border: 2px solid #8cb7c7;
    background-color: transparent;
}

.social {
	margin: 20px;
}

.social i {
    color: #f4f8fa;
    font-size: 24px;
    border: 2px solid #f4f8fa;
    border-radius: 60px;
    height: 60px;
    width: 60px;
}

.social i:hover{
	color: #f4f8fa;
    transition: all 0.3s ease 0s;
}

.fa-linkedin, .fa-twitter, .fa-instagram {
	padding: 16px;
    margin: 8px;
}

.fa-linkedin:hover, .fa-twitter:hover, .fa-instagram:hover {
	background-color: #8cb7c7;
    border: 2px solid #8cb7c7;
	transition: all 0.3s ease 0s;
}

.error {
    background-color: #972c31;
    padding: 6px 12px;
    border-radius: 4px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 300;
    margin-left: 16px;
    margin-top: -70px;
    line-height: 1.2;
    position: absolute;
    z-index: 3;
}

.error:before{
    content: '';
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-right: 8px solid #972c31;
    border-left: 8px solid transparent;
    left: -16px;
    position: absolute;
    top: 5px;
    z-index: 3;
}

.flex-container {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    justify-content: space-around;
    align-items: center;
}

.col-dos {
    width: 50%;
}

#descarga {
    height: auto;
    overflow: hidden;
    padding: 100px 0 0 0;
}

#descarga .fa {
    float: left;
    font-size: 32px;
    margin-right: 10px;
}

#descarga .boton {
    height: 58px;
    padding: 10px 25px;
}

#descarga .boton p, #descarga .boton span {
    font-size: 14px;
    text-align: left;
    font-family: 'Lato', sans-serif;
}

#contacto .boton {
    margin: 40px 0;
}

#caracteristicas .flex-container, #otras .flex-container {
    align-items: center;
}

#caracteristicas {
    padding: 100px 150px 30px 100px;
}

#otras {
    padding: 30px 150px 100px 150px;
}

#contacto {
    padding: 100px 150px 100px 150px;
}

#descarga .col-dos {
    display: inline-block;
}

#formulario .boton {
    border: 2px solid #44687d;
}

#formulario .boton:hover {
    transition: .3s ease;
    border: 1px solid #44687d;
    background-color: #44687d;
}

form input:focus, form textarea:focus {
    outline: 0px;
    box-shadow: 0px 0px 20px rgba(255,255,255,0.5);
    transition: all 0.1s ease-in-out 0s;
}

::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #fff;
  opacity: 0.5;
}
::-moz-placeholder { /* Firefox 19+ */
  color: #fff;
  opacity: 0.5;
}
:-ms-input-placeholder { /* IE 10+ */
  color: #fff;
  opacity: 0.5;
}
:-moz-placeholder { /* Firefox 18- */
  color: #fff;
  opacity: 0.5;
}