/* Mobile small */
:root {
  font-family: montserrat, sans-serif;
  font-size: 12px;
  --clr-blue: #0D384B;
  --clr-blue-transparent: rgba(13, 56, 75, 0.8);
  --clr-lightblue: #0FB8CE;
  --clr-lightgray: #C0CCD1;
  --clr-warning: rgb(200,0,0);

  --fs-nav: 1.2rem;
  --fs-logotext: 1rem;
  --fs-hero: 4rem;
  --fs-h1: 1.5rem;
  --fs-h2: 1.4rem;
  --fs-p: 1rem;

  --fw-light: 300;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-bold: 700;

  --hero-logo-height: calc((100vw * 0.27) + var(--fs-logotext));
  --header-height: 4rem;

  /* System tokens */
  --md-sys-color-primary: var(--clr-blue);
  --md-sys-color-on-primary: #ffffff;
  --md-sys-color-outline: var(--clr-lightblue);
  --md-sys-color-surface-container-highest: var(--clr-lightgray);

  /* Component tokens */
  --md-switch-handle-shape: 50%;
  --md-switch-track-shape: 1rem;


  scroll-behavior: smooth;
}

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

section {
    padding: 2rem;
    box-sizing: border-box;
    height: auto;
    min-height: 100vh;
    width: 100%;
    overflow: hidden;
}
.content {
    box-sizing: border-box;
    width: 100%;
    min-height: calc(100vh - var(--header-height) - 4rem);
    padding: 2rem 0 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}


h1 {
    font-size: calc(var(--header-height) * 0.35);
    font-weight: var(--fw-light);
    color: var(--clr-lightblue);
    text-transform: uppercase;
}

h2 {
    font-size: var(--fs-h2);
    font-weight: var(--fw-light);
    color: var(--clr-lightblue);
}

p {
    font-size: var(--fs-p);
    font-weight: var(--fw-light);
    color: #fff;
    line-height: 1.8;
    letter-spacing: 0.04rem;
}

.navbar_mobile {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  background: #0D384B;
  position: fixed;
  top: 0;
  height: calc(var(--header-height) + 2rem);
  width: 100%;
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;

  .navbar_logo{
    display: block;
    box-sizing: border-box;
    width: 3rem;
    height: calc(100% - 1rem);
    background: url('../img/logo_white.webp');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;

    a {
      width: 100%;
      height: 100%;
      display: block;
    }
  }
  
  .navbar_cover {
    display: block;
    width: calc(100% - 5rem);
    height: calc(var(--fs-nav) * 3);
    overflow: hidden;

    .navbar_text_list {
      transition: transform 0.5s ease-in-out;

      .navbar_text {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        height: calc(var(--fs-nav) * 3);
        width: 100%;
        font-size: var(--fs-nav);
        color: var(--clr-lightblue);
        padding-left: var(--fs-nav);
        font-weight: var(--fw-medium);
        text-transform: uppercase;
      }
    }
  }

  .navbar_burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    width: 2rem;
    height: calc((var(--fs-nav) * 2));
    background: none;
    border: none;
    cursor: pointer;

    i {
      color: #fff;
      font-size: calc(var(--fs-nav) * 1.5);
    }
  }

  .navbar_menu {
    z-index: 2000;
    display: none;
    justify-content: flex-end;
    align-items: flex-start;
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    transition: transform 0.5s ease-in-out;

    .navbar_menu_links {
      box-sizing: border-box;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      align-items: center;
      padding: 2rem;
      height: 100%;
      width: 80%;
      background-color: var(--clr-blue);

      .navbar_menu_link {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        height: calc(var(--fs-nav) * 3);
        width: 100%;

        a {
          text-decoration: none;
          color: var(--clr-lightblue);
          font-size: var(--fs-nav);
          font-weight: var(--fw-medium);
          text-transform: uppercase;
        }
        i {
          color: var(--clr-lightblue);
          font-size: calc(var(--fs-nav) * 1.5);
        }
      }
      .language_switcher {
        padding-top: var(--fs-nav);
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        width: 100%;

        a {
          text-decoration: none;
          color: var(--clr-lightblue);
          font-size: var(--fs-nav);
          font-weight: var(--fw-light);
          text-transform: uppercase;
        }
      }
    }
  }
  .navbar_menu.active {
    display: flex;
    right: 0;
  }

}

.navbar_desktop {
  display: none;
  position: fixed;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(var(--header-height) + 2rem);
  background-color: var(--clr-blue);
  border-bottom: 1px solid var(--clr-lightblue);
  box-shadow: #fff 0px -1px 10px;
  z-index: 1000;
  padding: 0 2rem;
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;

  .navbar_logo{
    display: block;
    box-sizing: border-box;
    width: calc((var(--header-height) - 1rem) * 4);
    height: calc(100% - 3rem);
    background: url('../img/logo+letters.webp');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center left;

    a {
      width: 100%;
      height: 100%;
      display: block;
    }
  }
  .navbar_text_list {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    height: 100%;
    width: fit-content;
    overflow: hidden;

    .navbar_text {
      display: flex;
      justify-content: flex-start;
      align-items: center;
      height: calc(var(--fs-nav) * 3);
      width: auto;
      font-size: var(--fs-nav);
      padding: 0 var(--fs-nav);

      a {
        text-decoration: none;
        color: #fff;
        font-weight: var(--fw-light);
        text-transform: uppercase;
      }
    }
    .language_switcher {
      padding-left: var(--fs-nav);
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      align-items: center;

      a {
        text-decoration: none;
        color: #fff;
        font-size: calc(var(--fs-nav) * 0.8);
        font-weight: var(--fw-light);
        text-transform: uppercase;
      }
    }

    .navbar_text:hover {
      cursor: pointer;
      color: var(--clr-lightblue);
      a {
        color: var(--clr-lightblue);
        text-decoration: underline;
      }
    }
  }
  .navbar_sectionbar {
    position: absolute;
    z-index: 2000;
    top: 10px;
    left: 50px;
    height: calc(var(--fs-nav) * 0.3);
    width: 100px;
    background-color: var(--clr-lightblue);
    transition: 0.3s;
  }  
}

.hero {
  padding: 2rem;
  box-sizing: border-box;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  .hero_grid {
    display: grid;
    width: 100%;
    height: 100%;
    row-gap: 1rem;
    grid-template-rows: var(--hero-logo-height) auto 5.5rem 1fr;
    grid-template-columns: 100%;
    grid-template-areas:
      "hero_logo"
      "hero_content"
      "hero_button"
      "hero_img";

    .hero_logo {
      grid-area: hero_logo;
      box-sizing: border-box;
      width: 100%;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 1rem;

      .hero_logo_img {
        width: 100%;
        height: 100%;
        background: url('../img/logo+letters.webp');
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center bottom;

      }
      .hero_logo_text {
        width: 100%;
        height: auto;
        text-align: center;
        color: #fff;
        font-size: var(--fs-logotext);
        font-weight: var(--fw-regular);
      }
    }

    .hero_img {
        grid-area: hero_img;
        background-image: url('../img/typo.webp');
        background-size: cover;
        background-position: center;
    }

    .hero_content {
        grid-area: hero_content;
        box-sizing: border-box;
        width: 100%;
        height: 100%;
        padding: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: left;
        color: var(--clr-lightblue);
        font-size: var(--fs-hero);
        font-weight: var(--fw-light);
    }

    .hero_button {
      grid-area: hero_button;
      box-sizing: border-box;
      width: 100%;
      height: 100%;
      padding: 0 ;
      display: flex;
      justify-content: flex-start;
      align-items: center;

      button {
        border: solid 1px var(--clr-lightblue);
        background-color: transparent;
        border-radius: 3rem;
        padding: 1.5rem 6rem;

        a {
          text-decoration: none;
          font-size: 1.5rem;
          color: var(--clr-lightblue);
        }
      }
      button:hover {
        cursor: pointer;
        background-color: var(--clr-lightblue);
        a {
          color: var(--clr-blue);
        }
      }
    }
  }
}

.header {
    box-sizing: border-box;
    display:flex;
    justify-content: flex-start;
    align-items: center;
    height: var(--header-height);
    width: 100%;
    gap: calc(var(--header-height) / 4);
    
    .header_logo {
      display: flex;
      align-items: center;
      height: 100%;
      width: calc(var(--header-height) * 1.3);
      background: url('../img/logo_white.webp');
      background-size: contain;
      background-repeat: no-repeat;
      background-position: center left;
    }
    .header_text {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: flex-start;
    }
}

.background_blue {
  background-color: var(--clr-blue);
}
.background_calc_old {
  background-image: url('../img/calc_old.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.background_bird {
  background-image: url('../img/bird.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.background_vienna {
  background-image: url('../img/vienna.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.services {
  .services_grid {
    box-sizing: border-box;
    display: grid;
    grid-template-rows: repeat(3, calc(var(--fs-h2) * 3) auto);
    grid-template-columns: repeat(3, 1fr);
    row-gap: 0.5rem;
    column-gap: 0.5rem;
    width: 100%;
    min-height: calc(100vh - var(--header-height) - 6rem);
    grid-template-areas: 
      "service_1_img service_1_header service_1_header"
      "service_1_content service_1_content service_1_content"
      "service_2_img service_2_header service_2_header"
      "service_2_content service_2_content service_2_content"
      "service_3_img service_3_header service_3_header"
      "service_3_content service_3_content service_3_content";

    .service_1_img {
      grid-area: service_1_img;
      background-image: url('../img/consulting.webp');
      background-size: cover;
      background-position: center;
      
    }
    .service_1_header {
      grid-area: service_1_header;
      display: flex;
      justify-content: center;
      align-items: center;
      text-align: center;
      padding: 0;
    }
    .service_1_content {
      grid-area: service_1_content;
      box-sizing: border-box;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      align-items: center;
      text-align: left;
      padding-bottom: 3rem;
    }
    .service_2_img {
      grid-area: service_2_img;
      background-image: url('../img/founding.webp');
      background-size: cover;
      background-position: center;
    }
    .service_2_header {
      grid-area: service_2_header;
      display: flex;
      justify-content: center;
      align-items: center;
      text-align: center;
      padding: 0;
    }
    .service_2_content {
      grid-area: service_2_content;
      box-sizing: border-box;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      align-items: center;
      text-align: left;
      padding-bottom: 3rem;
    }
    .service_3_img {
      grid-area: service_3_img;
      background-image: url('../img/accounting.webp');
      background-size: cover;
      background-position: center;
    }
    .service_3_header {
      grid-area: service_3_header;
      display: flex;
      justify-content: center;
      align-items: center;
      text-align: center;
      padding: 0;
    }
    .service_3_content {
      grid-area: service_3_content;
      box-sizing: border-box;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      align-items: center;
      text-align: left;
      padding-bottom: 3rem;
    }

    .service_img {
      width: 100%;
      height: 100%;
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
    }
  }
}

.why_us {
  .why_us_grid {
    box-sizing: border-box;
    display: grid;
    grid-template-rows: repeat(3, auto);
    grid-template-columns: 100%;
    gap: 3rem;
    width: 100%;
    min-height: calc(100vh - var(--header-height) - 6rem);
    grid-template-areas: 
      "why_us_1"
      "why_us_2"
      "why_us_3";

    .why_us_1 {
      grid-area: why_us_1;
      box-sizing: border-box;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      align-items: center;
      text-align: center;
    }
    .why_us_2 {
      grid-area: why_us_2;
      box-sizing: border-box;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      align-items: center;
      text-align: center;
    }
    .why_us_3 {
      grid-area: why_us_3;
      box-sizing: border-box;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      align-items: center;
      text-align: center;
    }

    .why_us_frame {
      box-sizing: border-box;
      border: solid 1px var(--clr-lightblue);
      border-radius: 3rem;
      padding: 2rem;
      height: fit-content;
    }
    .why_us_h2 {
      height: auto;
      margin-bottom: 1rem;
    }
    .why_us_svg_frame{
      box-sizing: border-box;
      width: 100%;
      height: 8rem;

      svg {
        width: 100%;
        height: 100%;

        .why_us_svg {
        fill: none;
        stroke: var(--clr-lightblue);
        stroke-width: 6px;
        stroke-linejoin: round;
        stroke-linecap: round;
        }
      }
    }
    .why_us_content {
      margin-top: 1rem;
    }
  }
}

.about_us {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  overflow: hidden;

  .management_grid {
    box-sizing: border-box;
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, calc(var(--fs-h2) * 2) auto);
    gap: 1rem;
    width: 100%;
    min-height: calc(100vh - var(--header-height) - 6rem);
    grid-template-areas: 
      "management_1_img management_1_name management_1_name"
      "management_1_img management_1_content management_1_content"
      "management_2_img management_2_name management_2_name"
      "management_2_img management_2_content management_2_content";
  
    .management_1_img {
      grid-area: management_1_img;
      background-image: url('../img/emre_oez.webp');
    }
    .management_1_name {
      grid-area: management_1_name;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: flex-start;
      text-align: left;
    }
    .management_1_content {
      grid-area: management_1_content;
      box-sizing: border-box;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      align-items: center;
      text-align: left;
      padding-bottom: 3rem;
    }
    .management_2_img {
      grid-area: management_2_img;
      background-image: url('../img/kerim_arseven.webp');
    }
    .management_2_name {
      grid-area: management_2_name;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: flex-start;
      text-align: left;
    }
    .management_2_content {
      grid-area: management_2_content;
      box-sizing: border-box;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      align-items: center;
      text-align: left;
      padding-bottom: 3rem;
    }

    .management_img {
      width: 100%;
      height: 100%;
      background-size: cover;
      background-position: center top;
      background-repeat: no-repeat;
    }
  }
}

.partner{

  .partner_grid {
    box-sizing: border-box;
    min-height: calc(100vh - var(--header-height) - 8rem - (1.8 * var(--fs-p)));
    width: 100%;
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 1rem;
    grid-template-areas: 
      "akbul hofbauer"
      "oek ps_partner"
      "schwank .";
  }
  .ps_partner {
    grid-area: ps_partner;
  }
  .ps_partner_img {
    background-image: url('../img/pekgun.webp');
  }
  .oek {
    grid-area: oek;
  }
  .oek_img {
    background-image: url('../img/oek.webp');
  }
  .schwank {
    grid-area: schwank;
  }
  .schwank_img {
    background-image: url('../img/schwank.webp');
  }
  .hofbauer {
    grid-area: hofbauer;
  }
  .hofbauer_img {
    background-image: url('../img/hofbauer.webp');
  }
  .akbul {
    grid-area: akbul;
  }
  .akbul_img {
    background-image: url('../img/akbul.webp');
  }

  .partner_frame{
    height: 100%;
    width: 100%;
    

    a {
      box-sizing: border-box;
      height: 100%;
      width: 100%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      text-decoration: none;

      p {
        margin-top: 0.5rem;
        line-height: var(--fs-p);
      }

    }
  }

  .partner_img {
    width: calc(100% - 1rem);
    height: calc(100% - 3*var(--fs-p));
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
  }

}

.contact {
  min-height: calc(100vh - (var(--fs-p) * 4) - 2rem);

  .content {
    min-height: calc(100vh - var(--header-height) - 6rem - (var(--fs-p) * 4));
  }

  .contact_frame{
    box-sizing: border-box;
    height: auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
    margin-bottom: 1rem;
    padding: 0 2rem;
    a {
      text-decoration: none;
      margin-top: 0.5rem;
    }

    img {
      width: auto;
      height: calc(2*var(--fs-p));
      object-fit: contain;
    }
  }

  .contact_img {
    box-sizing: border-box;
    width: 100%;
    height: calc(100vh * 0.2);
    background-image: url('../img/logo+letters.webp');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    margin-top: 4rem;
  }
}

.footer {
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: calc((var(--fs-p) * 4) + 2rem);
  padding: 1rem 2rem;
  text-align: center;
  
  p {
    color: #fff;
    font-size: var(--fs-p);
    font-weight: var(--fw-regular);

    a {
      text-decoration: none;
      color: #fff;
    }

    a:hover {
      text-decoration: underline;
    }
  }
}

.imprint {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  height: auto;
  min-height: calc(100vh - (var(--fs-p) * 4) - 2rem);
  padding: 1rem 2rem;
  text-align: left;

  .content {
    align-items: flex-start;
    h2 {
      margin-bottom: 1rem;
    }
    p {
      
      a {
        text-decoration: none;
        color: #fff;
      }
      a:hover {
        text-decoration: underline;
        color: var(--clr-lightblue);
      }
    }
  }
}

.error_container {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: calc(100vh - (var(--fs-p) * 4) - 2rem);
  padding: 2rem;
  text-align: center;

}
/* Mobile large */
@media (min-width: 480px) and (max-width: 767px) {
  :root {
    font-size: 14px;
  }
}

/* Tablet */
@media (min-width: 768px) and (max-width: 1023px) {
  :root {
    font-size: 16px;
    --fs-logotext: 1.2rem;
  }
  section {
    padding: 2rem 4rem;
  }
  .services {
    .services_grid {
      .service_1_header, .service_2_header, .service_3_header {
        justify-content: flex-start;
        padding: 0 0 0 1rem;
      }
    }
  }

  

}

/* Laptop and Desktop */
@media (min-width: 1024px) and (max-width: 1439px) {
  :root {
    font-size: 16px;

    --fs-nav: 0.9rem;
    --fs-h1: 3rem;
  }

  section {
    padding: 2rem 4rem;
  }
  .content {
    padding: 2rem 0 0 0;
  }
  .navbar_mobile {
    display: none;
  }
  .navbar_desktop {
    display: flex;
  }

  .hero {
    .hero_grid {
      grid-template-rows: 50% auto 6rem;
      grid-template-columns: 60% 40%;
      grid-template-areas:
        "hero_logo hero_img"
        "hero_content hero_img"
        "hero_button hero_img";

      .hero_logo {
        padding: 0 2rem 2rem;
      }

      .hero_content {
        padding: 0 2rem;
      }

      .hero_button {
        padding: 0 2rem;
      }
    }
  }
  .header {
    .header_text {
      justify-content: center;
    }
  }

  .services {
    .services_grid {
      grid-template-rows: 30% calc(var(--fs-h2) * 2) 1fr;
      grid-template-areas: 
        "service_1_img service_2_img service_3_img"
        "service_1_header service_2_header service_3_header"
        "service_1_content service_2_content service_3_content";
      column-gap: 2rem;
    }
  }

  .why_us {
    .why_us_grid {
      grid-template-columns: repeat(3, 1fr);
      grid-template-rows: 100%;
      gap: 2rem;
      grid-template-areas: 
        "why_us_1 why_us_2 why_us_3";

      .why_us_frame {
        height: 100%;
      }
      .why_us_h2 {
        height: calc(4 * var(--fs-h2));
      }
      .why_us_svg_frame{
        height: 6rem;
      }
    }
  }

  .about_us {
    height: auto;
    .management_grid {
      margin-top: 1rem;
      grid-template-rows: repeat(2, calc(var(--fs-h2) * 3) 1fr);

      .management_1_name {
        justify-content: flex-start;
      }
      .management_2_name {
        justify-content: flex-start;
      }
    }
  }

  .partner{
    .partner_grid {
      grid-template-columns: repeat(6, 1fr);
      grid-template-rows: repeat(2, 1fr);
      gap: 2rem;
      grid-template-areas: 
        "akbul akbul hofbauer hofbauer oek oek"
        ".  ps_partner ps_partner schwank schwank  .";
    }
  }

  .imprint {
    margin-top: calc(var(--header-height) + 2rem);
    height: auto;
    min-height: calc(100vh - (var(--fs-p) * 4) - var(--header-height) - 4rem);

    .content {
      h2 {
        margin-top: 2rem;
      }
    }
  }
}

/* Large Desktop */
@media (min-width: 1440px) and (max-width: 1919px) {
  :root {
    font-size: 16px;

    --fs-nav: 1.1rem;
    --fs-logotext: 1.2rem;
  }
  section {
    padding: 2rem 8rem;
  }
  .content {
    padding: 2rem 0;
  }
  h1 {
    font-size: calc(var(--header-height) * 0.45);
  }
  
  .navbar_mobile {
    display: none;
  }
  .navbar_desktop {
    display: flex;

    .navbar_logo{
      height: calc(100% - 2rem);
    }
  }
  
  .hero {
    .hero_grid {
      grid-template-rows: 50% auto 6rem;
      grid-template-columns: 60% 40%;
      grid-template-areas:
        "hero_logo hero_img"
        "hero_content hero_img"
        "hero_button hero_img";

      .hero_logo {
        padding: 0 2rem 2rem;
      }
      .hero_content {
        padding: 0 2rem 0 6rem;
      }
      .hero_button {
        padding: 0 6rem;
        justify-content: flex-start;
        align-items: center;
      }
    }
  }
  .header {
    .header_text {
      justify-content: center;
    }
  }

  .services {
    .services_grid {
      grid-template-rows: 30% calc(var(--fs-h2) * 2) 1fr;
      grid-template-areas: 
        "service_1_img service_2_img service_3_img"
        "service_1_header service_2_header service_3_header"
        "service_1_content service_2_content service_3_content";
      column-gap: 8rem;
    }
  }

  .why_us {
    .why_us_grid {
      grid-template-columns: repeat(3, 1fr);
      grid-template-rows: 100%;
      gap: 8rem;
      grid-template-areas: 
        "why_us_1 why_us_2 why_us_3";

      .why_us_frame {
        height: 100%;
      }
      .why_us_h2 {
        height: calc(4 * var(--fs-h2));
      }
       .why_us_svg_frame{
        height: 6rem;
      }
    }
  }

  .about_us {
    height: auto;
    .management_grid {
      margin-top: 1rem;
      grid-template-rows: repeat(2, calc(var(--fs-h2) * 3) 1fr);
      grid-template-columns: 15rem repeat(2, 1fr);

      .management_1_name {
        justify-content: flex-start;
      }
      .management_2_name {
        justify-content: flex-start;
      }
    }
  }

  .partner{
    .partner_grid {
      grid-template-columns: repeat(6, 1fr);
      grid-template-rows: repeat(2, 1fr);
      gap: 2rem;
      grid-template-areas: 
        "akbul akbul hofbauer hofbauer oek oek"
        ".  ps_partner ps_partner schwank schwank  .";
    }
  }
  .imprint {
    margin-top: calc(var(--header-height) + 2rem);
    height: auto;
    min-height: calc(100vh - (var(--fs-p) * 4) - var(--header-height) - 4rem);

    .content {
      h2 {
        margin-top: 2rem;
      }
    }
  }

}


/* 2k, 4k Display */
@media (min-width: 1920px) {
  :root {
    font-size: 16px;

    --fs-nav: 1.1rem;
    --fs-logotext: 1rem;
    --fs-hero: 4rem;
    --fs-h1: 3rem;
    --fs-h2: 1.4rem;
    --fs-p: 1rem;
  }
  section {
    padding: 2rem 20%;
  }
  .content {
    padding: 2rem 0;
  }
  h1 {
    font-size: calc(var(--header-height) * 0.45);
  }
  .navbar_mobile {
    display: none;
  }
  .navbar_desktop {
    display: flex;
    padding: 0 8rem;
    .navbar_logo{
      height: calc(100% - 2rem);
      width: calc(var(--header-height) * 4);
    }
  }
  .hero {
    padding: 4rem 14rem;

    .hero_grid {
      grid-template-rows: 50% auto 6rem;
      grid-template-columns: 60% 40%;
      grid-template-areas:
        "hero_logo hero_img"
        "hero_content hero_img"
        "hero_button hero_img";

      .hero_logo {
        padding: 0 2rem 2rem;
      }
      .hero_content {
        padding: 0 2rem 0 6rem;
      }
      .hero_button {
        padding: 0 6rem;
        justify-content: flex-start;
        align-items: center;
      }
    }
  }
  .header {
    .header_text {
      justify-content: center;
    }
  }

  .services {
    .services_grid {
      grid-template-rows: 30% calc(var(--fs-h2) * 2) 1fr;
      grid-template-areas: 
        "service_1_img service_2_img service_3_img"
        "service_1_header service_2_header service_3_header"
        "service_1_content service_2_content service_3_content";
      column-gap: 8rem;
    }
  }

  .why_us {
    .why_us_grid {
      grid-template-columns: repeat(3, 1fr);
      grid-template-rows: 100%;
      gap: 8rem;
      grid-template-areas: 
        "why_us_1 why_us_2 why_us_3";

      .why_us_frame {
        height: 100%;
      }
      .why_us_h2 {
        height: calc(4 * var(--fs-h2));
      }
       .why_us_svg_frame{
        height: 10rem;
        margin: 1rem 0;
      }
    }
  }

  .about_us {
    .management_grid {
      margin-top: 1rem;
      grid-template-rows: repeat(2, calc(var(--fs-h2) * 3) 1fr);
      grid-template-columns: 15rem repeat(2, 1fr);

      .management_1_name {
        justify-content: flex-start;
      }
      .management_2_name {
        justify-content: flex-start;
      }
    }
  }

  .partner{
    .partner_grid {
      min-height: calc(100vh - var(--header-height) - 10rem - (1.8 * var(--fs-p)));
      grid-template-columns: repeat(8, 1fr);
      grid-template-rows: repeat(3, 1fr);
      gap: 2rem;
      grid-template-areas: 
        ". akbul akbul hofbauer hofbauer oek oek ."
        ". . ps_partner ps_partner schwank schwank . ."
        ". . . . . . . .";
    }
  }

  .imprint {
    margin-top: calc(var(--header-height) + 2rem);
    height: auto;
    min-height: calc(100vh - (var(--fs-p) * 4) - var(--header-height) - 4rem);

    .content {
      h2 {
        margin-top: 2rem;
      }
    }
  }

}