* {
  margin: 0;
  padding: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

header,
footer,
section,
aside,
nav,
article {
  display: block;
}

@font-face {
  font-family: "Vela";
  src: url("font/vela.ttf") format("truetype-variations");
  font-weight: 125 950;
  font-style: normal;
  font-display: swap;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--darkgrey);
  font-family: Vela, Helvetica, Sans-Serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: var(--white);
  -webkit-hyphens: manual;
  -ms-hyphens: manual;
  hyphens: manual;
}

:root {
  --accent-color: #d7ac38;
  --accent-color-hover: #b7922f;
  --brightgrey: #7a7a7a;
  --grey: #2a2a2a;
  --grey-hover: #393939;
  --darkgrey: #212121;
  --verydarkgrey: #1a1a1a;
  --white: #fff;

  /*SVG Styling*/
  --jump-height: -950px;
  --jump-speed: 400ms;
}

@media screen and (max-width: 980px) {
  :root {
    --mainpadding: calc(18px);
  }
}
@media screen and (min-width: 981px) {
  :root {
    --mainpadding: calc(10px + 1em);
  }
}

a {
  text-decoration: none;
  color: var(--white);
}

.dark-link {
  color: var(--darkgrey);
}

p {
  font-size: 17px;
  line-height: 1.6;
  letter-spacing: 0.5px;
}

p b {
  font-size: 20px;
  font-weight: 600;
}

ul {
  margin: 0px 0px 0px 15px;
}
li {
  font-size: 17px;
  letter-spacing: 0.5px;
  line-height: 1.6;
}
nav li {
  font-size: 28px;
  letter-spacing: 0.8px;
  line-height: 1.6;
}

@media screen and (max-width: 980px) {
  h1 {
    font-size: 34px;
    letter-spacing: 0.1px;
    line-height: 1.3;
  }
  h2 {
    font-size: 32px;
    letter-spacing: 1.5px;
    padding-bottom: 1.5rem;
    margin-top: -15px;
    text-transform: uppercase;
    color: var(--accent-color);
  }
  .sub-heading {
    font-size: 21px;
    letter-spacing: 1.5px;
    padding-bottom: 1.5rem;
    margin-top: -15px;
    color: var(--white);
  }
  ul {
    margin: 0px -5px 0px 20px;
  }
}
@media screen and (min-width: 981px) {
  h1 {
    font-size: 62px;
    letter-spacing: 0.1px;
    line-height: 1.3;
  }
  h2 {
    font-size: 40px;
    padding-bottom: 1.5rem;
    margin-top: -15px;
    text-transform: uppercase;
    color: var(--accent-color);
  }
  .sub-heading {
    font-size: 34px;
    letter-spacing: 1.5px;
    line-height: 1.5;
    margin-top: -15px;
    color: var(--white);
  }
}
h3 {
  font-size: 24px;
  line-height: 1.3;
  letter-spacing: 1.5px;
  font-weight: 700;
  text-transform: uppercase;
}
h4 {
  font-size: 21px;
  line-height: 0.5;
  letter-spacing: 1px;
  font-weight: 400;
  margin-bottom: 1rem;
  color: var(--accent-color);
  text-transform: uppercase;
}
.h3-bottom {
  margin-bottom: 8px;
}
.text-large {
  font-size: 50px;
  line-height: 1.3;
  letter-spacing: 1px;
  font-weight: 400;
  margin-bottom: 1rem;
  color: var(--darkgrey);
  text-transform: uppercase;
}

button {
  padding: 16px 25px;
  border: none;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
  text-align: left;
  background-color: var(--blue);
  transition: all 0.5s;
}
input,
input::-webkit-input-placeholder,
textarea,
textarea::-webkit-input-placeholder {
  font-size: 14px;
}

/* ----------- Scroll-Animation------------ */
.js-scroll {
  opacity: 0;
  transition: opacity 500ms;
}
.js-scroll.scrolled {
  opacity: 1;
}
.scrolled.fade-in {
  will-change: transform;
  animation: fade-in 1.5s cubic-bezier(0.21, 0.335, 0.1, 1);
}
.scrolled.fade-in-bottom {
  will-change: transform;
  animation: fade-in-bottom 1.5s cubic-bezier(0.21, 0.335, 0.1, 1);
}

@keyframes fade-in-bottom {
  0% {
    transform: translateY(80px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* ---------- Fixed-Header & Header -------------- */
/* --------------------------------------------- */
header {
  width: 100%;
}
#menu {
  width: 100%;
  margin: 0 auto;
  position: fixed;
  left: 0;
  top: 0px;
  z-index: 100;
  background: none;
  background-color: var(--darkgrey);
  transition: transform 0.25s ease-in-out;
}

.mainmenu {
  display: grid;
  grid-template-columns: auto 1fr auto;
  width: 100%;
  padding: 15px var(--mainpadding);
  margin: 0 auto;
  text-align: center;
}
.mainmenu li {
  line-height: 2.4;
}

.center {
  justify-self: center;
  padding: 0 20px;
}
#logo {
  margin: 0;
  position: absolute;
  top: 50%;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100%;
}
#logo img {
  text-align: center;
}
.left {
  font-size: 14px;
  justify-self: start;
  gap: 18%;
  line-height: 1.3;
}
.right {
  font-size: 14px;
  justify-self: end;
  gap: 18%;
  line-height: 1.3;
}
.right a {
  cursor: pointer;
}

/* ---------- Menu -------------- */
nav {
  display: flex;
  align-items: center;
  height: 100vh;
  font-size: 62px !important;
  line-height: 2;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--white);
}
nav li {
  list-style-type: none;
}
nav a:hover {
  color: var(--accent-color);
  transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1);
}
@media screen and (max-width: 980px) {
  nav {
    font-size: 26px !important;
    line-height: 1.8;
  }
}

/* ---------- Header ------------- */
.head-text {
  align-self: end;
  justify-self: left;
  text-align: left;
  border-radius: 4px;
  max-width: 840px;
  padding: 0px calc(var(--mainpadding) + 25px) 50px 0px;
  filter: drop-shadow(10px 10px 30px #000);
  z-index: 10;
}
@media screen and (max-width: 980px) {
  .head-img {
    padding: 0 var(--mainpadding);
  }
  .head-text {
    margin: 130px 0 0 0;
    padding: 40px calc(var(--mainpadding) + 14px) 40px 0px;
  }
}
.head-img {
  display: grid;
  width: 100%;
  min-height: 100vh;
  padding: 0 calc(10px + 1em);
  background-repeat: no-repeat;
  background-size: cover;
}
.no-webp .head-img {
  background-image: url("images/header.jpg");
  background-position: center;
}
.webp .head-img {
  background-image: url("images/header.webp");
  background-position: center;
}
.head-img:after {
  background: linear-gradient(180deg, hsla(0, 0%, 9%, 0) 0%, black 110%);
  content: "";
  height: 100vh;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.stoerer {
  position: absolute;
  right: 40px;
  top: 15%;
  padding: 20px;
  font-size: 26px;
  background-color: var(--accent-color);
  transform: rotate(10deg);
}
@media screen and (max-width: 980px) {
  .stoerer {
    left: 20px;
  }
}

/* ------------ Setup Container ---------------- */
/* --------------------------------------------- */
.container {
  display: grid;
  grid-template-columns:
    [full-start] minmax(1em, 1fr)
    [main-start] minmax(0, 1240px) [main-end]
    minmax(1em, 1fr) [full-end];
  padding: 130px var(--mainpadding);
}
.container > * {
  grid-column: main;
}
@media screen and (max-width: 980px) {
  .container > * {
    grid-column: full;
  }
  .container {
    padding: 80px var(--mainpadding);
  }
}
.container-break {
  grid-column: full;
  background-color: initial;
}
.bright {
  color: var(--darkgrey);
  background-color: var(--white);
}
.dark {
  color: var(--white);
  background-color: var(--darkgrey);
}

/* ---------------- Setup Grid ----------------- */
/* --------------------------------------------- */
@media screen and (min-width: 981px) {
  .layout-grid {
    display: grid;
    grid-template-columns: repeat(12, [col-start] 1fr);
    grid-template-rows: min-content 1fr;
    grid-column-gap: 4%;
    grid-row-gap: 50px;
  }
}
@media screen and (max-width: 980px) {
  .layout-grid {
    display: grid;
    grid-template-columns: repeat(6, [col-start] 1fr);
    grid-template-rows: min-content 1fr;
    grid-column-gap: 3%;
    grid-row-gap: 50px;
  }
}

/* ---------- Setup Grid-Boxes -------------- */
@media screen and (min-width: 981px) {
  .full-grid {
    grid-column: span 12;
  }
  .eight-grid {
    grid-column: span 8;
  }
  .six-grid {
    grid-column: span 6;
  }
  .four-grid {
    grid-column: span 4;
  }
  .three-grid {
    grid-column: span 3;
  }
  .two-grid {
    grid-column: span 2;
  }
  .spacer {
    height: 40px;
    grid-column: span 12;
  }
  .half-spacer {
    height: 20px;
    grid-column: span 12;
  }
  .half-width {
    width: 48%;
  }
}
@media screen and (max-width: 980px) {
  .full-grid {
    grid-column: span 6;
  }
  .eight-grid {
    grid-column: span 6;
  }
  .six-grid {
    grid-column: span 6;
  }
  .four-grid {
    grid-column: span 6;
  }
  .three-grid {
    grid-column: span 3;
  }
  .two-grid {
    grid-column: span 3;
  }
  .spacer {
    height: 10px;
    grid-column: span 6;
  }
  .half-spacer {
    height: 5px;
    grid-column: span 6;
  }
  .not-mobile {
    display: none;
  }
}
.half {
  display: flex;
  column-gap: 12%;
}
.no-rowgap {
  grid-row-gap: 0;
}

/* ---------- General Pictures -------------- */
.picture source,
.picture img {
  width: 100%;
  bottom: 0;
  filter: brightness(0.9);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.picture source:hover,
.picture img:hover {
  filter: brightness(1);
}
.large-img {
  display: grid;
  width: 100%;
  min-height: 60vh;
}
.large-img source,
.large-img img {
  width: 100%;
  min-height: 60vh;
  object-fit: cover;
}
.large-video {
  display: grid;
  width: 100%;
  min-height: 60vh;
}
.large-video video {
  width: 100%;
  min-height: 60vh;
  object-fit: cover;
}

/* ------------ Slideshow -------------- */

.slides1,
.slides2,
.slides3 {
  display: none;
}
.slideshow-container img {
  vertical-align: middle;
  filter: brightness(0.9);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.slideshow-container img:hover {
  filter: brightness(1);
}

.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
  background-color: var(--verydarkgrey);
}
.slideshow-container source,
.slideshow-container img {
  max-width: 100%;
}
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -30px;
  color: var(--white);
  font-weight: bold;
  font-size: 24px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}
.prev:hover,
.next:hover {
  background-color: var(--darkgrey);
  color: var(--white);
}

.fadein {
  animation: in 1s;
  animation-fill-mode: forwards;
}
@keyframes in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* --------------- Start Content ---------------- */
/* --------------------------------------------- */
/* ---------- Order ---------- */
@media screen and (max-width: 980px) {
  .order-one {
    order: 1;
  }
  .order-two {
    order: 2;
  }
}
/* ---------- Image full-width ---------- */
.full-width {
  height: fit-content;
}
.full-width.large-img {
  min-height: auto;
}
.full-width source,
.full-width img {
  width: 100%;
  height: 100% !important;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  min-height: unset;
}
/* ---------- Video ------------- */
.on-video {
  position: absolute;
  width: 100%;
  max-width: 100%;
}
@media screen and (max-width: 1340px) {
  .on-video {
    padding: 30px 0 0 0;
  }
  .video-title {
    padding: var(--mainpadding);
    width: 100%;
    max-width: 100%;
  }
}
@media screen and (min-width: 1341px) {
  .on-video {
    padding: 130px 0 0 0;
  }
  .video-title {
    width: 100%;
    max-width: 1240px;
    margin: auto;
  }
}
@media screen and (min-width: 981px) and (max-width: 1340px) {
  .video-title {
    margin: 1em;
  }
}

/* ---------- Members -------------- */
.member source,
.member img {
  width: 100%;
  bottom: 0;
}
@media screen and (max-width: 1340px) {
  #Die-Macher b {
    font-size: 16px;
  }
}
figure {
  overflow: hidden;
  margin-bottom: 15px;
  aspect-ratio: 3/3.7;
}
figure source,
figure img {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  filter: brightness(0.9);
}
figure:hover source,
figure:hover img {
  transform: scale(1.05);
  cursor: pointer;
  filter: brightness(1);
}

/* ---------- Wohnungen-Uebersicht -------------- */
.buildings {
  display: flex;
  align-items: end;
  width: 100%;
  min-width: 100%;
  aspect-ratio: 16/8;
  height: fit-content;
  margin: 20px 0;
  filter: grayscale(0.2);
  overflow: visible;
}
.buildings-background {
  position: absolute;
  z-index: -1;
}
.building {
  max-height: 850px;
}
.room {
  transition: all var(--jump-speed) cubic-bezier(0.4, 0, 0.2, 1);
}
.room.hover {
  cursor: pointer;
  filter: brightness(80%);
}

/* ---------- Gebäude A -------------- */
/* UG Links */
.aa.hover ~ .ad,
.aa.hover ~ .ae,
.aa.hover ~ .af,
.aa.hover ~ .ag,
.aa.hover ~ .ah,
.aa.hover ~ .ai,
.aa.hover ~ .aj {
  transform: translateY(var(--jump-height));
}
/* UG Rechts */
.ac.hover ~ .ad,
.ac.hover ~ .ae,
.ac.hover ~ .af,
.ac.hover ~ .ag,
.ac.hover ~ .ah,
.ac.hover ~ .ai,
.ac.hover ~ .aj {
  transform: translateY(var(--jump-height));
}
/* 1.OG Links */
.ad.hover ~ .ag,
.ad.hover ~ .ah,
.ad.hover ~ .ai,
.ad.hover ~ .aj {
  transform: translateY(var(--jump-height));
}
/* 1.OG Rechts */
.af.hover ~ .ag,
.af.hover ~ .ah,
.af.hover ~ .ai,
.af.hover ~ .aj {
  transform: translateY(var(--jump-height));
}
/* 2.OG Links */
.ag.hover ~ .aj {
  transform: translateY(var(--jump-height));
}
/* 2.OG Rechts */
.ai.hover ~ .aj {
  transform: translateY(var(--jump-height));
}

/* ---------- Gebäude B -------------- */
/* UG Links */
.ba.hover ~ .bd,
.ba.hover ~ .be,
.ba.hover ~ .bf,
.ba.hover ~ .bg,
.ba.hover ~ .bh,
.ba.hover ~ .bi,
.ba.hover ~ .bj {
  transform: translateY(var(--jump-height));
}
/* UG Rechts */
.bc.hover ~ .bd,
.bc.hover ~ .be,
.bc.hover ~ .bf,
.bc.hover ~ .bg,
.bc.hover ~ .bh,
.bc.hover ~ .bi,
.bc.hover ~ .bj {
  transform: translateY(var(--jump-height));
}
/* 1.OG Links */
.bd.hover ~ .bg,
.bd.hover ~ .bh,
.bd.hover ~ .bi,
.bd.hover ~ .bj {
  transform: translateY(var(--jump-height));
}
/* 1.OG Rechts */
.bf.hover ~ .bg,
.bf.hover ~ .bh,
.bf.hover ~ .bi,
.bf.hover ~ .bj {
  transform: translateY(var(--jump-height));
}
/* 2.OG Links */
.bg.hover ~ .bj {
  transform: translateY(var(--jump-height));
}
/* 2.OG Rechts */
.bi.hover ~ .bj {
  transform: translateY(var(--jump-height));
}

/* ---------- Gebäude C -------------- */
/* UG */
.cb.hover ~ .cc,
.cb.hover ~ .cd,
.cb.hover ~ .ce {
  transform: translateY(var(--jump-height));
}
/* 1.OG */
.cc.hover ~ .cd,
.cc.hover ~ .ce {
  transform: translateY(var(--jump-height));
}
/* 2.OG */
.cd.hover ~ .ce {
  transform: translateY(var(--jump-height));
}

/* ---------- Wohnungen Farben -------- */

.st3 {
  fill: #ffffff;
  stroke: #000000;
  stroke-miterlimit: 10;
}
.st5 {
  fill: none;
  stroke: #000000;
  stroke-miterlimit: 10;
}
.st6 {
  fill: #e5e5e5;
  stroke: #000000;
  stroke-miterlimit: 10;
}
.st7 {
  fill: #e5e2dd;
  stroke: #000000;
  stroke-miterlimit: 10;
}
.st9 {
  fill: #f8f8f8;
  stroke: #000000;
  stroke-miterlimit: 10;
}
.st10 {
  fill: #d2b187;
  stroke: #000000;
  stroke-miterlimit: 10;
}
.st11 {
  fill: #4d4d4d;
  stroke: #000000;
  stroke-miterlimit: 10;
}
.st12 {
  fill: #be9d73;
  stroke: #000000;
  stroke-miterlimit: 10;
}
.st13 {
  display: none;
  fill: #ffffff;
  stroke: #000000;
  stroke-miterlimit: 10;
}
.st14 {
  fill: #666666;
}
.st15 {
  display: none;
  fill: none;
  stroke: #000000;
  stroke-miterlimit: 10;
}
.st16 {
  fill: #666666;
  stroke: #000000;
  stroke-miterlimit: 10;
}
.st17 {
  fill: #958677;
  stroke: #000000;
  stroke-miterlimit: 10;
}

/* ---------- Setup Tabs -------------- */
.tab {
  overflow: hidden;
  background-color: var(--grey);
  margin-top: 1rem;
}

.tab button {
  background-color: inherit;
  float: left;
  border: none;
  border-radius: 0;
  outline: none;
  font-family: vela;
  font-size: 18px;
  cursor: pointer;
  transition: 0.3s;
  color: var(--brightgrey);
}

.tab button:hover {
  background-color: var(--grey-hover);
}

.tab button.open {
  background-color: var(--verydarkgrey);
  color: var(--white);
}

.tabcontent {
  display: none;
  border-top: none;
  animation: fadeEffect 1.5s;
  -webkit-animation: fadeEffect 1.5s;
}
@media screen and (max-width: 980px) {
  .tab button {
    font-size: 16px;
    padding: 15px 15px;
    max-width: auto;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .tab button.open {
    max-width: unset;
  }
  .tabcontent {
    font-size: 14px !important;
  }
}
@media screen and (min-width: 981px) {
  .tab button {
    padding: 15px 35px;
  }
}

/* ---------- Setup Tabs Responsive -------------- */
@media screen and (min-width: 981px) {
  .interactive {
    grid-column-start: 1;
    grid-column-end: -1;
  }
}
@media screen and (max-width: 980px) {
  .interactive {
    grid-column-start: 1;
    grid-column-end: -1;
  }
}

/* ---------- Wohnungen-Tabelle -------------- */

.table {
  width: 100%;
}

.tr:first-child {
  display: none;
}

.rh {
  padding: 15px 0;
}

.rh > span {
  display: block;
  position: relative;
}
.td:before {
  content: attr(data-header);
  float: left;
  letter-spacing: 0.05rem;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--brightgrey);
}
.table .rh > span:after {
  position: absolute;
  content: "";
  border-left: 1px solid white;
  border-top: 1px solid white;
  padding: 4px;
  right: 15px;
  top: 30%;
  -moz-transform: rotate(-135deg);
  -ms-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
  transition: 0.4s;
}
.table .rh.active > span:after {
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.td img {
  margin-top: 3px;
  margin-right: 5px;
}

.dwld {
  display: inline-flex;
  gap: 6px;
}
.dwld div {
  width: 15px;
  height: 15px;
  margin-top: 3px;
  background-color: var(--white);
  -webkit-mask: url(images/download-icon.svg) no-repeat center;
  mask: url(images/download-icon.svg) no-repeat center;
}
.tr:hover .dwld div {
  background-color: var(--accent-color);
}
.tr:hover .dwld {
  color: var(--accent-color);
}

@media screen and (min-width: 981px) {
  .rh {
    display: none;
  }

  .table {
    display: table;
  }

  .thead {
    display: table-header-group;
  }

  .tbody {
    display: table-row-group;
  }

  .tr,
  .tr:first-child {
    display: table-row;
  }

  .th,
  .td {
    display: table-cell;
  }

  .td:before {
    content: "";
  }
}
@media screen and (max-width: 980px) {
  .td:first-child {
    display: none;
  }
}
/* ---------- Wohnungen Tabelle Styling ---------- */

.table {
  width: 100%;
  overflow: hidden;
  padding: 20px;
  background-color: var(--verydarkgrey);
}

.th,
.tr .td,
.rh,
.rh.open:nth-last-child(2) {
  border-bottom: 2px solid var(--grey);
}

.th {
  letter-spacing: 0.05rem;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--brightgrey);
}

.rh:nth-last-child(2) {
  border-bottom: none;
}

.td {
  padding: 8px 10px;
}
.rh > span {
  padding: 5px 0;
  font-size: 18px;
  font-weight: 600;
}
.tr:first-child,
.tr:last-child {
  border-bottom: none;
}
.tr:last-child .td:last-child {
  border-bottom: none;
}
.tbody .open {
  color: var(--accent-color);
}

.tbody .hover {
  color: var(--accent-color);
}
.tbody .tr.hover {
  background-color: var(--grey);
}

@media screen and (min-width: 981px) {
  .th,
  .td {
    padding: 15px;
  }
  .th {
    border-right: 0px;
  }
  .td {
    border-right: 0px;
  }

  .th:last-child,
  .td:last-child {
    border-right: none;
  }

  .tr:last-child .td:first-child {
    border-top: none;
  }

  .tr:last-child .td {
    border-bottom: none;
  }

  .tr .td:nth-child(even) {
    background: none;
  }
  .tbody .tr:hover {
    background-color: var(--grey);
    color: var(--accent-color);
    cursor: pointer;
  }
}
@media screen and (max-width: 980px) {
  .td:before {
    min-width: 160px;
    width: 50%;
  }

  .rh > span {
    font-size: 16px;
  }
}

/* ------------ Form ----------------*/

/*Dropdown*/

.dropdown-check-list {
  display: inline-block;
}
.dropdown-check-list .anchor {
  position: relative;
  cursor: pointer;
  display: inline-block;
  padding: 10px 50px 10px 20px;
  border: 1px solid #ccc;
  width: 200px;
}
.dropdown-check-list .anchor:before {
  position: absolute;
  content: "";
  border-left: 1px solid black;
  border-top: 1px solid black;
  padding: 4px;
  right: 20px;
  top: 15px;
  -moz-transform: rotate(-135deg);
  -ms-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}
.dropdown-check-list.visible .anchor:before {
  border-left: 1px solid var(--accent-color);
  border-top: 1px solid var(--accent-color);
  top: 20px;
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.dropdown-check-list ul.items {
  padding: 0px;
  display: none;
  margin: 0;
  border: 1px solid #ccc;
  border-top: none;
}
.dropdown-check-list ul.items li {
  list-style: none;
  line-height: 30px !important;
}
.dropdown-check-list.visible .anchor {
  color: var(--accent-color);
}
.dropdown-check-list.visible .items {
  display: block;
  position: absolute;
  z-index: 2;
  background: #fff;
  width: 200px;
}

/*Form*/

textarea,
input.text,
input[type="text"],
input[type="button"],
input[type="submit"],
.input-checkbox {
  -webkit-appearance: none;
  border-radius: 0;
}

.antispam {
  display: none;
}
.kontakt-form input:not([type="Checkbox"]),
.kontakt-form textarea {
  width: 97%;
  font-size: 18px;
  font-family: Vela, Helvetica, Sans-Serif;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  margin-top: 10px;
}
.kontakt-form input:not([type="Checkbox"]):focus,
.kontakt-form textarea:focus,
.kontakt-form input:not([type="Checkbox"]):active,
.kontakt-form textarea:active {
  border-color: var(--accent-color) !important;
  outline: none;
}
.kontakt-form input:not([type="Checkbox"]) {
  height: 36px;
}
.kontakt-form input.half-form {
  width: 48%;
  margin-right: 1%;
}
.kontakt-form label {
  display: block;
  width: 100%;
  height: 100%;
  padding: 5px 20px;
  background-color: transparent;
  border: none;
  cursor: pointer;
}
.kontakt-form .checkbox-form {
  display: inline;
  margin: 0;
  padding: 0;
  list-style: none;
}
.kontakt-form .checkbox-form input[type="checkbox"],
.kontakt-form .checkbox-form input[type="radio"] {
  display: none;
}
.kontakt-form .checkbox-form input[type="checkbox"] + label:hover {
  color: var(--white);
  background-color: var(--accent-color);
}
.kontakt-form .checkbox-form input[type="checkbox"]:checked + label {
  color: var(--white);
  background-color: var(--accent-color);
}
.kontakt-form input[type="submit"] {
  background-color: var(--accent-color) !important;
  color: var(--white);
  border: none;
  padding: 0 20px;
  font-size: 18px;
  font-family: Vela, Helvetica, Sans-Serif;
  transition: all 0.6s;
  cursor: pointer;
}

/* ------------- Footer ------------- */
#copyright {
  display: flex;
  justify-content: center;
  font-size: 14px;
  padding: 15px 0;
  text-align: center;
  color: var(--white);
  padding: 15px var(--mainpadding);
}
@media screen and (max-width: 980px) {
  #copyright {
    line-height: 0.8;
  }
}

/* -------------- Modal ------------- */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  animation: fadeEffect 1s;
  -webkit-animation: fadeEffect 1s;
}
html .modal-content,
body .modal-content {
  overflow: hidden;
}

.modal-content {
  position: absolute;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  height: 100vh;
}
#impressummodal .modal-content {
  padding: 15px var(--mainpadding);
}
.closeimpressum {
  cursor: pointer;
}
.modal-title {
  grid-column: span 2;
  line-height: initial;
  padding: 0 0 10px 0;
}
#modal-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 11px;
}
.desc {
  grid-column: span 2;
  margin: 0 0 35px 0;
  max-width: 400px;
}
.accept {
  grid-column: span 2;
  margin: 12px 0 10px 0;
  cursor: pointer;
  display: block;
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.accept-desc {
  width: calc(100% - 28px);
  float: right;
}
.close {
  color: var(--white);
  float: right;
  font-size: 28px;
  font-weight: bold;
}
.close:hover,
.close:focus {
  text-decoration: none;
  cursor: pointer;
}

.menu-icon {
  width: 40px;
  float: right;
  padding-top: 2px;
}
.impressum-inner {
  width: 100%;
  height: 100%;
}
.impressum-inner div {
  margin: 25vh auto;
  border: 2px solid var(--accent-color);
  padding: 50px;
}
.st1 {
  fill: var(--accent-color);
}
.menu-icon:hover .st1 {
  fill: var(--accent-color-hover);
}

/* ------- Kontakt -------*/
#Kontakt {
  font-size: 18px;
}
#Kontakt h2 {
  line-height: 0.4;
}

/* ------- Animation -------*/

@-webkit-keyframes fadeEffect {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeEffect {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.fadeout {
  animation: out 0.8s;
  animation-fill-mode: forwards;
}

@keyframes out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
