@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500&family=Pacifico&display=swap');

*{
    box-sizing:  border-box;
}
body{
  font-family: 'Montserrat', sans-serif;  
    margin: 0;
}
/*------------estilos base----------*/

img{
    display: block;
    width: 100%;
    max-width: 100%;
}
h1, h2, h3, h4, h5, h6 {
    margin: 0;
    }
.container{
    width: 100%;
    margin: 1px;
}
.container--lineas{
    width: 100%;
    margin: 1px;
}
.container--flex{
    display:flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }
.column {
    float:left;
    width: 100%;
}
  
.column3 {
    width: 30%;
}
.column_rep{
     float: left;
    width: 50%;
    border-collapse: separate;
  border-spacing: 10px 5px;
    text-align: center;
}
/*--------------estilos del header---------*/
.main-header{
    width: 100%;
}
.logo{
    font-size: 1.8em;
    color: #ffffff;    
    padding: 10 px;
    font-family: 'Montserrat', cursive;
    font-weight: 100%; 
}
.main-header__contactInfo_phone {
    background: #9e0d17;  
    color:#c0c0c0;
    margin: 0 auto;
    padding: 10 px;
    font-size: 1.em;
}
.main-header__contactInfo__address {
    background: #00376f;  
    color:#c0c0c0;
    padding: 10px;
    margin: 0;
    font-size: 0.8em;
}
.main-header [class*="icon-"]:before{
    position: relative;
    top:2px;
    right:5px;
}
/*------------estilos del menu---------*/
.main-nav{
    width: 100%;
    position: relative;
    z-index: 2000;
    padding: 10px;
    }
.icon-menu {
    display: block;
    color: white;
    border: 1px solid white;
    border-radius: 3px;
    width: 40px;
    height: 33px;
    line-height: 42px;
    text-align: center;
    cursor: pointer;
    font-size: 1.5em;
     }
.social-icon{
    display: flex;
    justify-content: space-between;
}
.social-icon [class*="icon-"]{
    color:black;
    margin-left: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.3em;
    width: 35px;
    height: 35px;
    background: white;
    border-radius: 50%;
}
.social-icon__link{
    text-decoration: none;
}
.menu{
    position: absolute;
    top:60px;
    left: 0;
    width: 100%;
    background: rgba(0,0,0,.8);
    padding: 0;
    margin: 0;
    list-style:none;
    text-align: center;
    height: 0;
    overflow: hidden;
    transition: height .3s linear;
}
.menu__link{
    display: block;
    padding: 15px;
    color: white;
    text-decoration: none;
}
.menu__link--select{
     background:   #00376f; 
}
.menu__link:hover{
  background:   #00376f;
}
.mostrar {
    height: 196px;
}
/*------------estilos de banner---------*/ 
.banner{
    margin-top: -65px;
    position: relative;
    }

.banner:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    z-index:1000;
    top:0;
   }
.banner__img{
    width: 100%;
    height: 600px;
    object-fit: cover;
    } 
.banner__content{
    width: 100%;
    color:white;
    text-align: center;
    position: absolute;
    z-index: 1500;
    top:50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    font-size: 1.2em;
    font-weight: bold;
}
/*------------estilos de principales---------*/
#main {
    text-align: center;
}
.main {
    background: #ccc;
    color:aaa;
    padding: 10px;
    padding-top: 20px;
    padding-bottom: 20px;
    font-size: .8em;
}
.group--color .container {
    background: #00376f;
    color:white;
    padding: 10%;
    text-align: center;
}
.main__title{
    margin: 15px 0;
    font-size: 1.8em;
    font-family:'Pacifico', cursive;
    font-weight: 100;
    text-align: center;
}
.column__title{
    font-size: 1.3em;
}
.main__about__description .column:nth-child(2){
    padding: 10px;
}

.btn{
    display: block;
    text-align: center;
    text-decoration: none;
    width: 120px;
    background: #00376f;
    color: white;
    padding: 10px;
    margin: 10px auto;
}
.group__title {
    font-family:'Pacifico', cursive;
    text-align: center;
    font-weight: 100;
    font-size: 1.8em;
    margin: 30px;
  
}
.lineas img {
    width: 250px;
    height: 250px;
    border-radius: 20%;
    border: 7px solid;
    margin: 20px;
    align-content: center;
}

/*---------------estilo del footer---------------*/
.main-footer{
    background: #222;
    color:white;
    padding: 10px;
    padding-top: 20px;
    padding-bottom: 20px;
    font-size: .8em;
}
.copy{
    text-align: center;
    margin: auto;
    margin-top: 15px;
    font-size: 1em;
}
.main-footer [class*="icon-"] {
    color: white;
    text-decoration: none;
    }
.main-footer [class*="icon-"]:before{
    position: relative;
    top: 3px;
    right: 5px;
}

/*------------------estilos responsive------------------*/
@media screen and (min-width:480px){
    .logo{
     color: white; 
        font-size: 150%;
     }
        .main-header__contactinfo{
        text-align: right;
    }
        .banner{
        margin-top: -180px;
        z-index: -1000;
    }
        .column--50 {
        width: 49%;
    }
         .column--45 {
        width: 45%;
    }
 .banner__content{
        font-size: 2 em;
    }
    .main-header__contactInfo_phone{
        background: none;
        color: white;
    }
    .main-header__contactInfo__address{
        background: none;
        color: white;
    }
    

    .main-nav{
        background: rgba(0,0,0,0.85)
    }
    .column--50-25{
        width: 49%;
    }
    .main__about__description .column:nth-child(2){
    padding: 20px;
        font-size: .9em;
}
    .main__about__description .btn{
        margin: 0;
    }
    .today-special .column {
        border: 5px solid #ddd;
        padding: 5px
    }
    .today-special__img{
        height: 200px;
        object-fit: cover;}
    .main-footer .container--flex {
        align-items: flex-start;
    }
    
        
 }
@media screen and (min-width:768px){
    .main__title{
        font-size: 2.2em;
    }
    .main__about__description{
        margin-top: 30px;
    }
    .main__about__description .column--50:nth-child(2){
        font-size: 1em;
    }
     .main__about__description .column--50:nth-child(2) .column_txt{
        line-height: 30px;
    }
    .column--50-25{
        width: 24,5%;
    }
    .column__title {
        font-size: 1em;
    }
    .group__title{
        font-size: 2.2em;
    }
}
@media screen and (min-width:1024px){
    .container {
        width: 1000px;
    }
    .logo {
        width:100%;
    } 
    .main-header__contactInfo_phone,.main-header__contactInfo_adress{
      padding-right: 0;
       font-size: 1.15em;
    }
    .main-nav {
     padding: 0;   
    }
    .banner__content{
       font-size: 2.5em; 
    }
    .icon-menu{
        display: none;
    }
    .menu{ /*repetido*/
        position: static;
        display: flex;
        height: auto;
        width: auto;
    }
    .menu__link { /*repetido*/
        padding: 20px;
    }
    .group--color .container {
        margin-top: 30px;
        margin-bottom: 30px;
        padding: 20px;
    }
    .main__title {
        font-size: 2.3em;
    }
     .main__txt{
        font-size: 2em;
        text-align: center;
         padding: 10px;
    }
       .main__about__description .column--50:nth-child(2) .column__txt{
        line-height: 50px;
    }
    .today-special__title {
        font-size: 1.4em;
    }
    .today-special__price {
        font-size: 1.8em;
    }
    .main-footer {
        padding-top: 30px;
        padding-bottom: 30px;
    }
}
@media screen and (min-width:1600px){
    .container{
        width: 1200px;
           }
    .main__about__description .column:nth-child(1) img {
        width: 100%;
        height: 250px;
    object-fit: cover;
    }
    .today-special__img {
        height: 300px;
    }
}

