:root {
    --header-height: 80px;
    --logo-width: 60px;
    --color-txt-main: #000000;
    --color-txt-gray: #6c6c6c;
    --color-main: #5d9c59;
    --color-white: #ffffff;
    --color-gray-bg: #f4f4f4;
    --container-max-width: 1300px;
  }
  
  /* global css */
  *,
  *::after,
  *::before {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style-type: none;
  }
  
  html {
    font-size: 16px;
    font-family: "Poppins", sans-serif;
  }
  
  body {
    padding-top: var(--header-height);
    background-color: var(--color-white);
  }
  
  img {
    max-width: 100%;
  }
  
  .logo img {
    width: 9rem;
  }
  
  a {
    color: unset;
  }
  
  a:hover {
    color: var(--color-main);
  }
  
  .container {
    max-width: var(--container-max-width);
    margin: auto;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  .btn {
    border: none;
    outline: none;
    padding: 1rem 2.5rem;
    margin-top: 2rem;
    text-transform: uppercase;
    background-color: var(--color-main);
    color: var(--color-white);
    cursor: pointer;
    font-weight: bold;
  }
  
  .no-margin {
    margin: 0 !important;
  }
  
  section {
    margin-bottom: 9rem;
    padding-top: 2rem;
  }
  
  .section__title {

    margin-bottom: 2rem;
    text-transform: capitalize;
    font-weight: 900;
    font-size: 1.7rem;
  }
  
  .bg-image {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
  }
  
  /* global css */
  
  /* header */
  header {
    background-color: var(--color-white);
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
  }
  
  .header__content {
    height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
  }
  
  
  .header__logo img {
    padding-right: 10px;
    width: var(--logo-width);
  }
  
  .header__logo {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .btn-close-menu,
  .btn-open-menu {
    display: none;
  }
  
  .header__menu ul {
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    position: relative;
  }
  
  .header__content nav {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }
  
  .header__content nav ul {
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: right;
    height: 100%;
  }
  
  .header__content ul>li {
    text-transform: uppercase;
    font-weight: 600;
    cursor: pointer;
  }
  
  .header__content ul>li~li {
    margin-left: 2rem;
  }
  
  /* header */
   
  /* footer */
  footer {
    background-color: var(--color-txt-main);
  }
  
  .footer {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    padding-top: 4rem;
    padding-bottom: 4rem;
    color: var(--color-white);
  }
  
  .footer__col {
    width: 20%;
  }
  
  .footer__col:nth-child(1) {
    flex-grow: 1;
  }
  
  .footer__header {
    text-transform: capitalize;
    margin-bottom: 1rem;
    font-weight: 700;
    font-size: 1.2rem;
  }
  
  .footer__menu>li~li {
    margin-top: 0.7rem;
  }
  
  .footer__menu li {
    text-transform: capitalize;
    cursor: pointer;
  }
  
  .social-list {
    margin-top: 2rem;
  }
  
  .social-list>a~a {
    margin-left: 20px;
  }
  
  .social-list a {
    width: 40px;
    height: 40px;
    display: inline-flex;
    border-radius: 50%;
    background-color: var(--color-gray-bg);
    align-items: center;
    justify-content: center;
    color: var(--color-txt-main);
    font-size: 1.5rem;
  }
  
  .social-list a:hover {
    color: var(--color-main);
  }
  
  /* footer */
  
  /* responsive */
  
  /* extra small device */
  @media only screen and (max-width: 600px) {}
  
  /* small device */
  @media only screen and (max-width: 768px) {
    section {
      margin-bottom: 4rem;
    }
  
    .category__grid {
      grid-template-areas: "top top" "left left" "right right";
    }
  
    .category__item {
      padding-top: 40%;
    }
  
    .category__item>* {
      opacity: 1;
    }
  
    .category__border {
      width: 80%;
      height: 80%;
    }
  }
  
  /* medium device */
  @media only screen and (max-width: 992px) {
    html {
      font-size: 14px;
    }
  
    .header__content nav {
      position: fixed;
      top: 0;
      left: -100vw;
      height: 100vh;
      width: 50vw;
      z-index: 1000;
      background-color: var(--color-white);
      box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
      transition: left 0.3s ease-in-out;
    }
  
    .header__content.show-menu nav {
      left: 0;
    }
  
    .header__content nav ul {
      flex-direction: column;
      justify-content: flex-start;
      align-items: flex-start;
    }
  
    .header__content nav ul li {
      width: 100%;
      margin: 0;
      padding: 1rem 2rem;
    }
  
    .btn-open-menu,
    .btn-close-menu {
      display: block;
      padding: 1rem 2rem;
      border: none;
      background-color: transparent;
      outline: none;
      font-size: 2rem;
      cursor: pointer;
    }
  
    .btn-open-menu {
      padding: 1rem;
    }
  
    .footer__col {
      margin-bottom: 2rem;
      width: 33%;
    }
  
    .footer__col:nth-child(1) {
      width: 100%;
      text-align: center;
      margin-bottom: 4rem;
    }
  }



  .unoras { 
    background-color:rgb(64, 64, 64);
    border-style: solid;
    border-color: rgb(46, 46, 46);
    display: flex;
    flex-direction: row;
    justify-content: space-around;

  }

  .leftias {
    background-color:rgb(255, 255, 255);
    height: 700px;
    width: 200px;
    border-style: solid;
    border-color: rgb(46, 46, 46);
    border-radius: 10px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .middleias {
    border-style: solid;
    border-color: rgb(46, 46, 46);
    border-radius: 10px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }

  .bodyzwo {
    align-items: flex-start;
    background-color:rgb(64, 64, 64);   
    display: flex;
    flex-direction: column;
    align-items: center; 
    width:1200px;   
  }
  
  .midtitle {
    font-size: 40px; 
    font-weight: bold;
    font-family: Roboto, sans-serif;
    margin-bottom: 10px; 
    width: 470px; 
    background-color: #f4f4f4;   
    border-style: solid;
    border-color: rgb(46, 46, 46);
    border-radius: 10px;
    display: flex;
    justify-content: center;
  }
  
  .vierkasten {
    padding: 7px;
    margin-bottom: 15px;    
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-around;
  }

  .bierkasten {
    padding: 7px;
    margin-bottom: 15px;    
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
  }
  
  .eins {
    padding-bottom: 20px;
    display: flex;  
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  
  .kasten {
    background-color: rgb(255, 255, 255);    
    font-family: arial, Roboto, sans-serif;  
    color: rgb(59, 59, 59);
    height: auto;
    width: 200px;
    border-radius: 10px;
    padding: 20px;  
    border-style: solid;
    border-color: rgb(46, 46, 46);
    display: flex;  
    justify-content: center;
    align-items: center;  
  }
  
  .satz { 
    font-weight: bold;
    font-style: italic;  
    margin: 3px;
    display: flex;  
    justify-content: center;
    align-items: center;  
  }

  .rightias {
    background-color:rgb(255, 255, 255);
    height: 700px;
    width: 200px;
    padding: 40px;
    border-style: solid;
    border-color: rgb(46, 46, 46);
    border-radius: 10px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .cast {

    display: flex;
    flex-direction: row;
    align-content: stretch;
  }

  .bild {
    background-color: rgb(255, 255, 255);    
    font-family: arial, Roboto, sans-serif;  
    color: rgb(59, 59, 59);
    height: auto;
    width: 250px;
    border-radius: 10px;
    padding: 20px;  
    border-style: solid;
    border-color: rgb(46, 46, 46); 
  }

  .daten {
    padding: 5px;
    background-color: #f4f4f4;   
    border-style: solid;
    border-color: rgb(46, 46, 46);
    border-radius: 10px;
    min-height: max-content;
  }
