@font-face {
    font-family: "Playball";
    src: url(../fonts/Playball-Regular.ttf);
}
@font-face {
    font-family: "Montserrat";
    src: url(../fonts/Montserrat-Regular.ttf);
}
@font-face {
    font-family: "Montserrat";
    font-weight:bold;
    src: url(../fonts/Montserrat-Bold.ttf);
}
* {
    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: 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{
    font-size: 1.8em;
    color: #DE423A;
    padding: 10px;
    font-family: 'Playball', cursive;
    font-weight: 100;
}
.main-header__contactInfo__phone {
    background: #DE423A;
    color: white;
    margin: 0 auto;
    padding: 10px;
}
.main-header__contactInfo__address {
    margin: 0;
    padding: 10px;
}
.main-header [class*="icon-"]:before {
    position: relative;
    top: 2px;
    right: 5px;
}

/* Estilos Menú */

.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: 40px;
    text-align: center;
    cursor: pointer;
    font-size: 1.3em;
}
.social-icon {
    display: flex;
    justify-content: space-between;
}
.social-icon [class*="icon-"] {
    color: black;
    margin-left: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.1em;
    width: 30px;
    height: 30px;
    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,.60);
    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:hover {
    background: #AE423A;
}
.menu__link--select {
    background: #DE423A;
}
.mostrar{
    height: 350px;
 }
/* Estilos del Banner */

.banner {
    margin-top: -60px;
    position: relative;
}
.banner:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    top: 0;
}
.banner__img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}
.banner__content {
    width: 90%;
    color: white;
    text-align: center;
    position: absolute;
    z-index: 1500;
    top:55%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    font-size: 1.5em;
/*    font-weight: bold;    */
}

/* Estilos principales */
.gallery__img {
    object-fit: cover;
    margin-bottom: 10px;
    cursor: pointer;
    transition: all 0.5s;
}
.gallery__img:hover {
    transform: scale(1.02);
}
.gallery__img--big {
    height: 400px;
}
.gallery__img--small {
    height: 200px;
}
.modal {
    width: 100%;
    min-height: 100vh;
    background: rgba(0,0,0,0.9);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000;
    display: none;
}
.modal__content {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}
.modal__img {
    width: 50%;
}
.modal__boton {
    position: absolute;
    top: 10px;
    right: 10px;
    color: white;
    cursor: pointer;
    font-weight: bold;
    width: 50px;
    height: 50px;
    line-height: 50px;
    background: #DE423A;
    font-size: 2.5em;
    text-align: center;
    border-radius: 50%;
    font-family: monospace;
}
.modal--open {
    display: block;
}
.group--color .container {
    background: #DE423A;
    color: white;
    padding: 10px;
    text-align: center;
}

.main__title {
    margin: 15px 0;
    font-size: 1.8em;
    font-family: 'Playball', cursive;
    font-weight: 100;
}

.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: #DE423A;
    color: white;
    padding: 10px;
    margin: 10px auto;    
}

.group__title {
    font-family: 'Playball', cursive;
    text-align: center;
    font-weight: 100;
    font-size: 1.8em;
    margin: 30px;
}

/* .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.5em;
    color: #DE423A;
    font-weight: bold;    
} */


/* Estilos 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;
}

.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;
    }
    .main-header__contactInfo{
        text-align: right;
    }
    .main-header__contactInfo__phone {
        background: none;
    }
    .main-header__contactInfo__address {
        color: white;
    }
    .main-nav {
        background: rgba(0,0,0,0.85)
    }
    .banner {
        margin-top: -185px;
        z-index: -1000;
    }
    .banner__img {
        height: 600px;
    }
    .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;
    }
    .today-special .column {
        border: 5px /* solid #ddd*/;
        padding: 5px;
    }
    .today-special__img {
        height: 200px;
        object-fit: cover;
    }
    .today-special__title {
        font-size: 1.2em;
    }
    .main-footer .container--flex{
        align-items: flex-start;
    }
    .column--50 {
        width: 49%;
    }
    .column--50-25{
        width: 49%;
    }
    .column--33 {
        width: 30%;
    }
}
@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;
    }
    .today-special__title {
        font-size: 0.90em;
    }
}
@media screen and (min-width:1024px) {
    .container {
        width: 1000px;
    }
    .logo {
        font-size: 2em;
        padding: 0;
    }
    .main-header__contactInfo__phone,
    .main-header__contactInfo__address {
        padding-right: 0;
        font-size: 1.15em;
    }
    .main-nav {
        padding: 0;
    }
    .banner__img {
        height: 700px;
    }
    .banner__content {
        font-size: 2.5em;
    }
    .icon-menu {
        display: none;
    }
    .menu {
        position: static;
        display: flex;
        height: auto;
        width: auto;        
    }
    .menu__link {
        padding: 20px;
    }
    .group--color .container {
        margin-top: 30px;
        margin-bottom: 30px;
        padding: 20px;
    }
    .main__title {
        font-size: 2.5em;
    }
    .main__about__description .column-50:nth-child(2) .column__txt {
        line-height: 45px;
    }
    .today-special__title {
        font-size: 1.2em;
    }
    .today-special__price {
        font-size: 1.8em;
    }
    .main-footer {
        padding-top: 30px;
        padding-bottom: 30px;
    }
}
@media screen and (min-width:1600px) {
    .container {
        width: 1400px;
    }
    .banner__img {
        height: 800px;
    }
    .main__about__description .column:nth-child(1) img {
        width: 100%;
        height: 350px;
        object-fit: cover;
    }
    .today__special__img {
        height: 300px;
    }
}


/* ESTILOS FONTASTIC */
/* @charset "UTF-8"; */

@font-face {
  font-family: "sitio-web";
  src:url("../fonts/sitio-web.eot");
  src:url("../fonts/sitio-web.eot?#iefix") format("embedded-opentype"),
    url("../fonts/sitio-web.woff") format("woff"),
    url("../fonts/sitio-web.ttf") format("truetype"),
    url("../fonts/sitio-web.svg#sitio-web") format("svg");
  /* font-weight: normal;
  font-style: normal; */

}

[data-icon]:before {
  font-family: "sitio-web" !important;
  content: attr(data-icon);
  /* font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; */
}

[class^="icon-"]:before,
[class*=" icon-"]:before {
  font-family: "sitio-web" !important;
  /* font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; */
}

.icon-facebook:before {
    content: "\61";
  }
  .icon-mail:before {
    content: "\62";
  }
  .icon-instagram:before {
    content: "\64";
  }
  .icon-phone:before {
    content: "\65";
  }
  .icon-menu:before {
    content: "\66";
  }
  .icon-location:before {
    content: "\63";
  }
  