@charset "UTF-8";

@import url("https://fonts.googleapis.com/css2?family=Bodoni+Moda:opsz,wght@6..96,700&family=Roboto+Condensed:wght@400;500;600;700&display=swap");

@media screen {
  
  .header a i,
  .footer a i {
    margin-right: 0px;
  }
  
  .main-be-area {
    background-color: #F7E4E0;
  }
  
  .header {
    box-sizing: border-box;
    
    background: #F7E4E0;
    -webkit-box-shadow: 0px 2px 2px 0px #0000000D;
    -moz-box-shadow: 0px 2px 2px 0px #0000000D;
    box-shadow: 0px 2px 2px 0px #0000000D;
    
    width: 100%;
    height: auto;
    padding-inline: 20px;
    padding-block: 15px;
    margin: 0;
  }
  
  .header .container {
    display: flex;
    align-items: center;
    
    width: 100%;
    max-width: 100%;
  }
  
  .header .invisible-flex-item {
    width: 152px;
    height: 100%;
  }
  
  .header .invisible-flex-item img {
    display: block;
  }
  
  .header .logo img {
    display: block;
    
    width: auto;
    height: 60px;
  }
  
  /* --- Back to Site Navigation --- */
  .header .backtosite a {
    background: #DD2149;
    color: #FFFFFF;
    
    font-size: 21px;
    line-height: 31.5px;
    text-align: center;
    text-decoration: none;
    text-indent: 0px;
    
    padding-inline: 25px;
    padding-block: 6px;
    border: 2px solid #DD2149;
    
    transition: all 0.3s ease-in-out;
  }
  
  .header .backtosite:hover a {
    background: #3A3A3A;
    border: 2px solid #3A3A3A;
  }
  
  .header .backtosite:active a {
    position: relative;
    top: 1px;
  }
  
  .footer {
    box-sizing: border-box;
    
    color: #F7E4E0;
    background: #333333;
    
    font-size: 23px;
    line-height: 23px;
    line-height: 18px;
    text-align: left;
    
    width: 100%;
    height: auto;
    left: 0;
    bottom: 0;
    padding-block: 50px;
    padding-inline: 15px;
  }
  
  .footer .container {
    display: flex;
    justify-content: space-between;
    
    width: 100%;
    max-width: 1650px;
  }
  
  .footer .footer-logo img {
    display: block;
    
    width: 200px;
    height: auto;
    margin-bottom: 15px;
  }
  
  .footer .address {
    line-height: 28px;
    
    margin-bottom: 23px;
  }
  
  .footer .contact {
    font-weight: 700;
    line-height: 45px;
    
    margin-bottom: 44px;
  }
  
  .footer .contact a {
    color: #F7E4E0;
    
    transition: all 0.3s ease-in-out;
  }
  
  .footer .contact a:hover {
    color: #FFFFFF;
  }
  
  .footer .socials {
    display: flex;
    align-items: center;
    
    gap: 20px;
  }
  
  .footer .socials a i {
    color: #FFFFFF;
    
    font-size: 50px;
    
    transition: all 0.3s ease-in-out;
  }
  
  .footer .socials a:hover i {
    color: #F7E4E0;
  }
  
}



/* ----- Tablet specific ----- */
@media screen and (max-width: 999px) {
  
  .header .invisible-flex-item {
    display: none;
  }
  
  .header .logo img {
    height: 50px;
  }
  
}



/* ----- Mobile specific ----- */
@media screen and (max-width: 499px) {
  
  .header .container {
    justify-content: center;
  }
  
  .header .logo img {
    height: 40px;
  }
  
  .header .backtosite {
    display: none;
  }
  
  .footer .container {
    align-items: center;
    text-align: center;
  }
  
}