@charset "UTF-8";

@import url("https://fonts.googleapis.com/css2?family=Frank+Ruhl+Libre:wght@300..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");

:root {
  --brand-color-2: #5DADCD;
  
  --border-radius-1x: 0px;
  
  --custom-transition: all 0.35s linear;
}

@media screen {
  
  .header a i,
  .footer a i {
    margin-right: 0px;
  }
  
  .main-be-area {
    background-color: #F0F1F3;
  }
  
  /* .button--branded,
  .button--branded * {
    text-transform: uppercase;
  } */
  
  .header {
    display: flex;
    justify-content: center;
    align-items: center;
    
    background-color: #CBD5DEED;
    
    padding-block: 10px;
    border-bottom: 1px solid var(--border-default);
  }
  
  .header .container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-content: space-between;
    align-items: center;
    
    width: 100%;
    max-width: 1200px;
    padding-inline: 10px;
  }
  
  .header .invisible-flex-item {
    display: flex;
    align-items: stretch;
    
    width; 150px;
    height: 100%;
  }
  
  .header .logo {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .header .logo a img {
    display: block;
    
    width: 150px;
    height: auto;
    
    transition: var(--custom-transition);
  }
  
  .header .logo a:hover img {
    opacity: 90%;
  }
  
  .header .backtosite {
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
  
  .header .backtosite a {
    display: flex;
    justify-content: center;
    align-items: center;
    
    background-color: var(--brand-color);
    color: #FFFFFF;
    
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    text-align: center;
    text-transform: uppercase;
    
    padding-block: 7px;
    padding-inline: 15px;
    
    transition: var(--custom-transition);
  }
  
  .header .backtosite:hover a {
    background-color: var(--brand-color-2);
  }
  
  h1, h2, h3, h4, h5, h6,
  .header1, .header2, .header3, .header4, .header5, .header6,
  .heading-1, .heading-2, .heading-3, .heading-4, .heading-5, .heading-6 {
    font-family: "Frank Ruhl Libre", "Georgia", georgia, system-ui, serif;
  }
  
  .footer {
    display: flex;
    justify-content: center;
    align-items: center;
    
    background-attachment: scroll;
    background-clip: border-box;
    background-color: #00000000;
    background-origin: padding-box;
    background-position: center;
    background-repeat: no-repeat;
    background-size: auto;
    color: var(--brand-color);
    
    font-size: 14px;
    font-weight: 400;
    line-height: 12px;
    text-align: center;
    
    padding-top: 40px;
    padding-bottom: 70px;
  }
  
  .footer .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    
    gap: 14px;
  }
  
  .footer .footer-logo img {
    display: block;
    
    height: 80px;
    width: auto;
    
    transition: var(--custom-transition);
  }
  
  .footer .footer-logo:hover img {
    opacity: 90%;
  }
  
  .footer .socials {
    display: flex;
    justify-content: center;
    align-items: center;
    
    gap: 8px;
  }
  
  .footer .socials a {
    color: #000000;
    
    font-size: 25px;
    
    transition: var(--custom-transition);
  }
  
  .footer .socials a:hover {
    color: var(--brand-color-2);
  }
  
  .footer .address {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    
    gap: 10px;
  }
  
  .footer .address span {
    font-weight: 700;
  }
  
  .footer .contact {
    display: flex;
    justify-content: center;
    align-items: center;
    
    font-weight: 700;
    
    gap: 5px;
  }
  
  .footer .contact p {
    display: flex;
    justify-content: center;
    align-items: center;
    
    gap: 5px;
    margin-block: 0px;
  }
  
  .footer .contact span {
    font-weight: 400;
  }
  
  .footer .contact a {
    color: var(--brand-color);
    
    font-weight: 400;
    
    transition: var(--custom-transition);
  }
  
  .footer .contact a:hover {
    color: var(--brand-color-2);
  }
  
  .footer .links {
    display: flex;
    justify-content: center;
    align-items: center;
    
    gap: 28px;
    padding-block: 14px;
  }
  
  .footer .links a {
    color: var(--brand-color);
    
    font-family: "Montserrat", var(--font-stack-sans-serif);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    line-height: 12px;
    text-transform: uppercase;
    
    transition: var(--custom-transition);
  }
  
  .footer .links a:hover {
    color: var(--brand-color-2);
  }
  
  .footer small {
    color: #B7A276;
    
    font-size: 14px;
    font-weight: 600;
    line-height: 20.3px;
    text-align: center;
    text-transform: lowercase;
  }
  
  .footer small a {
    color: #B7A276;
    
    transition: var(--custom-transition);
  }
  
  .footer small a:hover {
    color: var(--brand-color);
  }
  
}



/* ----- Tablet specific ----- */
@media screen and (max-width: 999px) {
  
  .header .container {
    grid-template-columns: repeat(2, auto);
  }
  
  .header .invisible-flex-item {
    display: none;
  }
  
  .footer .links {
    flex-wrap: wrap;
  }
  
}



/* ----- Mobile specific ----- */
@media screen and (max-width: 499px) {
  
  .header .container {
    display: flex;
    justify-content: center;
  }
  
  .header .backtosite {
    display: none;
  }
  
  .footer .links {
    display: none;
  }
  
  .footer .contact {
    flex-direction: column;
  }
  
  .footer .contact span {
    display: none;
  }
  
}