@charset "UTF-8";

@import url("");

@media screen {
  
  :root {
    --border-radius-1x: 0px;
  }
  
  .button--branded {
    text-transform: uppercase;
    
    border: 1px solid #FFFFFF;
  }
  
  h1, h2, h3, h4, h5, h6,
  .header1, .header2, .header3,
  .header4, .header5, .header6 {
    font-family: "Noe Display", "p22-underground", "Trebuchet MS", trebuchet, system-ui, sans-serif;
  }
  
  .header a i,
  .footer a i {
    margin-right: 0px;
  }
  
  .main-be-area {
    background-color: #DAD9D6;
  }
  
  .header {
    display: flex;
    justify-content: center;
    align-items: center;
    position: static; /* Overwrite */
    
    background-color: #383533;
    color: #FFFFFF;
    
    padding-block: 25px;
    border-bottom: 1px solid var(--border-default);
  }
  
  .header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    
    width: 100%;
    max-width: 1280px;
    padding-inline: 15px;
  }
  
  .header .invisible-flex-item {
    display: none;
  }
  
  .header .logo img {
    display: block;
    
    width: 134px;
    height: auto;
    
    transition: all 0.15s ease-in-out;
  }
  
  .header .logo:hover img {
    opacity: 70%;
  }
  
  .header .backtosite a {
    display: flex;
    justify-content: center;
    align-items: center;
    
    background-color: #759187;
    color: #FFFFFF;
    
    font-size: 16px;
    font-weight: 400;
    line-height: 16px;
    text-align: center;
    text-transform: uppercase;
    
    padding-top: 15px;
    padding-bottom: 12px;
    padding-inline: 30px;
    border: 1px solid #FFFFFF;
    
    transition: all 0.15s ease-in-out;
  }
  
  .header .backtosite:hover a {
    color: #759187;
    background-color: #FFFFFF;
  }
  
  .footer {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    
    background-color: #FFFFFF;
    color: #5A6C67;
    
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
  }
  
  .footer .container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    
    gap: 25px;
    width: 100%;
    max-width: 1280px;
    padding-inline: 15px;
    padding-block: 80px;
  }
  
  .footer .footer-logo {
    padding-bottom: 5px;
  }
  
  .footer .footer-logo img {
    display: block;
    
    width: 225px;
    height: auto;
    
    transition: all 0.15s ease-in-out;
  }
  
  .footer .footer-logo:hover img {
    opacity: 70%;
  }
  
  .footer small {
    padding-bottom: 15px;
  }
  
  .footer small a {
    color: #5A6C67;
    
    border-bottom: 1px solid transparent;
    
    transition: all 0.5s ease-in-out;
  }
  
  .footer small a:hover {
    border-bottom: 1px solid #5A6C67;
  }
  
  .footer .address {
    text-align: left;
    text-transform: uppercase;
    
    padding-bottom: 3px;
  }
  
  .footer .contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    
    text-transform: uppercase;
  }
  
  .footer .contact a {
    color: #5A6C67;
    
    border-bottom: 1px solid transparent;
    
    transition: all 0.5s ease-in-out;
  }
  
  .footer .contact a:hover {
    border-bottom: 1px solid #5A6C67;
  }
  
  .footer .socials {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    
    background-color: #DAD9D6;
    
    gap: 30px;
    width: 100%;
    padding-block: 35px;
    padding-inline: calc(50% - (1280px / 2));
  }
  
  .footer .socials a {
    display: flex;
    justify-content: center;
    align-items: center;
    
    color: #344B46;
    background-color: transparent;
    
    font-size: 25px;
    
    width: 56px;
    aspect-ratio: 1 / 1;
    border: 1px solid #344B46;
    
    transition: all 0.5s ease-in-out;
  }
  
  .footer .socials a:hover {
    background-color: #344B46;
    color: #DAD9D6;
    border-color: #FFFFFF;
  }
  
}



@media screen and (max-width: 1249px) {
  
  .header {
    padding-top: 25px;
    padding-inline: 15px;
  }
  
  .header .main-width {
    align-items: center;
  }
  
  .footer .main-width {
    justify-content: center;
  }
  
}



/* ----- Tablet specific ----- */
@media screen and (max-width: 999px) {
  
  .footer {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  
  .footer .main-width {
    padding-top: 18px;
    margin-inline: 15px;
    margin-bottom: 0px;
  }
  
}



/* ----- Mobile specific ----- */
@media screen and (max-width: 499px) {
  
  .header {
    padding-inline: 0px;
  }
  
  .header .main-width {
    justify-content: center;
  }
  
  .header .backtosite {
    display: none;
  }
  
}