@charset "UTF-8";

@import url("");

:root {
  --color-brand-1: #000000;
  --color-brand-2: #A3915C;
  --color-brand-3: #FAF9F7;
  --color-brand-4: #424242;
  --color-black: #000000;
  --color-white: #FFFFFF;
  --font-family-1: "Playfair Display", serif;
}

@media screen {
  
  .header a i,
  .footer a i {
    margin-right: 0px;
  }
  
  .main-be-area {
    background-color: var(--color-white);
  }
  
  .header {
    background-color: var(--color-white);
    
    min-height: 110px;
  }
  
  .header.brand {
    background-color: var(--color-brand-3);
    color: var(--color-brand-2);
  }
  
  .header .main-width {
    display: flex;
    justify-content: space-between;
    align-items: center;
    
    min-height: 80px;
    margin-inline: auto;
  }
  
  .header .main-width > img {
    align-self: center;
  }
  
  .main-width .logo {
    height: 80px;
    width: auto;
  }
  
  .main-width .logo a {
    display: block;
    
    width: 100%;
    height: 100%;
  }
  
  .header .main-width .backtosite {
    display: flex;
    justify-content: center;
    align-items: center;
    
    min-width: 190px;
    min-height: 60px;
  }
  
  .header .main-width .backtosite a {
    display: flex;
    justify-content: center;
    align-items: center;
    
    background-color: var(--color-brand-2);
    color: var(--color-white);
    
    font-size: 18px;
    font-weight: 600;
    /* letter-spacing: 1px; */
    text-align: center;
    text-transform: uppercase;
    
    width: 100%;
    height: 100%;
    padding: 15px;
    border-radius: 8px;
    
    transition: background-color 0.5s ease;
  }
  
  .header .main-width .backtosite a:hover {
    background-color: var(--color-brand-1);
  }
  
  .header img {
    height: 100%;
    width: 100%;
  }
  
  .footer {
    display: flex;
    align-items: center;
    
    border-top: 0px solid transparent;
  }
  
  .footer-block-3 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    
    width: 100%;
    padding-block: 22px;
    padding-inline: 10%;
  }
  
  .footer-block-3-link a {
    background-color: transparent;
    
    padding-block: 10px;
    padding-inline: 20px;
    border-color: var(--color-white);
    border-radius: 50px;
    
    transition: color 0.5s ease, border-color 0.5s ease;
  }
  
  .footer-block-3-link a:hover {
    background-color: transparent;
    color: var(--color-black);
    
    border-color: var(--color-black);
  }
  
  .footer-block-3-rights {
    font-weight: 200;
    letter-spacing: 1px;
  }
  
  .footer-row-1-header {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  
  .footer-row-1-title {
    color: var(--color-white);
    
    font-family: var(--font-family-1);
    font-size: 14px;
    text-align: center;
    text-transform: uppercase;
  }
  
  .footer-row-1-divider {
    display: block;
    
    background-color: var(--color-brand-2);
    
    height: 3px;
    width: 100px;
  }
  
  .footer-row-1-contacts {
    width: 100%;
  }
  
  .footer-row-1 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    
    background-color: var(--color-brand-1);
    
    width: 100%;
    padding-block: 50px;
  }
  
  .footer-row-1-items {
    padding-inline-start: 0;
  }
  
  .footer-row-1-item {
    display: flex;
    justify-content: center;
    align-items: center;
    
    padding: 5px;
  }
  
  .footer-block-3-rights a {
    font-weight: 600;
    
    padding-block: 10px;
    padding-inline: 0;
    
    transition: color 0.5s ease;
  }
  
  .footer-block-3-rights a:hover {
    color: var(--color-brand-1);
  }
  
  .footer-item-links-icon svg {
    width: 15px;
    height: 15px;
  }
  
  .footer-item-links-icon svg.e-fab-whatsapp {
    width: 20px;
    height: 20px;
  }
  
  .footer-item-links-icon svg path{
    fill: var(--color-white);
  }
  
  .footer .footer-row-1 .footer-row-1-contacts > ul > li > a {
    color: var(--color-white);
    
    padding: 10px;
    
    transition: color 0.5s ease;
  }
  
  .footer .footer-row-1 .footer-row-1-contacts > ul > li > a:hover {
    color: var(--color-brand-2);
  }
  
}



@media screen and (max-width: 1199px) {
  
  .header.brand {
    padding-block: 0px;
    padding-inline: 10%;
  }
  
}



/* ----- Tablet specific ----- */
@media screen and (max-width: 991px) {
  
  .header .main-width .backtosite {
    display: none;
  }
  
  .header .main-width {
    justify-content: center;
  }
  
  .footer-row-1 {
    padding: 10px;
  }
  
  .footer-block-3 {
    justify-content: center;
    flex-direction: column;
  }
  
  .footer-block-3-rights {
    line-height: 24px;
    text-align: center;
    
    margin-top: 15px;
  }
  
}



/* ----- Mobile specific ----- */
@media screen and (max-width: 499px) {
  
}