/* ----------------------------------------- */
@font-face {
  font-family: "PrequelDemo-Regular";
  src: url("../fonts/PrequelDemo-Regular.ttf");
}
.Prequel {
  font-family: "PrequelDemo-Regular", sans-serif;
  font-weight: normal;
}
.Ubuntu {
  font-family: 'Ubuntu', sans-serif;
}
/* ----------------------------------------- */
/* ----------------------------------------- */
.red-link {
  color: #d70a00;
}
.form-link {
  color: #FFF;
  text-decoration: underline;
}
/* ----------------------------------------- */
input {
  color: #FFF;
  background: none;
  outline: none;
  border: none;
  font-weight: 300;
  border-bottom: 3px solid #fff;
  padding: 0;
  border-radius: 0;
  -webkit-appearance: none;
}
::-webkit-input-placeholder {
  color: transparent;
}
:-ms-input-placeholder {
  color: transparent;
}
::placeholder {
  color: transparent;
}
input:placeholder-shown + label {
  transform-origin: left bottom;
  transform: translate(0, 0.8rem) scale(1);
  cursor: text;
}
::-webkit-input-placeholder {
  opacity: 0;
  transition: inherit;
  text-transform: uppercase;
}
input:focus::-webkit-input-placeholder {
  opacity: 0;
}
input:not(:placeholder-shown) + label,
input:focus + label {
  transform: translate(0, -0.5rem) scale(1);
  font-size: 13px;
}
label,
input {
  font-size: 16px;
  transition: all 0.2s;
  touch-action: manipulation;
}
.form-field {
  display: flex;
  flex-flow: column-reverse;
  color: #FFF;
}
.form-field label {
  text-transform: uppercase;
}
a {
  transition: 0.3s all ease-in-out;
}
a:hover {
  opacity: 0.7;
}
h3 {
  margin: 0;
}
picture img {
  object-fit: cover;
}
img {
  display: block;
  max-width: 100%;
}
p {
  font-size: 20px;
  line-height: 2;
  margin: 0;
  color: #FFF;
}
.button {
  display: flex;
  align-items: center;
  border: none;
  background: #d70a00;
  height: 58px;
  padding: 0 4.25em;
  cursor: pointer;
  outline: none;
  z-index: 0;
  position: relative;
  box-shadow: 0px 0px 17px 1px rgba(0, 0, 0, 0.34);
}
.button span {
  color: #FFF;
  font-size: 20px;
  text-transform: uppercase;
  font-weight: bold;
  display: block;
  transition: color 0.3s ease;
  position: relative;
  z-index: 1;
  margin: 0 auto;
}
.button:after {
  content: '';
  background: #FFF;
  height: 100%;
  width: 0;
  position: absolute;
  transition: 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.button:before {
  top: 0;
  left: 0;
  right: auto;
}
.button:after {
  bottom: 0;
  right: 0;
  left: auto;
}
.button:hover {
  opacity: 1;
}
.button:hover:before {
  width: 100%;
  right: 0;
  left: auto;
}
.button:hover:after {
  width: 100%;
  left: 0;
  right: auto;
}
.button:hover span {
  color: #d70a00;
}
.email-popup {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  width: 100vw;
  background: rgba(0, 0, 0, 0.7);
  z-index: 999999;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  visibility: visible;
  pointer-events: visible;
  transition: 250ms all ease-in-out;
}
.email-popup.closed {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.email-popup .close {
  position: absolute;
  right: 0;
  top: 0;
  padding: 1em 1.5em;
  font-family: Arial, sans-serif;
  font-size: 22px;
  cursor: pointer;
}
.email-popup .wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 500px;
  min-height: 160px;
  padding: 1em 5%;
  background: #fff;
  color: #1b1a1a;
}
.email-popup .wrapper p {
  text-align: center;
  line-height: 30px;
  color: #1b1a1a;
}
.email-popup .wrapper p a {
  color: inherit;
  font-weight: 400;
}
/* ----------------------------------------- */
/* ENGLISH */
html body.en .join [class*="row"] [class*="col"] > span {
  max-width: 100%;
  margin-bottom: 1em;
}
html body.en .join [class*="row"] [class*="col"] p {
  margin-bottom: 3em;
}
html body.en .main-banner form .wrapper h3 {
  padding-right: 0;
}
html body {
  font-family: 'Ubuntu', sans-serif;
  font-weight: 300;
  /* ARTICLES */
}
html body header {
  background: #1b1a1a;
  height: 78px;
  position: fixed;
  top: 0;
  z-index: 99999;
  transition: top 0.2s ease-in-out;
  width: 80%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 10%;
}
html body header .logo {
  width: 94px;
}
html body header nav ul {
  display: flex;
  justify-content: space-between;
}
html body header nav ul li {
  margin: 0 1.5em;
}
html body header nav ul li a {
  font-family: "PrequelDemo-Regular", sans-serif;
  font-weight: normal;
  color: #FFF;
  font-size: 17px;
}
html body header nav ul li:last-child {
  margin-right: 0;
}
html body article {
  overflow: hidden;
}
html body .main-banner {
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  min-height: 650px;
}
html body .main-banner .logo {
  position: absolute;
  right: 5%;
  bottom: calc(6% - -90px);
  transform: translate(-5%, -6%);
  width: 34vh;
}
html body .main-banner img {
  height: calc(100% - 90px);
  width: 100%;
  object-fit: cover;
}
html body .main-banner form {
  width: 100%;
  background: #1b1a1a;
  color: #FFF;
  padding: 1em 0;
}
html body .main-banner form .wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
html body .main-banner form .wrapper h3 {
  cursor: text;
  font-size: 24.5px;
  padding-right: 1.5em;
  font-family: "PrequelDemo-Regular", sans-serif;
  font-weight: normal;
}
html body .main-banner form .wrapper h3 a {
  pointer-events: none;
  color: inherit;
}
html body .main-banner form .wrapper h3 br {
  display: none;
}
html body .main-banner form .wrapper .form-field {
  margin: 0 2em;
  width: 317px;
  height: 58px;
}
html body .details {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding: 7em 0;
  background: #FFF;
  position: relative;
}
html body .details .left,
html body .details .right {
  width: 40%;
}
html body .details .left span {
  font-family: "PrequelDemo-Regular", sans-serif;
  font-weight: normal;
  font-size: 32.5px;
  border-bottom: 4px solid;
  margin-bottom: 1em;
  display: inline-block;
}
html body .details .left h3 {
  font-family: "PrequelDemo-Regular", sans-serif;
  font-weight: normal;
  color: #1b1a1a;
  font-size: 58px;
}
html body .details .right p {
  color: #1b1a1a;
  max-width: 540px;
}
html body .how-works {
  display: flex;
  flex-wrap: wrap;
}
html body .how-works picture,
html body .how-works > div {
  width: 50%;
}
html body .how-works > div {
  background: #1b1a1a;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 21%;
  padding: 0% 14.5%;
}
html body .how-works > div .wrapper h3 {
  font-family: "PrequelDemo-Regular", sans-serif;
  font-weight: normal;
  font-size: 32.5px;
  border-bottom: 4px solid;
  margin-bottom: 1em;
  display: inline-block;
}
html body .how-works > div .wrapper span {
  font-family: "PrequelDemo-Regular", sans-serif;
  font-weight: normal;
  font-size: 58px;
  color: #FFF;
  margin-bottom: 0.5em;
  display: inline-block;
}
html body .join {
  background: #00274a;
  padding: 7% 0;
}
html body .join [class*="row"] {
  padding: 0 5%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  overflow: hidden;
}
html body .join [class*="row"] [class*="col"] {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
html body .join [class*="row"] [class*="col"] h3,
html body .join [class*="row"] [class*="col"] > span {
  font-family: "PrequelDemo-Regular", sans-serif;
  font-weight: normal;
}
html body .join [class*="row"] [class*="col"] h3 {
  font-size: 32.5px;
  border-bottom: 4px solid;
  display: inline-block;
  margin-bottom: 1em;
}
html body .join [class*="row"] [class*="col"] > span {
  max-width: 440px;
  color: #FFF;
  font-size: 58px;
  margin-bottom: 2em;
}
html body .join [class*="row"] [class*="col"] p {
  max-width: 530px;
  margin-bottom: 5em;
}
html body .join [class*="row"] [class*="col"] .form-field {
  width: 100%;
}
html body .join [class*="row"] [class*="col"] button {
  padding: 0 6em;
}
html body .join [class*="row"] [class*="col"].col-01 {
  width: 35%;
  margin: 0 10% 0 5%;
}
html body .media {
  padding: 7% 0;
  background: #FFF;
  position: relative;
}
html body .media .title {
  padding: 0 160px;
  margin-bottom: 7%;
}
html body .media .title span {
  font-family: "PrequelDemo-Regular", sans-serif;
  font-weight: normal;
  font-size: 32.5px;
  border-bottom: 4px solid;
  margin-bottom: 1em;
  display: inline-block;
}
html body .media .title h3 {
  font-family: "PrequelDemo-Regular", sans-serif;
  font-weight: normal;
  color: #1b1a1a;
  font-size: 58px;
}
html body .media .swiper-container {
  width: 100%;
  height: 100%;
}
html body .media .swiper-container .swiper-slide {
  width: 310px;
}
html body .media .swiper-container .swiper-slide .media-item {
  width: 310px;
  height: 375px;
}
html body .media .swiper-container .swiper-slide .media-item .media-item-contents {
  width: 310px;
  height: 375px;
  background: black;
  color: white;
  position: relative;
}
html body .media .swiper-container .swiper-slide .media-item .media-item-contents .media-item-logo {
  width: 216px;
  height: 100px;
  position: absolute;
  top: 35px;
  left: 47px;
  text-align: center;
}
html body .media .swiper-container .swiper-slide .media-item .media-item-contents .media-item-logo img {
  width: 100%;
  display: block;
}
html body .media .swiper-container .swiper-slide .media-item .media-item-contents .media-item-text {
  text-transform: uppercase;
  font-style: italic;
  position: absolute;
  top: 160px;
  left: 47px;
  right: 47px;
  font-size: 14px;
  line-height: 30px;
  font-weight: 400;
  height: 120px;
  overflow: hidden;
}
html body .media .swiper-container .swiper-slide .media-item .media-item-contents .media-item-link {
  position: absolute;
  bottom: 35px;
  left: 47px;
}
html body .media .swiper-container .swiper-slide .media-item .media-item-contents .media-item-link a {
  text-transform: uppercase;
  color: red;
  display: inline-block;
  padding-bottom: 3px;
  border-bottom: 1px solid red;
  font-size: 14px;
}
html body .media .swiper-controls {
  padding: 1em 160px 0 0;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
}
html body .media .swiper-controls a {
  cursor: pointer;
  font-size: 2em;
}
html body .media .swiper-controls a:first-child {
  margin-right: 20px;
}
html body .media .swiper-controls a.swiper-button-disabled {
  color: #ddd;
}
html body footer {
  display: flex;
}
html body footer > div {
  width: 33.3333%;
  padding: 2% 0;
  background: #d70a00;
  display: flex;
  justify-content: center;
  align-items: center;
}
html body footer > div.owner {
  background: #1b1a1a;
  flex-direction: column;
  padding: 0;
}
html body footer > div.owner .wrapper {
  margin: 0 auto;
}
html body footer > div.owner p {
  letter-spacing: 1.7px;
  line-height: 30px;
  font-weight: 400;
}
html body footer > div:last-child {
  background: #FFF;
}
html body footer > div:last-child img {
  margin: 0 2em;
}
/* ----------------------------------------- */
@media (max-width: 1200px) {
  html body .main-banner form {
    width: 90%;
    padding: 1em 5%;
  }
  html body .details .left,
  html body .details .right {
    padding: 0 5%;
  }
  html body .details .left span {
    font-size: 22.5px;
  }
  html body .details .left h3 {
    margin-bottom: 0.5em;
    font-size: 40px;
  }
  html body .details .right p {
    font-size: 17px;
  }
  html body .how-works > div {
    width: 35%;
    padding: 0% 7.5%;
  }
  html body .how-works > div .wrapper h3 {
    font-size: 22.5px;
  }
  html body .how-works > div .wrapper span {
    font-size: 40px;
  }
  html body .how-works > div .wrapper p {
    font-size: 17px;
  }
  html body .join [class*="row"] [class*="col"] p {
    font-size: 17px;
  }
  html body .media .title {
    padding: 0 100px;
  }
  html body .media .title span {
    font-size: 22.5px;
  }
  html body .media .title h3 {
    margin-bottom: 0.5em;
    font-size: 40px;
  }
  html body .media .swiper-controls {
    padding: 1em 50px;
  }
  html body footer {
    flex-wrap: wrap;
  }
  html body footer > div {
    width: 100%;
    padding: 1.75em 0;
  }
  html body footer > div.owner {
    padding: 4em 0 1.5em;
  }
  html body footer > div.owner p {
    font-size: 18px;
    letter-spacing: 1.5px;
    line-height: normal;
  }
  html body footer > div:last-child {
    background: #1b1a1a;
    padding: 2% 0 5%;
  }
  html body footer > div:last-child img {
    filter: invert(1) brightness(1.2);
    color: white;
  }
}
@media (max-width: 1024px) {
  .email-popup {
    width: 100%;
  }
  html body.en .main-banner picture img {
    height: calc(var(--vh, 1vh) * 100 - 248px);
  }
  html body header {
    width: 90%;
    padding: 0 5%;
  }
  html body .main-banner {
    min-height: unset;
    height: auto;
  }
  html body .main-banner picture img {
    height: calc(100vh - 280px);
    height: calc(var(--vh, 1vh) * 100 - 194px);
  }
  html body .main-banner .logo {
    bottom: calc(13% - -18%);
    transform: translate(-5%, -13%);
    width: 25vh;
  }
  html body .main-banner form {
    padding: 1.75em 5%;
  }
  html body .main-banner form .wrapper {
    margin: 0 auto;
    flex-direction: column;
    align-items: center;
  }
  html body .main-banner form .wrapper h3 {
    font-size: 28.5px;
    margin-bottom: 0.5em;
    padding: 0;
    text-align: center;
  }
  html body .main-banner form .wrapper .form-field {
    margin: 0 0 2em;
    width: 100%;
  }
  html body .main-banner form .wrapper button {
    font-size: 17px;
    width: 100%;
  }
  html body .details {
    align-items: center;
  }
  html body .how-works [data-aos=fade-left],
  html body .how-works [data-aos=fade-right] {
    transform: translate3d(-100px, 0, 0);
  }
  html body .media .title {
    padding: 0 80px;
  }
  html body .media .swiper-controls {
    padding: 1em 40px;
  }
  [data-aos="mobile-fade-right"] {
    transform: translate3d(-100px, 0, 0);
  }
  [data-aos="mobile-fade-right"].aos-animate {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
  [data-aos="mobile-fade-right"] [data-aos-duration="400"] [data-aos] {
    transition-duration: 1s;
  }
  [data-aos=fade-left],
  [data-aos=fade-right] {
    transform: translate3d(0, 0, 0);
  }
  [data-aos=fade-left].aos-animate,
  [data-aos=fade-right].aos-animate {
    opacity: 0;
  }
}
@media (max-width: 900px) {
  html body header nav ul li.proyecto,
  html body.en header nav ul li.proyecto {
    display: none;
  }
  html body header nav ul li a,
  html body.en header nav ul li a {
    font-size: 20px;
  }
  html body .main-banner picture img,
  html body.en .main-banner picture img {
    height: calc(var(--vh, 1vh) * 100 - 161px);
  }
  html body .details,
  html body.en .details {
    flex-direction: column;
    padding: 2.75em 0;
  }
  html body .details .left,
  html body.en .details .left,
  html body .details .right,
  html body.en .details .right {
    width: 90%;
  }
  html body .how-works picture,
  html body.en .how-works picture,
  html body .how-works > div,
  html body.en .how-works > div {
    width: 100%;
  }
  html body .how-works picture:first-child,
  html body.en .how-works picture:first-child {
    display: none;
  }
  html body .how-works > div,
  html body.en .how-works > div {
    padding: 2.5em 5%;
    width: 90%;
  }
  html body .how-works > div .wrapper,
  html body.en .how-works > div .wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }
  html body .join,
  html body.en .join {
    padding: 2.25em 0 5em;
  }
  html body .join [class*="row"],
  html body.en .join [class*="row"] {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.25% 5%;
  }
  html body .join [class*="row"] [class*="col"],
  html body.en .join [class*="row"] [class*="col"] {
    width: 100%;
  }
  html body .join [class*="row"] [class*="col"].col-01,
  html body.en .join [class*="row"] [class*="col"].col-01 {
    width: 100%;
    margin: 0;
  }
  html body .join [class*="row"] [class*="col"] h3,
  html body.en .join [class*="row"] [class*="col"] h3 {
    font-size: 22.5px;
  }
  html body .join [class*="row"] [class*="col"] > span,
  html body.en .join [class*="row"] [class*="col"] > span {
    font-size: 40px;
    max-width: 100%;
    margin-bottom: 0.5em;
  }
  html body .join [class*="row"] [class*="col"] p,
  html body.en .join [class*="row"] [class*="col"] p {
    margin-bottom: 2em;
  }
  html body .join [class*="row"] [class*="col"] button,
  html body.en .join [class*="row"] [class*="col"] button {
    width: 100%;
    padding: 0;
  }
  html body .join [class*="row"].row-02 [class*="col"],
  html body.en .join [class*="row"].row-02 [class*="col"] {
    max-width: 400px;
  }
  html body .join [class*="row"].row-02 .col-01,
  html body.en .join [class*="row"].row-02 .col-01 {
    margin-bottom: 2.5em;
  }
  html body .media .title,
  html body.en .media .title {
    padding: 0 30px;
  }
  html body .media .swiper-controls,
  html body.en .media .swiper-controls {
    padding: 1em 30px;
  }
  html body.en .main-banner form .wrapper h3 {
    margin-bottom: 0;
  }
  html body.en .main-banner picture img {
    height: calc(var(--vh, 1vh) * 100 - 248px);
  }
}
@media (max-width: 768px) {
  .email-popup .wrapper {
    width: auto;
  }
  html body .main-banner picture img {
    height: calc(var(--vh, 1vh) * 100 - 161px);
  }
  html body .media .title {
    padding: 0 20px;
  }
  html body .media .swiper-controls {
    padding: 1em 20px;
  }
  html body footer > div.owner p {
    font-size: 16px;
    line-height: 24px;
  }
  html body footer > div:last-child {
    padding: 1em 0 3.75em;
  }
  html body footer > div:last-child img {
    width: 91px;
  }
  html body footer > div:last-child img:last-child {
    width: 80px;
  }
}
@media (max-width: 480px) {
  .email-popup .wrapper {
    min-width: 200px;
    margin: 0 5%;
  }
  .email-popup .wrapper p {
    font-size: 18px;
  }
  html body.en .main-banner .logo {
    transform: translate(-5%, -35%);
  }
  html body.en .main-banner form .wrapper h3 {
    font-size: 25.5px;
  }
  html body .main-banner {
    overflow: visible;
  }
  html body .main-banner picture img {
    height: calc(var(--vh, 1vh) * 100 - 64px - 8.1em);
  }
  html body .main-banner .logo {
    bottom: calc(12% - -18%);
    transform: translate(-5%, -12%);
    width: 21vh;
  }
  html body .main-banner form .wrapper {
    width: auto;
  }
  html body .main-banner form .wrapper h3 {
    width: 100%;
  }
  html body .main-banner form .wrapper h3 a {
    pointer-events: visible;
  }
  html body .main-banner form .wrapper h3 br {
    display: block;
  }
  html body .main-banner form .wrapper .form-field {
    margin: 0 0 1em;
  }
  html body .how-works > div .wrapper span {
    font-size: 36.5px;
  }
  html body .how-works > div .wrapper h3 {
    font-size: 20px;
  }
  html body .join [class*="row"] [class*="col"] h3 {
    font-size: 20px;
  }
  html body .join [class*="row"] [class*="col"] > span {
    font-size: 36.5px;
  }
}
@media (max-width: 350px) {
  html body .main-banner picture img {
    height: calc(100vh - 56px - 3.5em);
    height: calc(var(--vh, 1vh) * 100 - 56px - 8em);
  }
  html body .main-banner form .wrapper h3 {
    font-size: 25px;
  }
}
