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;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
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;
}

.font--thin {
  font-weight: 100 !important;
}

.font--extralight {
  font-weight: 200 !important;
}

.font--light {
  font-weight: 300 !important;
}

.font--regular {
  font-weight: 400 !important;
}

.font--medium {
  font-weight: 500 !important;
}

.font--semibold {
  font-weight: 600 !important;
}

.font--bold {
  font-weight: 700 !important;
}

.font--black {
  font-weight: 900 !important;
}

strong {
  font-weight: 500;
}

.font--alt {
  font-family: "rosella-hatched", "Manuale", serif, sans-serif;
}

.text--center {
  text-align: center !important;
}

.text--left {
  text-align: left !important;
}

.text--right {
  text-align: right !important;
}

.text--uppercase {
  text-transform: uppercase !important;
}

.text--lowercase {
  text-transform: lowercase !important;
}

.text--accent {
  color: #1E2A3A !important;
}

.animation--float-y {
  animation: floatY 4s ease infinite;
}

.animation--float-y-super {
  animation: floatYSuper 8s ease-out infinite;
}
@media screen and (max-width: 601px) {
  .animation--float-y-super {
    animation-duration: 4s;
  }
}

.animation--floaty--reverse {
  animation: floatYReverse 5s ease infinite;
}

.animation--floaty--reverse-super {
  animation: floatYReverseSuper 10s ease-out infinite;
}
@media screen and (max-width: 601px) {
  .animation--floaty--reverse-super {
    animation-duration: 5s;
  }
}

.animation--float-h {
  animation: floatH 4s ease infinite;
}

.animation--floath--reverse {
  animation: floatHReverse 6s ease infinite;
}

.animation--float-diagonal {
  animation: floatDiagonal 4s ease-in-out infinite;
}

.animation--float-diagonal-reverse {
  animation: floatDiagonalReverse 4.5s ease-in-out infinite alternate;
}

.animation--zoom--inout {
  animation: zoomIn 2s ease-in-out infinite alternate;
}

@keyframes floatY {
  from {
    transform: translate(0, 0);
  }
  65% {
    transform: translate(0, -1rem);
  }
  to {
    transform: translate(0, 0);
  }
}
@keyframes floatYSuper {
  from {
    transform: translate(0, 0);
  }
  65% {
    transform: translate(0, -3rem);
  }
  to {
    transform: translate(0, 0);
  }
}
@keyframes floatYReverse {
  from {
    transform: translate(0, 0);
  }
  65% {
    transform: translate(0, 1rem);
  }
  to {
    transform: translate(0, 0);
  }
}
@keyframes floatYReverseSuper {
  from {
    transform: translate(0, 0);
  }
  65% {
    transform: translate(0, 3rem);
  }
  to {
    transform: translate(0, 0);
  }
}
@keyframes floatH {
  from {
    transform: translate(0, 0);
  }
  65% {
    transform: translate(-1rem, 0);
  }
  to {
    transform: translate(0, 0);
  }
}
@keyframes floatHReverse {
  from {
    transform: translate(0, 0);
  }
  65% {
    transform: translate(1rem, 0);
  }
  to {
    transform: translate(0, 0);
  }
}
@keyframes floatDiagonal {
  0% {
    transform: translate(0, 0);
  }
  65% {
    transform: translate(-2rem, 1rem);
  }
  100% {
    transform: translate(0, 0);
  }
}
@keyframes floatDiagonalReverse {
  0% {
    transform: translate(0, 0);
  }
  65% {
    transform: translate(2rem, -1rem);
  }
  100% {
    transform: translate(0, 0);
  }
}
@keyframes zoomIn {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.05);
  }
}
.animation--point-down {
  animation: pointDown 2s ease infinite;
}

@keyframes pointDown {
  from {
    transform: translate(0, 0);
  }
  65% {
    transform: translate(0, 1rem);
  }
  to {
    transform: translate(0, 0);
  }
}
.animation--rotate {
  animation: rotate 4s ease infinite;
}

.animation--rotate-reverse {
  animation: rotateReverse 4.5s ease infinite;
}

.animation--rotate-float {
  animation: rotateFloat 4s ease-in infinite;
}

.animation--rotate-float-reverse {
  animation: rotateFloatReverse 3s ease-in infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg) translateY(0);
  }
  65% {
    transform: rotate(10deg) translateY(0.5rem);
  }
  to {
    transform: rotate(0deg) translateY(0);
  }
}
@keyframes rotateReverse {
  from {
    transform: rotate(0deg);
  }
  65% {
    transform: rotate(-15deg) translateY(0.5rem);
  }
  to {
    transform: rotate(0deg);
  }
}
@keyframes rotateFloat {
  from {
    transform: rotate(0deg) translateY(0);
  }
  65% {
    transform: rotate(10deg) translateY(-1rem);
  }
  to {
    transform: rotate(0deg) translateY(0);
  }
}
@keyframes rotateFloatReverse {
  from {
    transform: rotate(0deg) translateY(0);
  }
  65% {
    transform: rotate(5deg) translateY(1rem);
  }
  to {
    transform: rotate(0deg) translateY(0);
  }
}
@keyframes rotate360 {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
.animation--in {
  transition: opacity 0.4s 0.3s ease-out, transform 0.6s 0.3s ease-out, filter 0.6s 0.3s ease-out;
}
.animation--in.bottom-up:not(.visible) {
  opacity: 0 !important;
  transform: translateY(10rem) !important;
}
.animation--in.bottom-up-lighten:not(.visible) {
  color: var(--color-off-black);
  opacity: 0 !important;
  transform: translateY(10rem) !important;
}
.animation--in.up-bottom:not(.visible) {
  opacity: 0 !important;
  transform: translateY(-10rem) !important;
}
.animation--in.left-right:not(.visible) {
  opacity: 0 !important;
  transform: translateX(-10rem) !important;
}
.animation--in.right-left:not(.visible) {
  opacity: 0 !important;
  transform: translateX(10rem) !important;
}
.animation--in.fade-in:not(.visible) {
  opacity: 0 !important;
}
.animation--in.grow-in:not(.visible) {
  opacity: 0 !important;
  transform: scale(0.5);
}
.animation--in.blur-out:not(.visible) {
  opacity: 0 !important;
  filter: blur(10px) !important;
}

.animation--in--fade {
  animation: fadeIn 0.5s ease-out;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes slideInLeft {
  0% {
    transform: translateX(-15%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slideInRight {
  0% {
    transform: translateX(15%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slideInBottom {
  0% {
    transform: translateY(1rem);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes slideInTop {
  0% {
    transform: translateY(-5rem);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes beat {
  0% {
    transform: scale(1.05);
    opacity: 0.9;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes growIn {
  0% {
    transform: scale(0.1);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@media screen and (max-width: 601px) {
  @keyframes modalGrow {
    0% {
      transform: translateY(105%);
      opacity: 0;
    }
    100% {
      transform: translateY(0);
      opacity: 1;
    }
  }
}
*, *:after, *:before {
  box-sizing: border-box;
  letter-spacing: inherit;
  scroll-behavior: smooth;
}

:root {
  --color-black: #000000;
  --color-off-black: #282823;
  --color-deep-gray: #4C4C4C;
  --color-medium-gray: #F5F4F4;
  --color-light-gray: #E2E2E2;
  --color-off-white: #FEFEFE;
  --color-white: #FFFFFF;
  --color-blue: #1E2A3A;
  --color-blue-shadow: #0D1A2C;
  --color-light-blue: #B0CEDB;
  --color-accent: #832731;
  --color-menu-current: var(--color-off-black);
}

html {
  overflow-x: hidden;
  max-width: 100vw;
  font-size: 0.5208333333vw;
}
@media screen and (min-width: 2559px) {
  html {
    font-size: 0.390625vw;
  }
}
@media screen and (max-width: 821px) {
  html {
    font-size: 0.9765625vw;
  }
}
@media screen and (max-width: 601px) {
  html {
    font-size: 1.6666666667vw;
  }
}

body {
  font-family: "Manuale", serif !important;
  font-weight: 300;
  font-size: 2.2rem;
  line-height: 1.2;
  background-color: var(--color-black);
  color: var(--color-off-white);
  position: relative;
  transition: all 0.5s ease;
}
@media screen and (max-width: 821px) {
  body {
    padding: 0;
  }
}
@media screen and (max-width: 601px) {
  body {
    font-size: 2.8rem;
  }
}
body::-webkit-scrollbar-track {
  background-color: var(--color-off-white);
}
body::-webkit-scrollbar {
  width: 0.5rem;
  background-color: --color-light-gray;
}
body::-webkit-scrollbar-thumb {
  background-color: var(--color-blue);
  border-radius: 0.25rem;
}
body.modal-open {
  height: 100vh;
  overflow: hidden;
}

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

img, picture {
  width: 100%;
  height: auto;
  vertical-align: middle;
}

button {
  color: inherit;
  background: none;
  outline: none;
  cursor: pointer;
  border: none;
}

.hidden {
  display: none !important;
}

@media screen and (max-width: 601px) {
  .hide__mobile {
    display: none !important;
  }
}

@media screen and (min-width: 601px) {
  .hide__desktop {
    display: none !important;
  }
}

.width--full {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.home__hero .home__hero__content {
  width: 100%;
  height: inherit;
  position: relative;
  z-index: 1;
}

.header--centered {
  width: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  gap: 2.4rem;
  text-align: center;
}

.blur__layer {
  background: linear-gradient(358.36deg, rgba(255, 255, 255, 0.01) 25.69%, rgba(255, 255, 255, 0) 169.2%);
  backdrop-filter: blur(4rem);
}

.back-to-top {
  width: 4.8rem;
  position: fixed;
  bottom: 2.4rem;
  right: 2.4rem;
  z-index: 1000;
  transition: all 0.3s ease;
}
.back-to-top:hover {
  opacity: 0.5;
}

.modal__wrapper {
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  padding: 4rem;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.modal__wrapper.is-visible {
  opacity: 1;
  visibility: visible;
}
.modal__wrapper.is-leaving {
  opacity: 0;
  visibility: hidden;
}
.modal__wrapper .modal {
  padding: 2.4rem;
  background: #FFFFFF;
  color: #000000;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(1.5rem);
  transition: opacity 0.4s ease, transform 0.4s ease;
  max-width: 40vw;
  max-height: 80vh;
  position: absolute;
}
@media screen and (max-width: 821px) {
  .modal__wrapper .modal {
    max-width: 70vw;
  }
}
@media screen and (max-width: 601px) {
  .modal__wrapper .modal {
    max-width: 90vw;
  }
}
.modal__wrapper .modal.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.modal__wrapper .modal .modal__content {
  padding: 5.6rem;
  border: 1px solid #832731;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  gap: 4rem;
}
.modal__wrapper .modal .modal__heading {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  gap: 4rem;
}
.modal__wrapper .modal .modal__heading img {
  width: 7.4rem;
  filter: grayscale(1);
}
.modal__wrapper .modal .modal__heading h2 {
  font-family: "rosella-hatched", "Manuale", serif, sans-serif;
  font-size: 2.8rem;
  line-height: 1.3;
  font-weight: regular;
  color: #832731;
}
.modal__wrapper .modal p {
  font-size: 2.8rem;
  line-height: 1.5;
}
.modal__wrapper .modal .modal__buttons {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  gap: 1.6rem;
  width: 100%;
}
.modal__wrapper .modal .modal__buttons button {
  font-family: "Manuale", serif;
  background: #832731;
  color: #FFFFFF;
  text-transform: uppercase;
  padding: 0.8rem 2.4rem;
  font-size: 2.4rem;
  transition: all 0.3s ease;
  min-width: 30%;
}
@media screen and (max-width: 821px) {
  .modal__wrapper .modal .modal__buttons button {
    width: calc(50% - 0.8rem);
  }
}
.modal__wrapper .modal .modal__buttons button:hover {
  background: #000000;
}

.page__wrapper {
  width: 100%;
  max-width: 100vw;
  min-height: 100vh;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  align-content: flex-start;
}
@media screen and (max-width: 821px) {
  .page__wrapper {
    overflow: hidden;
  }
}

.page__content {
  width: 100%;
}

.text--body--xxs {
  font-size: 1.2rem;
  line-height: 1.2;
}
.text--body--xs {
  font-size: 1.4rem;
  line-height: 1.2;
}
@media screen and (max-width: 601px) {
  .text--body--xs {
    font-size: 1.2rem;
  }
}
.text--body--sm {
  font-size: 1.6rem;
  line-height: 1.2;
}
@media screen and (min-width: 2559px) {
  .text--body--sm {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 601px) {
  .text--body--sm {
    font-size: 1.6rem;
  }
}
.text--body--md {
  font-size: 2rem;
  line-height: 1.2;
}
@media screen and (max-width: 601px) {
  .text--body--md {
    font-size: 1.6rem;
  }
}
.text--body--lg {
  font-size: 2.4rem;
  line-height: 1.2;
}

.text-color--primary {
  color: var(--color-primary);
}

.text-color--dark {
  color: var(--color-off-black);
}

.text--highlighted {
  background: var(--color-black);
  color: var(--color-primary);
}

.title--heading--h1 {
  font-family: "rosella-hatched", "Manuale", serif, sans-serif;
  font-size: 8rem;
  letter-spacing: -0.24rem;
  line-height: 0.95;
  font-weight: 400;
}
@media screen and (max-width: 821px) {
  .title--heading--h1 {
    font-size: 5.6rem;
    letter-spacing: -0.168rem;
  }
}
@media screen and (max-width: 601px) {
  .title--heading--h1 {
    font-size: 4.8rem;
    letter-spacing: -0.144rem;
  }
}
.title--heading--h2 {
  font-family: "rosella-hatched", "Manuale", serif, sans-serif;
  font-size: 6.4rem;
  letter-spacing: -0.192rem;
  line-height: 0.75;
  font-weight: 400;
}
@media screen and (max-width: 821px) {
  .title--heading--h2 {
    font-size: 4.8rem;
    letter-spacing: -0.144rem;
  }
}
@media screen and (max-width: 601px) {
  .title--heading--h2 {
    font-size: 4rem;
    letter-spacing: -0.12rem;
  }
}
.title--heading--h3 {
  font-family: "rosella-hatched", "Manuale", serif, sans-serif;
  font-size: 5.6rem;
  letter-spacing: -0.168rem;
  line-height: 0.95;
  font-weight: 400;
}
@media screen and (max-width: 821px) {
  .title--heading--h3 {
    font-size: 4rem;
    letter-spacing: -0.12rem;
  }
}
.title--heading--h4 {
  font-family: "rosella-hatched", "Manuale", serif, sans-serif;
  font-size: 4.8rem;
  letter-spacing: -0.144rem;
  line-height: 0.95;
}
@media screen and (max-width: 821px) {
  .title--heading--h4 {
    font-size: 3.2rem;
    letter-spacing: -0.096rem;
  }
}
.title--heading--h5 {
  font-family: "rosella-hatched", "Manuale", serif, sans-serif;
  font-size: 3.2rem;
  letter-spacing: -0.096rem;
  line-height: 0.95;
}
@media screen and (max-width: 821px) {
  .title--heading--h5 {
    font-size: 2.4rem;
    letter-spacing: -0.072rem;
  }
}
@media screen and (max-width: 601px) {
  .title--heading--h5 {
    font-size: 2rem;
    letter-spacing: -0.06rem;
  }
}
.title--heading--h6 {
  font-family: "rosella-hatched", "Manuale", serif, sans-serif;
  font-size: 2.4rem;
  letter-spacing: -0.072rem;
  line-height: 0.95;
}
@media screen and (max-width: 821px), screen and (orientation: portrait) {
  .title--heading--h6 {
    font-size: 2rem;
    letter-spacing: -0.06rem;
  }
}
@media screen and (max-width: 601px) {
  .title--heading--h6 {
    font-size: 1.6rem;
    letter-spacing: -0.048rem;
  }
}

.footer {
  width: calc(100% - 8rem);
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  align-content: flex-end;
  font-size: 1.6rem;
  letter-spacing: -0.016rem;
  line-height: 2rem;
}

.home__wrapper {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: strecth;
  align-content: stretch;
}

.home__hero {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  max-height: 97dvh;
  min-height: 97dvh;
  padding-top: 20rem;
}
@media screen and (orientation: portrait) {
  .home__hero {
    max-height: 47dvh;
    min-height: 47dvh;
  }
}
@media screen and (max-width: 1081px) {
  .home__hero {
    max-height: 67dvh;
    min-height: 67dvh;
  }
}
@media screen and (max-width: 821px) {
  .home__hero {
    max-height: 75dvh;
    min-height: 75dvh;
  }
}
@media screen and (max-width: 601px) {
  .home__hero {
    max-height: 72dvh;
    min-height: 72dvh;
    padding-top: 19rem;
  }
}
.home__hero .home__hero__background {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background-color: #1E2A3A;
  background-image: url("../img/hero_bg.png");
  background-size: cover;
  background-position: center 63%;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
@media screen and (orientation: portrait) {
  .home__hero .home__hero__background {
    height: 50dvh;
    background-attachment: initial;
  }
}
@media screen and (max-width: 1081px) {
  .home__hero .home__hero__background {
    height: 70dvh;
    background-attachment: initial;
  }
}
@media screen and (max-width: 821px) {
  .home__hero .home__hero__background {
    background-position: center bottom;
  }
}
@media screen and (max-width: 601px) {
  .home__hero .home__hero__background {
    height: 72dvh;
    background-image: url("../img/hero_bg_sm.png");
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
  }
}
.home__hero .home__hero__content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  gap: 4rem;
  overflow: hidden;
}
.home__hero .home__hero__content .home__hero__logo {
  width: 40rem;
}
@media screen and (max-width: 821px) {
  .home__hero .home__hero__content .home__hero__logo {
    width: 31rem;
  }
}
.home__hero .home__hero__content .home__hero__title__container {
  background: #832731;
  padding: 0.4rem 0.8rem;
}
.home__hero .home__hero__content .home__hero__title__container .home__hero__title {
  font-size: 3.2rem;
}
@media screen and (max-width: 601px) {
  .home__hero .home__hero__content .home__hero__title__container .home__hero__title {
    font-size: 4.8rem;
  }
}
.home__hero .home__hero__content .home__hero__title__container .home__hero__title span {
  display: none !important;
}
.home__hero .home__hero__content .home__hero__scroll {
  margin-top: 4.8rem;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  gap: 1.6rem;
}
.home__hero .home__hero__content .home__hero__scroll span {
  font-size: 1.8rem;
}
@media screen and (max-width: 601px) {
  .home__hero .home__hero__content .home__hero__scroll span {
    font-size: 2.8rem;
  }
}
.home__hero .home__hero__content .home__hero__scroll img {
  width: 2.4rem;
}
@media screen and (max-width: 601px) {
  .home__hero .home__hero__content .home__hero__scroll img {
    width: 3.2rem;
  }
}

.home__intro {
  width: 100%;
  position: relative;
  z-index: 2;
}
.home__intro .home__intro__background {
  width: 100%;
  height: calc(100% + 12rem);
  position: absolute;
  top: -12rem;
  left: 0;
  z-index: 0;
  overflow: hidden;
}
@media screen and (max-width: 821px) {
  .home__intro .home__intro__background .home__intro__paper {
    height: 100%;
    object-fit: cover;
  }
}
@media screen and (max-width: 601px) {
  .home__intro .home__intro__background .home__intro__paper {
    height: calc(100% + 12rem);
    object-fit: initial;
  }
}
.home__intro .home__intro__background .home__intro__map {
  width: 80%;
  position: absolute;
  top: 16rem;
  right: -3rem;
}
@media screen and (max-width: 821px) {
  .home__intro .home__intro__background .home__intro__map {
    width: 100%;
    top: auto;
    bottom: 18rem;
    right: 0;
  }
}
@media screen and (max-width: 601px) {
  .home__intro .home__intro__background .home__intro__map {
    bottom: 34rem;
    right: -3rem;
  }
}
.home__intro .home__intro__content {
  position: relative;
  z-index: 2;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  color: var(--color-off-black);
  padding: 16rem 16rem 18.2rem;
}
@media screen and (max-width: 821px) {
  .home__intro .home__intro__content {
    padding: 8rem 4rem 24rem;
    flex-direction: column;
    gap: 8rem;
  }
}
@media screen and (max-width: 601px) {
  .home__intro .home__intro__content {
    padding: 16rem 2.4rem 48rem;
  }
}
.home__intro .home__intro__content .home__intro__block {
  width: 50%;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: stretch;
  align-content: stretch;
  gap: 4rem;
  padding-right: 5rem;
}
@media screen and (max-width: 821px) {
  .home__intro .home__intro__content .home__intro__block {
    width: 100%;
    padding-right: 0;
    gap: 6.4rem;
  }
}
.home__intro .home__intro__content .home__intro__block h2 {
  font-family: "rosella-hatched", "Manuale", serif, sans-serif;
  font-weight: normal;
  color: #832731;
  font-size: 5.6rem;
  line-height: 1.3;
}
@media screen and (max-width: 601px) {
  .home__intro .home__intro__content .home__intro__block h2 {
    font-size: 4.8rem;
  }
}
.home__intro .home__intro__content .home__intro__block p {
  font-size: 2.8rem;
  line-height: 1.5;
  transition-delay: 0.3s;
}
@media screen and (max-width: 601px) {
  .home__intro .home__intro__content .home__intro__block p {
    font-size: 3.2rem;
  }
}
.home__intro .home__intro__content .home__intro__block p:nth-of-type(2) {
  width: 94%;
  margin-top: 3.2rem;
  margin-left: 12rem;
  transition-delay: 0.5s;
}
@media screen and (max-width: 821px) {
  .home__intro .home__intro__content .home__intro__block p:nth-of-type(2) {
    margin-left: 0;
  }
}
.home__intro .home__intro__images {
  width: 50%;
}
@media screen and (max-width: 821px) {
  .home__intro .home__intro__images {
    width: 100%;
    text-align: center;
  }
}
.home__intro .home__intro__images img:nth-of-type(1) {
  width: 40rem;
  position: relative;
  z-index: 2;
  margin-bottom: 8rem;
  margin-left: 8rem;
}
@media screen and (max-width: 821px) {
  .home__intro .home__intro__images img:nth-of-type(1) {
    margin: 0;
  }
}
@media screen and (max-width: 601px) {
  .home__intro .home__intro__images img:nth-of-type(1) {
    width: 45rem;
  }
}
.home__intro .home__intro__images img:nth-of-type(2) {
  width: 37rem;
  z-index: 1;
  mix-blend-mode: darken;
  position: absolute;
  top: 34rem;
  right: 19rem;
}
@media screen and (max-width: 821px) {
  .home__intro .home__intro__images img:nth-of-type(2) {
    top: auto;
    right: auto;
    bottom: 40rem;
    left: 4rem;
  }
}
@media screen and (max-width: 601px) {
  .home__intro .home__intro__images img:nth-of-type(2) {
    width: 16rem;
    bottom: 40rem;
  }
}

.home__origins {
  width: 100%;
  position: relative;
  z-index: 2;
  margin-top: -12rem;
  min-height: 100vh;
  overflow: hidden;
}
@media screen and (max-aspect-ratio: 4/3) and (orientation: landscape) {
  .home__origins {
    margin-top: -24rem;
  }
}
@media screen and (max-width: 1081px) and (orientation: portrait) {
  .home__origins {
    min-height: 0;
    margin-top: -20rem;
  }
}
@media screen and (max-width: 821px) {
  .home__origins {
    margin-top: -24rem;
    overflow: hidden;
  }
}
@media screen and (max-width: 601px) {
  .home__origins {
    background-image: url("../img/intro_bg_sm.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
}
.home__origins .home__origins__background {
  width: 100%;
  height: 100vh;
  z-index: 0;
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 0.35s ease, transform 0.35s ease;
}
@media screen and (max-aspect-ratio: 4/3) and (orientation: landscape) {
  .home__origins .home__origins__background {
    height: 100%;
  }
}
@media screen and (max-width: 1081px) and (orientation: portrait) {
  .home__origins .home__origins__background {
    height: 100%;
  }
}
@media screen and (max-width: 601px) {
  .home__origins .home__origins__background {
    position: relative;
    width: 100%;
    margin: 0;
  }
}
.home__origins .home__origins__background img {
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.home__origins .home__origins__content {
  width: 100%;
  height: 87%;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  align-content: flex-start;
  gap: 40rem;
  padding: 40rem 16rem 36rem;
}
@media screen and (max-width: 1081px) and (orientation: portrait) {
  .home__origins .home__origins__content {
    padding: 36rem 16rem;
    gap: 8rem;
  }
}
@media screen and (max-width: 1081px) {
  .home__origins .home__origins__content {
    gap: 8rem;
  }
}
@media screen and (max-width: 821px) {
  .home__origins .home__origins__content {
    padding: 36rem 4rem 24rem 4rem;
  }
}
@media screen and (max-width: 601px) {
  .home__origins .home__origins__content {
    position: relative;
    top: auto;
    left: auto;
    color: var(--color-off-black);
    padding: 0 2.4rem;
    height: auto;
    overflow: hidden;
    gap: 4rem;
  }
}
.home__origins .home__origins__content .home__origins__block {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  align-content: center;
  gap: 4rem;
}
@media screen and (max-width: 601px) {
  .home__origins .home__origins__content .home__origins__block {
    flex-direction: column;
  }
}
.home__origins .home__origins__content .home__origins__block p {
  font-size: 3.2rem;
  line-height: 1.5;
}
@media screen and (min-width: 821px) {
  .home__origins .home__origins__content .home__origins__block:nth-of-type(2) .home__origins__text {
    width: 55%;
  }
}
.home__origins .home__origins__text {
  width: 50%;
  padding-right: 8.8rem;
  position: relative;
  z-index: 2;
  transition: opacity 0.35s ease, transform 0.35s ease;
}
@media screen and (max-width: 1081px) and (orientation: portrait) {
  .home__origins .home__origins__text {
    padding-right: 0;
  }
}
@media screen and (max-width: 821px) {
  .home__origins .home__origins__text {
    width: 80%;
    padding-right: 0;
  }
}
@media screen and (max-width: 601px) {
  .home__origins .home__origins__text {
    width: 100%;
  }
}
.home__origins .home__origins__text.is-faded {
  opacity: 0;
  transform: translateY(-1rem);
}
.home__origins .home__origins__images {
  width: 50%;
  height: 100%;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1081px) and (orientation: portrait) {
  .home__origins .home__origins__images {
    margin-top: -62rem;
    margin-right: -8rem;
  }
}
@media screen and (max-width: 601px) {
  .home__origins .home__origins__images {
    width: 100%;
    margin: 0;
  }
}
.home__origins .home__origins__images .home__origins__img {
  position: absolute;
}
.home__origins .home__origins__images .home__origins__img:nth-of-type(1) {
  width: 62.6rem;
  right: -12rem;
  top: -19rem;
}
.home__origins .home__origins__images .home__origins__img:nth-of-type(1) img {
  transform: rotate(-9deg);
  opacity: 0.6;
}
@media screen and (max-width: 821px) {
  .home__origins .home__origins__images .home__origins__img:nth-of-type(1) {
    right: -5rem;
    top: -13rem;
  }
}
@media screen and (max-width: 601px) {
  .home__origins .home__origins__images .home__origins__img:nth-of-type(1) {
    position: relative;
    right: -5rem;
    top: -2rem;
    width: 74.6rem;
  }
  .home__origins .home__origins__images .home__origins__img:nth-of-type(1) img {
    opacity: 0.3;
  }
}
.home__origins .home__origins__images .home__origins__img:nth-of-type(2) {
  width: 63.8rem;
  top: -10rem;
  left: -4rem;
}
@media screen and (max-width: 601px) {
  .home__origins .home__origins__images .home__origins__img:nth-of-type(2) {
    width: 61.8rem;
    top: 3rem;
    left: -24rem;
  }
}
.home__origins .home__origins__images .home__origins__img:nth-of-type(3) {
  width: 44rem;
  right: -3rem;
}
@media screen and (max-width: 601px) {
  .home__origins .home__origins__images .home__origins__img:nth-of-type(3) {
    width: 68rem;
    right: -6rem;
    bottom: -7rem;
    opacity: 0.7;
    filter: invert(1);
    mix-blend-mode: multiply;
  }
}
.home__origins .home__origins__images .home__origins__img:nth-of-type(4) {
  width: 24.9rem;
  right: 6rem;
  top: 2rem;
}
@media screen and (max-width: 601px) {
  .home__origins .home__origins__images .home__origins__img:nth-of-type(4) {
    width: 38.9rem;
    right: 7rem;
    top: 37rem;
  }
}

.home__origins__background.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1;
}

.home__intro__background.is-fixed {
  position: fixed;
  top: -90vh;
  left: 0;
  width: 100%;
  z-index: 1;
}

.home__legacy {
  width: 100%;
  position: relative;
  z-index: 3;
  margin-top: -26rem;
}
@media screen and (max-width: 821px) {
  .home__legacy {
    margin-top: -13rem;
  }
}
@media screen and (max-width: 601px) {
  .home__legacy {
    margin-top: -16rem;
  }
}
.home__legacy .home__legacy__background {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
.home__legacy .home__legacy__background img {
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.home__legacy .home__legacy__background .home__legacy__map {
  width: 80%;
  position: absolute;
  top: 16rem;
  right: -3rem;
}
.home__legacy .home__legacy__content {
  position: relative;
  z-index: 2;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  align-content: flex-start;
  gap: 10rem;
  padding: 32rem 16rem 21rem;
}
@media screen and (max-width: 821px) {
  .home__legacy .home__legacy__content {
    padding: 24rem 8rem;
  }
}
@media screen and (max-width: 601px) {
  .home__legacy .home__legacy__content {
    padding: 30rem 2.4rem;
    overflow: hidden;
  }
}
.home__legacy .home__legacy__content .home__legacy__heading {
  width: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  align-content: center;
  gap: 4rem;
  text-align: center;
}
@media screen and (max-width: 601px) {
  .home__legacy .home__legacy__content .home__legacy__heading {
    gap: 6rem;
  }
}
.home__legacy .home__legacy__content .home__legacy__heading img {
  width: 7.42rem;
}
@media screen and (max-width: 601px) {
  .home__legacy .home__legacy__content .home__legacy__heading img {
    width: 9.42rem;
  }
}
.home__legacy .home__legacy__content .home__legacy__heading .home__legacy__title {
  width: 55%;
  font-size: 4rem;
  font-family: "rosella-hatched", "Manuale", serif, sans-serif;
  font-weight: normal;
  line-height: 1.3;
}
@media screen and (max-width: 821px) {
  .home__legacy .home__legacy__content .home__legacy__heading .home__legacy__title {
    width: 100%;
  }
}
@media screen and (max-width: 601px) {
  .home__legacy .home__legacy__content .home__legacy__heading .home__legacy__title {
    width: 97%;
    font-size: 3.6rem;
  }
}
.home__legacy .home__legacy__content .home__legacy__heading .home__legacy__title span {
  color: #B0CEDB;
}
.home__legacy .home__legacy__content .home__legacy__block {
  width: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  align-content: flex-start;
  gap: 10rem;
}
@media screen and (max-width: 821px) {
  .home__legacy .home__legacy__content .home__legacy__block {
    gap: 24rem;
  }
}
@media screen and (max-width: 601px) {
  .home__legacy .home__legacy__content .home__legacy__block {
    gap: 22rem;
  }
}
.home__legacy .home__legacy__content .home__legacy__block .home__legacy__images {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  position: relative;
  z-index: 1;
}
.home__legacy .home__legacy__content .home__legacy__block .home__legacy__images .home__legacy__img:nth-of-type(1) {
  width: 60.3rem;
}
@media screen and (max-width: 601px) {
  .home__legacy .home__legacy__content .home__legacy__block .home__legacy__images .home__legacy__img:nth-of-type(1) {
    margin-top: 34rem;
    margin-left: -18rem;
  }
}
.home__legacy .home__legacy__content .home__legacy__block .home__legacy__images .home__legacy__img:nth-of-type(2) {
  width: 80rem;
  position: absolute;
  top: -4rem;
  left: -8rem;
}
@media screen and (max-width: 821px) {
  .home__legacy .home__legacy__content .home__legacy__block .home__legacy__images .home__legacy__img:nth-of-type(2) {
    width: 64rem;
    top: 13rem;
  }
}
@media screen and (max-width: 601px) {
  .home__legacy .home__legacy__content .home__legacy__block .home__legacy__images .home__legacy__img:nth-of-type(2) {
    width: 75rem;
    top: -5rem;
  }
}
.home__legacy .home__legacy__content .home__legacy__block .home__legacy__images .home__legacy__img:nth-of-type(3) {
  width: 80rem;
  position: absolute;
  bottom: -42rem;
  right: -9rem;
}
@media screen and (max-width: 821px) {
  .home__legacy .home__legacy__content .home__legacy__block .home__legacy__images .home__legacy__img:nth-of-type(3) {
    width: 64rem;
    bottom: -26rem;
  }
}
@media screen and (max-width: 601px) {
  .home__legacy .home__legacy__content .home__legacy__block .home__legacy__images .home__legacy__img:nth-of-type(3) {
    bottom: -23rem;
  }
}
.home__legacy .home__legacy__content .home__legacy__block .home__legacy__text {
  width: 56%;
  padding-left: 8rem;
  font-size: 3.2rem;
  line-height: 1.5;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 821px) {
  .home__legacy .home__legacy__content .home__legacy__block .home__legacy__text {
    width: 100%;
    padding-left: 0;
  }
}

.home__transcendence {
  width: 100%;
  position: relative;
  z-index: 4;
}
.home__transcendence .home__transcendence__background {
  width: 100%;
  height: 100%;
  position: absolute;
  top: -12rem;
  left: 0;
  z-index: 0;
}
@media screen and (max-width: 601px) {
  .home__transcendence .home__transcendence__background {
    top: -16rem;
  }
}
.home__transcendence .home__transcendence__background img {
  height: 100%;
  object-fit: fill;
}
.home__transcendence .home__transcendence__background .home__transcendence__img:nth-of-type(1) {
  width: 57.8rem;
  position: absolute;
  z-index: 1;
  top: 22rem;
  right: 10rem;
  mix-blend-mode: multiply;
}
@media screen and (max-width: 821px) {
  .home__transcendence .home__transcendence__background .home__transcendence__img:nth-of-type(1) {
    width: 50rem;
    right: -10rem;
  }
}
@media screen and (max-width: 601px) {
  .home__transcendence .home__transcendence__background .home__transcendence__img:nth-of-type(1) {
    width: 64rem;
    right: -29rem;
    top: 77rem;
  }
}
.home__transcendence .home__transcendence__background .home__transcendence__img:nth-of-type(2) {
  width: 20rem;
  z-index: 1;
  mix-blend-mode: darken;
  position: absolute;
  top: 58rem;
  right: 4rem;
}
@media screen and (max-width: 821px) {
  .home__transcendence .home__transcendence__background .home__transcendence__img:nth-of-type(2) {
    right: 0;
  }
}
@media screen and (max-width: 601px) {
  .home__transcendence .home__transcendence__background .home__transcendence__img:nth-of-type(2) {
    width: 23rem;
    right: 4rem;
    top: 141rem;
  }
}
.home__transcendence .home__transcendence__content {
  position: relative;
  z-index: 2;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  color: var(--color-off-black);
  padding: 16rem 16rem 0;
}
@media screen and (max-width: 821px) {
  .home__transcendence .home__transcendence__content {
    padding: 16rem 4rem 0;
  }
}
@media screen and (max-width: 601px) {
  .home__transcendence .home__transcendence__content {
    padding: 16rem 2.4rem;
    flex-direction: column;
  }
}
.home__transcendence .home__transcendence__content .home__transcendence__text {
  width: 52%;
  margin-bottom: 24rem;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: stretch;
  align-content: stretch;
  gap: 0.8rem;
  padding-right: 5rem;
  font-size: 2.8rem;
  line-height: 1.5;
}
@media screen and (max-width: 821px) {
  .home__transcendence .home__transcendence__content .home__transcendence__text {
    width: 65%;
    padding-right: 0;
    margin-bottom: 12rem;
  }
}
@media screen and (max-width: 601px) {
  .home__transcendence .home__transcendence__content .home__transcendence__text {
    width: 100%;
  }
}
.home__transcendence .home__transcendence__content .home__transcendence__text span {
  font-family: "rosella-hatched", "Manuale", serif, sans-serif;
  font-weight: normal;
  color: #832731;
  font-size: 3.2rem;
  line-height: 1.3;
}
.home__transcendence .home__transcendence__content .home__transcendence__images {
  width: 48%;
}
@media screen and (max-width: 601px) {
  .home__transcendence .home__transcendence__content .home__transcendence__images {
    width: 100%;
  }
}
.home__transcendence .home__transcendence__content .home__transcendence__images .home__transcendence__img {
  width: 40.2rem;
  margin-top: -11rem;
}
@media screen and (max-width: 821px) {
  .home__transcendence .home__transcendence__content .home__transcendence__images .home__transcendence__img {
    width: 28rem;
    margin-left: 4rem;
  }
}
@media screen and (max-width: 601px) {
  .home__transcendence .home__transcendence__content .home__transcendence__images .home__transcendence__img {
    width: 45rem;
    margin-left: -5rem;
    margin-top: -8rem;
  }
}
.home__transcendence .home__transcendence__content .home__transcendence__images .home__transcendence__img img {
  transform: rotate(8.69deg);
}

.home__transcendence__manifesto {
  width: 100%;
  position: relative;
}
.home__transcendence__manifesto .home__transcendence__manifesto__background {
  width: 97%;
  margin: -1.6rem 1.5%;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 821px) {
  .home__transcendence__manifesto .home__transcendence__manifesto__background {
    width: 120%;
    margin: 0 0 0 -10rem;
  }
}
@media screen and (max-width: 601px) {
  .home__transcendence__manifesto .home__transcendence__manifesto__background {
    width: 140%;
    margin-top: -8rem;
    position: absolute;
    top: 0;
    left: 0;
  }
}
.home__transcendence__manifesto .home__transcendence__manifesto__content {
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  align-content: center;
}
@media screen and (max-width: 601px) {
  .home__transcendence__manifesto .home__transcendence__manifesto__content {
    position: relative;
    top: auto;
    left: auto;
  }
}
.home__transcendence__manifesto .home__transcendence__manifesto__content .home__manifesto__img {
  position: absolute;
  z-index: 1;
}
.home__transcendence__manifesto .home__transcendence__manifesto__content .home__manifesto__img:nth-of-type(1) {
  width: 44rem;
  top: 33rem;
  left: 25rem;
}
@media screen and (max-width: 821px) {
  .home__transcendence__manifesto .home__transcendence__manifesto__content .home__manifesto__img:nth-of-type(1) {
    top: 10rem;
    left: auto;
    right: -10rem;
  }
}
@media screen and (max-width: 601px) {
  .home__transcendence__manifesto .home__transcendence__manifesto__content .home__manifesto__img:nth-of-type(1) {
    width: 36rem;
    left: -13rem;
    right: auto;
  }
}
.home__transcendence__manifesto .home__transcendence__manifesto__content .home__manifesto__img:nth-of-type(2) {
  width: 38rem;
  top: 59rem;
  right: 30rem;
}
@media screen and (max-width: 821px) {
  .home__transcendence__manifesto .home__transcendence__manifesto__content .home__manifesto__img:nth-of-type(2) {
    width: 34rem;
    right: -4rem;
    z-index: 3;
  }
}
@media screen and (max-width: 601px) {
  .home__transcendence__manifesto .home__transcendence__manifesto__content .home__manifesto__img:nth-of-type(2) {
    width: 23rem;
    top: 80rem;
  }
}
.home__transcendence__manifesto .home__transcendence__manifesto__content .home__transcendence__manifesto__content__wrapper {
  width: 92rem;
  position: relative;
  z-index: 2;
  padding: 15rem;
  margin-top: 20rem;
  margin-left: -7rem;
}
@media screen and (max-width: 821px) {
  .home__transcendence__manifesto .home__transcendence__manifesto__content .home__transcendence__manifesto__content__wrapper {
    margin-left: -20rem;
  }
}
@media screen and (max-width: 601px) {
  .home__transcendence__manifesto .home__transcendence__manifesto__content .home__transcendence__manifesto__content__wrapper {
    width: 100%;
    margin-left: 0;
    margin-top: 10rem;
    padding: 20rem 2.4rem 0 2.4rem;
  }
}
.home__transcendence__manifesto .home__transcendence__manifesto__content .home__transcendence__manifesto__content__wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
@media screen and (max-width: 601px) {
  .home__transcendence__manifesto .home__transcendence__manifesto__content .home__transcendence__manifesto__content__wrapper img {
    height: auto;
    top: 8rem;
  }
}
.home__transcendence__manifesto .home__transcendence__manifesto__content .home__transcendence__manifesto__content__wrapper .home__transcendence__manifesto__content__text {
  width: 100%;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  align-content: flex-start;
  font-family: "HolidayFree", "Manuale", serif, sans-serif;
  font-size: 2.4rem;
  line-height: 1.5;
  color: #4C4C4C;
  margin-top: -4rem;
}
@media screen and (max-width: 601px) {
  .home__transcendence__manifesto .home__transcendence__manifesto__content .home__transcendence__manifesto__content__wrapper .home__transcendence__manifesto__content__text {
    padding-right: 7%;
  }
}
.home__transcendence__manifesto .home__transcendence__manifesto__content .home__transcendence__manifesto__content__wrapper .home__transcendence__manifesto__content__text .home__transcendence__manifesto__title {
  font-size: 4rem;
  color: #832731;
  transform: rotate(-2.71deg);
}
@media screen and (max-width: 601px) {
  .home__transcendence__manifesto .home__transcendence__manifesto__content .home__transcendence__manifesto__content__wrapper .home__transcendence__manifesto__content__text .home__transcendence__manifesto__title {
    margin-left: 6rem;
  }
}
.home__transcendence__manifesto .home__transcendence__manifesto__content .home__transcendence__manifesto__content__wrapper .home__transcendence__manifesto__content__text p {
  margin-left: 1.6rem;
}
.home__transcendence__manifesto .home__transcendence__manifesto__content .home__transcendence__manifesto__content__wrapper .home__transcendence__manifesto__content__text p:nth-of-type(1) {
  margin-top: 2rem;
}
@media screen and (max-width: 601px) {
  .home__transcendence__manifesto .home__transcendence__manifesto__content .home__transcendence__manifesto__content__wrapper .home__transcendence__manifesto__content__text p:nth-of-type(1) {
    margin-top: 4rem;
    margin-left: 6rem;
  }
}
.home__transcendence__manifesto .home__transcendence__manifesto__content .home__transcendence__manifesto__content__wrapper .home__transcendence__manifesto__content__text p:nth-of-type(2) {
  margin-top: 4rem;
  margin-left: 3rem;
  transform: rotate(1.5deg);
}
@media screen and (max-width: 601px) {
  .home__transcendence__manifesto .home__transcendence__manifesto__content .home__transcendence__manifesto__content__wrapper .home__transcendence__manifesto__content__text p:nth-of-type(2) {
    margin-left: 7rem;
  }
}
.home__transcendence__manifesto .home__transcendence__manifesto__content .home__transcendence__manifesto__content__wrapper .home__transcendence__manifesto__content__text p:nth-of-type(3) {
  margin-top: 3.2rem;
  margin-left: 3.6rem;
  transform: rotate(0.5deg);
}
@media screen and (max-width: 601px) {
  .home__transcendence__manifesto .home__transcendence__manifesto__content .home__transcendence__manifesto__content__wrapper .home__transcendence__manifesto__content__text p:nth-of-type(3) {
    margin-top: 35rem;
    margin-left: 0;
    transform: rotate(0deg);
  }
}
.home__transcendence__manifesto .home__transcendence__manifesto__content .home__transcendence__manifesto__content__wrapper .home__transcendence__manifesto__content__text p:nth-of-type(4) {
  margin-top: 4.4rem;
  margin-left: 2.8rem;
  transform: rotate(-1deg);
}
@media screen and (max-width: 601px) {
  .home__transcendence__manifesto .home__transcendence__manifesto__content .home__transcendence__manifesto__content__wrapper .home__transcendence__manifesto__content__text p:nth-of-type(4) {
    margin-left: 0;
    transform: rotate(0deg);
  }
}
.home__transcendence__manifesto .home__transcendence__manifesto__content .home__transcendence__manifesto__content__wrapper .home__transcendence__manifesto__content__text p strong {
  color: #000000;
}
.home__transcendence__manifesto .home__transcendence__manifesto__ending {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  color: var(--color-off-black);
  padding: 24rem 16rem 39rem;
  text-align: center;
  font-family: "rosella-hatched", "Manuale", serif, sans-serif;
  font-weight: normal;
  font-size: 5.6rem;
  line-height: 1.3;
}
@media screen and (max-width: 821px) {
  .home__transcendence__manifesto .home__transcendence__manifesto__ending {
    margin-top: 40rem;
    padding: 24rem 4rem 36rem;
    font-size: 4rem;
  }
}
@media screen and (max-width: 601px) {
  .home__transcendence__manifesto .home__transcendence__manifesto__ending {
    margin-top: 0;
    padding: 11rem 2.4rem 47rem;
    font-size: 3.6rem;
  }
}
.home__transcendence__manifesto .home__transcendence__manifesto__ending strong {
  display: block;
  color: #832731;
}

.home__today {
  width: 100%;
  position: relative;
  z-index: 2;
  margin-top: -32rem;
  margin-bottom: -8rem;
}
@media screen and (max-width: 601px) {
  .home__today {
    margin-top: -41rem;
    margin-bottom: -6rem;
  }
}
.home__today .home__today__background {
  width: 100%;
  position: relative;
  z-index: 0;
  overflow: hidden;
}
@media screen and (max-width: 821px) {
  .home__today .home__today__background .home__today__bg {
    width: 160%;
    margin-left: -24rem;
  }
}
@media screen and (max-width: 601px) {
  .home__today .home__today__background .home__today__bg {
    width: 100%;
    margin: 0;
  }
}
.home__today .home__today__background .home__today__grandpa {
  width: 102rem;
  position: absolute;
  left: -32rem;
  top: -13rem;
  mix-blend-mode: lighten;
}
@media screen and (max-width: 601px) {
  .home__today .home__today__background .home__today__grandpa {
    display: none;
  }
}
.home__today .home__today__content {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  padding: 31rem 22rem 18.2rem;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: stretch;
  align-content: stretch;
  gap: 4rem;
}
@media screen and (max-width: 821px) {
  .home__today .home__today__content {
    padding-left: 12rem;
    padding-right: 12rem;
    text-align: center;
  }
}
.home__today .home__today__content h2 {
  font-family: "rosella-hatched", "Manuale", serif, sans-serif;
  font-weight: normal;
  font-size: 5.6rem;
  line-height: 1.3;
}
@media screen and (max-width: 821px) {
  .home__today .home__today__content h2 {
    font-size: 4.8rem;
  }
}
@media screen and (max-width: 601px) {
  .home__today .home__today__content h2 {
    font-size: 4rem;
  }
}
.home__today .home__today__content p {
  width: 51%;
  font-size: 2.8rem;
  line-height: 1.5;
}
@media screen and (max-width: 821px) {
  .home__today .home__today__content p {
    width: 100%;
  }
}

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