@import url('https://fonts.googleapis.com/css?family=Roboto');
@import url('https://fonts.googleapis.com/css?family=Roboto+Condensed');
h1, h2, h3, h4, h5 {
   font-family: 'Roboto', sans-serif;
}
* {
    box-sizing: border-box;
}
body {
    margin: 0px;
    font-family: 'Roboto Condensed', sans-serif;
}

/*-------------Estilos del header-------------*/

.header .contenedor {
    width: 100%;
    background: rgba(0,0,0,0.75);
    position: fixed;
    display: flex;
    justify-content: space-between;
    top: 0;

}
.icon-bars {
    display: block;
    width: 30px;
    height: 30px;
    font-size: 25px;
    background: #ff0202;
    color: #fff;
    text-align: center;
    line-height: 38px;
    border-radius: 5px;
    margin-top: 5px;
    margin-right: 15px;
    cursor: pointer;
}
.header .logo-txt {
    padding: 0px 5px;
    line-height: 15px;
    font-size: 20px;
}

.header .contenedor img {
    margin-left: 20px;
    margin-top: 5px;
    height: 30px;
    width: auto;
}

.m-menu {
    display: none;
    color: #fff;
    background-color: #FF0202;
    font-size: 20px;
    line-height: 33px;
    padding: 3px 14px 0px 10px;
    margin-right: 25px; 
}
.m-menu:hover {
    cursor: pointer;
}

/*---------------- Estilo del Menu ----------------*/
.nav {
    position: absolute;
    top: 40px;
    right: -100%;
    width: 70%;
    transition: all 0.4s;
}
.menu {
    list-style: none;
    padding: 0;
    margin: 0;
}
.menu_link {
    display: block;
    padding: 6px;
    text-decoration: none;
    font-size: 15px;
    color: #fff;
    background: rgba(0,0,0,0.7)
}
.menu_link:hover, .select {
    background: rgba(255,255,255,0.8);
    color: #FF0202;
}
.mostrar {
    right: 0%;
}

/*----------- Estilos de Contacto ----------*/

.main h2 {
    text-align: center;
    margin-top: 50px;
}
.contenedor {
    width: 98%;
    margin: auto;
}
.contacto {
    width: 98%;
    margin: auto;
    background: #FF0202;
    border-radius: 10px;
}
.contacto h3 {
    width: 100%;
    text-align: center;
    color: #fff;
    padding: 10px;
    margin: 0;
}
.contacto p {
    margin: auto;
    text-align: center;
    color: #fff;
}
.contacto input {
    width: 95%;
    margin: 5px 10px 5px 10px;
    box-sizing: border-box;
    padding: 5px;
}
textarea {
    width: 95%;
    margin: 10px;
	min-height: 100px;
	max-height: 220px;
	max-width: 100%;
}
#btn-enviar {
    width: 50%;
    padding: 5px;
    display: block;
    margin: auto;
    border-radius: 5px;
}

/*---------------- Estilo del Mapa ----------------*/

.mapa {
    width: 100%;
}
#map { 
    height: 200px;
    width: auto;
}

/*---------------- Estilo del Footer ----------------*/
.footer {
    background: #000;
    color: #fff;
    text-align: center;
    padding: 5px 7px;
}
.footer .contenedor {
    width: 100%;
}
.footer [class^="icon-"] {
    color: #fff;
    text-decoration: none;
    font-size: 25px;
    padding: 5px;
}
.footer p {
    text-align: center;
}
.footer .adress {
    font-size: 14px;
}
.footer .legal {
    text-decoration: none;
    color: #fff;
    font-size: 16px;
}
.footer .copy {
    font-size: 14px;
}
.lanzerweb {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
}

/*---------------------- Estilos Responsive -------------------------*/
@media(min-width:480px) {
    #map { 
        height: 230px;
        width: auto;
    }
    .contacto {
        width: 90%;
    }
    #btn-enviar {
    width: 40%;
    }
}

@media(min-width:720px) {
    .nav {
        width: 35%;
    }
    .contacto {
        width: 80%;
    }
    #btn-enviar {
    width: 30%;
    }
}

@media(min-width:1024px) {
    .icon-bars {
    display: none;
    }
    .m-menu {
        display: block;
    }
    .nav {
        width: 20%;
    }
    .contacto {
        width: 70%;
    }
    #btn-enviar {
    width: 25%;
    }
}

@media(min-width:1200px) {
    .nav {
        width: 18%;
    }
    .contacto {
        width: 65%;
    }
    #btn-enviar {
    width: 20%;
    }
}