@charset "UTF-8";

@import url("https://fonts.googleapis.com/css2?family=Libre+Franklin:ital,wght@0,100..900;1,100..900&display=swap");

@media screen {
  
  /* TEMP */
  /* Bigger timed announcement */
  .banner--warning {
    gap: var(--spacing-2x);
  }
  
  .banner--warning .banner__icon {
    font-size: 18px;
  }
  
  .banner--warning .banner__caption {
    font-size: 18px;
    line-height: normal;
  }
  
  
  
  
  .header a i,
  .footer a i {
    margin-right: 0px;
  }
  
  .main-be-area {
    background-color: transparent;
  }
  
  .header {
    display: flex;
    justify-content: center;
    align-items: center;
    
    background-color: #FFFFFF;
    box-shadow: 0px 6px 18px -10px #0000002E;
    
    padding-block: 0px;
    border-bottom: 1px solid var(--border-default);
    
    z-index: 4;
  }
  
  .header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    
    width: 100%;
    max-width: 100%;
  }
  
  .header .invisible-flex-item {
    display: none;
    align-self: stretch;
    
    width: 160px;
    height: 100%;
  }
  
  .header .logo {
    padding-block: 12px;
    padding-inline: 22px;
  }
  
  .header .logo img {
    display: block;
    
    height: 54px;
    width: auto;
    
    transition: all 0.3s ease-in-out;
  }
  
  .header .logo:hover img {
    filter: grayscale(50%);
  }
  
  .header .backtosite {
    display: flex;
    align-self: stretch;
  }
  
  .header .backtosite a {
    display: flex;
    justify-content: center;
    align-items: center;
    
    background-color: #E66B1F;
    color: #FFFFFF;
    
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 1.7px;
    line-height: 25.5px;
    text-align: center;
    text-transform: uppercase;
    
    min-width: 160px;
    padding-top: 31px;
    padding-bottom: 28px;
    padding-inline: 2px;
    
    transition: all 0.3s ease;
  }
  
  .header .backtosite:hover a {
    background-color: #F0A87B;
  }
  
  .footer {
    display: flex;
    justify-content: center;
    align-items: center;
    
    background-color: #FFFFFF;
    color: #000000;
    
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    
    padding-block: 40px;
  }
  
  .footer .container {
    display: flex;
    justify-content: left;
    align-items: flex-start;
    
    width: 100%;
    max-width: 1140px;
    padding-inline: 15px;
  }
  
  .footer .left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    
    gap: 20px;
    padding-inline: 15px;
  }
  
  .footer .footer-logo {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .footer .footer-logo img {
    display: block;
    
    width: 300px;
    height: auto;
    
    transition: all 0.3s ease;
  }
  
  .footer .footer-logo:hover img {
    filter: grayscale(50%);
  }
  
  .footer .seals {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .footer .seals a img {
    display: block;
    
    height: 120px;
    width: auto;
    
    transition: all 0.3s ease;
  }
  
  .footer .seals a:hover img {
    filter: grayscale(50%);
  }
  
  .footer .right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    
    gap: 22.5px;
    padding-left: 30px;
    padding-right: 15px;
    border-left: 1px solid #000000;
    margin-bottom: 22.5px;
  }
  
  .footer .address {
    text-align: left;
  }
  
  .footer .contact {}
  
  .footer .contact a {
    color: #E66B1F;
    
    transition: all 0.3s ease;
  }
  
  .footer .contact a:hover {
    color: #000000;
  }
  
  .footer .socials {
    display: flex;
    justify-content: space-around;
    align-items: center;
    
    gap: 19.5px;
  }
  
  .footer .socials a {
    color: #E66B1F;
    fill: #E66B1F;
    
    font-size: 25px;
    
    transition: all 0.3s ease;
  }
  
  .footer .socials a:hover {
    color: #F0A87B;
    fill: #F0A87B;
  }
  
  .footer small {
    color: #E66B1F;
    
    text-align: left;
  }
  
  .footer small a {
    color: #E66B1F;
    
    transition: all 0.3s ease;
  }
  
  .footer small a:hover {
    color: #000000;
  }
  
}






/* ----- Tablet specific ----- */
@media screen and (max-width: 699px) {
  
  .footer .container {
    flex-direction: column;
    align-items: center;
    
    gap: 22.5px;
  }
  
  .footer .seals {
    display: none;
  }
  
  .footer .right {
    align-items: center;
    
    padding-inline: 0px;
    border-left: 0px solid transparent;
    margin-bottom: 0px;
  }
  
  .footer .address {
    text-align: center;
  }
  
}



/* ----- Mobile specific ----- */
@media screen and (max-width: 499px) {
  
  .header .logo {
    padding-inline: 0px;
  }
  
  .header .container {
    justify-content: center;
  }
  
  .header .backtosite {
    display: none;
  }
  
}