@font-face {
  font-family: "ledger";
  src: url("fonts/Ledger-Regular.ttf");
}

@font-face {
  font-family: "source";
  src: url("fonts/SourceSerifPro-Regular.ttf");
}

@font-face {
  font-family: "mate";
  src: url("fonts/MateSC-Regular.ttf");
}

@font-face {
  font-family: "antonio";
  src: url("fonts/Antonio-Bold.ttf");
}

@-webkit-keyframes floating {
  0% {
    margin-top: 0;
  }
  40% {
    margin-top: -1rem;
  }
  100% {
    margin-top: 0rem;
  }
}

@keyframes floating {
  0% {
    margin-top: 0;
  }
  40% {
    margin-top: -1rem;
  }
  100% {
    margin-top: 0rem;
  }
}

@-webkit-keyframes fall {
  0% {
    top: -100px;
  }
  20% {
    top: 32px;
  }
  40% {
    top: 10px;
  }
  50% {
    -webkit-transform: rotate(-10deg);
            transform: rotate(-10deg);
  }
  60% {
    top: 32px;
    -webkit-transform: rotate(-10deg);
            transform: rotate(-10deg);
  }
  100% {
    top: 32px;
    -webkit-transform: rotate(-10deg);
            transform: rotate(-10deg);
  }
}

@keyframes fall {
  0% {
    top: -100px;
  }
  20% {
    top: 32px;
  }
  40% {
    top: 10px;
  }
  50% {
    -webkit-transform: rotate(-10deg);
            transform: rotate(-10deg);
  }
  60% {
    top: 32px;
    -webkit-transform: rotate(-10deg);
            transform: rotate(-10deg);
  }
  100% {
    top: 32px;
    -webkit-transform: rotate(-10deg);
            transform: rotate(-10deg);
  }
}

@-webkit-keyframes fallmobile {
  0% {
    top: -100px;
  }
  20% {
    top: 12px;
  }
  40% {
    top: 5px;
  }
  50% {
    -webkit-transform: rotate(-10deg);
            transform: rotate(-10deg);
  }
  60% {
    top: 12px;
    -webkit-transform: rotate(-10deg);
            transform: rotate(-10deg);
  }
  100% {
    top: 12px;
    -webkit-transform: rotate(-10deg);
            transform: rotate(-10deg);
  }
}

@keyframes fallmobile {
  0% {
    top: -100px;
  }
  20% {
    top: 12px;
  }
  40% {
    top: 5px;
  }
  50% {
    -webkit-transform: rotate(-10deg);
            transform: rotate(-10deg);
  }
  60% {
    top: 12px;
    -webkit-transform: rotate(-10deg);
            transform: rotate(-10deg);
  }
  100% {
    top: 12px;
    -webkit-transform: rotate(-10deg);
            transform: rotate(-10deg);
  }
}

html {
  font-size: 100%;
  font-family: "mate";
  -webkit-box-sizing: padding-box;
  box-sizing: border-box;
}

*, *::before, *::after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  width: 100%;
  position: relative;
  background-color: #F1ECE6;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-transition: ease-out 2000ms;
  transition: ease-out 2000ms;
}

p {
  line-height: 22px;
}

a.to_nav {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 1;
  font-size: 3rem;
  background-color: #fff;
}

#overlay {
  background-color: rgba(22, 30, 24, 0.8);
  position: fixed;
  width: 100%;
  z-index: 5;
  height: 100vh;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#overlay #close {
  background-image: url("media/close.png");
  position: absolute;
  width: 64px;
  height: 64px;
  right: 32px;
  top: 32px;
  background-size: cover;
  background-repeat: no-repeat;
  cursor: pointer;
}

#overlay img {
  max-height: 80%;
  max-width: 80%;
  border: 1px solid #2E4735;
  border-radius: 6px;
  background-color: #C4CCC6;
}

img.background {
  position: absolute;
  width: 100%;
  height: 102%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: ease-in-out 1500ms;
  transition: ease-in-out 1500ms;
}

#back {
  position: absolute;
  top: -100px;
  left: 32px;
  -webkit-transition: 300ms;
  transition: 300ms;
  z-index: 3;
  cursor: pointer;
  opacity: 0;
}

#back img {
  width: 82px;
  height: auto;
  -webkit-filter: drop-shadow(0px 5px 1px rgba(22, 30, 24, 0.2));
          filter: drop-shadow(0px 5px 1px rgba(22, 30, 24, 0.2));
}

.pseudo {
  position: absolute;
  -webkit-transition: 300ms;
  transition: 300ms;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.pseudo img:first-of-type {
  width: 400px;
  height: 320px;
  -ms-flex-item-align: end;
      align-self: flex-end;
  margin-left: -32px;
}

.pseudo img:last-of-type {
  width: 80px;
  height: 180px;
  -ms-flex-item-align: end;
      align-self: flex-end;
  margin-right: 32px;
}

header {
  width: 100%;
  height: 3rem;
  position: absolute;
  text-align: center;
  position: absolute;
  top: 3rem;
  -webkit-transition: 300ms;
  transition: 300ms;
  z-index: 2;
}

header h1 {
  font-family: "mate";
  color: #2E4735;
  font-size: 3rem;
  letter-spacing: 5px;
  -webkit-animation-name: floating;
          animation-name: floating;
  -webkit-animation-duration: 1500ms;
          animation-duration: 1500ms;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
}

header h3 {
  color: #756f66;
}

#illustration_container {
  height: 824px;
  width: 800px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: ease-in-out 1500ms;
  transition: ease-in-out 1500ms;
  margin-left: -12px;
}

#illustration_container .eyes {
  position: absolute;
  -webkit-transition: 200ms;
  transition: 200ms;
  width: 125px;
  margin-bottom: 626px;
  margin-left: 342px;
  -ms-flex-item-align: end;
      align-self: flex-end;
}

.eyes .eye {
  width: 45px;
  height: 45px;
  background: radial-gradient(#fff, #afb7c7);
  float: left;
  border-radius: 50%;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.eyes .eye:last-child {
  float: right;
}

.eyes .eye img {
  width: 22px;
  height: 22px;
  margin-left: 0;
  margin-top: 0;
}

#illustration_container .top img, #illustration_container .bottom img {
  width: 800px;
  height: auto;
  z-index: 1;
  position: absolute;
  cursor: pointer;
}

#illustration_container .top img:first-child, #illustration_container .bottom img:first-child {
  z-index: 0;
}

#illustration_container .top img:last-child, #illustration_container .bottom img:last-child {
  opacity: 1;
}

#illustration_container .top {
  height: 140px;
  position: relative;
  -ms-flex-item-align: start;
      -ms-grid-row-align: start;
      align-self: start;
  left: 2px;
}

#illustration_container .top img {
  bottom: 0;
}

#illustration_container .top img:first-child {
  top: initial;
  bottom: -6px;
}

#illustration_container .bottom {
  height: 286px;
  position: relative;
  -ms-flex-item-align: end;
      -ms-grid-row-align: end;
      align-self: end;
}

#illustration_container .bottom img {
  bottom: 0;
  left: 2px;
}

#illustration_container .bottom img:first-child {
  bottom: initial;
  bottom: 678px;
}

#menu {
  position: absolute;
  z-index: 1;
  bottom: 430px;
  list-style-type: none;
  display: none;
  opacity: 0;
  -ms-grid-columns: 1fr 1fr 1fr;
      grid-template-columns: 1fr 1fr 1fr;
  -ms-grid-rows: 1fr 1fr 1fr;
      grid-template-rows: 1fr 1fr 1fr;
  -webkit-transition: 500ms;
  transition: 500ms;
}

#menu li {
  position: relative;
  -webkit-box-shadow: 0px 8px 5px rgba(22, 30, 24, 0.2);
          box-shadow: 0px 8px 5px rgba(22, 30, 24, 0.2);
}

#menu li:nth-child(1) {
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-column: 2/3;
  -ms-grid-row: 1;
  grid-row: 1;
  -webkit-transform: rotate(6deg);
          transform: rotate(6deg);
}

#menu li:nth-child(2) {
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1/2;
  -ms-grid-row: 2;
  grid-row: 2;
  -webkit-transform: rotate(-10deg);
          transform: rotate(-10deg);
  top: 40px;
  left: 120px;
}

#menu li:nth-child(3) {
  -ms-grid-column: 3;
  -ms-grid-column-span: 1;
  grid-column: 3/4;
  -ms-grid-row: 3;
  grid-row: 3;
  -webkit-transform: rotate(12deg);
          transform: rotate(12deg);
  right: 120px;
}

#menu li a {
  display: block;
  width: 300px;
  height: 116px;
  position: relative;
}

#menu li a:hover span {
  color: #fff;
}

#menu li a span {
  width: 100%;
  position: absolute;
  z-index: 1;
  text-align: center;
  text-transform: uppercase;
  font-size: 2.2rem;
  font-family: "antonio";
  margin-top: 36px;
  letter-spacing: 4px;
  color: #DAD3CA;
  -webkit-transition: 300ms;
  transition: 300ms;
}

#menu li a img {
  width: 100%;
  height: auto;
  position: absolute;
}

#page_name {
  position: absolute;
  height: 80px;
  top: 40px;
  -webkit-box-shadow: 0px 4px 5px rgba(22, 30, 24, 0.2);
          box-shadow: 0px 4px 5px rgba(22, 30, 24, 0.2);
}

#page_name img {
  height: 100%;
  width: auto;
}

#page_name span {
  position: absolute;
  width: 100%;
  position: absolute;
  z-index: 1;
  text-align: center;
  text-transform: uppercase;
  font-size: 1.5rem;
  font-family: "antonio";
  margin-top: 25px;
  letter-spacing: 4px;
  color: #DAD3CA;
}

#back_page {
  position: absolute;
  top: 32px;
  left: 32px;
  -webkit-transition: 300ms;
  transition: 300ms;
  z-index: 1;
  cursor: pointer;
}

#back_page img {
  width: 82px;
  height: auto;
  -webkit-filter: drop-shadow(0px 5px 1px rgba(22, 30, 24, 0.2));
          filter: drop-shadow(0px 5px 1px rgba(22, 30, 24, 0.2));
}

main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 2000px;
  width: 70%;
  margin-top: 180px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: calc(100vh - 180px);
}

main .thumbnail_information {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.thumbnail_information h2 span {
  color: #756f66;
  font-size: 1.1rem;
  position: relative;
  top: -0.75rem;
}

main .image_frame {
  position: relative;
  width: 25%;
  height: 280px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

main .information, main .fullpage {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 70%;
  height: 280px;
  background-color: #fff;
  border-radius: 12px;
  -webkit-box-shadow: 0px 8px 5px rgba(22, 30, 24, 0.2);
          box-shadow: 0px 8px 5px rgba(22, 30, 24, 0.2);
  padding: 32px 36px;
}

main .image_frame .thumbnail {
  height: 98%;
  width: 98%;
  max-height: 100vh;
  max-width: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-box-shadow: 0px 8px 5px rgba(22, 30, 24, 0.2);
          box-shadow: 0px 8px 5px rgba(22, 30, 24, 0.2);
}

main .image_frame .frame_left, main .image_frame .frame_top, main .image_frame .frame_right, main .image_frame .frame_bottom {
  position: absolute;
}

main .image_frame .frame_left {
  left: -1px;
  height: 100%;
  width: 18px;
  z-index: 1;
}

main .image_frame .frame_right {
  right: -1px;
  height: 100%;
  width: 18px;
  z-index: 1;
}

main .image_frame .frame_top {
  top: -1px;
  width: 100%;
  height: 18px;
}

main .image_frame .frame_bottom {
  bottom: -1px;
  width: 100%;
  height: 18px;
}

main .information:last-of-type, main .fullpage:last-of-type {
  margin-bottom: 50px;
}

main .information h2, main section h2 {
  font-family: "ledger";
  font-size: 2rem;
  color: #2E4735;
  width: 100%;
}

main .information h2:not(:first-of-type), main section h2:not(:first-of-type) {
  margin-top: 64px;
}

main .information h3, main section h3 {
  color: #161E18;
  font-size: 1.2rem;
}

h3.add_margin {
  margin-top: 64px;
}

main .information p, main section p {
  font-family: "source";
  font-size: 1rem;
  width: 100%;
  margin-top: -12px;
  color: #161E18;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

main .information .tags, main section .tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
  width: 100%;
}

main .information .tags div, main section .tags div {
  font-size: 0.8rem;
  letter-spacing: 1.2px;
  font-family: "antonio";
  color: #fff;
  text-transform: uppercase;
  width: auto;
  height: 34px;
  background-color: #466850;
  padding: 8px 14px;
  border-radius: 20px;
  -ms-flex-item-align: end;
      align-self: flex-end;
}

main .information .tags .go_to {
  width: auto;
  height: 48px;
  margin-bottom: -8px;
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
  margin-left: auto;
}

main .information .tags .go_to img {
  width: auto;
  height: 100%;
  -webkit-filter: drop-shadow(0px 3px 1px rgba(22, 30, 24, 0.2));
          filter: drop-shadow(0px 3px 1px rgba(22, 30, 24, 0.2));
}

main#content_fullpage {
  min-height: calc(100vh - 180px);
}

main .fullpage {
  width: 100%;
  height: auto;
}

main .fullpage p {
  margin-top: 8px;
  margin-bottom: 12px;
  display: block;
  -webkit-line-clamp: initial;
  -webkit-box-orient: initial;
  overflow: initial;
}

main section {
  margin-bottom: 64px;
  width: 100%;
}

main section.no_margin {
  margin-bottom: 0px;
}

main section:last-of-type {
  margin-bottom: 0;
}

main section a.cta {
  font-family: "mate";
  font-weight: bold;
  font-size: 1.1rem;
  border: 2px solid #DAD3CA;
  color: #466850;
  padding: 2px 7px 3px 6px;
  text-decoration: none;
  border-radius: 6px;
  -webkit-transition: 300ms;
  transition: 300ms;
  white-space: nowrap;
}

main section a.cta:hover {
  border-color: #466850;
}

section .image_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 100px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 32px;
}

section .image_wrapper.text {
  margin-bottom: 0;
  min-height: initial;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 64px;
}

section .image_wrapper.inline {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 200px;
  float: left;
  margin-top: 32px;
  margin-right: 32px;
  margin-bottom: 16px;
}

.image_wrapper img, .image_wrapper video, .image_wrapper iframe {
  border: 1px solid #2E4735;
  border-radius: 6px;
  cursor: pointer;
}

.image_wrapper.one_column img, .image_wrapper.one_column video {
  max-width: 100%;
}

.image_wrapper.two_columns img, .image_wrapper.two_columns video {
  max-width: 49%;
}

.image_wrapper.three_columns img, .image_wrapper.three_columns video {
  max-width: 32%;
}

.image_wrapper.four_columns img, .image_wrapper.four_columns video {
  max-width: 24%;
}

.image_wrapper.one_column iframe {
  width: 100%;
  height: 400px;
}
/*# sourceMappingURL=main.css.map */