:root {
  --offset-top: 109px;
  --radius-xxl: 100px;
}

@font-face {
  font-family: Quicksand;
  font-style: normal;
  font-weight: 400;
  font-display: optional;
  src: url("../fonts/Quicksand-Regular.woff2") format("woff2");
}

@font-face {
  font-family: Quicksand;
  font-style: normal;
  font-weight: 500;
  font-display: optional;
  src: url("../fonts/Quicksand-Medium.woff2") format("woff2");
}

@font-face {
  font-family: Quicksand;
  font-style: normal;
  font-weight: 600;
  font-display: optional;
  src: url("../fonts/Quicksand-SemiBold.woff2") format("woff2");
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-family: sans-serif;
  font-size: 16px;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  overflow-x: hidden;
  font-family: Quicksand, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: #424242;
  background-color: #fff;
}

header,
main,
nav,
section {
  display: block;
}

h1,
h2,
h3,
p,
ol,
ul {
  margin: 0;
  padding: 0;
}

h1 {
  font-family: Quicksand, sans-serif;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.2;
}

h2,
h3 {
  font-family: Quicksand, sans-serif;
  font-weight: 600;
  line-height: 1.2;
}

a {
  color: #000;
  text-decoration: none;
  background-color: transparent;
}

img {
  max-width: 100%;
  vertical-align: middle;
  border-style: none;
}

ol,
ul,
li {
  list-style: none;
}

.container-fluid {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.site-wrapper {
  min-height: 100vh;
  display: flex;
  flex-flow: column nowrap;
  align-items: flex-start;
  justify-content: flex-start;
}

.site-wrapper .header,
.site-wrapper #wrapper {
  width: 100%;
}

#wrapper {
  padding-top: var(--offset-top);
}

.page-container {
  padding-bottom: 60px;
}

.header {
  position: absolute;
  z-index: 40;
  top: 0;
  right: 0;
  left: 0;
  background: #fff;
}

.header a {
  font-weight: 500;
}

.header .header__top {
  padding: 8px 0;
  background-color: #f0f9fb;
  font-size: 12px;
}

.header .header__top__container,
.header .header__main__container,
.header .header__left,
.header .header__actions {
  display: flex;
  align-items: center;
}

.header .header__top__container {
  justify-content: flex-end;
  gap: 0 24px;
}

.header .header__main {
  padding: 16px 0;
}

.header .header__main__container {
  gap: 0 30px;
}

.header .header__left {
  gap: 0 60px;
}

.header .header__right {
  margin-left: auto;
}

.header .header__actions {
  gap: 0 16px;
}

.header .blockcart a {
  position: relative;
}

.header .blockcart .cart-products-count {
  position: absolute;
  top: -7px;
  right: -14px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  font-size: 8px;
  line-height: 16px;
  text-align: center;
}

.header #_desktop_language_selector {
  display: inline-block;
}

.header #_desktop_language_selector .expand-more svg,
.header #_desktop_language_selector .dropdown-item svg {
  width: 20px;
  height: auto;
}

.header .header__logo,
.header .header__logo svg,
.header .header__link svg {
  display: block;
}

.header .header__logo svg {
  width: 110px;
  height: auto;
}

.header .header__menu {
  flex-grow: 1;
}

.header .header__menu .header__menu__links,
.header .header__menu .header__menu__widgets,
.header .header__menu .header__menu__actions {
  display: none;
}

.header .header__link a {
  position: relative;
  display: block;
}

.header .header__burger .header__burger__button {
  position: relative;
  display: block;
  width: 24px;
  height: 10px;
  padding: 0;
  border: 0;
  background: none;
}

.header .header__burger .header__burger__button span {
  position: absolute;
  inset: 0;
  display: block;
  height: 2px;
  margin: auto;
  border-radius: 12px;
  background: #32b0c7;
}

.header .header__burger .header__burger__button span:first-child {
  bottom: initial;
}

.header .header__burger .header__burger__button span:last-child {
  top: initial;
}

/* Bagizy SEO/blog CLS fix:
   Keep header search overlay out of normal document flow before the full theme CSS loads.
   Without these rules, .search-zone is rendered as a normal block before #wrapper, then removed
   from flow when theme CSS loads, causing the mobile CLS jump on #wrapper.
*/
.header-overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 39;
  display: none;
  margin: auto;
  background: rgba(0, 0, 0, 0.25);
}

.search-zone {
  --submit-width: 40px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  background-color: #fff;
}

.search-zone .search-widget {
  position: relative;
  width: 100%;
  padding-bottom: 12px;
}

.search-zone .search-widget input {
  height: 52px;
  padding: 0 var(--submit-width) 0 12px !important;
}

.search-zone .search-widget button {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--submit-width);
  height: 100%;
}

.search-zone .search-zone__close {
  position: absolute;
  top: 24px;
  right: 32px;
  z-index: 2;
}

.search-zone .search-zone__widget {
  margin-top: var(--offset-top);
}

body.search-is-active {
  overflow: hidden;
}

body.search-is-active .search-zone {
  opacity: 1;
  pointer-events: all;
}

.breadcrumb {
  display: none;
}

.blog-article-page .blog-banner {
  position: relative;
  z-index: 0;
  display: flex;
  flex-flow: column nowrap;
  align-items: stretch;
  justify-content: center;
  height: calc(100vh - var(--offset-top));
  overflow: hidden;
  border-radius: 0 0 60px 60px;
}

.blog-article-page .blog-banner .media {
  position: absolute;
  z-index: -1;
  inset: 0;
  margin: auto;
}

.blog-article-page .blog-banner .media img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 2 / 1;
  object-fit: cover;
}

.blog-article-page .blog-banner .media::after {
  position: absolute;
  inset: 0;
  margin: auto;
  background: #000;
  opacity: 0.3;
  content: "";
}

.blog-article-page .blog-banner .content {
  width: 660px;
  max-width: 100%;
  margin: 0 auto;
  color: #fff;
  text-align: center;
}

.blog-article-page .blog-banner .content .ybc-blog-single-title {
  font-size: 2.5rem;
  font-weight: 600;
}

.blog-article-page .blog-banner .content .blog_short-description {
  margin: 2.5rem 0 0;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.col-lg-8,
.col-md-10 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

.blog-article-page .row {
  justify-content: center;
}

.rte p {
  margin-bottom: 12px;
}

.rte h2 {
  margin-top: 60px;
  margin-bottom: 24px;
  font-size: clamp(24px, 1.875rem, 1.875rem);
}

.rte h3 {
  padding-top: 16px;
  margin-bottom: 12px;
  font-size: clamp(20px, 1.5rem, 1.875rem);
}

@media (min-width: 576px) {
  .container-fluid {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container-fluid {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container-fluid {
    max-width: 960px;
  }

  .header .header__burger {
    display: none;
  }
}

@media (min-width: 1200px) {
  .container-fluid {
    max-width: 1140px;
  }
}

@media (max-width: 1199.98px) {
  :root {
    --radius-xxl: 80px;
  }

  html {
    font-size: 14px;
  }

  .header .header__left {
    gap: 0 32px;
  }

  .header .header__actions a {
    min-width: inherit;
  }
}

@media (max-width: 992px) {
  :root {
    --offset-top: 73px;
    --radius-xxl: 60px;
  }

  html {
    font-size: 12px;
  }

  .header .header__top,
  .header .header__actions #_desktop_language_selector,
  .header .header__actions .btn-booking {
    display: none;
  }

  .header #_desktop_user_info {
    display: none;
  }

  .header .header__menu {
    position: fixed;
    top: var(--offset-top);
    left: 0;
    width: 450px;
    max-width: 100vw;
    height: calc(100dvh - var(--offset-top));
    padding: 20px 15px;
    overflow-y: auto;
    visibility: hidden;
    opacity: 0;
    background: #fff;
    transform: translateX(-100%);
    pointer-events: none;
  }

  .page-container {
    padding-bottom: 30px;
  }
}

@media (max-width: 767.98px) {
  :root {
    --radius-xxl: 40px;
  }

  html {
    font-size: 11px;
  }

  .blog-article-page .blog-banner {
    border-radius: 0 0 var(--radius-xxl) var(--radius-xxl);
  }
}

@media (max-width: 575.98px) {
  html {
    font-size: 10px;
  }
}
