@charset "UTF-8";

@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Noto+Serif:ital,wght@0,100..900;1,100..900&display=swap");

@media screen {
  
  .header a i,
  .footer a i {
    margin-right: 0px;
  }
  
  .main-be-area {
    background-color: transparent;
  }
  
  .header {
    background-color: #FFFFFF;
    box-shadow: 0px 0px 2px 2px #0000002B;
    
    padding-inline: 20px;
    padding-block: 10px;
    z-index: 4;
  }
  
  .header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    
    width: 100%;
  }
  
  .header .logo img {
    display: block;
    
    height: 100px;
    width: auto;
    
    transition: all 0.2s ease;
  }
  
  .header .logo:hover img {
    filter: grayscale(30%);
  }
  
  .header .backtosite a {
    display: flex;
    justify-content: center;
    align-items: center;
    
    background-color: #AF2B50;
    color: #FFFFFF;
    
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 1px;
    line-height: 27px;
    text-align: center;
    text-transform: uppercase;
    
    min-width: 260px;
    padding-block: 8px;
    padding-inline: 0px;
    border: 1px solid #FFFFFF;
    
    transition: all 0.2s ease;
  }
  
  .header .backtosite:hover a {
    background-color: var(--brand-hovered);
  }
  
  .footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    
    background-color: #EDEDED;
    color: #2A2728;
    
    font-size: 17px;
    font-weight: 300;
    line-height: 25.5px;
    text-align: left;
    
    gap: 60px; /* 20px + 40px, from main site */
    padding-block: 40px;
  }
  
  .footer .container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    
    gap: 45px; /* 15px + 30px, from main site*/
    padding-top: 10px;
    padding-bottom: 20px;
    padding-inline: 40px;
  }
  
  .footer .left {
    display: flex;
    flex-direction: column;
    align-items: center;
    
    gap: 20px;
  }
  
  .footer .footer-logo {
    display: flex;
    justify-content: right;
    align-items: center;
    
    width: 100%;
  }
  
  .footer .footer-logo img {
    display: block;
    
    height: 140px;
    width: auto;
    /* margin-right: -40px; */
    
    transition: all 0.2s ease;
  }
  
  .footer .footer-logo:hover img {
    filter: grayscale(30%);
  }
  
  .footer .socials {
    display: flex;
    justify-content: right;
    align-items: center;
    
    width: 100%;
    gap: 32px;
  }
  
  .footer .socials a i {
    color: #AF2B50;
    
    font-size: 28px;
    line-height: 28px;
    
    transition: all 0.2s ease;
  }
  
  .footer .socials a:hover i {
    color: #AF2B50DD;
  }
  
  .footer .socials a img {
    display: block;
    
    height: 22px;
    width: auto;
    
    transition: all 0.2s ease;
  }
  
  .footer .socials a:hover img {
    filter: brightness(88%);
  }
  
  .footer .right {
    display: flex;
    flex-direction: column;
    align-items: center;
    
    gap: 23px;
    padding-top: 14px;
  }
  
  .footer .address {
    font-weight: 400;
    text-align: left;
    
    width: 100%;
  }
  
  .footer .contact {
    display: flex;
    flex-direction: column;
    
    width: 100%;
  }
  
  .footer .contact p {
    color: #AF2B50;
    
    font-weight: 300;
    text-align: left;
    
    margin-block: 0px;
  }
  
  .footer .contact a {
    color: #2A2728;
    
    font-weight: 400;
    
    transition: all 0.2s ease;
  }
  
  .footer .contact a:hover {
    color: #AF2B50DD;
  }
  
  .footer small {
    color: #AF2B50;
    
    font-size: 17px;
    font-weight: 400;
    line-height: 25.5px;
    text-align: left;
    text-transform: capitalize;
    
    width: 100%;
    padding-top: 20px;
  }
  
  .footer small a {
    color: #AF2B50;
    
    transition: all 0.2s ease;
  }
  
  .footer small a:hover {
    color: #AF2B50DD;
  }
  
  .footer .sister-sites {
    display: flex;
    justify-content: center;
    align-items: center;
    
    gap: 40px;
  }
  
  .footer .sister-sites a img {
    display: block;
    
    height: 80px;
    width: auto;
    
    transition: all 0.2s ease;
  }
  
  .footer .sister-sites a:hover img {
    filter: grayscale(30%);
  }
  
}





/* ----- Tablet specific ----- */
@media screen and (max-width: 999px) {
  
  .header .backtosite a {
    min-width: 200px;
  }
  
  .footer .sister-sites {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-content: space-around;
    
    width: 100%;
  }
  
  .footer .sister-sites a {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
}





/* ----- Mobile specific ----- */
@media screen and (max-width: 499px) {
  
  .header {
    padding-inline: 0px;
  }
  
  .header .container {
    justify-content: center;
  }
  
  .header .backtosite {
    display: none;
  }
  
  .footer .container {
    flex-direction: column;
    
    width: 100%;
    padding-block: 0px;
    padding-inline: 0px;
  }
  
  .footer .left {
    width: 100%;
  }
  
  .footer .footer-logo {
    justify-content: center;
  }
  
  .footer .footer-logo img {
    /* margin-right: 0px; */
  }
  
  .footer .socials {
    justify-content: center;
  }
  
  .footer .right {
    width: 100%;
    padding-top: 0px;
  }
  
  .footer .address {
    text-align: center;
  }
  
  .footer .contact p {
    text-align: center;
  }
  
  .footer small {
    text-align: center;
    
    padding-top: 0px;
  }
  
  .footer .sister-sites {
    grid-template-columns: 1fr;
  }
  
}