@font-face {
  font-family: Aeonik-Bold;
  src: url("fonts/Aeonik-Bold.otf");
}
@font-face {
  font-family: Aeonik;
  src: url("fonts/Aeonik-Regular.otf");
}
* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

body {
  background-color: transparent;
  overflow-x: hidden;
  font-family: Aeonik-Bold;
}

h1 {
  display: none;
}

.logo-header {
  height: 3rem;
}
.logo-header img {
  height: 100%;
}

#slogan-text, #slogan-text-desktop {
  color: #F74297;
  overflow: hidden;
  animation: escriure 2s steps(40, end), infinite;
}

@keyframes escriure {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
section#video {
  width: 100%;
  position: fixed;
  top: 0px;
  z-index: 1;
  height: 100vh;
  overflow: hidden;
  background-image: url('../imgs/EVA_fons_1.jpg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
section#video #background-video {
  position: absolute;
  top: -30vw;
  left: 0px;
  z-index: 1;
  width: 100%;
  filter: blur(30px);
}
section#video div.main-video {
  position: relative;
  height: 100vh;
  overflow-x: hidden;
  max-width: -moz-fit-content;
  max-width: fit-content;
  overflow-x: hidden;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
section#video div.main-video #main-video {
  position: relative;
  z-index: 5;
  height: 100vh;
}
section#video div.main-video .video-overlap {
  position: absolute;
  z-index: 10;
  top: 0px;
  left: 0px;
  height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 3rem 2rem 8rem 2rem;
}
section#video div.main-video .video-overlap #controls {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
section#video div.main-video .video-overlap #controls button#scroll-down {
  background-color: transparent;
  border: 0px transparent;
  cursor: pointer;
}
section#video div.main-video .video-overlap #controls button#scroll-down img {
  max-height: 5rem;
}
section#video div.main-video .video-overlap #controls .video-controls {
  display: flex;
  -moz-column-gap: 1.3rem;
       column-gap: 1.3rem;
}
section#video div.main-video .video-overlap #controls .video-controls button {
  background-color: transparent;
  border: 0px transparent;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
section#video div.main-video .video-overlap #controls .video-controls button img {
  max-height: 2rem;
}

div.page-content {
  position: relative;
  background-color: white;
  z-index: 20;
}
div.page-content section#description {
  margin: auto;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
  padding: 3rem 2rem;
}
div.page-content section#description .description-content {
  font-size: 4vh;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.xxss-wrapper p {
  font-size: 6vh;
  margin-bottom: 1rem;
}
.xxss {
  display: flex;
  list-style: none;
  padding: 0px;
  justify-content: space-between;
}
.xxss li img {
  max-height: 2rem;
}

.page-footer {
  position: relative;
  z-index: 5;
  font-family: Aeonik;
  color: white;
  text-align: center;
  font-size: 0.8rem;
  padding: 2rem 1rem;
  background-color: rgb(0, 0, 0);
}
.page-footer p {
  margin: 0px;
}

.desktop-logo, .desktop-content {
  display: none;
}

@media (min-width: 1200px) {
  .desktop-logo, .desktop-content {
    display: block;
  }
  .mobile-content {
    display: none;
  }
  .mobile-header, #scroll-down {
    visibility: hidden;
  }
  .mobile-video-spacer {
    display: none;
  }
  section#video {
    position: relative;
    height: calc(100vh - 48px);
  }
  .page-footer {
    position: relative;
    text-align: start;
    padding: 1rem;
  }
}
.desktop-logo {
  position: absolute;
  z-index: 20;
  top: 1%;
  left: 1%;
  width: 25%;
  padding: 3rem;
}
.desktop-logo img {
  height: auto;
  width: 100%;
}

.desktop-content {
  position: absolute;
  z-index: 20;
  top: 0px;
  right: 2rem;
  width: 30%;
  height: 100%;
  padding: 3rem;
  padding-top: 25vh;
}
.desktop-content .description-content {
  font-size: 1.6rem;
  color: white;
  margin-bottom: 2rem;
  height: 90%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.desktop-content .description-content p {
  font-size: 1.5em;
}
.desktop-content .xxss {
  justify-content: space-between;
  padding-right: 4rem;
  width: 100%;
}
.desktop-content .xxss li img {
  max-height: 2rem;
  height: 2rem;
}/*# sourceMappingURL=styles.css.map */