@charset "UTF-8";

@import url("https://fonts.googleapis.com/css2?family=Cormorant:ital,wght@0,300..700;1,300..700&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");

:root {
  --brand-pink: #F17288;
  --brand-light-pink: #F6A0AF;
  --brand-teal: #08525B;
  --brand-teal-dark: #063B42;
  --brand-white: #FFFFFF;
  --brand-grey: #404041;
  --brand-black: #000000;
  --brand-background: #D6D6D6;
  --brand-shadow: 0px 0px 10px 5px #00000009;
  
  --font-family-serif: "Cormorant", "Georgia", georgia, serif, system-ui;
  
  --custom-transition: all 0.3s ease-in-out;
  
  --img-ratio-rate-primary: 4 / 3;
  --img-ratio-rate-primary-mobile: 4 / 3;
  --img-ratio-rate-secondary: 4 / 3;
  --img-ratio-rate-secondary-mobile: 4 / 3;
  --img-ratio-mda-secondary-rate: 4 / 3;
  --img-ratio-mda-secondary-rate-mobile: 4 / 3;
}

@media screen {
  
  body {
    background-color: var(--brand-background);
  }
  
  .main-be-area {
    background-color: transparent;
  }
  
  .header a i,
  .backtotop a i,
  .footer a i {
    margin-right: 0px;
  }
  
  .header {
    display: flex;
    justify-content: center;
    align-items: center;
    
    background-color: var(--brand-white);
    box-shadow: var(--brand-shadow);
    
    padding-block: 0px; 
    /* border-bottom: 1px solid var(--border-default); */
    z-index: 2;
  }
  
  .header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    
    width: min(100%, 1200px);
    padding-inline: var(--spacing-3x);
  }
  
  .header .invisible-flex-item {
    display: flex;
    align-self: stretch;
    
    height: 100%;
    width: 122.67px;
  }
  
  .header .logo {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    
    background-color: var(--brand-white);
    box-shadow: var(--brand-shadow);
    
    min-width: 240px;
    left: calc(50% - (240px / 2));
    top: 0px;
  }
  
  .header .logo a {
    display: flex;
    justify-content: center;
    align-items: center;
    
    padding-block: 10px;
    padding-inline: 30px;
  }
  
  .header .logo img {
    display: block;
    
    height: 70px;
    width: auto;
    
    transition: var(--custom-transition);
  }
  
  .header .logo:hover img {
    opacity: 80%;
  }
  
  .header .backtosite {
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
  
  .header .backtosite a {
    display: flex;
    align-items: center;
    justify-content: center;
    
    color: var(--brand-grey);
    background-color: transparent;
    
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    text-align: center;
    text-indent: 0px;
    text-transform: uppercase;
    
    min-height: 70px;
    padding-inline: 9px;
    padding-block: 24px;
    
    transition: var(--custom-transition);
  }
  
  .header .backtosite a:hover {
    background-color: var(--brand-pink);
    color: var(--brand-white);
  }
  
  .header .backtosite a:active {
    position: relative;
    top: 1px;
  }
  
  .button--branded {background-color: var(--brand-teal);}
  .button--branded:hover {background-color: var(--brand-teal-dark);}
  
  .footer {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    
    background-color: var(--brand-grey);
    color: var(--brand-white);
    
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 2px;
    line-height: 24px;
    text-align: center;
    
    width: 100%;
    padding: 20px;
  }
  
  .footer .container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    
    gap: 30px;
  }
  
  .five-element-footer > * {
    flex-grow: 1;
  }
  
  .five-element-footer > *:first-child,
  .five-element-footer > *:last-child {
    grid-column: 1 / span 3;
  }
  
  .footer .backtotop {
    display: flex;
    justify-content: center;
    align-items: center;
    
    font-size: 16px;
    font-weight: 900;
    line-height: 16px;
    text-align: center;
  }
  
  .footer .backtotop a i {
    transition: var(--custom-transition);
  }
  
  .footer .backtotop:hover a i {
    color: var(--brand-pink);
  }
  
  .footer .footer-logo {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .footer .footer-logo img {
    display: block;
    
    width: 175px;
    height: auto;
    
    transition: var(--custom-transition);
  }
  
  .footer .footer-logo:hover img {
    opacity: 80%;
  }
  
  .footer .center {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    
    gap: 10px;
  }
  
  .footer .address {
    text-align: center;
  }
  
  .footer .contact {
    text-align: center;
  }
  
  .footer .contact a {
    border-bottom: 1px solid transparent;
    
    transition: var(--custom-transition);
  }
  
  .footer .contact a:hover {
    border-bottom: 1px solid var(--brand-white);
  }
  
  .footer .socials {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    
    row-gap: 10px;
    column-gap: 20px;
  }
  
  .footer .socials a {
    color: var(--brand-white);
    
    font-size: 21.6px;
    
    transition: var(--custom-transition);
  }
  
  .footer .socials a:hover {
    color: var(--brand-pink);
  }
  
  .footer .socials a svg {
    display: block;
    
    fill: var(--brand-white);
    
    width: 24.21px;
    
    transition: var(--custom-transition);
  }
  
  .footer .socials a:hover svg {
    fill: var(--brand-pink);
  }
  
  .footer .socials a:last-child {
    display: flex;
    justify-content: center;
    align-items: center;
    
    flex-basis: 100%;
  }
  
  .footer .socials a img {
    display: block;
    
    width: 151px;
    height: auto;
    
    transition: var(--custom-transition);
  }
  
  .footer .socials a:hover img {
    opacity: 80%;
  }
  
  .footer small {
    display: flex;
    justify-content: center;
    align-items: center;
    align-self: stretch;
    
    font-size: 14px;
    font-weight: 300;
    line-height: 21px;
    
    padding-top: 10px;
  }
  
  .footer small a {
    color: var(--brand-white);
    
    border-bottom: 1px solid transparent;
    
    transition: var(--custom-transition);
  }
  
  .footer small a:hover {
    border-bottom: 1px solid var(--brand-white);
  }
  
}



@media screen and (max-width: 1099px) {
  
  .header .logo {
    position: static;
    
    box-shadow: unset;
  }
  
  .header .container {
    justify-content: space-between;
    
    padding-inline: 20px;
  }
  
  .footer .socials {
    gap: 10px;
  }
  
}



/* ----- Tablet specific ----- */
@media screen and (max-width: 999px) {
  
  .header .container {
    padding-left: 0px;
  }
  
  .header .invisible-flex-item {
    display: none;
  }
  
  .header .logo {
    min-width: auto;
  }
  
  .header .logo img {
    height: 65px;
  }
  
  .header .backtosite {
    margin-left: 0px;
  }
  
  .footer .footer-logo img {
    height: 130px;
  }
  
  .footer .socials {
    font-size: 26.4px;
  }
  
}



@media screen and (max-width: 799px) {
  
  .footer .container {
    display: flex;
    flex-direction: column;
    
    gap: 10px;
  }
  
  .footer .footer-logo {
    justify-content: center;
    
    max-width: 100%;
  }
  
  .footer .footer-logo img {
    height: 120px;
  }
  
  .footer .center {
    max-width: 100%;
  }
  
  .footer .socials {
    justify-content: center;
    
    max-width: 100%;
    padding-block: 10px;
  }
  
}



/* ----- Mobile specific ----- */
@media screen and (max-width: 499px) {
  
  .header .container {
    justify-content: center;
    
    padding-right: 0px;
  }
  
  .header .logo img {
    height: 60px;
  }
  
  .header .backtosite {
    display: none;
  }
  
  .footer {
    font-size: 14px;
  }
  
  .footer .footer-logo img {
    height: 100px;
  }
  
  .footer .socials {
    font-size: 24px;
  }
  
}