@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;900&display=swap");
@font-face {
  font-family: "BrushUp";
  src: url("../font/BrushUp.woff2") format("woff2"), url("../font/BrushUp.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

.brush {
  font-family: BrushUp;
  font-size: clamp(2.8em, 2.5vw, 3.8em);
}

html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 16px;
}

*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ol,
ul {
  margin: 0;
  padding: 0;
  font-weight: normal;
}

h1,
h2,
h3 {
  font-weight: 900;
  margin: 0.7em 0;
}

ol,
ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

.bullets li {
  position: relative;
  padding: 0 0 0.7em;
}

.bullets li::before {
  content: "";
  width: 20px;
  height: 20px;
  position: absolute;
  top: 0em;
  left: -27px;
  background: url(../img/bullets.png) no-repeat;
  background-size: cover;
}

body {
  font-family: Montserrat;
  position: relative;
  font-size: calc(100% + 0.1vw);
  color: #777777;
}

a {
  color: #033f8b;
  text-decoration: none;
}

p {
  line-height: 1.6em;
  margin-bottom: 1em;
}

.nocel {
  display: block;
}

.cel {
  display: none;
}

@media (max-width: 479px) {
  .nocel {
    display: none;
  }
  .cel {
    display: block;
  }
}

section {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[12];
      grid-template-columns: repeat(12, 1fr);
  overflow: hidden !important;
}

@media (max-width: 479px) {
  section {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

@media (min-width: 1600px) {
  section {
    max-width: 1920px;
    margin: 0 auto;
  }
}

.minmax {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(250px, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  -ms-grid-columns: (minmax(max-content, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(-webkit-max-content, 1fr));
      grid-template-columns: repeat(auto-fit, minmax(max-content, 1fr));
}

.menu-toggle {
  position: fixed;
  z-index: 999;
  display: none;
  right: 4vh;
  top: 4vh;
  z-index: 520;
  width: 30px;
  height: 22px;
  background: transparent;
  border-top: 4px solid;
  border-left: 1px solid transparent;
  border-right: 1px solid transparent;
  border-bottom: 4px solid;
  color: #033f8b;
  font-size: 0;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

@media (max-width: 479px) {
  .menu-toggle {
    display: block;
  }
}

.menu-toggle:before,
.menu-toggle:after {
  content: "";
  display: block;
  width: 100%;
  height: 4px;
  position: absolute;
  top: 50%;
  left: 50%;
  background: currentColor;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: -webkit-transform 0.25s ease-in-out;
  transition: -webkit-transform 0.25s ease-in-out;
  transition: transform 0.25s ease-in-out;
  transition: transform 0.25s ease-in-out, -webkit-transform 0.25s ease-in-out;
}

button.is-active {
  border-color: transparent;
  border-left: none;
}

button.is-active:before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}

button.is-active:after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
}

button {
  border: none;
  cursor: pointer;
  outline: none;
  vertical-align: middle;
}

.anima {
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

@-webkit-keyframes menuAbierto {
  100% {
    width: 100%;
    height: 100vh;
  }
  30% {
    width: 100%;
    height: 8vh;
  }
}

@keyframes menuAbierto {
  100% {
    width: 100%;
    height: 100vh;
  }
  30% {
    width: 100%;
    height: 8vh;
  }
}

@-webkit-keyframes menuCerrado {
  100% {
    width: 100%;
    height: 100vh;
  }
}

@keyframes menuCerrado {
  100% {
    width: 100%;
    height: 100vh;
  }
}

.menuFullAbierto {
  -webkit-animation: menuAbierto 1.2s ease forwards;
          animation: menuAbierto 1.2s ease forwards;
}

.desanimaMenu {
  animation: menuCerrado 1s ease forwards reverse;
}

#mainNav {
  position: fixed;
  top: 0;
  z-index: 90;
  width: 100%;
}

#mainNav,
#footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0.7em;
  background-color: #fff;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 479px) {
  #mainNav,
  #footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

#mainNav ul,
#footer ul {
  display: inherit;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (max-width: 479px) {
  #mainNav ul,
  #footer ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
    padding: 2em 0;
  }
}

#mainNav ul li,
#footer ul li {
  padding: 0.1em 1em;
}

#mainNav .mainLogo,
#footer .mainLogo {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.5em 1em;
}

@media (min-width: 767px) and (max-width: 1023px) {
  #mainNav .mainLogo,
  #footer .mainLogo {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 auto;
            flex: 1 0 auto;
    width: 150px;
    height: auto;
  }
}

#mainNav .anchor,
#footer .anchor {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (min-width: 767px) and (max-width: 1023px) {
  #mainNav .anchor,
  #footer .anchor {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    font-size: 0.8em;
  }
}

#mainNav .anchor li,
#footer .anchor li {
  padding: 0 0.6em;
}

.social {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

@media (min-width: 767px) and (max-width: 1023px) {
  .social {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
  }
  .social li {
    padding: 0.3em !important;
  }
}

@media (max-width: 479px) {
  .social {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }
}

.social img {
  width: 1.4em;
}

@media (max-width: 479px) {
  #mainNav {
    overflow-y: hidden;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    height: 5em;
  }
  #mainNav .anchor {
    -ms-grid-column-align: center;
        justify-self: center;
  }
  #mainNav .anchor li {
    border-bottom: solid 1px #ff4646;
    border-right: none;
    padding: 1em 0;
  }
  #mainNav .social img {
    width: 2.5em;
  }
  .mainMenuAbierto {
    height: 100vh;
  }
}

@media (max-width: 479px) {
  #footer .mainLogo {
    margin-top: 2em;
  }
  #footer .anchor {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  #footer .anchor li:first-child {
    font-size: 0.9em;
    border-right: none;
    width: 100%;
    padding: 3em 2em;
  }
}

@media (max-width: 479px) and (max-width: 479px) {
  #footer .anchor li {
    font-size: 0.8em;
    -webkit-box-flex: 1;
        -ms-flex: 1 0 auto;
            flex: 1 0 auto;
  }
}

@media (max-width: 479px) {
  #footer .social {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 auto;
            flex: 1 0 auto;
  }
  #footer .social img {
    width: 2.5em;
  }
}

.active {
  font-weight: bold;
}

.slide img {
  width: 100%;
  height: auto;
}

#sores h2 {
  color: #033f8b;
}

@media (max-width: 479px) {
  #sores h2 {
    text-align: center;
  }
}

#sores .imagenSores {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
  -ms-grid-column: 1;
  -ms-grid-column-span: 7;
  grid-column: 1 / span 7;
  background: #ffcc16;
  background: -webkit-gradient(linear, left bottom, left top, from(#ffcc16), color-stop(60%, #ffcc16), color-stop(60%, white));
  background: linear-gradient(0deg, #ffcc16 0%, #ffcc16 60%, white 60%);
}

@media (max-width: 479px) {
  #sores .imagenSores {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

#sores .imagenSores img {
  -o-object-fit: contain;
     object-fit: contain;
  -ms-flex-item-align: end;
      align-self: flex-end;
}

#sores .coldsores {
  grid-column: 8/ -1;
  padding: 15%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#sympthoms {
  margin-top: -2em;
  -ms-grid-rows: 15vh 1fr 15vh;
      grid-template-rows: 15vh 1fr 15vh;
}

@media (max-width: 479px) {
  #sympthoms {
    margin-top: 0em;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

#sympthoms #bocas {
  -ms-grid-column: 1;
  -ms-grid-column-span: 7;
  grid-column: 1 / span 7;
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  grid-row: 2 / span 1;
  background: #033f8b;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#sympthoms #bocas ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 90%;
}

@media (min-width: 1600px) {
  #sympthoms #bocas ul {
    width: 70%;
  }
}

#sympthoms #bocas ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 33%;
          flex: 1 1 33%;
  padding: 1em;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
}

#sympthoms #bocas ul li:last-child {
  padding-bottom: 3em;
}

@media (max-width: 479px) {
  #sympthoms #bocas ul li {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
}

#sympthoms #bocas ul li img {
  -o-object-fit: contain;
     object-fit: contain;
  padding: 1em 0;
}

#sympthoms #bocas h2 {
  color: #ffcc16;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
  text-align: right;
}

@media (max-width: 479px) {
  #sympthoms #bocas h2 {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    text-align: center;
    padding-top: 1em;
  }
}

#sympthoms #bocas p {
  color: #9cf3d1;
}

#sympthoms #imageSym {
  grid-column: 6/-1;
  grid-row: 1/ -1;
}

#causes {
  padding-top: 10%;
}

#causes h2 {
  grid-column: 1/-1;
  color: #033f8b;
  text-align: center;
}

#causes #causesLi {
  background-color: #ffcc16;
  -ms-grid-column: 3;
  -ms-grid-column-span: 8;
  grid-column: 3 / span 8;
  padding: 4em 4em 20vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  color: #033f8b;
  height: auto;
}

@media (max-width: 479px) {
  #causes #causesLi {
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1 / span 1;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-left: 15%;
    margin-right: 15%;
  }
}

#causes #imageCauses {
  transform: translateY(-19vh);
  -webkit-transform: translateY(-19vh);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  grid-column: 1/ -1;
  background: #ffcc16;
  background: -webkit-gradient(linear, left bottom, left top, from(#ff4646), color-stop(80%, #ff4646), color-stop(80%, transparent));
  background: linear-gradient(0deg, #ff4646 0%, #ff4646 80%, transparent 80%);
}

@media (max-width: 479px) {
  #causes #imageCauses {
    grid-column: 1/-1;
  }
}

#causes #imageCauses img {
  -o-object-fit: contain;
     object-fit: contain;
}

#quote {
  grid-column: 1/-1;
  background: url(../img/mundo.png), url(../img/skyline.jpg);
  background-repeat: no-repeat;
  background-position: center center, center center;
  background-size: 30vh, cover;
  height: 50vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  transform: translateY(-12vh);
  -webkit-transform: translateY(-12vh);
  margin-bottom: -7vh;
}

#quote blockquote {
  grid-column: 1/-1;
  text-align: center;
  font-weight: bold;
  color: #033f8b;
  font-size: 2em;
  padding: 0 clamp(3em, 2vw, 5em);
}

@media (max-width: 479px) {
  #quote blockquote {
    padding: 0 2em;
    font-size: 1.5em;
  }
}

#prevent {
  grid-column: 1/-1;
}

#prevent #preventImg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-items: center;
  -ms-grid-column: 1;
  -ms-grid-column-span: 5;
  grid-column: 1 / span 5;
}

#prevent #preventImg img {
  -o-object-fit: contain;
     object-fit: contain;
}

@media (min-width: 1600px) {
  #prevent #preventImg img {
    margin: 3em 0;
  }
}

#prevent #infoPreve {
  padding: 2em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-column: 6/-1;
  background-color: #033f8b;
  color: #9cf3d1;
}

#prevent #infoPreve .bandeja {
  width: 80%;
}

#prevent #infoPreve h2 {
  color: #ffcc16;
  font-size: 2.4em;
}

@media (max-width: 479px) {
  #prevent #infoPreve h2 {
    font-size: 2em;
    text-align: center;
  }
}

#prevent #infoPreve li {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 12% 1fr;
      grid-template-columns: 12% 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 0em;
}

@media (max-width: 479px) {
  #prevent #infoPreve li {
    -ms-grid-columns: 20% 1fr;
        grid-template-columns: 20% 1fr;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  #prevent #infoPreve li img {
    padding-top: 1.8em;
  }
}

#prevent #infoPreve li p {
  padding: 1em;
}

#keep {
  -ms-grid-rows: 1fr;
      grid-template-rows: 1fr;
}

@media (max-width: 479px) {
  #keep {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

#keep #keeptxt {
  color: #033f8b;
  -ms-grid-column: 1;
  -ms-grid-column-span: 7;
  grid-column: 1 / span 7;
  grid-row: 1/-1;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  -ms-grid-column-align: center;
      justify-self: center;
}

@media (max-width: 479px) {
  #keep #keeptxt {
    padding: 2em;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

#keep #keeptxt p {
  font-size: 1.3em;
  margin-bottom: 0em !important;
}

@media (max-width: 479px) {
  #keep #keeptxt p {
    font-size: 1.7em;
  }
}

#keep #keeptxt h2 {
  font-weight: 900;
  font-size: clamp(3em, 2.5vw, 5em);
  margin: 0em;
}

@media (max-width: 479px) {
  #keep #keeptxt h2 {
    font-size: 2.3em;
  }
}

#keep #keeptxt h3 {
  font-weight: bold;
  margin: 0em 0 1.5em;
}

@media (max-width: 479px) {
  #keep #keeptxt h3 {
    font-size: 1.7em;
  }
}

#keep #keeptxt img {
  -o-object-fit: cover;
     object-fit: cover;
  max-width: 320px;
}

@media (min-width: 1600px) {
  #keep #keeptxt img {
    max-width: none;
  }
}

#keep #keepImg {
  grid-column: 5/-1;
  grid-row: 1/-1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #033f8b;
  background: -webkit-gradient(linear, left bottom, left top, from(#033f8b), color-stop(20%, #033f8b), color-stop(20%, white));
  background: linear-gradient(0deg, #033f8b 0%, #033f8b 20%, white 20%);
}

@media (max-width: 479px) {
  #keep #keepImg {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

#keep #keepImg img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 70%;
  height: auto;
  max-width: 450px;
  margin-top: 10%;
}

@media (min-width: 1600px) {
  #keep #keepImg img {
    max-width: none;
  }
}

#howWorks {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[12];
      grid-template-columns: repeat(12, 1fr);
  background: #d1f9e9;
  background: radial-gradient(circle, #ffa912 0%, #ffc923 100%);
}

@media (max-width: 479px) {
  #howWorks {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

@media (min-width: 1600px) {
  #howWorks {
    max-width: 1920px;
    margin: 0 auto;
  }
}

@media (max-width: 479px) {
  #howWorks {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

#howWorks img {
  -ms-grid-column: 1;
  -ms-grid-column-span: 6;
  grid-column: 1 / span 6;
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  grid-row: 1 / span 1;
}

@media (max-width: 479px) {
  #howWorks img {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    padding-top: 0;
  }
}

#howWorks .bandeja {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 2em;
  color: #033f8b;
  grid-column: 5/-1;
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  grid-row: 1 / span 1;
}

@media (max-width: 479px) {
  #howWorks .bandeja {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

#howWorks .bandeja h2 {
  font-size: 2.4em;
}

@media (max-width: 479px) {
  #howWorks .bandeja h2 {
    text-align: center !important;
    font-size: 2em;
  }
}

#howWorks li {
  font-weight: bold;
  padding-bottom: 1em;
  margin-left: 26px;
}

@media (max-width: 479px) {
  #producto {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

#producto .produ {
  -ms-grid-column: 1;
  -ms-grid-column-span: 6;
  grid-column: 1 / span 6;
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  grid-row: 1 / span 1;
  padding: 20%;
}

@media (max-width: 479px) {
  #producto .produ {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    padding-top: 0;
  }
}

#producto .bandeja {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 2em;
  color: #033f8b;
  grid-column: 5/-1;
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  grid-row: 1 / span 1;
}

#producto .bandeja li{
    margin:10px;
}

@media (max-width: 479px) {
  #producto .bandeja {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

#producto .bandeja h2 {
  font-size: 2.4em;
}

@media (max-width: 479px) {
  #producto .bandeja h2 {
    text-align: center !important;
    font-size: 2em;
  }
}

#producto ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media (max-width: 479px) {
  #producto ul li {
    padding-top: 1em;
    text-align: center;
    -webkit-box-flex: 1;
        -ms-flex: 1 0 100%;
            flex: 1 0 100%;
  }
}

#locator {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#locator .bandeja {
  width: 75%;
}

#locator #stores {
  padding: 2em;
  -ms-grid-column: 1;
  -ms-grid-column-span: 5;
  grid-column: 1/span 5;
  background-color: #033f8b;
  font-size: 0.8em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#locator #stores h2 {
  color: #9cf3d1;
  font-size: 2.6em;
}

@media (max-width: 479px) {
  #locator #stores h2 {
    font-size: 2em;
    text-align: center;
  }
}

#locator #stores h3 {
  color: #ffcc16;
}

#locator #stores p {
  color: #fff;
  border-bottom: solid 1px #ffcc16;
  padding-bottom: 1em;
}

#locator #stores .ulBandeja {
  margin-top: 2em;
  max-height: 300px;
  min-height:300px;
  overflow-X: hidden;
}

#locator #stores #holderinputUi {
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#locator .map {
  background-color: #777777;
  grid-column: 6/-1;
  height: 100%;
}

@media (max-width: 479px) {
  #locator .map {
    grid-column: 1/-1;
    height: 60vh;
  }
}

form {
  width: 100%;
  display: flex;
  flex-direction: row;
}
input {
  border: none;
  padding: 0.8em;
  width: 100%;
  margin: 0;
}

input::-webkit-input-placeholder {
  font-weight: bold;
  text-align: center;
  color: #033f8b;
}

input:-ms-input-placeholder {
  font-weight: bold;
  text-align: center;
  color: #033f8b;
}

input::-ms-input-placeholder {
  font-weight: bold;
  text-align: center;
  color: #033f8b;
}

input::placeholder {
  font-weight: bold;
  text-align: center;
  color: #033f8b;
}

button {
  color: #fff;
  background-color: #ff4646;
  margin: 0;
  font-size: 2.5em;
}
/*# sourceMappingURL=style.css.map */