@import url('https://fonts.googleapis.com/css?family=Montserrat|Pacifico|Lobster&display=swap');


*{
    box-sizing: border-box;

}

:root{
    --color-menu-footer:cornflowerblue;
    --color-border:orange;
    
}

body{
    font-family: 'Montserrat', sans-serif;
    margin: 0px;
}    

img{
    width: 100%;
}
h1,h2,h3,h4,h5,h6{
    margin: 0px;
}

.container{
    width: 95%;
    margin: auto;
}

.container--flex{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.column{
    width: 100%;
}
/*____________________________Estilo del header________________________*/
    
.main_header{
    width: 100%;
    position: relative;
}

.logo-img{
    height: 120px;
    width: 120px;
    object-fit: cover;
    margin-left: 20px;
    margin-right: 20px;
}

.logo-txt{
    font-size: 1.3em;
    margin-left: 10px;
    position: absolute;
    top: 30px;
    left: 100px;
    text-align: center;
    font-weight:500;
    padding-left: 50px;
    font-weight: 500;
}

.item-mediumnica{
    display: none;
}
/*____________________________Estilo del menu________________________*/


.main-nav{
    width: 100%;
    padding: 10px;
    position: relative;
    z-index: 200;
}

.icon-menu{
    display: block;
    border-radius:3px; 
    border: 1px solid black;
    
    height: 40px;
    width: 40px;
    line-height: 42px;
    text-align: center;
    font-size: 1.5em;
    color: black;
    
    
}


.social-icon{
    display: flex;
    justify-content: space-between;
    color: white;
    
}
.social-icon [class*=icon-]{
    color: white;
    margin-left: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.3em;
    width: 40px;
    height: 40px;
    border:2px solid white;
    border-radius: 100%;
    
}
.icon-menu{
    display:block;
    color: white;
    border-radius: 3px;
    border: 1px solid white;
    width: 40px;
    height: 40px;
    line-height: 42px;
    text-align:center;
    font-size: 1.5em;
}

.social-icon__link{
    text-decoration: none;
}

.menu{
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background: var(--color-menu-footer);
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
    height: 0;
    overflow: hidden;
    transition: height .3s linear;

}

.item-menu{
    padding: 20px;
    margin: 20px;
}

.link__menu{
    display: block;
    color: white;
    text-decoration: none;
    padding: 15px;
}

.link__menu:hover{
    background: var(--color-border);    
}

.item_select{
    background: var(--color-menu-footer); 
}

.mostrar{
    height: 390px;
}
    
.r_frase{
    font-size: 0.6em;
}
/*____________________________Estilo del banner_____________________*/
    
.banner{
    margin-top: -60px;
    position: relative;
    
}

.banner:before{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgb(0,0,0,.4);
    z-index: 100;
    top: 0;
}

.banner-img{
    width: 100%;
    height: 500px;
    object-fit: cover;
}


.banner-txt{
    width: 90%;
    font-size: 1.5em;
    text-align: center;
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    font-weight: 10;
    transform: translateX(-50%) translateY(-50%); 
    z-index: 100;
    line-height: 35px;
}


/*____________________________Estilo del footer _____________________*/

.main-footer{
    background: var(--color-menu-footer); 
    color: white;
    padding: 10px;
    padding-top:20px;
    padding-bottom: 20px;
    font-size: .9em;
    align-content: center;
    
}

.main-footer [class*="icon-"]{
    color: white;
    text-decoration: none;
    
}

.main-footer [class*="icon-"]:before{
    position: relative;
    top: 3px;
    right: 5px;
}

.main-footer .column--33{
    margin-bottom: 10px;
}

/*________________Politicas de privacidad_______________________________*/
.politicas-privacidad{
    font-size: 20px;
    line-height: 20px;
    margin-bottom: 20px;
    font-weight:bold;
    width: 80%;
}

.link-politicaPrivacidad{
    text-decoration: none;
    color:white;
    cursor: pointer;
}


/*________________Estilos de responsive bases_______________________________*/


@media screen and (min-width:480px){

    .logo-txt{    
       left: 150px;
       font-size: 1.6em;
       padding: 0;
    }

    .logo-img{
        width: 130px;
        margin-left: 15px;
        object-fit: cover;

    }

    .icon-menu{
        height: 42px;
        width: 42px;
        line-height: 44px;
        margin-bottom: -10px;
        font-size: 1.5em;
    }

    .social-icon [class*=icon-]{
        margin-bottom: -10px;
        font-size: 1.5em;
        width: 37px;
        height: 37px;
        
    }

    .banner-img{
        height: 600px;
        object-fit: cover;
    }


    .banner-txt{
        top: 350px;
        transform: translateX(-50%) translateY(-50);
        font-size: 1.8em;
    } 
}

/*________________Estilos de responsive bases_______________________________*/

@media screen and (min-width:768px){


    .logo-txt{   
       left: 200px; 
       font-size: 2em;
    }

    .banner-img{
        height: 100vh;
        object-fit: cover;
    }


    .banner-txt{
        top: 350px;
        transform: translateX(-50%) translateY(-50);
        font-size: 2em;
        line-height: 40px;
        
    } 

    .icon-menu{
        margin-bottom: -10px;
        font-size: 2.5em;
        width: 45px;
        height: 40px;
    }

    .main-footer .column--33{
        width: 32%;
        border-bottom: none;
    
    }

    .main-footer .P-q-Visitarnos, .Sobre-nosotros{
        border-right: 2px solid white;
        height: 150px;
        margin: 15px;
        width: 90%;
    }
     /*________________Politicas de privacidad_______________________________*/
    .politicas-privacidad{
        font-size: 20px;
        margin-top: 20px;
        width: 100%;
        text-align: center;
    }
}

@media screen and (min-width:1024px){
   
    .logo-img{
        height: 150px;
        width: 150px;
    }
   
    .logo-txt{    
       margin-top: 0px;
       font-size: 3em;
       left: 20%
    }

    .icon-menu{
        display: none;

    }

    .social-icon [class*=icon-]{
        display: none;
    }

    .menu{
        height: 55px;
        width: 100%;
        margin-top: -20px;
        display: flex;
        background: none;
        justify-content: center;
        background: rgba(0,0,0,.4);
        align-items: center;

    }
    .link__menu{
        color: white;
        text-align: left;
        padding: 0px 4px 15px 4px;
        margin-left: 6px;
        margin-right: 6px;
        font-size: 1em;
        line-height: 1em;

    }

    .item_select{
        border-bottom: 3px solid var(--color-border);
        background: none;
    }

    .link__menu:hover{
        background: none;
        border-bottom: 3px solid var(--color-border);
        color:white;
        text-decoration: none;
    }


    .banner{
        margin-top: -20px;
    }
    .banner-img{
        height:600px;
        object-fit: cover;
        object-position: top;
    }

    .banner-txt{
        font-size: 2.5em;
        top: 430px;
        line-height: 50px;
        text-align: left;
    } 

    .main-footer{   
        font-size: 17px;
    }
    /*________________Politicas de privacidad_______________________________*/
    .politicas-privacidad{
        font-size: 20px;
        margin-top: 30px;
        margin-bottom:30px;
    }
}   

@media screen and (min-width:1440px){
    /*____________________________Estilo del header________________________*/
    .logo-img{
        height: 200px;
        width: 200px;
        margin-left: 30px;
        margin-right: 30px;
    }
   
    .logo-txt{    
        margin-top: 0px;
        font-size: 3.2em;
        left: 20%;
        top: 70px;
        padding-left: 100px;
    }
    


    /*____________________________Estilo del menu response________________________*/
    .menu{
        height: 60px;
        width: 100%;
        margin: auto;
        margin-top: -20px;

    }
    .link__menu{
        color: white;
        text-align: left;
        padding: 0px 4px 15px 4px;
        margin-left: 6px;
        margin-right: 6px;
        font-size: 1.2em;
        line-height: 1em;
    }
    /*____________________________Estilo del banner responsive________________________*/

    .banner-txt{
        width: 90%;
        font-size: 40px;
        top: 50%;
        left: 55%;
        font-weight: 10;
        transform: translateX(-50%) translateY(-50%); 
        z-index: 100;
        line-height: 35px;
    }
    /*____________________________Estilo del footer responsive________________________*/
    .main-footer{
        padding: 10px;
        padding-top:20px;
        padding-bottom: 20px;
        font-size: 25px;
        align-content: center;
    
    }
    


    .main-footer [class*="icon-"]:before{
        position: relative;
        top: 4px;
        right: 7px;
    }

    .main-footer .column--33{
        border-bottom: 1px solid white;
        margin-bottom: 10px;
    }

}