@font-face {
  font-family: neuropol;
  src: url("../font/neuropol-webfont.eot");
  src: url("../font/neuropol-webfont.eot?#iefix") format("embedded-opentype"), url("../font/neuropol-webfont.woff2") format("woff2"), url("../font/neuropol-webfont.woff") format("woff"), url("../font/neuropol-webfont.ttf") format("truetype"), url("../font/neuropol-webfont.svg#neuropolregular") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: bombardier;
  src: url("../font/bombard-webfont.eot");
  src: url("../font/bombard-webfont.eot?#iefix") format("embedded-opentype"), url("../font/bombard-webfont.woff2") format("woff2"), url("../font/bombard-webfont.woff") format("woff"), url("../font/bombard-webfont.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: helve;
  src: url("../font/helvne_0-webfont.eot");
  src: url("../font/helvne_0-webfont.eot?#iefix") format("embedded-opentype"), url("../font/helvne_0-webfont.woff2") format("woff2"), url("../font/helvne_0-webfont.woff") format("woff"), url("../font/helvne_0-webfont.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
li {
  list-style: none;
}

a {
  text-decoration: none;
}

html, body {
  width: 100%;
  height: 100%;
}

body {
  margin: 0;
  padding: 0;
}

body::-webkit-scrollbar {
  display: none;
}

.modal {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 1000; /* Encima*/
  left: 0;
  top: 0;
  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;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.modal .preloader {
  width: 100%;
  height: 100%;
  background-color: #c32821;
  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;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.modal .preloader .carga {
  width: 90px;
  height: 90px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow: hidden;
  border-radius: 50%;
  background-color: #FFFFFF;
  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;
  -webkit-animation: giro-carga 1.5s linear infinite;
          animation: giro-carga 1.5s linear infinite;
}
.modal .preloader .carga .corte {
  width: 100%;
  height: 30px;
  background-color: #c32821;
}
.modal .preloader .amarillo {
  position: absolute;
  left: 50%;
  top: 50%;
  margin-top: -40px;
  margin-left: -40px;
  width: 80px;
  height: 80px;
  background-color: #c32821;
  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;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 50%;
}
.modal .preloader .amarillo .circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  background-color: #efa01a;
  background-image: url(../img/load-icon.png);
  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;
}
.modal .preloader .amarillo .circle img {
  -webkit-animation: cerveza 0.5s linear infinite alternate;
          animation: cerveza 0.5s linear infinite alternate;
}

@-webkit-keyframes giro-carga {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes giro-carga {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@-webkit-keyframes cerveza {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.25, 1.25);
            transform: scale(1.25, 1.25);
  }
}
@keyframes cerveza {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.25, 1.25);
            transform: scale(1.25, 1.25);
  }
}
.cerrar-modal {
  -webkit-animation: cerrar-modal 0.8s 1 forwards;
          animation: cerrar-modal 0.8s 1 forwards;
}

@-webkit-keyframes cerrar-modal {
  0% {
    -webkit-transform: skew(30deg);
            transform: skew(30deg);
    width: 100%;
    height: 100%;
  }
  50% {
    -webkit-transform: skew(30deg);
            transform: skew(30deg);
    width: 0;
    height: 100%;
  }
  100% {
    -webkit-transform: skew(30deg);
            transform: skew(30deg);
    width: 0;
    height: 0;
  }
}

@keyframes cerrar-modal {
  0% {
    -webkit-transform: skew(30deg);
            transform: skew(30deg);
    width: 100%;
    height: 100%;
  }
  50% {
    -webkit-transform: skew(30deg);
            transform: skew(30deg);
    width: 0;
    height: 100%;
  }
  100% {
    -webkit-transform: skew(30deg);
            transform: skew(30deg);
    width: 0;
    height: 0;
  }
}
.modal-menu {
  width: 100%;
  height: 0;
  background-image: url(../img/fondo-modal.png);
  position: fixed;
  right: 0;
  top: 0;
  z-index: 100;
  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;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  overflow: hidden;
}
.modal-menu .nav-dos {
  width: 700px;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.modal-menu .nav-dos a {
  cursor: pointer;
  text-align: center;
  width: 120px;
}
.modal-menu .nav-dos a img {
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  margin-bottom: -5px;
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
}
.modal-menu .nav-dos a:hover img {
  margin-top: -10px;
  margin-bottom: 5px;
}
.modal-menu .nav-dos a .sombra {
  display: inline-block;
  width: 73px;
  height: 12px;
  background-image: url(../img/sombra-icon.png);
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  opacity: 0.7;
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
}
.modal-menu .nav-dos a h2 {
  font-family: bombardier;
  color: #efa01a;
  font-size: 22px;
  margin: 0;
  font-weight: normal;
  -webkit-transform: translateY(30px);
      -ms-transform: translateY(30px);
          transform: translateY(30px);
  opacity: 0;
}

.modal-menu-fade {
  -webkit-animation: abrir-modal 0.4s linear 1 forwards;
          animation: abrir-modal 0.4s linear 1 forwards;
}

.icon-animate {
  -webkit-animation: crecer 0.7s linear 1 forwards;
          animation: crecer 0.7s linear 1 forwards;
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}

.text-animate {
  -webkit-animation: texto-menu 0.7s linear 1 forwards;
          animation: texto-menu 0.7s linear 1 forwards;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}

.modal-menu-fadeout {
  -webkit-animation: abrir-modalout 0.8s linear 1 forwards;
          animation: abrir-modalout 0.8s linear 1 forwards;
}

.icon-animateout {
  -webkit-animation: crecerout 0.5s linear 1 forwards;
          animation: crecerout 0.5s linear 1 forwards;
}

.text-animateout {
  -webkit-animation: texto-menuout 0.5s linear 1 forwards;
          animation: texto-menuout 0.5s linear 1 forwards;
}

@-webkit-keyframes crecer {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes crecer {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@-webkit-keyframes abrir-modal {
  0% {
    height: 0;
  }
  100% {
    height: 100%;
  }
}
@keyframes abrir-modal {
  0% {
    height: 0;
  }
  100% {
    height: 100%;
  }
}
@-webkit-keyframes texto-menu {
  0% {
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
    opacity: 0;
  }
  60% {
    -webkit-transform: translateY(15px);
            transform: translateY(15px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
@keyframes texto-menu {
  0% {
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
    opacity: 0;
  }
  60% {
    -webkit-transform: translateY(15px);
            transform: translateY(15px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
@-webkit-keyframes crecerout {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
}
@keyframes crecerout {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
}
@-webkit-keyframes abrir-modalout {
  0% {
    height: 100%;
  }
  50% {
    height: 100%;
  }
  100% {
    height: 0;
  }
}
@keyframes abrir-modalout {
  0% {
    height: 100%;
  }
  50% {
    height: 100%;
  }
  100% {
    height: 0;
  }
}
@-webkit-keyframes texto-menuout {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
  50% {
    -webkit-transform: translateY(15px);
            transform: translateY(15px);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
    opacity: 0;
  }
}
@keyframes texto-menuout {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
  50% {
    -webkit-transform: translateY(15px);
            transform: translateY(15px);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
    opacity: 0;
  }
}
#fullpage {
  /*------------------header-------------------------------*/
  /*------------------header-------------------------------*/
}
#fullpage .box-carro {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 350px;
  height: 100vh;
  background-color: #fff;
  position: fixed;
  right: -350px;
  top: 0;
  z-index: 100;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  padding-top: 110px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-content: space-between;
      -ms-flex-line-pack: justify;
          align-content: space-between;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
#fullpage .box-carro .lista {
  width: 90%;
  height: auto;
}
#fullpage .box-carro .lista li {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-color: #c32821;
  padding: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
#fullpage .box-carro .lista li span {
  font-family: bombardier;
  color: #fff;
  font-size: 22px;
}
#fullpage .box-carro .lista li .cerrar-prod {
  cursor: pointer;
}
#fullpage .box-carro .comprar {
  width: 90%;
  height: 120px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-top: 2px solid #c32821;
  text-align: center;
}
#fullpage .box-carro .comprar ul {
  width: 100%;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 20px;
}
#fullpage .box-carro .comprar ul li {
  padding: 10px;
  color: #c32821;
  font-family: helve;
  font-size: 14px;
}
#fullpage .box-carro .comprar .boton-comprar {
  position: relative;
  display: inline-block;
  width: 200px;
  height: 40px;
  background-color: #c32821;
  font-family: bombardier;
  font-size: 24px;
  color: #efa01a;
  text-align: left;
  padding: 7px 0 0 35px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
#fullpage .box-carro .comprar .boton-comprar .tri-comprar {
  width: 40px;
  height: 30px;
  position: absolute;
  right: 0;
  top: 5px;
  background-image: url(../img/icon-comprar.png);
  border-left: 2px solid #6d0505;
}
#fullpage .box-carro-click {
  right: 0;
}
#fullpage header {
  position: absolute;
  height: 100px;
  width: 100%;
  background-color: #efa01a;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: 100;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
#fullpage header .logo {
  height: 100px;
  background-color: #fff;
  width: 220px;
  margin-left: -30px;
  text-align: center;
  padding-top: 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transform: skew(-30deg);
      -ms-transform: skew(-30deg);
          transform: skew(-30deg);
}
#fullpage header .logo img {
  -webkit-transform: skew(30deg);
      -ms-transform: skew(30deg);
          transform: skew(30deg);
}
#fullpage header .logo2 {
  position: fixed;
  left: 0;
  top: 0;
  display: none;
  width: 220px;
  text-align: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
#fullpage header .logo3 {
  display: none;
  position: absolute;
  left: 0;
  top: 0;
  width: 220px;
  text-align: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
#fullpage header nav.nav {
  margin-right: 30px;
}
#fullpage header nav.nav .ul-scroll {
  width: 260px;
}
#fullpage header nav.nav ul {
  margin: 0;
  padding: 0;
  width: 180px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  list-style: none;
}
#fullpage header nav.nav ul li {
  height: 30px;
  width: 30px;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
#fullpage header nav.nav ul .redes4 {
  height: 35px;
  padding: 10px;
  width: 45px;
  position: relative;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
#fullpage header nav.nav ul .redes4 .pro-numero {
  position: absolute;
  right: -10px;
  top: 23px;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 11px solid #c32821;
}
#fullpage header nav.nav ul .menu-bar {
  width: 35px;
  margin-left: 40px;
  height: 18px;
  cursor: pointer;
  display: none;
  text-align: center;
}
#fullpage header nav.nav ul .menu-bar .lin-bar {
  border-radius: 3px;
  width: 35px;
  height: 4px;
  background-color: #c32821;
  margin-bottom: 3px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
#fullpage header nav.nav ul .menu-bar .lin-uno-click {
  -webkit-transform: translateY(5px) rotate(405deg);
      -ms-transform: translateY(5px) rotate(405deg);
          transform: translateY(5px) rotate(405deg);
}
#fullpage header nav.nav ul .menu-bar .lin-tres-click {
  -webkit-transform: translateY(-2px) rotate(-405deg);
      -ms-transform: translateY(-2px) rotate(-405deg);
          transform: translateY(-2px) rotate(-405deg);
}
#fullpage header nav.nav ul .menu-bar-block {
  display: block;
}
#fullpage .telf {
  position: absolute;
  width: 440px;
  color: #fff;
  text-align: center;
  z-index: 110;
  font-family: bombardier;
  font-size: 26px;
  margin: 0;
  left: 50%;
  margin-left: -220px;
  top: 40px;
}
#fullpage .telf span {
  color: #c32821;
}
#fullpage .header2 {
  position: fixed;
  height: 60px;
  background-color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
#fullpage .home {
  background-image: url(../img/fondo-desktop.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}
#fullpage .home .pareja {
  width: 35%;
  position: absolute;
  bottom: -4px;
  left: 40px;
  -webkit-transform: translateY(100%);
      -ms-transform: translateY(100%);
          transform: translateY(100%);
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
#fullpage .home .pareja img {
  width: 100%;
  max-width: 100%;
}
#fullpage .home .apareja {
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}
#fullpage .home .content {
  position: absolute;
  right: 0;
  width: 50%;
  bottom: 0;
  height: auto;
  padding-bottom: 50px;
  text-align: center;
}
#fullpage .home .content .frase {
  width: 60%;
  margin-bottom: 40px;
  position: relative;
  display: inline-block;
}
#fullpage .home .content .frase img {
  width: 100%;
  max-width: 100%;
  opacity: 0;
}
#fullpage .home .content .frase .haz-tu-pedido {
  opacity: 0;
  margin: 0;
  padding: 0;
  width: 160px;
  position: absolute;
  left: -230px;
  top: 0;
  text-align: center;
  font-family: bombardier;
  font-size: 59px;
  color: #efa01a;
  line-height: 36px;
  text-shadow: 3px 3px 0.3px rgba(0, 0, 0, 0.3);
}
#fullpage .home .content .frase .haz-tu-pedido span {
  color: #fff;
  font-size: 26px;
}
#fullpage .home .content .frase .haz-tu-pedido .triangulo {
  position: absolute;
  width: 40px;
  height: 45px;
  background-image: url(../img/trian-home.png);
  right: -70px;
  top: 50%;
  margin-top: -16px;
  font-family: helve;
  text-align: center;
  font-size: 18px;
  padding: 7px 14px 0 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
#fullpage .home .content .nav-dos {
  width: 500px;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#fullpage .home .content .nav-dos a {
  cursor: pointer;
  text-align: center;
  width: 120px;
}
#fullpage .home .content .nav-dos a img {
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  margin-bottom: -5px;
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
}
#fullpage .home .content .nav-dos a:hover img {
  margin-top: -10px;
  margin-bottom: 5px;
}
#fullpage .home .content .nav-dos a .me-img.icon-animate {
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}
#fullpage .home .content .nav-dos a .sombrita {
  display: inline-block;
  width: 73px;
  height: 12px;
  background-image: url(../img/sombra-icon.png);
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  opacity: 0.7;
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
}
#fullpage .home .content .nav-dos a .sombrita.icon-animate {
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}
#fullpage .home .content .nav-dos a h2 {
  font-family: bombardier;
  color: #efa01a;
  font-size: 22px;
  margin: 0;
  font-weight: normal;
  -webkit-transform: translateY(30px);
      -ms-transform: translateY(30px);
          transform: translateY(30px);
  opacity: 0;
}
#fullpage .como-pedir {
  background-color: #efa01a;
}
#fullpage .como-pedir .wrapper {
  width: 100%;
  height: 100%;
  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;
}
#fullpage .como-pedir .wrapper .sub-wrapper {
  padding-top: 80px;
  width: 90%;
  height: 570px;
  max-width: 1200px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
#fullpage .como-pedir .wrapper .sub-wrapper .titulo {
  -webkit-transform: rotate(-2deg);
      -ms-transform: rotate(-2deg);
          transform: rotate(-2deg);
  position: relative;
  margin: 0;
  padding: 0;
  text-align: center;
  color: #efa01a;
  font-family: bombardier;
  font-size: 24px;
  background-image: url(../img/lazo-rojo.png);
  background-repeat: no-repeat;
  background-position: center;
  height: 59px;
  width: 100%;
}
#fullpage .como-pedir .wrapper .sub-wrapper .titulo .interro {
  font-size: 50px;
}
#fullpage .como-pedir .wrapper .sub-wrapper .titulo .tri-rojo {
  width: 35px;
  height: 30px;
  position: absolute;
  background-image: url(../img/triangulo-rojo.png);
  bottom: -33px;
  left: 50%;
  margin-left: -17.5px;
}
#fullpage .como-pedir .wrapper .sub-wrapper .pasos {
  width: 48%;
  height: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
#fullpage .como-pedir .wrapper .sub-wrapper .pasos .icon-pasos {
  display: inline-block;
  width: 200px;
  height: auto;
}
#fullpage .como-pedir .wrapper .sub-wrapper .pasos .icon-pasos img {
  width: 100%;
  max-width: 100%;
}
#fullpage .como-pedir .wrapper .sub-wrapper .pasos .triangulo-pasos {
  display: block;
  width: 35px;
  height: 30px;
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
#fullpage .como-pedir .wrapper .sub-wrapper .pasos .triangulo-pasos img {
  width: 100%;
  max-width: 100%;
}
#fullpage .como-pedir .wrapper .sub-wrapper .pasos .info-pasos {
  font-family: bombardier;
  margin: 0;
  padding: 0;
  color: #fff;
  font-size: 22px;
  width: 250px;
}
#fullpage .zonas {
  background-image: url(../img/fondo-zonas.png);
  background-size: cover;
  background-position: 0px 0px;
}
#fullpage .zonas .wrapper {
  width: 100%;
  height: 100%;
  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;
}
#fullpage .zonas .wrapper .sub-wrapper {
  padding-top: 70px;
  width: 90%;
  height: 580px;
  max-width: 1100px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
#fullpage .zonas .wrapper .sub-wrapper .titulo {
  -webkit-transform: rotate(-2deg);
      -ms-transform: rotate(-2deg);
          transform: rotate(-2deg);
  position: relative;
  margin: 0;
  padding: 0;
  text-align: center;
  background-image: url(../img/lazo-amarillo.png);
  background-repeat: no-repeat;
  background-position: center;
  height: 59px;
  width: 100%;
  margin-bottom: 30px;
}
#fullpage .zonas .wrapper .sub-wrapper .titulo h2 {
  position: relative;
  display: inline-block;
  font-weight: normal;
  color: #c32821;
  font-family: bombardier;
  font-size: 30px;
  width: 230px;
  margin: 0;
  padding: 0;
  margin-top: 16px;
}
#fullpage .zonas .wrapper .sub-wrapper .titulo h2 .icon-ub {
  position: absolute;
  left: -60px;
  top: 0;
  width: 22px;
  height: 32px;
  background-image: url(../img/iso-ubicacion.png);
}
#fullpage .zonas .wrapper .sub-wrapper .titulo h2 .icon-ub2 {
  position: absolute;
  right: -60px;
  top: 0;
  width: 22px;
  height: 32px;
  background-image: url(../img/iso-ubicacion.png);
}
#fullpage .zonas .wrapper .sub-wrapper .titulo .tri-rojo {
  width: 35px;
  height: 30px;
  position: absolute;
  background-image: url(../img/triangulo-amarillo.png);
  bottom: -33px;
  left: 50%;
  margin-left: -17.5px;
}
#fullpage .zonas .wrapper .sub-wrapper .distritos {
  width: 48%;
  height: 450px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
#fullpage .zonas .wrapper .sub-wrapper .distritos p {
  color: #fff;
  font-family: helvetica;
  font-size: 17px;
}
#fullpage .zonas .wrapper .sub-wrapper .distritos .dis-mov {
  display: none;
}
#fullpage .zonas .wrapper .sub-wrapper .distritos ul {
  margin: 0;
  padding: 0;
  width: 48%;
}
#fullpage .zonas .wrapper .sub-wrapper .distritos ul li {
  font-family: bombardier;
  font-size: 34px;
  color: #efa01a;
  position: relative;
  margin-bottom: 10px;
  cursor: pointer;
}
#fullpage .zonas .wrapper .sub-wrapper .distritos ul li span {
  position: absolute;
  left: -35px;
  top: 5px;
  text-align: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-top: 4px;
  display: block;
  width: 25px;
  height: 25px;
  background-image: url(../img/distritos-icon.png);
  font-size: 18px;
}
#fullpage .zonas .wrapper .sub-wrapper .lista-uno .borja,
#fullpage .zonas .wrapper .sub-wrapper .lista-uno .isidro,
#fullpage .zonas .wrapper .sub-wrapper .lista-uno .luis,
#fullpage .zonas .wrapper .sub-wrapper .lista-uno .miguel,
#fullpage .zonas .wrapper .sub-wrapper .lista-uno .surco,
#fullpage .zonas .wrapper .sub-wrapper .lista-uno .surquillo {
  display: none;
}
#fullpage .zonas .wrapper .sub-wrapper .lista-dos .barranco,
#fullpage .zonas .wrapper .sub-wrapper .lista-dos .jesus,
#fullpage .zonas .wrapper .sub-wrapper .lista-dos .molina,
#fullpage .zonas .wrapper .sub-wrapper .lista-dos .lince,
#fullpage .zonas .wrapper .sub-wrapper .lista-dos .magdalena,
#fullpage .zonas .wrapper .sub-wrapper .lista-dos .miraflores,
#fullpage .zonas .wrapper .sub-wrapper .lista-dos .pueblo {
  display: none;
}
#fullpage .zonas .wrapper .sub-wrapper .lista-tres {
  display: none;
}
#fullpage .zonas .wrapper .sub-wrapper .mapa {
  position: relative;
  width: 490px;
  height: auto;
}
#fullpage .zonas .wrapper .sub-wrapper .mapa img {
  width: 100%;
  max-width: 100%;
}
#fullpage .zonas .wrapper .sub-wrapper .mapa span {
  width: 22px;
  position: absolute;
  left: 195px;
  top: 345px;
}
#fullpage .zonas .wrapper .sub-wrapper .mapa span img {
  width: 100%;
  max-width: 100%;
}
#fullpage .zonas .wrapper .sub-wrapper .mapa .dos {
  width: 26px;
  left: 165px;
  top: 270px;
}
#fullpage .zonas .wrapper .sub-wrapper .mapa .tres {
  width: 38px;
  left: 300px;
  top: 280px;
}
#fullpage .zonas .wrapper .sub-wrapper .mapa .cuatro {
  width: 28px;
  left: 184px;
  top: 280px;
}
#fullpage .zonas .wrapper .sub-wrapper .mapa .cinco {
  width: 20px;
  left: 145px;
  top: 300px;
  z-index: 10;
}
#fullpage .zonas .wrapper .sub-wrapper .mapa .seis {
  width: 22px;
  left: 178px;
  top: 325px;
}
#fullpage .zonas .wrapper .sub-wrapper .mapa .siete {
  width: 25px;
  left: 142px;
  top: 268px;
}
#fullpage .zonas .wrapper .sub-wrapper .mapa .ocho {
  width: 22px;
  left: 225px;
  top: 305px;
}
#fullpage .zonas .wrapper .sub-wrapper .mapa .nueve {
  width: 22px;
  left: 165px;
  top: 302px;
}
#fullpage .zonas .wrapper .sub-wrapper .mapa .diez {
  width: 26px;
  left: 220px;
  top: 270px;
}
#fullpage .zonas .wrapper .sub-wrapper .mapa .once {
  width: 32px;
  left: 110px;
  top: 270px;
}
#fullpage .zonas .wrapper .sub-wrapper .mapa .doce {
  width: 32px;
  left: 220px;
  top: 340px;
}
#fullpage .zonas .wrapper .sub-wrapper .mapa .trece {
  width: 24px;
  left: 199px;
  top: 310px;
}
#fullpage .zonas .wrapper .sub-wrapper .mapa .numeros-anim {
  -webkit-animation: salto 0.5s infinite alternate;
          animation: salto 0.5s infinite alternate;
}
#fullpage .contactos {
  background-color: white;
  background-image: url(../img/fondo-contactos.png);
  background-size: cover;
  background-position: center;
  padding: 0;
}
#fullpage .contactos .wrapp {
  width: 90%;
  height: 100%;
  max-width: 1200px;
  margin: auto;
  padding-top: 70px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#fullpage .contactos .wrapp .formulario {
  width: 410px;
  height: auto;
}
#fullpage .contactos .wrapp .formulario .lazo {
  -webkit-transform: rotate(-2deg);
      -ms-transform: rotate(-2deg);
          transform: rotate(-2deg);
  width: 100%;
  position: relative;
  height: 50px;
  text-align: center;
  background-image: url(../img/lazo-contact.png);
  background-position: center;
  background-repeat: no-repeat;
  font-family: bombardier;
  font-size: 30px;
  padding: 0;
  margin: 0;
  padding-top: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #efa01a;
}
#fullpage .contactos .wrapp .formulario .lazo .tri-rojo {
  width: 35px;
  height: 30px;
  position: absolute;
  background-image: url(../img/triangulo-rojo.png);
  bottom: -33px;
  left: 50%;
  margin-left: -17.5px;
}
#fullpage .contactos .wrapp .formulario form {
  width: 100%;
  height: auto;
  margin-top: 42px;
  text-align: center;
  /*color placeholder*/
}
#fullpage .contactos .wrapp .formulario form input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 100%;
  padding: 10px 5px;
  margin-bottom: 8px;
  border: 1px solid #c32821;
}
#fullpage .contactos .wrapp .formulario form input:focus {
  outline: none;
}
#fullpage .contactos .wrapp .formulario form textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 100%;
  max-width: 100%;
  height: 120px;
  max-height: 120px;
  border: 1px solid #c32821;
  padding: 7px 5px;
}
#fullpage .contactos .wrapp .formulario form textarea:focus {
  outline: none;
}
#fullpage .contactos .wrapp .formulario form input::-webkit-input-placeholder {
  color: #c32821;
  font-size: 12px;
  font-family: helve;
}
#fullpage .contactos .wrapp .formulario form input:-moz-placeholder {
  color: #c32821;
  font-size: 12px;
  font-family: helve;
}
#fullpage .contactos .wrapp .formulario form input::-moz-placeholder {
  color: #c32821;
  font-size: 12px;
  font-family: helve;
}
#fullpage .contactos .wrapp .formulario form input:-ms-input-placeholder {
  color: #c32821;
  font-size: 12px;
  font-family: helve;
}
#fullpage .contactos .wrapp .formulario form textarea::-webkit-input-placeholder {
  color: #c32821;
  font-size: 12px;
  font-family: helve;
}
#fullpage .contactos .wrapp .formulario form textarea:-moz-placeholder {
  color: #c32821;
  font-size: 12px;
  font-family: helve;
}
#fullpage .contactos .wrapp .formulario form textarea::-moz-placeholder {
  color: #c32821;
  font-size: 12px;
  font-family: helve;
}
#fullpage .contactos .wrapp .formulario form textarea:-ms-input-placeholder {
  color: #c32821;
  font-size: 12px;
  font-family: helve;
}
#fullpage .contactos .wrapp .formulario form #enviar {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: inline-block;
  width: 100px;
  padding: 10px 0;
  background-color: #c32821;
  color: #fff;
  font-size: 16px;
  font-family: helve;
  margin-top: 10px;
  cursor: pointer;
}
#fullpage .contactos .wrapp .contact {
  width: 400px;
  text-align: center;
}
#fullpage .contactos .wrapp .contact h2 {
  font-family: bombardier;
  font-weight: normal;
  font-size: 30px;
  color: #fff;
  margin: 0;
  margin-bottom: 10px;
}
#fullpage .contactos .wrapp .contact h2 span {
  color: #c32821;
}
#fullpage .contactos .wrapp .contact .like-box {
  margin: 0;
  width: 100%;
  height: 210px;
}
#fullpage .contactos .wrapp .contact .like-box .fb-page {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 4px solid #c32821;
}
#fullpage .contactos footer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
#fullpage .contactos footer p {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
#fullpage .contactos footer .legal {
  width: 100%;
  padding: 30px 20px;
  background-color: #c32821;
  color: #fff;
  font-family: helve;
  font-size: 22px;
  letter-spacing: 10px;
  text-align: center;
}
#fullpage .contactos footer .derechos {
  width: 100%;
  padding: 15px 0;
  background-color: #efa01a;
  color: #fff;
  font-family: helve;
  font-size: 12px;
  text-align: left;
  padding-left: 20px;
}
#fullpage .contactos footer .medstudio {
  font-family: helve;
  position: absolute;
  right: 15px;
  bottom: 10px;
  color: #fff;
  font-size: 12px;
}
#fullpage .contactos footer .medstudio .med {
  font-family: neuropol;
  vertical-align: middle;
}
#fullpage .contactos footer .medstudio .icon-med {
  margin-right: 5px;
  margin-left: 5px;
}

@-webkit-keyframes salto {
  from {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
}

@keyframes salto {
  from {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
}
@media (max-width: 750px) {
  .modal-menu .nav-dos {
    width: 90%;
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  .modal-menu .nav-dos a {
    cursor: pointer;
    text-align: center;
    width: 120px;
    margin-top: 20px;
  }
  .modal-menu .nav-dos a img {
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
    margin-bottom: -5px;
    -webkit-transform: scale(0);
        -ms-transform: scale(0);
            transform: scale(0);
  }
  .modal-menu .nav-dos a:hover img {
    margin-top: -10px;
    margin-bottom: 5px;
  }
  .modal-menu .nav-dos a .sombra {
    display: inline-block;
    width: 73px;
    height: 12px;
    background-image: url(../img/sombra-icon.png);
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
    opacity: 0.7;
    -webkit-transform: scale(0);
        -ms-transform: scale(0);
            transform: scale(0);
  }
  .modal-menu .nav-dos a h2 {
    font-family: bombardier;
    color: #efa01a;
    font-size: 22px;
    margin: 0;
    font-weight: normal;
    -webkit-transform: translateY(30px);
        -ms-transform: translateY(30px);
            transform: translateY(30px);
    opacity: 0;
  }

  #fullpage {
    /*------------------header-------------------------------*/
    /*------------------header-------------------------------*/
  }
  #fullpage header {
    height: 60px;
  }
  #fullpage header .logo {
    opacity: 0;
  }
  #fullpage header .logo2 {
    opacity: 0;
  }
  #fullpage header .logo3 {
    display: block;
    left: -20px;
    -webkit-transform: skew(-30deg);
        -ms-transform: skew(-30deg);
            transform: skew(-30deg);
    background-color: #fff;
  }
  #fullpage header .logo3 img {
    -webkit-transform: skew(30deg);
        -ms-transform: skew(30deg);
            transform: skew(30deg);
  }
  #fullpage .telf {
    position: absolute;
    width: 100%;
    color: #fff;
    text-align: center;
    z-index: 50;
    font-family: bombardier;
    font-size: 26px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: 0;
    padding: 0;
    padding-left: 20px;
    padding-right: 20px;
    margin-left: 0;
    left: 0;
    top: 75px;
  }
  #fullpage .telf span {
    color: #efa01a;
  }
  #fullpage .home {
    background-image: url(../img/fondo-750.jpg);
    background-position: top center;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    position: relative;
    height: 100vh;
  }
  #fullpage .home .pareja {
    display: none;
  }
  #fullpage .home .content {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    position: relative;
    right: none;
    margin: 0 auto;
    width: 90%;
    bottom: none;
    height: 100%;
    padding-bottom: 50px;
    text-align: center;
    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-align-content: space-between;
        -ms-flex-line-pack: justify;
            align-content: space-between;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  #fullpage .home .content .frase {
    width: 100%;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
    text-align: center;
    margin-top: 230px;
  }
  #fullpage .home .content .frase img {
    width: 75%;
    max-width: 75%;
    opacity: 0;
  }
  #fullpage .home .content .frase .haz-tu-pedido {
    opacity: 0;
    margin: 0;
    padding: 0;
    width: 100%;
    position: absolute;
    left: 0;
    top: -85px;
    text-align: center;
    font-family: bombardier;
    font-size: 32px;
    color: #efa01a;
    line-height: 36px;
    text-shadow: 3px 3px 0.3px rgba(0, 0, 0, 0.3);
  }
  #fullpage .home .content .frase .haz-tu-pedido span {
    color: #fff;
    font-size: 32px;
  }
  #fullpage .home .content .frase .haz-tu-pedido .triangulo {
    width: 45px;
    height: 40px;
    background-image: url(../img/trian-home2.png);
    right: 50%;
    margin-right: -22.5px;
    top: 60px;
    margin-top: -16px;
    text-align: center;
    font-size: 18px;
    padding: 0 5px 0 0;
  }
  #fullpage .como-pedir {
    background-color: #efa01a;
    position: relative;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    height: auto;
    padding-bottom: 40px;
  }
  #fullpage .como-pedir .wrapper {
    width: 100%;
    height: 100%;
    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: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  #fullpage .como-pedir .wrapper .sub-wrapper {
    padding-top: 75px;
    width: 90%;
    height: auto;
    max-width: 1200px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  #fullpage .como-pedir .wrapper .sub-wrapper .titulo {
    -webkit-transform: rotate(-2deg);
        -ms-transform: rotate(-2deg);
            transform: rotate(-2deg);
    position: relative;
    margin: 0;
    padding: 0;
    text-align: center;
    color: #efa01a;
    font-family: bombardier;
    font-size: 24px;
    background-image: url(../img/lazo-rojo.png);
    background-repeat: no-repeat;
    background-position: center;
    height: 59px;
    width: 100%;
    margin-bottom: 70px;
  }
  #fullpage .como-pedir .wrapper .sub-wrapper .titulo .interro {
    font-size: 50px;
  }
  #fullpage .como-pedir .wrapper .sub-wrapper .titulo .tri-rojo {
    width: 35px;
    height: 30px;
    position: absolute;
    background-image: url(../img/triangulo-rojo.png);
    bottom: -33px;
    left: 50%;
    margin-left: -17.5px;
  }
  #fullpage .como-pedir .wrapper .sub-wrapper .pasos {
    width: 48%;
    height: auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  #fullpage .como-pedir .wrapper .sub-wrapper .pasos .icon-pasos {
    width: 100%;
    height: auto;
    text-align: center;
  }
  #fullpage .como-pedir .wrapper .sub-wrapper .pasos .icon-pasos img {
    width: 90%;
    max-width: 100%;
  }
  #fullpage .como-pedir .wrapper .sub-wrapper .pasos .triangulo-pasos {
    display: block;
    width: 100%;
    height: auto;
    -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
            transform: rotate(0);
    text-align: center;
    margin-bottom: 15px;
  }
  #fullpage .como-pedir .wrapper .sub-wrapper .pasos .triangulo-pasos img {
    width: 35px;
    max-width: 35px;
  }
  #fullpage .como-pedir .wrapper .sub-wrapper .pasos .info-pasos {
    font-family: bombardier;
    margin: 0;
    padding: 0;
    color: #fff;
    font-size: 18px;
    text-align: center;
    width: 100%;
    height: 100px;
  }
  #fullpage .zonas {
    background-image: url(../img/fondo-zonas.png);
    background-size: cover;
    background-position: 0px 0px;
    height: auto !important;
    padding-bottom: 30px;
  }
  #fullpage .zonas .wrapper {
    width: 100%;
    height: 100%;
    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: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  #fullpage .zonas .wrapper .sub-wrapper {
    padding-top: 75px;
    width: 90%;
    height: auto;
    max-width: 1100px;
    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-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  #fullpage .zonas .wrapper .sub-wrapper .titulo {
    -webkit-transform: rotate(-2deg);
        -ms-transform: rotate(-2deg);
            transform: rotate(-2deg);
    position: relative;
    margin: 0;
    padding: 0;
    text-align: center;
    background-image: url(../img/lazo-amarillo.png);
    background-repeat: no-repeat;
    background-position: center;
    height: 59px;
    width: 100%;
    margin-bottom: 30px;
  }
  #fullpage .zonas .wrapper .sub-wrapper .titulo h2 {
    position: relative;
    display: inline-block;
    font-weight: normal;
    color: #c32821;
    font-family: bombardier;
    font-size: 30px;
    width: 230px;
    margin: 0;
    padding: 0;
    margin-top: 16px;
  }
  #fullpage .zonas .wrapper .sub-wrapper .titulo h2 .icon-ub {
    position: absolute;
    left: -60px;
    top: 0;
    width: 22px;
    height: 32px;
    background-image: url(../img/iso-ubicacion.png);
  }
  #fullpage .zonas .wrapper .sub-wrapper .titulo h2 .icon-ub2 {
    position: absolute;
    right: -60px;
    top: 0;
    width: 22px;
    height: 32px;
    background-image: url(../img/iso-ubicacion.png);
  }
  #fullpage .zonas .wrapper .sub-wrapper .titulo .tri-rojo {
    width: 35px;
    height: 30px;
    position: absolute;
    background-image: url(../img/triangulo-amarillo.png);
    bottom: -33px;
    left: 50%;
    margin-left: -17.5px;
  }
  #fullpage .zonas .wrapper .sub-wrapper .distritos {
    width: 100%;
    height: auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  #fullpage .zonas .wrapper .sub-wrapper .distritos p {
    color: #fff;
    font-family: helvetica;
    font-size: 17px;
  }
  #fullpage .zonas .wrapper .sub-wrapper .distritos ul {
    margin: 0;
    padding: 0;
    width: 31%;
  }
  #fullpage .zonas .wrapper .sub-wrapper .distritos ul li {
    font-family: bombardier;
    font-size: 26px;
    color: #efa01a;
    position: relative;
    margin-bottom: 10px;
    cursor: pointer;
    padding-left: 35px;
  }
  #fullpage .zonas .wrapper .sub-wrapper .distritos ul li span {
    position: absolute;
    left: 0;
    top: 5px;
    text-align: center;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-top: 4px;
    display: block;
    width: 25px;
    height: 25px;
    background-image: url(../img/distritos-icon.png);
    font-size: 18px;
  }
  #fullpage .zonas .wrapper .sub-wrapper .lista-uno .pueblo,
  #fullpage .zonas .wrapper .sub-wrapper .lista-uno .miraflores {
    display: none;
  }
  #fullpage .zonas .wrapper .sub-wrapper .lista-dos .miraflores,
  #fullpage .zonas .wrapper .sub-wrapper .lista-dos .pueblo {
    display: block;
  }
  #fullpage .zonas .wrapper .sub-wrapper .lista-dos .miguel,
  #fullpage .zonas .wrapper .sub-wrapper .lista-dos .surco,
  #fullpage .zonas .wrapper .sub-wrapper .lista-dos .surquillo {
    display: none;
  }
  #fullpage .zonas .wrapper .sub-wrapper .lista-tres {
    display: block;
  }
  #fullpage .zonas .wrapper .sub-wrapper .lista-tres .barranco,
  #fullpage .zonas .wrapper .sub-wrapper .lista-tres .miraflores,
  #fullpage .zonas .wrapper .sub-wrapper .lista-tres .pueblo,
  #fullpage .zonas .wrapper .sub-wrapper .lista-tres .borja,
  #fullpage .zonas .wrapper .sub-wrapper .lista-tres .isidro,
  #fullpage .zonas .wrapper .sub-wrapper .lista-tres .luis,
  #fullpage .zonas .wrapper .sub-wrapper .lista-tres .jesus,
  #fullpage .zonas .wrapper .sub-wrapper .lista-tres .molina,
  #fullpage .zonas .wrapper .sub-wrapper .lista-tres .lince,
  #fullpage .zonas .wrapper .sub-wrapper .lista-tres .magdalena {
    display: none;
  }
  #fullpage .zonas .wrapper .sub-wrapper .mapa {
    position: relative;
    width: 490px;
    height: auto;
  }
  #fullpage .zonas .wrapper .sub-wrapper .mapa img {
    width: 100%;
    max-width: 100%;
  }
  #fullpage .zonas .wrapper .sub-wrapper .mapa span {
    width: 22px;
    position: absolute;
    left: 195px;
    top: 345px;
  }
  #fullpage .zonas .wrapper .sub-wrapper .mapa span img {
    width: 100%;
    max-width: 100%;
  }
  #fullpage .zonas .wrapper .sub-wrapper .mapa .dos {
    width: 26px;
    left: 165px;
    top: 270px;
  }
  #fullpage .zonas .wrapper .sub-wrapper .mapa .tres {
    width: 38px;
    left: 300px;
    top: 280px;
  }
  #fullpage .zonas .wrapper .sub-wrapper .mapa .cuatro {
    width: 28px;
    left: 184px;
    top: 280px;
  }
  #fullpage .zonas .wrapper .sub-wrapper .mapa .cinco {
    width: 20px;
    left: 145px;
    top: 300px;
    z-index: 10;
  }
  #fullpage .zonas .wrapper .sub-wrapper .mapa .seis {
    width: 22px;
    left: 178px;
    top: 325px;
  }
  #fullpage .zonas .wrapper .sub-wrapper .mapa .siete {
    width: 25px;
    left: 142px;
    top: 268px;
  }
  #fullpage .zonas .wrapper .sub-wrapper .mapa .ocho {
    width: 22px;
    left: 225px;
    top: 305px;
  }
  #fullpage .zonas .wrapper .sub-wrapper .mapa .nueve {
    width: 22px;
    left: 165px;
    top: 302px;
  }
  #fullpage .zonas .wrapper .sub-wrapper .mapa .diez {
    width: 26px;
    left: 220px;
    top: 270px;
  }
  #fullpage .zonas .wrapper .sub-wrapper .mapa .once {
    width: 32px;
    left: 110px;
    top: 270px;
  }
  #fullpage .zonas .wrapper .sub-wrapper .mapa .doce {
    width: 32px;
    left: 220px;
    top: 340px;
  }
  #fullpage .zonas .wrapper .sub-wrapper .mapa .trece {
    width: 24px;
    left: 199px;
    top: 310px;
  }
  #fullpage .zonas .wrapper .sub-wrapper .mapa .numeros-anim {
    -webkit-animation: salto 0.5s infinite alternate;
            animation: salto 0.5s infinite alternate;
  }
  #fullpage .contactos {
    background-color: white;
    background-image: url(../img/fondo-contactos.png);
    background-size: cover;
    background-position: top right;
    padding: 0;
    height: auto !important;
  }
  #fullpage .contactos .wrapp {
    width: 90%;
    height: auto;
    max-width: 1200px;
    margin: auto;
    padding-top: 70px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  #fullpage .contactos .wrapp .formulario {
    width: 100%;
    height: auto;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  #fullpage .contactos .wrapp .formulario .lazo {
    -webkit-transform: rotate(-2deg);
        -ms-transform: rotate(-2deg);
            transform: rotate(-2deg);
    width: 100%;
    position: relative;
    height: 50px;
    text-align: center;
    background-image: url(../img/lazo-contact.png);
    background-position: center;
    background-repeat: no-repeat;
    font-family: bombardier;
    font-size: 30px;
    padding: 0;
    margin: 0;
    padding-top: 10px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    color: #efa01a;
  }
  #fullpage .contactos .wrapp .formulario .lazo .tri-rojo {
    width: 35px;
    height: 30px;
    position: absolute;
    background-image: url(../img/triangulo-rojo.png);
    bottom: -33px;
    left: 50%;
    margin-left: -17.5px;
  }
  #fullpage .contactos .wrapp .formulario form {
    width: 100%;
    height: auto;
    margin-top: 42px;
    text-align: center;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  #fullpage .contactos .wrapp .formulario form input {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    background-color: transparent;
  }
  #fullpage .contactos .wrapp .formulario form textarea {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    background-color: transparent;
    height: 10px;
  }
  #fullpage .contactos .wrapp .formulario form #enviar {
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    display: inline-block;
    width: 100px;
    padding: 10px 0;
    background-color: #c32821;
    color: #fff;
    font-size: 16px;
    font-family: helve;
    margin-top: 10px;
    cursor: pointer;
  }
  #fullpage .contactos .wrapp .contact {
    width: 100%;
    height: auto;
    margin-bottom: 30px;
    text-align: center;
  }
  #fullpage .contactos .wrapp .contact h2 {
    font-family: bombardier;
    font-weight: normal;
    font-size: 30px;
    color: #fff;
    margin: 0;
    margin-bottom: 10px;
  }
  #fullpage .contactos .wrapp .contact h2 span {
    color: #c32821;
  }
  #fullpage .contactos .wrapp .contact .like-box {
    margin: 0;
    width: 100%;
    height: 210px;
    display: none;
  }
  #fullpage .contactos footer {
    position: relative;
    bottom: none;
    left: none;
    width: 100%;
  }
  #fullpage .contactos footer .legal {
    font-size: 18px;
  }
  #fullpage .contactos footer .derechos {
    padding-left: 0;
    text-align: center;
  }
  #fullpage .contactos footer .medstudio {
    display: none;
  }

  /*------------------header-------------------------------*/
}
@media (max-width: 550px) {
  #fullpage {
    /*------------------header-------------------------------*/
    /*------------------header-------------------------------*/
  }
  #fullpage header {
    height: 60px;
  }
  #fullpage header .logo3 {
    width: 150px;
    display: block;
    height: 100%;
    left: -20px;
    -webkit-transform: skew(-30deg);
        -ms-transform: skew(-30deg);
            transform: skew(-30deg);
    background-color: #fff;
    padding-top: 7px;
  }
  #fullpage header .logo3 img {
    width: 100%;
    max-width: 100%;
    -webkit-transform: skew(30deg);
        -ms-transform: skew(30deg);
            transform: skew(30deg);
  }
  #fullpage .telf {
    font-size: 20px;
  }
  #fullpage .home {
    background-image: url(../img/fondo-750.jpg);
    height: 100vh;
  }
  #fullpage .home .content {
    height: auto;
  }
  #fullpage .home .content .frase {
    width: 100%;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
    text-align: center;
    margin-top: 220px;
  }
  #fullpage .home .content .frase img {
    width: 75%;
    max-width: 75%;
    opacity: 0;
  }
  #fullpage .home .content .frase .haz-tu-pedido {
    top: -100px;
  }
  #fullpage .home .content .nav-dos {
    width: 100%;
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  #fullpage .home .content .nav-dos .me-baronline {
    width: 23%;
  }
  #fullpage .home .content .nav-dos a {
    cursor: pointer;
    text-align: center;
    width: 23%;
  }
  #fullpage .home .content .nav-dos a img {
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
    margin-bottom: -5px;
    -webkit-transform: scale(0);
        -ms-transform: scale(0);
            transform: scale(0);
  }
  #fullpage .home .content .nav-dos a .sombrita {
    display: inline-block;
    width: 73px;
    height: 12px;
    background-image: url(../img/sombra-icon.png);
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
    opacity: 0.7;
    -webkit-transform: scale(0);
        -ms-transform: scale(0);
            transform: scale(0);
  }
  #fullpage .home .content .nav-dos a .sombrita.icon-animate {
    -webkit-animation-delay: 0.8s;
            animation-delay: 0.8s;
  }
  #fullpage .home .content .nav-dos a h2 {
    font-family: bombardier;
    color: #efa01a;
    font-size: 18px;
    margin: 0;
    font-weight: normal;
    -webkit-transform: translateY(30px);
        -ms-transform: translateY(30px);
            transform: translateY(30px);
    opacity: 0;
  }
  #fullpage .como-pedir {
    background-color: #efa01a;
    position: relative;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    height: auto;
    padding-bottom: 40px;
  }
  #fullpage .como-pedir .wrapper .sub-wrapper {
    padding-top: 75px;
    width: 90%;
    height: auto;
    max-width: 1200px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  #fullpage .como-pedir .wrapper .sub-wrapper .titulo {
    -webkit-transform: rotate(-2deg);
        -ms-transform: rotate(-2deg);
            transform: rotate(-2deg);
    position: relative;
    margin: 0;
    padding: 0;
    text-align: center;
    color: #efa01a;
    font-family: bombardier;
    font-size: 24px;
    background-image: url(../img/lazo-rojo.png);
    background-repeat: no-repeat;
    background-position: center;
    height: 59px;
    width: 100%;
    margin-bottom: 70px;
  }
  #fullpage .como-pedir .wrapper .sub-wrapper .titulo .interro {
    font-size: 50px;
  }
  #fullpage .como-pedir .wrapper .sub-wrapper .titulo .tri-rojo {
    width: 35px;
    height: 30px;
    position: absolute;
    background-image: url(../img/triangulo-rojo.png);
    bottom: -33px;
    left: 50%;
    margin-left: -17.5px;
  }
  #fullpage .como-pedir .wrapper .sub-wrapper .pasos {
    width: 100%;
    height: auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  #fullpage .como-pedir .wrapper .sub-wrapper .pasos .icon-pasos {
    width: 100%;
    height: auto;
    text-align: center;
  }
  #fullpage .como-pedir .wrapper .sub-wrapper .pasos .icon-pasos img {
    width: 70%;
    max-width: 100%;
  }
  #fullpage .como-pedir .wrapper .sub-wrapper .pasos .triangulo-pasos {
    display: block;
    width: 100%;
    height: auto;
    -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
            transform: rotate(0);
    text-align: center;
    margin-bottom: 15px;
  }
  #fullpage .como-pedir .wrapper .sub-wrapper .pasos .triangulo-pasos img {
    width: 35px;
    max-width: 35px;
  }
  #fullpage .como-pedir .wrapper .sub-wrapper .pasos .info-pasos {
    font-family: bombardier;
    margin: 0;
    padding: 0;
    color: #fff;
    font-size: 20px;
    text-align: center;
    width: 100%;
    height: auto;
    margin-bottom: 30px;
  }
  #fullpage .zonas {
    background-image: url(../img/fondo-zonas.png);
    background-size: cover;
    background-position: 0px 0px;
    height: auto !important;
    padding-bottom: 30px;
  }
  #fullpage .zonas .wrapper {
    width: 100%;
    height: 100%;
    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: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  #fullpage .zonas .wrapper .sub-wrapper {
    padding-top: 75px;
    width: 90%;
    height: auto;
    max-width: 1100px;
    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-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  #fullpage .zonas .wrapper .sub-wrapper .titulo {
    -webkit-transform: rotate(-2deg);
        -ms-transform: rotate(-2deg);
            transform: rotate(-2deg);
    position: relative;
    margin: 0;
    padding: 0;
    text-align: center;
    background-image: url(../img/lazo-amarillo.png);
    background-repeat: no-repeat;
    background-position: center;
    height: 59px;
    width: 100%;
    margin-bottom: 30px;
  }
  #fullpage .zonas .wrapper .sub-wrapper .titulo h2 {
    position: relative;
    display: inline-block;
    font-weight: normal;
    color: #c32821;
    font-family: bombardier;
    font-size: 30px;
    width: 230px;
    margin: 0;
    padding: 0;
    margin-top: 16px;
  }
  #fullpage .zonas .wrapper .sub-wrapper .titulo h2 .icon-ub {
    position: absolute;
    left: -60px;
    top: 0;
    width: 22px;
    height: 32px;
    background-image: url(../img/iso-ubicacion.png);
  }
  #fullpage .zonas .wrapper .sub-wrapper .titulo h2 .icon-ub2 {
    position: absolute;
    right: -60px;
    top: 0;
    width: 22px;
    height: 32px;
    background-image: url(../img/iso-ubicacion.png);
  }
  #fullpage .zonas .wrapper .sub-wrapper .titulo .tri-rojo {
    width: 35px;
    height: 30px;
    position: absolute;
    background-image: url(../img/triangulo-amarillo.png);
    bottom: -33px;
    left: 50%;
    margin-left: -17.5px;
  }
  #fullpage .zonas .wrapper .sub-wrapper .distritos {
    width: 100%;
    height: auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  #fullpage .zonas .wrapper .sub-wrapper .distritos p {
    color: #fff;
    font-family: helvetica;
    font-size: 17px;
  }
  #fullpage .zonas .wrapper .sub-wrapper .distritos ul {
    display: none;
  }
  #fullpage .zonas .wrapper .sub-wrapper .distritos .dis-mov {
    width: 100%;
    height: auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  #fullpage .zonas .wrapper .sub-wrapper .distritos .dis-mov .dis {
    width: 23%;
    height: auto;
    background-color: #efa01a;
    margin-bottom: 10px;
    padding: 5px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  #fullpage .zonas .wrapper .sub-wrapper .distritos .dis-mov .dis img {
    width: 100%;
    max-width: 100%;
  }
  #fullpage .zonas .wrapper .sub-wrapper .distritos .dis-mov .dis p {
    margin: 0;
    padding: 0;
    font-family: bombardier;
    color: #c32821;
    text-align: center;
    font-size: 20px;
  }
  #fullpage .zonas .wrapper .sub-wrapper .mapa {
    display: none;
  }
  #fullpage .contactos {
    background-color: white;
    background-image: url(../img/fondo-contactos.png);
    background-size: cover;
    background-position: top right;
    padding: 0;
    height: auto !important;
  }
  #fullpage .contactos .wrapp .formulario {
    width: 100%;
    height: auto;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  #fullpage .contactos .wrapp .contact h2 {
    font-size: 28px;
  }
  #fullpage .contactos footer {
    position: relative;
    bottom: none;
    left: none;
    width: 100%;
  }
  #fullpage .contactos footer .legal {
    font-size: 18px;
  }

  /*------------------header-------------------------------*/
}
@media (max-width: 460px) {
  .modal-menu .nav-dos {
    width: 90%;
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
            justify-content: space-around;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  .modal-menu .nav-dos a {
    cursor: pointer;
    text-align: center;
    width: 35%;
    margin-top: 20px;
  }
  .modal-menu .nav-dos a img {
    width: 60%;
    max-width: 60%;
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
    margin-bottom: -5px;
    -webkit-transform: scale(0);
        -ms-transform: scale(0);
            transform: scale(0);
  }
  .modal-menu .nav-dos a .sombra {
    display: inline-block;
    width: 73px;
    height: 12px;
    background-image: url(../img/sombra-icon.png);
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
    opacity: 0.7;
    -webkit-transform: scale(0);
        -ms-transform: scale(0);
            transform: scale(0);
  }
  .modal-menu .nav-dos a h2 {
    font-family: bombardier;
    color: #efa01a;
    font-size: 18px;
    margin: 0;
    font-weight: normal;
    -webkit-transform: translateY(30px);
        -ms-transform: translateY(30px);
            transform: translateY(30px);
    opacity: 0;
  }

  #fullpage {
    /*------------------header-------------------------------*/
    /*------------------header-------------------------------*/
  }
  #fullpage header {
    height: 60px;
  }
  #fullpage header .logo3 {
    width: 150px;
    display: block;
    height: 100%;
    left: -20px;
    -webkit-transform: skew(-30deg);
        -ms-transform: skew(-30deg);
            transform: skew(-30deg);
    background-color: #fff;
    padding-top: 7px;
  }
  #fullpage header .logo3 img {
    width: 100%;
    max-width: 100%;
    -webkit-transform: skew(30deg);
        -ms-transform: skew(30deg);
            transform: skew(30deg);
  }
  #fullpage header nav.nav {
    margin-right: 15px;
  }
  #fullpage header nav.nav .ul-scroll {
    width: 150px;
  }
  #fullpage header nav.nav ul {
    margin: 0;
    padding: 0;
    width: 130px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    list-style: none;
  }
  #fullpage header nav.nav ul li {
    height: 20px;
    width: 20px;
    cursor: pointer;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
  }
  #fullpage header nav.nav ul li img {
    width: 100%;
    max-width: 100%;
  }
  #fullpage header nav.nav ul .redes4 {
    height: 25px;
    width: 32px;
  }
  #fullpage header nav.nav ul .redes4 img {
    width: 100%;
    max-width: 100%;
  }
  #fullpage header nav.nav ul .redes4 .pro-numero {
    display: none;
  }
  #fullpage header nav.nav ul .menu-bar {
    margin-left: 0;
  }
  #fullpage .telf {
    font-size: 16px;
    top: 60px;
    padding-top: 7px;
    padding-bottom: 7px;
  }
  #fullpage .home {
    background-image: url(../img/fondo-750.jpg);
    height: 100vh;
  }
  #fullpage .home .content {
    height: auto;
  }
  #fullpage .home .content .frase {
    width: 100%;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
    text-align: center;
    margin-top: 150px;
  }
  #fullpage .home .content .frase img {
    width: 75%;
    max-width: 75%;
    opacity: 0;
  }
  #fullpage .home .content .frase .haz-tu-pedido {
    top: -50px;
  }
  #fullpage .home .content .frase .haz-tu-pedido .triangulo {
    display: none;
  }
  #fullpage .home .content .nav-dos {
    width: 100%;
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  #fullpage .home .content .nav-dos .me-baronline {
    width: 23%;
  }
  #fullpage .home .content .nav-dos a {
    cursor: pointer;
    text-align: center;
    width: 23%;
    text-align: center;
  }
  #fullpage .home .content .nav-dos a img {
    width: 90%;
    max-width: 100%;
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
    margin-bottom: -5px;
    -webkit-transform: scale(0);
        -ms-transform: scale(0);
            transform: scale(0);
  }
  #fullpage .home .content .nav-dos a .sombrita {
    display: inline-block;
    width: 60%;
    height: 8px;
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url(../img/sombra-icon.png);
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
    opacity: 0.7;
    -webkit-transform: scale(0);
        -ms-transform: scale(0);
            transform: scale(0);
  }
  #fullpage .home .content .nav-dos a h2 {
    font-family: bombardier;
    color: #efa01a;
    font-size: 14px;
    margin: 0;
    font-weight: normal;
    -webkit-transform: translateY(30px);
        -ms-transform: translateY(30px);
            transform: translateY(30px);
    opacity: 0;
  }
  #fullpage .como-pedir {
    padding-top: 30px;
  }
  #fullpage .como-pedir .wrapper .sub-wrapper {
    padding-top: 75px;
    width: 90%;
    height: auto;
    max-width: 1200px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  #fullpage .como-pedir .wrapper .sub-wrapper .titulo {
    -webkit-transform: rotate(-2deg);
        -ms-transform: rotate(-2deg);
            transform: rotate(-2deg);
    position: relative;
    margin: 0;
    padding: 0;
    padding-top: 20px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    text-align: center;
    color: #efa01a;
    font-family: bombardier;
    font-size: 24px;
    background-image: url(../img/lazo-rojo.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    height: 59px;
    width: 100%;
    margin-bottom: 70px;
  }
  #fullpage .como-pedir .wrapper .sub-wrapper .titulo .interro {
    font-size: 24px;
  }
  #fullpage .como-pedir .wrapper .sub-wrapper .titulo .tri-rojo {
    width: 35px;
    height: 30px;
    position: absolute;
    background-image: url(../img/triangulo-rojo.png);
    bottom: -33px;
    left: 50%;
    margin-left: -17.5px;
  }
  #fullpage .zonas {
    background-image: url(../img/fondo-zonas.png);
    background-size: cover;
    background-position: 0px 0px;
    height: auto !important;
    padding-bottom: 30px;
    padding-top: 30px;
  }
  #fullpage .zonas .wrapper {
    width: 100%;
    height: 100%;
    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: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  #fullpage .zonas .wrapper .sub-wrapper {
    padding-top: 75px;
    width: 90%;
    height: auto;
    max-width: 1100px;
    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-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  #fullpage .zonas .wrapper .sub-wrapper .titulo {
    -webkit-transform: rotate(-2deg);
        -ms-transform: rotate(-2deg);
            transform: rotate(-2deg);
    position: relative;
    margin: 0;
    padding: 0;
    text-align: center;
    background-image: url(../img/lazo-amarillo.png);
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center;
    height: 59px;
    width: 100%;
    margin-bottom: 30px;
  }
  #fullpage .zonas .wrapper .sub-wrapper .titulo h2 {
    position: relative;
    display: inline-block;
    font-weight: normal;
    color: #c32821;
    font-family: bombardier;
    font-size: 30px;
    width: 230px;
    margin: 0;
    padding: 0;
    margin-top: 16px;
  }
  #fullpage .zonas .wrapper .sub-wrapper .titulo h2 .icon-ub {
    display: none;
  }
  #fullpage .zonas .wrapper .sub-wrapper .titulo h2 .icon-ub2 {
    display: none;
  }
  #fullpage .zonas .wrapper .sub-wrapper .titulo .tri-rojo {
    width: 35px;
    height: 30px;
    position: absolute;
    background-image: url(../img/triangulo-amarillo.png);
    bottom: -33px;
    left: 50%;
    margin-left: -17.5px;
  }
  #fullpage .zonas .wrapper .sub-wrapper .distritos {
    width: 100%;
    height: auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  #fullpage .zonas .wrapper .sub-wrapper .distritos p {
    color: #fff;
    font-family: helvetica;
    font-size: 17px;
  }
  #fullpage .zonas .wrapper .sub-wrapper .distritos ul {
    display: none;
  }
  #fullpage .zonas .wrapper .sub-wrapper .distritos .dis-mov {
    width: 100%;
    height: auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  #fullpage .zonas .wrapper .sub-wrapper .distritos .dis-mov .dis {
    width: 32%;
    height: auto;
    background-color: #efa01a;
    margin-bottom: 10px;
    padding: 5px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  #fullpage .zonas .wrapper .sub-wrapper .distritos .dis-mov .dis img {
    width: 100%;
    max-width: 100%;
  }
  #fullpage .zonas .wrapper .sub-wrapper .distritos .dis-mov .dis p {
    margin: 0;
    padding: 0;
    font-family: bombardier;
    color: #c32821;
    text-align: center;
    font-size: 20px;
  }
  #fullpage .zonas .wrapper .sub-wrapper .mapa {
    display: none;
  }
  #fullpage .contactos {
    padding-top: 30px;
  }
  #fullpage .contactos .wrapp .formulario p {
    background-size: 100%;
  }
  #fullpage .contactos .wrapp .contact h2 {
    font-size: 22px;
  }
  #fullpage .contactos footer .legal {
    font-size: 14px;
    letter-spacing: 0px;
  }
}
@media (max-width: 370px) {
  .contactos .wrapp .formulario p {
    background-size: 100%;
  }
}
