@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {

  --color-black: #000000;
  --color-white: #ffffff;

  --color-brand-1: #A2874E;
  --color-brand-2: #4B1420;
  --color-brand-3: #F0F1F3;
  --color-brand-4: #C19B76;
  --color-brand-5: #151516;
  --color-brand-6: #EEEEED;
  --color-brand-7: #333333;

  
  --color-white-opacity: rgba(255,255,255,0.1);
  --color-black-opacity: rgba(0,0,0,0.9);

  --branding-default: var(--color-brand-1);
  --branding-hovered: var(--color-brand-2);
  --branding-pressed: var(--color-brand-4);

  --border-hovered: var(--color-brand-2);
  --background-hovered: var(--color-brand-2);
  --base-featured: var(--color-brand-4);

  --mda-box-background: var(--color-brand-5);

  --base-default: var(--color-brand-3);
  --background-depth: var(--color-brand-3);
  --background-surface: var(--color-brand-3);

  
/*  --border-radius-default: 0px;*/
/*  --border-radius-1x: ;*/
  --border-radius-button: 0px;
  --border-brand-1: 1px solid var(--color-brand-1);
  --border-brand-2: 1px solid var(--color-brand-2);
  --border-brand-3: 1px solid var(--color-brand-3);
  --border-brand-4: 1px solid var(--color-brand-4);
  --border-brand-7: 1px solid var(--color-brand-7);
  --border-transparent: 1px solid transparent;
  --border-black: 1px solid var(--color-black);
  --border-white: 1px solid var(--color-white);
  --border-white-opacity: 1px solid var(--color-white-opacity);

  --font-family-1: "Montserrat", sans-serif;
  --font-family-2: "Montserrat", sans-serif;

  --font-size-body: 16px;
  --font-size-20: 20px;
  --font-size-22: 22px;

  --container-max-width: 1200px;

  --box-shadow-btn: 0 6px 12px rgba(0, 0, 0, .1);
  --box-shadow-btn-2: 0 0 10px rgba(0, 0, 0, 0.15);
  --box-shadow-header: 0 7px 24px rgba(0, 0, 0, .06);

  --box-shadow-default: 0px 1px 20px -12px var(--color-black);

  --box-shadow-pre-hover-brand-2: inset 0px 0px 0 0 var(--color-brand-2);
  --box-shadow-hover-brand-2-top: inset 0px 200px 0 0 var(--color-brand-2);

  --transition-default: all 0.5s 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 and (max-width: 499px) {

  :root {
    --font-size-body: 14px;
    --font-size-20: 18px;
    --font-size-22: 20px;

    --container-max-width: 100vw;

  }

}

@media screen {
  
  .header a i,
  .backtotop a i,
  .footer a i {
    margin-right: 0px;
  }
  
  body {
    background-color: var(--color-white);
    font-family: var(--font-family-2);
    font-size: var(--font-size-body);
  }

  .card-grid__title h4, 
  .card-grid__title h5 {
    text-decoration: none;
  }
  
  .main-be-area {
    background-color: var(--color-white);
  }

/*  .page-layout,*/
  .card-grid.grid-layout {
    box-shadow: var(--box-shadow-default);
  }

  .avvio-calendar-container,
  .avvio-calendar__month {
    border-radius: calc(var(--border-radius-1x) * 2)!important;
  }


  .avvio-calendar__date,
  .button, 
  .button--secondary,
  .button--branded {
    transition: var(--transition-default);
    
  }

  .button--branded {
    font-weight: 600;
    position: relative;
    color: var(--color-white);
    background-color: var(--color-brand-1);
    border: var(--border-brand-1);
    box-shadow: transparent;
  }

  .button--branded:hover {
    background-color: transparent;
    color: var(--color-brand-1);
    border: var(--border-brand-1);
  }

  .button--primary:hover,
  .button--secondary:hover {
    color: var(--color-white);
    border: var(--border-brand-2);
    background-color: var(--color-brand-2);
  }

  .button__text {
    font-weight: 600;
    font-family: var(--font-family-2);
    text-transform: uppercase;
  }

  .button-icon {
    border: none!important;
    border-radius: calc(var(--border-radius-1x) * 2);
  }

  .button-icon:hover .button-icon__icon,
  .button-icon--secondary .button-icon__icon {
    width: 100%;
    height: 100%;
    color: var(--color-brand-1);
    background-color: transparent;
    border-radius: calc(var(--border-radius-1x) * 2)!important;
    border: var(--border-brand-1);
    transition: var(--transition-default);
  }

  .button-icon:hover:not(.disabled) .button-icon__icon {
    color: var(--color-brand-3);
    background-color: var(--color-brand-2);
  }

  .checkbox-field__input + .checkbox-field__icon {
    background-color: transparent;
  }
  
  .header {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 74px;
  /*    flex-direction: column;*/
    background-color: var(--color-white);
    color: var(--color-black);
    box-shadow: var(--box-shadow-default);
    padding-block: 0px;
    z-index: 4;
  }

  .full-ribbon-one {
    box-shadow: var(--box-shadow-default);
    background-color: var(--color-brand-3);
  }
  
  .header .container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    max-width: var(--container-max-width);
    padding-inline: 15px;
  }
  
  .header .logo {
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }
  
  .header .logo a img {
    display: block;
    
    height: 40px;
    width: auto;
    
    transition: var(--transition-default);
  }
  
  .header .logo a:hover img {
    opacity: 80%;
  }

 /* .header .logo a .logo-name {
    color: var(--color-white);
    text-transform: uppercase;
    font-size: calc(var(--font-size-body) - 4px);
    letter-spacing: 3px;
  }*/

  .header .backtosite {
    position: absolute;
    top: 15px;
    right: calc((100% - var(--container-max-width)) / 2);
    min-width: 160px;
    height: 44px;
    display: flex;
    align-items: center;
  }
  
  .header .backtosite a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    
    background-color: var(--color-brand-1);
    color: var(--color-white);
    border: var(--border-brand-1);
    border-radius: calc(var(--border-radius-1x) * 2);
    
    font-size: var(--font-size-body);
    font-family: var(--font-family-2);
    font-weight: 400;
    letter-spacing: 1px;
    line-height: 23px;
    text-align: center;
    text-transform: uppercase;
    padding-block: 10px;
    padding-inline: 30px;
    
    transition: var(--transition-default);
  }
  
  .header .backtosite:hover a {
    background-color: transparent;
    color: var(--color-brand-1);
    border: var(--border-brand-1);
  }

  .header .sitename {
    position: absolute;
    display: none;
  }
  
  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-1);
  }

.navigation-box .button--primary,
  .navigation-box .button--primary.button--underlined {
    background-color: transparent;
    color: var(--color-brand-1);
    border: var(--border-transparent);
    transition: var(--transition-default);
  }

  .navigation-box .button--primary.button--underlined .button__text {
    text-decoration: none;
  }

  .navigation-box .button--primary.disabled {
    color: var(--color-black);
  }

  #control-area-links .button--primary {
    padding: 5px;
    margin: 10px 0;
    background-color: transparent;
    color: var(--color-brand-1);
    border: var(--border-transparent);
    transition: var(--transition-default);
  }

  .navigation-box .button--primary.button--underlined:hover {
    color: var(--color-brand-1);
    border: var(--border-brand-1);
  }

  .navigation-box .button--primary:hover {
    color: var(--color-brand-1);
    border: var(--border-transparent);
  }

  .navigation-box .button--primary.disabled:hover {
    color: var(--color-brand-7);
    border: var(--border-transparent);
  }

  #control-area-links .button--primary:hover {
    color: var(--color-brand-1);
    border: var(--border-brand-1);
  }

  .poweredby a,
  .privacy-policy-container a {
    font-size: calc(var(--font-size-body) - 0px);
    font-family: var(--font-family-1);
    color: var(--color-black);
    transition: var(--transition-default);
  }

  .poweredby a:hover,
  .privacy-policy-container a:hover {
    color: var(--color-brand-2);
  }

  
  .footer {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    
    background-color: var(--color-brand-6);
    color: var(--color-black);
    
    font-size: var(--font-size-body);
    font-weight: 400;
    letter-spacing: 0.9px;
    line-height: 26px;
    text-align: center;
    padding-top: 0px;
    margin-top: -1px;
    box-shadow: var(--box-shadow-default);
  }

  .footer a {
    color: var(--color-black);
    font-size: calc(var(--font-size-body) - 2px);
    transition: var(--transition-default);
    word-break: break-all;
  }

  .footer a:hover {
    color: var(--color-brand-1);
  }
  
  .footer .container {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin: 0 auto;
  }

  .footer .footer-row-1 {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    max-width: var(--container-max-width);
    gap: 0px;
  }

  .footer .footer-row-1 a img {
    height: 80px;
    width: auto;
  }

  .footer .footer-row-3 {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-block: 20px 40px;
    gap: 10px;
    border-top: var(--border-white);
  }

  .footer .col-4 {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    padding: 40px 0;
  }

  .footer .links-container li {
    padding: 3px 0;
    text-align: center;
    font-size: var(--font-size-body);
    font-weight: 200;
  }

/*  .footer .hotels-container a,*/
  .footer .links-container a {
    position: relative;
    padding: 5px 10px 5px 0px;
    font-weight: 400;
    text-align: left;
    transition: var(--transition-default);
  }

  .footer .links-container a:hover {
    color: var(--color-brand-4);
  }

  .footer .footer-row-3 a,
  .footer a.hotel-link {
    padding: 5px 0px 5px;
    text-align: left;
    position: relative;
    transition: var(--transition-default);
  }

  .footer a.hotel-link {
    color: var(--color-brand-3);
  }

  .footer .footer-row-3 a {
    padding: 5px 0;
  }

  .footer .footer-row-3 a:hover,
  .footer a.hotel-link:hover {
    color: var(--color-brand-4);
/*    padding: 0px 0px 5px;*/
  }

  .footer .footer-row-3 a::before {
    position: absolute;
    content: '';
    background-color: var(--color-brand-1);
    width: 0;
    height: 1px;
    bottom: 0;
    left: 0px;
    transition: var(--transition-default);
  }

  .footer .footer-row-3 a:hover::before {
    width: 100%;
  }
  
  .footer .footer-logo {
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }

  .footer .footer-logo a img {
    height: 140px;
  }
  
  .footer .col-4 img {
    display: block;
    
    width: auto;
    height: 150px;
    
    transition: var(--transition-default);
  }
  
  .footer .footer-logo:hover img {
    opacity: 80%;
  }


@media screen and (max-width: 1300px) {
    .footer .links-container {
      gap: 10px;
    }

    .footer .links-container a {
      padding: 5px 4px;
    }

    .footer .links-container a::after {
      right: -4px;
      top: 8px;
    }
}

@media screen and (max-width: 1199px) {

  .header .backtosite {
    right: 15px;
  }

  .footer .footer-row-1 {
    padding: 0 20px;
    gap: 0px;
  }

  .footer .col-4 {
    flex-wrap: wrap;
    gap: 10px;
  }

  .footer .footer-menu {
    flex-direction: column;
  }

  .footer .footer-logo {
    justify-content: center;
  }

}


/* ----- Tablet specific ----- */
@media screen and (max-width: 991px) {

  .header .backtosite {
    min-width: unset;
  }

  .footer .footer-row-1 {
    flex-wrap: wrap;
    padding: 0;
    gap: 0;
  }

  .footer .col-4 {
    width: 50%;
    max-width: unset;
  }
  
}

@media screen and (max-width: 767px) {

  .header .backtosite {
    display: none;
  }

  .header .logo a img {
    height: 30px;
  }

  .header::before {
    z-index: 0;
  }

  .header .container {
    justify-content: center;
    z-index: 2;
  }


  .footer .col-4 .address::after, 
  .footer .col-6-code::after, 
  .footer a.hotel-link::after, 
  .footer .links-container a::after {
    display: none;
  }

  .footer .logo-contacts,
  .footer .hotels-container,
  .footer .links-container {
    width: 100%;
    flex-wrap: wrap;
  }

}

@media screen and (max-width: 700px) {

  .footer .footer-menu,
  .footer .col-4.contact-container {
    width: 100%;
    min-height: unset;
    padding: 30px 20px;
  }

}


/* ----- Mobile specific ----- */
@media screen and (max-width: 499px) {

  .footer .footer-row-1 a img {
    width: 100%;
  }

  .mda-table__col-price .display-price {
    font-size: calc(var(--font-size-body) - 0px);
    font-weight: lighter;
  }
  
  .header .container {
    display: flex;
    padding-inline: 0px;
  }
  
  .header .logo {
    padding-inline: 0px;
    width: 85%;
  }

  .header .backtosite a {
    padding: 10px;
    width: 100%;
  }

  .header .logo a img {
    width: 100%;
  }
  
  .header .backtosite {
    right: 0;
    width: 35%;
  }
  
}

@media screen and (max-width: 320px) {

  .header {
    margin-top: 60px;
  }

}