:root {
  --almost-black: #111;
}

.serif {
  font-family: "Cormorant Garamond", serif;
}

.sans-serif {
  font-family: "Satoshi";
}

.btn-primary-play {
  border-radius: 200px;
  box-shadow: none;
  display: block;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 1.3em 0.3em;
  border: 1pt solid black;
  transition: 0.3s all ease-in-out;
  background-color: transparent;
  cursor: pointer;
}
.btn-primary-play:hover {
  background-color: var(--black);
  transition: 0.3s all ease-in-out;
}
.btn-primary-play:hover svg {
  fill: var(--client-color-primary);
  transition: 0.3s all ease-in-out;
}
.btn-primary-play svg {
  fill: var(--black);
  display: block;
  width: 20px;
  height: 100%;
}
@media screen and (min-width: 678px) {
  .btn-primary-play svg {
    width: 25px;
  }
}
@media screen and (min-width: 1200px) {
  .btn-primary-play svg {
    width: 20px;
  }
}
@media screen and (min-width: 1800px) {
  .btn-primary-play svg {
    width: 25px;
  }
}
@media screen and (min-width: 2100px) {
  .btn-primary-play svg {
    width: 30px;
  }
}

.btn-secondary {
  transition: 0.3s all ease-in-out;
  background-color: transparent;
  border-radius: 200px;
  border: 1pt solid black;
  box-shadow: none;
  color: var(--black);
  cursor: pointer;
  font-size: 1rem;
  display: block;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding: 0.25em 0.75em;
  text-decoration: none;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 1rem;
}
.btn-secondary:hover {
  background-color: var(--black);
  color: var(--light);
  transition: 0.3s all ease-in-out;
  cursor: pointer;
}

.btn-carousel-after {
  background-color: none;
  background: none;
  box-shadow: none;
  cursor: pointer;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  outline: none;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  z-index: 5;
  border: none;
  margin-left: 1.5rem;
}
@media screen and (min-width: 1025px) {
  .btn-carousel-after {
    margin-left: initial;
  }
}
.btn-carousel-after svg {
  width: 30px;
  cursor: pointer;
  display: block;
  fill: var(--black);
}
@media screen and (min-width: 1025px) {
  .btn-carousel-after svg {
    width: 100%;
    margin-top: 10px;
    margin-left: initial;
  }
}
.btn-carousel-after:hover {
  opacity: 0.8;
  transition: 0.3s all ease-in-out;
}

.btn-carousel {
  background-color: none;
  background: none;
  box-shadow: none;
  cursor: pointer;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  outline: none;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  z-index: 5;
  border: none;
  transition: 0.3s all ease-in-out;
}
.btn-carousel svg {
  width: 30px;
  cursor: pointer;
  display: block;
  fill: var(--black);
  transform: rotate(180deg);
}
@media screen and (min-width: 1025px) {
  .btn-carousel svg {
    width: 100%;
  }
}
.btn-carousel:hover {
  opacity: 0.8;
  transition: 0.3s all ease-in-out;
}

.no-pointer-events {
  pointer-events: none;
}

.carousel-status {
  white-space: nowrap;
}

.container {
  width: 100%;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: -1;
}

.x {
  -webkit-animation: x 8s linear infinite alternate;
          animation: x 8s linear infinite alternate;
}

.y {
  -webkit-animation: y 5s linear infinite alternate;
          animation: y 5s linear infinite alternate;
}

@-webkit-keyframes x {
  100% {
    transform: translateX(calc(100vw - var(--size)));
  }
}

@keyframes x {
  100% {
    transform: translateX(calc(100vw - var(--size)));
  }
}
@-webkit-keyframes y {
  100% {
    transform: translateY(calc(100vh - var(--size)));
  }
}
@keyframes y {
  100% {
    transform: translateY(calc(100vh - var(--size)));
  }
}
.ball {
  position: absolute;
  pointer-events: none;
  height: var(--size);
  width: var(--size);
}
.ball img {
  height: 20vh;
  mix-blend-mode: multiply;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (min-width: 1025px) {
  .ball img {
    height: 30vh;
  }
}
@media screen and (min-width: 2000px) {
  .ball img {
    height: 40vh;
  }
}

.letter-title {
  align-items: center;
  display: flex;
  padding-bottom: 1em;
}
.letter-title .letter-word:first-letter {
  text-transform: uppercase;
}
.letter-title .letter-abaco {
  align-items: center;
  display: flex;
  height: 1.5em;
  justify-content: center;
  text-transform: uppercase;
  width: 1.5em;
}
.letter-title .letter-separator {
  padding: 0 0.5em;
}

video {
  width: 100%;
  height: 100%;
}

.play-button-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: auto;
  pointer-events: none;
  z-index: 10;
}
.play-button-wrapper .play-gif {
  cursor: pointer;
  pointer-events: auto;
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.play-button-wrapper .play-gif svg {
  width: 60px;
  height: 60px;
  fill: #fff;
  stroke: #fff;
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  opacity: 0.9;
}
@media screen and (min-width: 1024px) {
  .play-button-wrapper .play-gif svg {
    width: 100px;
    height: 100px;
  }
}

header {
  position: absolute;
}

.schema-wrapper {
  position: absolute;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  width: 100%;
  top: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
}
@media screen and (min-width: 967px) {
  .schema-wrapper {
    background-size: 75%;
  }
}
@media screen and (min-width: 1440px) {
  .schema-wrapper {
    background-size: 70%;
  }
}

.desktop-schema.schema-it {
  background-image: url("../../../assets/images/schema.svg");
}
.desktop-schema.schema-en {
  background-image: url("../../../assets/images/schema_eng.svg");
}
@media screen and (max-width: 967px) {
  .desktop-schema {
    display: none;
  }
}

.mobile-schema.schema-it {
  background-image: url("../../../assets/images/schema_mobile.svg");
}
.mobile-schema.schema-en {
  background-image: url("../../../assets/images/schema_mobile_eng.svg");
}
@media screen and (min-width: 967px) {
  .mobile-schema {
    display: none;
  }
}

.letter-wrapper {
  align-items: center;
  display: flex;
  justify-content: center;
  top: 0;
  width: 100%;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  flex-direction: column;
  padding: var(--page-space);
}
@media screen and (min-width: 1024px) {
  .letter-wrapper {
    flex-direction: row;
  }
}
@media screen and (min-width: 1024px) {
  .letter-wrapper .a-optical svg {
    height: 35vh !important;
    width: 40vh !important;
  }
}
@media screen and (min-width: 1440px) {
  .letter-wrapper .a-optical svg {
    height: 35vh !important;
  }
}
@media screen and (min-width: 1600px) {
  .letter-wrapper .a-optical svg {
    height: 25vh !important;
    width: 35vh !important;
  }
}
@media screen and (min-width: 1800px) {
  .letter-wrapper .a-optical svg {
    height: 30vh !important;
  }
}
.letter-wrapper .letter.change-color svg {
  fill: var(--client-color-primary);
}
.letter-wrapper .letter:nth-child(2) {
  margin: 3.5em 0 5em 0;
}
@media screen and (min-width: 1024px) {
  .letter-wrapper .letter:nth-child(2) {
    margin: 0 4em 0 2.2em;
  }
}
.letter-wrapper .letter svg {
  display: block;
  max-width: 100%;
  width: 15vh;
  fill: var(--client-color-secondary);
}
@media screen and (max-width: 967px) {
  .letter-wrapper .letter svg {
    transform: rotate(90deg);
    height: 15vh;
    width: 25vh;
  }
}
@media screen and (min-width: 1024px) {
  .letter-wrapper .letter svg {
    width: 35vh;
  }
}
@media screen and (min-width: 1800px) {
  .letter-wrapper .letter svg {
    width: 40vh;
    height: 30vh;
  }
}

.gradient {
  background: linear-gradient(0deg, var(--client-color-primary) 0%, var(--client-color-opacity) 100%);
  bottom: 0;
  height: 20%;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  width: 100%;
  z-index: 1;
}
.gradient.is-hidden {
  visibility: hidden;
}

.about-text {
  padding: var(--page-space);
  border-top: 1pt solid var(--black);
  width: 100%;
  position: relative;
}

.desc-inner {
  min-height: 74vh;
  background-color: none;
  max-height: 0;
  width: 100%;
  overflow: hidden;
  position: relative;
  display: grid;
}
@media screen and (min-width: 768px) {
  .desc-inner {
    grid-template-columns: 1fr 3fr;
    min-height: 52vh;
  }
}
@media screen and (min-width: 967px) {
  .desc-inner {
    min-height: 50vh;
  }
}
@media screen and (min-width: 1024px) {
  .desc-inner {
    min-height: 30vh;
  }
}
@media screen and (min-width: 1025px) {
  .desc-inner {
    min-height: 52vh;
  }
}
@media screen and (min-width: 1440px) {
  .desc-inner {
    min-height: 50vh;
  }
}
@media screen and (min-width: 1680px) {
  .desc-inner {
    min-height: 45vh;
  }
}
.desc-inner p {
  margin-bottom: 1em;
  font-size: var(--body-text);
}
@media screen and (min-width: 768px) {
  .desc-inner p {
    grid-column: 2/3;
  }
}
@media screen and (min-width: 967px) {
  .desc-inner p {
    padding-right: 30%;
  }
}
@media screen and (min-width: 1024px) {
  .desc-inner p {
    padding-right: 27%;
  }
}
.desc-inner h1,
.desc-inner h2,
.desc-inner h3,
.desc-inner h4,
.desc-inner h5 {
  font-size: var(--body-text);
  text-transform: uppercase;
  width: 100%;
  padding-bottom: 1.2em;
}
@media screen and (min-width: 768px) {
  .desc-inner h1,
.desc-inner h2,
.desc-inner h3,
.desc-inner h4,
.desc-inner h5 {
    width: 45%;
  }
}
@media screen and (min-width: 967px) {
  .desc-inner h1:first-child,
.desc-inner h2:first-child,
.desc-inner h3:first-child,
.desc-inner h4:first-child,
.desc-inner h5:first-child {
    position: absolute;
    top: 0;
    left: 0;
  }
}
.desc-inner ul {
  margin-bottom: 1em;
  padding: 0;
  list-style-position: inside;
}
@media screen and (min-width: 768px) {
  .desc-inner ul {
    grid-column: 2/3;
  }
}
.desc-inner ul li {
  display: flex;
  align-items: center;
}
.desc-inner ul li::before {
  display: inline-block;
  content: "";
  border-radius: 100px;
  height: 4px;
  width: 4px;
  margin-right: 0.5rem;
  background-color: var(--black);
}
.desc-inner ul li p {
  margin: 0;
}

.excerption-inner {
  width: 100%;
  display: grid;
}

.read-more {
  border-top: 1pt solid var(--black);
  border-bottom: 1pt solid var(--black);
  grid-column: 1/-1;
  text-align: center;
  cursor: pointer;
  text-transform: uppercase;
  padding: 1rem 0;
}

.contact-wrapper {
  padding: var(--page-space);
  width: 100%;
  display: grid;
}
@media screen and (min-width: 768px) {
  .contact-wrapper {
    grid-template-columns: 1fr 2fr;
  }
}
.contact-wrapper .contact-info {
  padding-top: 1rem;
  padding-bottom: 6rem;
}
@media screen and (min-width: 967px) {
  .contact-wrapper {
    grid-template-columns: 1fr 5fr;
  }
  .contact-wrapper .contact-info {
    padding-left: 2rem;
    padding-top: initial;
  }
}
@media screen and (min-width: 1024px) {
  .contact-wrapper .contact-info {
    padding-left: initial;
  }
}
.contact-wrapper .contact-address {
  text-transform: uppercase;
}

.footer {
  border-top: 1pt solid var(--black);
}
