@charset "UTF-8";

@import url("https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap");

@media screen {
  
  .header a i,
  .footer a i {
    margin-right: 0px;
  }
  
  body {
    font-family: "Raleway", "Trebuchet MS", trebuchet, system-ui, sans-serif;
  }
  
  .sticky {
    border: 17px solid #FFFFFF;
    outline: 1px solid var(--border-default);
    outline-offset: -17px;
  }
  
  .button--branded {
    color: #000000; /* Fixing for accessibility / contrast */
    
    text-transform: uppercase;
  }
  
  .main-be-area {
    background-color: #F0F1F3;
  }
  
  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 */
  }
  
  .header {
    background-color: #000000;
  }
  
  .header .container {
    display: flex;
    align-items: center;
    
    width: 100%;
    padding-block: 17.5px;
    padding-inline: 25px;
  }
  
  .header .invisible-flex-item {
    display: none;
    
    width: 150px;
    height: 100%;
  }
  
  .header .logo img {
    display: block;
    
    height: 60px;
    width: auto;
  }
  
  .header .backtosite a {
    display: flex;
    justify-content: center;
    align-items: center;
    
    background-color: #F0C417;
    color: #000000;
    
    font-size: 17px;
    font-weight: 300;
    line-height: 25.33px;
    text-align: left;
    text-transform: uppercase;
    
    padding-block: 3px;
    padding-inline: 10px;
    border: 1px solid #F0C417;
    
    transition: all 0.15s ease-in-out;
  }
  
  .header .backtosite:hover a {
    background-color: #C7A10D;
    border-color: #C7A10D;
  }
  
  .backtotop a {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    
    background-color: #FFFFFF;
    color: #000000;
    
    font-size: 25px;
    
    width: 50px;
    height: 50px;
    right: 25px;
    bottom: 88px;
    
    transition: all 0.3s ease-in-out;
  }
  
  .backtotop a:hover {
    background-color: #000000;
    color: #F0C417;
  }
  
  
  .footer {
    background-color: #000000;
    color: #FFFFFF;
    
    font-size: 16px;
    font-weight: 300;
    line-height: 27px;
    text-align: left;
    
    padding-block: 25px;
  }
  
  .footer .container {
    display: flex;
    
    width: 100%;
    max-width: 1158px;
    padding-inline: 9px;
  }
  
  .footer a {
    color: #FFFFFF;
    
    border-bottom: 1px solid transparent;
    
    transition: all 0.15s ease-in-out;
  }
  
  .footer h4 {
    display: block;
    
    color: #F0C417;
    
    font-size: 18px;
    font-weight: 300;
    line-height: 26.82px;
    text-align: left;
    
    padding-top: 6px;
    margin-block: 0px;
  }
  
  .footer ul {
    padding-top: 24px;
    padding-bottom: 40px;
    padding-left: 0px;
    margin-block: 0px;
    margin-left: 17px;
  }
  
  .footer li {
    margin-bottom: 3px;
  }
  
  .footer .contact a:hover {
    border-bottom: 1px solid #FFFFFF;
  }
  
  .footer .socials {
    display: flex;
    
    padding-top: 7px;
    gap: 10px;
  }
  
  .footer .socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    
    background-color: #FFFFFF;
    color: #000000;
    
    font-size: 20px;
    
    width: 30px;
    height: 30px;
    padding: 5px;
    
    transition: all 0.15s ease-in-out;
  }
  
  .footer .socials a:hover {
    background-color: #F0C417;
  }
  
}



/* ----- Tablet specific ----- */
@media screen and (max-width: 999px) {
  
  .sticky {
    border: 12px solid #FFFFFF;
    outline-offset: -12px;
  }
  
}



/* ----- Mobile specific ----- */
@media screen and (max-width: 499px) {
  
  .sticky {
    border: 7px solid #FFFFFF;
    outline-offset: -7px;
  }
  
  .header .container {
    justify-content: center;
  }
  
  .header .backtosite {
    display: none;
  }
  
}