@font-face {
  font-family: "PartyConfetti";
  src: url("../font/PartyConfettiRegular-eZOn3.ttf") format("truetype");
}
:root {
  /*
      #b49400 darkgoldish
      #ca8b24 a little lighter
      #832e2d brownish
      #e8e1d3 lighgrey ish
      #747864 darkgrey almost greenish
  */
  --line-color: white;
  --main-bg-color: white;
  --text-color: white;
  --card-color: lightgrey;
  --cubic-bezier-card-transition: cubic-bezier(.57,.25,.8,1.51);
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "PartyConfetti";
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background: var(--main-bg-color);
  overflow-x: hidden;
  overflow-y: auto;
}

.parallax {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 100vh;
}
.parallax img {
  position: absolute;
  top: 0;
  height: 100%;
}
.parallax #sky {
  right: 0;
  z-index: -3;
}
.parallax #monsters {
  left: 0;
  width: 100%;
  z-index: -2;
}
.parallax #text {
  left: 0px;
  top: -100px;
  width: 100%;
  transform: scale(0.8);
  -o-object-fit: fill;
     object-fit: fill;
}
.parallax #hero {
  left: 0;
  width: 100%;
}
.parallax::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 95%, var(--main-bg-color) 100%);
  z-index: 10;
}

#frog_parallax_behind {
  position: absolute;
  width: 50px;
  height: 50px;
  top: 77%;
  right: 20.5%;
  z-index: -3;
}

#frog_parallax_front {
  position: absolute;
  width: 50px;
  height: 50px;
  top: 77%;
  right: 20.5%;
  opacity: 0;
  z-index: 10002;
}
#frog_parallax_front:hover {
  cursor: pointer;
}

.speech-bubble_gans {
  position: absolute;
  background-color: black;
  color: white;
  padding: 20px;
  border-radius: 10px;
  display: inline-block;
  margin-right: 20px;
  right: 24.5%;
  top: 82%;
  opacity: 0;
  transition: opacity 400ms;
}

.speech-bubble_gans::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translate(-50%, 100%);
  border-style: solid;
  border-width: 10px 10px 0 10px;
  border-color: black transparent transparent transparent;
}

.speech-bubble_gans.found {
  opacity: 1 !important;
}

.speech-bubble_frog {
  position: absolute;
  background-color: black;
  color: white;
  padding: 20px;
  border-radius: 10px;
  display: inline-block;
  margin-right: 20px;
  right: 15%;
  top: 68%;
  opacity: 0;
  transition: opacity 400ms;
}

.speech-bubble_frog::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translate(-50%, 100%);
  border-style: solid;
  border-width: 10px 10px 0 10px;
  border-color: black transparent transparent transparent;
}

.speech-bubble_frog.found {
  opacity: 1 !important;
}

#gans_clouds {
  position: absolute;
  width: auto;
  height: 50px;
  top: 91%;
  right: 28%;
  opacity: 0.15;
  z-index: 1000;
}
#gans_clouds:hover {
  cursor: pointer;
}

#clouds {
  overflow: visible;
  position: absolute;
  top: 80%;
  height: 450px;
  width: 100%;
  z-index: 100;
}

#secret-popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 20px;
  background-color: white;
  border: 1px solid black;
  border-radius: 1em;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
  z-index: 10005;
}
#secret-popup p {
  padding-top: 10px;
}
#secret-popup #closeButton {
  display: block;
  margin-top: 20px;
  background-color: #eee;
  border: 1px solid black;
  border-radius: 1em;
  padding: 10px;
  cursor: pointer;
}

#pageOverlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 10004;
}

.hero-section {
  margin-top: 50px;
}
.hero-section .container {
  display: block;
  background: rgb(37, 37, 37);
}
.hero-section .container .background-container {
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: linear-gradient(to bottom, var(--main-bg-color) 0%, rgba(255, 255, 255, 0) 10%, rgba(255, 255, 255, 0) 85%, rgb(37, 37, 37) 100%), url("../../pictures/backgrounds/carpet_background.jpg");
  background-size: cover;
  background-position: center;
  padding-top: 200px;
  padding-bottom: 200px;
}
.hero-section .container .flex-div {
  display: flex;
  padding-left: 200px;
  padding-right: 200px;
}
.hero-section .container .flex-div .sec {
  position: relative;
  padding-left: 50px;
  padding-right: 50px;
  background-color: rgba(255, 255, 255, 0.8);
}
.hero-section .container .flex-div .sec h2 {
  position: absolute;
  top: -50px;
  font-size: 3.5em;
  margin-bottom: 10px;
  color: black;
  background-image: url("../../pictures/backgrounds/text_background.jpg");
  background-size: cover;
  background-position: center;
  padding-right: 20px;
  padding-left: 20px;
  border: solid 2px black;
}
.hero-section .container .flex-div .sec p {
  padding-top: 50px;
  padding-bottom: 50px;
  font-size: 1.5em;
  color: black;
}
.hero-section .container .carousel-container {
  display: flex;
  justify-content: center;
}
.hero-section .container .carousel-container .carousel {
  margin-top: 50px;
  width: 85vw;
  height: 90vh;
  position: relative;
}
.hero-section .container .carousel-container .carousel ul {
  list-style-type: none;
}
.hero-section .container .carousel-container .carousel .slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: 300ms opacity cubic-bezier(0.03, 0.51, 0.68, 0.5);
  transition-delay: 200ms;
}
.hero-section .container .carousel-container .carousel .slide > img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: fill;
     object-fit: fill;
  -o-object-position: center;
     object-position: center;
  border-radius: 2em;
  border-style: solid;
  box-shadow: 0 10px 30px white;
}
.hero-section .container .carousel-container .carousel .slide > video {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: fill;
     object-fit: fill;
  -o-object-position: center;
     object-position: center;
  border-radius: 2em;
  border-style: solid;
  box-shadow: 0 10px 30px white;
}
.hero-section .container .carousel-container .carousel .slide[data-active] {
  opacity: 1;
  transition-delay: 0ms;
}
.hero-section .container .carousel-container .carousel > img {
  margin: 0;
  padding: 0;
  list-style: none;
}

.snd-section {
  padding-top: 20px;
  background: linear-gradient(to bottom, rgb(37, 37, 37) 10%, rgb(37, 37, 37));
}
.snd-section .flex-div {
  display: flex;
  padding-top: 100px;
  padding-left: 50px;
  justify-content: center;
}
.snd-section .flex-div .text h2 {
  padding-left: 10px;
  padding-right: 10px;
  background-image: url(../../pictures/backgrounds/text_background.jpg);
  background-size: cover;
  font-size: 3.5em;
  margin-bottom: 10px;
  color: black;
  border: solid 2px black;
}

.team-section {
  padding-top: 100px;
  padding-bottom: 100px;
  overflow: hidden;
  background-image: linear-gradient(to bottom, rgb(37, 37, 37) 0%, rgba(255, 255, 255, 0) 10%, rgba(255, 255, 255, 0) 90%, rgb(37, 37, 37) 100%), url(../../pictures/backgrounds/staircase_background.jpg);
  background-size: cover;
}
.team-section .container {
  height: 1000px;
  width: 100vw;
  margin-left: 25em;
  overflow: hidden;
}
.team-section .profile-grid {
  position: absolute;
  width: 80%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 100px;
}
.team-section .itemcontainer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 350px;
}
.team-section .itemcontainer #first-cardstack {
  background: yellow;
}
.team-section .itemcontainer .flags {
  position: relative;
  top: 20px;
  height: 400px;
  width: 60px;
}
.team-section .itemcontainer .flags .flag {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--card-color);
  width: 50px;
  height: 50px;
  border-style: solid;
  border-width: 2px;
  border-color: black;
  border-left: var(--card-color);
  border-top-right-radius: 1em;
  border-bottom-right-radius: 1em;
  transition: 200ms ease;
}
.team-section .itemcontainer .flags .flag img {
  height: 30px;
  width: 30px;
}
.team-section .itemcontainer .flags .flag:hover {
  width: 60px;
  cursor: pointer;
}
.team-section .itemcontainer .flags .flag-profile {
  top: 0px;
  z-index: 5;
}
.team-section .itemcontainer .flags .flag-profile img {
  border-radius: 2em;
  border-style: solid;
  border-width: 2px;
  border-color: grey;
}
.team-section .itemcontainer .flags .flag-linkedin {
  top: -10px;
  z-index: 4;
}
.team-section .itemcontainer .flags .flag-twitter {
  top: -20px;
  z-index: 3;
}
.team-section .itemcontainer .flags .flag-artstation {
  top: -30px;
  z-index: 2;
}
.team-section .itemcontainer .flags .flag-extra1 {
  top: -40px;
  z-index: 1;
}
.team-section .itemcontainer .flags .selected {
  width: 65px;
}
.team-section .itemcontainer .finley .flag-profile {
  background: #ffdc93;
}
.team-section .itemcontainer .finley .flag-artstation {
  top: -10px !important;
  z-index: 2;
}
.team-section .itemcontainer .dominik .flag-profile {
  background: #b1e0f8;
}
.team-section .itemcontainer .ragnar .flag-profile {
  background: #8fc0a1;
}
.team-section .itemcontainer .rafael .flag-profile {
  background: #ce6157;
}
.team-section .itemcontainer .salo .flag-profile {
  background: #d65da4;
}
.team-section .itemcontainer .salo .flag-artstation {
  top: -20px !important;
  z-index: 2;
}
.team-section .itemcontainer .selected {
  z-index: 10 !important;
}
.team-section .cardstack {
  display: grid;
  grid-template-columns: 1fr;
}
.team-section .cardstack .profile-card {
  width: 30vmin;
  background-color: var(--card-color);
  display: flex;
  flex-direction: column;
  box-shadow: 0 5px 10px black;
}
.team-section .cardstack .profile-card img {
  align-self: center;
  place-self: center;
  margin-top: 30px;
  height: 150px;
  width: 150px;
  border-radius: 10em;
  margin-bottom: 10px;
  box-shadow: 0px 5px 20px black;
}
.team-section .cardstack .profile-card h2 {
  text-align: center;
  margin-top: 20px;
  padding-bottom: 5px;
}
.team-section .cardstack .profile-card blockquote {
  text-align: center;
  font-size: 1.2em;
}
.team-section .cardstack .social-card {
  position: absolute;
  width: 30vmin;
  background-color: var(--card-color);
  display: flex;
  align-items: center;
  flex-direction: column;
  box-shadow: 0 5px 10px black;
}
.team-section .cardstack .social-card h1 {
  position: absolute;
  left: 0;
  top: 0;
}
.team-section .cardstack .social-card img {
  margin-top: 60px;
  width: 150px;
  height: 150px;
  border-radius: 10em;
  box-shadow: 0 5px 20px black;
}
.team-section .cardstack .social-card h2 {
  margin-top: 20px;
}
.team-section .cardstack .social-card #svg {
  place-self: center;
  bottom: 20px;
  height: 50px;
  width: auto;
  margin-top: 60px;
  border-radius: 0px;
  box-shadow: 0 0px 0px black;
}
.team-section .itemcontainer {
  transform: scale(0.5);
  opacity: 0;
  transition: 1.1s var(--cubic-bezier-card-transition);
}
.team-section .itemcontainer .cardstack .card.removed {
  animation: profile_anim_before_remove 500ms ease-in-out;
}
.team-section .itemcontainer .cardstack .card.focused {
  animation: profile_anim_on_click 700ms ease;
}
.team-section .itemcontainer .cardstack .card {
  transition: transform 0.2s ease;
  transform: translate(0px, 0px);
}
.team-section .first {
  transform: scale(0.5);
  opacity: 0;
  transition: 1.1s ease-in;
}
.team-section .first .profile {
  background: #b1e0f8;
}
.team-section .first .twitter {
  visibility: hidden;
}
.team-section .first .extra1 {
  visibility: hidden;
}
.team-section .first .artstation {
  visibility: hidden;
}
.team-section .first.show {
  transform: scale(1);
  opacity: 1;
}
.team-section .second {
  transform: scale(0.5);
  opacity: 0;
  transition: 1.5s ease;
}
.team-section .second .profile {
  background: #ce6157;
}
.team-section .second .artstation {
  visibility: hidden;
}
.team-section .second .extra1 {
  visibility: hidden;
}
.team-section .second.show {
  transform: scale(1);
  opacity: 1;
}
.team-section .third {
  transform: scale(0.5);
  opacity: 0;
  transition: 1.9s ease;
}
.team-section .third .profile {
  background: #d65da4;
}
.team-section .third .extra1 {
  visibility: hidden;
}
.team-section .third .twitter {
  visibility: hidden;
}
.team-section .third.show {
  transform: scale(1);
  opacity: 1;
}
.team-section .fourth {
  transform: scale(0.5);
  opacity: 0;
  transition: 1.1s ease;
}
.team-section .fourth .profile {
  background: #ffdc93;
}
.team-section .fourth .twitter {
  visibility: hidden;
}
.team-section .fourth .extra1 {
  visibility: hidden;
}
.team-section .fourth .linkedin {
  visibility: hidden;
}
.team-section .fourth.show {
  transform: scale(1);
  opacity: 1;
}
.team-section .fifth {
  transform: scale(0.5);
  opacity: 0;
  transition: 1.5s ease;
}
.team-section .fifth .card {
  visibility: hidden !important;
}
.team-section .fifth .profile {
  background: #8fc0a1;
}
.team-section .fifth .transformed {
  transform: translate(0px, -40px) !important;
}
.team-section .fifth .selected {
  visibility: visible !important;
}
.team-section .fifth .extra1 #frogs_card {
  position: absolute;
  visibility: visible;
  height: auto;
  width: 50px;
  bottom: 10px;
}
.team-section .fifth .extra1 #frogs_card:hover {
  cursor: pointer;
}
.team-section .fifth .extra1 p::before {
  content: "";
  visibility: visible;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -100%);
  border-style: solid;
  border-width: 0 10px 10px 10px;
  border-color: transparent transparent black transparent;
}
.team-section .fifth .extra1 p {
  visibility: visible;
  opacity: 0;
  position: absolute;
  background: black;
  color: white;
  border-radius: 10px;
  width: 120px;
  height: 25px;
  padding-top: 3px;
  text-align: center;
  bottom: -40px;
  transition: all 400ms;
}
.team-section .fifth .extra1 p.found {
  opacity: 1 !important;
}
.team-section .fifth.show {
  transform: scale(1);
  opacity: 1;
}
.team-section .sixth {
  transform: scale(0.5);
  opacity: 0;
  transition: 1.9s ease;
}
.team-section .sixth.show {
  transform: scale(1);
  opacity: 1;
}
.team-section .card {
  width: 100px;
  height: 400px;
  margin-bottom: 20px;
  border-radius: 1em;
  position: relative;
}
.team-section .card h1 {
  transform: translate(7px);
  text-transform: capitalize;
}

footer {
  overflow: hidden;
  padding-top: 100px;
  background: linear-gradient(to bottom, rgb(37, 37, 37), black 90%);
  color: var(--text-color);
  width: 100vw;
  height: auto;
}
footer .container {
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
  width: 100%;
  height: 100%;
}
footer .container h1 {
  text-transform: uppercase;
  padding-bottom: 30px;
}
footer .container h2 {
  text-transform: capitalize;
  padding-bottom: 10px;
  font-weight: normal;
  font-size: 1.5em;
}
footer .container blockquote {
  font-size: 1.5em;
}
footer .container p {
  padding-top: 5px;
  padding-bottom: 5px;
  margin-top: 30px;
  width: 100vw;
  background: black;
  color: var(--text-color);
}
footer .container p span {
  color: var(--text-color);
}
footer .container p span:hover {
  color: blue;
}
footer .container p a {
  text-decoration: none;
}
footer .container .linecontainer {
  margin-bottom: 20px;
  background-color: var(--line-color);
  width: 300px;
  height: 10px;
}
footer .container .grid {
  display: grid;
  grid-template-columns: repeat(2, 250px);
  margin-bottom: 50px;
}
footer .container .grid blockquote {
  color: white;
  text-decoration: none;
}
footer .container .grid img {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
}

@media only screen and (min-width: 2000px) {
  .team-section .container {
    margin-left: 35em;
  }
  .team-section .profile-grid {
    width: 70%;
    gap: 150px;
  }
}/*# sourceMappingURL=home.css.map */