@charset "UTF-8";

@import url("https://fonts.googleapis.com/css2?family=Puritan:ital,wght@0,400;0,700;1,400;1,700&display=swap");

:root {
  --border-radius-1x: 10px;
}

@media screen {
  
  .card-information__image-area {
    display: none;
  }
  #menuoptionsdiv_options > a[href*="vouchers"] {
    display: none;
  }
  
  .header a i,
  .footer a i {
    margin-right: 0px;
  }
  
  .main-be-area {
    background-color: #E5F0F2;
  }
  
  .header {
    display: flex;
    justify-content: center;
    align-items: center;
    
    background-color: #231F20;
    
    padding-block: 28px;
    padding-inline: 110px;
    border-bottom: 1px solid #FFFFFF80;
  }
  
  .header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    
    gap: 15px;
    width: 100%;
    padding-inline: 15px;
  }
  
  .header .invisible-flex-item {
    display: flex;
    align-self: stretch;
    
    width: 184px;
    height: 100%;
  }
  
  .header .logo img {
    display: block;
    
    height: 110px;
    width: auto;
    
    transition: all 0.5s ease-in-out;
  }
  
  .header .logo:hover img {
    filter: invert(20%);
  }
  
  .header .backtosite a {
    display: flex;
    justify-content: center;
    align-items: center;
    
    background-color: #A89968;
    color: #3A2E07;
    
    font-size: 13.5px;
    font-weight: 600;
    letter-spacing: 1.08px;
    line-height: 43.5px;
    text-align: center;
    text-transform: uppercase;
    
    min-height: 60px;
    min-width: 184px;
    padding-block: 0px;
    padding-inline: 15px;
    border: 1px solid #3A2E07;
    border-radius: var(--border-radius-1x);
    
    transition: all 0.5s ease-in-out;
  }
  
  .header .backtosite:hover a {
    background-color: #F6E4CB;
  }
  
  .footer {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    
    background-color: #231F20;
    background-image: url("https://mcdesign.avvio.com/028/059/000/7580/upload/imgs/footer-pattern.svg");
    color: #FFFFFF;
    
    font-size: 16.5px;
    font-weight: 400;
    letter-spacing: 0.495px;
    line-height: 30px;
    
    gap: 70px;
    padding-top: 112px;
  }
  
  .footer .container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    
    gap: 135px;
    width: 100%;
    max-width: 1700px;
    padding-inline: 30px;
  }
  
  .footer .footer-logo {
    display: flex;
    justify-content: center;
    align-items: flex-start;
  }
  
  .footer .footer-logo img {
    display: block;
    
    height: 179px;
    width: auto;
    
    transition: all 0.5s ease-in-out;
  }
  
  .footer .footer-logo:hover img {
    filter: invert(20%);
  }
  
  .footer .center {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    
    gap: 44px;
  }
  
  .footer .address {
    text-align: left;
  }
  
  .footer .socials {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    
    gap: 20px;
  }
  
  .footer .socials a {
    display: flex;
    justify-content: center;
    align-items: center;
    
    background-color: #A89968;
    color: #231F20;
    
    font-size: 20.25px;
    
    width: 45px;
    aspect-ratio: 1 / 1;
    
    transition: all 0.5s ease-in-out;
  }
  
  .footer .socials a:hover {
    background-color: #FFFFFF;
    color: #0F5063;
  }
  
  .footer .contact {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    
    gap: 10px;
  }
  
  .footer .contact a {
    color: #FFFFFF;
    
    transition: all 0.5s ease-in-out;
  }
  
  .footer .contact a:hover {
    color: #A89968;
  }
  
  .footer small {
    background-color: #000000;
    color: #FFFFFF;
    
    font-size: 12px;
    line-height: 12px;
    text-align: center;
    
    width: 100%;
    padding-block: 30px;
  }
  
  .footer small a {
    color: #FFFFFF;
    
    transition: all 0.5s ease-in-out;
  }
  
  .footer small a:hover {
    color: #A89968;
  }
  
}




@media screen and (max-width: 1299px) {
  
  .header {
    padding-inline: 55px;
  }
  
  .header .logo img {
    height: 100px;
  }
  
  .header .backtosite a {
    min-height: 55px;
    min-width: 164px
  }
  
  .footer .container {
    justify-content: space-between;
    
    gap: 0px;
  }
  
  .footer .footer-logo img {
    height: 120px;
  }
  
}


/* ----- Tablet specific ----- */
@media screen and (max-width: 999px) {
  
  .header {
    padding-inline: 28px;
  }
  
  .header .invisible-flex-item {
    display: none;
  }
  
  .header .logo img {
    height: 90px;
  }
  
  .header .backtosite a {
    min-height: 50px;
    min-width: 144px
  }
  
  .footer .container {
    flex-direction: column;
    align-items: center;
    
    gap: 20px;
  }
  
  .footer .center {
    align-items: center;
    
    gap: 20px;
  }
  
  .footer .address {
    text-align: center;
  }
  
  .footer .socials {
    gap: 15px;
  }
  
  .footer .contact {
    align-items: center;
  }
  
}



/* ----- Mobile specific ----- */
@media screen and (max-width: 499px) {
  
  .header {
    padding-inline: 0px;
  }
  
  .header .container {
    justify-content: center;
  }
  
  .header .logo img {
    height: 80px;
  }
  
  .header .backtosite {
    display: none;
  }
  
  .footer .footer-logo img {
    height: 100px;
  }
  
  .footer .socials a {
    font-size: 17.25px;
    width: 35px;
  }
  
}

@media screen and (max-width: 299px) {
  
  .header .logo img {
    height: 60px;
  }
  
}