@import url("//fonts.googleapis.com/css2?family=Bebas+Neue&family=Montserrat:wght@400;500;600;700;800&display=swap");
html, body, p, ul, ol, img, a, h1, h2, h3, h4, h5, fieldset, table {
  margin: 0;
  padding: 0;
}

*:focus {
  outline: none;
}

ul, ol {
  list-style: none;
}

a {
  outline: none;
  text-decoration: none;
}

img, fieldset {
  border: none;
}

input[type=text], input[type=tel], input[type=submit], button, select {
  -webkit-appearance: none;
  border-radius: 0;
}

input[type=checkbox],
button {
  cursor: pointer;
}

html {
  min-height: 100%;
}

body {
  min-height: 100%;
  font-family: "Montserrat", sans-serif;
  font-size: 10px;
  font-size: calc(6px + 4 * (100vw - 320px) / 1600);
  color: #000;
  text-align: left;
  background: #f7f4ec;
}

.centrado {
  box-sizing: border-box;
  max-width: 1920px;
  padding: 0 3.2%;
  margin: 0 auto;
}

.wrapper {
  position: relative;
  overflow: hidden;
}

section {
  position: relative;
  min-height: 80vh;
  margin: 0 0 10em;
}

.bloque_texto {
  max-width: 120em;
  padding-bottom: 3em;
}
.bloque_texto.parrafo1 {
  padding-top: 10em;
}
.bloque_texto p {
  font-size: 2.4em;
  margin: 0 0 1em;
}

.inicio {
  box-sizing: border-box;
  position: relative;
  min-height: 100vh;
  color: #FFF;
  padding: 3.2% 0 18em;
  background: url(../img/pral.jpg) no-repeat center top;
  background-size: cover;
}
.inicio.v1 {
  background: url(../img/img_portada_1.jpg) no-repeat center top;
  background-size: cover;
}
.inicio.v2 {
  background: url(../img/img_portada_2.jpg) no-repeat center top;
  background-size: cover;
}
.inicio .bloque_texto {
  max-width: 106em;
  margin: auto 0;
  transform: translateY(5em);
  opacity: 0;
  transition: transform 0.8s 0.2s ease-in-out, opacity 0.8s 0.2s ease-in-out;
}
.loaded .inicio .bloque_texto {
  transform: translateY(0);
  opacity: 1;
}
.inicio .bloque_texto p {
  font-size: 2em;
}
.inicio .form-content {
  transform: translateX(100%);
  opacity: 0;
  transition: transform 0.8s 0.4s ease-in-out, opacity 0.8s 0.4s ease-in-out;
}
.loaded .inicio .form-content {
  transform: translateX(0);
  opacity: 1;
}
.inicio .contenido > .centrado {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 78vh;
}
.inicio .contenido .logo {
  width: 28%;
  max-width: 18.6em;
  min-width: 10em;
  margin: 0 0 5em;
  transform: translateY(5em);
  opacity: 0;
  transition: transform 0.8s ease-in-out, opacity 0.8s ease-in-out;
}
.loaded .inicio .contenido .logo {
  transform: translateY(0);
  opacity: 1;
}
.inicio .contenido .logo a {
  display: block;
}
.inicio .contenido .logo img {
  display: block;
  width: 100%;
}

.exclusivo {
  position: absolute;
  bottom: 4em;
  left: auto;
  width: 100%;
  font-size: 3.6em;
  font-weight: 400;
  font-family: "Bebas Neue", cursive;
  color: #FFF;
  transform: translateY(2em);
  opacity: 0;
  transition: transform 0.8s 0.3s ease-in-out, opacity 0.8s 0.3s ease-in-out;
}
.loaded .exclusivo {
  transform: translateY(0);
  opacity: 1;
}
.exclusivo a {
  color: #FFF;
  text-decoration: underline;
}

.cabecera {
  position: absolute;
  bottom: 6em;
  left: 0;
  right: 0;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.8s 0.4s ease-in-out, opacity 0.8s 0.4s ease-in-out;
}
.loaded .cabecera {
  transform: translateX(0);
  opacity: 1;
}
.cabecera .logo {
  display: none;
  position: absolute;
  top: 1em;
  left: auto;
  width: 10.2em;
}
.cabecera .logo a {
  display: block;
}
.cabecera .logo img {
  display: block;
  width: 100%;
}

nav {
  display: block;
  font-family: "Bebas Neue", cursive;
  border-bottom: 1px solid #FFF;
}
nav ul {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 1em 0;
}
nav li {
  display: block;
  margin: 0 3% 0 0;
}
nav a {
  display: block;
  color: #FFF;
  font-weight: 400;
  text-transform: uppercase;
  padding: 0.7em 0 0.5em;
  font-size: 2.4em;
  letter-spacing: 0.05em;
  line-height: 1;
  white-space: nowrap;
}
.no-touch nav a:hover {
  text-decoration: underline;
}
nav a:hover {
  text-decoration: underline;
}
nav .instagram a {
  display: block;
  width: 0.9em;
  height: 0.9em;
  text-indent: -9999px;
  padding: 0;
  background: url(../img/instagram.svg) no-repeat center;
  background-size: contain;
}

.menu-fijo-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #395775;
  z-index: 100;
  transform: translateY(-101%);
  transition: transform 0.2s ease-in-out;
}
.menu-fijo .menu-fijo-wrapper {
  transform: translateY(0);
  transition: transform 1s ease-in-out;
}
.menu-fijo-wrapper .logo {
  display: block;
  transform: translateY(5em);
  opacity: 0;
  transition: opacity 0.2s, transform 0.2s;
}
.menu-fijo .menu-fijo-wrapper .logo {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s, transform 0.8s;
}
.menu-fijo-wrapper .cabecera {
  position: static;
}
.menu-fijo-wrapper .cabecera .exclusivo {
  display: none;
}
.menu-fijo-wrapper nav {
  border: none;
}
.menu-fijo-wrapper nav ul {
  justify-content: center;
}
.menu-fijo-wrapper nav li {
  display: block;
  margin: 0 1.5% 0;
  transform: translateY(-5em);
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
}
.menu-fijo .menu-fijo-wrapper nav li {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s 0.1s ease-in-out, transform 0.8s 0.1s ease-in-out;
}
.menu-fijo .menu-fijo-wrapper nav li:nth-child(2) {
  transition-delay: 0.2s;
}
.menu-fijo .menu-fijo-wrapper nav li:nth-child(3) {
  transition-delay: 0.3s;
}
.menu-fijo .menu-fijo-wrapper nav li:nth-child(4) {
  transition-delay: 0.4s;
}
.menu-fijo .menu-fijo-wrapper nav li:nth-child(5) {
  transition-delay: 0.5s;
}
.menu-fijo .menu-fijo-wrapper nav li:nth-child(6) {
  transition-delay: 0.6s;
}
.menu-fijo .menu-fijo-wrapper nav li:nth-child(7) {
  transition-delay: 0.7s;
}

.boton_menu {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 200;
}
.boton_menu a {
  display: block;
  padding: 1.8em 2.5em;
}
.boton_menu .icon {
  position: relative;
  width: 4.5em;
  height: 2.1em;
  text-indent: -9999px;
}
.boton_menu .icon span {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  height: 0.3em;
  background: #FFF;
  transform: translateX(-50%);
  opacity: 1;
  transition: 0.2s ease-in-out;
}
.boton_menu .icon span:nth-of-type(2),
.boton_menu .icon span:nth-of-type(3) {
  top: 0.9em;
  transform-origin: left;
  transition: transform 0.4s ease-in-out, background 0.2s ease-in-out, width 0.4s ease-in-out;
  transform: rotate(0deg) translateX(-50%);
}
.boton_menu .icon span:nth-of-type(4) {
  top: auto;
  bottom: 0;
}
.menu-activo .boton_menu .icon span:nth-of-type(1) {
  top: 50%;
  margin: -0.2em 0 0;
  opacity: 0;
}
.menu-activo .boton_menu .icon span:nth-of-type(4) {
  bottom: 50%;
  margin: -0.2em 0 0;
  opacity: 0;
}
.menu-activo .boton_menu .icon span:nth-of-type(2) {
  width: 66%;
  transform: rotate(135deg) translateX(-50%);
}
.menu-activo .boton_menu .icon span:nth-of-type(3) {
  width: 66%;
  transform: rotate(-135deg) translateX(-50%);
}
.boton_menu.cerrar_menu {
  position: fixed;
  top: 15em;
  right: 0;
  width: 0;
  height: 0;
  text-align: left;
  text-indent: -9999px;
  z-index: 1;
  background: #000;
  opacity: 0;
  transition: opacity 0.3s linear 0.3s, width 0s linear 0.5s, height 0s linear 0.5s, top 1s linear 0.4s;
}
.scrolled .boton_menu.cerrar_menu {
  top: 9em;
}
.menu-activo .boton_menu.cerrar_menu {
  width: 100%;
  height: 1080px;
  height: 100vh;
  opacity: 0.4;
  transition: opacity 0.4s, top 0.4s;
  transition-delay: 0s;
}

h1,
h2,
h3 {
  font-family: "Bebas Neue", cursive;
  font-size: 8.5em;
  line-height: 1.1;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 0.2em;
}
h1 strong,
h2 strong,
h3 strong {
  font-weight: 400;
}

p {
  font-size: 1.6em;
  line-height: 1.5;
}

.form {
  position: absolute;
  bottom: 11em;
  right: 0;
}

.form-column {
  position: absolute;
  right: 0;
  bottom: 0;
  transform: translateZ(0);
}

.form-content {
  box-sizing: border-box;
  width: 496px;
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  right: 0;
  bottom: 0;
  font-size: 16px;
  padding: 24px 48px 32px;
  opacity: 1;
  transition: all 0.5s;
}
.form-content.destino {
  left: unset !important;
  right: -600px !important;
  top: 0;
  opacity: 0.1;
}
.form-content a {
  color: #FFF;
  text-decoration: underline;
}

.input-filled .form-content {
  padding: 24px 48px 24px;
}
.input-filled .email-field {
  margin-top: 13px;
}
.input-filled .field-placeholder {
  transform: translate3d(0, -20px, 0);
  font-size: 15px;
}
.input-filled .form-group-legal {
  height: 22px;
  margin: 16px 0 0;
}

.form-label {
  margin: 0;
  line-height: 24px;
  font-weight: 700;
}

.form-text {
  margin: 0;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-size: 13.8198px;
  line-height: 15px;
  color: #FFFFFF;
  margin-bottom: 40px;
}
.form-text span {
  font-weight: 600;
  display: block;
}

.field-border {
  height: 1px;
  width: 100%;
  background: #D9D9D9;
}

.email-error .field-border {
  background: #C30B38;
  background: #fff;
}

.form-group {
  margin: 17px 0 13px;
  position: relative;
}

.email-field {
  border: 0 none;
  height: 20px;
  width: 320px;
  transition: margin 0.4s;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  text-transform: lowercase;
  background: transparent;
  color: #fff;
  margin-bottom: -1px;
}
.email-field:focus {
  margin-top: 13px;
}
.email-field:focus + .field-placeholder {
  transform: translate3d(0, -16px, 0);
  font-size: 12px;
}

.field-placeholder {
  width: 100%;
  bottom: 1px;
  position: absolute;
  pointer-events: none;
  text-align: left;
  color: #D9D9D9;
  display: block;
  font-size: 14px;
  transform-origin: 0 0;
  transition: transform 0.4s, font-size 0.4s;
  backface-visibility: hidden;
  -webkit-font-smoothing: subpixel-antialiased;
  backface-visibility: hidden;
  font-family: "Bebas Neue", cursive;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
}

.button-submit {
  border: 0 none;
  background: url(../img/avion.svg) no-repeat top left;
  background-size: contain;
  text-indent: -9999px;
  white-space: nowrap;
  overflow: hidden;
  position: absolute;
  bottom: -5px;
  right: 12px;
  height: 24.8651809692px;
  width: 28.4626655579px;
  opacity: 1;
  transition: all 0.5s;
}
.button-submit.destino {
  bottom: 65px;
  right: -37px;
  opacity: 0.1;
  opacity: 0;
}
.button-submit:disabled {
  cursor: default;
}

.form-group-legal {
  font-size: 14px;
  margin: 0;
  line-height: 20px;
  overflow: hidden;
  height: 0;
  transition: height 0.4s, margin 0.4s;
}

.legal-label {
  display: inline-block;
  vertical-align: middle;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  color: #FFFFFF;
}

.legal-checkbox {
  display: inline-block;
  vertical-align: middle;
  -webkit-appearance: none;
  color: #000;
  border-radius: 0;
  border: 1px solid #D9D9D9;
  width: 13px;
  height: 13px;
  margin: 0px 3px 0 0;
  position: relative;
  background: #D9D9D9;
}
.legal-checkbox:checked:before {
  content: url(../img/check.svg);
  /* font-size: 12px; */
  position: absolute;
  top: 0px;
  left: -1px;
  /* width: 10px; */
  /* height: 10px; */
  line-height: 0;
  text-align: center;
}

.hidden {
  display: none;
}

label.error {
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 10.7352px;
  line-height: 12px;
  text-decoration-line: underline;
  color: #ABABAB;
  transform: rotate(0.3deg);
}

.form-submitted .field-border {
  background: #E7E7E7;
  height: 4px;
  position: relative;
}
.form-submitted .progress {
  position: absolute;
  background: #869491;
  left: 0;
  right: 100%;
  height: 4px;
  animation: progress-loop 0.6s forwards;
  animation-timing-function: ease-out;
  -webkit-animation: progress-loop 0.6s forwards;
}
@keyframes progress-loop {
  0% {
    right: 100%;
    left: 0;
  }
  100% {
    left: 0;
    right: 0;
  }
}
.form-submitted .block {
  display: block;
}

.fields-group {
  position: relative;
}

.block {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: url(../img/trans.png) repeat;
  display: none;
}

.textos_legales {
  font-size: 16px;
  padding-bottom: 40px;
}
.textos_legales .centrado {
  text-align: center;
}
.textos_legales .ottoanyo {
  margin-bottom: 5px;
}
.textos_legales a {
  color: #000;
  text-decoration: underline;
}

#aviso_cookies {
  display: none;
  color: #2d2a27;
  font-size: 16px;
  text-align: center;
  background: rgba(255, 255, 255, 0.9);
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2000;
  line-height: 1.56;
}
#aviso_cookies .titular {
  color: #000000;
  font-size: 30px;
  font-weight: 400;
}
#aviso_cookies .btn {
  margin: 30px auto;
  width: 198px;
  font-size: 18px;
  font-weight: 500;
  line-height: normal;
  background: #2d2a27;
  color: #fff;
  display: inline-block;
  padding: 12px 0 10px;
  text-align: center;
  border: 0 none;
  text-transform: uppercase;
  text-decoration: none;
}
#aviso_cookies .btn-text-highlight {
  font-size: 18px;
  font-family: "Bebas Neue", cursive;
}
#aviso_cookies .centrado {
  box-sizing: content-box;
  max-width: 850px;
  padding: 45px 20px;
  margin: 0 auto;
}
#aviso_cookies .close {
  position: absolute;
  top: 0;
  right: 0;
  width: 14px;
  height: 14px;
  color: #606060;
  font-size: 10px;
  line-height: 1;
  font-weight: 700;
  text-decoration: none;
  padding: 5px;
}
#aviso_cookies .cookie-btns a {
  color: #535353;
  font-size: 14px;
  text-decoration: underline;
}
#aviso_cookies p {
  font-size: 16px;
  line-height: 1.56;
  margin: 1em 0;
}

.feedback {
  display: none;
  line-height: 24px;
  padding-left: 80px;
  margin: 20px 0;
  min-height: 56px;
}
.feedback p {
  margin: 0;
}
.feedback p.feedback-text {
  font-size: 14px;
  margin-top: 8px;
}

.feedback-success {
  background: url(../img/tick.svg) no-repeat left center;
}
.feedback-success .feedback-title-1 {
  line-height: 56px;
}

.feedback-error {
  background: url(../img/error.svg) no-repeat left center;
}

.feedback-title {
  font-weight: bold;
  font-size: 19px;
}

.retry-btn {
  color: #83858A;
}

.legal-logo {
  width: 128px;
  height: auto;
  display: block;
}

.legal-wrapper {
  width: 100%;
  max-width: 1240px;
  box-sizing: border-box;
  font-size: 16px;
  margin: 56px auto;
  line-height: 24px;
  color: #000;
}
.legal-wrapper a {
  color: #000;
}
.legal-wrapper table {
  width: 100%;
  font-size: 11px;
}
.legal-wrapper table td {
  vertical-align: top;
  border-top: 1px solid #000000;
}
.legal-wrapper table th {
  vertical-align: top;
  border-top: 1px solid #000000;
}

.legal-content {
  margin: 0 15px;
}

.legal-title {
  margin: 64px 0 44px;
  font-weight: normal;
}

.boton {
  display: flex;
}
.boton span,
.boton a {
  display: block;
  font-family: "Bebas Neue", cursive;
  font-size: 2.8em;
  letter-spacing: 0.03em;
  line-height: 1;
  font-weight: 400;
  color: #000;
  text-transform: uppercase;
  padding: 0.6em 2.4em 0.4em;
  border: 1px solid #000;
}
.no-touch .boton span:hover,
.no-touch .boton a:hover {
  color: #FFF;
  background: #000;
}
.boton span:hover,
.boton a:hover {
  color: #FFF;
  background: #000;
}

.video .bloque_texto {
  margin-bottom: 3em;
}
.video .bloque_texto.aScroll {
  transform: translateY(5em);
  opacity: 0;
  transition: transform 1s ease-in-out, opacity 1s ease-in-out;
}
.video .bloque_texto.show {
  transform: translateY(0);
  opacity: 1;
}
.video .bloque_texto .boton {
  padding-top: 1em;
}
.video video {
  display: block;
  width: 100%;
}
.video video.aScroll {
  transform: translateY(5em);
  opacity: 0;
  transition: transform 1s ease-in-out, opacity 1s ease-in-out;
}
.video video.show {
  transform: translateY(0);
  opacity: 1;
}

.contrato {
  margin-bottom: 25px;
}
.contrato .centrado {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: -1px;
}
.contrato .centrado:before {
  content: "";
  display: block;
  padding-top: 4em;
  border-top: 1px solid #000;
}
.contrato .centrado.sinfranja:before {
  content: "";
  display: none;
}
.contrato .bloque_texto {
  margin-bottom: 3em;
}
.contrato .bloque_texto.aScroll {
  transform: translateY(5em);
  opacity: 0;
  transition: transform 1s ease-in-out, opacity 1s ease-in-out;
}
.contrato .bloque_texto.show {
  transform: translateY(0);
  opacity: 1;
}
.contrato .bloque_texto .boton {
  padding-top: 1em;
}
.contrato video {
  display: block;
  width: 100%;
}
.contrato video.aScroll {
  transform: translateY(5em);
  opacity: 0;
  transition: transform 1s ease-in-out, opacity 1s ease-in-out;
}
.contrato video.show {
  transform: translateY(0);
  opacity: 1;
}
.contrato .contenedor_video img {
  width: 100%;
}
.contrato .columnas {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin-right: -40px;
  margin-left: -20px;
}
.contrato .columnas .col {
  box-sizing: border-box;
  flex-basis: 33%;
  width: 33%;
  padding: 20px;
}
.contrato .columnas .col img {
  width: 100%;
}
.contrato .columnas .col h3 {
  font-family: "Bebas Neue", cursive;
  font-size: 54px;
  text-align: left;
  color: #000;
  text-transform: uppercase;
  margin-top: 16px;
  margin-bottom: 10px;
  font-weight: 500;
}
.contrato .columnas .col p {
  font-family: "Bebas Neue", cursive;
  font-size: 36px;
  text-align: left;
  color: #000;
  text-transform: uppercase;
  margin-bottom: 10px;
  line-height: 36px;
}
.contrato .columnas .col a {
  color: #000;
  font-family: "Bebas Neue", cursive;
  font-size: 28px;
  font-weight: 400;
  text-decoration: none;
  text-transform: uppercase;
  border: 1px solid #000;
  padding: 0.3em 2em;
  margin: 0;
  float: left;
}
.no-touchevents .contrato .columnas .col a:hover {
  color: #FFF;
  background: #000;
}
.contrato .columnas .col a:hover {
  color: #FFF;
  background: #000;
}
.contrato .masclausulas h2 {
  font-family: "Bebas Neue", cursive;
  font-size: 54px;
  text-align: center;
  color: #000;
  text-transform: uppercase;
  margin: 0 auto;
  margin-top: 16px;
  margin-bottom: 10px;
  font-weight: 500;
}

.scrollHorizontal {
  position: relative;
}
.scrollHorizontal.fix-bottom .fix_wrapper {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 10;
}
.scrollHorizontal.show-completed .fix_wrapper {
  position: absolute;
  left: 0;
  top: auto;
  bottom: 0;
  width: 100%;
}
.scrollHorizontal .fix-end {
  position: absolute;
  z-index: 0;
}
.scrollHorizontal .scroll_wrapper {
  position: relative;
  width: 400%;
  overflow: visible;
}
.scrollHorizontal .carrusel {
  padding: 0 0 3%;
  overflow: hidden;
}
.scrollHorizontal .p_content {
  flex-wrap: nowrap;
  justify-content: flex-start;
}
.scrollHorizontal .p_content .product {
  flex: 1;
  max-width: 17.4vw;
  padding: 0 0 0 1.6vw;
}

.popup_NL {
  font-size: 1em;
}
.popup_NL .exclusivo {
  display: none;
}
.popup_NL .form-content {
  font-size: inherit;
}
.popup_NL p {
  font-size: 2em;
  color: #FFF;
  margin-bottom: 1em;
}
.popup_NL .boton a {
  color: #FFF;
  text-decoration: none;
  border-color: #FFF;
}
.no-touch .popup_NL .boton a:hover {
  color: #000;
  background-color: #FFF;
}
.popup_NL .boton a:hover {
  color: #000;
  background-color: #FFF;
}

.coleccion {
  padding: 5.5em 0 3em;
}
.coleccion.aScroll {
  transform: translateY(5em);
  opacity: 0;
  transition: transform 1s ease-in-out, opacity 1s ease-in-out;
}
.coleccion.show {
  transform: translateY(0);
  opacity: 1;
}
.coleccion .bloque_texto.aScroll {
  transform: translateY(5em);
  opacity: 0;
  transition: transform 1s ease-in-out, opacity 1s ease-in-out;
}
.coleccion .bloque_texto.show {
  transform: translateY(0);
  opacity: 1;
}

.productos .fix_wrapper > .centrado {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: calc(100vh - 8.6em);
  margin-bottom: -1px;
}
.productos .fix_wrapper > .centrado:before {
  content: "";
  display: block;
  padding-top: 4em;
  border-top: 1px solid #000;
}
.productos .carrusel {
  position: relative;
  padding: 0;
  margin: 0;
}
.productos .carrusel.aScroll {
  transform: translateY(5em);
  opacity: 0;
  transition: transform 1s ease-in-out, opacity 1s ease-in-out;
}
.productos .carrusel.show {
  transform: translateY(0);
  opacity: 1;
}

.scroll_wrapper {
  position: relative;
  width: 100%;
}

.p_content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.p_content .product {
  flex-basis: 18%;
  padding: 0;
  margin: 0 0 6em;
}
.p_content .product:first-child {
  padding: 0;
}
.p_content .product img {
  display: block;
  width: 100%;
  margin: 0 0 1.2em;
}
.p_content .product a {
  display: block;
  text-decoration: none;
  color: #000;
}
.p_content .product p {
  font-size: 2em;
  line-height: 1.2;
  margin-bottom: 0.4em;
}
.p_content .product .precio {
  font-family: "Bebas Neue", cursive;
  font-size: 2.4em;
  font-weight: 400;
  margin-bottom: 0.6em;
}
.p_content .product .datos {
  min-height: 10em;
}

.manifiesto {
  position: relative;
  background: url(../img/manifesto_bg.jpg) no-repeat center center;
  background-size: cover;
}
.manifiesto.aScroll {
  transform: translateY(5em);
  opacity: 0;
  transition: transform 1s ease-in-out, opacity 1s ease-in-out;
}
.manifiesto.show {
  transform: translateY(0);
  opacity: 1;
}
.manifiesto .icono {
  display: block;
  width: 23.5em;
  margin: 3em 0;
}
.manifiesto h2 {
  margin: 0 0 0.4em;
}
.manifiesto .bloque_contenido {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  min-height: calc(100vh - 10em);
  padding: 4em 1.6vw 1.6vw;
}
.manifiesto .bloque_texto {
  color: #FFF;
  z-index: 10;
}
.manifiesto .bloque_texto.aScroll {
  transform: translateY(5em);
  opacity: 0;
  transition: transform 1s ease-in-out, opacity 1s ease-in-out;
}
.manifiesto .bloque_texto.show {
  transform: translateY(0);
  opacity: 1;
}
.manifiesto .bloque_texto a {
  color: #FFF;
  text-decoration: underline;
  font-weight: 600;
}

.comprar {
  min-height: 0;
}
.comprar.aScroll {
  transform: translateY(5em);
  opacity: 0;
  transition: transform 1s ease-in-out, opacity 1s ease-in-out;
}
.comprar.show {
  transform: translateY(0);
  opacity: 1;
}
.comprar .bloque_contenido {
  display: flex;
  justify-content: space-between;
  position: relative;
}
.comprar .bloque_contenido:after, .comprar .bloque_contenido:before {
  content: "";
  position: absolute;
  top: 4em;
  left: -2em;
  right: -2em;
  border-top: 1px solid #000;
  z-index: 0;
}
.comprar .bloque_contenido:before {
  top: auto;
  bottom: 4em;
}
.comprar .foto {
  display: block;
  max-width: 100%;
}
.comprar .foto.aScroll {
  transform: translateY(5em);
  opacity: 0;
  transition: transform 1s ease-in-out, opacity 1s ease-in-out;
}
.comprar .foto.show {
  transform: translateY(0);
  opacity: 1;
}
.comprar .col {
  position: relative;
  z-index: 1;
}
.comprar .col-1 {
  flex-basis: 30%;
}
.comprar .col-2 {
  flex-basis: 66%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 8em 0 6em;
}
.comprar .bloque_texto {
  max-width: 86em;
  padding-bottom: 0;
}
.comprar .bloque_texto p {
  font-size: 2em;
  font-weight: 500;
}
.comprar .boton {
  justify-content: space-between;
  flex-wrap: wrap;
}
.comprar .boton a {
  white-space: nowrap;
  padding: 0.6em 2em 0.4em;
  margin: 0 0 1em;
}
.comprar .boton a:nth-child(2) {
  padding: 0.6em 1.2em 0.4em;
}

@media screen and (max-width: 1366px) {
  .menu-fijo-wrapper .logo {
    position: static;
    width: 7.8em;
    padding: 0.8em 0;
    transform: translateY(-100%);
  }
  .scrolled .menu-fijo-wrapper .logo, .menu-activo .menu-fijo-wrapper .logo {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s, transform 0.8s;
  }
  .scrolled .menu-fijo-wrapper, .menu-activo .menu-fijo-wrapper {
    transform: translateY(0);
  }
  .form {
    bottom: 4em;
  }
  .inicio {
    padding-bottom: 30em;
  }
  .inicio .contenido > .centrado {
    min-height: 0;
  }
  .boton span,
  .boton a {
    padding: 0.4em 1.5em 0.3em;
  }
  .boton_menu {
    display: block;
  }
  .menu-fijo-wrapper .boton_menu.cerrar_menu {
    top: 5.4em;
  }
  .scrolled .menu-fijo-wrapper .boton_menu.cerrar_menu {
    top: 5.4em;
  }
  .menu-fijo-wrapper nav {
    font-size: 1.2em;
  }
  .menu-fijo-wrapper nav li {
    border-bottom: 1px solid #FFF;
    padding: 0 3.5em;
    opacity: 1;
    transform: translateY(0);
  }
  .contenedor-menus {
    box-sizing: border-box;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 1080px;
    height: 100vh;
    max-width: 0;
    box-shadow: -2px 6px 3px 3px rgba(0, 0, 0, 0);
    -webkit-overflow-scrolling: touch;
    background: rgba(0, 0, 0, 0.7);
    z-index: 90;
    overflow: hidden;
    transition: max-width 0.8s 0.5s, top 0.4s 1s, box-shadow 0.8s 0.5s;
  }
  .scrolled .contenedor-menus {
    top: 5.4em;
    height: calc(100vh - 5.4em);
    transition: max-width 0.8s, top 0.4s, box-shadow 0.8s;
  }
  .menu-activo .contenedor-menus {
    top: 5.4em;
    height: calc(100vh - 5.4em);
    max-width: 400px;
    box-shadow: -2px 6px 3px 3px rgba(0, 0, 0, 0.1);
    transition: max-width 1.2s, top 0.4s, box-shadow 0.8s;
  }
  .contenedor-menus .centrado-vertical {
    position: relative;
    width: 100%;
    height: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
  }
  .contenedor-menus .bloque {
    position: relative;
    box-sizing: border-box;
    min-width: 400px;
    min-height: 100%;
  }
  .contenedor-menus .contenido-menus {
    box-sizing: border-box;
    position: static;
    display: block;
    height: 100%;
    padding: 1em 3% 3em;
    margin: 0;
  }
  .cabecera .menu {
    display: block;
  }
  .cabecera .menu li a {
    padding: 1em 0;
  }
  .inicio .cabecera {
    display: none;
  }
  .p_content .product {
    flex-basis: 23.4%;
  }
  .scrollHorizontal .p_content .product {
    flex: 1;
    max-width: 22.1vw;
    padding: 0 0 0 1.6vw;
  }
  .comprar .col-1 {
    flex-basis: 40%;
  }
  .comprar .col-2 {
    flex-basis: 57%;
  }
  .comprar .boton a {
    box-sizing: border-box;
    min-width: 15em;
  }
  .exclusivo {
    position: static;
  }
  .bloque_texto.parrafo1 {
    padding-top: 40em;
  }
}
@media screen and (max-width: 1300px) {
  .contrato .columnas {
    margin-right: -20px;
    margin-left: -20px;
  }
  .contrato .columnas .col {
    flex-basis: 50%;
    width: 50%;
  }
}
@media screen and (max-width: 1024px) {
  .p_content .product {
    flex-basis: 31%;
  }
  .p_content .p-19,
  .p_content .p-20 {
    display: none;
  }
}
@media screen and (max-width: 979px) {
  .contrato .columnas .col {
    flex-basis: 100%;
    width: 100%;
  }
  .contrato .columnas .col h3 {
    font-size: 48px;
    margin-top: 16px;
    margin-bottom: 10px;
  }
  .contrato .columnas .col p {
    font-size: 36px;
    margin-bottom: 10px;
    line-height: 40px;
  }
  .contrato .columnas .col a {
    font-size: 28px;
  }
}
@media screen and (max-width: 857px) {
  .bloque_texto.parrafo1 {
    padding-top: 60em;
  }
}
@media screen and (max-width: 720px) {
  .desktop {
    display: none;
  }
  section {
    margin-bottom: 9em;
  }
  .boton span,
  .boton a {
    font-size: 2.5em;
    padding: 0.3em 1em 0.2em;
  }
  .scrollHorizontal.show-completed .fix_wrapper {
    position: relative;
    left: auto;
    top: auto;
    bottom: auto;
  }
  .scrollHorizontal .fix-end {
    position: relative;
    z-index: 1;
  }
  .productos .carrusel {
    padding: 0;
    margin: 0;
  }
  .scroll_wrapper {
    width: 100%;
  }
  .p_content {
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .p_content .product {
    flex: 0 0 48.5%;
    width: 48.5%;
    max-width: none;
    padding: 0 0 5%;
    margin: 0 0 2em;
  }
  .p_content .product:first-child {
    padding: 0 0 5%;
  }
  .comprar .bloque_contenido {
    flex-direction: column-reverse;
    padding-bottom: 4em;
  }
  .comprar .bloque_contenido:after, .comprar .bloque_contenido:before {
    top: 0;
    left: 0;
    right: 0;
    bottom: auto;
  }
  .comprar .bloque_contenido:after {
    top: auto;
    bottom: 0;
  }
  .comprar .col-2 {
    flex-basis: auto;
    padding: 4em 0 3em 0;
  }
  .comprar .boton a {
    box-sizing: border-box;
    width: 60%;
    min-width: 220px;
    max-width: 300px;
    text-align: center;
  }
}
@media screen and (max-width: 640px) {
  h1,
  h2,
  h3 {
    font-size: 6.2em;
  }
  .inicio {
    background-position: 38% top;
  }
  .inicio h1 br {
    display: none;
  }
  .inicio .contenido > .centrado {
    display: block;
  }
  .inicio .contenido .logo {
    margin-top: 5em;
  }
  .manifiesto {
    background-position: center left;
  }
  .manifiesto .icono {
    width: 20em;
  }
}
@media (max-width: 496px) {
  .form {
    width: 100%;
    bottom: 4em;
  }
  .form-column {
    box-sizing: border-box;
    left: 1em;
    right: 1em;
  }
  .form-content {
    box-sizing: border-box;
    width: 100%;
  }
  .form-group-legal {
    font-size: 12px;
  }
  .email-field {
    font-size: 12px;
  }
  .field-placeholder {
    font-size: 12px;
  }
  .form-label {
    font-size: 12px;
  }
  .form-text {
    font-size: 12px;
    margin-bottom: 10px;
  }
  .input-filled .form-content {
    padding: 14px 16px 15px;
  }
  .form-content {
    padding: 14px 16px 15px;
  }
  .email-field {
    width: 270px;
  }
  .exclusivo {
    display: none;
  }
  .popup_NL .exclusivo {
    display: block;
    position: absolute;
    bottom: auto;
    top: -1.8em;
  }
}
@media (max-width: 321px) {
  .form-text {
    margin-bottom: 5px;
  }
  .feedback {
    line-height: 22px;
    padding-left: 80px;
    margin: 10px 0;
  }
}/*# sourceMappingURL=style.css.map */