:root {
  --accent: #1d5732;
  --text: #484848;
  --link-color: var(--accent);
  --gutter: 30px;
  --gutter-half: calc(var(--gutter) / 2);
  --minus-gutter: calc(-1 * var(--gutter-half));
  --selection-background: var(--accent);
  --container-max-width: calc(1200px + var(--gutter));
}

/* latin-ext */
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  src: url("/wp-content/themes/znnt-sage-10/public/fonts/Montserrat_400_latin_ext.woff2") format("woff2");
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  src: url("/wp-content/themes/znnt-sage-10/public/fonts/Montserrat_400_latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  src: url("/wp-content/themes/znnt-sage-10/public/fonts/Montserrat_700_latin_ext.woff2") format("woff2");
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  src: url("/wp-content/themes/znnt-sage-10/public/fonts/Montserrat_700_latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* MAIN MENU STYLES */
nav {
  /* Common menu styles */
  /* MOBILE VIEW BY SCREEN WIDTH */
  /* MOBILE VIEW BY CLICK MENU BURGER ON DESKTOP */
}
nav .main-menu {
  display: flex;
}
nav .main-menu .menu-item-has-children > .submenu-toggle {
  display: block;
}
nav ul {
  margin: 0;
  padding: 0;
}
nav li {
  margin: 0;
  padding: 0;
  list-style: none;
  position: relative;
  white-space: nowrap;
  /* toggle style */
  /* sub menu common style */
}
nav li:hover > a {
  text-decoration: none;
  color: var(--accent);
}
nav li:hover .submenu-toggle:after {
  border-color: var(--accent) transparent transparent transparent;
}
nav li.menu-phone:after {
  background: none !important;
}
nav li.menu-phone:hover:after {
  background: none !important;
}
nav li a {
  display: block;
  width: 100%;
  color: var(--text);
  font-size: 14px;
  text-decoration: none;
  box-sizing: border-box;
}
nav li .submenu-toggle {
  display: none;
  position: absolute;
  pointer-events: none;
  top: 0;
  right: 0;
  height: 100%;
  width: 10px;
}
nav li .submenu-toggle:after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px;
  border-color: var(--text) transparent transparent transparent;
  top: 48%;
  right: 0;
  transition: all 0.25s;
}
nav li .sub-menu {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  padding: 5px 0;
  background: white;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-out;
}
nav li .sub-menu a {
  padding: 15px;
}
nav .pll-parent-menu-item a {
  display: flex;
  align-items: center;
  gap: 8px;
}
nav .pll-parent-menu-item a img {
  max-width: initial;
}
nav li.lang-item a {
  display: flex;
  align-items: center;
  gap: 8px;
}
@media only screen and (min-width: 992px) {
  nav {
    /* DESKTOP VIEW */
  }
  nav:not(.mobile) {
    /* top level desktop menu styles */
    /* items desktop */
  }
  nav:not(.mobile) .main-menu {
    align-items: center;
  }
  nav:not(.mobile) .main-menu > li {
    display: inline-block;
    position: relative;
    height: 100%;
    margin-left: 40px;
  }
  nav:not(.mobile) .main-menu > li:first-child {
    margin-left: 0;
  }
  nav:not(.mobile) .main-menu > li:after {
    position: absolute;
    content: "";
    width: 0;
    height: 2px;
    background: var(--accent);
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
  }
  nav:not(.mobile) .main-menu > li:hover:after {
    width: 75%;
    transition: width 0.3s ease;
  }
  nav:not(.mobile) .main-menu > li.current-menu-item:after {
    width: 60%;
  }
  nav:not(.mobile) .main-menu > li > a {
    padding: 15px 15px 15px 0;
  }
  nav:not(.mobile) .main-menu > li.lang-item a {
    padding-right: 0;
  }
  nav:not(.mobile) .menu-item {
    /* first submenu position */
  }
  nav:not(.mobile) .menu-item .sub-menu {
    left: 0;
    top: 130%;
    /* next submenu position  */
  }
  nav:not(.mobile) .menu-item .sub-menu .menu-item:hover {
    background: #f7f7f7;
  }
  nav:not(.mobile) .menu-item .sub-menu .submenu-toggle:after {
    height: 29px;
    border-style: solid;
    border-width: 2px;
    border-color: var(--accent);
    top: 22%;
  }
  nav:not(.mobile) .menu-item .sub-menu .sub-menu {
    top: 100%;
    left: 100%;
    transition: all 0.3s ease-out;
  }
  nav:not(.mobile) .menu-item:hover > .sub-menu {
    visibility: visible;
    opacity: 1;
    top: 100%;
    transition: all 0.3s ease-out;
  }
  nav:not(.mobile) .menu-item:hover > .sub-menu .sub-menu {
    top: -5px;
  }
}
@media only screen and (max-width: 991px) {
  nav {
    background-color: #fff;
    padding-top: 70px;
    padding-bottom: 30px;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: auto;
    width: 320px;
    height: 100%;
    z-index: 9999;
    transform: translateX(100%);
  }
  nav.active {
    transform: translateX(0);
  }
  nav + .menu-toggle {
    display: block;
  }
  nav .close-menu-btn {
    display: block;
  }
  nav .main-menu {
    width: 100%;
    height: 100%;
    overflow-y: auto;
    flex-direction: column;
  }
  nav .main-menu li {
    width: 100%;
    margin-left: 0;
  }
  nav .main-menu li.lang-item img {
    display: inline-block;
  }
  nav .main-menu li a {
    padding: 10px 60px 10px 20px;
    text-align: right;
    font-size: 20px;
    font-weight: 600;
    white-space: break-spaces;
  }
  nav .main-menu .sub-menu {
    position: relative;
    height: 0;
    padding: 0;
    box-shadow: none;
    border-top: 1px solid #ececec;
    border-bottom: 1px solid #ececec;
    width: 100%;
    transform: none;
    transition: none;
  }
  nav .main-menu .sub-menu.active {
    height: auto;
    opacity: 1;
    visibility: visible;
  }
  nav .main-menu .submenu-toggle {
    cursor: pointer;
    pointer-events: auto;
    width: 45px;
    background-color: rgba(0, 0, 0, 0.03);
  }
  nav .main-menu .submenu-toggle:after {
    top: 23px;
    right: 18px;
    border-top-color: #000;
    transform-origin: 50% 25%;
    transform: rotate(-90deg);
    transition: transform 0.3s ease;
  }
  nav .main-menu .submenu-toggle.active:after {
    transform: rotate(0);
    transition: transform 0.3s ease;
  }
  nav .main-menu .pll-parent-menu-item a {
    padding: 10px 60px 10px 15px;
    justify-content: end;
  }
  nav .main-menu .pll-parent-menu-item a img {
    margin: 7px 0;
  }
  nav .main-menu li.lang-item a {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 8px;
  }
}
nav.mobile {
  background-color: #fff;
  padding-top: 70px;
  padding-bottom: 30px;
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: auto;
  width: 320px;
  height: 100%;
  z-index: 9999;
  transform: translateX(100%);
}
nav.mobile.active {
  transform: translateX(0);
}
nav.mobile + .menu-toggle {
  display: block;
}
nav.mobile .close-menu-btn {
  display: block;
}
nav.mobile .main-menu {
  width: 100%;
  height: 100%;
  overflow-y: auto;
  flex-direction: column;
}
nav.mobile .main-menu li {
  width: 100%;
  margin-left: 0;
}
nav.mobile .main-menu li.lang-item img {
  display: inline-block;
}
nav.mobile .main-menu li a {
  padding: 10px 60px 10px 20px;
  text-align: right;
  font-size: 20px;
  font-weight: 600;
  white-space: break-spaces;
}
nav.mobile .main-menu .sub-menu {
  position: relative;
  height: 0;
  padding: 0;
  box-shadow: none;
  border-top: 1px solid #ececec;
  border-bottom: 1px solid #ececec;
  width: 100%;
  transform: none;
  transition: none;
}
nav.mobile .main-menu .sub-menu.active {
  height: auto;
  opacity: 1;
  visibility: visible;
}
nav.mobile .main-menu .submenu-toggle {
  cursor: pointer;
  pointer-events: auto;
  width: 45px;
  background-color: rgba(0, 0, 0, 0.03);
}
nav.mobile .main-menu .submenu-toggle:after {
  top: 23px;
  right: 18px;
  border-top-color: #000;
  transform-origin: 50% 25%;
  transform: rotate(-90deg);
  transition: transform 0.3s ease;
}
nav.mobile .main-menu .submenu-toggle.active:after {
  transform: rotate(0);
  transition: transform 0.3s ease;
}
nav.mobile .main-menu .pll-parent-menu-item a {
  padding: 10px 60px 10px 15px;
  justify-content: end;
}
nav.mobile .main-menu .pll-parent-menu-item a img {
  margin: 7px 0;
}
nav.mobile .main-menu li.lang-item a {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 8px;
}

.menu-toggle {
  display: none;
  border: none;
  position: relative;
  width: 44px;
  height: 44px;
  margin-left: 30px;
  padding: 0;
  font-size: 26px;
  line-height: 0;
  color: var(--text);
  background-color: transparent;
  text-decoration: none;
}
.menu-toggle:hover {
  background-color: transparent;
}

.close-menu-btn {
  display: none;
  border: none;
  position: absolute;
  top: 15px;
  right: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  font-size: 32px;
  line-height: 0;
  color: #000;
  background-color: transparent;
  text-decoration: none;
}
.close-menu-btn:hover {
  background-color: transparent;
}

.menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
  background-color: rgba(0, 0, 0, 0.4);
}

.accent-stroke {
  stroke: var(--accent);
}

.accent-fill {
  fill: var(--accent);
}

html {
  box-sizing: border-box;
  height: 100%;
  font-size: 18px;
}

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

::placeholder {
  color: #666;
}

::selection {
  background-color: var(--selection-background);
  color: #fff;
}

body {
  min-width: 320px;
  font-family: var(--default-font);
  color: var(--text);
  font-size: 18px;
  line-height: 1.5;
  overflow-x: hidden;
  height: 100%;
  background-color: #fff;
}

body.block-editor-page {
  font-size: 13px;
}

body.block-editor-page label {
  display: inline;
}

.wp-block-group {
  padding-left: 15px;
  padding-right: 15px;
}

input, textarea {
  border: #666 1px solid;
}

a, button, input[type=submit] {
  transition: all 0.25s;
}

button,
input[type=submit] {
  cursor: pointer;
  border: none;
  background-color: #e5e5e5;
  padding: 10px 20px;
  line-height: 1;
}

textarea {
  min-height: 100px;
}

img,
.img-responsive {
  display: block;
  max-width: 100%;
  height: auto;
}

.img-fluid {
  width: 100%;
}

b, strong {
  font-weight: bold;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 1rem;
  line-height: 1.25;
  font-weight: 700;
  color: #000;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

embed, iframe, object {
  max-width: 100%;
}

figure {
  margin: 1rem 0;
}

table {
  margin: 1.5rem 0;
  width: 100%;
  border-collapse: collapse;
}

.clearfix::after {
  content: "";
  display: table;
  clear: both;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-left {
  text-align: left;
}

.ml-a {
  margin-left: auto;
}

.mt-a {
  margin-top: auto;
}

.no-padding {
  margin-left: var(--minus-gutter);
  margin-right: var(--minus-gutter);
}

.transition {
  transition: all 0.25s;
}

.transition-none {
  transition: none !important;
}

.transition-none::before, .transition-none::after {
  transition: none !important;
}

.ibg {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}

.ibg img {
  width: 0;
  height: 0;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
}

.table-responsive {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.sr-only,
.screen-reader-text,
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  clip-path: inset(50%);
  border: 0;
}

.sr-only-focusable:active,
.sr-only-focusable:focus {
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  white-space: normal;
  clip-path: none;
  background-color: #eee;
  color: #444;
  display: block;
  left: 5px;
  line-height: normal;
  padding: 15px 20px;
  text-decoration: none;
  top: 5px;
  z-index: 100000;
}

.loader {
  background: #fff url("../img/loader.svg") no-repeat center/80px 80px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  bottom: 0;
  z-index: 9999;
}

.to-top {
  position: fixed;
  left: 30px;
  bottom: 30px;
  width: 40px;
  height: 40px;
  text-align: center;
  font-size: 0;
  z-index: 50;
  opacity: 0.7;
  color: #fff;
  background-color: var(--accent);
  transition: all 0.25s;
  transform: translateX(-100px);
}

.to-top::before {
  content: "";
  width: 14px;
  height: 14px;
  border: 2px solid #fff;
  border-left: 0;
  border-bottom: 0;
  transform: rotate(-45deg);
  position: absolute;
  top: 16px;
  left: 13px;
}

.to-top.active {
  transform: translateX(0);
}

.to-top:hover {
  opacity: 1;
}

.site {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.site-main {
  padding-top: 100px;
}

.z-container {
  width: 100%;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding-left: var(--gutter-half);
  padding-right: var(--gutter-half);
}

.z-btn {
  display: inline-block;
  border: none;
  outline: none;
  font-size: 14px;
  text-transform: uppercase;
  padding: 15px 20px;
  letter-spacing: 1px;
  color: var(--text);
  background-color: #ddd;
}

.z-btn:hover, .z-btn:active, .z-btn:focus {
  opacity: 0.8;
  color: var(--text);
  text-decoration: none;
}

.z-btn-accent {
  background-color: var(--accent);
  color: #fff;
}

.z-btn-accent:hover, .z-btn-accent:active, .z-btn-accent:focus {
  color: #fff;
}

.z-btn-bordered {
  background-color: transparent;
  font-weight: 500;
  border: 1px solid #C0C0C0;
  padding: 15px 40px;
}

.z-btn-bordered:hover, .z-btn-bordered:active, .z-btn-bordered:focus {
  opacity: 1;
  color: #fff;
  border-color: var(--accent);
  background-color: var(--accent);
}

.home .header-logo,
.home .site-branding, .page-template-front-page .header-logo,
.page-template-front-page .site-branding {
  width: 225px;
  transform: translateY(15px);
  transition: all 0.25s;
}

.home .site-header.scroll .header-logo,
.home .site-header.scroll .site-branding, .page-template-front-page .site-header.scroll .header-logo,
.page-template-front-page .site-header.scroll .site-branding {
  width: 120px;
  transform: translateY(0);
}

.home .site, .page-template-front-page .site {
  position: relative;
}

.home .site::before, .page-template-front-page .site::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 460px;
  height: 500px;
  background-color: #F3F3F3;
  opacity: 0.5;
  z-index: -1;
}

.site-header {
  padding: 20px 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  transition: padding 0.25s, background-color 0.25s;
  z-index: 100;
  align-items: center;
}

.site-header.scroll {
  padding: 10px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  background-color: #fff;
}

.hero-video-btn-wrapper {
  margin-top: 50px;
}

@media only screen and (max-width: 767px) {
  .site-header {
    padding: 10px 0;
  }
}
.header-inner {
  width: 100%;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding-left: var(--gutter-half);
  padding-right: var(--gutter-half);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.header-logo,
.site-branding {
  flex-shrink: 0;
  width: 120px;
  max-height: 60px;
  margin-right: 15px;
}

.header-logo a,
.site-branding a {
  display: block;
}

.header-logo img,
.site-branding img {
  transition: all 0.25s;
  height: 60px;
}

.header-logo img:hover,
.site-branding img:hover {
  opacity: 0.8;
}

.header-widget-search {
  display: none;
  margin-left: 30px;
  margin-right: auto;
  width: 100%;
  max-width: 600px;
}

.header-btn-search {
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  display: inline-block;
  padding: 5px 10px;
  color: var(--accent);
  margin-left: auto;
  display: none;
}

.header-btn-search:hover {
  text-decoration: none;
  color: var(--accent);
}

.home-hero {
  padding-bottom: 60px;
}

.hero-left {
  max-width: 510px;
  padding-top: 85px;
}

.hero-title {
  font-size: 50px;
}

.title-white {
  color: #fff;
}

.title-accent {
  color: var(--accent);
}

.hero-subtitle {
  color: #000;
  margin-bottom: 45px;
}

.text-white {
  color: #fff;
}

.hero-widget-search {
  position: relative;
  z-index: 1;
  background-color: #FFFFFF;
  min-height: 110px;
}
.hero-widget-search.be-panel {
  box-shadow: 0px 24px 44px rgba(0, 0, 0, 0.07);
}

.hero-widget-search::before {
  content: "Loading...";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #888;
}

.home-hero .hero-widget-search {
  width: 950px;
}

.play-video-btn {
  border: none;
  outline: none;
  display: inline-block;
  background-color: transparent;
  font-size: 14px;
  font-weight: 500;
  color: #000;
  text-transform: uppercase;
  padding-right: 62px;
  line-height: 50px;
  position: relative;
}

.play-video-btn::before {
  content: "";
  width: 48px;
  height: 48px;
  background: url(../img/icons/video-btn.png) no-repeat center/cover;
  position: absolute;
  top: 1px;
  right: 1px;
}

.play-video-btn:hover {
  color: var(--accent);
  transform: translateY(-3px);
  text-decoration: none;
}

.hero-right {
  min-height: 600px;
}

.hero-img {
  margin-left: var(--minus-gutter);
  margin-right: var(--minus-gutter);
}

.hero-widget-weather {
  position: relative;
  width: 320px;
  z-index: 1;
  margin-top: -80px;
  margin-left: auto;
  margin-right: 30px;
  box-shadow: 0px 24px 44px rgba(0, 0, 0, 0.07);
}
@keyframes zFadeInUp {
  0% {
    opacity: 0;
    transform: translate3d(0, 15%, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes zZoomOut {
  0% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes zfadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.single-slick-prev,
.single-slick-next {
  width: 40px;
  height: 40px;
  text-align: center;
  font-size: 0;
  background-color: #f3f3f3;
  transition: all 0.25s;
  z-index: 1;
  position: absolute;
  top: 50%;
  margin-top: -20px;
}

.single-slick-prev:hover,
.single-slick-next:hover {
  background-color: var(--accent);
}

.single-slick-prev:hover::before,
.single-slick-next:hover::before {
  border-color: #fff;
}

.single-slick-prev::before,
.single-slick-next::before {
  content: "";
  width: 10px;
  height: 10px;
  border: 1px solid var(--accent);
  border-left: 0;
  border-bottom: 0;
  position: absolute;
  top: 15px;
}

.single-slick-prev:hover,
.single-slick-next:hover {
  opacity: 1 !important;
}

.single-slick-prev {
  left: 10px;
}

.single-slick-prev::before {
  transform: rotate(-135deg);
  left: 16px;
}

.single-slick-next {
  right: 20px;
}

.single-slick-next::before {
  transform: rotate(45deg);
  left: 13px;
}

.slick-dots {
  bottom: -45px;
}

.slick-dots li {
  margin: 0 2px;
}

.slick-dots li button::before {
  font-size: 10px;
  color: #C0C0C0;
  opacity: 1;
}

.slick-dots li.slick-active button::before {
  color: var(--accent);
}

.slick-dotted.slick-slider {
  margin-bottom: 50px;
}

.section-slider {
  padding: 30px 0;
}

.slider-wrapper {
  margin-bottom: 50px;
}

.single-slider .single-slick-prev,
.single-slider .single-slick-next {
  top: auto;
  margin-top: 0;
  bottom: -50px;
}

.single-slider .single-slick-prev {
  left: 0;
}

.single-slider .single-slick-next {
  left: 50px;
}

.single-slider .slick-dots {
  text-align: right;
}

.single-slider .slick-active .animated-slide .slide-img img {
  animation: zZoomOut 3s both 1s;
}

.single-slider .slick-active .animated-slide .slide-content {
  animation: zfadeIn 1s both 1s;
}

.single-slider .slick-active .animated-slide .slide-title {
  animation: zFadeInUp 1s both 1s;
}

.single-slider .slick-active .animated-slide .slide-text {
  animation: zFadeInUp 1s both 1.5s;
}

.single-slider .slick-active .animated-slide .slide-btn {
  animation: zFadeInUp 1s both 2s;
}

.single-slider .animated-slide .slide-img img {
  transform: scale(1.1);
}

.single-slider .animated-slide .slide-content {
  opacity: 0;
}

.single-slider .animated-slide .slide-title {
  opacity: 0;
}

.single-slider .animated-slide .slide-text {
  opacity: 0;
}

.single-slider .animated-slide .slide-btn {
  opacity: 0;
}

.single-slide {
  position: relative;
}

.slide-img {
  padding-top: 51%;
  position: relative;
  overflow: hidden;
}

.slide-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-content {
  width: 49%;
  position: absolute;
  padding: 40px;
  top: 0;
  left: 0;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.slide-content-inner {
  max-width: 480px;
}

.slide-title {
  font-size: 40px;
  color: #fff;
  margin-bottom: 20px;
}

.slide-text {
  color: #fff;
}

.slide-text p {
  color: #fff;
}

.slide-btn {
  margin-top: 20px;
}

.section-title {
  font-size: 40px;
}

.section-services {
  padding: 100px 0 55px;
}

.service-item {
  padding: 40px 0 20px;
  text-align: center;
  transition: transform 0.25s;
}

.service-item:hover {
  transform: translateY(-5px);
}

.service-item .img-wrapper {
  width: 100px;
  display: inline-block;
  margin-bottom: 30px;
  text-align: center;
}

.service-item .img-wrapper img {
  display: inline-block;
}

.service-item-title {
  font-weight: 400;
  color: #000;
  font-size: 18px;
}

.serv-show-more-btn {
  cursor: pointer;
}

.serv-show-more-btn .service-item-title {
  color: var(--accent);
  font-weight: 800;
}

.hidden-services {
  display: none;
}

.section-offers {
  padding: 60px 0;
}

.offers-header {
  display: flex;
  flex-wrap: wpap;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
  position: relative;
}

.z-tabs {
  display: flex;
  border-bottom: 2px solid #C0C0C0;
}

.z-tab {
  display: block;
  padding: 10px 0;
  font-weight: 600;
  font-size: 14px;
  color: var(--text);
  background-color: transparent;
  position: relative;
  outline: none;
}

.z-tab::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent);
  transition: width 0.25s;
}

.z-tab.active, .z-tab:focus {
  outline: none;
  color: var(--accent);
}

.z-tab.active::before, .z-tab:focus::before {
  width: 100%;
}

.z-tab + .z-tab {
  margin-left: 35px;
}

.offer-item {
  margin-bottom: 35px;
  display: block;
}

.offer-item .img-wrapper {
  position: relative;
  padding-top: 100%;
  overflow: hidden;
  margin-bottom: 25px;
}

.offer-item .img-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s;
}

.offer-item:hover {
  text-decoration: none;
}

.offer-item:hover .img-wrapper img {
  transform: scale(1.05);
}

.offer-item:hover .offer-title {
  color: var(--accent);
}

.offer-title {
  font-size: 30px;
  font-weight: 500;
  transition: color 0.25s;
}

.offer-text {
  font-size: 14px;
  color: var(--text);
}

.offer-text p {
  font-size: 14px;
  color: var(--text);
}

.offer-button-wrapper {
  text-align: center;
}

.section-image-text {
  padding: 60px 0;
}

.section-image-text.content-wide .image-text-content-wrapper {
  margin-right: 0;
  margin-left: -100px;
  padding: 40px;
  box-shadow: 0px 24px 44px rgba(0, 0, 0, 0.07);
}

.section-image-text.content-wide-reverse .image-text-content-wrapper {
  margin-left: 0;
  margin-right: -100px;
  padding: 40px;
  box-shadow: 0px 24px 44px rgba(0, 0, 0, 0.07);
}

.section-image-text .img-wrapper {
  overflow: hidden;
  position: relative;
  padding-top: 100%;
}

.section-image-text .img-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.section-image-text .img-wrapper:hover img {
  transform: scale(1.05);
}

.image-text-content-wrapper {
  padding: 40px 25px;
  background-color: #FFFFFF;
}

.img-text-btn {
  padding: 18px 40px;
  margin-top: 10px;
}

.section-gallery {
  padding: 60px 0 35px;
}

.section-gallery .section-title {
  margin-bottom: 40px;
}

.gallery-inner {
  padding: 40px;
  background-color: #fff;
  box-shadow: 0px 24px 44px rgba(0, 0, 0, 0.07);
}

.hidden {
  display: none;
}

.gallery-item {
  position: relative;
  padding-top: 100%;
  margin-bottom: 23px;
}

.gallery-item.gallery-item-long {
  padding-top: 211.5%;
}

.gallery-item:hover .gallery-description {
  height: 100%;
}

.gallery-item:hover .gallery-title {
  bottom: 40%;
}

.gallery-item-long .gallery-item {
  padding-top: 211.5%;
}

.gallery-description {
  position: absolute;
  height: 60%;
  width: 100%;
  bottom: 0;
  left: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
  color: #fff;
  pointer-events: none;
  padding: 25px 15px;
  transition: all 0.5s;
}

.gallery-title {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  position: absolute;
  bottom: 10%;
  margin-bottom: 0;
  transition: all 0.5s;
}

.gallery-item-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.gallery-item-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mfp-bg {
  background: #9e9e9e;
  opacity: 0.9;
}

.mfp-arrow-right,
.mfp-arrow-left {
  opacity: 1;
}

.mfp-arrow-right::before,
.mfp-arrow-left::before {
  display: none;
}

.mfp-arrow-right::after,
.mfp-arrow-left::after {
  width: 25px;
  height: 25px;
  border: 4px solid #fff;
  border-left: none;
  border-bottom: none;
}

.mfp-arrow-left::after {
  transform: rotate(-135deg);
}

.mfp-arrow-right::after {
  transform: rotate(45deg);
}

button.mfp-close {
  position: fixed;
  top: 15px;
  right: 15px !important;
  font-size: 50px;
  opacity: 1;
}

.site-footer {
  background-color: #f3f3f3;
  padding: 65px 0 10px;
  margin-top: auto;
}

.footer-last-col {
  padding-right: 85px;
}

.footer-logo {
  max-width: 210px;
  margin-bottom: 30px;
}

.footer-logo a {
  display: block;
}

.footer-logo a:hover {
  opacity: 0.8;
}

.footer-list {
  margin: 0;
  margin-bottom: 30px;
  padding: 0;
  list-style-type: none;
}

.footer-list li {
  margin-bottom: 18px;
}

.footer-list a {
  display: block;
  color: var(--text);
  font-size: 14px;
}

.footer-list a:hover {
  color: var(--accent);
  text-decoration: underline;
}

.footer-menu {
  display: flex;
  flex-wrap: wrap;
}
.footer-menu .pll-parent-menu-item {
  display: none;
}

.footer-menu li {
  width: 50%;
}

.footer-contacts li {
  position: relative;
  padding-left: 30px;
}

.footer-contacts a {
  padding-left: 28px;
  position: relative;
}

.footer-contacts a svg {
  position: absolute;
  left: 0;
  max-width: 20px;
  max-height: 20px;
}

.footer-socials {
  margin: 0;
  margin-bottom: 10px;
  padding: 0;
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
}

.footer-socials li {
  margin-right: 15px;
  margin-bottom: 10px;
}

.footer-socials li:last-child {
  margin-right: 0;
}

.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(222, 214, 207, 0.3);
  background-size: 20px 20px;
  background-repeat: no-repeat;
  background-position: center;
  font-size: 0;
}

.footer-socials a:hover {
  background-color: rgba(222, 214, 207, 0.9);
}

.footer-socials a svg {
  max-width: 20px;
  max-height: 20px;
}

.footer-policy-menu {
  margin: 0;
  margin-bottom: 20px;
  padding: 0;
  list-style-type: none;
}

.footer-policy-menu li {
  margin-bottom: 5px;
}

.footer-policy-menu a {
  font-size: 12px;
  text-decoration: underline;
  color: #C0C0C0;
}

.footer-policy-menu a:hover {
  text-decoration: none;
  color: var(--accent);
}

.widget-status {
  width: 114px;
  height: 192px;
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 10;
}

.archive-hero {
  background-repeat: no-repeat;
  background-position: right bottom;
  padding-top: 125px;
  margin-bottom: 40px;
  position: relative;
}

.archive-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
}

.archive-hero .hero-widget-search {
  margin-top: 35px;
  margin-bottom: -40px;
}

.overlay-0::before {
  background-color: transparent;
}

.overlay-10::before {
  background-color: rgba(0, 0, 0, 0.1);
}

.overlay-20::before {
  background-color: rgba(0, 0, 0, 0.2);
}

.overlay-30::before {
  background-color: rgba(0, 0, 0, 0.3);
}

.overlay-40::before {
  background-color: rgba(0, 0, 0, 0.4);
}

.overlay-50::before {
  background-color: rgba(0, 0, 0, 0.5);
}

.overlay-60::before {
  background-color: rgba(0, 0, 0, 0.6);
}

.overlay-70::before {
  background-color: rgba(0, 0, 0, 0.7);
}

.overlay-80::before {
  background-color: rgba(0, 0, 0, 0.8);
}

.overlay-90::before {
  background-color: rgba(0, 0, 0, 0.9);
}

.overlay-100::before {
  background-color: black;
}

.archive-hero-text {
  position: relative;
  z-index: 1;
}

.section-rooms {
  padding: 60px 0;
}

.section-rooms .section-title {
  margin-bottom: 40px;
}

.room-item {
  padding: 20px;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  box-shadow: 0px 24px 44px rgba(0, 0, 0, 0.07);
  margin-bottom: 30px;
  height: calc(100% - 30px);
}

.room-item .img-wrapper {
  width: 100%;
  position: relative;
  padding-top: 88%;
  margin-bottom: 25px;
  overflow: hidden;
}

.room-item .img-wrapper:hover img {
  transform: scale(1.05);
}

.room-item .img-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s;
}

.room-content {
  width: 100%;
}

.room-title {
  font-size: 30px;
  margin-bottom: 17px;
}

.room-title a {
  color: #000;
}

.room-title a:hover {
  color: var(--accent);
  text-decoration: none;
}

.room-info {
  margin-bottom: 25px;
}

.room-info-item {
  display: inline-flex;
  align-items: center;
  vertical-align: top;
  position: relative;
  padding-left: 0;
  padding-right: 10px;
  margin-right: 10px;
  font-size: 18px;
  color: #000;
}

.room-info-item:last-child {
  margin-right: 0;
}

.room-info-item:last-child::after {
  display: none;
}

.room-info-item::before {
  content: "";
  width: 28px;
  height: 28px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  left: 0;
  top: 0;
}

.room-info-item::after {
  content: "";
  width: 1px;
  height: 70%;
  background-color: var(--text);
  position: absolute;
  right: 0;
  top: 15%;
}

.room-info-item svg {
  margin-right: 10px;
}

.room-descr {
  font-size: 14px;
  color: var(--text);
  margin-bottom: 20px;
}

.room-descr p {
  font-size: 14px;
  color: var(--text);
  margin-bottom: 20px;
}

.room-footer {
  width: 100%;
  margin-top: auto;
}

.room-btn {
  position: relative;
  padding-right: 60px;
}

.room-btn:hover::before {
  border-color: #fff;
  right: 40px;
}

.room-btn::before {
  content: "";
  width: 8px;
  height: 8px;
  border: 1px solid var(--text);
  border-bottom: none;
  border-left: none;
  transform: rotate(45deg);
  position: absolute;
  transition: all 0.25s;
  top: 18px;
  right: 45px;
}

.single-room-header {
  padding-top: 20px;
  padding-bottom: 10px;
}

.single-room-header-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.single-room-title {
  font-size: 50px;
  margin-right: 20px;
}

.single-room-cat-link {
  display: inline-block;
  padding: 10px 20px;
  background-color: #f3f3f3;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  margin-right: 10px;
  color: #000;
  margin-bottom: 10px;
}

.single-room-cat-link:hover {
  background-color: #888;
  color: #fff;
  text-decoration: none;
}

.single-room-hero {
  margin-bottom: 20px;
}

.single-room-gallery {
  margin-bottom: 40px;
}

.single-room-gallery .slick-slide > div {
  line-height: 0;
}

.room-slider-for {
  margin-bottom: 20px;
}

.room-gallery-slide {
  display: block;
  position: relative;
  padding-top: 62%;
}

.room-gallery-slide img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.room-gallery-thumb {
  display: block;
  position: relative;
  padding-top: 58%;
}

.room-gallery-thumb img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.room-slider-nav .slick-slide {
  margin: 0 10px;
  outline: none;
  position: relative;
}

.room-slider-nav .slick-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
  transition: background 0.25s;
}

.room-slider-nav .slick-slide:hover:before {
  background-color: transparent;
}

.room-slider-nav .slick-slide a:focus {
  outline: none;
}

.room-slider-nav .slick-slide.slick-current::before {
  background-color: transparent;
}

.room-slider-nav .slick-list {
  margin: 0 -10px;
}

.single-room-features {
  margin-bottom: 55px;
}

.single-room-shot-description {
  margin-bottom: 20px;
  color: var(--text);
  font-size: 18px;
}

.single-room-features-list {
  margin: 0 -10px 20px -10px;
  padding: 0;
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.single-room-feature {
  display: block;
  flex-grow: 1;
  width: 40%;
  padding: 13px 15px 13px 50px;
  background: var(--bgaccent);
  margin: 10px;
  position: relative;
  font-size: 12px;
  color: var(--text);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  transition: transform 0.25s;
}

.single-room-feature svg {
  position: absolute;
  top: 50%;
  margin-top: -12px;
  left: 15px;
  width: 24px;
  height: 24px;
}

.single-room-feature span {
  font-size: 18px;
  color: #000;
  display: inline-block;
  font-weight: 500;
  margin-right: 10px;
}

.single-room-feature:hover {
  transform: translateY(-3px);
}

.single-room-extra-features {
  margin: 0 0 20px 0;
  padding: 0;
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

.single-room-extra-feature {
  position: relative;
  min-width: 25%;
  padding: 0px 10px 15px 10px;
  text-align: center;
  color: #000;
  font-size: 18px;
  font-weight: 700;
  margin: 0 5px 10px 5px;
  transition: transform 0.25s;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.single-room-extra-feature:hover {
  transform: scale(1.05);
}

.extra-feature-icon {
  background-color: var(--bgaccent);
  width: 58px;
  height: 58px;
  padding: 5px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.extra-feature-icon img {
  max-width: 28px;
}

.extra-feature-parking::before {
  background-image: url(../img/icons/rooms/bedrooms.svg);
}

.extra-feature-wifi::before {
  background-image: url(../img/icons/rooms/livingrooms.svg);
}

.extra-feature-pets::before {
  background-image: url(../img/icons/rooms/bath.svg);
}

.single-room-content {
  padding: 40px 0;
}

.single-room-description {
  max-width: 700px;
  margin-bottom: 40px;
}

.single-room-description-title {
  font-size: 30px;
}

.single-room-description-text {
  margin-bottom: 40px;
}

.single-room-descr-features h3 {
  padding-left: 36px;
  font-size: 18px;
  position: relative;
  margin-bottom: 25px;
}

.single-room-descr-features h3 .icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.single-room-descr-features h3 img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.single-room-descr-features-list {
  margin: 0 0 40px 0;
  padding: 0;
  list-style-type: none;
}

.single-room-descr-features-list li {
  position: relative;
  padding: 5px 10px 5px 25px;
  border-radius: 25px;
  background-color: #f3f3f3;
  font-size: 14px;
  color: #000;
  margin-bottom: 10px;
  display: table;
  transition: background 0.25s;
}

.single-room-descr-features-list li::before {
  content: "";
  width: 9px;
  height: 5px;
  border: 1px solid var(--accent);
  border-top: 0;
  border-right: 0;
  transform: rotate(-45deg);
  position: absolute;
  top: 11px;
  left: 11px;
}

.single-room-descr-features-list li:hover {
  background-color: #ccc;
}

.single-room-offers {
  padding-top: 15px;
}

.single-room-offer {
  display: block;
  overflow: hidden;
  margin-bottom: 40px;
  position: relative;
}

.single-room-offer:hover {
  text-decoration: none;
}

.single-room-offer:hover img {
  transform: scale(1.05);
}

.single-room-offer:hover .single-room-offer-content {
  top: 0;
}

.single-room-offer .img-wrapper {
  position: relative;
  padding-top: 100%;
  overflow: hidden;
}

.single-room-offer .img-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s;
}

.single-room-offer-content {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 70%;
  background-color: rgba(0, 0, 0, 0.6);
  transition: all 0.5s;
  padding: 40px 30px 20px;
  overflow: hidden;
}

.single-room-offer-title {
  color: #fff;
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 40px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.single-room-offer-text {
  font-size: 16px;
  color: #fff;
}

.offers-search-wrapper {
  margin: 40px 0;
}

.section-office-archive {
  padding: 20px 0;
}

.rest-hero {
  padding: 15px 0;
}

.rest-schedules {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.rest-schedule {
  display: flex;
  margin-right: 30px;
  margin-bottom: 10px;
}

.rest-schedule-title {
  font-size: 14px;
  text-transform: uppercase;
  color: #000;
  letter-spacing: 1px;
  margin-right: 20px;
}

.rest-schedule-info {
  font-size: 14px;
  color: #000;
  font-weight: 700;
}

.rest-hero-contacts a {
  display: block;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 10px;
}

.rest-hero-bottom {
  display: flex;
  flex-wrap: wrap;
}

.rest-hero-btn {
  padding-left: 40px;
  padding-right: 40px;
  margin-right: 15px;
  margin-bottom: 10px;
}

.section-rest-gallery {
  padding: 40px 0;
}

.rest-gallery-header {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}

.rest-slide-img {
  padding-top: 45%;
  position: relative;
}

.rest-slide-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-schedule {
  padding: 30px 0 60px;
}

.schedule-item {
  margin-bottom: 40px;
}

.schedule-item:hover img {
  transform: scale(1.05);
}

.schedule-item .img-wrapper {
  overflow: hidden;
  position: relative;
  padding-top: 50%;
  margin-bottom: 20px;
}

.schedule-item .img-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s;
}

.schedule-title {
  font-size: 32px;
  color: var(--accent);
  margin-bottom: 20px;
}

.schedule-text {
  font-size: 16px;
}

.section-rest-features {
  padding: 70px 0;
  background-color: var(--bgaccent);
}

.icon-with-text {
  padding: 25px 0;
  margin-bottom: 10px;
  position: relative;
}

.icon-with-text:hover .img-wrapper {
  transform: translateY(-5px);
}

.icon-with-text .img-wrapper {
  margin-bottom: 15px;
  max-width: 50px;
  height: 50px;
  transition: transform 0.25s;
}

.icon-with-text::before {
  content: "";
  width: 48px;
  height: 48px;
  position: absolute;
  top: 25px;
  left: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.icon-with-text-title {
  font-size: 21px;
  color: var(--accent);
  margin-bottom: 15px;
}

.icon-with-text-content {
  font-size: 14px;
}

.rest-features-info,
.columns-six-section {
  padding: 75px 0;
}

.title-with-text {
  padding: 25px 0;
}

.title-with-text-title {
  font-size: 18px;
  color: var(--accent);
  margin-bottom: 15px;
}

.title-with-text-text {
  font-size: 14px;
}

.title-with-text-text a {
  color: var(--accent);
  text-decoration: underline;
}

.title-with-text-text a:hover {
  color: var(--accent);
  text-decoration: none;
}

.entry-header {
  position: relative;
  min-height: 400px;
  max-height: 600px;
  overflow: hidden;
}

.entry-header.no-post-thumbnail {
  min-height: auto;
  max-height: none;
}

.entry-header.no-post-thumbnail .entry-header-content {
  position: relative;
  padding: 50px 0;
}

.entry-header.no-post-thumbnail .entry-header-content::before {
  background-color: rgba(0, 0, 0, 0.02);
}

.entry-header.no-post-thumbnail .entry-title {
  color: #000;
}

.single-post-thumbnail {
  margin: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.single-post-thumbnail img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.entry-header-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 50px 0;
  z-index: 1;
}

.entry-header-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
}

.entry-title {
  position: relative;
  z-index: 1;
  font-size: 50px;
  color: #fff;
  max-width: 800px;
  margin: auto;
}

.page-title {
  font-size: 50px;
}

.page-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 80px 0;
}

.page-content h1 {
  font-size: 50px;
}

.page-content h2 {
  font-size: 40px;
}

.page-content h3 {
  font-size: 30px;
}

.page-content h4 {
  font-size: 24px;
}

.page-content h5 {
  font-size: 18px;
}

.page-content h6 {
  font-size: 16px;
}

.page-content a:not(.z-btn) {
  text-decoration: underline;
  color: var(--accent);
}

.page-content a:not(.z-btn):hover {
  text-decoration: none;
}

.page-content ul, .page-content ol {
  padding: 0;
  list-style-type: none;
}

.page-content ul li, .page-content ol li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 18px;
}

.page-content ul li::before, .page-content ol li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--accent);
  position: absolute;
  left: 0;
  top: 10px;
}

.page-content .post-thumbnail {
  margin-bottom: 1.5rem;
}

.page-content figure {
  margin-bottom: 1.5rem;
  width: auto !important;
}

.page-content figcaption {
  padding: 10px 20px;
  color: #888;
  font-size: 0.875rem;
}

.page-content hr {
  margin: 30px 0;
  border: 0;
  border-top: 1px solid #ccc;
}

.page-content table {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 1rem;
}

.page-content table td, .page-content table th {
  border: 1px solid #ccc;
  padding: 5px 15px;
}

.page-content blockquote {
  color: #888;
  padding-left: 15px;
  margin-left: 15px;
  position: relative;
}

.page-content blockquote::before {
  content: "";
  position: absolute;
  width: 2px;
  height: 100%;
  background-color: var(--accent);
  top: 0;
  left: 0;
}

.wrapper-404 {
  margin: 40px 0;
  position: relative;
  min-height: 200px;
}

.inner-404 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
}

.content-404 {
  width: 100%;
  margin: auto;
  max-width: 700px;
  text-align: center;
}

.title-404 {
  font-size: 50px;
  margin-bottom: 35px;
}

.modal-open {
  overflow: hidden;
  height: 100%;
}

.x-modal {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0 15px;
  transition: all 0.3s;
  background-color: rgba(0, 0, 0, 0.3);
  overflow: hidden;
  z-index: 999;
}

.x-modal.active {
  opacity: 1;
  visibility: visible;
  overflow-x: hidden;
  overflow-y: auto;
}

.x-modal-inner {
  max-width: 500px;
  margin: 10% auto 25px;
  transition: transform 0.3s;
  transform: translateY(-50px);
}

.x-modal-inner.active {
  transform: translateY(0);
}

.x-modal-content {
  position: relative;
  padding: 50px 25px 30px;
  background-color: #fff;
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.2);
}

.close-modal-btn {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  font-size: 32px;
  line-height: 0;
  color: var(--text);
  background-color: transparent;
}

.modal-form-title {
  margin-bottom: 30px;
  font-size: 1.2rem;
  text-align: center;
}

.form-group {
  margin-bottom: 15px;
}

.input-text {
  width: 100%;
  padding: 8px 10px;
  border: 1px solid #ccc;
  background-color: #f5f5f5;
}

.modal-submit-wrapper {
  text-align: center;
}

.pagination-wrapper {
  margin: 30px 0 30px;
  text-align: center;
}

.pagination {
  display: inline-block;
}

.pagination .nav-links,
.pagination .page-links {
  display: flex;
  align-items: center;
}

.pagination .nav-links a, .pagination .nav-links span,
.pagination .page-links a,
.pagination .page-links span {
  min-width: 40px;
  height: 40px;
  padding: 0 10px;
  background-color: transparent;
  border: 1px solid #ccc;
  margin-right: 10px;
  font-size: 16px;
  color: #000;
  text-align: center;
  line-height: 38px;
  text-decoration: none;
}

.pagination .nav-links a:last-child, .pagination .nav-links span:last-child,
.pagination .page-links a:last-child,
.pagination .page-links span:last-child {
  margin-right: 0;
}

.pagination .nav-links a:hover,
.pagination .page-links a:hover {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
}

.pagination .nav-links .current,
.pagination .page-links .current {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
}

.pagination .nav-links span,
.pagination .page-links span {
  cursor: not-allowed;
}

.post-navigation-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.post-navigation {
  margin: 50px auto;
}

.post-navigation .nav-links {
  display: flex;
  justify-content: space-between;
}

.post-navigation .nav-links a {
  padding: 8px 20px;
  display: inline-block;
  background-color: #fff;
  border: 1px solid #000;
  color: #000;
  margin-bottom: 10px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  max-width: 100%;
}

.post-navigation .nav-links a:hover {
  text-decoration: none;
  color: #000;
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.15);
}

.post-navigation .nav-previous {
  max-width: 50%;
}

.post-navigation .nav-next {
  max-width: 50%;
  text-align: right;
  margin-left: auto;
}

.comments-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.comments-area {
  padding: 30px 20px;
  background-color: #fff;
  margin-top: 40px;
  margin-bottom: 40px;
}

.comments-area a {
  color: var(--accent);
}

.comments-area a:hover {
  color: var(--accent);
  text-decoration: underline;
}

.comment-content {
  background-color: #fafafa;
  padding: 10px 10px;
  border: 1px solid #eee;
  margin-top: 15px;
  margin-bottom: 15px;
}

.comments-title {
  font-size: 24px;
}

.comment-reply-title {
  font-size: 20px;
}

.comment-form label {
  display: block;
}

.comment-form .comment-form-cookies-consent label {
  display: inline-block;
}

.comment-form input[type=text],
.comment-form input[type=email],
.comment-form input[type=url],
.comment-form textarea {
  width: 100%;
  max-width: 500px;
  border: 1px solid #eee;
  padding: 10px 20px;
  background-color: #fafafa;
}

.comment-form textarea {
  resize: vertical;
}

.comment-form .form-submit .submit {
  display: inline-block;
  border: none;
  padding: 12px 25px;
  background: var(--accent);
  text-align: center;
  color: #fff;
}

.comment-form .form-submit .submit:hover {
  color: #fff;
  opacity: 0.8;
  text-decoration: none;
}

/* Captions
--------------------------------------------- */
.wp-caption {
  margin-bottom: 1.5em;
  max-width: 100%;
}

.wp-caption img[class*=wp-image-] {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption .wp-caption-text {
  margin: 0.8075em 0;
}

.wp-caption-text {
  text-align: center;
}

/* Galleries
--------------------------------------------- */
.gallery {
  margin-bottom: 1.5em;
  display: grid;
  grid-gap: 1.5em;
}

.gallery-item {
  display: inline-block;
  text-align: center;
  width: 100%;
}

.gallery-columns-2 {
  grid-template-columns: repeat(2, 1fr);
}

.gallery-columns-3 {
  grid-template-columns: repeat(3, 1fr);
}

.gallery-columns-4 {
  grid-template-columns: repeat(4, 1fr);
}

.gallery-columns-5 {
  grid-template-columns: repeat(5, 1fr);
}

.gallery-columns-6 {
  grid-template-columns: repeat(6, 1fr);
}

.gallery-columns-7 {
  grid-template-columns: repeat(7, 1fr);
}

.gallery-columns-8 {
  grid-template-columns: repeat(8, 1fr);
}

.gallery-columns-9 {
  grid-template-columns: repeat(9, 1fr);
}

.gallery-caption {
  display: block;
}

/* Alignments
--------------------------------------------- */
.alignleft {
  float: left;
  margin-right: 1.5rem;
  margin-bottom: 1.5rem;
}

.alignright {
  float: right;
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.5rem;
}

/* Book online
--------------------------------------------- */
#wis2-panel {
  padding: 10px 20px 30px !important;
  background: #fff;
  position: relative;
  z-index: 1;
}

#wis2-panel .wis2-panel.wis2-panel--horizontal {
  display: flex !important;
  flex-direction: row !important;
  align-items: flex-end !important;
  padding-bottom: 0 !important;
}

#wis2-panel .wis2-button {
  white-space: nowrap;
}

#wis2-panel .wis2-el {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  padding: 0 10px !important;
  width: 100% !important;
  height: auto !important;
  margin-top: 10px !important;
}

#wis2-panel .wis2-el.wis2-button-hld {
  justify-content: flex-end;
}

#wis2-panel .wis2-button--primary {
  background: var(--accent) !important;
  border: none !important;
  padding: 5px 15px !important;
}

#wis2-panel .wis2-button--primary:hover {
  opacity: 0.85 !important;
}

#wis2-panel .wis2-title {
  display: none !important;
}

#wis2-panel .wis2-input-group .wis2-label {
  font-size: 12px !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  padding-top: 0 !important;
}

#wis2-panel .wis2-input-group .wis2-input {
  width: 100% !important;
  float: none !important;
  text-align: left !important;
  background: #f3f3f3 !important;
  border: none !important;
  margin-left: 0 !important;
}

#wis2-panel .wis2-input-group .wis2-input:before {
  color: var(--accent) !important;
}

.header-widget-search #wis2-panel {
  padding: 0 !important;
}

/** Single Offers **/
.single-offers .offer-title {
  font-size: 40px;
  font-weight: 700;
  margin: 0.5em 0 1em 0;
}
.single-offers .offer-content {
  margin-bottom: 50px;
}

/** Conferecnce  Page **/
.page-template-page-conference {
  /* forms */
}
.page-template-page-conference .main-packages {
  margin: 0px auto 0;
  border: 1px solid #CFCFCF;
  box-shadow: 0px 0px 0px 5px #fff;
  z-index: 99;
  background: white;
  display: inline-flex;
  align-items: center;
  border-radius: 8px;
  margin-bottom: 30px;
  overflow: hidden;
}
.page-template-page-conference .mb-30 {
  margin-bottom: 30px;
}
.page-template-page-conference .main-packages-wrapper {
  display: flex;
  align-items: center;
  margin-top: -30px;
}
.page-template-page-conference .main-package {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-grow: 1;
  padding: 10px 45px 5px;
  cursor: pointer;
  border-right: 1px solid #cfcfcf;
}
.page-template-page-conference .main-package:last-child {
  border-right: none;
}
.page-template-page-conference .main-package.active,
.page-template-page-conference .main-package:hover,
.page-template-page-conference .main-package.active .main-package__price,
.page-template-page-conference .main-package:hover .main-package__price {
  background: var(--accent);
  color: white;
}
.page-template-page-conference .main-package__price {
  font-weight: 700;
  font-size: 20px;
  color: var(--accent);
  line-height: 1;
}
.page-template-page-conference .main-package__ppl {
  font-weight: 700;
  font-size: 15px;
}
.page-template-page-conference .packages {
  margin-bottom: 60px;
}
.page-template-page-conference .package {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #F3F3F3;
  padding: 50px 70px 60px;
  text-align: center;
  height: 100%;
}
.page-template-page-conference .package .package-top {
  margin-bottom: 30px;
}
.page-template-page-conference .package .package-middle {
  flex-grow: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  margin-bottom: 30px;
  position: relative;
}
.page-template-page-conference .package h2 {
  line-height: 1;
  margin-bottom: 4px;
}
.page-template-page-conference .package__description {
  font-weight: 400;
  font-size: 15px;
}
.page-template-page-conference .package__price-to-compare {
  text-decoration-line: line-through;
  font-weight: 300;
  font-size: 30px;
  line-height: 140%;
}
.page-template-page-conference .package__price {
  font-weight: 700;
  font-size: 40px;
  line-height: 100%;
  color: var(--accent);
  margin-bottom: 60px;
}
.page-template-page-conference .package__price span {
  display: block;
  font-style: italic;
  font-weight: 400;
  font-size: 15px;
  line-height: 150%;
  color: var(--text);
}
.page-template-page-conference .package__sale {
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  padding: 8px 15px;
  background: var(--bgaccent);
  color: var(--accent);
  border-radius: 100px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}
.page-template-page-conference .package .z-btn {
  cursor: pointer;
  white-space: nowrap;
}
.page-template-page-conference .line-title {
  display: flex;
  align-items: center;
}
.page-template-page-conference .line-title .line {
  width: 100%;
  height: 1px;
  background-color: #000000;
  opacity: 0.1;
}
.page-template-page-conference .line-title > div {
  flex-grow: 1;
}
.page-template-page-conference .line-title > span {
  margin-left: 20px;
  margin-right: 20px;
  white-space: nowrap;
  font-weight: 400;
  font-size: 20px;
  line-height: 125%;
  opacity: 0.5;
}
.page-template-page-conference .custom-table {
  margin-bottom: 60px;
  margin-top: 40px;
}
.page-template-page-conference .custom-table .table-package {
  width: 188px;
}
.page-template-page-conference .custom-table td,
.page-template-page-conference .custom-table th {
  padding: 16px;
  text-align: center;
}
.page-template-page-conference .custom-table th h3 {
  font-weight: 700;
  font-size: 30px;
  line-height: 100%;
  margin-bottom: 4px;
  color: var(--accent);
}
.page-template-page-conference .custom-table th:first-child h3 {
  color: #000;
}
.page-template-page-conference .custom-table th p {
  font-style: italic;
  font-weight: 400;
  font-size: 15px;
  line-height: 150%;
  opacity: 0.85;
  margin-bottom: 0;
}
.page-template-page-conference .custom-table td b {
  font-size: 18px;
  opacity: 1;
  position: relative;
  margin-bottom: 8px;
  display: block;
  line-height: 1.25;
}
.page-template-page-conference .custom-table td b:before {
  width: 5px;
  height: 5px;
  content: "";
  background: #C4C4C4;
  position: absolute;
  left: -16px;
  top: 8px;
  border-radius: 100%;
}
.page-template-page-conference .custom-table td p {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 125%;
  opacity: 0.85;
  margin-bottom: 0;
}
.page-template-page-conference .custom-table td:first-child,
.page-template-page-conference .custom-table th:first-child {
  text-align: left;
}
.page-template-page-conference .custom-table th:first-child {
  padding-left: 0;
}
.page-template-page-conference .custom-table tr {
  border-bottom: 1px solid #ECECEC;
}
.page-template-page-conference .custom-table tr:first-child {
  border-bottom: 2px solid var(--accent);
}
.page-template-page-conference .custom-table th {
  border-radius: 10px 10px 0 0;
}
.page-template-page-conference .custom-table tr:last-child {
  border-top: 2px solid var(--accent);
  border-bottom: none;
}
.page-template-page-conference .custom-table tr:last-child td {
  border-radius: 0 0 10px 10px;
  border-bottom: none;
}
.page-template-page-conference .custom-table-button {
  background: var(--accent);
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  padding: 8px;
  width: 100%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  min-width: 120px;
  cursor: pointer;
  position: relative;
  width: 156px;
  height: 37px;
}
.page-template-page-conference .custom-table-button:after {
  position: absolute;
  width: 100%;
  text-align: center;
  content: attr(data-select-text);
}
.page-template-page-conference .active .custom-table-button:after {
  position: absolute;
  width: 100%;
  text-align: center;
  content: attr(data-deselect-text);
}
.page-template-page-conference .custom-table-button:hover {
  opacity: 0.85;
}
.page-template-page-conference .custom-table .check {
  width: 24px;
  height: 24px;
  margin: 0 auto;
}
.page-template-page-conference .custom-table .check.checked {
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='12' viewBox='0 0 16 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M15.7656 2.5114L6.56569 11.7643C6.25324 12.0786 5.74675 12.0786 5.4343 11.7643L0.234302 6.53429C-0.0781005 6.22015 -0.0781005 5.71068 0.234302 5.3965L1.36565 4.25863C1.67809 3.94443 2.18465 3.94443 2.49705 4.25863L5.99998 7.78173L13.503 0.235684C13.8154 -0.0785615 14.322 -0.0785615 14.6343 0.235684L15.7656 1.37354C16.0781 1.68773 16.0781 2.1972 15.7656 2.5114Z' fill='%23000000'/%3E%3C/svg%3E%0A");
  background-position: center center;
  background-repeat: no-repeat;
}
.page-template-page-conference .custom-table th.active,
.page-template-page-conference .custom-table td.active {
  background-color: var(--accent);
  color: #fff;
  border-bottom: 1px solid var(--accent);
}
.page-template-page-conference .custom-table th.active h3 {
  color: #fff;
}
.page-template-page-conference .custom-table td.active .custom-table-button {
  background-color: #fff;
  color: var(--accent);
}
.page-template-page-conference .custom-table td.active .check.checked {
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='12' viewBox='0 0 16 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M15.7656 2.5114L6.56569 11.7643C6.25324 12.0786 5.74675 12.0786 5.4343 11.7643L0.234302 6.53429C-0.0781005 6.22015 -0.0781005 5.71068 0.234302 5.3965L1.36565 4.25863C1.67809 3.94443 2.18465 3.94443 2.49705 4.25863L5.99998 7.78173L13.503 0.235684C13.8154 -0.0785615 14.322 -0.0785615 14.6343 0.235684L15.7656 1.37354C16.0781 1.68773 16.0781 2.1972 15.7656 2.5114Z' fill='white'/%3E%3C/svg%3E%0A");
}
.page-template-page-conference .conference-form-wrapper {
  background-color: #F3F3F3;
  border: 5px solid var(--accent);
  padding: 60px 60px 30px;
  margin-bottom: 120px;
}
.page-template-page-conference .conference-form-wrapper h3 {
  font-size: 30px;
}
.page-template-page-conference .conference-form-wrapper hr {
  height: 2px;
  background-color: var(--accent);
  margin-bottom: 20px;
}
.page-template-page-conference .conference-form-wrapper .total {
  font-weight: 700;
  font-size: 30px;
  line-height: 125%;
  color: #000;
}
.page-template-page-conference .conference-form-wrapper .summary {
  font-weight: 500;
  font-size: 12px;
  line-height: 125%;
  color: var(--accent);
  cursor: pointer;
  text-decoration: underline;
}
.page-template-page-conference .summary-table-wrapper {
  border: 2px dashed var(--accent);
  padding: 20px;
  display: none;
  margin-bottom: 30px;
  margin-top: 30px;
}
.page-template-page-conference table.summary-table {
  margin: 0;
}
.page-template-page-conference table.summary-table td {
  font-size: 12px;
  padding: 4px;
  width: 1%;
  white-space: nowrap;
}
.page-template-page-conference table.summary-table td:first-child {
  width: 30%;
  font-weight: 700;
  color: #000;
}
.page-template-page-conference table.summary-table td:last-child {
  font-weight: 700;
  text-align: right;
  color: #000;
}
.page-template-page-conference .wpforms-form .wpforms-field {
  margin-bottom: 15px;
  width: 100%;
}
.page-template-page-conference .wpforms-form .wpforms-field label {
  display: block;
  text-transform: uppercase;
  color: #000;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 5px;
}
.page-template-page-conference .wpforms-form .wpforms-field input[type=text],
.page-template-page-conference .wpforms-form .wpforms-field input[type=email],
.page-template-page-conference .wpforms-form .wpforms-field input[type=password],
.page-template-page-conference .wpforms-form .wpforms-field input[type=number],
.page-template-page-conference .wpforms-form .wpforms-field input[type=range],
.page-template-page-conference .wpforms-form .wpforms-field textarea,
.page-template-page-conference .wpforms-form .wpforms-field select {
  width: 100%;
  padding: 13px 15px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background-color: #fff;
  font-size: 16px;
  border-radius: 5px;
}
.page-template-page-conference .wpforms-form .wpforms-field ul {
  margin: 0;
  padding: 10px 0;
  list-style-type: none;
}
.page-template-page-conference .wpforms-form .wpforms-field ul label {
  display: inline-block;
  vertical-align: middle;
  margin-left: 15px;
  text-transform: none;
}
.page-template-page-conference .wpforms-form .wpforms-submit {
  display: block;
  width: 100%;
  border: 2px solid var(--accent);
  background-color: var(--accent);
  color: #fff;
  padding: 16px 30px;
  text-transform: uppercase;
  text-align: center;
  outline: none;
  line-height: 1;
  border-radius: 5px;
}
.page-template-page-conference .wpforms-form .wpforms-submit:hover, .page-template-page-conference .wpforms-form .wpforms-submit:focus {
  background-color: #fff;
  color: var(--accent);
  text-decoration: none;
  outline: none;
}
.page-template-page-conference .wpforms-form .wpforms-field-sublabel {
  text-transform: none !important;
  font-weight: 300 !important;
}
.page-template-page-conference .wpcf7 label {
  display: block;
  text-transform: uppercase;
  color: #000;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 5px;
}
.page-template-page-conference .wpcf7 .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
  margin-top: 5px;
  margin-bottom: 15px;
}
.page-template-page-conference .wpcf7 .wpcf7-form-control-wrap .wpcf7-checkbox input[type=checkbox],
.page-template-page-conference .wpcf7 .wpcf7-form-control-wrap .wpcf7-checkbox input[type=radio],
.page-template-page-conference .wpcf7 .wpcf7-form-control-wrap .wpcf7-radio input[type=checkbox],
.page-template-page-conference .wpcf7 .wpcf7-form-control-wrap .wpcf7-radio input[type=radio],
.page-template-page-conference .wpcf7 .wpcf7-form-control-wrap .wpcf7-acceptance input[type=checkbox],
.page-template-page-conference .wpcf7 .wpcf7-form-control-wrap .wpcf7-acceptance input[type=radio] {
  vertical-align: middle;
}
.page-template-page-conference .wpcf7 .wpcf7-form-control-wrap .wpcf7-checkbox .wpcf7-list-item-label,
.page-template-page-conference .wpcf7 .wpcf7-form-control-wrap .wpcf7-radio .wpcf7-list-item-label,
.page-template-page-conference .wpcf7 .wpcf7-form-control-wrap .wpcf7-acceptance .wpcf7-list-item-label {
  display: inline-block;
  vertical-align: middle;
  margin-left: 15px;
  text-transform: none;
}
.page-template-page-conference .wpcf7 input[type=text],
.page-template-page-conference .wpcf7 input[type=email],
.page-template-page-conference .wpcf7 input[type=password],
.page-template-page-conference .wpcf7 input[type=number],
.page-template-page-conference .wpcf7 input[type=range],
.page-template-page-conference .wpcf7 input[type=url],
.page-template-page-conference .wpcf7 input[type=tel],
.page-template-page-conference .wpcf7 input[type=date],
.page-template-page-conference .wpcf7 textarea,
.page-template-page-conference .wpcf7 select {
  width: 100%;
  padding: 13px 15px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background-color: #fff;
  font-size: 16px;
  border-radius: 5px;
}
.page-template-page-conference .wpcf7 input[type=file] {
  border: none;
}
.page-template-page-conference .wpcf7 .wpcf7-submit {
  display: block;
  width: 100%;
  border: 2px solid var(--accent);
  background-color: var(--accent);
  color: #fff;
  padding: 16px 30px;
  text-transform: uppercase;
  text-align: center;
  outline: none;
  line-height: 1;
  border-radius: 5px;
}
.page-template-page-conference .wpcf7 .wpcf7-submit:hover, .page-template-page-conference .wpcf7 .wpcf7-submit:focus {
  background-color: #fff;
  color: var(--accent);
  text-decoration: none;
  outline: none;
}
.page-template-page-conference .wpcf7-spinner {
  position: absolute;
  right: 5px;
  top: 15px;
}
.page-template-page-conference .wpcf7 .wpcf7-select {
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg fill='black' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
  background-repeat: no-repeat;
  background-position-x: 98%;
  background-position-y: 12px;
}
.page-template-page-conference .wpcf7 form.sent .wpcf7-response-output {
  margin-left: 0;
  margin-right: 0;
}
.page-template-page-conference .page-template-page-conference select {
  max-height: 49px;
}
.page-template-page-conference .page-template-page-conference .wpcf7 .wpcf7-submit {
  width: auto;
  display: inline-block;
}
.page-template-page-conference .table-nav-wrapper {
  display: flex;
}
.page-template-page-conference .table-nav__item {
  flex-grow: 1;
  align-items: center;
  text-align: center;
  padding: 5px;
  font-size: 13px;
  border-bottom: 1px solid #e6e6e6;
  cursor: pointer;
}
.page-template-page-conference .table-nav__item.active {
  font-weight: 700;
  border-bottom-color: var(--accent);
  color: var(--accent);
}
.page-template-page-conference .sth-wrapper {
  background-color: var(--accent);
  position: fixed;
  top: 96px;
  left: 0;
  right: 0;
  z-index: 100;
  color: #fff;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s;
  border-bottom: 2px solid rgba(255, 255, 255, 0.3);
}
.page-template-page-conference .sth-wrapper.sticky {
  opacity: 1;
  visibility: visible;
}
.page-template-page-conference .admin-bar .sth-wrapper.sticky {
  top: 98px;
}
.page-template-page-conference .sth {
  display: flex;
}
.page-template-page-conference .sth > div {
  flex-grow: 1;
  padding: 8px;
  font-weight: 700;
  font-size: 16px;
}
.page-template-page-conference .sth__package {
  opacity: 0.5;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-template-page-conference .wpcf7 form .wpcf7-response-output {
  margin: 25px 0 0 0;
}
@media (max-width: 1023px) {
  .page-template-page-conference .package {
    padding: 30px;
  }
  .page-template-page-conference .package h2 {
    font-size: 24px;
  }
  .page-template-page-conference .package__description,
  .page-template-page-conference .package__sale {
    font-size: 13px;
  }
  .page-template-page-conference .package__price {
    font-size: 30px;
  }
  .page-template-page-conference .package__price-to-compare {
    font-size: 24px;
  }
  .page-template-page-conference .package .mb-30 {
    margin-bottom: 20px;
  }
  .page-template-page-conference .package .z-btn {
    font-size: 12px;
  }
}
@media (max-width: 992px) {
  .page-template-page-conference .packages {
    margin-bottom: 30px;
  }
  .page-template-page-conference .packages .package {
    height: auto;
    margin-bottom: 30px;
  }
  .page-template-page-conference .packages .package .package__price.no-sale {
    margin-bottom: 0;
  }
}
@media (max-width: 767px) {
  .page-template-page-conference .main-packages {
    flex-direction: column;
    align-items: stretch;
  }
  .page-template-page-conference .main-package {
    border-right: none;
    border-bottom: 1px solid #cfcfcf;
  }
  .page-template-page-conference .main-package:last-child {
    border-bottom: none;
  }
  .page-template-page-conference .package .z-btn {
    width: 100%;
  }
  .page-template-page-conference .custom-table th:first-child h3 {
    font-size: 24px;
  }
  .page-template-page-conference .custom-table th p,
  .page-template-page-conference .custom-table td p {
    font-size: 12px;
  }
  .page-template-page-conference .custom-table td b {
    font-size: 15px;
  }
  .page-template-page-conference .total-wrapper {
    margin-bottom: 30px;
    margin-top: 15px;
  }
  .page-template-page-conference .conference-form-footer {
    flex-direction: column-reverse;
  }
  .page-template-page-conference .conference-form-wrapper {
    padding: 24px;
  }
  .page-template-page-conference .page-template-page-conference .custom-table {
    margin-bottom: 40px;
    margin-top: 20px;
  }
  .page-template-page-conference .conference-form-footer .text-right {
    text-align: left !important;
  }
  .page-template-page-conference .wpcf7-submit {
    margin-bottom: 30px;
  }
}
@media (max-width: 480px) {
  .page-template-page-conference .main-packages {
    width: 100%;
  }
  .page-template-page-conference table.summary-table td {
    font-size: 10px;
  }
  .page-template-page-conference .summary-table-wrapper {
    padding: 10px;
  }
  .page-template-page-conference table.summary-table td:first-child {
    white-space: break-spaces;
  }
}

.contact-us-form {
  max-width: 650px;
  margin: 0 auto;
}
.contact-us-form label {
  margin-bottom: 1em;
  display: block;
  width: 100%;
}
.contact-us-form .wpcf7-form-control-wrap {
  max-width: 100%;
}
.contact-us-form .wpcf7-form-control {
  border: 1px solid var(--accent, #0f0);
  padding: 8px 12px;
  border-radius: 5px;
  width: 100%;
}
.contact-us-form .wpcf7-form-control.wpcf7-submit {
  background: var(--accent, #0f0);
  color: #fff;
  padding: 15px 30px;
  width: auto;
}
.contact-us-form .wpcf7-not-valid-tip {
  font-size: 14px;
}

.top-header {
  overflow: hidden;
  position: relative;
}
.top-header .top_header__logo {
  position: absolute;
  left: 15px;
  top: 15px;
}
.top-header .top-header__content {
  height: 100%;
}
.top-header .header-inner {
  height: 100%;
  justify-content: center;
}
.top-header .top-header__image img {
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
}

.site-header.has-top-header-image {
  position: sticky !important;
  background: white;
}
.site-header.has-top-header-image:not(.scroll) .header-logo {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.site-header.has-top-header-image + .site-main {
  padding-top: 0 !important;
}

@media (max-width: 991px) {
  .home-hero #wis2-panel .wis2-panel.wis2-panel--horizontal,
  .archive-hero #wis2-panel .wis2-panel.wis2-panel--horizontal {
    flex-direction: column !important;
  }
}
@media (max-width: 767px) {
  #wis2-panel .wis2-panel.wis2-panel--horizontal {
    flex-direction: column !important;
  }
}
@media only screen and (max-width: 1260px) {
  .hero-left {
    padding-top: 40px;
  }
  .hero-title {
    font-size: 45px;
  }
  .hero-subtitle {
    margin-bottom: 25px;
  }
  .hero-widget-weather {
    margin-right: 0;
  }
  .home-hero .hero-widget-search {
    width: 590px;
  }
  .home-hero .hero-widget-search--gbe {
    width: 750px;
  }
  .slide-content {
    width: 60%;
  }
  .slide-text {
    font-size: 16px;
  }
  .slide-text p {
    font-size: 16px;
  }
  .slide-btn {
    margin-top: 0;
  }
  .room-title {
    font-size: 26px;
  }
  .single-room-title {
    font-size: 45px;
  }
  .single-room-features {
    margin-bottom: 40px;
  }
  .single-room-offer-content {
    top: 65%;
  }
  .single-room-offer-title {
    font-size: 20px;
  }
  .page-content {
    padding: 60px 0;
  }
  .page-content h1 {
    font-size: 45px;
  }
  .title-404 {
    font-size: 45px;
  }
  .page-title {
    font-size: 45px;
  }
}
@media only screen and (max-width: 991px) {
  .site-main {
    padding-top: 90px;
  }
  .home .header-logo,
  .home .site-branding, .page-template-front-page .header-logo,
  .page-template-front-page .site-branding {
    width: 120px;
    transform: translateY(0);
  }
  .hero-left {
    padding-top: 20px;
  }
  .hero-title {
    font-size: 40px;
  }
  .home-hero .hero-widget-search {
    width: 100%;
  }
  .hero-widget-weather {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-top: -30px;
  }
  .slide-img {
    padding-top: 56%;
  }
  .slide-content {
    width: 80%;
  }
  .slide-title {
    font-size: 36px;
  }
  .section-title {
    font-size: 36px;
  }
  .offer-title {
    font-size: 24px;
  }
  .single-room-title {
    font-size: 40px;
  }
  .single-room-offers {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .single-room-offer {
    width: 48%;
  }
  .single-room-offer-content {
    top: 40%;
  }
  .single-room-offer-title {
    margin-bottom: 20px;
  }
  .entry-title {
    font-size: 40px;
  }
  .page-content h1 {
    font-size: 40px;
  }
  .title-404 {
    font-size: 40px;
  }
  .rest-slide-img {
    padding-top: 70%;
  }
  .page-title {
    font-size: 40px;
  }
  .pll-parent-menu-item img {
    display: inline-block;
  }
}
@media only screen and (max-width: 767px) {
  body {
    font-size: 16px;
  }
  .home .site::before, .page-template-front-page .site::before {
    display: none;
  }
  .site-main {
    padding-top: 70px;
  }
  .header-widget-search {
    display: none !important;
  }
  .header-widget-search + .header-btn-search {
    display: inline-block;
  }
  .home-hero {
    padding-bottom: 60px;
  }
  .hero-left {
    display: flex;
    flex-direction: column;
  }
  .hero-title {
    font-size: 36px;
  }
  .hero-subtitle {
    font-size: 16px;
    margin-bottom: 35px;
  }
  .hero-video-btn-wrapper {
    margin-top: 50px;
  }
  .home-hero .hero-widget-search {
    width: 100%;
    order: 1;
  }
  .hero-right {
    min-height: auto;
  }
  .hero-widget-weather {
    margin-top: -50px;
  }
  .slide-img {
    padding-top: 75%;
  }
  .slide-content {
    padding: 25px;
  }
  .slide-title {
    font-size: 30px;
  }
  .section-services {
    padding: 50px 0 30px;
  }
  .service-item {
    padding: 20px 0 10px;
  }
  .service-item .img-wrapper {
    width: 70px;
    margin-bottom: 20px;
  }
  .service-item .img-wrapper svg {
    width: 70px;
    height: 70px;
  }
  .section-title {
    font-size: 30px;
  }
  .section-image-text {
    padding: 40px 0;
  }
  .section-image-text.content-wide-reverse .image-text-content-wrapper, .section-image-text.content-wide .image-text-content-wrapper {
    margin-right: 0;
    margin-left: 0;
  }
  .image-text-content {
    font-size: 16px;
  }
  .image-text-content p {
    font-size: 16px;
  }
  .offer-item {
    margin-bottom: 50px;
  }
  .offer-title {
    font-size: 30px;
  }
  .offers-header {
    min-height: 30px;
  }
  .z-tabs {
    flex-wrap: wrap;
    border-bottom: none;
    height: 40px;
    overflow: hidden;
    position: absolute;
    top: 0;
    right: 0;
    max-width: 50%;
    z-index: 1;
    transition: all 0.25s;
  }
  .z-tabs::before {
    content: "";
    position: absolute;
    top: 13px;
    right: 10px;
    width: 10px;
    height: 10px;
    border: 1px solid var(--accent);
    border-top: 0;
    border-left: 0;
    transform: rotate(45deg);
    pointer-events: none;
  }
  .z-tabs.is-open {
    height: auto;
    background-color: #fff;
  }
  .z-tab {
    width: 100%;
    height: 40px;
    padding-left: 10px;
    padding-right: 35px;
    text-align: right;
  }
  .z-tab::before {
    display: none;
  }
  .z-tab.active {
    order: -1;
  }
  .z-tab + .z-tab {
    margin-left: 0;
  }
  .offer-tabs {
    max-width: 150px;
  }
  .rest-gallery-tabs {
    max-width: 200px;
  }
  .gallery-item.gallery-item-long {
    padding-top: 100%;
  }
  .gallery-item-long .gallery-item {
    padding-top: 100%;
  }
  .archive-hero {
    padding-top: 80px;
  }
  .single-room-title {
    font-size: 36px;
  }
  .single-room-cat-link {
    font-size: 10px;
  }
  .single-room-offer-content {
    padding: 15px;
  }
  .single-room-offer-title {
    font-size: 18px;
  }
  .single-room-offer-text {
    font-size: 14px;
  }
  .offers-search-wrapper {
    margin: 25px 0;
  }
  .icon-with-text-title {
    font-size: 18px;
  }
  .schedule-title {
    font-size: 28px;
  }
  .section-rest-features {
    padding: 40px 0;
  }
  .columns-six-section,
  .rest-features-info {
    padding: 40px 0;
  }
  .entry-header {
    min-height: 300px;
  }
  .page-title {
    font-size: 36px;
  }
  .entry-title {
    font-size: 36px;
  }
  .page-content {
    padding: 40px 0;
  }
  .page-content h1 {
    font-size: 36px;
  }
  .page-content h2 {
    font-size: 30px;
  }
  .page-content h3 {
    font-size: 24px;
  }
  .page-content h4 {
    font-size: 20px;
  }
  .page-content h5 {
    font-size: 16px;
  }
  .page-content h6 {
    font-size: 14px;
  }
  .title-404 {
    font-size: 36px;
  }
}
@media only screen and (max-width: 575px) {
  .slider-wrapper {
    margin-left: var(--minus-gutter);
    margin-right: var(--minus-gutter);
  }
  .single-slider .single-slick-prev {
    left: 15px;
  }
  .single-slider .single-slick-next {
    left: 65px;
  }
  .single-slider .slick-dots {
    padding-right: 20px;
  }
  .single-slide {
    height: 365px;
  }
  .slide-img {
    padding-top: 0;
    height: 100%;
  }
  .slide-content {
    width: 100%;
    padding: 15px;
  }
  .section-image-text.content-wide-reverse .img-wrapper, .section-image-text.content-wide .img-wrapper {
    margin-left: -15px;
    margin-right: -15px;
    height: 500px;
    position: relative;
  }
  .section-image-text.content-wide-reverse .img-wrapper img, .section-image-text.content-wide .img-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .section-image-text.content-wide-reverse .image-text-content-wrapper, .section-image-text.content-wide .image-text-content-wrapper {
    margin-top: -180px;
  }
  .single-room-feature {
    width: 100%;
  }
  .single-room-description-title {
    font-size: 26px;
  }
  .single-room-offers {
    display: block;
  }
  .single-room-offer {
    width: 100%;
    margin-bottom: 30px;
  }
  .single-room-offer-content {
    top: 70%;
  }
  .rest-slide-img {
    padding-top: 100%;
  }
}
@media only screen and (max-width: 480px) {
  .section-image-text.content-wide-reverse .image-text-content-wrapper, .section-image-text.content-wide .image-text-content-wrapper {
    padding: 20px;
  }
  .offer-title {
    font-size: 24px;
  }
  .section-gallery {
    padding: 0;
  }
  .gallery-inner {
    padding: 30px 0px;
    box-shadow: none;
  }
  .gallery-item,
  .gallery-item.gallery-item-long {
    padding-top: 50%;
    margin-bottom: 25px;
  }
  .gallery-item-long .gallery-item {
    padding-top: 50%;
    margin-top: 25px;
  }
  .footer-logo {
    max-width: 125px;
  }
  .room-slider-for {
    margin-bottom: 10px;
  }
  .room-slider-nav .slick-slide {
    margin: 0 5px;
  }
  .room-slider-nav .slick-list {
    margin: 0 -5px;
  }
  .single-room-offer-content {
    top: 50%;
  }
  .hero-title {
    font-size: 30px;
  }
}
