/* dm-sans-200 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 200;
  src: url("../fonts/dm-sans-v16-latin-200.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* dm-sans-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/dm-sans-v16-latin-regular.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* dm-sans-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/dm-sans-v16-latin-700.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
body,
html {
  margin: 0;
  padding: 0;
}

* {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  font-family: sans-serif;
  font-size: 1.6rem;
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.8rem;
}

h1 {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 700;
  font-size: 3rem;
  line-height: 4rem;
}
h1 span {
  color: #FFB413;
}

.inner {
  position: relative;
  margin: auto;
  width: 98%;
  display: flex;
  flex-direction: column;
}
@media (min-width: 992px) {
  .inner {
    flex-direction: row;
  }
}
@media (min-width: 1200px) {
  .inner {
    max-width: 1200px;
  }
}

section {
  width: 98%;
  margin: 4rem auto;
}
@media (min-width: 1200px) {
  section {
    max-width: 1200px;
  }
}

.header {
  position: relative;
  z-index: 90;
  background-color: #FFB413;
  overflow: hidden;
  max-width: 100vw;
  margin: auto;
}
.header .inner {
  gap: 4rem;
  min-height: 500px;
}
.header .header__bgleft {
  position: absolute;
  z-index: 0;
  right: 70%;
  top: 0;
  height: 100%;
  width: 100%;
  background: #FFB413;
}
.header .header__bgright {
  position: absolute;
  z-index: 1;
  left: 120px;
  top: 50%;
  transform: translateY(-50%);
  height: 300%;
  width: 300%;
  background: #1142FF;
  border-radius: 100vw;
  border: 5px solid white;
  overflow: hidden;
}
.header .header__bgright img {
  -o-object-fit: cover;
     object-fit: cover;
}
.header .header__bgimage {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  width: 400px;
  height: 100%;
  background-image: url("../images/Floor.png");
  background-position: right bottom;
  background-repeat: no-repeat;
  background-size: 400px;
}
.header .inner .logozeile {
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: row;
}
.header .header__logo {
  z-index: 10;
  display: block;
  flex: 0 0 120px;
  width: 120px;
}
.header .header__logo img {
  width: 100%;
  height: auto;
}
@media (min-width: 992px) {
  .header .header__logo {
    flex: 0 0 260px;
    width: 260px;
  }
}
.header .header__content {
  z-index: 10;
}
.header #menu__toggle {
  display: none;
  position: relative;
  z-index: 90;
}
.header #menu__toggle:checked ~ .menu {
  display: block;
}
.header .menu__mobilbuttoncontainer {
  position: relative;
  width: 30px;
  margin: 2rem;
}
@media (min-width: 992px) {
  .header .menu__mobilbuttoncontainer {
    display: none;
  }
}
.header .menu__mobilbuttoncontainer .menu__mobilbutton,
.header .menu__mobilbuttoncontainer .menu__mobilbutton::before,
.header .menu__mobilbuttoncontainer .menu__mobilbutton::after {
  position: absolute;
  display: block;
  height: 3px;
  width: 100%;
  background: white;
}
.header .menu__mobilbuttoncontainer .menu__mobilbutton::before {
  content: "";
  width: 50%;
  margin-top: 8px;
}
.header .menu__mobilbuttoncontainer .menu__mobilbutton::after {
  content: "";
  margin-top: 16px;
}
.header .menu {
  display: none;
  position: fixed;
  z-index: -1;
  top: 60px;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #1142FF;
  padding: 4rem 1rem 1rem 1rem;
}
@media (min-width: 992px) {
  .header .menu {
    position: relative;
    height: auto;
    top: 0;
    z-index: 1;
    margin: 4rem 0;
    padding: 0;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    background-color: unset;
  }
}
.header .menu .menu__main {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 4rem 0 0 0;
}
@media (min-width: 992px) {
  .header .menu .menu__main {
    flex-direction: row;
    gap: 2rem;
    align-items: flex-start;
    padding: 0;
  }
}
.header .menu .menu__main a {
  color: white;
  font-weight: 700;
  text-decoration: none;
  padding: 1rem 2rem;
}
.header .menu .menu__main a:hover, .header .menu .menu__main a.active {
  background-color: #1142FF;
  color: #FFB413;
}
@media (min-width: 992px) {
  .header .menu .menu__main a {
    padding: 0;
  }
}
.header .header__intro {
  max-width: 480px;
  color: white;
}

.headerimages {
  position: relative;
  z-index: -1;
  overflow: hidden;
  -webkit-mask: conic-gradient(from -70deg at bottom, rgba(0, 0, 0, 0), #000 1deg 139deg, rgba(0, 0, 0, 0) 140deg) 50%/54.95px 100%;
          mask: conic-gradient(from -70deg at bottom, rgba(0, 0, 0, 0), #000 1deg 139deg, rgba(0, 0, 0, 0) 140deg) 50%/54.95px 100%;
}
.headerimages.small {
  max-height: 400px;
}
.headerimages img.headerimage {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.headerimages::after {
  content: "";
  position: absolute;
  bottom: 20px;
  left: 50%;
  margin-left: -600px;
  height: 80%;
  width: 300px;
  background-image: url("../images/headerimages/spieler.png");
  background-repeat: no-repeat;
  background-position: left bottom;
  opacity: 0.5;
}

.cards {
  display: flex;
  gap: 4rem;
}
.cards .card {
  height: 400px;
  flex: 1 1 auto;
  background: #1142FF;
  color: white;
}
.cards .card .card__header img {
  width: 100%;
  height: auto;
}
.cards .card .card__headline {
  color: #FFB413;
}
.cards .card .card__body {
  padding: 2rem;
}

.footer {
  background: #666;
  color: white;
  padding: 2rem 0;
}
.footer a {
  color: white;
  display: block;
  padding: 1rem 0;
}
.footer .inner {
  gap: 4rem;
}/*# sourceMappingURL=style.css.map */