@import url('https://fonts.googleapis.com/css?family=Roboto');
@import url('https://fonts.googleapis.com/css?family=Roboto+Condensed');

body {
    background: #353535;
    margin: 0;
    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;
    z-index: 1;

}
.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: 0px;
    margin-right: 15px;
    cursor: pointer;
}
.header .logo-txt {
    padding: 0px 15px;
    line-height: 15px;
    font-size: 20px;
}

.header .contenedor img {
    margin-left: 20px;
    margin-top: 0px;
    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 la Galería***/
h1 {
    margin: 40px 5px 5px 0px;
    font-size: 25px;
    color: #fff;
    text-align: center;
}

.galeria {
    background: #fff;
    width: 99%;
    margin: auto;
    list-style: none;
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.galeria li {
    margin: 5px;
    color: #fff;
    text-align: center;
    font-size: 20px;
    
}
.galeria img {
    width: 150px;
    height: 120px;
    border: solid 4px #000;
}

/*.galeria img:hover {
    cursor: pointer;
    width: 180px;
    height: 140px;
}*/

/*---------------- 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) {
    .nav {
        width: 40%;
    }
}

@media(min-width:720px) {
    .nav {
        width: 35%;
    }
}

@media(min-width:1024px) {
    
    .nav {
        left: 100px;
        top: 0;
        width: 100%;
    }
    .menu {
        display: flex;
    }
    .m-menu {
        display: none;
    }
    
    .icon-bars {
        display: none;
    }
    
    .menu_link {
        font-size: 18px;
        padding: 7px 10px;
        background: none;
        margin-right: 2px;
        margin-right: 2px;
    }
    
    .intro {
        margin-top: -200px;
    }
    .intro_txt, .info_txt {
        font-size: 20px;
    }
    .info_columna img {
        height: 280px;
        width: auto;
    }
    .slider img {
        height: 75%;
    }
    
    .polsa {
        width: 300px;
    }
    
#map { 
    height: 320px;
    width: auto;
    }
}

@media(min-width:1200px) {
    
    .intro {
        margin-top: -340px;
    }
    .slider img {
        height: 50%;
        width: 90%;
        margin: auto;
    }
    .polsa {
        width: 450px;
        right: 80px;
    }
    .info {
        width: 90%;
        margin: auto;
        margin-top: -100px;
    }
}
