@font-face {
  font-family: "Jost";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../fonts/jost/Jost-VariableFont_wght.woff2") format("woff2");
}
@font-face {
  font-family: "Jost";
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
  src: url("../fonts/jost/Jost-Italic-VariableFont_wght.woff2") format("woff2");
}
/** 1200px oder schmaler */
/** 992px oder schmaler */
/** 768px oder schmaler */
/** 576px oder schmaler */
/** 400px oder schmaler */
/** Breakpoints */
* {
  padding: 0;
  margin: 0;
  font-size: 100%;
  box-sizing: border-box;
  color: inherit;
}

ul {
  list-style: none;
}

html {
  font-size: 100%;
  font-family: "Jost", sans-serif;
}
@media (min-width: 100em) {
  html {
    font-size: 133%;
  }
}
@media (min-width: 133em) {
  html {
    font-size: 170%;
  }
}
@media (min-width: 166em) {
  html {
    font-size: 200%;
  }
}
@media (min-width: 200em) {
  html {
    font-size: 250%;
  }
}
@media (min-width: 230em) {
  html {
    font-size: 300%;
  }
}
@media (min-width: 260em) {
  html {
    font-size: 350%;
  }
}
@media (min-width: 300em) {
  html {
    font-size: 400%;
  }
}
@media (max-width: 25em) {
  html {
    font-size: 75%;
  }
}

.wrap {
  width: 100vw;
  display: flex;
  flex-direction: row;
  justify-content: start;
}
@media (max-width: 62em) {
  .wrap {
    flex-direction: column;
  }
}

.header {
  flex: 0 0 20%;
}
@media (max-width: 62em) {
  .header {
    flex: 0 0 auto;
    position: fixed;
    z-index: 15000;
  }
}

.header__fixed {
  background-image: linear-gradient(330deg, #4f8cba 0%, #223f59 100%);
  position: fixed;
  height: 100vh;
  width: 20vw;
}
@media (max-width: 62em) {
  .header__fixed {
    position: relative;
    width: 100vw;
    height: auto;
  }
}

.content {
  flex: 0 1 auto;
}

.slider {
  width: 100%;
}

.content__section {
  padding: 4rem 3rem;
}
@media (max-width: 62em) {
  .content__section {
    padding: 7rem 3rem 4rem;
  }
}

.content__section-h1 {
  text-transform: uppercase;
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 500;
}
.content__section-h1::before {
  content: "";
  width: 1.5rem;
  height: 1.5rem;
  margin-right: 0.4rem;
  display: inline-block;
  background-color: #4f8cba;
}

.about, .projects, .contact {
  background-image: linear-gradient(330deg, #4f8cba 0%, #223f59 100%);
  color: white;
}

.sidenav__opened {
  display: none;
}

.sidenav {
  display: block;
  position: fixed;
  z-index: 15000;
  top: 0;
  left: 0;
  width: 0px;
  height: 0px;
  overflow: hidden;
  transition: width 0s linear 0.5s, height 0s linear 0.5s;
  /*
  pointer-events: none;
  .sidenav__opened:checked ~ & {
      pointer-events: all;
  }
  */
}
.sidenav__opened:checked ~ .sidenav {
  transition: width 0s linear 0s, height 0s linear 0s;
  width: 100%;
  height: 100%;
}

.sidenav__background {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.85);
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}
.sidenav__opened:checked ~ .sidenav .sidenav__background {
  opacity: 1;
}

.sidenav__container {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 15rem;
  max-width: 100vw;
  background-color: #223f59;
  box-shadow: 0 0 1rem black;
  color: #a8a8a8;
  text-transform: uppercase;
  transform: translate(calc(100% + 1rem), 0);
  overflow: hidden;
  will-change: transform;
  transition: transform 0.5s ease-in-out;
}
.sidenav__opened:checked ~ .sidenav .sidenav__container {
  transform: translate(0, 0);
}

.sidenav__close {
  position: absolute;
  right: 1.25rem;
  top: 1.25rem;
  cursor: pointer;
  color: transparent;
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 10000px;
  background-image: linear-gradient(-45deg, transparent 44%, gray 45%, gray 55%, transparent 56%), linear-gradient(45deg, transparent 44%, gray 45%, gray 55%, transparent 56%);
}

.sidenav__nav {
  margin-top: 4.80rem;
  list-style-type: none;
  border-top: 0.0625rem solid #d2d2d2;
}

.sidenav__nav-link {
  font-size: 1.25rem;
  padding: 0.5rem 1.5rem;
  display: block;
  color: #223f59;
  font-weight: 300;
  text-decoration: none;
  border-bottom: 0.0625rem solid #d2d2d2;
  background-color: #ebebeb;
  transition: color 0.25s ease-in-out, font-weight 0.25s ease-in-out, background-color 0.25s ease-in-out;
}
.sidenav__nav-link:hover {
  background-color: white;
  color: #4f8cba;
  font-weight: 500;
}

.header__navigation-logo {
  width: 80%;
  margin-top: 2rem;
  margin-left: 10%;
  margin-right: 10%;
  max-width: 15rem;
}

.header__navigation-menubutton {
  display: none;
}
@media (max-width: 62em) {
  .header__navigation-menubutton {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    display: block;
  }
}

.header__navigation-icon {
  width: 2.5rem;
  fill: white;
  cursor: pointer;
}

.header__navigation {
  right: 0;
  left: 0;
  margin-top: 3rem;
  color: #a8a8a8;
  text-transform: uppercase;
}
@media (max-width: 62em) {
  .header__navigation {
    display: none;
  }
}

.header__navigation-a {
  text-decoration: none;
  padding: 1rem 2rem;
  display: block;
  text-align: left;
  margin-left: 1.3rem;
  color: inherit;
  transition: color 0.3s ease-in-out;
}
.header__navigation-a:hover {
  color: white;
}
.header__navigation-a::before {
  content: "";
  width: 0.8rem;
  height: 0.8rem;
  background-color: #4f8cba;
  display: inline-block;
  margin-right: 0.4rem;
  margin-top: 0.3rem;
  left: -1rem;
  position: absolute;
  transition: left 0.3s ease-in-out;
}

.header__navigation-li.active {
  color: white;
}
.header__navigation-li.active .header__navigation-a::before {
  left: 2rem;
}
.button {
  display: inline-block;
  border: 0.125rem solid currentColor;
  border-radius: 10000rem;
  color: #4f8cba;
  text-decoration: none;
  padding: 1rem 6rem;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.7rem;
  cursor: pointer;
}
.button:hover {
  color: #72a3c8;
}

.button--form {
  font-size: 1rem;
  padding: 0.75rem 1rem;
  color: black;
  background-color: #4f8cba;
  border: 0.125rem solid #4f8cba;
  font-weight: normal;
  text-transform: none;
}
.button--form:hover {
  color: #323232;
}

.button--background-blur {
  -webkit-backdrop-filter: blur(3rem);
  backdrop-filter: blur(3rem);
}

.button--white {
  color: white;
  text-shadow: 0 0 0.125rem rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 0.125rem rgba(0, 0, 0, 0.5);
}
.button--white:hover {
  color: #e6e6e6;
}

.button--secondary {
  color: white;
  background-color: #223f59;
  border: 0.125rem solid #223f59;
}
.button--secondary:hover {
  color: white;
  background-color: #011820;
  border: 0.125rem solid #011820;
}

.button--slim {
  padding-left: 2rem;
  padding-right: 2rem;
  margin-bottom: 2rem;
}

.rslides {
  position: relative;
  list-style: none;
  overflow: hidden;
  width: 100%;
  padding: 0;
  margin: 0;
}

.rslides li {
  -webkit-backface-visibility: hidden;
  position: absolute;
  display: none;
  width: 100%;
  left: 0;
  top: 0;
}

.rslides li:first-child {
  position: relative;
  display: block;
  float: left;
}

.rslides img {
  display: block;
  height: auto;
  float: left;
  width: 100%;
  border: 0;
}

.banner {
  position: relative;
  height: calc(80vw / 4);
  overflow: hidden;
}
@media (max-width: 62em) {
  .banner {
    display: none;
  }
}

.banner__slider {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  bottom: 0;
}

.banner__img--slideshow-3 {
  animation-name: animation-banner__img--slideshow-3;
  animation-timing-function: ease-in-out;
  animation-duration: 9s;
  animation-iteration-count: infinite;
}

@keyframes animation-banner__img--slideshow-3 {
  0% {
    opacity: 1;
  }
  35% {
    opacity: 1;
  }
  40% {
    opacity: 0;
  }
  95% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.banner__img--slideshow-2 {
  animation-name: animation-banner__img--slideshow-2;
  animation-timing-function: ease-in-out;
  animation-duration: 9s;
  animation-iteration-count: infinite;
}

@keyframes animation-banner__img--slideshow-2 {
  0% {
    opacity: 1;
  }
  65% {
    opacity: 1;
  }
  75% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.banner__img--slideshow-1 {
  animation-name: animation-banner__img--slideshow-1;
  animation-timing-function: ease-in-out;
  animation-duration: 10s;
  animation-iteration-count: infinite;
}

@keyframes animation-banner__img--slideshow-1 {
  0% {
    opacity: 1;
  }
  70% {
    opacity: 1;
  }
  75% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

.about_me{
  display: flex;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 30px;
  margin: 4rem 0;
  justify-content: center;
}
.about__david {
  width: 20rem;
  height: 20rem;
  flex-shrink: 0;
  object-fit: cover;
  border-radius: 1000000px;
}

.content__section-about-p {
  text-align: justify;
  flex-shrink: 1;
  flex-grow: 1;
  width: 28rem;
}

@media (max-width: 1000px) {
  .content__section-about-p {
    font-size: 1rem;
  }
  .games__content-subheading {
    font-size: 1.3rem;
    text-align: justify;
  }
  .about_me{
    justify-content: center;
  }
}
@media (max-width: 850px) {
  .content__section-about-p {
    font-size: 1.4rem;
  }
}
@media (max-width: 75em) {
  .about__david {
    width: 18rem;
    height: 18rem;
  }
}
@media (max-width: 62em) {
  .about__david {
    width: 16rem;
    height: 16rem;
  }
  .about_me{
    justify-content: center;
  }
}

@media (max-width: 400px) {
  .about__david {
    width: 90%;
    height: 90%;
  }
  .content__section-about-p {
    font-size: 1.5rem;
  }
}



.games {
  background-color: #f0f0f0;
  min-height: 5rem;
}

.games__container {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 4rem;
  padding-bottom: 4rem;
  margin-top: -1.32rem;
}

.games__card-container {
  margin: 0;
  display: flex;
  flex-shrink: 0;
  flex-grow: 1;
  flex-basis: 320px;
  gap: 2rem;
}
.games__card-container:hover .games__image {
  filter: none;
  mix-blend-mode: inherit;
}
@media (max-width: 62em) {
}
@media (max-width: 48em) {
}

.games__firma {
  margin-bottom: 1.5rem;
}
.games__firma a {
  font-size: 2rem;
  text-decoration: none;
}
.games__firma a:hover {
  text-decoration: underline;
}
.game__block {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 3rem;
}
.games__datum {
  flex-shrink: 0;
  flex-grow: 0;
  flex-basis: 120px;
  display: flex;
  align-items: center;
  background-image: linear-gradient(330deg, #4f8cba 0%, #223f59 100%);
}
.rotate{
  -webkit-transform: rotate(270deg);
  -moz-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  -o-transform: rotate(270deg);
  transform: rotate(270deg);
  color: #ffffff;
  font-size: 27px;
}
.games__card {
  box-shadow: 0.5rem 0.5rem 2rem rgba(0, 0, 0, 0.5);
  position: relative;
  height: 100%;
  min-height: 680px;
  background-color: #ffffff;
}
@media (max-width: 1400px) {
  .games__card {
    min-height: 600px;
  }
}
.game__text {
  flex-shrink: 0;
  flex-grow: 1;
  flex-basis: 320px;
  background-image: linear-gradient(330deg, #4f8cba 0%, #223f59 100%);
  padding: 1rem 2rem;
  color: #ffffff;
  text-align: justify;
}
.game__text ol {
  padding-left: 20px;
  text-align: left;
}

.games__card-primary {
  padding: 0 0 2rem 0;
  background-color: white;
  border-left: 0.0625rem solid rgba(0, 0, 0, 0.15);
  border-right: 0.0625rem solid rgba(0, 0, 0, 0.15);
  border-top: 0.0625rem solid rgba(0, 0, 0, 0.15);
}

.games__card-primary::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: -0.0625rem;
  right: -0.0625rem;
  height: 0.75rem;
  background-color: #4f8cba;
  border-left: 0.0625rem solid #8fa6b7;
  border-right: 0.0625rem solid #8fa6b7;
}

.games__image-container {
  position: relative;
  background-color: #4f8cba;
  margin-top: -0.0625rem;
  margin-right: -0.0625rem;
  margin-left: -0.0625rem;
}

.games__image-container::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  z-index: 1;
  border-top: 0.0625rem solid rgba(0, 0, 0, 0.15);
  border-right: 0.0625rem solid rgba(0, 0, 0, 0.15);
  border-left: 0.0625rem solid rgba(0, 0, 0, 0.15);
}
@media (max-width: 600px) {
  .game__block {
    flex-direction: column;
  } 
  .rotate{
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  .games__datum{
    flex-basis: 50px;
    padding-left: 20px;
  }
}

.games__image {
  width: 100%;
  filter: grayscale(100%);
  mix-blend-mode: multiply;
  padding-bottom: 1.5em;
  cursor: pointer;
}

.games__content {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: 1.5rem;
  text-align: center;
  height: 15rem;
}
@media (max-width: 25rem) {
  .games__content {
    height: 24rem;
  }
}

.games__content-heading {
  color: #223f59;
  font-size: 1.3rem;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  text-transform: uppercase;
  text-align: left;
}

.games__content-subheading {
  color: #4f8cba;
  font-size: 1rem;
  text-align: left;
  margin-bottom: 1rem;
}
@media (max-width: 400px) {
  .games__content-subheading, .game__text  {
    font-size: 1.3rem;
    text-align: justify;
  }
  .games__content-heading{
    font-size: 1.5rem;
  }
}

.games__content-button {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}

.games__card-container--3d {
  perspective: 50rem;
}
.games__card-container--3d .games__card {
  transition: transform 0.5s ease-in-out;
  transform: rotateX(calc(calc(var(--mouse-y, 0.5) - 0.5) * -20deg)) rotateY(calc(calc(var(--mouse-x, 0.5) - 0.5) * 20deg));
}
.games__card-container--3d:hover .games__card {
  transition: transform 0.1s linear;
}

.games__card-container--3d .games__card-hover {
  display: none;
}

.projects__card-container {
  width: calc(33.3333333333% - 1.321rem);
}
@media (max-width: 62em) {
  .projects__card-container {
    width: calc(50% - 1.321rem);
  }
}
@media (max-width: 48em) {
  .projects__card-container {
    width: calc(100% - 1.321rem);
  }
}

.projects__card {
  box-shadow: 0.5rem 0.5rem 2rem rgba(0, 0, 0, 0.5);
  position: relative;
  height: 100%;
  padding: 2rem 2rem 0;
}

.projects__card::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: -0.0625rem;
  right: -0.0625rem;
  height: 0.75rem;
  background-color: #ffffff;
  border-left: 0.0625rem solid #8fa6b7;
  border-right: 0.0625rem solid #8fa6b7;
}

.projects__card-img {
  width: 100%;
}

.projects__card-h3 {
  font-size: 1.5rem;
  margin: 1rem 0;
}

.projects__card-button-container {
  text-align: center;
  padding-top: 1rem;
}

.vita__card-container {
  margin-top: 4rem;
}

.vita__card {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  flex-direction: row;
  margin-bottom: 2rem;
}

.vita__card-titel {
  padding-top: 1rem;
  padding-right: 1rem;
  flex: 0 0 33%;
}
@media (max-width: 48em) {
  .vita__card-titel {
    flex: 0 0 100%;
  }
}

.vita__card-titel-h2 {
  font-size: 1.5rem;
}

.vita__card-titel-h3 {
  color: #4f8cba;
}

.vita__card-titel-h4 {
  text-transform: uppercase;
}

.vita__card-text {
  border-top: 0.2rem solid #4f8cba;
  padding-top: 1rem;
  flex: 0 0 66%;
}
@media (max-width: 48em) {
  .vita__card-text {
    flex: 0 0 100%;
  }
}

.vita__card-text-mail {
  text-decoration: none;
}
.vita__card-text-mail:hover {
  text-decoration: underline;
}

.vita__card-text-tel {
  text-decoration: none;
}
.vita__card-text-tel:hover {
  text-decoration: underline;
}

.vita__card-ul {
  list-style: disc;
  padding-left: 1.2rem;
  margin-bottom: 1rem;
}

.vita__card-text-container {
  margin-bottom: 1.5rem;
}

.vita__card-text-container-download {
  margin-top: 2rem;
}

.vita__card-text-firma {
  font-weight: 600;
}

.vita__card-text-datum {
  color: gray;
  font-size: 0.8rem;
}

.vita__card-icon-download {
  width: 2rem;
  height: 2rem;
}

.vita__card-download {
  margin-left: 0rem;
  text-decoration: none;
  color: #4f8cba;
}

.contact__container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 4rem;
  padding-bottom: 4rem;
  margin-left: -0.66rem;
  margin-right: -0.66rem;
  margin-top: -1.32rem;
}

.contact__card-container {
  width: calc(25% - 1.321rem);
  margin: 1.32rem 0.66rem 0 0.66rem;
}
@media (max-width: 62em) {
  .contact__card-container {
    width: calc(50% - 1.321rem);
  }
}
@media (max-width: 48em) {
  .contact__card-container {
    width: calc(100% - 1.321rem);
  }
}

.contact__card {
  box-shadow: 0.5rem 0.5rem 2rem rgba(0, 0, 0, 0.5);
  position: relative;
  height: 100%;
}

.contact__card-primary {
  padding: 0 0 2rem 0;
  background-color: white;
  border-left: 0.0625rem solid rgba(0, 0, 0, 0.15);
  border-right: 0.0625rem solid rgba(0, 0, 0, 0.15);
  border-top: 0.0625rem solid rgba(0, 0, 0, 0.15);
}

.contact__card-primary::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: -0.0625rem;
  right: -0.0625rem;
  height: 0.75rem;
  background-color: #4f8cba;
  border-left: 0.0625rem solid #8fa6b7;
  border-right: 0.0625rem solid #8fa6b7;
}

.contact__image-container {
  position: relative;
  margin-top: -0.0625rem;
  margin-right: -0.0625rem;
  margin-left: -0.0625rem;
}

.contact__image-container::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  z-index: 1;
  border-top: 0.0625rem solid rgba(0, 0, 0, 0.15);
  border-right: 0.0625rem solid rgba(0, 0, 0, 0.15);
  border-left: 0.0625rem solid rgba(0, 0, 0, 0.15);
}

.contact__image {
  width: 100%;
  /* filter: grayscale(100%);
  mix-blend-mode: multiply; */
  padding: 10%;
  cursor: pointer;
}

.contact__content {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  text-align: center;
}
@media (max-width: 25rem) {
  .contact__content {
    height: 24rem;
  }
}

.contact__content-heading {
  color: #223f59;
  font-size: 1.45rem;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  text-transform: uppercase;
  text-align: center;
}

.contact__content-button {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}

.contact__card-hover {
  position: absolute;
  top: -0.0625rem;
  left: -0.0625rem;
  right: -0.0625rem;
  bottom: -0.0625rem;
  z-index: 2;
  background-color: #4f8cba;
  background-image: linear-gradient(90deg, transparent calc(50% - 0.03125rem), white calc(50% - 0.03125rem), white calc(50% + 0.03125rem), transparent calc(50% + 0.03125rem)), linear-gradient(135deg, #4f8cba 0%, #3c7098 100%);
  background-repeat: no-repeat, no-repeat;
  background-position: center top, center center;
  background-size: 100% calc(50% - 4rem), 100% 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.25s ease-in-out;
}
.contact__card:hover .contact__card-hover, .contact__card:checked .contact__card-hover {
  opacity: 1;
}

.contact__card-container--flip {
  perspective: 50rem;
}
.contact__card-container--flip .contact__card {
  transition: transform 1s ease-in-out;
  transform-style: preserve-3d;
}
.contact__card-container--flip:hover .contact__card {
  transform: rotateY(180deg);
}
.contact__card-container--flip .contact__card-primary {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: rotateY(0deg);
  transform-style: preserve-3d;
}
.contact__card-container--flip .contact__card-hover {
  transform: rotateY(180deg);
  opacity: 1;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

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