@charset "UTF-8";

@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Old+Standard+TT:ital,wght@0,400;0,700;1,400&display=swap");

@media screen {
  
  .header a i,
  .footer a i {
    margin-right: 0px;
  }
  
  body {
    background-color: #9E9C96;
  }
  .main-be-area {
    background-color: transparent;
  }
  
  .header {
    background-color: #FFFFFF;
    
    padding-inline: 0px;
    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; 100%;
  }
  
  .header .logo {
    padding-block: 2.5px;
    padding-inline: 20px;
    border-right: 2px solid #F6F6F6;
  }
  
  .header .logo a {
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: content-box;
    
    height: 75px;
    padding-block: 10px;
    aspect-ratio: 1 / 1;
  }
  
  .header .logo img { 
    display: block;
    
    width: 75px;
    height: auto;
    
    transition: all 0.25s ease-in-out;
  }
  
  .header .logo:hover img {
    filter: invert(15%);
  }
  
  .header .backtosite {
    align-self: stretch;
  }
  
  .header .backtosite a {
    display: flex;
    justify-content: center;
    align-items: center;
    
    background-color: #B89E82;
    color: #FFFFFF;
    
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 22px;
    text-align: center;
    text-transform: uppercase;
    
    height: 100%;
    padding-inline: 20px;
    
    transition: all 0.3s ease;
  }
  
  .header .backtosite:hover a {
    background-color: #75CBD3;
  }
  
  .content::after {
    content: "";
    display: block;
    position: absolute;
    
    background: url("https://mcdesign.avvio.com/076/058/000/7500/upload/imgs/2x-pattern.png") #9E9C96;
    background-blend-mode: multiply;
    background-position: calc(50% + 3px) 100%;
    background-repeat: repeat-x;
    background-size: 198px auto;
    
    height: 300px;
    width: 100%;
    bottom: 0px;
    z-index: -1;
  }
  
  .footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    
    background-color: #474B50;
    color: #FFFFFF;
  }
  
  .footer .container {
    display: flex;
    justify-content: left;
    align-items: flex-start;
    
    gap: 30px;
    width: 100%;
    max-width: 1400px;
    padding-block: 40px;
    padding-inline: 45px;
  }
  
  .footer h3 {
    font-family: "Old Standard TT", "Montserrat", "Helvetica", helvetica, "Arial", arial, system-ui, sans-serif;
    font-size: 21px;
    font-weight: 400;
    letter-spacing: 1px;
    line-height: 28.875px;
    text-align: left;
    text-transform: uppercase;
    
    margin-top: 0px;
    margin-bottom: 20px;
  }
  
  .footer .footer-logo img {
    display: block;
    
    width: 280px;
    height: auto;
    
    transition: all 0.25s ease-in-out;
  }
  
  .footer .footer-logo:hover img {
    filter: invert(15%);
  }
  
  .footer .address {
    display: flex;
    flex-direction: column;
  }
  
  .footer .address p {
    font-size: 15px;
    font-weight: 400;
    line-height: 20.625px;
    text-align: left;
    text-transform: uppercase;
    
    margin-top: 0px;
    margin-bottom: 22px;
  }
  
  .footer .contact {
    display: flex;
    flex-direction: column;
  }
  
  .footer .contact p {
    margin-top: 0px;
    margin-bottom: 22px;
  }
  
  .footer .contact p > a {
    display: flex;
    align-items: center;
    
    color: #FFFFFF;
    
    gap: 4px;
    margin-bottom: 3px;
    
    transition: all 0.25s ease-in-out;
  }
  
  .footer .contact p > a:hover {
    color: #B89E82;
  }
  
  .footer .socials {
    display: flex;
    justify-content: left;
    align-items: center;
  }
  
  .footer .socials a {
    color: #FFFFFF;
    
    font-size: 22px;
    
    padding: 10px;
    
    transition: all 0.25s ease-in-out;
  }
  
  .footer .socials a:hover {
    color: #B89E82;
  }
  
  .footer::after {
    content: "";
    display: block;
    
    background: url("https://mcdesign.avvio.com/076/058/000/7500/upload/imgs/2x-pattern.png") #B89E82;
    background-blend-mode: multiply;
    background-position: calc(50% + 3px) 100%;
    background-repeat: repeat-x;
    background-size: 198px auto;
    
    height: 100px;
    width: 100%;
  }
  
}



/* ----- Tablet specific ----- */
@media screen and (max-width: 999px) {
  
  .footer .container {
    flex-direction: column;
    align-items: center;
    
    padding-inline: 15px;
  }
  
  .footer .footer-logo img {
    width: 250px;
  }
  
  .footer h3 {
    text-align: center;
  }
  
  .footer .address p {
    text-align: center;
  }
  
  .footer .contact p > a {
    justify-content: center;
  }
  
}



/* ----- Mobile specific ----- */
@media screen and (max-width: 499px) {
  
  .header {
    padding-inline: 0px;
  }
  
  .header .container {
    justify-content: center;
  }
  
  .header .logo {
    padding-inline: 0px;
    border-right: 0px solid #F6F6F6;
  }
  
  .header .backtosite {
    display: none;
  }
  
  .footer .footer-logo img {
    width: 210px;
  }
  
}