/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
html{
  cursor: default;
  line-height: 1.15;
  -moz-tab-size: 4;
  tab-size: 4;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  word-break: break-word;
}

body {
  background-color: rgb(246, 242, 233);
  margin: 0;
  -webkit-font-smoothing: antialiased;
  color: #666666;
}

body::-webkit-scrollbar-thumb {
    display: block;
    background-color: rgb(235, 91, 44);
    width: 100px;
    border-radius: 12px;
}

a {
  color: rgb(85, 26, 139);
  transition: 0.5s;
  font-family: "Roboto Condensed", sans-serif;
}

a:hover,
a:active,
a:focus {
  color: unset;
  outline: none;
  text-decoration: none;
}

section#intro{
  padding: 25px 25px 50px;
}

p {
  font-family: "Roboto Condensed", sans-serif;
  color: #000;
}

h2{
  font-weight: bold;
  font-size: 1.5em;
  color: #000;
  font-family: "Roboto Condensed", sans-serif;
}

.simple-link{
  text-align: center;
  font-weight: bold;
  display: flex;
  flex-direction: column;
}

.bigh1{
  font-size: 3.8em;
  margin-bottom: 40px;
  font-family: "Roboto Condensed", sans-serif;
  margin-top: 10px;
  color: rgb(0, 0, 0);
  font-weight: bold;
  align-self: center;
  text-align: center;
}

/* styled main */
.styled-main{
  min-height: calc(100vh - 323px);
  padding: 25px 25px 60px;
  width: 100%;
  height: auto;
  position: relative;
  display: flex;
  flex-direction: column;
}

/* banner cabecera */
.banner-cabecera{
  margin-bottom: 15px;
  max-height: 214px;
  height: calc(100vh - 155px);
  order: 0;
  display: block;
  width: 100%;
  float: left;
  position: relative;
  background-color: rgb(233, 91, 45);
  text-align: center;
  -webkit-box-pack: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 8px;
}

.banner-cabecera img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cont-h1{
  color: rgb(255, 255, 255);
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  display: flex;
  flex-direction: column;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
}

.cont-h1 h1{
  font-family: veneer;
  font-size: 3.5em;
}

/* Underline From Center */
.hvr-underline-from-center {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  overflow: hidden;
}
.hvr-underline-from-center:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 51%;
  right: 51%;
  bottom: 12px;
  background: #fff;
  height: 1px;
  -webkit-transition-property: left, right;
  transition-property: left, right;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: cubic-bezier(0.76, -0.5, 0.55, 0.77);
}
.hvr-underline-from-center:hover:before, .hvr-underline-from-center:focus:before, .hvr-underline-from-center:active:before {
  left: 15%;
  right: 15%;
  bottom: 12px;
}

.menu-has-children li .hvr-underline-from-center:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 51%;
  right: 51%;
  bottom: 2px;
  background: #fff;
  height: 1px;
  -webkit-transition-property: left, right;
  transition-property: left, right;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: cubic-bezier(0.76, -0.5, 0.55, 0.77);
}

.menu-has-children li .hvr-underline-from-center:hover:before, .menu-has-children li .hvr-underline-from-center:focus:before, .menu-has-children li .hvr-underline-from-center:active:before {
    left: 15%;
    right: 15%;
    bottom: 2px;
}

a::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 1px;
    bottom: -5px;
    transform: translateX(-50%);
    left: 50%;
    transition: width 0.4s cubic-bezier(1, -0.65, 0, 2.31) 0s;
}

#nav-menu-container a::after {
    display: block;
    background-color: rgb(255, 255, 255);
}


/* Prelaoder */

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #f2f2f2;
  border-top: 6px solid #18d26e;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

#header {
  width: 100%;
  position: relative;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  justify-content: space-between;
  z-index: 10;
  height: 75px;
  background: rgb(233, 91, 45);
  padding-top: 20px;
}

#header #logo {
  width: 95px;
  height: 75px;
  float: left;
  display: block;
  margin: 0px 24px 0 8px;
  padding: 0px;
}

.logoSVG{
  width: 125px;
  display: block;
  fill: rgb(255, 255, 255);
  color: rgb(255, 255, 255);
}

#logo img{
  transition: all ease 1s;
}


#header #logo h1 {
  font-size: 34px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  letter-spacing: 3px;
}

.separator{
  height: 30px;
  width: 1px;
  background-color: rgb(255, 255, 255);
  float: right;
  display: block;
  margin: 0px 10px;
}

/*--------------------------------------------------------------
# Intro Section
--------------------------------------------------------------*/


#introSlides {
  height: 100%;
  width: 100%;
  min-height: unset;
  position: relative;
  background-color: rgb(233, 91, 45);
  overflow: hidden;
  border-radius: 8px;
}

#introSlides .carousel-item {
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#intro .carousel-item::before {
  content: '';
  background-color: rgba(0, 0, 0, 0);
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

#intro .carousel-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}


#intro .carousel-background img {
  max-width: 100%;
}


#intro .carousel-fade {
  overflow: hidden;
}

#intro .carousel-fade .carousel-inner .carousel-item {
  transition-property: opacity;
}

#intro .carousel-fade .carousel-inner .carousel-item,
#intro .carousel-fade .carousel-inner .active.carousel-item-left,
#intro .carousel-fade .carousel-inner .active.carousel-item-right {
  opacity: 0;
}

#intro .carousel-fade .carousel-inner .active,
#intro .carousel-fade .carousel-inner .carousel-item-next.carousel-item-left,
#intro .carousel-fade .carousel-inner .carousel-item-prev.carousel-item-right {
  opacity: 1;
  transition: 0.5s;
}

#intro .carousel-fade .carousel-inner .carousel-item-next,
#intro .carousel-fade .carousel-inner .carousel-item-prev,
#intro .carousel-fade .carousel-inner .active.carousel-item-left,
#intro .carousel-fade .carousel-inner .active.carousel-item-right {
  left: 0;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

#intro .carousel-control-prev,
#intro .carousel-control-next {
  width: 10%;
}

#intro .carousel-control-next-icon,
#intro .carousel-control-prev-icon {
  background: none;
  font-size: 32px;
  line-height: 1;
}

#introSlides .carousel-indicators li {
  width: 100%;
  height: 22%;
  cursor: pointer;
  background-color: #f8b022;
  border-radius: 15px;
  border-top: none;
  border-bottom: none;
  opacity: 1;
  transition: opacity .6s ease;
}

#introSlides .carousel-indicators li.active {
  background-color: #fff;
}

#introSlides .carousel-indicators {
    margin-right: 3%;
    margin-left: 3%;
    height: 8%;
    margin-bottom: -1%;
}

.carousel svg{
  width: 60px;
  vertical-align: middle;
  fill: currentColor;
}

#intro .btn-get-started {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 32px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  color: #fff;
  background: #18d26e;
}

#intro .btn-get-started:hover {
  background: #fff;
  color: #18d26e;
}

.intro-container{
  min-height: calc(100vh - 323px);
  padding: 25px 25px 60px;
}

.intro-container#accesos-destacados{
  margin-top: 24px;
  max-height: 300px;
  height: calc(100vh - 155px);
}


/*
# Contenidos centrados
--------------------------*/

.cont-center{
  grid-template-columns: 1fr;
  padding-top: 58px;
  max-width: 1200px;
  width: 100%;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  gap: 40px 40px;
  display: grid;
  position: relative;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 40px;
}

.titulos-grandes{
  font-size: 1em;
  padding-right: 0px;
  max-width: 500px;
  padding-bottom: 15px;
  font-family: "Roboto Condensed", sans-serif;
  line-height: 1;
  text-transform: uppercase;
}

.titulos-grandes h1{
  font-family: "Roboto Condensed", sans-serif;
  line-height: 1;
  text-transform: uppercase;
  margin-block-start: 0.67em;
  margin-block-end: 0.67em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  font-weight: bold;
  display: block;
  font-size: 2em;
  color: #000;
}

.divider{
  width: 70%;
  position: relative;
  color: rgb(233, 91, 45);
  float: left;
  margin-bottom: 1em;
  border-width: 1px;
  border-style: solid;
  border-color: initial;
  border-image: initial;
}

.padding-right{
  padding-right: 100px;
  width: 80%;
}

.contenidos-cont-center{
display: flex;
width: 100%;
-webkit-box-align: center;
align-items: center;
-webkit-box-pack: center;
justify-content: center;
padding: 0 10px;
}

/*
# Encuesta
********************/
.encuesta-page .cont-center {
  max-width: 800px;
}
.encuesta-page .cont-center p{
  text-align: center;
  font-size: 1.3em;
}

/*
# Quienes somos
********************/
.quienes-page .cont-center {
  max-width: 1400px;
  padding-top: 0;
  display: unset;
}

.quienes-page .cont-h1{
  align-items: unset;
  height: unset;
  width: unset;
}

.quienes-page .cont-h1 h1{
  height: unset;
  margin-block-start: 0.67em;
  margin-block-end: 0.67em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  display: block;
}

.quienes-page .cont-h1#h1-quienes{
  top: -170px;
  left: calc(25% - 160px);
}

.quienes-page .cont-h1#h1-historia{
  top: -170px;
  left: calc(71% - 120px);
}

.contenidos-cont-center-split{
  font-size: 1em;
  grid-template-columns: 1fr 1fr;
  gap: 50px 50px;
  display: grid;
  width: 100%;
  margin-top: 20px;
}

.quienes-page #col-quienes{
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1em;
  text-align: center;
}

.quienes-page #col-historia{
  max-width: 300px;
  margin-left: 12%;
  margin-right: auto;
  font-size: 1em;
  text-align: center;
}

.quienes-page .contenidos-cont-center-split{
  margin-bottom: 30px;
}

.contenedor-img-expan{
  display: inline-block;
  margin-bottom: -80px;
  margin-top: 15px;
  width: 100%;
}

.contenido-img-expan{
  margin-bottom: 0px;
  max-height: 214px;
  height: calc(100vh - 155px);
  order: 0;
  display: flex;
  width: 100%;
  background-color: rgb(233, 91, 45);
  float: left;
  position: relative;
  text-align: center;
  -webkit-box-pack: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 8px;
}

.contenido-img-expan img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 10;
}

.contenido-img-expander{
  color: rgb(255, 255, 255);
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  flex-direction: column;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  display: contents;
}

.contenido-img-expander h1{
  visibility: visible;
  font-size: 3.5em;
  font-family: veneer;
  font-weight: 300;
}

.contenedor-txt-expan{
  font-size: 1em;
  padding: 95px 20px 35px;
  position: relative;
  background-color: rgb(233, 91, 45);
  width: calc(100% + 51px);
  height: fit-content;
  font-weight: 300;
  margin-left: -26px;
}

.contenedor-txt-expan h2{
  font-size: 2em;
  color: rgb(255, 255, 255);
  font-weight: 600;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  padding: 0px 15px;
  font-family: "Roboto Condensed", sans-serif;
  text-transform: none;
}

.contenedor-txt-expan p{
  font-size: 1em;
  max-width: 700px;
  margin: 0px auto;
  color: rgb(255, 255, 255);
  text-align: center;
}

.quienes-page .contenidos-centrados{
  margin-left: auto;
  margin-right: auto;
  max-width: 600px;
  margin-top: 20px;
  text-align: center;
}

.quienes-page .contenidos-centrados h2{
  text-align: center;
}

#col-historia-mobile h2{
  text-align: center;
  font-size: 1.7em;
  font-weight: 600;
  width: fit-content;
  background-color: rgb(246, 242, 233);
  margin: 0px auto;
  padding: 1px 15px;
}

/*
# Tragos
******************/

.menu-page .panel-body h3{
  font-family: "Roboto Condensed", sans-serif;
  color: rgb(233, 91, 45);
  font-size: 2em;
  padding-bottom: 5px;
  margin-bottom: 30px;
  border-bottom: 1px solid #f5e3d7;
  font-weight: 600;
  padding: 7px 0px;
}



/* slide destacados */

div#destaqueSlides {
  margin-top: 32px;
  max-height: 300px;
  overflow: hidden;
  position: relative;
  background-color: rgb(233, 91, 45);
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  min-height: unset;
  -webkit-box-align: center;
  align-items: center;
  border-radius: 8px;
}

#introDestacados .carousel-indicators li {
  width: 100%;
  height: 22%;
  cursor: pointer;
  background-color: #f8b022;
  border-radius: 15px;
  border-top: none;
  border-bottom: none;
  opacity: 1;
  transition: opacity .6s ease;
}

.carousel-caption h1{
  font-size: 5em;
  font-family: veneer;
  position: absolute;
  top: 50%;
  left: 25%;
  height: 30%;
  width: 100%;
  margin: -17% 0 0 -25%;
}

#destaqueSlides .carousel-indicators{
  margin-right: 3%;
  margin-left: 3%;
  height: 8%;
}

#destaqueSlides .carousel-indicators li {
  box-sizing: content-box;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin-right: 15px;
  margin-left: 3px;
  text-indent: -999px;
  cursor: pointer;
  background-color: #ffc107;
  background-clip: padding-box;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  transition: opacity .6s ease;
  opacity: 1;
}

#destaqueSlides .carousel-indicators li.active{
  background-color: #fff;
}

.descripcion-menu-desplegado-cont i.fa-registered{
  font-size: 0.4em;
  vertical-align: super;
  display: initial;
}

.contenidos-cont-center i.fa-registered, p i.fa-registered{
  font-size: 0.5em;
  vertical-align: super;
  display: initial;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/

/* Nav Menu Essentials */

.nav-menu,
.nav-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
  display: inline-flex;
}

.nav-menu ul {
  position: absolute;
  display: none;
  top: 100%;
  left: 0;
  z-index: 99;
}

.nav-menu li {
  position: relative;
  white-space: nowrap;
}

.nav-menu > li {
  float: left;
}

.nav-menu li:hover > ul,
.nav-menu li.sfHover > ul {
  display: grid;
}

.nav-menu ul ul {
  top: 0;
  left: 100%;
}

.nav-menu ul li {
  min-width: 180px;
}

/* Nav Menu Arrows */

.sf-arrows .sf-with-ul {
  padding-right: 8px;
}

.sf-arrows .sf-with-ul:after {
  content: "\f107";
  position: absolute;
  right: 15px;
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
}

.sf-arrows ul .sf-with-ul:after {
  content: "\f105";
}

/* Nav Meu Container */

#nav-menu-container {
  float: right;
  margin: 0;
  height: 50px;
  padding-top: 12px;
  display: inline-flex;
}

/* Nav Meu Styling */

.nav-menu a {
  padding: 0 8px 10px 8px;
  text-decoration: none;
  color: rgb(255, 255, 255);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 1.1em;
  text-transform: uppercase;
  word-break: initial;
  display: flex;
  -webkit-font-smoothing: antialiased;
}

.nav-menu > li {
  margin-left: 10px;
}

.nav-menu ul {
  margin: 0px 0 0 -8px;
  padding: 10px;
  background: #e95a2dd1;
  display: grid;
  border-radius: 8px;
  max-width: 170px;
}

.nav-menu ul li {
  transition: 0.3s;
}

.nav-menu ul li a {
  padding: 5px;
  color: #fff;
  transition: 0.3s;
  display: block;
  font-size: 0.9em;
  text-transform: uppercase;
}

.nav-menu ul ul {
  margin: 0;
}

/* Menu nav mobile big */

.nav-mobile-big-cont{
  position: relative;
  width: 100%;
  height: 10vh;
  margin-top: 6px;
  margin-bottom: 6px;
  order: 1;
}

.menu-nav-mobile-big{
  width: 100%;
  height: 100%;
  float: left;
  position: relative;
  background-color: rgb(233, 91, 45);
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  min-height: unset;
  -webkit-box-align: center;
  align-items: center;
  z-index: 100;
  border-radius: 4px;
}

.menu-nav-mobile-big .dropdown-toggle::after{
  display: none;
}

.dropdown h1{
  font-family: veneer;
  font-size: 1.75em;
  margin: 0px;
  color: #fff;
}

.dropdown, .dropup {
  position: relative;
  width: 100%;
  text-align: center;
}

.dropdown-menu.show {
  font-family: veneer;
  visibility: visible;
  opacity: 1;
  width: 100%;
  top: 100% !important;
  background-color: rgb(246, 242, 233);
  display: grid;
  margin-top: -25px;
  padding-top: 20px;
  padding-bottom: 10px;
  z-index: 8;
  transition: all 0.3s ease 0s;
  overflow: hidden;
  border-width: 2px;
  border-style: solid;
  border-color: rgb(233, 91, 45);
  border-image: initial;
  border-radius: 4px;
}

a.dropdown-item {
    font-weight: 300;
    font-size: 2em;
    color: rgb(233, 91, 45);
    text-align: center;
    margin: 5px 0px;
    transition: color 0.2s ease 0s;
    font-family: veneer;
}
.dropdown-item:focus, .dropdown-item:hover {
    color: #f8b022;
    text-decoration: none;
    background-color: transparent;
}

.cont-svg.arrowDown {
  right: 15px;
  width: 65px;
  height: 35px;
  position: absolute;
  top: calc(50% - 18px);
}

.cont-svg.arrowDown svg{
  position: absolute;
  right: 15px;
  width: 35px;
  height: 35px;
  top: calc(50% - 18px);
  stroke-width: 2px;
  color: rgb(248, 177, 34);
  transform: rotate(90deg) scale(0.7);
  fill: currentColor;
}

.dropdown.show .arrowDown {
  display: none;
}

.cont-svg.arrowUp {
  right: 15px;
  width: 65px;
  height: 35px;
  position: absolute;
  bottom: 8px;
}

.cont-svg.arrowUp svg{
  position: absolute;
  right: 15px;
  width: 35px;
  height: 35px;
  bottom: 8px;
  stroke-width: 2px;
  color: rgb(248, 177, 34);
  transform: rotate(-90deg) scale(0.7);
  fill: currentColor;
}

/* Mobile Nav Toggle */

#mobile-nav-toggle {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 999;
  margin: 12px 20px 0 0;
  border: 0;
  background: none;
  font-size: 24px;
  display: none;
  transition: all 0.4s;
  outline: none;
  cursor: pointer;
}

#mobile-nav-toggle i {
  color: #e65028;
  font-size: 1.3em;
}

/* Mobile Nav Styling */

#mobile-nav {
  position: fixed;
  top: 70px;
  padding-top: 18px;
  bottom: 0;
  z-index: 998;
  background: rgb(233, 91, 45);
  right: -310px;
  width: 260px;
  transition: 0.4s;
  border-radius: 8px;
  max-width: 300px;
  width: calc(100% - 50px);
  display: flex;
  flex-direction: column;
  max-height: calc(100% - 20%);
  transition: right 0.3s cubic-bezier(1, -0.65, 0, 0.5) 0s;
  height: fit-content;
}
#mobile-nav ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

#mobile-nav ul li {
  position: relative;
}

#mobile-nav > ul li a {
  width: 100%;
  float: left;
  display: flex;
  color: rgb(255, 255, 255);
  text-transform: uppercase;
  font-size: 0.8em;
  cursor: pointer;
  word-break: initial;
  font-family: "Roboto Condensed", sans-serif;
  margin: 0px;
  padding: 10px 30px;
  text-decoration: none;
  border-top: 1px solid rgb(245, 171, 147);
}

#mobile-nav ul li a:hover {
  color: #fff;
}

#mobile-nav ul li li {
  padding-left: 30px;
}

#mobile-nav ul li.menu-active a {
  color: #18d26e;
}

#mobile-nav ul .menu-has-children i {
  position: absolute;
  left: 55px;
  z-index: 99;
  padding: 15px;
  cursor: pointer;
  color: #fff;
  top: -4px;
  font-size: 1.3em;
}

#mobile-nav ul .menu-has-children i.fa-chevron-up {
  color: #fff;
}

#mobile-nav ul .menu-has-children li a {
    text-transform: uppercase;
    padding-left: 45px;
}

#mobile-nav ul .menu-item-active {
  color: #fff;
}

#mobile-body-overly {
  width: 100%;
  height: 100%;
  z-index: 997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(0, 0, 0, 0.7);
  display: none;
}

/* Mobile Nav body classes */

body.mobile-nav-active {
  overflow: hidden;
}

body.mobile-nav-active #mobile-nav {
  right: 6px;
}

body.mobile-nav-active #mobile-nav-toggle {
  color: #fff;
}

/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/

/* Sections Header
--------------------------------*/

.section-header h3 {
  font-size: 34px;
  color: #37499f;
  text-align: center;
  font-weight: 700;
  position: relative;
  padding-bottom: 15px;
}

.section-header h3::before {
  content: '';
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}

.section-header h3::after {
  content: '';
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: #9081f1;
  bottom: 0;
  left: calc(50% - 20px);
}

.section-header p {
  text-align: center;
  color: #37499f;
  font-weight: bold;
}

/* Section with background
--------------------------------*/

.section-bg {
  background: #f7f7f7;
}

/*--------------------------------------------------------------
# Sección Menú
--------------------------------------------------------------*/

/* Menú destacado
--------------------------------*/
.menu-destacado{
  margin-bottom: 0px;
}

.menu-destacado-cont{
  margin-top: 25px;
  padding-bottom: 25px;
  max-width: 1300px;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-column-gap: 25px;
  overflow: unset;
  display: grid;
  width: 100%;
  padding-top: 15px;
  margin: auto;
}

.item-menu-destacado{
  height: 100px;
  width: 100%;
  font-size: 2em;
  position: relative;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 8px;
  background: rgb(233, 91, 45);
  overflow: hidden;
}

.menu-destacado h2{
  font-family: veneer;
  color: rgb(255, 255, 255);
  font-weight: 400;
  max-width: 140px;
  width: 100%;
  height: 100%;
  font-size: 1em;
  position: absolute;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  text-align: center;
  z-index: 5;
  padding: 0px;
  margin: 0px;
}

.menu-destacado a, .menu-destacado a:hover {
    width: 100%;
    height: 100%;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    text-align: center;
    display: flex;
    flex-direction: column;
    transition: all ease 0.5s;
}

.carta-menu-desplegado {
    margin-top: 25px;
}

a#cartaCompleta-bg{
  background-image: url(../img/Menu-CartaCompleta.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  transition: all ease 1s;
}
a#cartaCompleta-bg:hover,
a#cartaCompleta-bg.active {
  background-image: linear-gradient(
        rgba(233, 91, 45, 0.7),
        rgba(233, 91, 45, 0.7)
      ),
   url(../img/Menu-CartaCompleta.jpg);
   transition: opacity 0.2s ease 0;
}

a#platosPrincipales-bg{
  background-image: url(../img/Menu-PlatoPrincipal.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  transition: all ease 1s;
}
a#platosPrincipales-bg:hover,
a#platosPrincipales-bg.active {
  background-image: linear-gradient(
        rgba(233, 91, 45, 0.7),
        rgba(233, 91, 45, 0.7)
      ),
   url(../img/Menu-PlatoPrincipal.jpg);
   transition: opacity 0.2s ease 0;
}

a#entradas-bg{
  background-image: url(../img/Menu-Entrada.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  transition: all ease 1s;
}
a#entradas-bg:hover,
a#entradas-bg.active {
  background-image: linear-gradient(
        rgba(233, 91, 45, 0.7),
        rgba(233, 91, 45, 0.7)
      ),
   url(../img/Menu-Entrada.jpg);
   transition: opacity 0.2s ease 0;
}

a#sandwiches-bg{
  background-image: url(../img/Menu-Sandwich.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  transition: all ease 1s;
}
a#sandwiches-bg:hover,
a#sandwiches-bg.active {
  background-image: linear-gradient(
        rgba(233, 91, 45, 0.7),
        rgba(233, 91, 45, 0.7)
      ),
   url(../img/Menu-Sandwich.jpg);
   transition: opacity 0.2s ease 0;
}

a#bebidas-bg{
  background-image: url(../img/Menu-Bebidas.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  transition: all ease 1s;
}
a#bebidas-bg:hover,
a#bebidas-bg.active {
  background-image: linear-gradient(
        rgba(233, 91, 45, 0.7),
        rgba(233, 91, 45, 0.7)
      ),
   url(../img/Menu-Bebidas.jpg);
   transition: opacity 0.2s ease 0;
}

a#postres-bg{
  background-image: url(../img/Menu-Postres.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  transition: all ease 1s;
}
a#postres-bg:hover,
a#postres-bg.active {
  background-image: linear-gradient(
        rgba(233, 91, 45, 0.7),
        rgba(233, 91, 45, 0.7)
      ),
   url(../img/Menu-Postres.jpg);
   transition: opacity 0.2s ease 0;
}

.menu-page .gift-box, .restaurantes-page .gift-box{
  padding: 0;
  display: inline-flex;
  min-height: 55px;
}

.destacados-page .gift-box, .encuesta-page .gift-box{
  padding: 0;
  display: inline-flex;
  min-height: 55px;
}

.contacto-page .gift-box{
  padding: 0;
  display: inline-flex;
  min-height: 200px;
}

.gift-box-yellow{
  position: absolute;
  display: flex;
  height: 200px;
  width: 100%;
  left: 0px;
  bottom: 0px;
  overflow: hidden;
}

.bg-gift-yellow #gift-pic2{
  width: 28.75em;
  display: flex;
  height: 19.375em;
  left: -2.5em;
  position: absolute;
  margin-top: -3.75em;
  background-image: url(../img/handcard2-gift.png);
  background-repeat: no-repeat;
  z-index: 2;
  background-size: 100%;
}

.bg-gift-yellow{
  display: flex;
  position: absolute;
  background-color: rgb(248, 177, 34);
  background-image: url(../img/bg-gift-yellow.png);
  bottom: 0px;
  width: 100%;
  height: 135px;
  background-repeat: repeat;
  gap: 1.875em 1.875em;
}

.cont-gift-box-yellow{
  display: flex;
  margin-left: auto;
  margin-right: auto;
  padding-left: 12em;
}

.titulo-gift-yellow{
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  max-width: 205px;
}

.titulo-gift-yellow h1{
  font-family: veneer;
  color: rgb(255, 255, 255);
  font-size: 3em;
  text-align: left;
  font-weight: 300;
  text-transform: uppercase;
  opacity: 0.8;
  margin: 0px;
}

.separador-vertical{
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  height: 100%;
  padding: 0px 25px;
}

.separador-verical img{
  width: 7px;
  height: 65px;
}

.texto-gift-yellow{
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  flex-direction: column;
  max-width: 350px;
}

.texto-gift-yellow p{
  font-size: 1.2em;
  margin-bottom: 20px;
  margin-top: 0px;
  color: white;
}

.texto-gift-yellow a{
  font-size: 1em;
}


/*
# Restaurantes
-------------------------*/
.restaurantes-page .menu-desplegado{
  max-width: unset;
}

.restaurantes-page .item-grilla-menu-desplegado{
  grid-template-columns: [col1] 350px [col2] auto;
  gap: 25px 25px;
}

.restaurantes-page .descripcion-menu-desplegado a{
  color: #e65028;
  text-transform: uppercase;
  font-size: 1.3em;
}

.restaurantes-page .descripcion-menu-desplegado a:hover{
  color: rgb(248, 177, 34);
}

.restaurantes-page .descripcion-menu-desplegado a:hover > svg{
  margin-left: 10px;
}

.restaurantes-page .descripcion-menu-desplegado svg{
  width: 20px;
  height: 15px;
  margin-left: 5px;
  transition: color 0.3s ease 0s, margin 0.3s ease 0s;
  fill: currentColor;
}

/*
# Gift card
***************************/
.gift-page .cont-center{
  padding-top: 0;
  max-width: 900px;
  gap:0;
  padding-bottom: 0;
}

.gift-page .cont-center p{
  text-align: center;
}

.gift-page .cont-botones{
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 40px;
  margin-bottom: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  font-size: 1.2em;
  gap: 20px 20px;
}

.bot-big-border{
  font-size: 1em;
  padding: 6px 20px !important;
  border-radius: 8px;
  transition: background-color 0.2s ease 0s, color 0.2s ease 0s;
  border-width: 1px;
  border-style: solid;
  border-color: rgb(233, 91, 45);
  border-image: initial;
    font-weight: 600;
  width: 100%;
  height: 100%;
  display: inline-block;
  cursor: pointer;
  color: rgb(233, 91, 45);
}

.bot-big-border:hover{
  background-color: rgb(233, 91, 45);
}

.title-bot-big-border{
  font-family: veneer;
  text-align: center;
  color: rgb(233, 91, 45);
  font-size: 1.5em;
  text-transform: uppercase;
  padding-top: 10px;
  padding-bottom: 10px;
}

.title-bot-big-border:hover{
  color: #fff;
}

.contenidos-centrados{
  margin-left: auto;
  margin-right: auto;
  max-width: 600px;
  margin-top: 20px;
  text-align: center;
}

/*
# Prensa
***************************/

.prensa-page .grilla-menu-desplegado{
  grid-template-columns: 1fr;
  gap: 30px 30px;
}

.destacados-page.prensa-page .carta-menu-desplegado{
  max-width: 1000px;
  margin: 0 auto;
  width: 100%;
}

.prensa-page .cont-center {
  padding-top: 28px;
}

.destacados-page .nav-pills .nav-link {
  font-family: veneer;
  color: rgb(0, 0, 0);
  font-weight: 400;
  width: 100%;
  height: 100%;
  font-size: 2em;
  background-color: transparent;
}

.galeria-img-contenedor{
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  max-height: unset;
  gap: 20px 20px;
  overflow: unset;
  font-family: "Roboto Condensed", sans-serif;
  display: grid;
  margin-bottom: 20px;
}

.contenido-galeria{
  display: flex;
  flex-direction: column;
  margin: 25px 0px 0px;
  text-align: center;
}

.item-galeria{
  height: 150px;
  background-color: rgb(233, 91, 45);
}

.item-galeria img{
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-style: none;
}

.titulo-galeria{
  margin-top: 10px;
  color: #000;
  margin-bottom: -7px;
}

.contenido-galeria a{
  font-size: 0.8em;
  color: rgb(42, 124, 200);
  cursor: pointer;
  text-decoration: underline;
}

ul#pills-tab {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    margin-top: 30px;
    margin-bottom: 20px;
}

.cont-prensa-page-mobile{
  display: none;
}

/*
# Destacados {
***************************/

.destacados-page .item-grilla-menu-desplegado{
  grid-template-columns: [col1] 16em [col2] auto;
  gap: 25px 25px;
}

.destacados-page .menu-desplegado{
  max-width: unset;
}

.destacados-page .img-grilla-menu-desplegado {
    height: 17em;
    padding-bottom: 0;
    width: 17em;
    order: 1;
    border-radius: 0;
}

.destacados-page .item-grilla-menu-desplegado{
  padding: 0;
  margin:0;
}

.destacados-page .img-grilla-menu-desplegado img{
  width: 15em;
  height: 14em;
  object-fit: cover;
  background-color: rgb(233, 91, 45);
  border-radius: 0;
}

.destacados-page .ver-mas-button{
  color: #e65028;
  text-transform: uppercase;
  font-size: 1.1em;
}

.destacados-page .descripcion-menu-desplegado a:hover{
  color: rgb(248, 177, 34);
}

.destacados-page .descripcion-menu-desplegado a:hover > svg{
  margin-left: 10px;
  color: rgb(248, 177, 34);
}

.destacados-page .descripcion-menu-desplegado svg{
  width: 20px;
  height: 15px;
  margin-left: 5px;
  transition: color 0.3s ease 0s, margin 0.3s ease 0s;
  fill: currentColor;
  color: #e65028;
}

.destacados-page .descripcion-menu-desplegado-cont h1{
  font-size: 1.2em;
  text-transform: uppercase;
  margin-bottom: 1em;
}

.destacados-page .descripcion-menu-desplegado-cont p{
  font-size: 1em;
  max-width: unset;
  line-height: 19px;
}

.destacados-page .descripcion-menu-desplegado-cont{
  width: 100%;
  height: 12.5em;
}

.destacados-page .carta-menu-desplegado {
    margin: 0 5%;
}


/*
# Contacto
-------------------------*/
.titulo-ornament{
  width: 500px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  margin-top: 24px;
  align-self: center;
  background-color: rgb(246, 242, 233);
  z-index: 4;
  padding: 5px 0;
}

.contacto-page .gift-box h1{
  font-size: 3.8em;
  margin-top: 20px;
  font-weight: 300;
  color: rgb(233, 91, 45);
  align-self: center;
  text-align: center;
  order: 1;
  margin-block-end: 0.67em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  display: block;
}

/*
# Menú desplegado
-------------------------*/
.menu-desplegado{
  max-width: 1200px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 350px;
  overflow: hidden;
  display: grid;
  padding-left: 20px;
  padding-right: 20px;
  animation: 0.3s ease 0s 1 normal none running jvXeRy;
  margin-top: 20px;
}

.destacados-page .menu-desplegado{
  padding-bottom: 0;
}

.texto-menu-desplegado{
  grid-template-columns: [col1] 45px [col2] auto;
  font-size: 2em;
  max-width: 700px;
  margin: 20px 0px;
  text-transform: uppercase;
  -webkit-box-align: center;
  align-items: center;
  cursor: pointer;
  transition: color 0.3s ease 0s;
  width: fit-content;
  display: grid;
}

.texto-menu-desplegado a{
  width: max-content;
}

.texto-menu-desplegado p{
  color: rgb(233, 91, 45);
  font-family: veneer;
  display: -webkit-inline-box;
  margin-block-start: 1em;
  margin-block-end: 1em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  margin: 0;
}

.menu-desplegado-item > p{
  font-size: 1.3em;
}

.menu-desplegado-item span:nth-child(1){
  left: 14px;
  transform: rotate(135deg);
  width: 25px;
  height: 7px;
  display: block;
  position: absolute;
  opacity: 1;
  background-color: rgb(233, 91, 45);
  transition: all 0.3s ease 0s;
  border-radius: 8px;
}

.menu-desplegado-item span:nth-child(2){
  transform: rotate(45deg);
  left: 0px;
  left: 0px;
  width: 25px;
  height: 7px;
  display: block;
  position: absolute;
  opacity: 1;
  background-color: rgb(233, 91, 45);
  transition: all 0.3s ease 0s;
  border-radius: 8px;
}

.styled-span-arrow{
  position: relative;
  display: -webkit-inline-box;
  width: 45px;
  margin-bottom: 14px;
}

.styled-border{
  height: 0px;
  width: 100%;
  border-bottom: 1px solid rgb(245, 227, 215);
}

.grilla-menu-desplegado{
  grid-template-columns: 1fr 1fr;
  margin-bottom: 25px;
  gap: 80px 80px;
  display: grid;
  margin-top: 30px;
}

.item-grilla-menu-desplegado{
  grid-template-columns: [col1] 230px [col2] auto;
  border-width: initial;
  border-style: none;
  border-color: initial;
  border-image: initial;
  margin: 0px 0px 35px;
  display: grid;
  position: relative;
  gap: 25px 25px;
  padding: 0px 0px 50px;
}

.img-grilla-menu-desplegado{
  height: 310px;
  padding-bottom: 60px;
  width: 100%;
  order: 1;
  border-radius: 8px;
}

.img-grilla-menu-desplegado img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-color: rgb(233, 91, 45);
  border-radius: 8px;
}

.clasificacion-menu-desplegado{
  grid-template-columns: 1fr 1fr 1fr;
  max-height: 60px;
  display: grid;
  float: left;
  margin-left: 5px;
  margin-top: 5px;
  margin-bottom: 20px;
  max-height: 35px;
  width: 100%;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  order: 3;
  gap: 5px 5px;
  display: none;
}

.clasificacion-item{
  width: 60px;
}

.clasificacion-item img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-color: transparent;
}

.descripcion-menu-desplegado{
  font-family: "Roboto Condensed", sans-serif;
  order: 2;
}

.descripcion-menu-desplegado-cont{
  width: 100%;
  height: auto;
  display: block;
  margin-top: auto;
  margin-bottom: auto;
}

.descripcion-menu-desplegado-cont h1{
  font-size: 2.5em;
  font-family: "Roboto Condensed", sans-serif;
  color: #000;
  display: block;
  font-weight: 600;
  margin: 0;
}

.descripcion-menu-desplegado-cont p{
  font-size: 1em;
  max-width: 280px;
  margin: 0px;
  display: block;
}

.menu-desplegado-separator{
  bottom: -20px;
  height: 1px;
  border-bottom: 1px solid rgb(245, 227, 215);
  position: absolute;
  width: 100vw;
  display: block;
}

.displayNone{
  display: none;
}

.oneCol-tragos{
  grid-template-columns: [col1] 0px [col2] auto;
}

.oneCol{
  grid-template-columns: [col1] auto;
}

.menu-list .item-grilla-menu-desplegado.oneCol{
  padding: 0 0 20px 0;
  margin: 0px 0px 20px;
}

.menu-list .grilla-menu-desplegado{
  gap: 40px 80px;
}
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

.footer-content{
  position: relative;
  display: flex;
}

.footer-left{
  background-color: rgba(233, 91, 45, 0.9);
  height: 60px;
  /*border-radius: 0 16px 16px 0;
  margin-right: 1.5%;*/
  width: 100%;
  float: left;
  display: -webkit-box;
  grid-template-columns: 1fr;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
}

.footer-left-content{
  display: inline;
  margin-left: 0em;
  margin-right: 6.6em;
  margin-top: 0.5em;
}

#bot-tiendas{
  display: inline-block;
  margin-left: 0em;
  margin-right: 0em;
  margin-top: 0.5em;
  margin-bottom: 0.6em;
}

.footer-left-content h5{
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 600;
    font-size: 0.85em;
    width: 100%;
    margin-top: 1em;
    margin-bottom: 1.7em;
    text-align: center;
    display: inline;
    background-color: transparent;
    text-transform: uppercase;
    cursor: pointer;
    color: rgb(255, 255, 255);
    transition: background-color 0.2s ease 0s, color 0.2s ease 0s;
    border-width: initial;
    border-style: none;
    border-color: initial;
    border-image: initial;
     -webkit-font-smoothing: antialiased;
}

.footer-button{
  font-size: 0.8em;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 600;
  display: inline-block;
  padding: 7px 17px;
  border-radius: 8px;
  border: 1px solid #fff;
  color: white !important;
   -webkit-font-smoothing: antialiased;
}


.footer-left-content svg{
  width:1.3em;
  color: rgb(248, 177, 34);
  margin: 0px 10px;
  vertical-align: middle;
}


.footer-right{
  background-color: rgba(233, 91, 45, 0.9);
  height: 60px;
  border-radius: 16px 0 0 16px;
  width: 15%;
  display: flex;
  flex-direction: row;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
}

.footer-right-content {
  display: inline-flex;
}

.footer-right-content svg{
  width:2em;
  color: rgb(248, 177, 34);
  order: 1;
  margin: 5px;
}

.footer-right-content a p{
  color: rgb(255, 255, 255);
  font-size: 0.75em;
  width: auto;
  margin-top: auto;
  margin-bottom: auto;
  order: 2;
  text-transform: uppercase;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 600;
}

.footer-right-content a{
  display: flex;
  flex-direction: row;
}

/*--------------------------------------------------------------
# Legales
--------------------------------------------------------------*/

.legales{
  line-height: 1.6em;
  font-size: 1em;
  font-family: "Roboto Condensed", sans-serif;
  padding: 0px;
  margin: 20px auto;
  text-align: center;
}

.legales-content{
  display: block;
  margin-bottom: 30px;
  font-size: 1.1em;
  color: rgb(29, 29, 27);
  padding-top: 0px;
  border-top: 0px;
}

.legales a{
  color: rgb(29, 29, 27);
  margin: 0px 10px;
  text-decoration: underline;
  line-height: 50px;
}

/*--------------------------------------------------------------
# Editorial
--------------------------------------------------------------*/

.banner-header h1{
  font-size: 3em;
  font-family: veneer;
  position: absolute;
  top: 50%;
  left: 25%;
  height: 30%;
  width: 100%;
  margin: -15% 0 0 -25%;
}

/*--------------------------------------------------------------
# gift box
--------------------------------------------------------------*/

.gift-box{
  text-align: center;
  position: relative;
  overflow: hidden;
  height: 41.7%;
  min-height: 41.7%;
}

.gift-box .row{
  padding: 100px 0px 60px 0px;
}

.gift-box h1{
  font-family: veneer;
  color: rgb(233, 91, 45);
  margin: 0;
  font-size: 2.8em;
}

.gift-box p{
  font-size: 1.3em;
  text-align: center;
  max-width: 270px;
  position: relative;
  margin: 0 auto;
}

#gift-pic{
  background-image: url(../img/handcard1-gift.png);
  background-repeat: no-repeat;
  position: absolute;
  z-index: 2;
  background-size: 100%;
  top: 12%;
  left: -10px;
  width: 25.5em;
  height: 28em;
}

.gift-box .footer-button{
  width: 100%;
  text-align: center;
  margin-top: 25px;
  display: block;
  position: absolute;
  bottom: 0;
  border: none;
  margin-left: -10px;
}

.gift-box .footer-button a{
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 600;
  display: inline-block;
  cursor: pointer;
  color: rgb(248, 177, 34);
  padding: 6px 20px;
  border-radius: 8px;
  transition: background-color 0.2s ease 0s, color 0.2s ease 0s;
  border-width: 1px;
  border-style: solid;
  border-color: rgb(248, 177, 34);
  border-image: initial;
  font-size: 1.5em;
}

.gift-box .gift {
  height: 270px;
  max-width: 100%;
}


/* ornaments */
.ornament{
  background-image: url('../img/ornament-bg.png');
  background-repeat: repeat-x;
  background-size: auto 100%;
  height: 52px;
  top: 0px;
  position: absolute;
  width: calc(100% + 50px);
  margin-left: -25px;
  margin-top: 0;
  grid-column: span 2 / auto;
  padding: 0;
}

.ornament-small{
  background-image: url('../img/ornament-ob-small.png');
  background-repeat: repeat-x;
  background-size: auto 100%;
  height: 52px;
  top: 0px;
  position: absolute;
  width: calc(100% + 50px);
  margin-left: -25px;
  margin-top: 0;
  grid-column: span 2 / auto;
  padding: 0;
}

.ornament-updown{
  background-image: url('../img/ornament-ob-updown.png');
  background-repeat: repeat-x;
  background-size: auto 100%;
  height: 52px;
  top: 0px;
  position: absolute;
  width: calc(100% + 50px);
  margin-left: -25px;
  margin-top: 0;
  grid-column: span 2 / auto;
  padding: 0;
}

.ornament-big{
  position: absolute;
  width: 100%;
  margin-top: 30px;
  left: 0px;
  height: 165px;
  z-index: 2;
  background: url('../img/ornament-bg-big.png');
}

.styled-ornament{
  width: 232px;
  order: 4;
  height: 20px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 15px;
  background: url('../img/styled-ornament.png');
  background-repeat: repeat-x;
}

.vertical-styled-ornament{
  width: 180px;
  height: 17px;
  left: calc(50% - 90px);
  position: absolute;
  top: 115px;
  transform: rotate(90deg);
  display: block;
  background: url('../img/styled-ornament.png');
  background-repeat: repeat-x;
}

.ornament-min{
  width: 100%;
  height: 30px;
  background: url('../img/ornament-bg-big.png');
  background-size: cover;
  object-fit: fill;
  background-repeat: no-repeat;
  margin-bottom: 10px;
}

/* styled scrollbar */

.styled_ScrollTrack{
  height: 0px;
  margin-top: -2px;
  width: 100%;
  display: block;
  border-bottom: 1px solid rgb(235, 91, 44);
}

.menu-destacado-cont::-webkit-scrollbar {
    width: 0px;
    height: 4px;
}

.menu-destacado-cont::-webkit-scrollbar-thumb {
    display: block;
    background-color: rgb(235, 91, 44);
    width: 100px;
    border-radius: 12px;
}

.menu-destacado-cont::-webkit-scrollbar-corner {
    display: none;
}

.menu-destacado-cont::-webkit-scrollbar-track {
    display: none;
}

body::-webkit-scrollbar-thumb {
    display: block;
    background-color: rgb(235, 91, 44);
    width: 100px;
    border-radius: 12px;
}

body::-webkit-scrollbar {
    width: 4px;
    height: 8px;
}

body::-webkit-scrollbar-corner {
    display: none;
}
body::-webkit-scrollbar-track {
    display: none;
}
/*--------------------------------------------------------------
# Social media block
--------------------------------------------------------------*/

.bloque-redes{
  margin-top: -5px;
}

.bloque-redes ul {
  padding: 0;
}

.bloque-redes li{
  list-style: none;
  display: inline-block;
}

.bloque-redes a{
  color: rgb(255, 255, 255);
}

.bloque-redes i{
  margin: 8px;
  font-size: 1.2em;
}

/*
Accordion
************************/

#acccordion {
  width: 100%;
}

.card {
  background-color: transparent;
  border: none;
}

.card-header {
  background-color: transparent;
  border-bottom: none;
  padding: .5rem 1.25rem 0 1.25rem;
}

.txt-card{
  display: flex;
  flex-direction: column;
  padding-left: 10px;
  break-inside: avoid-column;
}

.more-less-button{
  display: flex;
  margin-top: 2px;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  min-height: 29px;
  width: 20px;
  float: left;
}

.more-less-1{
  position: absolute;
  width: 4px;
  height: 12px;
  background-color: rgb(0, 0, 0);
  opacity: 1;
  transition: all 0.2s ease 0s;
}

.more-less-2{
  position: absolute;
  width: 12px;
  height: 4px;
  background-color: rgb(0, 0, 0);
}

.contacto-page #accordion .btn{
  font-size: 1.5em;
  font-family: "Roboto Condensed", sans-serif;
  color: rgb(0, 0, 0);
  break-inside: avoid-column;
  margin: 0px 0px 10px;
  cursor: pointer;
  text-decoration: none;
  padding: 0;
  white-space: normal;
  text-align: left;
}

.contacto-page #accordion h5{
  font-size: 1em;
}

.contacto-page #accordion .btn.btn-link.collapsed .more-less-1{
  display: block;
  transition: all ease 2s;
}

.contacto-page #accordion .btn.btn-link .more-less-1{
  display: none;
  transition: all ease 2s;
}

.contacto-page .btn-link:hover{
  text-decoration: none;
}

.card-body a{
  color: rgb(85, 26, 139);
}

.card-body{
  font-size: 1.25em;
  font-weight: 600;
  color: #000;
  font-family: "Roboto Condensed", sans-serif;
  padding: 0 0 0 45px;
}

.contacto-page #accordion{
  display: grid;
  margin-top: 0px;
  grid-template-columns: 1fr 1fr;
  gap: 20px 20px;
  margin-bottom: 25px;
}

.contacto-page .card{
  display: grid;
  height: 100%;
  margin-left: 10px;
  margin-right: 10px;
  cursor: pointer;
  break-inside: avoid-column;
  transition: all 0.2s ease 0s;
  padding: 0px 20px;
  border-radius: 8px;
  min-width: unset;
}

.contacto-page .cont-center{
    padding-top: 0;
}

.subtitulo{
  font-family: "Roboto Condensed", sans-serif;
  text-align: center;
  font-size: 2em;
  font-weight: 600;
  color: #000;
  margin-bottom: 1em;
}

/*
# Formulario
****************************/
.form-campos-cont{
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  grid-template-columns: 1fr 1fr;
  display: grid;
  margin-bottom: 20px;
  gap: 2em 2em;
  overflow: hidden;
}

.form-campos{
  width: auto;
  margin: unset;
}

.form-label{
  font-size: 1.2em;
  display: block;
  margin-bottom: 10px;
  font-size: 0.8em;
  color: rgb(117, 112, 106);
  opacity: 1;
  font-weight: 600;
  text-transform: uppercase;
  font-family: "Roboto Condensed", sans-serif;
  position: relative;
}

.form-input{
  width: 100%;
  height: 44.8px;
  background-color: rgb(246, 242, 233);
  color: rgb(117, 112, 106);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 16px !important;
  margin: 0px;
  padding: 0px 10px;
  border-width: 1px;
  border-style: solid;
  border-color: rgb(117, 112, 106);
  border-image: initial;
}

.mensaje-contenedor{
  margin-left: auto;
  margin-right: auto;
  max-width: 980px;
  width: 100%;
  margin-top: 1em;
  margin-bottom: 1em;
}

div.mensaje-contenedor .form-campos{
  width: auto;
  margin: unset;
}

.mensaje-contenedor textarea{
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  height: 450px;
  background-color: rgb(246, 242, 233);
  color: rgb(166, 166, 166);
  font: inherit inherit inherit inherit inherit inherit inherit inherit inherit;
  margin: 0px auto;
  padding: 10px;
  border-width: 1px;
  border-style: solid;
  border-color: rgb(166, 166, 166);
  border-image: initial;
  width: 100%;
}

.bot-big-cont{
  width: 100%;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
}

.bot-big{
  font-family: "Roboto Condensed", sans-serif;
  font-size: 1em;
  width: 100%;
  text-transform: uppercase;
  text-align: center;
  max-width: 250px;
  background-color: rgb(233, 91, 45);
  color: white;
  cursor: pointer;
  -webkit-appearance: none;
  border-width: initial;
  border-style: none;
  border-color: initial;
  border-image: initial;
  border-radius: 8px;
  margin: 40px auto;
  padding: 15px;
}

.form-select{
  width: 100%;
  height: 44.8px;
  background-color: rgb(246, 242, 233);
  color: rgb(117, 112, 106);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 16px !important;
  margin: 0px;
  padding: 0px 10px;
  border-width: 1px;
  border-style: solid;
  border-color: rgb(117, 112, 106);
  border-image: initial;
}

.styled-label{
  cursor: pointer;
  padding-left: 5px;
  padding-right: 5px;
  font-family: veneer;
  color: rgb(255, 255, 255);
  background: rgb(233, 91, 45);
  transition: all 0.3s ease 0s;
}

.styled-anexar-text{
  position: relative;
  font-family: "Roboto Condensed", sans-serif;
  color: rgb(77, 77, 77);
  font-size: 0.9em;
}

/*--------------------------------------------------------------
# Responsive Media Queries
--------------------------------------------------------------*/

/* 1600px ----------------*/
@media (min-width: 1600px){
  #introSlides {
    max-height: 80%;
    height: calc(78vh - 100px);
  }
}

@media (max-width: 1600px){
  .nav-menu a{
    font-size: 0.9em;
  }
  .restaurantes-page .item-grilla-menu-desplegado {
    grid-template-columns: [col1] 250px [col2] auto;
  }
  .restaurantes-page .descripcion-menu-desplegado-cont h1{
    font-size: 1.8em;
  }
  .restaurantes-page .descripcion-menu-desplegado-cont p{
    font-size: 0.85em;
  }
}


/* 1400px -----------------*/
@media (max-width: 1400px){
  .destacados-page .item-grilla-menu-desplegado {
    grid-template-columns: [col1] 14em [col2] auto;
  }
  .destacados-page .img-grilla-menu-desplegado img {
    width: 14em;
    height: 13em;
  }

}

/* 1280px ----------------*/
@media (max-width: 1281px){
  .cont-center {
    padding-top: 25px;
  }
  .destacados-page .descripcion-menu-desplegado-cont p{
    font-size: 0.9em;
  }
  .destacados-page .descripcion-menu-desplegado-cont h1{
    font-size: 1em;
  }
  .destacados-page .gift-box.container-fluid{
    display: none;
  }
  .destacados-page .gift-box.container-fluid#show{
    display: block;
  }
  .gift-box .footer-button a{
    font-size: 1.3em;
    padding: 3px 15px;
  }
  .gift-box-yellow{
    display: none;
  }
  .separator{
    display: none;
  }
  .bloque-redes{
    display: none;
  }
  .gift-box h1{
    font-size: 2.3em;
  }
  .gift-box p{
    font-size: 0.83em;
    max-width: 350px;
  }
  .footer-right-content svg{
    width:1.5em;
    color: rgb(255, 255, 255);
    margin-top: 0px;
  }
  .footer-left-content h5{
    font-size: 0.7em;
  }
  .footer-button {
    padding: 4px 13px;
  }.gift-box .row {
    padding: 100px 0px 60px 0px;
  }
}



/* 1200 px ----------------*/
@media (max-width: 1200px){
  .destacados-page .grilla-menu-desplegado{
    grid-template-columns: 1fr;
    width: 100%;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    text-align: left;
    display: grid;
    margin-top: -20px;
    overflow: hidden;
    gap: 0px 8px;
  }
  .destacados-page .item-grilla-menu-desplegado {
    grid-template-columns: [col1] 8em [col2] auto;
    border-bottom: 2px solid #ea6940;
    max-height: 10em;
    margin-bottom: 2em;
    gap: 15px 15px;
  }
  .destacados-page .img-grilla-menu-desplegado {
    max-height: 12em;
    height: auto;
    min-height: 10em;
  }
  .destacados-page .img-grilla-menu-desplegado img {
    width: 8em;
    height: 8em;
  }
  .destacados-page .descripcion-menu-desplegado a.ver-mas-button{
    display: none;
  }
  .destacados-page .descripcion-menu-desplegado-cont#item_01_destacado > h1{
    margin-top: 20px;
  }
}
/* 1080 px ----------------*/
@media (max-width: 1080px){

  #gift-pic{
    top: 16.5%;
    left: -40px;
    width: 22.5em;
    height: 9em;
  }
  .gift-box .row {
    padding: 100px 0px 60px 0px;
  }
}

/* 1024px ----------------*/
@media (min-width: 1024px){
  .legales-nav{
    display: none;
  }
  .nav-mobile-big-cont{
    display: none;
  }
  .styled_ScrollTrack{
    display: none;
  }
  #col-historia-mobile{
    display: none;
  }
}

@media (max-width: 1024px){
  .bot-big{
    margin: 40px 0 60px 0;
  }
  .destacados-page.prensa-page .carta-menu-desplegado {
    margin: 20px 0 0 0;
  }
  .destacados-page .mensaje-contenedor {
    max-width: 320px;
    margin: 0;
}
  .prensa-page .form-campos {
    max-width: 320px;
    margin: 0;
    padding: 0;
  }
  .prensa-page .cont-center {
      padding-top: 0;
      font-size: 0.8em;
      padding-bottom: 13px;
  }
  .simple-link{
    text-align: left;
    margin-bottom: 20px;
  }
  .galeria-img-contenedor{
    grid-template-columns: [col1] auto;
    margin-bottom: 20px;
  }
  .item-galeria{
    height: 220px;
  }
  .contenido-galeria{
    text-align: left;
  }
  .prensa-page .styled-ornament{
    margin-left: 0;
  }
  .ornament{
    height: 30px;
  }
  .cont-prensa-page-mobile .panel-body {
    margin-top: 35px;
  }
  .cont-prensa-page{
    display: none;
  }
  .cont-prensa-page-mobile{
  display: block;
  }
  .footer-left-content svg{
    margin:0 3px;
  }
  .terminos-page .cont-center {
    padding-top: 0;
    gap:0;
  }
  .terminos-page .contenidos-cont-center p{
    font-size: 0.85em;
    margin: 0 30px 25px 30px;
    line-height: 1.3em;
  }
  .quienes-page .contenidos-cont-center-split{
    margin-bottom: 0;
  }
  .more-less-button {
    margin-top: -4px;
    }
  .contacto-page #accordion .btn{
    font-size: 1em;
    margin:0;
  }
  .contacto-page #accordion{
    grid-template-columns: 1fr;
    margin-top: 20px;
    max-width: 1200px;
    gap: 10px 10px;
  }
  .bigh1 {
    font-size: 2em;
    margin-bottom: 0;
  }
  .card-body {
    font-size: 0.8em;
    }
  .restaurantes-page .descripcion-menu-desplegado-cont h1 {
    font-size: 1.2em;
    max-width: 280px;
    margin: 0px;
  }
  .restaurantes-page .descripcion-menu-desplegado-cont p{
    font-size: 0.79em;
    max-width: 280px;
    margin: 0px;
  }
  .restaurantes-page .descripcion-menu-desplegado a{
    font-size: 1em;
  }
  .gift-page .cont-botones{
    grid-template-columns: 1fr;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 40px;
    margin-bottom: 30px;
    gap: 10px 10px;
  }
  .title-bot-big-border{
    height: 100px;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    display: flex;
    flex-direction: column;
  }
  .destacados-page .descripcion-menu-desplegado-cont p{
    display: none;
  }
  .gift-page .cont-h1 h1{
    font-size: 1.2em;
    width: 11em;
  }
  .mensaje-contenedor textarea{
    height: 100%;
    width: 100%;
    padding: 10px;
    min-height: 110px;
  }
  .mensaje-contenedor{
    width: 320px;
  }
  .form-campos-cont{
    grid-template-columns: 1fr;
    margin-bottom: 20px;
    gap: 2em 2em;
  }
  .form-campos {
    width: 320px;
    margin: 0 auto;
    padding: 0 10px;
  }
  .quienes-page .contenedor-txt-expan{
    padding: 30px 15px 20px;
    width: calc(100% + 30px);
  }
  .quienes-page .contenedor-txt-expan h2{
    font-size: 1.5em;
  }
  .quienes-page .contenedor-txt-expan p{
    padding: 0 30px;
  }
  .quienes-page .cont-center p{
    font-size: 0.8em;
    line-height: 1.2em;
  }
  #col-historia-mobile{
    display: block;
  }
  .quienes-page .cont-h1#h1-historia{
    display: none;
  }
  .quienes-page .cont-h1#h1-quienes{
    top: -120px;
    left: calc(50% - 104px);
  }
  .quienes-page .vertical-styled-ornament{
    display: none;
  }
  .contenedor-img-expan{
    display: none;
  }
  .contenidos-cont-center-split {
    grid-template-columns: 1fr;
    gap:0;
  }
  .quienes-page #col-quienes, .quienes-page #col-historia{
    width: 100%;
    padding: 0 30px;
    max-width: unset;
    margin: auto;
  }
  .contacto-page .gift-box h1{
    font-size: 2em;
    margin-top: 10px;
  }
  .contacto-page .gift-box {
    min-height: unset;
  }
  .contacto-page .ornament-big{
    display: none;
  }
  .encuesta-page .cont-center p{
    line-height: 1.2em;
    font-size: 0.9em;
  }
  .cont-center h1{
    font-size: 1.4em;
  }
  .cont-center p{
    font-size: 0.9em;
  }
  .cont-center .padding-right{
    padding-right: 0;
  }
  .banner-cabecera{
    height: 120px;
  }
  .cont-h1 h1 {
    font-size: 2.5em;
    margin-top: 30px;
  }
  .restaurantes-page .item-grilla-menu-desplegado {
    grid-template-columns: [col1] 140px [col2] auto;
  }
  .menu-desplegado-item > p {
      font-size: 1em;
  }
  .texto-menu-desplegado {
    font-family: veneerregular;
    width: fit-content;
    display: grid;
    grid-template-columns: [col1] 35px [col2] auto;
    color: rgb(233, 91, 45);
    font-size: 1.4em;
    text-transform: uppercase;
    -webkit-box-align: center;
    align-items: center;
    cursor: pointer;
    transition: color 0.3s ease 0s;
    margin: 10px 0px;
  }
  .menu-desplegado-item span:nth-child(1){
    width: 18px;
    height: 6px;
    left: 9px;
  }
  .menu-desplegado-item span:nth-child(2){
    width: 18px;
    height: 6px;
  }
  .styled-span-arrow{
    width: 35px;
  }
  .descripcion-menu-desplegado-cont h1{
    font-size: 1.5em;
    max-width: 280px;
    margin: 0px;
  }
  .descripcion-menu-desplegado-cont p{
    font-size: 0.79em;
    max-width: 280px;
    margin: 0px;
  }
  .clasificacion-item {
    width: 40px;
  }
  .grilla-menu-desplegado {
    grid-template-columns: 1fr;
    gap: 25px 25px;
    display: grid;
    margin-top: 0;
    margin: 0 0 25px;
    padding: 0px;
}
  .oneCol {
      grid-template-columns: [col1] auto !important;
  }
  .item-grilla-menu-desplegado{
    grid-template-columns: [col1] 140px [col2] auto;
  }
  .img-grilla-menu-desplegado {
      height: 170px;
      padding-bottom: 0;
  }
  .menu-destacado-cont{
    column-gap: 5px;
  }
  .styled-main{
    padding: 4px 5px 5px;
  }
  .gift-page .styled-main{
    padding: 4px 5px 50px 4px;
  }
  .menu-destacado-cont{
    overflow: scroll;
    padding-bottom: 15px;
  }
  .item-menu-destacado{
    width: 105px;
    height: 60px;
  }
  .menu-destacado h2{
    max-width: unset;
    font-size: 0.5em;
  }
  .home-page .banner-cabecera, .menu-page .banner-cabecera{
    display: none;
  }
  section#intro {
      padding: 0px 5px 30px 5px;
  }
  .menu-has-children ul a {
      background-color: #ca4b23;
  }
  .hvr-underline-from-center:hover:before, .hvr-underline-from-center:focus:before, .hvr-underline-from-center:active:before {
    display: none;
  }
  #mobile-nav ul li li {
    padding-left: 0px;
  }
  #mobile-nav > ul {
    padding: 0;
    margin: 0;
    list-style: none;
    overflow: scroll;
    border-bottom: 1px solid rgb(245, 171, 147);
    max-height: 18.4em;
  }
  .legales-nav{
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
    color: rgb(255, 255, 255);
    font-size: 0.8em;
    padding-top: 15px;
  }
  .legales-nav-content p {
    max-width: 220px;
    line-height: 1.6em;
    font-size: 0.8em;
    font-family: "Roboto Condensed", sans-serif;
    padding: 0px;
    margin: auto;
    color: #fff;
  }
  .legales-nav-content a {
      color: rgb(255, 255, 255);
      text-decoration: underline;
      margin: 0px 5px;
  }
  .bloque-redes{
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    padding-top: 30px;
    margin-bottom: -25px;
    padding-left: 25px;
    padding-right: 25px;
    justify-content: space-around;
  }
  .bloque-redes i{
    font-size: 1.7em;
    width: 1.3em;
  }
  .logoSVG{
    width: 95px;
    fill: rgb(230, 80, 40);
  }
  .gift-box .footer-button{
    display: none;
  }
  .gift-box .gift{
    height: 150px;
  }
  .footer-content{
    position: fixed;
    width: 100%;
    bottom: 15px;
    height: 4.2%;
    float: left;
    text-align: center;
    z-index: 99;
    transition: all 0.2s ease 0s;
  }
  .footer-left{
    -webkit-box-pack: initial;
    height: 45px;
    /*margin-right: 20px;
    border-radius: 0 8px 8px 0;*/
    padding-top: 5px;
  }
  .footer-right{
    height: 45px;
    width: 100px;
    border-radius: 8px 0 0 8px;
  }
  .footer-right-content a p{
    font-size: 0.5em;
    width: 30px;
    text-align: left;
    order: 1;
    padding-left: 5px;
    word-break: normal;
  }
  .gift-box h1{
    font-size: 1.4em;
  }
  #gift-pic{
    width: calc(212px);
    left: -20px;
    top: 0px;
  }
  .gift-box .row {
    padding: 100px 0px 60px 0px;
  }
  #intro p {
    width: 60%;
  }
  #intro .carousel-control-prev,
  #intro .carousel-control-next {
    width: 5%;
  }
  #nav-menu-container {
    padding-right: 60px;
    padding-top: 11px;
    display: inline-flex;
  }
  div#destaqueSlides{
    display: none;
  }
  .footer-button {
    display: none;
  }
  .legales{
    display: none;
  }
  #mobile-nav-toggle {
    display: inline;
  }
  #nav-menu-container {
    display: none;
  }
  #header{
    background: none;
    height: 55px;
  }
  #header .container-fluid{
    height: 55px;
  }
}

/*
# Términos de uso
****************************/

.terminos-page .contenidos-cont-center p{
  text-align: center;
}

/* 768px ----------------*/
@media (max-width: 768px) {
  .back-to-top {
    bottom: 15px;
  }
  #header #logo h1 {
    font-size: 28px;
  }
  #header #logo img {
    max-height: 40px;
  }
  #intro h2 {
    font-size: 28px;
  }
  #contact .contact-address,
  #contact .contact-phone,
  #contact .contact-email {
    padding: 20px 0;
  }
  #contact .contact-phone {
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
  }
}

/* 575px ----------------*/
@media (max-width: 575px){
  .gift-box .row {
    padding: 150px 0px 60px 0px;
  }
  .gift-box .gift {
    height: 140px;
    max-width: 100%;
  }
}
