:root {
  /*------ Colores */
  --white-color: #fff;
  --black-color: #222;
  /* ------- Tipografia */
  --fuente-dancing: "Dancing Script", "cursive", sans-serif;
}

html {
  color: #222;
  font-size: 1em;
  line-height: 1.4;
}

html,
body {
  height: 100%;
  width: 100%;
  font-size: 14px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

a {
  text-decoration: none;
}

/******* UTILS *********/

.white-text {
  color: var(--white-color);
}

.medium {
  font-size: 1.5em;
}

/**** CSS **********/

.video-container {
  height: 100%;
  width: 100%;
  position: absolute;
  overflow: hidden;
}

.video-container video {
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}

.navigation {
  margin: 0;
  height: 100%;
  position: relative;
  z-index: 2;
}

.title-video {
  margin: 0px;
  font-size: 4em;
  font-family: var(--fuente-dancing);
}

.navigation-menu {
  color: var(--white-color);
  right: 5em;
  top: 3em;
}

.navigation-menu ol li {
  display: inline-block;
  padding: 5px 10px;
  transition: all 0.4s;
  font-size: 1.5em;
}

.navigation ol li a {
  color: var(--white-color);
  cursor: pointer;
}

.navigation ol li:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.navigation ol li a:hover {
  text-decoration: none;
}

.navigation-footer {
  background-color: var(--black-color);
  color: white;
  width: 100%;
  padding: 10px 15px;
}

.menus {
  height: 100%;
  width: 100%;
}

/*** Verificacion position navigation footer ***/

#description.position-absolute {
  bottom: 0px;
}

#description.position-fixed {
  top: 0px;
}

/*** Fin ***/

/************ MAIN MENU ***********/

.food {
  height: 300px;
  background-size: cover;
  background-position: center;
  padding: 0;
  overflow: hidden;
}

.food:hover .screen {
  top: 0%;
}

.food .screen {
  position: relative;
  top: -100%;
  background-color: rgba(0, 0, 0, 0.8);
  height: 100%;
  width: 100%;
  transition: top 0.4s;
}

.screen .screen-title {
  font-size: 2.5em;
  font-family: var(--fuente-dancing);
}

#menu-title {
  width: 300px;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  background: var(--white-color);
}

#menu-title h2 {
  margin: 2px 0px;
  font-family: var(--fuente-dancing);
  font-size: 4em;
}

#main .carousel-inner img {
  max-height: 70vh;
  object-fit: cover;
  /* filter: grayscale(70%); */
}

.container .card {
  background-color: var(--white-color);
  color: var(--black-color);
  padding: 10px 15px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
}

.container .card h3 {
  font-size: 1.5em;
  font-weight: 200;
}

.container .card strong {
  font-family: var(--fuente-dancing);
  font-size: 1.5em;
  font-weight: bold;
}

.container .card p {
  margin-top: 2em;
  margin: 0 0 10px;
}

.container-carousel {
  text-align: center;
  bottom: 10px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

#map {
  height: 500px;
}

#message {
  background-color: var(--black-color);
  color: var(--white-color);
  padding: 10px 15px;
  font-size: 1.5em;
}
.place-time {
  font-family: var(--fuente-dancing);
  font-size: 1.5em;
}

#menu-open {
  display: none;
}

@media only screen and (max-width: 960px) {

  #menu-open {
    display: block;
    margin: 0 auto;
    font-size: 2.5em;
  }

  #responsive-nav ol {
    position: absolute;
    width: 100%;
    font-size: 1.5em;
    top: 80px;
    background-color: #222;
    left: 0px;
    text-align: center;
    max-height: 0px;
    overflow: hidden;
    transition: all 0.4s;
  }

  #responsive-nav ol.active {
    max-height: 80vh;
  }

  #responsive-nav ol li {
    display: block;
    margin-top: 1em;
    padding: 10px 15px;
  }

  #navigation {
    display: none !important;
}

}

@media only screen and (max-width: 500px) {

  #responsive-nav ol {
    top: 40px;
    font-size: 0.8em;
    width: 100vw;
  }

  .container .card h3 {
    font-size: 1em;
  }
  
  .container .card strong {
    font-size:1em;
  }
  
  .container .card p {
    font-size: 0.8em;
  }



}
