@charset "UTF-8";

@import url("https://fonts.googleapis.com/css2?family=Literata:wght@200;300;400&family=Mr+De+Haviland&family=Red+Hat+Text&display=swap");

:root {
  --brand-blue: #007597;
  --brand-white: #FFFFFF;
  --brand-grey: #545551;
  --brand-black: #000000;
  --brand-background: #F7F7F7;
  --brand-shadow: 0px 3px 20px -10px var(--brand-grey);
  
  --font-family-serif: "Literata", "Georgia", georgia, serif, system-ui;
  
  --custom-transition: all 0.8s ease;
  
  --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 {

   /* --- aSave logo --- */
  #login_container_not_logged_in {
    background-color: transparent;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 80%;
    background-color: var(--brand-background);

    
    min-width: 110px;
    
    transition: var(--custom-transition);
  }
  
  #login_container_not_logged_in:hover {
    background-color: var(--brand-blue);
  }
  
  #login_container_not_logged_in .button--primary {
    color: transparent;
    background-color: transparent;
    
    font-size: 0px;
    
    width: 100%;
  }
  
  .header a i,
  .backtotop a i,
  .footer a i {
    margin-right: 0px;
  }
  
  .main-be-area {
    background-color: transparent;
  }
  
  .header {
    display: flex;
    justify-content: center;
    align-items: center;
    
    background-color: var(--brand-white);
    color: var(--brand-grey);
    box-shadow: var(--brand-shadow);
    
    padding-block: 23px;
    border-bottom: 1px solid var(--border-default);
    z-index: 4;
  }
  
  .header .container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-content: space-between;
    align-items: center;
    
    width: 100%;
    padding-inline: 23px;
  }
  
  .header .invisible-flex-item {
    display: flex;
    align-self: stretch;
    
    width: 150px;
    height: 100%;
  }
  
  .header .logo {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .header .logo a img {
    display: block;
    
    width: 200px;
    height: auto;
    
    transition: var(--custom-transition);
  }
  
  .header .logo a:hover img {
    opacity: 80%;
  }
  
  .header .backtosite {
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
  
  .header .backtosite a {
    display: flex;
    justify-content: center;
    align-items: center;
    
    background-color: transparent;
    color: var(--brand-grey);
    
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 2px;
    line-height: 24px;
    text-align: center;
    text-transform: uppercase;
    
    padding-block: 10px;
    padding-inline: 50px;
    border: 1px solid var(--brand-color);
    
    transition: var(--custom-transition);
  }
  
  .header .backtosite:hover a {
    background-color: var(--brand-color);
    color: var(--brand-white);
  }
  
  h1, h2, h3, h4, h5, h6,
  .header1, .header2, .header3, .header4, .header5, .header6,
  .heading-1, .heading-2, .heading-3, .heading-4, .heading-5, .heading-6 {
    font-family: var(--font-family-serif);
  }
  
  .footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    
    background-color: var(--brand-background);
    color: var(--brand-black);
    
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-align: center;
    
    row-gap: 40px;
    padding-bottom: 60px;
    margin-top: calc(116px / 2);
  }
  
  .footer .backtotop {
    position: absolute;
    
    top: 20px;
    left: 20px;
  }
  
  .footer .backtotop a {
    display: flex;
    justify-content: center;
    align-items: center;
    
    background-color: transparent;
    color: var(--brand-grey);
    
    font-size: 24px;
    
    min-width: 70px;
    aspect-ratio: 7 / 6;
    padding: 15px;
    border: 1px solid var(--brand-white);
    
    transition: var(--custom-transition);
  }
  
  .footer .backtotop a:hover {
    background-color: var(--brand-color);
    color: var(--brand-white);
    
    border-color: var(--brand-color);
  }
  
  .footer .footer-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    
    margin-top: calc((116px / 2) * -1);
  }
  
  .footer .footer-logo img {
    display: block;
    
    width: 116px;
    height: auto;
    
    transition: var(--custom-transition);
  }
  
  .footer .footer-logo:hover img {
    opacity: 80%;
  }
  
  .footer .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    
    width: min(100%, 1340px);
    column-gap: 30px;
    row-gap: 40px;
    padding-inline: 15px;
  }
  
  .footer h3 {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    
    color: var(--brand-grey);
    
    font-size: 24px;
    font-weight: 300;
    letter-spacing: 1px;
    line-height: 28px;
    text-align: center;
    text-transform: uppercase;
    
    row-gap: 17px;
    margin-block: 0px;
  }
  
  .footer h3::after {
    content: "";
    display: block;
    
    background-color: var(--brand-color);
    
    width: min(100%, 76px);
    height: 1px;
  }
  
  .footer .links {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    
    row-gap: 5px;
  }
  
  .footer .links h3 {
    padding-bottom: 12px;
  }
  
  .footer .links a {
    color: var(--brand-black);
    
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    
    transition: var(--custom-transition);
  }
  
  .footer .links a:hover {
    color: var(--brand-color);
  }
  
  .footer .contact {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    
    row-gap: 12px;
  }
  
  .footer .contact h3 {
    padding-bottom: 5px;
  }
  
  .footer .contact p {
    display: flex;
    justify-content: center;
    align-items: center;
    
    font-size: 14px;
    font-weight: 700;
    line-height: 21px;
    
    column-gap: var(--spacing-1x);
    margin-block: 0px;
  }
  
  .footer .contact a {
    color: var(--brand-black);
    
    font-weight: 400;
    
    transition: var(--custom-transition);
  }
  
  .footer .contact a:hover {
    color: var(--brand-blue);
  }
  
  .footer .address {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    
    row-gap: 17px;
  }
  
  .footer .address p {
    margin-block: 0px;
  }
  
  .footer .socials {
    display: flex;
    justify-content: center;
    align-items: center;
    align-self: stretch;
    
    column-gap: 40px;
    padding: 20px;
  }
  
  .footer .socials a {
    color: var(--brand-color);
    
    font-size: 24px;
    
    transition: var(--custom-transition);
  }
  
  .footer .socials a:hover {
    color: var(--brand-blue);
  }
  
  .footer .socials a #twitter {
    width: 20px;
  }
  
  .footer .socials a #tripadvisor {
    width: 27px;
  }
  
  .footer .socials a svg {
    display: block;
    
    fill: var(--brand-color);
    
    transition: var(--custom-transition);
  }
  
  .footer .socials a:hover svg {
    fill: var(--brand-blue);
  }
  
  .footer .address {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    
    row-gap: 17px;
  }
  
  .footer .seals {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    
    row-gap: 17px;
  }
  
  .footer .seals img {
    display: block;
  }
  
  .footer .seals a img {
    width: 175px;
    height: auto;
    
    transition: var(--custom-transition);
  }
  
  .footer .seals a:hover img {
    opacity: 80%;
  }
  
  .footer .seals > img {
    height: 57px;
    width: auto;
  }
  
  .footer small {
    font-size: 14px;
    font-weight: 300;
    line-height: 21px;
    text-align: center;
    text-transform: capitalize;
  }
  
  .footer small a {
    color: var(--brand-black);
    
    transition: var(--custom-transition);
  }
  
  .footer small a:hover {
    color: var(--brand-color);
  }
  
}



/* ----- Tablet specific ----- */
@media screen and (max-width: 999px) {
  
  .header .container {
    grid-template-columns: repeat(2, auto);
  }

  .header .invisible-flex-item {
    display: none;
  }
  
  .header .logo a img {
    width: 175px;
  }
  
  .header .backtosite a {
    padding-inline: 30px;
  }
  
  .footer .container {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer {
    margin-top: calc(96px / 2);
  }
  
  .footer .backtotop a {
    font-size: 22px;
    
    min-width: 60px;
    padding: 0px;
  }
  
  .footer .footer-logo {
    margin-top: calc((96px / 2) * -1);
  }
  
  .footer .footer-logo img {
    width: 96px;
  }
  
  .footer .contact {
    order: 1;
  }
  
  .footer .address {
    order: 2;
  }
  
  .footer .links {
    order: 3;
  }
  
  .footer .seals {
    order: 4;
  }
  
}



/* ----- Mobile specific ----- */
@media screen and (max-width: 499px) {
  
  .header .container {
    display: flex;
    justify-content: center;
    
    padding-inline: 0px;
  }
  
  .header .backtosite {
    display: none;
  }
  
  .header .logo a img {
    width: 160px;
  }
  
  .footer .container {
    display: flex;
    align-items: center;
  }
  
  .footer {
    margin-top: calc(76px / 2);
  }
  
  .footer .footer-logo {
    margin-top: calc((76px / 2) * -1);
  }
  
  .footer .footer-logo img {
    width: 76px;
  }
  
  .footer .backtotop a {
    font-size: 20px;
    
    min-width: 50px;
  }
  
}