@charset "UTF-8";

@import url("https://fonts.googleapis.com/css2?family=Marcellus&display=swap");

:root {
  --border-radius-1x: 0px;
}

@media screen {
  
  .header a i,
  .footer a i {
    margin-right: 0px;
  }
  
  .main-be-area {
    background-color: #EBE9DD;
  }
  
  .header {
    display: flex;
    justify-content: center;
    align-items: center;
    
    background-color: #B1A97E;
    
    padding-block: 0px;
    border-bottom: 1px solid var(--border-default);
  }
  
  .header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    
    width: 100%;
    max-width: 1340px;
    padding-inline: 10px;
    padding-block: 14px; /* Need to make 98px, logo is 70px */
  }
  
  .header .invisible-flex-item {
    display: flex;
    align-self: stretch;
    
    width: 95.09px;
    height: 100%;
  }
  
  .header .logo svg {
    display: block;
    
    height: 70px;
    width: auto;
    
    fill: #FFFFFF;
    
    transition: all 0.7s ease;
  }
  
  .header .logo:hover svg {
    fill: #EBE9DD;
  }
  
  .header .backtosite {
    display: flex;
    align-self: stretch;
  }
  
  .header .backtosite a {
    display: flex;
    justify-content: center;
    align-items: center;
    
    background-color: transparent;
    color: #FFFFFF;
    
    font-size: 14px;
    font-weight: 600;
    line-height: 14px;
    text-align: center;
    text-transform: uppercase;
    
    gap: 10px;
    padding-inline: 10px;
    
    transition: all 0.7s ease;
  }
  
  .header .backtosite:hover a {
    color: #6A737B;
  }
  
  .header .backtosite i {
    font-size: 20px;
  }
  
  .footer {
    display: flex;
    align-items: center;
    justify-content: center;
    
    background: #B1A97E;
    color: #FFFFFF; 
    
    padding-top: 45px;
    padding-bottom: 61px;
  }
  
  .footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    
    gap: 10px;
    width: 100%;
    padding-inline: 10px;
    padding-bottom: 45px;
    border-bottom: 1px solid #D7D3BE;
  }
  
  .footer .socials {
    display: flex;
    
    gap: 12px;
    margin-bottom: 20px;
  }
  
  .footer .socials a {
    display: flex;
    justify-content: center;
    align-items: center;
    
    color: #FFFFFF;
    
    font-size: 25px;
    
    width: 25px;
    aspect-ratio: 1 / 1;
    
    transition: all 0.7s ease;
  }
  
  .footer .socials a:nth-child(1):hover {
    color: #396D9A;
  }
  .footer .socials a:nth-child(2):hover {
    color: #365397;
  }
  .footer .socials a:nth-child(3):hover {
    color: #00A9F1;
  }
  .footer .socials a:nth-child(4):hover {
    color: #FF3333;
  }
  .footer .socials a:nth-child(5):hover {
    color: #CE1A19;
  }
  
  .footer .contact {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    
    gap: 35px;
    margin-bottom: 15px;
  }
  
  .footer .contact p {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    
    font-size: 12.1875px;
    font-weight: 400;
    line-height: 18.2812px;
    text-transform: uppercase;
    
    gap: 8px;
  }
  
  .footer .contact a {
    color: #FFFFFF;
    
    font-size: 28px;
    font-weight: 500;
    line-height: 28px;
    
    transition: all 0.7s ease;
  }
  
  .footer .contact a:hover {
    opacity: 80%;
  }
  
  .footer .address {
    display: flex;
    justify-content: center;
    align-items: center;
    
    font-size: 16.25px;
    font-weight: 400;
    line-height: 24.375px;
    
    gap: 8px;
  }
  
  .footer small {
    color: #EBE9DD;
    
    text-align: center;
    
    margin-bottom: 5px;
  }
  
  .footer small a {
    color: #EBE9DD;
    
    transition: all 0.7s ease;
  }
  
  .footer small a:hover {
    color: #FFFFFF;
  }
  
  .footer .seals {
    display: flex;
    justify-content: center;
    align-items: center;
    
    gap: 10px;
  }
  
  .footer .seals img {
    display: block;
    
    height: 80px;
    width: auto;
  }
  
  .footer .seals a img {  
    transition: all 0.7s ease;
  }
  
  .footer .seals a:hover img {
    opacity: 80%;
  }
  
}



/* ----- Tablet specific ----- */
@media screen and (max-width: 999px) {
  
  .header .invisible-flex-item {
    display: none;
  }
  
  .header .logo img {
    height: 60px;
  }
  
}

@media screen and (max-width: 699px) {
  
  .footer .contact {
    flex-direction: column;
    align-items: center;
    
    gap: 10px;
  }
  
}

/* ----- Mobile specific ----- */
@media screen and (max-width: 499px) {
  
  .header {
    padding-inline: 0px;
  }
  
  .header .container {
    justify-content: center;
  }
  
  .header .logo img {
    height: 50px;
  }
  
  .header .backtosite {
    display: none;
  }
  
  .footer .contact a {
    font-size: 20px;
  }
  
}