html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

* {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

.responsive-scroll {
  display: none;
}

.ordenador {
  display: block;
}

.movil {
  display: none;
}

.invisible {
  visibility: hidden;
}

.novisible {
  display: none;
}

.no-desktop {
  display: none;
}

.no-responsive {
  display: initial;
}

.no-mobile {
  display: initial;
}

.no-scroll {
  overflow: hidden;
}

.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

.fleft {
  float: left;
  text-align: left;
}

.tleft {
  text-align: left;
}

.fright {
  float: right;
  text-align: right;
}

.tright {
  text-align: right;
}

.wfull {
  width: 100%;
}

.w100 {
  max-width: 1600px;
  margin: auto;
  padding: 0 90px;
}

.w80 {
  width: 80%;
  max-width: 1400px;
  margin: auto;
}

.ofcover {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.ofcontain {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

.vcenter {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
} /* siempre dentro de un relative */
.slider .flickity-page-dots {
  bottom: -30px;
}

.slider .flickity-page-dots .dot {
  background: none;
  border: solid 1px #000000;
}

.slider.dots-dentro .flickity-page-dots {
  bottom: 20px;
}

.slider.dots-dentro .flickity-page-dots .dot {
  background: none;
  border: solid 1px #FFFFFF;
}

.col {
  padding: 0px 3%;
  float: left;
}

.w14 {
  width: 25%;
}

.w13 {
  width: 33%;
}

.w12 {
  width: 50%;
}

.w23 {
  width: 66%;
}

.w34 {
  width: 75%;
}

.w15 {
  width: 20%;
}

.w25 {
  width: 40%;
}

.w35 {
  width: 60%;
}

.w45 {
  width: 80%;
}

.w11 {
  width: 10%;
}

.w21 {
  width: 20%;
}

.w31 {
  width: 30%;
}

.w41 {
  width: 40%;
}

.w51 {
  width: 50%;
}

.w61 {
  width: 60%;
}

.w71 {
  width: 70%;
}

.w81 {
  width: 80%;
}

.w91 {
  width: 90%;
}

.wf20 {
  width: 20vw;
}

.wf30 {
  width: 30vw;
}

.wf50 {
  width: 50vw;
}

.wf70 {
  width: 70vw;
}

.wf120 {
  width: 120vw;
}

.transitionall {
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

.arrow {
  border: solid black;
  border-width: 0 1px 1px 0;
  display: inline-block;
  padding: 2.5px;
}

.right {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}

.left {
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
}

.up {
  transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
}

.down {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}

.overflowhidden {
  overflow: hidden;
}

.bounce-v {
  animation-name: bounce-v;
  animation-timing-function: ease;
  animation-duration: 1s;
  animation-iteration-count: infinite;
}

@keyframes bounce-v {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
  100% {
    transform: translateY(0);
  }
}
.bounce-h {
  animation-name: bounce-h;
  animation-timing-function: ease;
  animation-duration: 1s;
  animation-iteration-count: infinite;
}

@keyframes bounce-h {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-12px);
  }
  100% {
    transform: translateX(0);
  }
}
.marquee {
  position: relative;
  overflow: hidden;
  height: 100%;
}
.marquee .marquee__inner {
  width: fit-content;
  width: -moz-max-content;
  width: intrinsic;
  display: flex;
  position: relative;
  animation: marquee 1s linear infinite;
  height: 100%;
}
.marquee.vertical .marquee__inner {
  width: 100%;
  flex-direction: column;
  animation: marquee-vertical 1s linear infinite;
  height: auto;
}
.marquee.photo {
  width: 100%;
  height: 100%;
}
.marquee.photo .marquee__inner {
  animation: marquee-photo 1s ease-in-out infinite;
  animation-direction: alternate;
  position: absolute;
  top: 0;
}
.marquee.velocidad-1 .marquee__inner {
  animation-duration: 1s;
}
.marquee.velocidad-2 .marquee__inner {
  animation-duration: 2s;
}
.marquee.velocidad-3 .marquee__inner {
  animation-duration: 3s;
}
.marquee.velocidad-4 .marquee__inner {
  animation-duration: 4s;
}
.marquee.velocidad-5 .marquee__inner {
  animation-duration: 5s;
}
.marquee.velocidad-10 .marquee__inner {
  animation-duration: 10s;
}
.marquee.velocidad-15 .marquee__inner {
  animation-duration: 15s;
}
.marquee.velocidad-20 .marquee__inner {
  animation-duration: 20s;
}
.marquee.velocidad-30 .marquee__inner {
  animation-duration: 30s;
}
.marquee.velocidad-60 .marquee__inner {
  animation-duration: 60s;
}
.marquee.one-line {
  white-space: nowrap;
}
.marquee.direction-left .marquee__inner {
  animation-direction: reverse;
}
.marquee.direction-top .marquee__inner {
  animation-direction: reverse;
}
.marquee.stop .marquee__inner {
  animation-play-state: paused;
}
@keyframes marquee {
  0% {
    transform: translate3d(-100%, 0, 0);
  }
  100% {
    transform: translate3d(100vw, 0, 0);
  }
}
@keyframes marquee-vertical {
  0% {
    transform: translate3d(0, -100%, 0);
  }
  100% {
    transform: translate3d(0, 100vw, 0);
  }
}
@keyframes marquee-photo {
  0% {
    left: 0%;
  }
  100% {
    left: 100%;
    transform: translate3d(-100%, 0, 0);
  }
}

@media (max-width: 820px) {
  .wf70 {
    width: 100vw;
  }
  .ordenador {
    display: none;
  }
  .movil {
    display: block;
  }
  div.responsive-scroll {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    height: 20vw;
  }
  @keyframes shake {
    0%, 100% {
      transform: translateX(-2px);
    }
    50% {
      transform: translateX(2px);
    }
  }
  div.responsive-scroll img {
    width: 7vw;
    position: absolute;
    z-index: 999;
    opacity: 0.2;
    top: 40%;
    left: 45%;
    transform: translate(-50%, -50%);
    animation: shake 1s infinite;
    animation-duration: 1s;
  }
  .fancybox-slide--video .fancybox-content {
    height: 100vh !important;
    width: 100vw !important;
  }
  .fancybox-slide {
    padding: 0 !important;
  }
}
@media (max-width: 767px) {
  @keyframes shake {
    0%, 100% {
      transform: translateX(-2px);
    }
    50% {
      transform: translateX(2px);
    }
  }
  div.responsive-scroll img {
    width: 9vw;
  }
}
@font-face {
  font-family: "Flama Basic";
  src: url("../fonts/Flama-BasicItalic.woff2") format("woff2"), url("../fonts/Flama-BasicItalic.woff") format("woff");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Flama";
  src: url("../fonts/Flama-SemiboldItalic.woff2") format("woff2"), url("../fonts/Flama-SemiboldItalic.woff") format("woff");
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Flama Basic";
  src: url("../fonts/Flama-Basic.woff2") format("woff2"), url("../fonts/Flama-Basic.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Flama";
  src: url("../fonts/Flama-UltralightItalic.woff2") format("woff2"), url("../fonts/Flama-UltralightItalic.woff") format("woff");
  font-weight: 200;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Flama";
  src: url("../fonts/Flama-Bold.woff2") format("woff2"), url("../fonts/Flama-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Flama";
  src: url("../fonts/Flama-Extrabold.woff2") format("woff2"), url("../fonts/Flama-Extrabold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Flama";
  src: url("../fonts/Flama-MediumItalic.woff2") format("woff2"), url("../fonts/Flama-MediumItalic.woff") format("woff");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Flama";
  src: url("../fonts/Flama-Medium.woff2") format("woff2"), url("../fonts/Flama-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Flama";
  src: url("../fonts/Flama-LightItalic.woff2") format("woff2"), url("../fonts/Flama-LightItalic.woff") format("woff");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Flama";
  src: url("../fonts/Flama-Black.woff2") format("woff2"), url("../fonts/Flama-Black.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Flama";
  src: url("../fonts/Flama-Book.woff2") format("woff2"), url("../fonts/Flama-Book.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Flama";
  src: url("../fonts/Flama-BlackItalic.woff2") format("woff2"), url("../fonts/Flama-BlackItalic.woff") format("woff");
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Flama";
  src: url("../fonts/Flama-Semibold.woff2") format("woff2"), url("../fonts/Flama-Semibold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Flama";
  src: url("../fonts/Flama-Ultralight.woff2") format("woff2"), url("../fonts/Flama-Ultralight.woff") format("woff");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Flama";
  src: url("../fonts/Flama-Light.woff2") format("woff2"), url("../fonts/Flama-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Flama";
  src: url("../fonts/Flama-BookItalic.woff2") format("woff2"), url("../fonts/Flama-BookItalic.woff") format("woff");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
.flickity-prev-next-button:disabled {
  display: none;
}

.flickity-prev-next-button.next {
  right: -45px;
}

.flickity-prev-next-button.previous {
  left: -90px;
}

/* @media (max-width: 890px) { 
    body{
        article{height: 100%;
            .page-info{height: fit-content;}
        }
    }
}  */
BODY {
  -webkit-font-smoothing: antialiased;
  background: #FFFFFF;
  font-family: "Flama", Helvetica, Arial, sans-serif;
  font-size: 1vw;
  text-transform: uppercase;
  color: #000000;
  /*.vcentered { position: absolute; top: 50%; transform: translate(0%, -50%); }*/
}
BODY A {
  color: #000000;
}
BODY A:hover {
  opacity: 0.7;
}
BODY A.button, BODY SPAN.button {
  border: 1px solid #000000;
  text-decoration: none;
  padding: 10px 16px;
  border-radius: 5px;
  margin-bottom: 1vh;
}
BODY SPAN.button.drop {
  padding: 10px 20px;
  cursor: pointer;
}
BODY SPAN.button.drop .arrow {
  margin-left: 20px;
  position: relative;
  top: 4px;
}
BODY SPAN.button.drop A {
  text-decoration: none;
}
BODY SPAN.button.drop UL {
  display: none;
}
BODY H1, BODY H2, BODY H3, BODY H4, BODY H5 {
  font-weight: 600;
  font-size: 100%;
}
BODY P {
  margin-bottom: 1vw;
  text-transform: none;
}
BODY HR {
  border: none;
  border-bottom: 1px solid #000000;
}
BODY ARTICLE.text-negativo {
  color: #FFFFFF;
}
BODY ARTICLE.text-negativo A {
  color: #FFFFFF;
}
BODY ARTICLE.text-negativo A.button, BODY ARTICLE.text-negativo SPAN.button {
  border: 1px solid #FFFFFF;
}
BODY ARTICLE.text-negativo SPAN.button.drop .arrow {
  border-color: #FFFFFF;
}
BODY H2.text-negativo, BODY H3.text-negativo {
  color: #FFFFFF;
}

HEADER NAV {
  background: #FFFFFF;
  width: 25vw;
  position: fixed;
  z-index: 10000;
}
HEADER NAV .nav-menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-flow: row wrap;
  height: 8vh;
  min-height: 80px;
}
HEADER NAV .nav-menu A {
  height: 100%;
  display: block;
  text-align: center;
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
HEADER NAV .nav-menu A IMG {
  width: 9.6153846154vw;
  max-height: 5vh;
}
HEADER NAV .nav-menu A + A {
  border-left: 1px solid rgba(0, 0, 0, 0.2);
}
HEADER NAV .nav-menu .nav-title {
  font-size: 160%;
  font-weight: 300;
}
HEADER NAV .nav-menu .nav-hint {
  font-size: 50%;
  margin-left: 0.8vw;
  font-weight: 500;
}
HEADER NAV .nav-menu .nav-icon {
  cursor: pointer;
  display: inline-block;
  float: right;
  margin-top: -7px;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
HEADER NAV .nav-menu .nav-icon .bar {
  display: block;
  height: 1px;
  width: 28px;
  background-color: #000000;
  margin: 8px auto;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
HEADER NAV .nav-menu .nav-icon .middle {
  margin: 0 auto;
}
HEADER NAV .nav-menu .nav-icon .bottom {
  margin-bottom: 0;
}
HEADER NAV .nav-content {
  font-size: 140%;
  background: #FFFFFF;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  height: 92vh;
  position: fixed;
  left: -25vw;
  transition: all 0.3s ease-out;
  width: 25vw;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
HEADER NAV .nav-content A {
  text-transform: none;
  text-decoration: none;
}
HEADER NAV .nav-content .nav-content-main {
  overflow-y: auto;
}
HEADER NAV .nav-content .nav-content-main A {
  display: block;
  padding: 2.56vh 1vw;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
HEADER NAV .nav-content .nav-content-main A.active {
  background-color: #000000;
  color: #FFFFFF;
}
HEADER NAV .nav-content .nav-content-sec {
  display: none;
}
HEADER NAV .nav-content .nav-content-sec A {
  padding-left: 2vw;
  text-transform: uppercase;
  font-size: 70%;
}
HEADER NAV .nav-content .nav-content-fixed {
  margin-bottom: 10px;
}
HEADER NAV .nav-content .nav-content-fixed ION-ICON {
  font-size: 140%;
}
HEADER NAV .nav-content .nav-content-fixed LI {
  padding: 2.56vh 1vw;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
HEADER NAV .nav-content .nav-content-fixed SPAN {
  font-size: 60%;
}
HEADER NAV .nav-content .nav-content-fixed LI:nth-of-type(2) A {
  color: rgba(0, 0, 0, 0.2);
  text-transform: uppercase;
}
HEADER NAV .nav-content .nav-content-fixed LI:nth-of-type(2) A.active, HEADER NAV .nav-content .nav-content-fixed LI:nth-of-type(2) A:hover {
  color: #000000;
}
HEADER NAV.active .nav-button { /*  background-color: $negro; color: $blanco; */ }
HEADER NAV.active .nav-icon .bar {
  background-color: #FFFFFF;
}
HEADER NAV.active .nav-icon .top {
  -webkit-transform: translateY(9px) rotateZ(45deg);
  -moz-transform: translateY(9px) rotateZ(45deg);
  -ms-transform: translateY(9px) rotateZ(45deg);
  -o-transform: translateY(9px) rotateZ(45deg);
  transform: translateY(9px) rotateZ(45deg);
}
HEADER NAV.active .nav-icon .bottom {
  -webkit-transform: translateY(-9px) rotateZ(-45deg);
  -moz-transform: translateY(-9px) rotateZ(-45deg);
  -ms-transform: translateY(-9px) rotateZ(-45deg);
  -o-transform: translateY(-9px) rotateZ(-45deg);
  transform: translateY(-9px) rotateZ(-45deg);
}
HEADER NAV.active .nav-icon .middle {
  background-color: #FFFFFF;
}
HEADER NAV.active .nav-icon .bar.middle {
  background-color: white;
}
HEADER NAV.active .nav-content {
  left: 0;
}

@media (max-width: 890px) {
  HEADER NAV {
    width: 100vw;
  }
  HEADER NAV .nav-menu A {
    font-size: 140%;
    width: 33%;
  }
  HEADER NAV .nav-menu A IMG {
    width: 23vw;
  }
  HEADER NAV .nav-menu .nav-title {
    font-size: 300%;
  }
  HEADER NAV .nav-menu .nav-hint {
    font-size: 150%;
    margin-left: 0.8vw;
    font-weight: 500;
  }
  HEADER NAV .nav-menu .nav-icon {
    cursor: pointer;
    display: inline-block;
    float: right;
    margin-top: -7px;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
  HEADER NAV .nav-menu .nav-icon .bar {
    display: block;
    height: 1px;
    width: 28px;
    background-color: #000000;
    margin: 8px auto;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
  HEADER NAV .nav-menu .nav-icon .middle {
    margin: 0 auto;
  }
  HEADER NAV .nav-menu .nav-icon .bottom {
    margin-bottom: 0;
  }
  HEADER NAV .nav-content {
    ont-size: 140%;
    left: -100vw;
    width: 100vw;
  }
  HEADER NAV .nav-content A {
    text-transform: none;
    text-decoration: none;
  }
  HEADER NAV .nav-content .nav-content-main {
    overflow-y: auto;
  }
  HEADER NAV .nav-content .nav-content-main A {
    font-size: 200%;
    padding: 5vw 3vw;
  }
  HEADER NAV .nav-content .nav-content-main A.active {
    background-color: #000000;
    color: #FFFFFF;
  }
  HEADER NAV .nav-content .nav-content-sec {
    display: none;
  }
  HEADER NAV .nav-content .nav-content-sec A {
    font-size: 200%;
  }
  HEADER NAV .nav-content .nav-content-fixed {
    margin-bottom: 30px;
  }
  HEADER NAV .nav-content .nav-content-fixed ION-ICON {
    font-size: 200%;
  }
  HEADER NAV .nav-content .nav-content-fixed LI {
    font-size: 200%;
  }
  HEADER NAV .nav-content .nav-content-fixed SPAN {
    font-size: 200%;
  }
  HEADER NAV .nav-content .nav-content-fixed LI:nth-of-type(2) A {
    font-size: 200%;
  }
  HEADER NAV .nav-content .nav-content-fixed LI:nth-of-type(2) A.active, HEADER NAV .nav-content .nav-content-fixed LI:nth-of-type(2) A:hover {
    color: #000000;
  }
}
@media (max-width: 767px) {
  .nav-hint {
    display: none;
  }
}
BODY {
  display: flex;
  overflow-y: hidden;
  /*  ----cover----------------------------------------------------------------------------------------- */
  /*  --------------------------------------------------------------------------------------------- */
  /*  --------------------------------------------------------------------------------------------- */
  /*  -------texto-statement -------------------------------------------------------------------------------------- */
  /*  ------------columnas-texto-imagen-------------------------------------------------------------------------------- */
  /* --------------------------------------------------------------------------- */
  /* --------------------------------------------------------------------------- */
  /* --------------------------------------------------------------------------- */
  /* --------------------------------------------------------------------------- */
  /* --------------------------------------------------------------------------- */
  /* --------------------------------------------------------------------------- */
  /* --------------------------------------------------------------------------- */
  /* --------------------------------------------------------------------------- */
  /* -------------------------------------------- */
  /* -------------------------------------------- */
  /* ------------------------------------------------ */
  /* --------------------------------------------------- */
}
BODY .body-container {
  display: flex;
  overflow-y: hidden;
}
BODY ARTICLE {
  width: 100vw;
  height: 98.4vh;
  flex-shrink: 0;
  position: relative; /* height 70vh media querie para  pantalla grande*/
}
BODY ARTICLE.width-auto SECTION.page-info {
  width: auto;
}
BODY ARTICLE.block-mobile {
  background-color: #FFFFFF;
  z-index: 100000;
  position: fixed;
  display: none;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
BODY ARTICLE.block-mobile * {
  margin-bottom: 5vh;
}
BODY ARTICLE.block-mobile IMG {
  width: 50%;
  max-width: 500px;
}
BODY ARTICLE.block-mobile P {
  text-align: center;
  font-size: 300%;
  line-height: 150%;
}
BODY ARTICLE.block-mobile IMG.logo {
  width: 30%;
  max-width: 200px;
}
BODY ARTICLE SECTION.page-hint {
  position: absolute;
  bottom: 5vh;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 10;
  text-align: center;
}
BODY ARTICLE SECTION.page-hint .page-hint-content {
  display: flex;
  align-items: center;
  justify-content: center;
}
BODY ARTICLE SECTION.page-hint .page-hint-content IMG {
  width: 75px;
  padding: 12px;
  margin: 10px;
}
BODY ARTICLE SECTION.page-hint .page-hint-content P {
  font-style: italic;
  font-size: 80%;
  margin: 0;
}
BODY ARTICLE SECTION.page-background {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  box-sizing: border-box;
}
BODY ARTICLE SECTION.page-background.margin {
  padding: 4vh 2.5vw;
}
BODY ARTICLE SECTION.page-background .slider {
  width: 100%;
  height: 100%;
}
BODY ARTICLE SECTION.page-info {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 10;
  padding: 12.8vh 8vw;
}
BODY ARTICLE SECTION.page-info .page-info-text {
  position: absolute;
  display: inline;
}
BODY ARTICLE SECTION.page-info .page-info-text.vcentered {
  top: 50%;
  transform: translate(0%, -50%);
}
BODY ARTICLE SECTION.page-info H2 {
  font-size: 400%;
  font-weight: 600;
  line-height: 90%;
  display: inline;
}
BODY ARTICLE SECTION.page-info H2.small {
  font-size: 240%;
}
BODY ARTICLE SECTION.page-info H2 EM {
  font-style: normal;
  font-weight: 300;
}
BODY ARTICLE SECTION.page-info P {
  line-height: 130%;
}
BODY ARTICLE SECTION.page-info A.button-play {
  width: 5vw;
}
BODY ARTICLE SECTION.page-info A.button-more {
  width: 3vw;
  position: absolute;
  bottom: 2vw;
  left: 2vw;
  z-index: 10000;
  transition: all 0.2s ease-out;
}
BODY ARTICLE SECTION.next {
  background: #000000;
  color: #FFFFFF;
  width: 12vw;
  height: 12vw;
  position: absolute;
  bottom: 0;
  left: auto;
  right: 0;
  z-index: 10000;
}
BODY ARTICLE SECTION.next A {
  color: #FFFFFF;
  text-decoration: none;
  padding: 2.2vw;
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
BODY ARTICLE SECTION.next ION-ICON {
  font-size: 5vw;
}
BODY ARTICLE SECTION.next .next-nav-info {
  display: none;
}
@media (max-width: 890px) {
  BODY ARTICLE SECTION.next {
    height: 26vw;
    width: 26vw;
  }
  BODY ARTICLE SECTION.next A {
    font-size: 240%;
  }
  BODY ARTICLE SECTION.next ION-ICON {
    font-size: 10vw;
  }
  BODY ARTICLE SECTION.next .next-nav-info {
    display: none;
  }
}
@media (max-width: 767px) {
  BODY SECTION.next {
    height: 30vw;
    width: 30vw;
  }
  BODY SECTION.next A {
    font-size: 250%;
  }
  BODY SECTION.next ION-ICON {
    font-size: 10vw;
  }
  BODY SECTION.next .next-nav-info {
    display: none;
  }
}
BODY ARTICLE.cover SECTION.page-info {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}
BODY ARTICLE.cover SECTION.page-info H1 {
  font-size: 260%;
  font-weight: normal;
  margin-bottom: 6vh;
}
BODY ARTICLE.cover SECTION.page-info P {
  font-size: 140%;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 4vh;
}
BODY ARTICLE.cover SECTION.page-info LI {
  margin: 2vh 0;
}
@media (max-width: 890px) {
  BODY ARTICLE.cover SECTION.page-info {
    position: relative;
  }
  BODY ARTICLE.cover SECTION.page-info H1 {
    font-size: 300%;
  }
  BODY ARTICLE.cover SECTION.page-info .button {
    font-size: 300%;
  }
  BODY ARTICLE.cover SECTION.page-info P {
    font-size: 400%;
  }
  BODY ARTICLE.cover SECTION.page-hint a.button {
    font-size: 320%;
  }
  BODY ARTICLE.cover SECTION.page-hint .page-hint-content p {
    display: none;
  }
}
@media (max-width: 767px) {
  BODY ARTICLE.cover SECTION.page-info H1 {
    font-size: 450%;
  }
  BODY ARTICLE.cover SECTION.page-info .button {
    font-size: 300%;
  }
  BODY ARTICLE.cover SECTION.page-info P {
    font-size: 450%;
  }
  BODY ARTICLE.cover SECTION.page-hint a.button {
    font-size: 320%;
  }
}
BODY ARTICLE.video-text-pic-two-cols SECTION.page-info {
  display: flex;
  padding: 0;
}
BODY ARTICLE.video-text-pic-two-cols SECTION.page-info div.izquierda {
  width: 50%;
  height: 100%;
}
BODY ARTICLE.video-text-pic-two-cols SECTION.page-info div.derecha {
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 7vw 3vw;
}
BODY ARTICLE.video-text-pic-two-cols SECTION.page-info div.derecha div.wrap p {
  padding: 2vw 0vw;
}
BODY ARTICLE.video-text-pic-two-cols SECTION.page-info div.derecha div.pic {
  height: 9vw;
}
@media (max-width: 890px) {
  BODY ARTICLE.video-text-pic-two-cols {
    margin-bottom: 7vw;
    min-height: 117vh;
  }
  BODY ARTICLE.video-text-pic-two-cols SECTION.page-info {
    flex-direction: column;
  }
  BODY ARTICLE.video-text-pic-two-cols SECTION.page-info div.izquierda {
    width: 100%;
    height: inherit;
    padding: 0vw 0vw;
  }
  BODY ARTICLE.video-text-pic-two-cols SECTION.page-info div.derecha {
    width: 100%;
    height: inherit;
    padding: 5vw 5vw;
  }
  BODY ARTICLE.video-text-pic-two-cols SECTION.page-info div.derecha div.wrap p {
    font-size: 250%;
  }
  BODY ARTICLE.video-text-pic-two-cols SECTION.page-info div.derecha div.pic {
    height: 20vw;
  }
}
@media (max-width: 767px) {
  BODY ARTICLE.video-text-pic-two-cols {
    margin-bottom: none;
    min-height: 100vh;
  }
  BODY ARTICLE.video-text-pic-two-cols SECTION.page-info div.derecha div.wrap {
    width: 100%;
  }
  BODY ARTICLE.video-text-pic-two-cols SECTION.page-info div.derecha div.wrap h2 {
    font-size: 500%;
  }
  BODY ARTICLE.video-text-pic-two-cols SECTION.page-info div.derecha div.wrap p {
    font-size: 300%;
    padding-top: 3vw;
  }
}
BODY ARTICLE.foto-video SECTION.page-info {
  /*         H2 { font-size: 400%; font-weight: 600; line-height: 90%; 
              &.vcentered { position: absolute; top: 50%; transform: translate(0%, -50%); }
              &.small {font-size: 240%; }
          }  */
}
BODY ARTICLE.foto-video SECTION.page-info div.text-wrap h2 {
  font-size: 400%;
  font-weight: 600;
  line-height: 90%;
}
BODY ARTICLE.foto-video SECTION.page-info div.text-wrap p {
  width: 25%;
  padding-top: 10px;
}
BODY ARTICLE.foto-video SECTION.page-info div.text-wrap.vcentered {
  position: absolute;
  top: 50%;
  transform: translate(0%, -50%);
}
BODY ARTICLE.foto-video SECTION.page-info div.text-wrap.small h2 {
  font-size: 240%;
}
BODY ARTICLE.foto-video SECTION.page-info IMG.ofcontain {
  top: 0;
  left: 0;
  position: absolute;
  padding: 8vh 5vw;
}
BODY ARTICLE.foto-video .page-background.ordenador {
  display: block;
}
BODY ARTICLE.foto-video .page-background.movil {
  display: none;
}
@media (max-width: 890px) {
  BODY ARTICLE.foto-video {
    padding-top: 6vw;
    overflow: hidden;
  }
  BODY ARTICLE.foto-video SECTION.page-info {
    position: relative;
    padding: 6vh 8vw;
  }
  BODY ARTICLE.foto-video SECTION.page-info div.text-wrap {
    margin-top: 0vw;
  }
  BODY ARTICLE.foto-video SECTION.page-info div.text-wrap h2 {
    font-size: 550%;
  }
  BODY ARTICLE.foto-video SECTION.page-info div.text-wrap p {
    width: 50%;
    font-size: 85%;
  }
  BODY ARTICLE.foto-video SECTION.page-info div.text-wrap.vcentered {
    margin-top: 0vw;
  }
  BODY ARTICLE.foto-video SECTION.page-info div.text-wrap.small {
    font-size: 340%;
  }
  BODY ARTICLE.foto-video SECTION.page-info a.button-play {
    width: 11vw;
  }
  BODY ARTICLE.foto-video .page-background.ordenador {
    display: none;
  }
  BODY ARTICLE.foto-video .page-background.movil {
    display: block;
  }
  BODY ARTICLE.foto-video .page-hint .page-hint-content p {
    display: none;
  }
}
@media (max-width: 767px) {
  BODY ARTICLE.foto-video {
    padding-top: 10vw;
  }
  BODY ARTICLE.foto-video SECTION.page-info {
    padding: 3vw 8vw;
  }
  BODY ARTICLE.foto-video SECTION.page-info div.text-wrap {
    width: 95%;
    margin-top: 1vw;
  }
  BODY ARTICLE.foto-video SECTION.page-info div.text-wrap p {
    width: 90%;
    font-size: 16px;
  }
  BODY ARTICLE.foto-video SECTION.page-info div.text-wrap.small h2 {
    font-size: 150%;
  }
  BODY ARTICLE.foto-video SECTION.page-info div.text-wrap.small p {
    font-size: 16px;
  }
}
BODY ARTICLE.texto-statement SECTION.page-info .page-info-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  font-size: 130%;
  font-weight: 400;
  line-height: 140%;
  display: flex;
  flex-direction: column;
}
BODY ARTICLE.texto-statement SECTION.page-info .page-info-container DIV.iconos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 80vw;
  width: 80vw;
}
BODY ARTICLE.texto-statement SECTION.page-info .page-info-container DIV.iconos a {
  margin: 1vw;
  margin-top: 0;
}
BODY ARTICLE.texto-statement SECTION.page-info .page-info-container IMG {
  height: 11vh;
  margin-top: 4vh;
}
@media (max-width: 890px) {
  BODY ARTICLE.texto-statement SECTION.page-info {
    position: relative;
    padding: 4vh 8vw;
  }
  BODY ARTICLE.texto-statement SECTION.page-info .page-info-container {
    top: 47%;
    width: 80%;
  }
  BODY ARTICLE.texto-statement SECTION.page-info .page-info-container h2 {
    font-size: 600%;
  }
  BODY ARTICLE.texto-statement SECTION.page-info .page-info-container p {
    font-size: 250%;
  }
  BODY ARTICLE.texto-statement SECTION.page-info .page-info-container IMG {
    height: 10vh;
  }
  BODY ARTICLE.texto-statement SECTION.page-info a.button-play {
    margin-bottom: 30vw;
    width: 10vw;
  }
}
BODY ARTICLE.columnas-texto-imagen SECTION.page-info .page-info-container {
  display: inline-flex;
}
BODY ARTICLE.columnas-texto-imagen SECTION.page-info .page-info-container .page-info-col {
  flex-shrink: 0;
  width: 54vw;
}
BODY ARTICLE.columnas-texto-imagen SECTION.page-info .page-info-container .page-info-col .page-info-col-1, BODY ARTICLE.columnas-texto-imagen SECTION.page-info .page-info-container .page-info-col .page-info-col-2 {
  position: relative;
  margin-top: 5vh;
  margin-right: 2vw;
  height: 60vh;
}
BODY ARTICLE.columnas-texto-imagen SECTION.page-info .page-info-container .page-info-col .page-info-col-1 {
  float: left;
  width: 34vw;
}
BODY ARTICLE.columnas-texto-imagen SECTION.page-info .page-info-container .page-info-col .page-info-col-2 {
  float: right;
  width: 15vw;
}
BODY ARTICLE.columnas-texto-imagen SECTION.page-info .page-info-container .page-info-col H3 {
  font-weight: 500;
  margin-bottom: 2vh;
}
BODY ARTICLE.columnas-texto-imagen SECTION.page-info .page-info-container .page-info-col H3::before {
  content: "-";
  display: block;
}
BODY ARTICLE.columnas-texto-imagen SECTION.page-info .page-info-container .page-info-col UL {
  margin-left: 1vw;
  list-style-type: square;
}
BODY ARTICLE.columnas-texto-imagen SECTION.page-info .page-info-container .page-info-col UL EM {
  display: block;
  margin-bottom: 2vh;
  font-size: 70%;
  line-height: 140%;
  text-transform: none;
}
BODY ARTICLE.columnas-texto-imagen SECTION.page-info .page-info-container .page-info-col UL LI:last-of-type {
  margin-bottom: 3vh;
}
@media (max-width: 890px) {
  BODY ARTICLE.columnas-texto-imagen SECTION.page-info {
    position: relative;
  }
  BODY ARTICLE.columnas-texto-imagen SECTION.page-info h2 {
    font-size: 300%;
  }
  BODY ARTICLE.columnas-texto-imagen SECTION.page-info .page-info-container .page-info-col {
    flex-direction: column;
    display: flex;
    width: 45vw;
  }
  BODY ARTICLE.columnas-texto-imagen SECTION.page-info .page-info-container .page-info-col .page-info-col-1, BODY ARTICLE.columnas-texto-imagen SECTION.page-info .page-info-container .page-info-col .page-info-col-2 {
    height: auto;
    width: 40vw;
  }
  BODY ARTICLE.columnas-texto-imagen SECTION.page-info .page-info-container .page-info-col .page-info-col-1 a.button-play img, BODY ARTICLE.columnas-texto-imagen SECTION.page-info .page-info-container .page-info-col .page-info-col-2 a.button-play img {
    height: 10vh;
  }
  BODY ARTICLE.columnas-texto-imagen SECTION.page-info .page-info-container .page-info-col .page-info-col-1 img, BODY ARTICLE.columnas-texto-imagen SECTION.page-info .page-info-container .page-info-col .page-info-col-2 img {
    height: 15vh;
  }
  BODY ARTICLE.columnas-texto-imagen SECTION.page-info .page-info-container .page-info-col H3 {
    font-size: 340%;
  }
  BODY ARTICLE.columnas-texto-imagen SECTION.page-info .page-info-container .page-info-col UL EM {
    font-weight: 300;
    display: none;
  }
  BODY ARTICLE.columnas-texto-imagen SECTION.page-info .page-info-container .page-info-col UL LI {
    font-size: 250%;
    font-weight: 500;
    line-height: 160%;
  }
}
BODY ARTICLE.columnas-videos SECTION.page-info .page-info-container {
  display: inline-flex;
  margin-left: 33vw;
  height: 80vh;
}
BODY ARTICLE.columnas-videos SECTION.page-info .page-info-container .page-info-col {
  flex-shrink: 0;
  width: 45vw;
  margin-right: 3vw;
  height: 46vh;
  position: relative;
}
BODY ARTICLE.columnas-videos SECTION.page-info .page-info-container .page-info-col:nth-child(even) {
  align-self: flex-end;
}
BODY ARTICLE.columnas-videos SECTION.page-info .page-info-container .page-info-col:last-of-type {
  margin-right: 0;
}
@media (max-width: 890px) {
  BODY ARTICLE.columnas-videos {
    overflow: hidden;
  }
  BODY ARTICLE.columnas-videos SECTION.page-info {
    position: relative;
  }
  BODY ARTICLE.columnas-videos SECTION.page-info .page-info-text {
    top: 8%;
  }
  BODY ARTICLE.columnas-videos SECTION.page-info .page-info-container {
    width: 100vw;
    display: flex;
    flex-wrap: wrap;
    margin-left: 0;
  }
  BODY ARTICLE.columnas-videos SECTION.page-info .page-info-container .page-info-col {
    width: 40%;
    height: 40%;
    margin-top: 5vw;
  }
}
BODY ARTICLE.columnas-over SECTION.page-info .page-info-text {
  max-width: 25vw;
}
BODY ARTICLE.columnas-over SECTION.page-info .page-info-container {
  display: inline-flex;
  align-items: center;
  margin-left: 33vw;
  height: 80vh;
}
BODY ARTICLE.columnas-over SECTION.page-info .page-info-container .page-info-col {
  flex-shrink: 0;
  width: 30vw;
  margin-right: 3vw;
  height: 60vh;
  position: relative;
}
BODY ARTICLE.columnas-over SECTION.page-info .page-info-container .page-info-col:last-of-type {
  margin-right: 0;
}
BODY ARTICLE.columnas-over SECTION.page-info .page-info-container .page-info-col.active A.button-more {
  transform: rotate(135deg);
}
BODY ARTICLE.columnas-over SECTION.page-info .page-info-container .page-info-col .page-info-col-over {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  padding: 3vw;
  background-color: rgba(0, 0, 0, 0.8);
  height: 100%;
  color: #FFFFFF;
}
BODY ARTICLE.columnas-over SECTION.page-info .page-info-container .page-info-col .page-info-col-over P {
  line-height: 150%;
}
@media (max-width: 890px) {
  BODY ARTICLE.columnas-over {
    overflow: hidden;
  }
  BODY ARTICLE.columnas-over SECTION.page-info {
    position: relative;
  }
  BODY ARTICLE.columnas-over SECTION.page-info .page-info-text {
    top: 20%;
    left: 8%;
    max-width: 50vw;
  }
  BODY ARTICLE.columnas-over SECTION.page-info .page-info-text h2 {
    font-size: 400%;
  }
  BODY ARTICLE.columnas-over SECTION.page-info .page-info-text p {
    font-size: 220%;
  }
  BODY ARTICLE.columnas-over SECTION.page-info .page-info-container {
    display: flex;
    flex-wrap: wrap;
    margin-left: 0vw;
    height: 64vh;
    margin-top: 20vh;
  }
  BODY ARTICLE.columnas-over SECTION.page-info .page-info-container .page-info-col {
    height: 40vw;
    width: 40vw;
    margin-right: 2vw;
  }
  BODY ARTICLE.columnas-over SECTION.page-info .page-info-container .page-info-col .button-more {
    width: 15vw;
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  BODY ARTICLE.columnas-over SECTION.page-info .page-info-container .page-info-col .button-play {
    width: 15vw;
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
@media (max-width: 767px) {
  BODY ARTICLE.columnas-over SECTION.page-info .page-info-text {
    top: 15%;
    max-width: 70vw;
  }
  BODY ARTICLE.columnas-over SECTION.page-info .page-info-text p {
    font-size: 350%;
    padding-top: 1vw;
  }
  BODY ARTICLE.columnas-over SECTION.page-info .page-info-container {
    margin-left: 0vw;
    margin-top: 20vh;
    width: 87vw;
    height: 60vh;
  }
  BODY ARTICLE.columnas-over SECTION.page-info .page-info-container .page-info-col {
    height: 45vw;
    width: 38vw;
    margin-right: 5vw;
  }
}
BODY ARTICLE.fotos-texto SECTION.page-info {
  position: relative;
}
BODY ARTICLE.fotos-texto SECTION.page-info A.button {
  position: relative;
  top: 1.4vh;
}
BODY ARTICLE.fotos-texto SECTION.page-info IMG {
  height: 70%;
}
BODY ARTICLE.fotos-texto SECTION.page-info .page-info-container {
  font-size: 100%;
  width: 75%;
  line-height: 140%;
  padding-left: 4vw;
}
BODY ARTICLE.fotos-texto SECTION.page-info .page-info-container P {
  width: 70%;
}
BODY ARTICLE.fotos-texto SECTION.page-info.reverse IMG {
  position: absolute;
  bottom: 8vh;
  height: 50%;
  width: 90%;
}
BODY ARTICLE.fotos-texto SECTION.page-info.reverse .page-info-container {
  position: absolute;
}
BODY ARTICLE.fotos-texto SECTION.page-info.bifoto IMG:nth-of-type(1) {
  width: 80%;
  height: 60%;
  float: right;
}
BODY ARTICLE.fotos-texto SECTION.page-info.bifoto IMG:nth-of-type(2) {
  position: absolute;
  width: 30%;
  height: 50%;
  bottom: 8vh;
}
BODY ARTICLE.fotos-texto SECTION.page-info.bifoto .page-info-container {
  float: right;
  width: 64%;
  margin-top: 3.2vh;
}
BODY ARTICLE.fotos-texto SECTION.page-info.bifoto.reverse IMG:nth-of-type(1) {
  right: 5vw;
  height: 45%;
}
BODY ARTICLE.fotos-texto SECTION.page-info.bifoto.reverse IMG:nth-of-type(2) {
  top: 8vh;
}
BODY ARTICLE.fotos-texto SECTION.page-info.bifoto.reverse .page-info-container {
  position: relative;
  margin-top: 0;
}
@media (max-width: 890px) {
  BODY ARTICLE.fotos-texto SECTION.page-info {
    position: relative;
  }
  BODY ARTICLE.fotos-texto SECTION.page-info A.button {
    font-size: 200%;
  }
  BODY ARTICLE.fotos-texto SECTION.page-info IMG {
    height: 60%;
  }
  BODY ARTICLE.fotos-texto SECTION.page-info .page-info-container {
    padding-left: 0;
  }
  BODY ARTICLE.fotos-texto SECTION.page-info .page-info-container P {
    width: 90%;
    font-size: 250%;
  }
  BODY ARTICLE.fotos-texto SECTION.page-info.reverse IMG {
    width: 83%;
  }
  BODY ARTICLE.fotos-texto SECTION.page-info.reverse .page-info-container p {
    font-size: 250%;
  }
  BODY ARTICLE.fotos-texto SECTION.page-info.bifoto .page-info-container {
    width: 60%;
  }
}
@media (max-width: 767px) {
  BODY ARTICLE.fotos-texto SECTION.page-info A.button {
    font-size: 300%;
    margin-top: 1vw;
  }
  BODY ARTICLE.fotos-texto SECTION.page-info IMG {
    height: 50%;
  }
  BODY ARTICLE.fotos-texto SECTION.page-info .page-info-container {
    padding-left: 0;
  }
  BODY ARTICLE.fotos-texto SECTION.page-info .page-info-container P {
    font-size: 300%;
  }
  BODY ARTICLE.fotos-texto SECTION.page-info.reverse IMG {
    width: 83%;
  }
  BODY ARTICLE.fotos-texto SECTION.page-info.reverse .page-info-container p {
    font-size: 300%;
    padding-bottom: 0vw;
  }
  BODY ARTICLE.fotos-texto SECTION.page-info.bifoto .page-info-container {
    margin-top: 2vh;
  }
}
BODY ARTICLE.fotos-panoramic SECTION.page-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
BODY ARTICLE.fotos-panoramic SECTION.page-info IMG {
  height: 45%;
  width: 80%;
}
BODY ARTICLE.fotos-panoramic SECTION.page-info.reverse {
  flex-direction: column-reverse;
}
BODY ARTICLE.fotos-panoramic SECTION.page-info.bifoto IMG:nth-child(even) {
  align-self: flex-end;
}
BODY ARTICLE.texto SECTION.page-info {
  position: relative;
}
BODY ARTICLE.texto SECTION.page-info .page-info-text {
  width: 70%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 68%;
}
BODY ARTICLE.texto SECTION.page-info .page-info-text H2 {
  max-width: 35vw;
  margin-bottom: 1vh;
}
BODY ARTICLE.texto SECTION.page-info .page-info-text H3 {
  font-weight: 200;
  margin-bottom: 2vh;
  font-size: 120%;
  max-width: 35vw;
}
BODY ARTICLE.texto SECTION.page-info .page-info-text img {
  height: 30vh;
  width: 30vh;
  margin-bottom: 2vh;
}
BODY ARTICLE.texto SECTION.page-info .page-info-text P {
  max-width: 30vw;
}
BODY ARTICLE.texto SECTION.page-info .page-info-text.half {
  width: 40%;
}
@media (max-width: 890px) {
  BODY ARTICLE.texto SECTION.page-info {
    width: 90vw;
  }
  BODY ARTICLE.texto SECTION.page-info .page-info-text {
    width: 100%;
  }
  BODY ARTICLE.texto SECTION.page-info .page-info-text H2 {
    max-width: 40vw;
    font-size: 350%;
  }
  BODY ARTICLE.texto SECTION.page-info .page-info-text H3 {
    font-size: 250%;
    font-weight: 400;
    max-width: 55vw;
  }
  BODY ARTICLE.texto SECTION.page-info .page-info-text img {
    height: 50vw;
    width: 70vw;
  }
  BODY ARTICLE.texto SECTION.page-info .page-info-text P {
    font-size: 250%;
    max-width: 75vw;
  }
  BODY ARTICLE.texto SECTION.page-info .page-info-text.half {
    width: 50%;
  }
}
@media (max-width: 767px) {
  BODY ARTICLE.texto SECTION.page-info {
    width: 90vw;
  }
  BODY ARTICLE.texto SECTION.page-info .page-info-text {
    width: 100%;
  }
  BODY ARTICLE.texto SECTION.page-info .page-info-text H2 {
    max-width: 40vw;
    font-size: 450%;
  }
  BODY ARTICLE.texto SECTION.page-info .page-info-text H3 {
    font-size: 300%;
  }
  BODY ARTICLE.texto SECTION.page-info .page-info-text img {
    height: 50vw;
  }
  BODY ARTICLE.texto SECTION.page-info .page-info-text P {
    font-size: 300%;
  }
}
BODY ARTICLE.texto-videos SECTION.page-info .page-info-container {
  display: flex;
  margin-top: 2vh;
  position: absolute;
  width: 90%;
  height: 60%;
  bottom: 8vh;
}
BODY ARTICLE.texto-videos SECTION.page-info .page-info-container .page-info-col {
  position: relative;
}
BODY ARTICLE.texto-videos SECTION.page-info .page-info-container .page-info-col p {
  font-size: 250%;
}
BODY ARTICLE.texto-videos SECTION.page-info .page-info-container .page-info-col:nth-of-type(1) {
  width: 40%;
  padding-right: 1vw;
}
BODY ARTICLE.texto-videos SECTION.page-info .page-info-container .page-info-col:nth-of-type(2) {
  width: 60%;
}
BODY ARTICLE.texto-videos SECTION.page-info .page-info-container .page-info-col-container:nth-of-type(2) {
  bottom: 0;
  position: absolute;
  margin-right: 2vw;
}
BODY ARTICLE.texto-videos SECTION.page-info .page-info-container P {
  margin-top: 0;
}
BODY ARTICLE.texto-videos SECTION.page-info .page-info-container IMG {
  height: 100%;
}
@media (max-width: 890px) {
  BODY ARTICLE.texto-videos SECTION.page-info {
    position: relative;
    height: 100%;
  }
  BODY ARTICLE.texto-videos SECTION.page-info h2.small {
    font-size: 400%;
  }
  BODY ARTICLE.texto-videos SECTION.page-info .page-info-container {
    height: 50%;
  }
}
@media (max-width: 767px) {
  BODY ARTICLE.texto-videos SECTION.page-info h2.small {
    font-size: 400%;
  }
  BODY ARTICLE.texto-videos SECTION.page-info .page-info-container P {
    font-size: 300%;
  }
  BODY ARTICLE.texto-videos SECTION.page-info .page-info-container .page-info-col-container p {
    font-size: 320%;
  }
}
BODY ARTICLE.materiales-reciclados SECTION.page-info {
  display: flex;
  flex-direction: column;
  height: 60vh;
  padding-top: 15vh;
}
BODY ARTICLE.materiales-reciclados SECTION.page-info DIV.titulo {
  width: 50%;
  display: flex;
  flex-direction: column;
  padding-left: 2%;
}
BODY ARTICLE.materiales-reciclados SECTION.page-info DIV.titulo H1 {
  font-size: 350%;
}
BODY ARTICLE.materiales-reciclados SECTION.page-info DIV.titulo H2 {
  font-size: 130%;
  color: black;
  font-weight: 300;
}
BODY ARTICLE.materiales-reciclados SECTION.page-info DIV.wrap {
  display: flex;
  flex-direction: row;
  padding-top: 5vh;
}
BODY ARTICLE.materiales-reciclados SECTION.page-info DIV.wrap DIV {
  display: flex;
  flex-direction: column;
  width: 15%;
  margin: 2%;
}
BODY ARTICLE.materiales-reciclados SECTION.page-info DIV.wrap DIV IMG {
  height: 5vw;
  width: 6vw;
}
BODY ARTICLE.materiales-reciclados SECTION.page-info DIV.wrap DIV H3 {
  font-size: 90%;
  padding-top: 10%;
}
BODY ARTICLE.materiales-reciclados SECTION.page-info DIV.wrap DIV P {
  font-size: 80%;
  padding-top: 5%;
  line-height: 110%;
}
@media (max-width: 890px) {
  BODY ARTICLE.materiales-reciclados {
    height: 85vh;
  }
  BODY ARTICLE.materiales-reciclados SECTION.page-info {
    height: 100%;
    padding: 10vw 0vw;
  }
  BODY ARTICLE.materiales-reciclados SECTION.page-info DIV.titulo {
    padding: 8vw;
  }
  BODY ARTICLE.materiales-reciclados SECTION.page-info DIV.titulo H1 {
    font-size: 500%;
  }
  BODY ARTICLE.materiales-reciclados SECTION.page-info DIV.titulo H2 {
    font-size: 260%;
  }
  BODY ARTICLE.materiales-reciclados SECTION.page-info .responsive-scroll {
    height: 0;
  }
  BODY ARTICLE.materiales-reciclados SECTION.page-info DIV.wrap {
    overflow-y: scroll;
  }
  BODY ARTICLE.materiales-reciclados SECTION.page-info DIV.wrap DIV {
    min-width: 35vw;
    padding: 2%;
  }
  BODY ARTICLE.materiales-reciclados SECTION.page-info DIV.wrap DIV IMG.ico {
    height: 15vw;
  }
  BODY ARTICLE.materiales-reciclados SECTION.page-info DIV.wrap DIV H3 {
    font-size: 280%;
  }
  BODY ARTICLE.materiales-reciclados SECTION.page-info DIV.wrap DIV P {
    font-size: 200%;
  }
  BODY ARTICLE.materiales-reciclados SECTION.page-info DIV.wrap div:first-child {
    margin-left: 7vw;
  }
}
@media (max-width: 767px) {
  BODY ARTICLE.materiales-reciclados SECTION.page-info {
    padding-top: 0;
  }
  BODY ARTICLE.materiales-reciclados SECTION.page-info DIV.titulo H1 {
    font-size: 550%;
  }
  BODY ARTICLE.materiales-reciclados SECTION.page-info DIV.titulo H2 {
    font-size: 350%;
  }
  BODY ARTICLE.materiales-reciclados SECTION.page-info DIV.wrap DIV {
    width: 60vw;
    min-width: 50vw;
    padding: 2%;
  }
  BODY ARTICLE.materiales-reciclados SECTION.page-info DIV.wrap DIV IMG {
    height: 16vw;
    width: 18vw;
  }
  BODY ARTICLE.materiales-reciclados SECTION.page-info DIV.wrap DIV H3 {
    font-size: 320%;
  }
  BODY ARTICLE.materiales-reciclados SECTION.page-info DIV.wrap DIV P {
    font-size: 310%;
  }
}
BODY ARTICLE.wearcycle DIV.title {
  display: none;
}
BODY ARTICLE.wearcycle SECTION.page-info {
  display: flex;
  margin: auto;
  padding-top: 10vh;
}
BODY ARTICLE.wearcycle SECTION.page-info DIV {
  display: flex;
  flex-direction: column;
  padding: 2%;
  position: relative;
  height: 70vh;
  width: 100%;
}
BODY ARTICLE.wearcycle SECTION.page-info DIV H2 {
  color: black;
  font-size: 150%;
  padding-left: 2%;
}
BODY ARTICLE.wearcycle SECTION.page-info DIV P {
  font-size: 70%;
  line-height: 120%;
  padding-top: 2%;
  font-weight: 400;
  padding-left: 2%;
  min-height: 5vh;
}
BODY ARTICLE.wearcycle SECTION.page-info DIV A.btn-desplegable {
  font-size: 70%;
  padding-top: 10%;
  padding-left: 2%;
}
BODY ARTICLE.wearcycle SECTION.page-info DIV DIV.foto-texto {
  position: relative;
  padding-top: 5%;
}
BODY ARTICLE.wearcycle SECTION.page-info DIV DIV.foto-texto DIV.desplegable {
  position: absolute;
  background-color: rgba(255, 255, 253, 0.7);
  width: 98%;
  height: 98%;
  display: none;
}
BODY ARTICLE.wearcycle SECTION.page-info DIV DIV.foto-texto DIV.desplegable P {
  font-size: 65%;
  line-height: 130%;
  letter-spacing: 0.5px;
  padding: 5%;
}
@media (max-width: 890px) {
  BODY ARTICLE.wearcycle {
    padding-bottom: 5vw;
    margin-bottom: 10%;
  }
  BODY ARTICLE.wearcycle div.title {
    display: flex;
    padding: 0vw 5vw;
  }
  BODY ARTICLE.wearcycle div.title p {
    font-size: 600%;
    font-weight: 600;
    width: 90%;
  }
  BODY ARTICLE.wearcycle SECTION.page-info {
    padding-right: 10px;
    overflow: scroll;
    padding-top: 0vh;
    padding-bottom: 2vh;
  }
  BODY ARTICLE.wearcycle SECTION.page-info DIV {
    height: 100%;
    width: 49%;
    min-width: 40vw;
    padding: 0;
    padding-top: 7vw;
    margin-right: 3vw;
  }
  BODY ARTICLE.wearcycle SECTION.page-info DIV H2 {
    font-size: 400%;
    padding-left: 0;
  }
  BODY ARTICLE.wearcycle SECTION.page-info DIV P {
    font-size: 200%;
    width: 80%;
    padding-left: 0;
    padding-top: 2vw;
    min-height: 15vw;
  }
  BODY ARTICLE.wearcycle SECTION.page-info DIV A.btn-desplegable {
    font-size: 200%;
    padding-left: 0;
  }
  BODY ARTICLE.wearcycle SECTION.page-info DIV DIV.foto-texto {
    height: 70%;
    width: 90%;
  }
  BODY ARTICLE.wearcycle SECTION.page-info DIV DIV.foto-texto DIV.desplegable {
    width: 100%;
    display: none;
  }
  BODY ARTICLE.wearcycle SECTION.page-info DIV DIV.foto-texto DIV.desplegable P {
    font-size: 200%;
  }
}
@media (max-width: 767px) {
  BODY ARTICLE.wearcycle {
    margin-bottom: 0%;
  }
  BODY ARTICLE.wearcycle div.title {
    display: flex;
    padding: 0vw 5vw;
  }
  BODY ARTICLE.wearcycle div.title p {
    font-size: 700%;
  }
  BODY ARTICLE.wearcycle SECTION.page-info DIV {
    width: 99%;
    padding: 0;
    padding-top: 7vw;
    min-width: 70vw;
  }
  BODY ARTICLE.wearcycle SECTION.page-info DIV H2 {
    font-size: 400%;
  }
  BODY ARTICLE.wearcycle SECTION.page-info DIV P {
    font-size: 300%;
    width: 95%;
  }
  BODY ARTICLE.wearcycle SECTION.page-info DIV A.btn-desplegable {
    font-size: 300%;
  }
  BODY ARTICLE.wearcycle SECTION.page-info DIV DIV.foto-texto {
    width: 90%;
  }
  BODY ARTICLE.wearcycle SECTION.page-info DIV DIV.foto-texto DIV.desplegable {
    width: 100%;
  }
  BODY ARTICLE.wearcycle SECTION.page-info DIV DIV.foto-texto DIV.desplegable P {
    font-size: 320%;
  }
}
BODY ARTICLE.hightlights {
  width: auto;
}
BODY ARTICLE.hightlights SECTION.page-info {
  display: flex;
  padding: 0;
  position: relative;
}
BODY ARTICLE.hightlights SECTION.page-info DIV.titulo {
  background-color: #ffffff;
  width: 30vw;
  position: relative;
  padding: 15vh 2vw;
}
BODY ARTICLE.hightlights SECTION.page-info DIV.titulo H1 {
  font-size: 240%;
  text-align: left;
  position: relative;
  letter-spacing: -5%;
  line-height: 100%;
}
BODY ARTICLE.hightlights SECTION.page-info DIV.titulo p {
  padding-top: 1vw;
}
BODY ARTICLE.hightlights SECTION.page-info div.wrap {
  display: flex;
}
BODY ARTICLE.hightlights SECTION.page-info div.wrap DIV.container {
  position: relative;
  width: 26vw;
}
BODY ARTICLE.hightlights SECTION.page-info div.wrap DIV.container DIV.hightlights-detail {
  position: absolute;
  z-index: 9;
  margin: 6vh 2vw;
  bottom: 0;
}
BODY ARTICLE.hightlights SECTION.page-info div.wrap DIV.container DIV.hightlights-detail H3 {
  font-size: 110%;
  font-weight: 400;
  margin: 3vh 0;
}
BODY ARTICLE.hightlights SECTION.page-info div.wrap DIV.container DIV.hightlights-detail H2 {
  font-size: 120%;
  font-weight: 600;
}
BODY ARTICLE.hightlights.no-title .page-info .titulo {
  display: none;
}
BODY ARTICLE.hightlights.no-title .page-info .wrap {
  width: 100%;
}
@media (max-width: 890px) {
  BODY ARTICLE.hightlights {
    width: 100vw;
    height: auto;
  }
  BODY ARTICLE.hightlights SECTION.page-info {
    position: relative;
    flex-direction: column;
  }
  BODY ARTICLE.hightlights SECTION.page-info DIV.titulo {
    width: 100%;
    padding: 5vh 4vw;
    height: auto;
  }
  BODY ARTICLE.hightlights SECTION.page-info DIV.titulo H1 {
    font-size: 600%;
  }
  BODY ARTICLE.hightlights SECTION.page-info DIV.titulo p {
    font-size: 300%;
    padding-top: 5vw;
  }
  BODY ARTICLE.hightlights SECTION.page-info .responsive-scroll img {
    top: 0%;
    left: 45%;
  }
  BODY ARTICLE.hightlights SECTION.page-info div.wrap {
    width: 100vw;
    height: 60vh;
    overflow-y: scroll;
  }
  BODY ARTICLE.hightlights SECTION.page-info div.wrap DIV.container {
    width: 55vw;
  }
  BODY ARTICLE.hightlights SECTION.page-info div.wrap DIV.container img {
    width: 55vw;
  }
  BODY ARTICLE.hightlights SECTION.page-info div.wrap DIV.container DIV.hightlights-detail H3 {
    font-size: 300%;
    margin: 1vh 0;
  }
  BODY ARTICLE.hightlights SECTION.page-info div.wrap DIV.container DIV.hightlights-detail H2 {
    font-size: 270%;
    line-height: 110%;
  }
  BODY ARTICLE.hightlights SECTION.page-info div.wrap .container:last-child {
    width: 65vw;
  }
}
@media (max-width: 767px) {
  BODY ARTICLE.hightlights SECTION.page-info DIV.titulo H1 {
    font-size: 500%;
  }
  BODY ARTICLE.hightlights SECTION.page-info div.wrap {
    height: 120%;
    height: 60vh;
  }
  BODY ARTICLE.hightlights SECTION.page-info div.wrap DIV.container {
    width: 60vw;
  }
  BODY ARTICLE.hightlights SECTION.page-info div.wrap DIV.container img {
    width: 60vw;
  }
  BODY ARTICLE.hightlights SECTION.page-info div.wrap DIV.container DIV.hightlights-detail H3 {
    font-size: 340%;
    margin: 1vh 0;
  }
  BODY ARTICLE.hightlights SECTION.page-info div.wrap DIV.container DIV.hightlights-detail H2 {
    font-size: 330%;
    line-height: 110%;
  }
}
BODY ARTICLE.look-inspiration SECTION.page-info {
  height: 80vh;
  padding-top: 10vh;
}
BODY ARTICLE.look-inspiration SECTION.page-info H1 {
  font-size: 150%;
}
BODY ARTICLE.look-inspiration SECTION.page-info DIV.wrap {
  display: flex;
  padding-top: 2vh;
}
BODY ARTICLE.look-inspiration SECTION.page-info DIV.wrap DIV {
  display: flex;
  flex-direction: column;
  width: 25vw;
  padding-right: 3%;
}
BODY ARTICLE.look-inspiration SECTION.page-info DIV.wrap DIV IMG {
  width: 100%;
  padding: 1%;
  padding-left: 3%;
}
BODY ARTICLE.look-inspiration SECTION.page-info DIV.wrap DIV DIV.lista {
  display: flex;
  flex-direction: row;
  padding: 3%;
  padding-top: 5%;
}
BODY ARTICLE.look-inspiration SECTION.page-info DIV.wrap DIV DIV.lista DIV {
  display: flex;
  flex-direction: column;
  padding-right: 3%;
}
BODY ARTICLE.look-inspiration SECTION.page-info DIV.wrap DIV DIV.lista DIV H3 {
  font-size: 80%;
}
BODY ARTICLE.look-inspiration SECTION.page-info DIV.wrap DIV DIV.lista DIV P {
  font-size: 80%;
  padding-top: 1%;
}
@media (max-width: 890px) {
  BODY ARTICLE.look-inspiration .responsive-scroll img {
    top: 80%;
  }
  BODY ARTICLE.look-inspiration SECTION.page-info {
    width: 100%;
  }
  BODY ARTICLE.look-inspiration SECTION.page-info H1 {
    font-size: 390%;
  }
  BODY ARTICLE.look-inspiration SECTION.page-info DIV.wrap {
    overflow-y: scroll;
    width: 90vw;
  }
  BODY ARTICLE.look-inspiration SECTION.page-info DIV.wrap DIV {
    width: 65vw;
  }
  BODY ARTICLE.look-inspiration SECTION.page-info DIV.wrap DIV DIV.lista DIV H3 {
    font-size: 180%;
  }
  BODY ARTICLE.look-inspiration SECTION.page-info DIV.wrap DIV DIV.lista DIV P {
    font-size: 180%;
  }
}
@media (max-width: 767px) {
  BODY ARTICLE.look-inspiration SECTION.page-info H1 {
    font-size: 500%;
  }
  BODY ARTICLE.look-inspiration SECTION.page-info DIV.wrap {
    overflow-y: scroll;
  }
  BODY ARTICLE.look-inspiration SECTION.page-info DIV.wrap DIV {
    width: 75vw;
  }
  BODY ARTICLE.look-inspiration SECTION.page-info DIV.wrap DIV DIV.lista DIV H3 {
    font-size: 300%;
  }
  BODY ARTICLE.look-inspiration SECTION.page-info DIV.wrap DIV DIV.lista DIV P {
    font-size: 300%;
  }
}
BODY ARTICLE.our-nature {
  display: flex;
  position: relative;
}
BODY ARTICLE.our-nature DIV.wrap-absolute {
  width: 100%;
  display: flex;
  position: relative;
}
BODY ARTICLE.our-nature DIV.wrap-absolute SECTION.our-values {
  display: flex;
  flex-direction: column;
  padding: 15vh 1vw;
  width: 55%;
}
BODY ARTICLE.our-nature DIV.wrap-absolute SECTION.our-values DIV {
  display: flex;
}
BODY ARTICLE.our-nature DIV.wrap-absolute SECTION.our-values DIV DIV {
  display: flex;
  flex-direction: column;
  max-width: 240px;
  padding-right: 5%;
}
BODY ARTICLE.our-nature DIV.wrap-absolute SECTION.our-values DIV DIV H3 {
  font-size: 100%;
  line-height: 120%;
  min-height: 3vh;
  min-height: 5vh;
}
BODY ARTICLE.our-nature DIV.wrap-absolute SECTION.our-values DIV DIV P {
  font-size: 65%;
  padding-top: 5%;
  line-height: 130%;
}
BODY ARTICLE.our-nature DIV.wrap-absolute SECTION.our-values DIV {
  display: flex;
  height: 50%;
}
BODY ARTICLE.our-nature DIV.wrap-absolute SECTION.our-values DIV H1 {
  font-size: 400%;
  padding-top: 25vh;
  align-self: flex-end;
}
BODY ARTICLE.our-nature DIV.wrap-absolute SECTION.our-target {
  display: flex;
  width: 45%;
  padding: 15vh 0vw;
}
BODY ARTICLE.our-nature DIV.wrap-absolute SECTION.our-target IMG {
  max-width: 25vw;
  height: 100%;
}
BODY ARTICLE.our-nature DIV.wrap-absolute SECTION.our-target DIV {
  padding-left: 2%;
  padding-right: 2%;
  height: 70vh;
  align-self: flex-end;
}
BODY ARTICLE.our-nature DIV.wrap-absolute SECTION.our-target DIV DIV {
  height: 60%;
}
BODY ARTICLE.our-nature DIV.wrap-absolute SECTION.our-target DIV DIV H2 {
  font-size: 190%;
  font-size: 400%;
  color: #000000;
}
BODY ARTICLE.our-nature DIV.wrap-absolute SECTION.our-target DIV DIV.target P {
  font-size: 65%;
  line-height: 130%;
}
BODY ARTICLE.our-nature DIV.wrap-absolute SECTION.our-target DIV DIV.target H3 {
  font-size: 90%;
  line-height: 120%;
}
@media (max-width: 890px) {
  BODY ARTICLE.our-nature {
    padding: 10vw 4vw;
    height: auto;
  }
  BODY ARTICLE.our-nature DIV.wrap-absolute {
    flex-direction: column;
  }
  BODY ARTICLE.our-nature DIV.wrap-absolute SECTION.our-values {
    width: 100%;
    flex-direction: column-reverse;
    padding: 0vh 1vw;
  }
  BODY ARTICLE.our-nature DIV.wrap-absolute SECTION.our-values DIV {
    flex-wrap: wrap;
    padding-top: 5vw;
  }
  BODY ARTICLE.our-nature DIV.wrap-absolute SECTION.our-values DIV DIV {
    width: 50%;
    max-width: 50%;
    padding-top: 5vw;
  }
  BODY ARTICLE.our-nature DIV.wrap-absolute SECTION.our-values DIV DIV H3 {
    font-size: 220%;
    line-height: 120%;
    min-height: 2vh;
    min-height: 4vh;
  }
  BODY ARTICLE.our-nature DIV.wrap-absolute SECTION.our-values DIV DIV P {
    font-size: 165%;
    padding-top: 0%;
  }
  BODY ARTICLE.our-nature DIV.wrap-absolute SECTION.our-values DIV {
    height: auto;
  }
  BODY ARTICLE.our-nature DIV.wrap-absolute SECTION.our-values DIV H1 {
    padding-top: 0vh;
  }
  BODY ARTICLE.our-nature DIV.wrap-absolute SECTION.our-target {
    padding: 0;
    width: 100%;
    flex-direction: column;
  }
  BODY ARTICLE.our-nature DIV.wrap-absolute SECTION.our-target img {
    max-width: 100%;
    height: 40vh;
  }
  BODY ARTICLE.our-nature DIV.wrap-absolute SECTION.our-target DIV {
    height: auto;
    padding: 3vw 0vw;
  }
  BODY ARTICLE.our-nature DIV.wrap-absolute SECTION.our-target DIV DIV {
    height: 0%;
  }
  BODY ARTICLE.our-nature DIV.wrap-absolute SECTION.our-target DIV DIV.target P {
    font-size: 185%;
    padding-top: 3vw;
  }
  BODY ARTICLE.our-nature DIV.wrap-absolute SECTION.our-target DIV DIV.target H3 {
    font-size: 190%;
  }
}
@media (max-width: 767px) {
  BODY ARTICLE.our-nature DIV.wrap-absolute {
    flex-direction: column;
  }
  BODY ARTICLE.our-nature DIV.wrap-absolute SECTION.our-values DIV DIV {
    width: 100%;
    max-width: 100%;
  }
  BODY ARTICLE.our-nature DIV.wrap-absolute SECTION.our-values DIV DIV H3 {
    font-size: 350%;
    line-height: 120%;
    min-height: 2vh;
    min-height: 4vh;
  }
  BODY ARTICLE.our-nature DIV.wrap-absolute SECTION.our-values DIV DIV P {
    font-size: 300%;
    padding-top: 0%;
  }
  BODY ARTICLE.our-nature DIV.wrap-absolute SECTION.our-values DIV {
    height: auto;
  }
  BODY ARTICLE.our-nature DIV.wrap-absolute SECTION.our-values DIV H1 {
    padding-top: 0vh;
    font-size: 550%;
  }
  BODY ARTICLE.our-nature DIV.wrap-absolute SECTION.our-target {
    padding: 0;
    width: 100%;
  }
  BODY ARTICLE.our-nature DIV.wrap-absolute SECTION.our-target DIV {
    height: 40vh;
  }
  BODY ARTICLE.our-nature DIV.wrap-absolute SECTION.our-target DIV DIV {
    height: 40%;
  }
  BODY ARTICLE.our-nature DIV.wrap-absolute SECTION.our-target DIV DIV H2 {
    font-size: 550%;
  }
  BODY ARTICLE.our-nature DIV.wrap-absolute SECTION.our-target DIV DIV.target P {
    font-size: 300%;
  }
  BODY ARTICLE.our-nature DIV.wrap-absolute SECTION.our-target DIV DIV.target H3 {
    font-size: 320%;
  }
}
BODY ARTICLE.videos-prendas {
  display: flex;
}
BODY ARTICLE.videos-prendas SECTION.page-info {
  display: flex;
}
BODY ARTICLE.videos-prendas SECTION.page-info DIV.videos-prendas-collection {
  display: flex;
  flex-direction: column;
  margin-right: 7vw;
  height: 85vh;
}
BODY ARTICLE.videos-prendas SECTION.page-info DIV.videos-prendas-collection H2 {
  color: black;
  font-size: 80%;
  padding-top: 2vh;
  margin-left: 3vw;
  position: absolute;
}
BODY ARTICLE.videos-prendas SECTION.page-info DIV.videos-prendas-collection DIV.videos-prendas-collection-wrapper {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  max-height: 100%;
  padding-top: 5vh;
  width: 10vw;
}
BODY ARTICLE.videos-prendas SECTION.page-info DIV.videos-prendas-collection DIV.videos-prendas-collection-wrapper A.videos-prendas-collection-item, BODY ARTICLE.videos-prendas SECTION.page-info DIV.videos-prendas-collection DIV.videos-prendas-collection-wrapper DIV.videos-prendas-collection-item {
  display: flex;
  flex-direction: column;
  padding: 1.5vh;
  text-decoration: none;
  width: 10vw;
}
BODY ARTICLE.videos-prendas SECTION.page-info DIV.videos-prendas-collection DIV.videos-prendas-collection-wrapper A.videos-prendas-collection-item IMG, BODY ARTICLE.videos-prendas SECTION.page-info DIV.videos-prendas-collection DIV.videos-prendas-collection-wrapper DIV.videos-prendas-collection-item IMG {
  height: 10vh;
  min-height: 5vh;
  margin: auto;
}
BODY ARTICLE.videos-prendas SECTION.page-info DIV.videos-prendas-collection DIV.videos-prendas-collection-wrapper A.videos-prendas-collection-item H3, BODY ARTICLE.videos-prendas SECTION.page-info DIV.videos-prendas-collection DIV.videos-prendas-collection-wrapper DIV.videos-prendas-collection-item H3 {
  text-align: center;
  font-size: 60%;
  min-height: 3vw;
  padding-top: 7px;
}
BODY ARTICLE.videos-prendas SECTION.page-info DIV.videos-prendas-collection DIV.videos-prendas-collection-wrapper .videos-prendas-collection-item.desktop {
  display: flex;
}
BODY ARTICLE.videos-prendas SECTION.page-info DIV.videos-prendas-collection DIV.videos-prendas-collection-wrapper .videos-prendas-collection-item.responsive {
  display: none;
}
BODY ARTICLE.videos-prendas SECTION.page-info DIV.videos-prendas-collection.width-1-column {
  width: 10vw;
}
BODY ARTICLE.videos-prendas SECTION.page-info DIV.videos-prendas-collection.width-2-column {
  width: 20vw;
}
BODY ARTICLE.videos-prendas SECTION.page-info DIV.videos-prendas-collection.width-3-column {
  width: 30vw;
}
BODY ARTICLE.videos-prendas SECTION.page-info DIV.videos-prendas-collection.width-4-column {
  width: 40vw;
}
BODY ARTICLE.videos-prendas SECTION.page-info DIV.videos-prendas-collection.width-5-column {
  width: 50vw;
}
BODY ARTICLE.videos-prendas SECTION.page-info DIV.videos-prendas-collection.width-6-column {
  width: 60vw;
}
BODY ARTICLE.videos-prendas SECTION.page-info DIV.videos-prendas-collection.width-7-column {
  width: 70vw;
}
BODY ARTICLE.videos-prendas SECTION.page-info DIV.videos-prendas-collection.width-8-column {
  width: 80vw;
}
BODY ARTICLE.videos-prendas SECTION.page-info DIV.videos-prendas-collection.width-9-column {
  width: 90vw;
}
BODY ARTICLE.videos-prendas SECTION.page-info DIV.videos-prendas-collection.width-10-column {
  width: 100vw;
}
BODY ARTICLE.videos-prendas SECTION.page-info DIV.videos-prendas-collection.width-11-column {
  width: 110vw;
}
BODY ARTICLE.videos-prendas SECTION.page-info DIV.videos-prendas-collection.width-12-column {
  width: 120vw;
}
BODY ARTICLE.videos-prendas SECTION.page-info DIV.videos-prendas-collection.width-13-column {
  width: 130vw;
}
BODY ARTICLE.videos-prendas SECTION.page-info DIV.videos-prendas-collection.width-14-column {
  width: 140vw;
}
BODY ARTICLE.videos-prendas SECTION.page-info DIV.videos-prendas-collection.width-15-column {
  width: 150vw;
}
BODY ARTICLE.videos-prendas SECTION.page-info DIV.videos-prendas-collection.width-16-column {
  width: 160vw;
}
BODY ARTICLE.videos-prendas SECTION.page-info DIV.videos-prendas-collection.width-17-column {
  width: 170vw;
}
BODY ARTICLE.videos-prendas SECTION.page-info DIV.videos-prendas-collection.width-18-column {
  width: 180vw;
}
BODY ARTICLE.videos-prendas SECTION.page-info DIV.videos-prendas-collection.width-19-column {
  width: 190vw;
}
BODY ARTICLE.videos-prendas SECTION.page-info DIV.videos-prendas-collection.width-20-column {
  width: 200vw;
}
BODY ARTICLE.videos-prendas SECTION.page-info .videos-prendas-collection.inactive {
  pointer-events: none;
}
BODY ARTICLE.videos-prendas.responsive {
  display: none;
}
@media (max-width: 890px) {
  BODY ARTICLE.videos-prendas SECTION.page-info {
    width: 100%;
    overflow-y: scroll;
    padding: 20vw 0vw;
    display: flex;
    flex-direction: column;
  }
  BODY ARTICLE.videos-prendas SECTION.page-info DIV.videos-prendas-collection {
    height: 80vh;
    overflow-x: auto;
  }
  BODY ARTICLE.videos-prendas SECTION.page-info DIV.videos-prendas-collection H2 {
    font-size: 320%;
    margin-left: 8vw;
    padding-top: 3vw;
    padding-bottom: 3vw;
  }
  BODY ARTICLE.videos-prendas SECTION.page-info DIV.videos-prendas-collection DIV.videos-prendas-collection-wrapper {
    padding-top: 11vw;
  }
  BODY ARTICLE.videos-prendas SECTION.page-info DIV.videos-prendas-collection DIV.videos-prendas-collection-wrapper A.videos-prendas-collection-item, BODY ARTICLE.videos-prendas SECTION.page-info DIV.videos-prendas-collection DIV.videos-prendas-collection-wrapper DIV.videos-prendas-collection-item {
    width: 23vw;
  }
  BODY ARTICLE.videos-prendas SECTION.page-info DIV.videos-prendas-collection DIV.videos-prendas-collection-wrapper A.videos-prendas-collection-item IMG, BODY ARTICLE.videos-prendas SECTION.page-info DIV.videos-prendas-collection DIV.videos-prendas-collection-wrapper DIV.videos-prendas-collection-item IMG {
    height: 13vh;
  }
  BODY ARTICLE.videos-prendas SECTION.page-info DIV.videos-prendas-collection DIV.videos-prendas-collection-wrapper A.videos-prendas-collection-item H3, BODY ARTICLE.videos-prendas SECTION.page-info DIV.videos-prendas-collection DIV.videos-prendas-collection-wrapper DIV.videos-prendas-collection-item H3 {
    font-size: 200%;
  }
  BODY ARTICLE.videos-prendas SECTION.page-info DIV.videos-prendas-collection DIV.videos-prendas-collection-wrapper .videos-prendas-collection-item.desktop {
    display: none;
  }
  BODY ARTICLE.videos-prendas SECTION.page-info DIV.videos-prendas-collection DIV.videos-prendas-collection-wrapper .videos-prendas-collection-item.responsive {
    display: flex;
  }
  BODY ARTICLE.videos-prendas SECTION.page-info DIV.videos-prendas-collection.width-1-column {
    width: 100%;
    margin-right: 0;
  }
  BODY ARTICLE.videos-prendas SECTION.page-info DIV.videos-prendas-collection.width-2-column {
    width: 100%;
    margin-right: 0;
  }
  BODY ARTICLE.videos-prendas SECTION.page-info DIV.videos-prendas-collection.width-3-column {
    width: 100%;
    margin-right: 0;
  }
  BODY ARTICLE.videos-prendas SECTION.page-info DIV.videos-prendas-collection.width-4-column {
    width: 100%;
    margin-right: 0;
  }
  BODY ARTICLE.videos-prendas SECTION.page-info DIV.videos-prendas-collection.width-5-column {
    width: 100%;
    margin-right: 0;
  }
  BODY ARTICLE.videos-prendas SECTION.page-info DIV.videos-prendas-collection.width-6-column {
    width: 100%;
    margin-right: 0;
  }
  BODY ARTICLE.videos-prendas SECTION.page-info DIV.videos-prendas-collection.width-7-column {
    width: 100%;
    margin-right: 0;
  }
  BODY ARTICLE.videos-prendas SECTION.page-info DIV.videos-prendas-collection.width-8-column {
    width: 100%;
    margin-right: 0;
  }
  BODY ARTICLE.videos-prendas SECTION.page-info DIV.videos-prendas-collection.width-9-column {
    width: 100%;
    margin-right: 0;
  }
  BODY ARTICLE.videos-prendas SECTION.page-info DIV.videos-prendas-collection.width-10-column {
    width: 100%;
    margin-right: 0;
  }
  BODY ARTICLE.videos-prendas SECTION.page-info DIV.videos-prendas-collection.width-11-column {
    width: 100%;
    margin-right: 0;
  }
  BODY ARTICLE.videos-prendas SECTION.page-info DIV.videos-prendas-collection.width-12-column {
    width: 100%;
    margin-right: 0;
  }
  BODY ARTICLE.videos-prendas SECTION.page-info DIV.videos-prendas-collection.width-13-column {
    width: 100%;
    margin-right: 0;
  }
  BODY ARTICLE.videos-prendas SECTION.page-info DIV.videos-prendas-collection.width-14-column {
    width: 100%;
    margin-right: 0;
  }
  BODY ARTICLE.videos-prendas SECTION.page-info DIV.videos-prendas-collection.width-15-column {
    width: 100%;
    margin-right: 0;
  }
  BODY ARTICLE.videos-prendas SECTION.page-info DIV.videos-prendas-collection.width-16-column {
    width: 100%;
    margin-right: 0;
  }
  BODY ARTICLE.videos-prendas SECTION.page-info DIV.videos-prendas-collection.width-17-column {
    width: 100%;
    margin-right: 0;
  }
  BODY ARTICLE.videos-prendas SECTION.page-info DIV.videos-prendas-collection.width-18-column {
    width: 100%;
    margin-right: 0;
  }
  BODY ARTICLE.videos-prendas SECTION.page-info DIV.videos-prendas-collection.width-19-column {
    width: 100%;
    margin-right: 0;
  }
  BODY ARTICLE.videos-prendas SECTION.page-info DIV.videos-prendas-collection.width-20-column {
    width: 100%;
    margin-right: 0;
  }
  BODY ARTICLE.videos-prendas.desktop {
    display: none;
  }
  BODY ARTICLE.videos-prendas.responsive {
    display: flex;
  }
}
@media (max-width: 767px) {
  BODY ARTICLE.videos-prendas SECTION.page-info H2 {
    font-size: 320%;
    margin-left: 8vw;
    padding-top: 3vw;
  }
  BODY ARTICLE.videos-prendas SECTION.page-info DIV.videos-prendas-collection {
    height: 80vh;
    overflow-x: auto;
  }
  BODY ARTICLE.videos-prendas SECTION.page-info DIV.videos-prendas-collection DIV.videos-prendas-collection-wrapper A.videos-prendas-collection-item, BODY ARTICLE.videos-prendas SECTION.page-info DIV.videos-prendas-collection DIV.videos-prendas-collection-wrapper DIV.videos-prendas-collection-item {
    width: 35vw;
  }
  BODY ARTICLE.videos-prendas SECTION.page-info DIV.videos-prendas-collection DIV.videos-prendas-collection-wrapper A.videos-prendas-collection-item IMG, BODY ARTICLE.videos-prendas SECTION.page-info DIV.videos-prendas-collection DIV.videos-prendas-collection-wrapper DIV.videos-prendas-collection-item IMG {
    height: 12vh;
  }
  BODY ARTICLE.videos-prendas SECTION.page-info DIV.videos-prendas-collection DIV.videos-prendas-collection-wrapper A.videos-prendas-collection-item H3, BODY ARTICLE.videos-prendas SECTION.page-info DIV.videos-prendas-collection DIV.videos-prendas-collection-wrapper DIV.videos-prendas-collection-item H3 {
    font-size: 300%;
  }
}
BODY ARTICLE.color-inspiration SECTION {
  display: flex;
  flex-direction: column;
  height: 90vh;
  margin-top: 10vh;
}
BODY ARTICLE.color-inspiration SECTION H1 {
  font-size: 230%;
  padding: 3vh;
  height: 10%;
}
BODY ARTICLE.color-inspiration SECTION IMG {
  height: 90%;
}
@media (max-width: 890px) {
  BODY ARTICLE.color-inspiration {
    position: relative;
  }
  BODY ARTICLE.color-inspiration SECTION {
    display: flex;
    flex-direction: column;
    height: 90vh;
    margin-top: 10vh;
  }
  BODY ARTICLE.color-inspiration SECTION H1 {
    font-size: 230%;
    padding: 3vh;
    height: 10%;
  }
  BODY ARTICLE.color-inspiration SECTION IMG {
    height: 90%;
  }
}
BODY ARTICLE.materiales-sostenibles SECTION.page-info div.wrap {
  display: flex;
  height: 100%;
}
BODY ARTICLE.materiales-sostenibles SECTION.page-info div.wrap div.image {
  height: 100%;
  display: flex;
  align-items: center;
}
BODY ARTICLE.materiales-sostenibles SECTION.page-info div.wrap div.image img {
  height: 100%;
}
BODY ARTICLE.materiales-sostenibles SECTION.page-info div.wrap DIV.textos {
  margin-left: 2vw;
}
BODY ARTICLE.materiales-sostenibles SECTION.page-info div.wrap DIV.textos DIV.bloques {
  display: flex;
  flex-wrap: wrap;
  margin-top: 4vh;
}
BODY ARTICLE.materiales-sostenibles SECTION.page-info div.wrap DIV.textos DIV.bloques div.bloque {
  max-width: 29%;
  margin-right: 1.5vw;
  margin-bottom: 1vw;
}
BODY ARTICLE.materiales-sostenibles SECTION.page-info div.wrap DIV.textos DIV.bloques div.bloque H3 {
  font-size: 90%;
  padding-bottom: 1.5vh;
  line-height: 130%;
}
BODY ARTICLE.materiales-sostenibles SECTION.page-info div.wrap DIV.textos DIV.bloques div.bloque P {
  font-size: 65%;
  line-height: 130%;
}

/* para monitores HD
@media (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 144dpi){ 
    $tamanoTipo: .8vw;
    BODY { font-size: $tamanoTipo; }    
}
 */
@media (min-width: 2800px) {
  BODY {
    font-size: 1.6vw;
  }
}
@media (min-width: 2500px) {
  ARTICLE {
    height: 70vh;
  }
}
@media (min-width: 1800px) {
  BODY {
    font-size: 1.2vw;
  }
}
@media (max-width: 1024px) {
  .no-desktop {
    display: initial;
  }
  BODY {
    font-size: 1.2vw;
  }
}
/* @media (max-width: 1023px) { 
    $tamanoTipo: 1.2vw;
    BODY { 
        ARTICLE { 
            &.block-mobile { display: flex; flex-direction: column; }
        }
    }
} */
@media (max-width: 890px) {
  BODY {
    overflow-y: scroll;
  }
  BODY .body-container {
    display: flex;
    flex-direction: column;
    overflow-y: scroll;
    width: 100vw;
  }
  BODY ARTICLE.block-mobile {
    flex-direction: column;
  }
}

/*# sourceMappingURL=app.css.map */
