@media (max-width: 468px) {
  .menu-toggle {
    display: block;
    background: var(--color-accent);
  }

  .menu-list {
    flex-direction: column;
    background: var(--color-bg);
    position: fixed;
    top: 0;
    right: -300px;
    width: 250px;
    height: 100vh;
    padding: 2rem 1rem;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease-in-out;
    z-index: 1000;
    display: flex;
  }

  .menu-list.open {
    right: 0;
  }
}


.flex-center{
  display:flex;
  align-items: center;
  justify-content: center;
} 

.flex-colum{
  flex-direction: column;
}

.grid{padding:10px;}
.griditem{
  min-height:300px;
  background-color: var(--color-skeleton);
}

.light-green{
  color: var(--color-accent);
}
.light-blue{
  background-color: var(--color-light-blue);
}
.light-yellow{
  background-color: var(--color-light-yellow);
}

.logo {
  height: auto;
  max-height: 40px;
  max-width: 100%;
}
.griditem{background-size: cover;}

.relholder{
  position:relative;
  background-size: cover;
  background-position: center center;}

.logo-claim{
  width:300px;
  position:absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}

.schrag-doppelt {
  background: var(--color-text);
  color: white;
  padding: 6rem 0rem;
  clip-path: polygon(
    0 0,
    100% 100px,
    100% 100%,
    0 calc(100% - 100px)
  );
  position: relative;
  z-index: 1;
}

/* Tablet-Portrait und kleiner (max-width: 1024px) */
@media (max-width: 1024px) {
  .schrag-doppelt {
    padding: 5rem 0rem;
    clip-path: polygon(
      0 0,
      100% 80px,
      100% 100%,
      0 calc(100% - 80px)
    );
  }
}

/* Mobile Landscape und kleiner (max-width: 768px) */
@media (max-width: 768px) {
  .schrag-doppelt {
    padding: 4rem 0rem;
    clip-path: polygon(
      0 0,
      100% 60px,
      100% 100%,
      0 calc(100% - 60px)
    );
  }
}

/* Mobile Portrait (max-width: 480px) */
@media (max-width: 480px) {
  .schrag-doppelt {
    padding: 3rem 0rem;
    clip-path: polygon(
      0 0,
      100% 40px,
      100% 100%,
      0 calc(100% - 40px)
    );
  }
}

.schrag-inner{
  margin:100px 0px;
}

.schrag-h h1, .schrag-h h2{
  margin-bottom:0;
}

.graz-button{
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight:600;
  width:100%;
  background-color: var(--color-accent);
  border:1px solid var(--color-accent);
  color: var(--color-text);
  padding:1rem 2rem;
  border-radius:5px;
  text-align: center;
  transition: 0.3s;
  display:block;
}

.graz-button:hover{
  background-color: var(--color-accent-light);
}

.text-center{
  text-align:center;
}

.mato100{margin-top:100px;}
.mato50{margin-top:50px;}

.factbox{
  border:2px solid var(--color-accent-light);
  border-radius:5px;
  padding:2rem 1rem;
}

.txthilight{
  font-weight:900;
  color:var(--color-accent);
}

.schrag-oben {
  background: var(--color-text);
  color: white;
  padding: 6rem 0 0;
  clip-path: polygon(
    0 0,
    100% 100px,
    100% 100%,
    0 100%
  );
  position: relative;
  z-index: 1;
}

/* Tablet */
@media (max-width: 1024px) {
  .schrag-oben {
    clip-path: polygon(
      0 0,
      100% 80px,
      100% 100%,
      0 100%
    );
  }
}

/* Mobile */
@media (max-width: 768px) {
  .schrag-oben {
    clip-path: polygon(
      0 0,
      100% 60px,
      100% 100%,
      0 100%
    );
  }
}

/* Very small mobile */
@media (max-width: 480px) {
  .schrag-oben {
    clip-path: polygon(
      0 0,
      100% 40px,
      100% 100%,
      0 100%
    );
  }
}

.footerlinks{
  display:flex;
  flex-direction: column;
  align-items: flex-start;

}

.claim-footer{
  max-width:200px;
  -webkit-filter: drop-shadow(2px 2px 0px #ffffff);
  filter: drop-shadow(2px 2px 0px #ffffff);
}