@import url('https://fonts.googleapis.com/css2?family=Heebo&family=Roboto&display=swap');
* {
    box-sizing: border-box;
}
body {
    font-family: 'Roboto', 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: auto;
}
.container--flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
.column {
    width: 100%;
}

/*--------------estilos header-----------------*/
.main-header {
    width: 100%;
}
.logo {
    width: 80%;
}
.main-header__contacInfo__phone {
    color: white;
    margin: 0 auto;
    padding: 10px;
}
.main-header__contacInfo__address {
    padding: 10px;
    margin: 0;
    color: white;
    
}
.main-header [class*="icon-"]:before {
    position: relative;
    top: 2px;
    right: 5px;
}
/*--------------estilos 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: 40px;
    line-height: 45px;
    text-align: center;
    cursor: pointer;
    font-size: 1.5em;
}
.social-icon {
    display: flex;
    justify-content: space-between;
}
.social-icon [class*="icon-"] {
    color: #1f71b9;
    margin-left: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.3em;
    width: 35px;
    height: 35px;
    background: white;
    border-radius: 50%;
    padding-top: 3px;
}
.social-icon__link {
    text-decoration: none;
}
.menu {
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background: rgb(27, 113, 184,.9);
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
    /*animando el menu con js*/
    height: 0;
    overflow: hidden;
    transition: height .3s linear;
}
.menu__link {
    display: block;
    padding: 15px;
    color: white;
    text-decoration: none;
}
.menu__link:hover {
    background: #be1421;
}
.menu__link--select {
    background: #be1421;
}
.mostrar {
    height: 300px;
    /* Antes de agregar Web en menu height: 245px*/
}

/*--------------------Estilos del Bannen----------------*/
.banner {
    margin-top: -59px;
    position: relative;
}
.banner:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.1);
    z-index: 1000;
    top: 0;
}
.banner__img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.banner__content {
    width: 90%;
    color: white;
    text-align: center;
    position: absolute;
    z-index: 1500;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    font-size: 1.5em;
    font-weight: bold;
}
.banner1 {
    position: relative;
    margin-top: -175px;
    z-index: -1000;
}
.banner1:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.3);
    z-index: 1000;
    top: 0;
}
.banner__img1 {
    width: 100%;
    height: 190px;
    object-fit: cover;
}

/*----------Estilos principales-------------*/
.group--color .container {
    background: #be1421;
    color: white;
    padding: 10px;
    text-align: center;
}
.main__title {
    margin: 15px 0;
    font-size: 1.8em;
    font-family: 'Heebo', sans-serif;
    font-weight: normal;
}
.column__title {
    font-size: 1em;
    color: #1f71b9;
}
.column .column__txt {
    color: #1f71b9;
}
.main__about__description .column:nth-child(2) {
    padding: 10px;
}
.btn {
    display: block;
    text-align: center;
    text-decoration: none;
    width: 120px;
    background: #be1421;
    color: white;
    padding: 10px;
    margin: 10px auto;
}
.group__title {
    font-family: 'Heebo', sans-serif;
    text-align: center;
    font-weight: normal;
    font-size: 1.8em;
    color:#1f71b9;
    margin: 30px;
    margin-bottom: 2px;
}
.today-special .column {
    margin-bottom: 30px;
    text-align: center;
}
.today-special__img {
    margin: auto;
    max-width: 350px;
}
.today-special__title {
    font-size: 1.3em;
    padding-top: 10px;
    padding-bottom: 20px;
}
.today-special__price {
    font-size: 1.2em;
    color: #be1421;
    font-weight: normal;
}
/*---------Estilos de footer---------*/
.main-footer {
    background: #1f71b9;
    color: white;
    padding: 10px;
    padding-top: 20px;
    padding-bottom: 20px;
    font-size: .8em;
}
.main-footer .column__title {
    font-size: 1.4em;
    font-family: 'Heebo', sans-serif;
    font-weight: lighter;
    color: white;
}
.main-footer .column__txt {
    color: white;
}
.copy {
    text-align: center;
    margin: auto;
    margin-top: 15px;
}
.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) {
    
    .main-header__contacInfo {
        text-align: right;
    }
    .main-header__contacInfo__phone {
        background: none;
    }
    .main-header__contacInfo__address {
        color: white;
        padding-right: 10px;
    }
    .main-nav {
        background: rgb(27, 113, 184,.3);
    }
    .banner {
        /*margin-top: -170px;*/
        z-index: -1000;
    }
    .banner__img {
        height: 320px;
    }
    .banner__content {
        font-size: 2em;
    }
    .main {
        padding-bottom: 15px;
    }
    .main__about__description .column:nth-child(2) {
        padding-left: 20px;
        font-size: .9em;
    }
    .main__about__description .btn {
        margin: 0;
    }
    .main__about__description img {
        border: 5px solid #ddd;
        padding: 5px;
    }
    .main__about__description .column__title {
        font-weight: bold;
        font-size: 1.2em;
    }
    .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;
    }
    .column--50 {
        width: 49%;
    }
    .column--50-25 {
        width: 49%;
    }
    .column--33 {
        width: 32%;
    }
}

@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: 25px;
    }
    .column--50-25 {
        width: 24.5%;
    }
    .column__title {
        font-size: 1em;
    }
    .group__title {
        font-size: 2.2em;
    }
    .banner__img {
        height: 420px;
    }
}

@media screen and (min-width:1024px) {
    .container {
        width: 1000px;
    }
    .logo {
        padding: 0;
    }
    .main-header__contacInfo__phone, .main-header__contacInfo__address {
        padding-right: 0;
        font-size: 1.15em;
    }
    .main-nav {
        padding: 0;
    }
    .banner__content {
        font-size: 2.5em;   
    }
    .banner__img {
        height: 590px;
    }
    .icon-menu {
        display: none;
    }
    .menu {
        position: static;
        display: flex;
        height: auto;
        width: auto;
        background: rgb(27, 113, 184,.9);
    }
    .menu__link {
        padding: 20px;
    }
    .group--color .container {
        margin-top: 30px;
        margin-bottom: 30px;
        padding: 20px;
    }
    .group--color .main__txt {
        font-size: 1.2em;
    }
    .main__title {
        font-size: 2.3em;
    }
    .main__about__description .column--50:nth-child(2) .column__txt {
        line-height: 35px;
    }
    .today-special__title {
        font-size: 1.4em;
    }
    .today-special__price {
        font-size: 1.3em;
    }
    .main-footer {
        padding-top: 30px;
        padding-bottom: 30px;
    }
}

@media screen and (min-width:1600px) {
    .container {
      width: 1400px;
    }
    .main__about__description .column:nth-child(1) img {
        width: 100%;
        height: 350px;
        object-fit: cover;
    }
    .today-special__img {
        height: 300px;
    }
    .banner__img {
        height: 690px;
    }
}



