@charset "UTF-8";

@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");

@media screen {
  
  body {
    font-family: "Open Sans", "Trebuchet MS", trebuchet, sans-serif;
    background-color: #FFFFFF;
  }
  
  .main-be-area {
    background-color: transparent;
  }
  
  .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    
    background-color: #000000;
    
    padding-block: var(--spacing-2x, 16px);
    padding-inline: var(--spacing-5x, 40px);
    border-bottom: 1px solid var(--brand-color);
    z-index: 2;
  }
  
  .header .invisible-flex-item {
    width: 85.02px; /* Make this the same as .backtosite width */
    height: 100%;
  }
  
  .header .logo a {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .header .logo img {
    display: block;

    height: 100px;
    width: auto;
    
    transition: all 0.5s ease-in-out;
  }

  .header .logo img:hover {
    filter: invert(0.06);
  }



  /* --- Back to Site button --- */
  .header .backtosite {
    position: static;
  }

  .header .backtosite a {
    display: flex;
    align-items: center;
    justify-content: space-around;
    position: relative;
    
    color: #FFFFFF;
    background-color: var(--brand-color);
    
    font-size: 15px;
    text-align: center;
    text-shadow: 0px 0px 0px var(--brand-color);
    text-transform: uppercase;
    
    min-width: 80px;
    padding-block: 5px;
    padding-inline: 20px;
    border: 1px solid #FFFFFF;
    border-radius: 3px;
    
    transition: all 0.5s ease-in-out;
  }

  .header .backtosite a:hover {
    background-color: #E1C454;
  }

  .header .backtosite:active a {
    top: 1px;
  }
  
  
  
  /* --- Back to top --- */
  .backtotop {
    background-color: #000000;

    width: 44px;
    height: 44px;
    border-radius: 50%;
    margin-bottom: 6px; /* - reference sight has margin-top: -50px; from within the footer - */
    margin-left: auto;
    margin-right: calc((50% - (1300px / 2)) + 20px);
    
    transition: all 0.4s ease-in-out;
  }
  
  .backtotop:hover {
    background-color: var(--brand-color);
  }

  .backtotop a {
    display: flex;
    justify-content: center;
    align-items: center;

    width: 100%;
    height: 100%;
  }
  
  .backtotop a i {
    color: #DAB115;
    
    font-size: 25px;
    
    margin: 0px;
  }
  
  .backtotop:hover a i {
    color: #FFFFFF;
  }
  
  .footer {
    color: #FFFFFF;
    background-color: #000000;
    
    font-size: 18.36px;
    line-height: 31.212px;
    
    width: 100%;
    padding-top: 30px;
    padding-inline: 20px;
  }
  
  .footer .footer-logo {
    display: flex;
    justify-content: center;
    
    gap: 14.688px;
  }

  .footer .footer-logo a img {
    display: block;
    
    width: 52px;
    height: auto;
    
    transition: all 1s ease-in-out;
  }

  .footer .footer-logo a:hover img {
    filter: grayscale(100%;)
  }
  
  .footer .address {
    text-align: center;
  }
  
  .footer .contact {
    color: var(--brand-color);
    
  }
  
  .footer .contact a {
    color: #FFFFFF;
    
    transition: all 0.8s ease-in-out;
  }
  
  .footer .contact a:hover {
    color: var(--brand-color);
  }
  
  .footer .socials {
    display: flex;
    
    width: 100%;
    padding-block: 12.5px;
    gap: 5px;
    
    margin-bottom: 50px;
  }
  
  .footer .socials a {
    color: var(--brand-color);
    
    font-size: 28px;
    
    transition: all 0.8s ease-in-out;
  }
  
  .footer .socials a:hover {
    color: #FFFFFF;
  }
  
  .footer small {
    font-size: 14px;
    font-weight: 500;
    line-height: 31.212px;
    text-transform: lowercase;
  }
  
  .footer small a {
    color: var(--brand-color);
    
    transition: all 0.8s ease-in-out;
  }
  
  .footer small a:hover {
    color: #FFFFFF;
  }
  
}



/* ----- Tablet specific ----- */
@media screen and (max-width: 999px) {
  
  .header .logo img {
    height: 85px;
  }

  .header .invisible-flex-item {
    display: none;
  }
  
  .footer {
    padding-top: 20px;
  }
  
  .footer .contact,
  .footer .address {
    font-size: 16px;
  }
  
}



/* ----- Mobile specific ----- */
@media screen and (max-width: 499px) {

  .header {
    justify-content: center;
  }

  .header .logo img {
    height: 70px;
  }
  
  .header .backtosite a {
    display: none;
  }
  
  .footer {
    padding-inline: 5px;
    padding-top: 50px;
  }
  
  .footer .address {
    font-size: 14px;
  }
  
  .footer .contact {
    font-size: 14px;
  }
  
}