@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Roboto:ital,wght@0,400;0,700;1,400;1,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Libre+Franklin:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap");
:root {
  --image_aspect_ratio: 4/2.5;
  --section_padding: 8vh;
  --anchors_height: 60px;
  --anchors_bg: var(--main);
  --anchors_color: var(--main-color-associated);
  --anchors_highlight_color: var(--secondary);
  --anchors_border: var(--main-l-15);
  --arrow_width: 40px;
  --overlay_bg: rgba(0, 0, 0, .5);
  --header_height: 100px;
  --stroke: var(--gray-300);
  --bookingform_inline_height: 120px;
}
@media (max-width: 991px) {
  :root {
    --section_padding: 4vh;
  }
}
@media (max-width: 767px) {
  :root {
    --anchors_height: 50px;
    --header_height: 60px;
  }
}

/*$anchorsHeight: 60px;
$anchorsBg: $alternativeBackground;
$anchorsColor: $fontColor;
$anchorsHighlightColor: $thirdColor;
$anchorsBorder: rgba($anchorsColor, .3);*/
section.offers_section {
  --item_padding: 20px;
}
@media (min-width: 992px) {
  .offers_carousel .arrow {
    width: 50px;
    height: 50px;
    margin-top: -25px;
  }
}
.offers_carousel .arrow {
  border: 1px solid var(--highlighted);
  background-color: var(--highlighted);
}
.offers_carousel .arrow:after, .offers_carousel .arrow:before {
  background-color: var(--white);
}

.offer_wrap {
  width: 400px;
  padding: var(--item_padding);
}
.offer_wrap .offer {
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  background: var(--bg-l-3);
}
.offer_wrap .thumb_wrap {
  position: relative;
  z-index: 10;
}
.offer_wrap .thumb_wrap .thumb {
  background-attachment: scroll;
  background-size: cover;
  background-color: #ccc;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  aspect-ratio: var(--image_aspect_ratio);
  overflow: hidden;
  display: block;
}
.offer_wrap .content {
  position: relative;
  z-index: 20;
  text-align: center;
  padding: 0 2em 1em;
}
@media (max-width: 991px) {
  .offer_wrap .content {
    padding: 0 0 0;
  }
}
.offer_wrap .content .btns_wrap {
  margin-top: -25px;
  margin-bottom: 25px;
}
.offer_wrap .content .btns_wrap .book {
  display: inline-block;
  height: 50px;
  overflow: hidden;
  text-align: center;
}
.offer_wrap .content .btns_wrap .book a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  padding: 1em 1.5em;
  height: 100%;
  text-align: center;
  text-decoration: none;
  z-index: 1;
  overflow: hidden;
  position: relative;
  line-height: 120%;
  font-family: var(--first-font);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.offer_wrap .content .btns_wrap .book a * {
  color: inherit;
  font-weight: inherit;
}
.offer_wrap .content .btns_wrap .book a:hover, .offer_wrap .content .btns_wrap .book a:focus {
  text-decoration: none;
  outline: none;
}
.offer_wrap .content .btns_wrap .book a {
  background-color: var(--highlighted);
  color: var(--highlighted-color-associated);
}
.offer_wrap .content .btns_wrap .book a:hover {
  background-color: var(--hover);
  color: var(--hover-color-associated);
}
.offer_wrap .price_wrap {
  display: block;
  margin-bottom: 0.5em;
  text-decoration: none;
  text-align: center;
  padding-top: 20px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.offer_wrap .price_wrap:hover .label,
.offer_wrap .price_wrap:hover .price {
  color: var(--hover);
}
.offer_wrap .price_wrap .label {
  color: var(--secondary);
}
.offer_wrap .price_wrap .price {
  font-weight: normal;
  font-style: normal;
  font-family: var(--highlight-font);
  font-size: 1.7em;
  color: var(--titles);
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.offer_wrap .content .title {
  font-family: var(--highlight-font);
  line-height: 125%;
  position: relative;
  text-transform: none;
  color: var(--titles);
  font-size: 1.8em;
  display: block;
  text-align: center;
  margin-bottom: 0.5em;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (min-width: 1200px) {
  .offer_wrap .content .title {
    font-size: 2em;
  }
}
@media (max-width: 991px) {
  .offer_wrap .content .title {
    font-size: 1.5em;
  }
}
.offer_wrap .content .title strong {
  font-weight: inherit;
}
.offer_wrap .content .title strong {
  color: var(--secondary);
}
.offer_wrap .content .title:hover {
  text-decoration: none;
  color: var(--hover);
}
.offer_wrap .content_wrap {
  padding-bottom: 1em;
}
.offer_wrap .content .info {
  display: inline-block;
  height: 50px;
  overflow: hidden;
  text-align: center;
}
.offer_wrap .content .info.collapsibleContent_btn a:before {
  content: "\f078";
  font-weight: bold;
  font-family: "Font Awesome 5 Free", sans-serif;
}
.offer_wrap .content .info.collapsibleContent_btn.open a:before, .offer_wrap .content .info.open a:before {
  content: "×";
  font-family: var(--first-font);
}
.offer_wrap .content .info a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  height: 100%;
  position: relative;
  text-decoration: none;
  z-index: 1;
  padding: 0;
  overflow: hidden;
  line-height: 120%;
  font-size: var(--font-size);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: var(--secondary);
}
.offer_wrap .content .info a * {
  color: inherit;
  font-weight: inherit;
}
.offer_wrap .content .info a:before {
  content: "⟶";
  margin-right: 0.5em;
}
.offer_wrap .content .info a:hover {
  color: var(--hover);
  text-decoration: none;
}
.offer_wrap .content .info a:hover, .offer_wrap .content .info a:focus {
  outline: none;
}

.fancybox-slide .offer_details {
  background: var(--bg);
  color: var(--bg-color-associated);
}

.offer_details {
  width: 90%;
  padding: 0;
  margin: 0;
  line-height: 150%;
  font-size: var(--font-size);
  font-family: var(--first-font);
}
@media (min-width: 1400px) {
  .offer_details {
    width: 1200px;
  }
}
.offer_details .fancybox-close-small {
  left: auto;
  right: 0;
}
.offer_details .offer_description_inner_wrap {
  width: 100%;
  max-width: unset;
}
@media (min-width: 992px) {
  .offer_details .offer_description_inner_wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    -webkit-align-items: stretch;
    -moz-align-items: stretch;
    align-items: stretch;
  }
}
.offer_details .offer_description_inner_wrap .thumb_wrap,
.offer_details .offer_description_inner_wrap .offer_description {
  width: 50%;
  position: relative;
}
@media (max-width: 991px) {
  .offer_details .offer_description_inner_wrap .thumb_wrap,
  .offer_details .offer_description_inner_wrap .offer_description {
    width: 100%;
  }
}
@media (min-width: 992px) {
  .offer_details .offer_description_inner_wrap .thumb_wrap {
    min-height: 50vh;
  }
}
.offer_details .offer_description_inner_wrap .thumb_wrap .thumb {
  background-attachment: scroll;
  background-size: cover;
  background-color: #ccc;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 100%;
}
@media (max-width: 991px) {
  .offer_details .offer_description_inner_wrap .thumb_wrap .thumb {
    height: 0;
    padding-bottom: 66%;
  }
}
.offer_details .offer_description_inner_wrap .offer_description {
  padding: 60px;
}
@media (max-width: 767px) {
  .offer_details .offer_description_inner_wrap .offer_description {
    padding: 40px 20px;
  }
}
.offer_details .offer_description_inner_wrap .offer_description .price_wrap {
  display: block;
  margin-bottom: 1.5em;
  text-decoration: none;
  text-align: center;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.offer_details .offer_description_inner_wrap .offer_description .price_wrap:hover .label,
.offer_details .offer_description_inner_wrap .offer_description .price_wrap:hover .price {
  color: var(--hover);
}
.offer_details .offer_description_inner_wrap .offer_description .price_wrap .label {
  color: var(--secondary);
}
.offer_details .offer_description_inner_wrap .offer_description .price_wrap .price {
  font-weight: normal;
  font-style: normal;
  font-family: var(--highlight-font);
  font-size: 1.7em;
  color: var(--titles);
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.offer_details .offer_description_inner_wrap .offer_description .title {
  font-weight: normal;
  font-style: normal;
  font-family: var(--highlight-font);
  line-height: 120%;
  color: var(--titles);
  font-size: 1.8em;
  margin-bottom: 0.5em;
  text-align: center;
}
@media (min-width: 768px) and (max-width: 991px) {
  .offer_details .offer_description_inner_wrap .offer_description .title {
    font-size: 1.5em;
  }
}
@media (max-width: 991px) {
  .offer_details .offer_description_inner_wrap .offer_description .title {
    font-size: 1.5em;
  }
}
.offer_details .offer_description_inner_wrap .offer_description .title strong {
  font-weight: normal;
}
.offer_details .offer_description_inner_wrap .offer_description .btns_wrap {
  margin-top: 1.5em;
  text-align: center;
}
.offer_details .offer_description_inner_wrap .offer_description .btns_wrap .book {
  display: inline-block;
  height: 50px;
  overflow: hidden;
  text-align: center;
}
.offer_details .offer_description_inner_wrap .offer_description .btns_wrap .book a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  padding: 1em 1.5em;
  height: 100%;
  text-align: center;
  text-decoration: none;
  z-index: 1;
  overflow: hidden;
  position: relative;
  line-height: 120%;
  font-family: var(--first-font);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.offer_details .offer_description_inner_wrap .offer_description .btns_wrap .book a * {
  color: inherit;
  font-weight: inherit;
}
.offer_details .offer_description_inner_wrap .offer_description .btns_wrap .book a:hover, .offer_details .offer_description_inner_wrap .offer_description .btns_wrap .book a:focus {
  text-decoration: none;
  outline: none;
}
.offer_details .offer_description_inner_wrap .offer_description .btns_wrap .book a {
  background-color: var(--highlighted);
  color: var(--highlighted-color-associated);
}
.offer_details .offer_description_inner_wrap .offer_description .btns_wrap .book a:hover {
  background-color: var(--hover);
  color: var(--hover-color-associated);
}
.offer_details .fancybox-close-small svg {
  display: none;
}

.offers_section .container + .offers_list {
  margin-top: var(--section_padding);
}

.offers_section .offers-hotel:has(.offers_container:empty) {
  display: none;
}

.offers_list .section_title + .offers_grid,
.offers_list .section_title + .offers_carousel {
  margin-top: 2em;
}
.offers_list .offers-hotel + .offers-hotel {
  margin-top: var(--section_padding);
}
.offers_list .offers_grid {
  width: auto;
  margin-right: calc(var(--item_padding) * -1 + 10px);
  margin-left: calc(var(--item_padding) * -1 + 10px);
}
@media (min-width: 992px) and (max-width: 1199px) {
  .offers_list .offers_grid {
    --item_padding: 10px;
  }
}
@media (max-width: 767px) {
  .offers_list .offers_grid {
    --item_padding: 10px;
  }
}
.offers_list .offers_grid .offers_container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
}
.offers_list .offers_grid .offers_container .offer_wrap {
  width: 33.333%;
}
@media (min-width: 768px) and (max-width: 991px) {
  .offers_list .offers_grid .offers_container .offer_wrap {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .offers_list .offers_grid .offers_container .offer_wrap {
    width: 100%;
  }
}
.offers_list .offers_grid .offers_container .offer_wrap .item_wrap + .item_wrap {
  margin-top: var(--item_padding);
}
@media (min-width: 1200px) {
  .offers_list .offers_grid .offers_container .offer_wrap .item_wrap + .item_wrap {
    margin-top: calc(var(--item_padding) * 2);
  }
}

.section.offers_section.offers_carousel .offers_list .container {
  padding: 0;
  max-width: unset;
  width: 100%;
}
.section.offers_section.offers_carousel .offers_carousel {
  position: relative;
}
.section.offers_section.offers_carousel .offers_container,
.section.offers_section.offers_carousel .pager {
  width: calc(100% - (var(--arrow_width) * 2 + 60px));
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 1400px) {
  .section.offers_section.offers_carousel .offers_container,
  .section.offers_section.offers_carousel .pager {
    width: calc(100% - (var(--arrow_width) * 2 + 170px));
  }
}
@media (max-width: 991px) {
  .section.offers_section.offers_carousel .offers_container,
  .section.offers_section.offers_carousel .pager {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
}
.section.offers_section.offers_carousel .pager {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .section.offers_section.offers_carousel .pager {
    margin-top: 10px;
  }
}
.section.offers_section.offers_carousel .pager ul {
  width: 100%;
}
@media (min-width: 992px) {
  .section.offers_section.offers_carousel .arrow.prev {
    left: 25px;
  }
}
@media (min-width: 1400px) {
  .section.offers_section.offers_carousel .arrow.prev {
    left: 45px;
  }
}
@media (max-width: 991px) {
  .section.offers_section.offers_carousel .arrow.prev {
    left: 0;
  }
}
@media (min-width: 992px) {
  .section.offers_section.offers_carousel .arrow.next {
    right: 25px;
  }
}
@media (min-width: 1400px) {
  .section.offers_section.offers_carousel .arrow.next {
    right: 45px;
  }
}
@media (max-width: 991px) {
  .section.offers_section.offers_carousel .arrow.next {
    right: 0;
  }
}
/*# sourceMappingURL=offers.css.map */
