@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 {
  
  .header a i,
  .footer a i {
    margin-right: 0px;
  }
  
  .main-be-area {
    background-color: #F0F1F3;
  }
  
  .header {
    background-color: #FFFFFF;
    box-shadow: 0px 0px 5px #0000006B;
    
    padding: 10px;
    z-index: 2;
  }
  
  .header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    
    width: 100%;
  }
  
  .header .logo a {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .header .logo img {
    display: block;

    height: 90px;
    width: auto;
    
    transition: all 0.8s ease-in-out;
  }

  .header .logo img:hover {
    filter: invert(25%);
  }



  /* --- Back to Site button --- */
  .header .backtosite {
    position: static;
  }

  .header .backtosite a {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    
    color: #FFFFFF;
    background-color: #AB905F;
    
    font-size: 18px;
    font-weight: 500;
    line-height: 27px;
    text-align: center;
    text-decoration: none;
    text-indent: 0px;
    text-transform: uppercase;
    
    min-width: 210px;
    min-height: 50px;
    
    transition: all 0.8s ease-in-out;
  }

  .header .backtosite a:hover {
    background-color: #520C63;
  }

  .header .backtosite:active a {
    top: 1px;
  }
  
  .footer {
    background-color: #FFFFFF;
    color: #000000;
    box-shadow: 0px -6px 12px 2px #00000026;
    
    padding-top: 40px;
    padding-bottom: 40px;
  }
  
  .footer .container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    
    width: 100%;
  }
  
  .footer .left {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    
    gap: 20px;
    width: 50%;
    padding-inline: 15px;
    padding-top: 10px;
  }
  
  .footer .footer-logo a {
    display: flex;
    justify-content: right;
  }
  
  .footer .footer-logo a img {
    display: block;
    
    height: 100px;
    width: auto;
    
    transition: all 0.8s ease;
  }
  
  .footer .footer-logo a:hover img {
    filter: invert(25%);
  }
  
  .footer .socials {
    display: flex;
    justify-content: space-around;
    align-items: center;
    
    gap: 17px;
    width: 100%;
    max-width: 273px;
    padding-block: 10px;
  }
  
  .footer .socials a {
    color: #AB905F;
    
    font-size: 36.48px;
    
    transition: all 0.8s ease;
  }
  
  .footer .socials a:hover {
    color: #520C63;
  }
  
  .footer .socials a svg {
    fill: #AB905F;
    
    width: 36.48px;
    
    transition: all 0.8s ease;
  }
  
  .footer .socials a:hover svg {
    fill: #520C63;
  }
  
  .footer .right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    
    text-align: left;
    
    width: 50%;
    padding-left: 40px;
    padding-right: 15px;
    padding-top: 20px;
    padding-bottom: 20px;
  }
  
  .footer .address a {
    color: #000000;
    
    font-size: 16.8px;
    font-weight: 300;
    letter-spacing: 0.8px;
    line-height: 25.2px;
    text-align: left;
    
    transition: all 0.8s ease;
  }
  
  .footer .address a:hover {
    color: #AB905F;
  }
  
  .footer .contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    
    padding-bottom: 25.2px;
  }
  
  .footer .contact p {
    font-size: 16.8px;
    font-weight: 300;
    letter-spacing: 0.8px;
    line-height: 25.2px;
    text-align: left;
    
    margin-block: 0px;
  }
  
  .footer .contact a {
    color: #000000;
    
    transition: all 0.8s ease;
  }
  
  .footer .contact a:hover {
    color: #AB905F;
  }
  
  .footer small {
    color: #AB905F;
    
    font-size: 16.8px;
    font-weight: 300;
    line-height: 25.2px;
    text-align: left;
    
    padding-top: 20px;
  }
  
  .footer small a {
    color: #B09869;
    
    transition: all 0.8s ease;
  }
  
  .footer small a:hover {
    color: #520C63;
  }
  
}



/* ----- Tablet specific ----- */
@media screen and (max-width: 999px) {
  
  .header .logo img {
    height: 70px;
  }
  
  .header .backtosite a {
    font-size: 14px;
    
    min-width: 130px;
  }
  
  .footer .container {
    gap: 30px;
  }
  
  .footer .left {
    padding-inline: 0px;
  }
  
  .footer .footer-logo a img {
    height: 65px;
  }
  
  .footer .socials a {
    font-size: 28px;
  }
  
  .footer .socials a svg {
    width: 28px;
  }
  
  .footer .right {
    padding-inline: 0px;
  }
  
  .footer .address a {
    font-size: 14px;
  }
  
  .footer .contact p {
    font-size: 14px;
  }
  
  .footer small {
    font-size: 14px;
    
    padding-top: 0px;
  }
}



/* ----- Mobile specific ----- */
@media screen and (max-width: 499px) {
  
  .header .container {
    justify-content: center;
  }
  
  .header .logo img {
    height: 60px;
  }
  
  .header .backtosite {
    display: none;
  }
  
  .footer .container {
    flex-direction: column;
  }
  
  .footer .left {
    align-items: center;
    
    width: 100%;
    padding-top: 0px;
  }
  
  .footer .right {
    align-items: center;
    
    text-align: center;
    
    width: 100%;
    gap: 15px;
    padding-top: 0px;
    padding-bottom: 0px;
  }
  
  .footer .contact {
    align-items: center;
    
    padding-bottom: 0px;
  }
  
}