@charset "UTF-8";

@import url("https://fonts.googleapis.com/css2?family=Italiana&family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap");

:root {
  --brand-background: #F0F0F0;
  --brand-shadow: 0px 3px 6px #00000026;
  --brand-: ;
  --brand-white: #FFFFFF;
  --brand-light-grey: #CCCCCC;
  --brand-black: #000000;

  --font-family-serif: "Georgia", georgia, serif, system-ui;

  --custom-transition: all 0.5s ease-in-out;
}

@media screen {
  
  body {
    font-family: "Nunito Sans", "Trebuchet MS", trebuchet, sans-serif;
  }
  
  ::selection {
    color: var(--brand-white);
    background: var(--brand-color);
  }
  
  .footer *::selection {
    color: var(--brand-color);
    background: var(--brand-white);
  }
  
  .header a i,
  .footer a i {
    margin-right: 0px;
  }
  
  html[lang="en_DE"] .germanSite {
    display: none !important; /* hide German if user language is English */
  }
  
  html[lang="de_DE"] .englishSite {
    display: none !important; /* hide English if user language is German */
  }
  
  body {
    font-family: "Nunito Sans", "Trebuchet MS", trebuchet, system-ui, sans-serif;
    font-size: 16px;
  }
  
  .main-be-area {
    background-color: var(--brand-background);
  }
  
  .header {
    background: var(--brand-white);
    box-shadow: var(--brand-shadow);
    
    padding-block: 0px;
    justify-content: center;
    z-index: 5;
  }
  
  .header .container {
    max-width: 100%;
    padding-left: 30px;
    padding-right: 30px;
  }

  .header .container .header-items-wrapper {
    display: flex;
    position: relative;
    align-items: center;
    justify-content: space-between;
    height: 69px;
  }

  .header .logo {
    display: grid;
    align-self: flex-start;
    position: relative;
    margin-right: 30px;
    height: 100%;
  }

  .header .logo a {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .header .logo img {
    width: auto;
    width: 270px;
    height: 54px;
    object-fit: contain;
    
    transition: var(--custom-transition);
  }
  
  .header .logo:hover img {
    filter: invert(44%);
  }
  
  /* --- Back to Site --- */
  .header .backtosite a {
    display: flex;
    justify-content: center;
    
    color: var(--brand-color);
    background-color: #C5B999;
    box-shadow: 0px 0px 0px 0px #00000000; 
    
    font-size: 14px;
    font-weight: 600;
    line-height: 18px;
    text-transform: uppercase;
    
    min-width: 190px;
    padding-top: 13px;
    padding-bottom: 12px;
    padding-inline: 24px;
    
    transition: var(--custom-transition);
  }
  
  .header .backtosite:hover a {
    background-color: #9E947A;
    box-shadow: 0px 3px 6px #00000026;
  }
  
  .header .backtosite:active a {
    position: relative;
    top: 1px;
  }
  
  .footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    
    color: var(--brand-white);
    background: var(--brand-color);
    
    font-size: 14px;
    font-weight: 400;
    line-height: 25px;
    text-align: left;
    
    padding-bottom: 45px;
  }
  
  .footer .border-box {
    width: 100%;
    padding-bottom: 39px;
    border-bottom: 1px solid #474747;
  }
  
  .footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    
    width: 100%;
    max-width: 1200px;
    padding-top: 35px;
    padding-bottom: 17px;
    padding-inline: 30px;
    
    gap: 10px;
  }
  
  .footer a {
    color: var(--brand-white);
    
    text-decoration: none;
    text-transform: uppercase;
    
    transition: var(--custom-transition);
  }
  
  .footer a:hover {
    color: var(--brand-light-grey);
  }
  
  .footer .socials {
    display: flex;
    justify-content: center;
    align-items: center;
    
    gap: 20px;
    padding-bottom: 32px;
  }
  
  .footer .socials a i {
    color: var(--brand-white);
    
    font-size: 30px;
    
    transition: var(--custom-transition);
  }
  
  .footer .socials a:hover i {
    color: var(--brand-light-grey);
  }
  
  .footer .socials a img {
    display: block;
    
    width: 30px;
    
    transition: var(--custom-transition);
  }
  
  .footer .socials a:hover img {
    filter: invert(20%);
  }
  
  .footer .address {
    font-size: 13px;
    font-weight: 300;
    line-height: 24px;
    text-align: center;
  }
  
  .footer h4 {
    font-size: 14px;
    font-weight: 700;
    line-height: 24px;
    text-align: center;
    
    padding-bottom: 10px;
    margin-block: 0px;
  }
  
  .footer .contact {
    font-size: 13px;
    font-weight: 300;
    line-height: 24px;
    text-align: center;
    
    padding-bottom: 24px;
  }

  .footer .footer-logo a {
    display: flex;
    
    width: 50px;
    height: 50px;
  }
  
  .footer .footer-logo img {
    display: block;
    
    width: 100%;
    height: auto;
    
    transition: var(--custom-transition);
  }
  
  .footer .footer-logo:hover img {
    filter: invert(44%);
  }
  
  .footer small {
    font-size: inherit;
    line-height: inherit;
  }

  .footer small a {
    color: var(--brand-white);
    
    transition: var(--custom-transition);
  }
  
  .footer small a:hover {
    color: var(--brand-light-grey);
  }
  
}

@media (min-width: 768px) {

  .header .container {
    width: 750px;
  }

}


@media (min-width: 992px) {

  .header .container {
    width: 970px;
  }

}


@media (min-width: 1200px) {
  
  .header .container {
    width: 1200px;
  }

}


@media (min-width: 768px) and (max-width: 1199px) {

  .header .container {
    padding-left: 21px;
    padding-right: 21px;
  }

}

@media screen and (max-width: 999px) {
  
  .header .backtosite a {
    font-size: 12px;
    
    min-width: 170px;
  }
  
}

@media screen and (max-width: 767px) {

  .header .container {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  .header .logo {
    display: flex;
    align-items: center;
    padding-top: 0;
    margin-left: 0;
    margin-right: auto;
  }

  .header .logo img {
  width: 152.97px;
  height: 30.59px;
  }
  
  .header .container .header-items-wrapper {
    display: flex;
    align-items: center;
    height: 50px;
    padding-top: 0;
    padding-left: 15px;
    padding-right: 15px;
    margin-right: auto;
  }

}

@media screen and (max-width: 499px) {
  
  .header .container {
    justify-content: center;
  }

  .header .logo {
    margin-right: 0;
  }
  
  .footer .container {
    padding-inline: 0px;
  }
  
}