/* carlito-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Carlito";
  font-style: normal;
  font-weight: 400;
  src: url("./fonts/carlito-v3-latin-regular.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* carlito-italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Carlito";
  font-style: italic;
  font-weight: 400;
  src: url("./fonts/carlito-v3-latin-italic.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* carlito-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Carlito";
  font-style: normal;
  font-weight: 700;
  src: url("./fonts/carlito-v3-latin-700.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* carlito-700italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Carlito";
  font-style: italic;
  font-weight: 700;
  src: url("./fonts/carlito-v3-latin-700italic.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
html, body {
  margin: 0;
  padding: 0;
}

body {
  background-color: #FFFDFC;
}

* {
  font-family: "Carlito", sans-serif;
}

/* Black */
.has-black-color {
  color: #271F25;
}

.has-black-background-color {
  background-color: #271F25;
}

/* Beige */
.has-beige-color {
  color: #F1EBDE;
}

.has-beige-background-color {
  background-color: #F1EBDE;
}

/* Blau */
.has-blau-color {
  color: #586F71;
}

.has-blau-background-color {
  background-color: #586F71;
}

/* Dark Red */
.has-dark-red-color {
  color: #472323;
}

.has-dark-red-background-color {
  background-color: #472323;
}

/* Green */
.has-green-color {
  color: #C9D4AB;
}

.has-green-background-color {
  background-color: #C9D4AB;
}

/* Dark Beige */
.has-dark-beige-color {
  color: #A59A80;
}

.has-dark-beige-background-color {
  background-color: #A59A80;
}

p {
  margin: 0;
  font-size: 1.5rem;
  letter-spacing: 0.08em;
  line-height: 1.75;
}

main {
  min-height: 70vh;
}

/* ----------------------------------------- FONTS ------------------------------------------ */
html {
  font-size: 66%;
}

@media only screen and (max-width: 980px) {
  html {
    font-size: 50%;
  }
}
h1, h2, h3, h4, h5, h6 {
  margin: 0;
}

h1 {
  font-size: 6rem;
  letter-spacing: 0.04em;
}

h2 {
  font-size: 5rem;
  letter-spacing: 0.04em;
}

h4 {
  font-size: 4rem;
  letter-spacing: 0.04em;
}

h5 {
  font-size: 3.5rem;
  letter-spacing: 0.08em;
}

h3 {
  font-size: 3rem;
  letter-spacing: 0.1em;
}

h6 {
  font-size: 2rem;
}

ul {
  list-style: none;
}
ul li {
  line-height: 1.75;
}

.wp-block-button__link,
.wp-element-button,
input[type=submit] {
  min-width: 200px;
  padding: 10px 30px;
  background-color: #586F71;
  border: 3px solid #586F71;
  color: #FFF;
  text-transform: uppercase;
  border-radius: 6px;
  font-size: 1.7rem;
  letter-spacing: 0.18em;
  transition: 0.2s;
}
.wp-block-button__link:hover,
.wp-element-button:hover,
input[type=submit]:hover {
  background-color: #FFFDFC;
  color: #586F71;
}

* {
  box-sizing: border-box;
}

header#main-header {
  display: flex;
  width: 100%;
  margin: 0px auto;
  max-width: 1280px;
  padding: 20px 15px;
  align-items: center;
  justify-content: space-between;
}
header#main-header ul.menu {
  display: flex;
  align-content: center;
  gap: 40px;
  list-style: none;
}
header#main-header ul.menu a {
  text-decoration: none;
  color: #586F71;
  font-size: 1.8rem;
  letter-spacing: 0.15em;
}

#mobileBar {
  display: none;
  font-size: 3rem;
}

@media only screen and (max-width: 1000px) {
  header#main-header {
    position: fixed;
    z-index: 999999;
    background: #FFFDFC;
    height: 82px;
  }
  header#main-header .menu-header-container {
    position: fixed;
    background: #FFFDFC;
    top: 112px;
    right: -1000px;
    bottom: 0;
    width: 100%;
    max-width: 500px;
  }
  header#main-header .menu-header-container.active {
    right: 0px;
  }
  header#main-header .menu-header-container ul.menu {
    flex-direction: column;
    gap: 20px;
  }
  header#main-header .menu-header-container ul.menu a {
    font-size: 3.4rem;
  }
  #mobileBar {
    display: block;
  }
  #mobileBar .close {
    display: none;
  }
  #mobileBar .open {
    display: block;
  }
  #mobileBar.active .close {
    display: block;
  }
  #mobileBar.active .open {
    display: none;
  }
}
figure.wp-block-image.is-style-rounded {
  margin: 0;
  padding: 0;
}
figure.wp-block-image.is-style-rounded img {
  display: block;
  border-radius: 9px;
  box-shadow: 13px 8px 18px rgba(0, 0, 0, 0.49);
}

a {
  text-decoration: none;
  color: #472323;
}

a > strong, strong > a {
  letter-spacing: 0.25em;
}

.uagb-block-49261f7a figure.wp-block-image.is-style-rounded {
  height: 100%;
}
.uagb-block-49261f7a figure.wp-block-image.is-style-rounded img {
  height: 100%;
}

.contactform-main p input, .contactform-main p textarea {
  display: block;
  width: 100%;
  background: none;
  border: 1px solid #271F25;
  border-radius: 6px;
  padding: 10px;
  margin-bottom: 15px;
}

.hb-accom-listing-shortcode-wrapper .hb-accom-listing-desc h2 {
  font-size: 1.8rem;
  color: #586F71;
}
.hb-accom-listing-shortcode-wrapper .hb-accom-listing-desc p small {
  font-size: 2.1rem;
  color: #271F25;
  line-height: 3.7em;
}
.hb-accom-listing-shortcode-wrapper .hb-title.hb-title-search-form {
  font-size: 1.4rem;
  color: #A59A80;
  font-weight: 300;
}
.hb-accom-listing-shortcode-wrapper .hb-booking-search-form {
  margin-top: 5rem;
}
.hb-accom-listing-shortcode-wrapper .hb-booking-search-form label {
  color: #586F71;
  opacity: 0.7;
}
.hb-accom-listing-shortcode-wrapper input:not([type=submit]),
.hb-accom-listing-shortcode-wrapper textarea,
.hb-accom-listing-shortcode-wrapper select {
  display: block;
  width: 100%;
  background: none;
  border: 1px solid #271F25;
  border-radius: 6px;
  padding: 10px;
  margin-bottom: 15px;
}
.hb-accom-listing-shortcode-wrapper .hb-searched-summary p {
  color: #586F71;
}
.hb-accom-listing-shortcode-wrapper .hb-searched-summary p span {
  color: #271F25;
}
.hb-accom-listing-shortcode-wrapper .hb-step-button input[type=submit],
.hb-accom-listing-shortcode-wrapper .hb-change-search-wrapper input[type=submit] {
  min-width: 160px;
  width: min-content;
  padding: 5px 15px;
  border: 1px solid #586F71;
  color: #FFF;
  font-size: 1.3rem;
  letter-spacing: 0.18em;
  margin: 10px 0px 15px 0px;
}
.hb-accom-listing-shortcode-wrapper .hb-accom-price-total {
  margin: 10px 0px 10px 0px;
}
.hb-accom-listing-shortcode-wrapper .hb-accom-price-total .hb-accom-price {
  font-size: 5rem;
  font-weight: 400;
  color: #472323;
}
.hb-accom-listing-shortcode-wrapper .hb-accom-price-caption {
  font-size: 1.5rem;
  color: #586F71;
}
.hb-accom-listing-shortcode-wrapper .hb-accom-price-caption a {
  color: #472323;
  text-decoration: underline;
}
.hb-accom-listing-shortcode-wrapper .hb-price-breakdown > span {
  display: block;
  margin-bottom: 10px;
}
.hb-accom-listing-shortcode-wrapper .hb-price-breakdown .hb-price-breakdown-title {
  font-weight: 400;
}
.hb-accom-listing-shortcode-wrapper .hb-price-breakdown .hb-price-breakdown-title span {
  font-weight: bold;
}
.hb-accom-listing-shortcode-wrapper .hb-price-breakdown .hb-price-breakdown {
  font-size: 0.7em;
}
.hb-accom-listing-shortcode-wrapper .hb-booking-details-form .hb-details-fields {
  border-bottom: 1px solid #271F25;
  border-top: 1px solid #271F25;
  padding-top: 7px;
  padding-bottom: 7px;
  margin: 10px 0 10px 0;
}
.hb-accom-listing-shortcode-wrapper .hb-summary-wrapper {
  margin-top: 10px;
}
.hb-accom-listing-shortcode-wrapper .hb-summary-wrapper .hb-resa-summary .hb-resa-summary-content {
  font-size: 1.6rem;
}
.hb-accom-listing-shortcode-wrapper .hb-summary-wrapper .hb-resa-summary-title,
.hb-accom-listing-shortcode-wrapper .hb-summary-wrapper .hb-title-payment {
  margin-bottom: 5px;
  font-size: 1.6rem;
}
.hb-accom-listing-shortcode-wrapper .hb-payment-info-wrapper *:not(h3) {
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 5px;
}
.hb-accom-listing-shortcode-wrapper .hb-confirm-area p {
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 5px;
}
.hb-accom-listing-shortcode-wrapper .hb-confirm-area input[type=submit] {
  margin-top: 10px;
  margin-bottom: 10px;
}
.hb-accom-listing-shortcode-wrapper .hb-confirm-button input[type=submit] {
  width: 100%;
}
.hb-accom-listing-shortcode-wrapper .hb-bottom-area {
  font-size: 1rem;
}

.hb-accom-listing-column {
  margin-bottom: 0;
  max-width: 100%;
  width: 100% !important;
  padding: 0;
}

p.hb-check-dates-wrapper, p.hb-accom-number-wrapper, p.hb-people-wrapper {
  width: 100%;
  float: none;
}

.price_compare {
  display: flex;
  overflow-x: auto;
}
.price_compare .price_compare__item {
  flex: 0 0 33.3333333333%;
  min-width: 250px;
}
.price_compare .price_compare__item > *:not(a), .price_compare .price_compare__item > *:not(.top-mess) {
  text-align: center;
  padding: 15px 10px;
}
.price_compare .price_compare__item .top-mess {
  height: 20px;
  font-size: 1.8rem;
  color: #C9D4AB;
  text-transform: uppercase;
}
.price_compare .price_compare__item .title {
  height: 40px;
  font-size: 1.8rem;
  border-bottom: 1px solid #A59A80;
}
.price_compare .price_compare__item .main-price {
  height: 130px;
  font-size: 2.5rem;
  color: #472323;
  border-bottom: 1px solid #A59A80;
}
.price_compare .price_compare__item .main-price small {
  font-size: 0.7em;
  color: #586F71;
}
.price_compare .price_compare__item .main-price .sale-percentage {
  color: red;
  font-size: 1.1em;
  font-weight: bold;
}
.price_compare .price_compare__item .price-je-person {
  height: 120px;
  font-size: 2.2rem;
  color: #472323;
}
.price_compare .price_compare__item .price-je-person .sale-percentage {
  color: red;
  font-size: 1.1em;
  font-weight: bold;
}
.price_compare .price_compare__item .price-je-person small {
  font-size: 0.7em;
  color: #586F71;
}
.price_compare .price_compare__item .wp-block-button {
  padding: 3px;
}
.price_compare .price_compare__item .wp-element-button {
  width: 100%;
  max-width: 314px;
  text-align: center;
  margin: 0 auto;
}
.price_compare .price_compare__item.top-item {
  background-color: #F1EBDE;
  box-shadow: -13px 8px 18px rgba(0, 0, 0, 0.49);
  transform: translate(10px, -10px);
  border-radius: 6px;
}

.footer-before-image-container {
  width: 100%;
  height: 200px;
  background: url("../images/footer-image.png") left 0px repeat-x;
}

footer#main_footer {
  background: #0D1302;
}
footer#main_footer .footer-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px 10px 60px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 25px;
}
footer#main_footer .footer-container ul.menu {
  margin-top: 55px;
  margin: 0;
  list-style: none;
  padding: 5px;
}
footer#main_footer .footer-container ul.menu a {
  display: block;
  color: #fff;
  text-decoration: none;
  font-size: 1.6rem;
  margin-bottom: 9px;
}
footer#main_footer .footer-container ul.menu a:hover {
  color: #C9D4AB;
}
footer#main_footer .footer-container .description {
  color: #fff;
  max-width: 450px;
}
footer#main_footer .footer-container .description .subdescription {
  padding: 10px 10px 10px 84px;
}
footer#main_footer .footer-container .description .subdescription p {
  font-size: 1.2rem;
  opacity: 0.8;
  margin-bottom: 25px;
}
footer#main_footer .footer-container .description .links-list {
  display: flex;
  gap: 15px;
}
footer#main_footer .footer-container .description .links-list a img {
  aspect-ratio: 1/1;
  width: 35px;
}

@media only screen and (max-width: 767px) {
  footer#main_footer .footer-container {
    justify-content: center;
  }
}

/*# sourceMappingURL=style.css.map */
