@font-face {
    font-family: 'Montserrat';
    src: url('./font/Montserrat-Regular.eot');
    src: url('./font/Montserrat-Regular.eot?#iefix') format('embedded-opentype'),
        url('./font/Montserrat-Regular.woff2') format('woff2'),
        url('./font/Montserrat-Regular.woff') format('woff'),
        url('./font/Montserrat-Regular.ttf') format('truetype'),
        url('./font/Montserrat-Regular.svg#Montserrat-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('./font/Montserrat-SemiBold.eot');
    src: url('./font/Montserrat-SemiBold.eot?#iefix') format('embedded-opentype'),
        url('./font/Montserrat-SemiBold.woff2') format('woff2'),
        url('./font/Montserrat-SemiBold.woff') format('woff'),
        url('./font/Montserrat-SemiBold.ttf') format('truetype'),
        url('./font/Montserrat-SemiBold.svg#Montserrat-SemiBold') format('svg');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('./font/Montserrat-Black.eot');
    src: url('./font/Montserrat-Black.eot?#iefix') format('embedded-opentype'),
        url('./font/Montserrat-Black.woff2') format('woff2'),
        url('./font/Montserrat-Black.woff') format('woff'),
        url('./font/Montserrat-Black.ttf') format('truetype'),
        url('./font/Montserrat-Black.svg#Montserrat-Black') format('svg');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('./font/Montserrat-Bold.eot');
    src: url('./font/Montserrat-Bold.eot?#iefix') format('embedded-opentype'),
        url('./font/Montserrat-Bold.woff2') format('woff2'),
        url('./font/Montserrat-Bold.woff') format('woff'),
        url('./font/Montserrat-Bold.ttf') format('truetype'),
        url('./font/Montserrat-Bold.svg#Montserrat-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('./font/Montserrat-Medium.eot');
    src: url('./font/Montserrat-Medium.eot?#iefix') format('embedded-opentype'),
        url('./font/Montserrat-Medium.woff2') format('woff2'),
        url('./font/Montserrat-Medium.woff') format('woff'),
        url('./font/Montserrat-Medium.ttf') format('truetype'),
        url('./font/Montserrat-Medium.svg#Montserrat-Medium') format('svg');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('./font/Montserrat-Light.eot');
    src: url('./font/Montserrat-Light.eot?#iefix') format('embedded-opentype'),
        url('./font/Montserrat-Light.woff2') format('woff2'),
        url('./font/Montserrat-Light.woff') format('woff'),
        url('./font/Montserrat-Light.ttf') format('truetype'),
        url('./font/Montserrat-Light.svg#Montserrat-Light') format('svg');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}


/* mixins.less */
/* Variables */
body {
  font-family: 'Montserrat', sans-serif;
  min-width: 300px;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  color: #000000;
  font-size: 16px;
  box-sizing: "border-box !important";
  -moz-box-sizing: "border-box !important";
  -webkit-box-sizing: "border-box !important";
  position: relative;
  background: rgba(255, 255, 255, 0.88);
}
.bg-img-under {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: block;
  content: '';
  z-index: -1;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.bg-img-under::after {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: block;
  content: '';
  opacity: .95;
  background: #ffffff;
}
.cookie-info {
  padding: 10px 15px;
  text-align: center;
  position: fixed;
  background: rgba(255, 255, 255, 0.75);
  z-index: 9999;
  border-top: 1px solid #E54B25;
  font-size: 12px;
  font-weight: 300;
  left: 0;
}
@media (min-width: 768px) {
  .cookie-info {
    top: 50%;
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    width: 200px;
    border-right: 1px solid #E54B25;
    border-bottom: 1px solid #E54B25;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
}
@media (max-width: 767px) {
  .cookie-info {
    right: 0;
    bottom: 0;
  }
}
img {
  max-width: 100% !important;
}
img.alignright {
  float: right;
  margin: 1em 0 2em 2em;
}
img.alignleft {
  float: left;
  margin: 1em 2em 2em 0;
}
img.aligncenter {
  float: none;
  display: inline-block;
  margin-left: auto;
  margin-right: auto;
}
a img.alignright {
  float: right;
  margin: 1em 0 2em 2em;
}
a img.alignleft {
  float: left;
  margin: 1em 2em 2em 0;
}
a img.aligncenter {
  float: none;
  display: inline-block;
  margin-left: auto;
  margin-right: auto;
}
p,
h1,
h2,
h3,
h4,
h5,
h6,
span,
a,
div {
  color: #000000;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  background-color: #E54B25;
  background: -webkit-gradient(linear, left top, right top, from(#E54B25), to(#fa9900));
  background: -webkit-linear-gradient(left, #E54B25, #fa9900);
  background: -moz-linear-gradient(left, #E54B25, #fa9900);
  background: -ms-linear-gradient(left, #E54B25, #fa9900);
  background: -o-linear-gradient(left, #E54B25, #fa9900);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  font-weight: 600;
}
h1.line,
h2.line,
h3.line,
h4.line,
h5.line,
h6.line {
  margin: 0;
  padding: 0;
  padding-bottom: 15px;
  margin-top: 40px;
  margin-bottom: 40px;
  position: relative;
  text-align: center;
}
h1.line::after,
h2.line::after,
h3.line::after,
h4.line::after,
h5.line::after,
h6.line::after {
  position: absolute;
  bottom: -5px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  width: 92px;
  height: 8px;
  display: block;
  content: '';
  background-position: center;
  background-repeat: no-repeat;
  background-image: url('../images/line.svg');
  background-size: contain;
}
@media (min-width: 768px) {
  .tel-nr-big:hover {
    cursor: text;
    color: #000000;
  }
}
.main-content {
  min-height: calc(100vh - 290px);
  padding-bottom: 80px;
}
.main-content .content iframe{
    width: 100%;
}
a,
li,
button {
  -webkit-transition: 0.2s linear;
  -moz-transition: 0.2s linear;
  -ms-transition: 0.2s linear;
  -o-transition: 0.2s linear;
  transition: 0.2s linear;
}
a:hover,
li:hover,
button:hover {
  text-decoration: none;
}
a:hover {
  color: #E54B25;
}
.flex {
  display: flex;
}
.strech {
  align-items: stretch;
}
.center {
  align-items: center;
}
.al-start {
  align-items: flex-start;
}
.just-center {
  justify-content: center;
}
.just-sp-betw {
  justify-content: space-between;
}
.wrap {
  flex-wrap: wrap;
}
.center-content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
*:focus {
  outline: 0 !important;
}
.hide-elem {
  display: none;
}
@media (max-width: 767px) {
  .hide-on-small {
    display: none !important;
  }
}
@media (min-width: 768px) {
  .show-on-small {
    display: none !important;
  }
}
.fancybox-infobar span {
  color: #ffffff;
}
#more-info {
  text-align: center;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  #more-info {
    text-align: left;
  }
}
.info-block {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: 5px 0;
}
@media (max-width: 767px) {
  .info-block {
    justify-content: center;
  }
}
table {
  width: 100%;
  background: #e5e5e5;
}
table tr {
  border-bottom: 1px solid #959595;
}
table tr:hover {
  cursor: pointer;
  background: #d5d5d5;
}
table tr:first-child,
table tr:last-child {
  border: none;
}
table tr:first-child:hover {
  cursor: default;
  background: none;
}
table tr.active {
  cursor: default;
  background: #fa7200;
}
table tr td,
table tr th {
  padding: 5px 15px;
}
/* Icons */
.icon {
  width: 25px;
  height: 25px;
  margin-right: 10px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
}
.icon.fb {
  background-image: url('../images/fb.svg');
}
.icon.tw {
  background-image: url('../images/tw.svg');
}
.icon.inst {
  background-image: url('../images/inst.svg');
}
.icon.f-fb {
  background-image: url('../images/f-fb.svg');
}
.icon.f-tw {
  background-image: url('../images/f-tw.svg');
}
.icon.f-inst {
  background-image: url('../images/f-inst.svg');
}
.icon.cart {
  background-image: url('../images/cart.svg');
}
.icon.address {
  background-image: url('../images/map-marker.svg');
}
.icon.phone {
  background-image: url('../images/call-answer.svg');
}
.icon.email {
  background-image: url('../images/envelope.svg');
}
.icon.f-address {
  background-image: url('../images/f-map-marker.svg');
}
.icon.f-phone {
  background-image: url('../images/f-call-answer.svg');
}
.icon.f-email {
  background-image: url('../images/f-envelope.svg');
}
.icon.small {
  width: 15px;
  height: 15px;
}
.icon.big {
  width: 35px;
  height: 35px;
}
.info-icon {
  width: 130px;
  height: 70px;
  margin: auto;
  margin-bottom: 10px;
  display: block;
  content: '';
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.info-icon.car {
  background-image: url('../images/car.svg');
}
.info-icon.notebook {
  background-image: url('../images/notebook.svg');
}
.info-icon.keys {
  background-image: url('../images/keys.svg');
}
/* Header */
.navbar-sticky-top {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 999;
}
.top-navs {
  background: #ffffff;
  padding: 0;
  position: relative;
}
.top-navs .top-nav-content {
  width: 100%;
}
.top-navs .top-nav-content .menu-block {
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.top-navs .top-nav-content .menu-block .logo-box {
  width: 200px;
  position: relative;
  z-index: 9;
}
@media (max-width: 767px) {
  .top-navs .top-nav-content .menu-block .logo-box {
    width: 70px;
  }
}
.top-navs .top-nav-content .menu-block .logo-box .logo {
  display: block;
}
@media (min-width: 768px) {
  .top-navs .top-nav-content .menu-block .logo-box .logo {
    position: absolute;
    top: -40px;
    left: 0;
  }
}
@media (max-width: 767px) {
  .top-navs .top-nav-content .menu-block .logo-box .logo {
    width: 70px;
  }
}
.top-navs .top-nav-content .menu-block .info-section {
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: calc(100% - 250px);
}
@media (max-width: 767px) {
  .top-navs .top-nav-content .menu-block .info-section {
    width: calc(100% - 110px);
  }
}
.top-navs .top-nav-content .menu-block .info-section > div {
  height: 90px;
  width: 20%;
  border-right: 1px solid #cfd5d7;
}
.top-navs .top-nav-content .menu-block .info-section > div:last-child {
  border-right: none;
}
@media (max-width: 991px) {
  .top-navs .top-nav-content .menu-block .info-section > div {
    width: 33.333%;
  }
}
@media (max-width: 767px) {
  .top-navs .top-nav-content .menu-block .info-section > div {
    width: 100%;
    border: none;
  }
}
.top-navs .top-nav-content .menu-block .info-section .phones {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}
.top-navs .top-nav-content .menu-block .info-section .phones .title {
  text-transform: uppercase;
  font-size: 17px;
  font-weight: 700;
  color: #000000;
}
.top-navs .top-nav-content .menu-block .info-section .phones .phone-number {
  color: #E54B25;
  font-weight: bold;
}
.top-navs .top-nav-content .menu-block .info-section .phones .contacts-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.top-navs .top-nav-content .menu-block .info-section .contacts-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.top-navs .top-nav-content .menu-block .info-section .contacts-link .navbar-nav a {
  border: solid 2px #E54B25;
  background: transperent;
  color: #E54B25;
  text-transform: uppercase;
  padding: 5px 10px;
  padding-right: 30px;
  position: relative;
  font-weight: 600;
  -webkit-transition: 0.2s linear;
  -moz-transition: 0.2s linear;
  -ms-transition: 0.2s linear;
  -o-transition: 0.2s linear;
  transition: 0.2s linear;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
@media (max-width: 1199px) and (min-width: 991px) {
  .top-navs .top-nav-content .menu-block .info-section .contacts-link .navbar-nav a {
    padding: 5px 5px;
    padding-right: 25px;
    font-size: 14px;
  }
}
.top-navs .top-nav-content .menu-block .info-section .contacts-link .navbar-nav a::after {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  right: 10px;
  bottom: 0;
  font-family: "Font Awesome 5 Free";
  content: '\f054';
  font-size: inherit;
  color: #E54B25;
  font-weight: bold;
  -webkit-transition: 0.2s linear;
  -moz-transition: 0.2s linear;
  -ms-transition: 0.2s linear;
  -o-transition: 0.2s linear;
  transition: 0.2s linear;
}
.top-navs .top-nav-content .menu-block .info-section .contacts-link .navbar-nav a:hover {
  border: solid 2px #E54B25;
  background: #E54B25;
  color: #ffffff;
}
.top-navs .top-nav-content .menu-block .info-section .contacts-link .navbar-nav a:hover::after {
  color: #ffffff;
}
@media (max-width: 767px) {
  .top-navs .top-nav-content .menu-block .info-section .contacts-link {
    display: none;
  }
}
.top-navs .top-nav-content .menu-block .info-section .temp {
  flex-direction: column;
}
.top-navs .top-nav-content .menu-block .info-section .temp div {
  opacity: .5;
}
.top-navs .top-nav-content .menu-block .info-section .temp .air-temp {
  opacity: 1;
  font-size: 30px;
  line-height: 30px;
  font-weight: 900;
  color: #E54B25;
}
.top-navs .top-nav-content .menu-block .info-section .temp .air-temp span {
  color: #E54B25;
}
@media (max-width: 991px) {
  .top-navs .top-nav-content .menu-block .info-section .temp {
    display: none;
  }
}
.top-navs .top-nav-content .menu-block .info-section .booking_com {
  flex-direction: column;
}
.top-navs .top-nav-content .menu-block .info-section .booking_com .booking_com-logo {
  width: 120px;
  padding-top: 16px;
  display: block;
  content: '';
  background-position: left center;
  background-repeat: no-repeat;
  background-image: url('../images/booking.svg');
  background-size: contain;
}
.top-navs .top-nav-content .menu-block .info-section .booking_com .booking_title {
  color: #053580;
  font-weight: 900;
  font-size: 18px;
}
.top-navs .top-nav-content .menu-block .info-section .booking_com .booking_score {
  margin-left: 5px;
  padding: 7px;
  line-height: 1;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  border-bottom-left-radius: 0;
  background: #053580;
  color: #ffffff;
}
.top-navs .top-nav-content .menu-block .info-section .booking_com .booking_reviews {
  font-size: 12px;
  text-align: right;
}
@media (max-width: 991px) {
  .top-navs .top-nav-content .menu-block .info-section .booking_com {
    display: none;
  }
}
.top-navs .top-nav-content .menu-block .info-section .langs {
  justify-content: flex-end;
}
.top-navs .top-nav-content .menu-block .info-section .langs ul {
  list-style: none;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 10px;
}
.top-navs .top-nav-content .menu-block .info-section .langs ul li {
  padding: 10px 0;
}
.top-navs .top-nav-content .menu-block .info-section .langs ul li a {
  font-size: 14px;
  line-height: 14px;
  padding: 0 10px;
  color: #6c6c6c;
  border-right: 1px solid #6c6c6c;
  text-transform: uppercase;
  font-weight: 600;
}
.top-navs .top-nav-content .menu-block .info-section .langs ul li:last-child a {
  border: none;
}
.top-navs .top-nav-content .menu-block .info-section .langs ul li.active a,
.top-navs .top-nav-content .menu-block .info-section .langs ul li:hover a,
.top-navs .top-nav-content .menu-block .info-section .langs ul li:focus a,
.top-navs .top-nav-content .menu-block .info-section .langs ul li.active a:hover,
.top-navs .top-nav-content .menu-block .info-section .langs ul li:hover a:hover,
.top-navs .top-nav-content .menu-block .info-section .langs ul li:focus a:hover,
.top-navs .top-nav-content .menu-block .info-section .langs ul li.active a:focus,
.top-navs .top-nav-content .menu-block .info-section .langs ul li:hover a:focus,
.top-navs .top-nav-content .menu-block .info-section .langs ul li:focus a:focus {
  color: #000000;
}
.top-navs .top-nav-content .menu-block .collapse-btn-box {
  width: 40px;
}
.top-navs .top-nav-content .menu-block .collapse-btn-box .collapse-btn {
  width: 40px;
  height: 40px;
  border: none !important;
  background: none !important;
  position: relative;
  -webkit-transition: 0.2s linear;
  -moz-transition: 0.2s linear;
  -ms-transition: 0.2s linear;
  -o-transition: 0.2s linear;
  transition: 0.2s linear;
}
.top-navs .top-nav-content .menu-block .collapse-btn-box .collapse-btn .collapse-icon {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  display: block;
  content: '';
  height: 5px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  background: #E54B25;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  -webkit-transition: 0.2s linear;
  -moz-transition: 0.2s linear;
  -ms-transition: 0.2s linear;
  -o-transition: 0.2s linear;
  transition: 0.2s linear;
}
.top-navs .top-nav-content .menu-block .collapse-btn-box .collapse-btn .collapse-icon::after,
.top-navs .top-nav-content .menu-block .collapse-btn-box .collapse-btn .collapse-icon::before {
  position: absolute;
  left: 0;
  right: 0;
  display: block;
  content: '';
  height: 5px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  background: #E54B25;
  -webkit-transition: 0.2s linear;
  -moz-transition: 0.2s linear;
  -ms-transition: 0.2s linear;
  -o-transition: 0.2s linear;
  transition: 0.2s linear;
}
.top-navs .top-nav-content .menu-block .collapse-btn-box .collapse-btn .collapse-icon::before {
  top: -10px;
}
.top-navs .top-nav-content .menu-block .collapse-btn-box .collapse-btn .collapse-icon::after {
  bottom: -10px;
}
.top-navs .top-nav-content .menu-block .collapse-btn-box .collapse-btn:hover {
  cursor: pointer;
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
}
@media (min-width: 768px) {
  .top-navs .top-nav-content .menu-block .collapse-btn-box {
    display: none;
  }
}
.top-navs .coll-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100vh;
  padding-top: 20px;
  padding-bottom: 20px;
  background: #000000;
  overflow-y: auto;
  z-index: 999;
}
.top-navs .coll-navbar .collapse-btn {
  width: 100%;
  background: none;
  border: none;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.top-navs .coll-navbar .collapse-btn .collapse-icon {
  width: 60px;
  height: 60px;
  border: 2px solid #ffffff;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  position: relative;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
}
.top-navs .coll-navbar .collapse-btn .collapse-icon::after,
.top-navs .coll-navbar .collapse-btn .collapse-icon::before {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  content: '';
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  background: #ffffff;
  -webkit-transition: 0.2s linear;
  -moz-transition: 0.2s linear;
  -ms-transition: 0.2s linear;
  -o-transition: 0.2s linear;
  transition: 0.2s linear;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}
.top-navs .coll-navbar .collapse-btn .collapse-icon::before {
  width: 35px;
  height: 5px;
}
.top-navs .coll-navbar .collapse-btn .collapse-icon::after {
  width: 5px;
  height: 35px;
}
.top-navs .coll-navbar .nav-content-box {
  min-height: calc(100% - 80px);
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.top-navs .coll-navbar .nav-content-box .langs li{
    margin-right: 20px;
}
.top-navs .coll-navbar .nav-content-box .langs li:last-child{
    margin-right: 0;
}
@media (max-width: 767px) {
  .top-navs .coll-navbar .nav-content-box ul {
    width: 100%;
    padding: 0;
    margin: 0;
  }
  .top-navs .coll-navbar .nav-content-box ul.sub-menu {
    background: rgba(255, 255, 255, 0.25);
  }
  .top-navs .coll-navbar .nav-content-box ul.sub-menu li a {
    font-weight: 400 !important;
    font-style: italic;
  }
}
.top-navs .coll-navbar .nav-content-box ul li a {
  color: #ffffff;
  text-transform: uppercase;
  font-size: 20px;
}
@media (max-width: 767px) {
  .top-navs .coll-navbar .nav-content-box ul li a {
    text-align: center;
    display: block;
    padding-top: 15px;
    padding-bottom: 15px;
  }
}
.top-navs .coll-navbar .nav-content-box .langs ul {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
/* Footer */
footer {
  background: #323232;
  font-size: 14px;
  padding-top: 50px;
  padding-bottom: 50px;
}
footer div,
footer p,
footer i,
footer b,
footer span,
footer h1,
footer h2,
footer h3,
footer h4,
footer h5,
footer h6,
footer li,
footer a {
  color: #ffffff;
}
footer div:hover,
footer p:hover,
footer i:hover,
footer b:hover,
footer span:hover,
footer h1:hover,
footer h2:hover,
footer h3:hover,
footer h4:hover,
footer h5:hover,
footer h6:hover,
footer li:hover,
footer a:hover,
footer div:focus,
footer p:focus,
footer i:focus,
footer b:focus,
footer span:focus,
footer h1:focus,
footer h2:focus,
footer h3:focus,
footer h4:focus,
footer h5:focus,
footer h6:focus,
footer li:focus,
footer a:focus {
  color: #ffffff;
}
@media (min-width: 768px) {
  footer .tel-nr-big:hover {
    color: #ffffff;
  }
}
footer .footer-content {
  position: relative;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}
@media (max-width: 767px) {
  footer .footer-content {
    text-align: center;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
}
footer .footer-content .logo {
  position: absolute;
  top: -50px;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}
footer .footer-content .logo a {
  padding-right: 10px;
}
footer .footer-content .logo a:hover img {
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
}
footer .footer-content .logo a img {
  width: 100px;
  height: auto;
  -webkit-transition: 0.2s linear;
  -moz-transition: 0.2s linear;
  -ms-transition: 0.2s linear;
  -o-transition: 0.2s linear;
  transition: 0.2s linear;
}
footer .footer-content ul {
  list-style: none;
  padding-left: 0;
}
footer .footer-content ul li a {
  opacity: .3;
}
footer .footer-content ul li:hover a,
footer .footer-content ul li:focus a {
  opacity: .6;
}
footer .footer-content .info .uppercase,
footer .footer-content .copyright .uppercase,
footer .footer-content .info .text,
footer .footer-content .copyright .text,
footer .footer-content .info a,
footer .footer-content .copyright a {
  opacity: .3;
}
footer .footer-content .info .icon.f-fb,
footer .footer-content .copyright .icon.f-fb {
  margin-left: 5px;
}
footer .footer-content .info a:hover,
footer .footer-content .copyright a:hover,
footer .footer-content .info a:focus,
footer .footer-content .copyright a:focus {
  opacity: .6;
}
footer .footer-content .info a.tel-nr-big,
footer .footer-content .copyright a.tel-nr-big {
  opacity: .3;
}
@media (max-width: 767px) {
  footer .footer-content .info > .flex.center,
  footer .footer-content .copyright > .flex.center {
    justify-content: center;
  }
}
footer .footer-content .designer-logo {
  display: block;
  content: '';
  background-position: right center;
  background-repeat: no-repeat;
  background-image: url('../images/designer-logo.svg');
  background-size: contain;
  height: 11px;
  width: 95px;
}
footer .footer-content .designer-logo:hover {
  -webkit-transform: scale(1.025);
  -moz-transform: scale(1.025);
  -ms-transform: scale(1.025);
  -o-transform: scale(1.025);
}
/* Input */
.input-form .row {
  margin-right: -5px;
  margin-left: -5px;
}
.input-form .row .col,
.input-form .row .col-1,
.input-form .row .col-10,
.input-form .row .col-11,
.input-form .row .col-12,
.input-form .row .col-2,
.input-form .row .col-3,
.input-form .row .col-4,
.input-form .row .col-5,
.input-form .row .col-6,
.input-form .row .col-7,
.input-form .row .col-8,
.input-form .row .col-9,
.input-form .row .col-auto,
.input-form .row .col-lg,
.input-form .row .col-lg-1,
.input-form .row .col-lg-10,
.input-form .row .col-lg-11,
.input-form .row .col-lg-12,
.input-form .row .col-lg-2,
.input-form .row .col-lg-3,
.input-form .row .col-lg-4,
.input-form .row .col-lg-5,
.input-form .row .col-lg-6,
.input-form .row .col-lg-7,
.input-form .row .col-lg-8,
.input-form .row .col-lg-9,
.input-form .row .col-lg-auto,
.input-form .row .col-md,
.input-form .row .col-md-1,
.input-form .row .col-md-10,
.input-form .row .col-md-11,
.input-form .row .col-md-12,
.input-form .row .col-md-2,
.input-form .row .col-md-3,
.input-form .row .col-md-4,
.input-form .row .col-md-5,
.input-form .row .col-md-6,
.input-form .row .col-md-7,
.input-form .row .col-md-8,
.input-form .row .col-md-9,
.input-form .row .col-md-auto,
.input-form .row .col-sm,
.input-form .row .col-sm-1,
.input-form .row .col-sm-10,
.input-form .row .col-sm-11,
.input-form .row .col-sm-12,
.input-form .row .col-sm-2,
.input-form .row .col-sm-3,
.input-form .row .col-sm-4,
.input-form .row .col-sm-5,
.input-form .row .col-sm-6,
.input-form .row .col-sm-7,
.input-form .row .col-sm-8,
.input-form .row .col-sm-9,
.input-form .row .col-sm-auto,
.input-form .row .col-xl,
.input-form .row .col-xl-1,
.input-form .row .col-xl-10,
.input-form .row .col-xl-11,
.input-form .row .col-xl-12,
.input-form .row .col-xl-2,
.input-form .row .col-xl-3,
.input-form .row .col-xl-4,
.input-form .row .col-xl-5,
.input-form .row .col-xl-6,
.input-form .row .col-xl-7,
.input-form .row .col-xl-8,
.input-form .row .col-xl-9,
.input-form .row .col-xl-auto {
  padding-right: 5px;
  padding-left: 5px;
}
.input-form input,
.input-form textarea {
  margin-top: 5px;
  margin-bottom: 5px;
}
.input-form input::-webkit-input-placeholder,
.input-form textarea::-webkit-input-placeholder {
  color: #000000;
  opacity: 0.57;
  font-weight: normal;
}
.input-form input::-moz-placeholder,
.input-form textarea::-moz-placeholder {
  color: #000000;
  opacity: 0.57;
  font-weight: normal;
}
.input-form input:-ms-input-placeholder,
.input-form textarea:-ms-input-placeholder {
  color: #000000;
  opacity: 0.57;
  font-weight: normal;
}
.input-form input:-moz-placeholder,
.input-form textarea:-moz-placeholder {
  color: #000000;
  opacity: 0.57;
  font-weight: normal;
}
input,
textarea {
  width: 100%;
  padding: 7px 15px;
  border: solid 1px #cccccc;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
.btn-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.r-btn-custom span,
.r-btn-custom input,
.r-btn-custom button {
  display: inline;
}
.r-btn-custom button {
  color: #000000;
  text-decoration: none;
  font-style: italic;
  background: none;
  cursor: pointer;
  border: none;
}
.r-btn-custom button:hover {
  text-decoration: underline;
}
.r-btn-custom {
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 100%;
  text-align: center;
  padding-top: 0;
}
@media (min-width: 768px) {
  .r-btn-custom {
    text-align: left;
  }
}
.r-btn-custom input {
  position: absolute;
  opacity: 0;
  width: auto !important;
  width: auto;
  cursor: pointer;
}
.r-btn-custom input ~ .checkmark::after {
  display: none;
}
.r-btn-custom input:checked ~ .checkmark::after {
  display: block;
  color: #000000;
}
.r-btn-custom .checkmark {
  position: relative;
  display: block;
  width: 20px;
  height: 20px;
  padding: 1px;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  margin-right: 10px;
  margin-bottom: -4px;
  font-size: 18px;
  border: solid 1px #cccccc;
  background: none;
}
.r-btn-custom .checkmark::after {
  position: absolute;
  left: 2px;
  top: -9px;
  font-family: "Font Awesome 5 Free";
  content: "\f00c";
  font-size: 22px;
  font-weight: bold;
  color: #000000;
}
.r-btn-custom span,
.r-btn-custom button {
  display: inline;
}
.r-btn-custom span.checkmark,
.r-btn-custom button.checkmark {
  display: inline-block;
}
input.error {
  border-color: red !important;
  box-shadow: 0px 0px 4px 4px rgba(255, 0, 0, 0.2);
}
.r-btn-custom input.error ~ .checkmark {
  border-color: red !important;
  box-shadow: 0px 0px 4px 4px rgba(255, 0, 0, 0.2);
}
.form-box.error #error-message {
  display: block;
}
/* sections */
section.index-banner {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: calc(100vh - 90px);
  padding-bottom: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  z-index: 0;
}
section.index-banner .bg-overlay {
  position: absolute;
  display: block;
  content: '';
  bottom: 0;
  right: 0;
  left: 0;
  top: 0;
  background: #000000;
  opacity: .25;
  z-index: 1;
}
section.index-banner .container {
  z-index: 2;
}
@media (max-width: 767px) {
  section.index-banner {
    padding: 40px 15px;
    height: auto;
  }
}
section.index-banner .first-line,
section.index-banner .second-line {
  font-weight: bold;
  color: #ffffff;
}
section.index-banner .first-line {
  font-size: 30px;
}
section.index-banner .second-line {
  font-size: 80px;
}
section.nav-strip {
  margin-top: -150px;
  width: 100%;
  height: 150px;
  background: rgba(229, 75, 37, .85);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 9;
}
section.nav-strip .nav-strip-box {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
section.nav-strip .nav-strip-box > a {
  width: 20%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 0 15px;
  height: 80px;
  position: relative;
}
section.nav-strip .nav-strip-box > a::after {
  position: absolute;
  display: block;
  width: 2px;
  height: 85px;
  content: '';
  background: #ffffff;
  top: 0;
  right: 0px;
  -webkit-transform: rotate(20.556deg);
  -moz-transform: rotate(20.556deg);
  -ms-transform: rotate(20.556deg);
  -o-transform: rotate(20.556deg);
}
section.nav-strip .nav-strip-box > a:last-child::after {
  display: none;
}
section.nav-strip .nav-strip-box > a .name {
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  height: 40px;
  margin-bottom: 5px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
@media (min-width: 768px) and (max-width: 1199px) {
  section.nav-strip .nav-strip-box > a .name {
    font-size: 18px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  section.nav-strip .nav-strip-box > a .name {
    font-size: 16px;
    line-height: 18px;
  }
}
section.nav-strip .nav-strip-box > a .icon {
  -webkit-transition: 0.2s linear;
  -moz-transition: 0.2s linear;
  -ms-transition: 0.2s linear;
  -o-transition: 0.2s linear;
  transition: 0.2s linear;
  display: block;
  width: 40px;
  height: 40px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
section.nav-strip .nav-strip-box > a .icon.picnic {
  background-image: url('../images/picnic.svg');
}
section.nav-strip .nav-strip-box > a .icon.camping {
  background-image: url('../images/camping.svg');
}
section.nav-strip .nav-strip-box > a .icon.sauna {
  background-image: url('../images/sauna.svg');
}
section.nav-strip .nav-strip-box > a .icon.virtual {
  background-image: url('../images/toure.svg');
}
section.nav-strip .nav-strip-box > a .icon.active {
  background-image: url('../images/active.svg');
}
section.nav-strip .nav-strip-box > a .icon.events {
  background-image: url('../images/events.svg');
}
section.nav-strip .nav-strip-box > a .icon.mobile-sauna {
  background-image: url('../images/mobile-sauna.svg');
}
section.nav-strip .nav-strip-box > a .icon.hot-tub {
  background-image: url('../images/hot-tub.svg');
}


section.nav-strip .nav-strip-box > a .icon.kids-city {
    background-image: url('../images/atractions-for-kids.svg');
}

section.nav-strip .nav-strip-box > a .icon.bar-table {
    background-image: url('../images/barr-and-table.svg');
}
section.nav-strip .nav-strip-box > a .icon.mobile-hot-tub {
    background-image: url('../images/mobile-hot-tub.svg');
}
section.nav-strip .nav-strip-box > a .icon.phone-or-mail {
    background-image: url('../images/phone-or-mail.svg');
}


section.nav-strip .nav-strip-box > a:hover .icon {
  -webkit-transform: scale(1.15);
  -moz-transform: scale(1.15);
  -ms-transform: scale(1.15);
  -o-transform: scale(1.15);
}
@media (max-width: 767px) {
  section.nav-strip {
    margin-top: 0px;
    height: auto;
    display: none;
  }
  section.nav-strip .container {
    padding: 0;
    width: 100%;
    max-width: 100%;
  }
  section.nav-strip .container .nav-strip-box {
    flex-direction: column;
  }
  section.nav-strip .container .nav-strip-box > a {
    width: 100%;
    padding: 15px;
    border-bottom: 1px solid #ffffff;
  }
  section.nav-strip .container .nav-strip-box > a:last-child {
    border: none;
  }
  section.nav-strip .container .nav-strip-box > a::after {
    display: none;
  }
  section.nav-strip .container .nav-strip-box > a .icon {
    display: none;
  }
  section.nav-strip .container .nav-strip-box > a .name {
    height: auto;
    margin: 0;
  }
}
section.nav-strip-new {
  margin-top: -150px;
  width: 100%;
  height: 150px;
  background: rgba(229, 75, 37, .85);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 9;
}
.nav-strip-new.not-top{
    position: fixed;
    top: 150px;
    height: 60px;
}
.nav-strip-new.not-top .nav-strip-box a .icon{
    display: none;
}
section.nav-strip-new.not-top .nav-strip-box > a{
    height: 30px;
}
section.nav-strip-new.not-top .nav-strip-box > a::after{
    height: 29px;
}
section.nav-strip-new .nav-strip-box {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
section.nav-strip-new .nav-strip-box > a {
  width: 14.285714285714%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 0 10px;
  height: 80px;
  position: relative;
}
section.nav-strip-new .nav-strip-box > a::after {
  position: absolute;
  display: block;
  width: 2px;
  height: 85px;
  content: '';
  background: #ffffff;
  top: 0;
  right: -1px;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
}
section.nav-strip-new .nav-strip-box > a:last-child::after {
  display: none;
}
section.nav-strip-new .nav-strip-box > a .name {
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  height: 40px;
  margin-bottom: 5px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
@media (min-width: 768px) and (max-width: 1199px) {
  section.nav-strip-new .nav-strip-box > a .name {
    font-size: 13px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  section.nav-strip-new .nav-strip-box > a .name {
    font-size: 11px;
    line-height: 18px;
  }
}
section.nav-strip-new .nav-strip-box > a .icon {
  -webkit-transition: 0.2s linear;
  -moz-transition: 0.2s linear;
  -ms-transition: 0.2s linear;
  -o-transition: 0.2s linear;
  transition: 0.2s linear;
  display: block;
  width: 40px;
  height: 40px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
section.nav-strip-new .nav-strip-box > a .icon.picnic {
  background-image: url('../images/picnic.svg');
}
section.nav-strip-new .nav-strip-box > a .icon.camping {
  background-image: url('../images/camping.svg');
}
section.nav-strip-new .nav-strip-box > a .icon.sauna {
  background-image: url('../images/sauna.svg');
}
section.nav-strip-new .nav-strip-box > a .icon.virtual {
  background-image: url('../images/toure.svg');
}
section.nav-strip-new .nav-strip-box > a .icon.active {
  background-image: url('../images/active.svg');
}
section.nav-strip-new .nav-strip-box > a .icon.events {
  background-image: url('../images/events.svg');
}
section.nav-strip-new .nav-strip-box > a:hover .icon {
  -webkit-transform: scale(1.15);
  -moz-transform: scale(1.15);
  -ms-transform: scale(1.15);
  -o-transform: scale(1.15);
}
@media (max-width: 767px) {
  section.nav-strip-new {
    margin-top: 0px;
    height: auto;
    display: none;
  }
  section.nav-strip-new .container {
    padding: 0;
    width: 100%;
    max-width: 100%;
  }
  section.nav-strip-new .container .nav-strip-box {
    flex-direction: column;
  }
  section.nav-strip-new .container .nav-strip-box > a {
    width: 100%;
    padding: 15px;
    border-bottom: 1px solid #ffffff;
  }
  section.nav-strip-new .container .nav-strip-box > a:last-child {
    border: none;
  }
  section.nav-strip-new .container .nav-strip-box > a::after {
    display: none;
  }
  section.nav-strip-new .container .nav-strip-box > a .icon {
    display: none;
  }
  section.nav-strip-new .container .nav-strip-box > a .name {
    height: auto;
    margin: 0;
  }
}
section.top-nav-strip {
  height: 75px;
  margin-bottom: 75px;
  background: #E54B25;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
}
section.top-nav-strip .navbar-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
}
section.top-nav-strip .navbar-nav li {
  background: none !important;
  border: none !important;
}
section.top-nav-strip .navbar-nav li a {
  color: #ffffff !important;
  background: none !important;
  border: none !important;
  text-decoration: none !important;
  padding: 5px 15px;
  font-weight: bold;
  font-size: 17px;
}
section.top-nav-strip .navbar-nav li:hover {
  cursor: pointer;
}
section.top-nav-strip .navbar-nav li:hover > a {
  opacity: 0.7;
}
section.top-nav-strip .navbar-nav li.current-menu-item > a {
  opacity: 0.6;
}
section.top-nav-strip .navbar-nav li.menu-item-has-children .sub-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (min-width: 768px) {
  section.top-nav-strip .navbar-nav {
    justify-content: flex-end;
    flex-wrap: nowrap;
    padding-left: 150px;
  }
  section.top-nav-strip .navbar-nav li {
    text-align: center;
  }
  section.top-nav-strip .navbar-nav li a {
    display: block;
    text-align: center;
  }
  section.top-nav-strip .navbar-nav li.menu-item-has-children {
    position: relative;
  }
  section.top-nav-strip .navbar-nav li.menu-item-has-children .sub-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    position: absolute;
    top: 100%;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
    min-width: 100%;
    width: auto;
    border-top: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    border: none;
    background: transparent;
    border: 1px solid transparent;
    padding: 0px;
    opacity: 0;
    height: 0;
    overflow: hidden;
    max-height: 300px;
    -webkit-transition: 0.2s linear;
    -moz-transition: 0.2s linear;
    -ms-transition: 0.2s linear;
    -o-transition: 0.2s linear;
    transition: 0.2s linear;
  }
  section.top-nav-strip .navbar-nav li.menu-item-has-children .sub-menu::after {
    display: block;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ffffff;
    opacity: .95;
    z-index: -1;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }
  section.top-nav-strip .navbar-nav li.menu-item-has-children .sub-menu > li {
    padding: 0px;
  }
  section.top-nav-strip .navbar-nav li.menu-item-has-children .sub-menu > li a {
    position: relative;
    color: #E54B25 !important;
    text-transform: uppercase;
    font-size: 15px;
    white-space: nowrap;
    display: block;
    padding: 7px 10px;
  }
  section.top-nav-strip .navbar-nav li.menu-item-has-children .sub-menu > li a:hover {
    color: #ffffff !important;
    background: #E54B25 !important;
  }
  section.top-nav-strip .navbar-nav li.menu-item-has-children .sub-menu > li.current-menu-parent > a,
  section.top-nav-strip .navbar-nav li.menu-item-has-children .sub-menu > li.current-menu-ancestor > a,
  section.top-nav-strip .navbar-nav li.menu-item-has-children .sub-menu > li.current-menu-item > a,
  section.top-nav-strip .navbar-nav li.menu-item-has-children .sub-menu > li:hover > a {
    opacity: 1;
    position: relative;
    color: #ffffff !important;
    background: #E54B25 !important;
  }
  section.top-nav-strip .navbar-nav li.menu-item-has-children:hover > .sub-menu {
    padding: 15px 0px;
    opacity: 1;
    height: auto;
    overflow: auto;
    display: block;
    border: 1px solid #E54B25;
  }
  section.top-nav-strip.not-top{
      position: fixed;
      top: 0;
      width: 100%;
      z-index: 100;
      background: rgba(229, 75, 37, .85);
      height: 60px;
  }
  section.top-nav-strip.not-top .navbar-nav{
      justify-content: center;
      padding-left: 0;
  }
  section.top-nav-strip.not-top .navbar-nav > li{
      width: 14.285714285714%;
      transition: none;
  }
  section.top-nav-strip.not-top .navbar-nav > li > a{
      text-transform: uppercase;
      font-size: 15px;
      font-weight: 600;
      position: relative;
      padding: 0 5px;
      height: 30px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: none;
  }
  section.top-nav-strip.not-top .navbar-nav > li > a::after {
      position: absolute;
      display: block;
      width: 2px;
      height: 85px;
      content: '';
      background: #ffffff;
      top: 0;
      right: -1px;
      transform: rotate(0deg);
      height: 30px;
  }
  section.top-nav-strip.not-top .navbar-nav > li:last-child > a::after{
      display: none;
  }
  section.top-nav-strip .navbar-nav li a{
      transition: none;
  }
  section.top-nav-strip.not-top + .container{
      padding-top: 150px;
  }
}
@media (min-width: 768px) and (max-width: 1200px) {
  section.top-nav-strip .navbar-nav li a {
    font-size: 15px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  section.top-nav-strip .navbar-nav li a {
    font-size: 11px;
    padding: 5px 8px;
  }
}
@media (max-width: 767px) {
  section.top-nav-strip {
    margin-top: 0px;
    height: 0;
    overflow: hidden;
    margin-bottom: 25px;
  }
  section.top-nav-strip .container {
    padding: 0;
    width: 100%;
    max-width: 100%;
  }
  section.top-nav-strip .container .nav-strip-box {
    flex-direction: column;
  }
  section.top-nav-strip .container .nav-strip-box > a {
    width: 100%;
    padding: 15px;
    border-bottom: 1px solid #ffffff;
  }
  section.top-nav-strip .container .nav-strip-box > a:last-child {
    border: none;
  }
  section.top-nav-strip .container .nav-strip-box > a::after {
    display: none;
  }
  section.top-nav-strip .container .nav-strip-box > a .icon {
    display: none;
  }
  section.top-nav-strip .container .nav-strip-box > a .name {
    height: auto;
    margin: 0;
  }
  .top-navs{
      position: fixed;
      top: 0;
      width: 100%;
      z-index: 100;
  }
  .main-content{
      padding-top: 90px;
  }
}
section.section-bg-img-on-top {
  padding-top: 1px;
  background: #f0f2f5;
  background-position: top center;
  background-repeat: no-repeat;
  background-size: contain;
  padding-bottom: 50px;
}
@media (max-width: 767px) {
  section.text-img .image-part {
    padding: 0;
    width: 100vw;
  }
  section.text-img .image-part img {
    width: 100%;
  }
}
@media (max-width: 767px) and (min-width: 576px) {
  section.text-img .image-part {
    margin-left: calc(260px - 50vw);
    margin-right: calc(260px - 50vw);
  }
}
section.discover-bejas .info-about-place .top-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 10px;
}
section.discover-bejas .info-about-place .top-section .buttons {
  text-align: right;
}
@media (max-width: 991px) {
  section.discover-bejas .info-about-place .top-section {
    text-align: center;
    flex-direction: column;
    justify-content: center;
  }
  section.discover-bejas .info-about-place .top-section .buttons {
    text-align: center;
  }
}
section.discover-bejas .info-about-place .image-galery {
  width: 100%;
  margin-bottom: 10px;
}
section.discover-bejas .info-about-place .image-galery .gallery-item {
  width: 100%;
  padding-top: 66.667%;
  display: block;
  content: '';
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
section.discover-bejas .info-about-place .image-galery .slick-arrow {
  z-index: 9;
  width: 26px;
  height: 26px;
  background: #000000;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  opacity: .75;
  -webkit-transition: 0.2s linear;
  -moz-transition: 0.2s linear;
  -ms-transition: 0.2s linear;
  -o-transition: 0.2s linear;
  transition: 0.2s linear;
}
section.discover-bejas .info-about-place .image-galery .slick-arrow::before {
  font-size: 20px;
  opacity: 1;
  color: #ffffff;
  position: absolute;
  top: 50%;
  font-family: "Font Awesome 5 Free";
  font-weight: bold;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}
section.discover-bejas .info-about-place .image-galery .slick-arrow:hover,
section.discover-bejas .info-about-place .image-galery .slick-arrow:focus {
  opacity: 1;
}
section.discover-bejas .info-about-place .image-galery .slick-prev {
  left: 25px;
}
section.discover-bejas .info-about-place .image-galery .slick-prev::before {
  left: 45%;
  content: '\f053';
}
section.discover-bejas .info-about-place .image-galery .slick-next {
  right: 25px;
}
section.discover-bejas .info-about-place .image-galery .slick-next::before {
  left: 55%;
  content: '\f054';
}

section.news .news-block {
  align-items: stretch;
  padding-top: 15px;
  padding-bottom: 15px;
}
section.news .news-block .news-thumbnail {
  width: 100%;
  height: 100%;
  display: block;
  content: '';
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
section.news .news-block .title {
  font-size: 18px;
  line-height: 1;
  color: #000000;
  font-weight: bold;
}
section.news .news-block .date {
  font-size: 14px;
  color: #565c61;
  padding-bottom: 10px;
}
section.news .news-block .excerpt a {
  color: #E54B25;
  font-weight: bold;
}
@media (max-width: 767px) {
  section.news .news-block {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  section.news .news-block .news-thumbnail {
    width: 100%;
    padding-top: 75%;
    margin-bottom: 8px;
  }
}
section.news .gallery-img {
  width: 100%;
  padding-top: 75%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
  margin-top: 15px;
  margin-bottom: 15px;
}
section.single-news .back-to-news {
  padding-left: 20px;
  position: relative;
}
section.single-news .back-to-news::after {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0px;
  bottom: 0;
  font-family: "Font Awesome 5 Free";
  content: '\f060';
  font-size: inherit;
  color: #E54B25;
  font-weight: bold;
  -webkit-transition: 0.2s linear;
  -moz-transition: 0.2s linear;
  -ms-transition: 0.2s linear;
  -o-transition: 0.2s linear;
  transition: 0.2s linear;
}
section.single-news .back-to-news span {
  background-color: #E54B25;
  background: -webkit-gradient(linear, left top, right top, from(#E54B25), to(#fa9900));
  background: -webkit-linear-gradient(left, #E54B25, #fa9900);
  background: -moz-linear-gradient(left, #E54B25, #fa9900);
  background: -ms-linear-gradient(left, #E54B25, #fa9900);
  background: -o-linear-gradient(left, #E54B25, #fa9900);
  font-weight: 500;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
section.single-news .title {
  font-size: 36px;
  color: #000000;
  font-weight: bold;
}
section.single-news .date {
  font-size: 14px;
  color: #565c61;
  padding-bottom: 10px;
}
section.partners .partner-slider {
  width: 100%;
}
section.partners .partner-slider .partner-box {
  width: 100%;
  padding: 0 15px;
}
section.partners .partner-slider .partner-box .single-partner {
  width: 100%;
  padding-top: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: '';
  -webkit-transition: 0.2s linear;
  -moz-transition: 0.2s linear;
  -ms-transition: 0.2s linear;
  -o-transition: 0.2s linear;
  transition: 0.2s linear;
}
section.partners .partner-slider .partner-box:hover .single-partner {
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
}
section.page {
  background: #f0f2f5;
  min-height: calc(100vh - 290px);
  padding-bottom: 80px;
}
section.contacts {
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: contain;
}
section.contacts .contacts-info-block .title span {
  padding-left: 10px;
  font-weight: bold;
}
section.contacts .contacts-info-block p {
  padding: 0;
  margin: 0;
}
section.contacts .contacts-info-block a {
  font-weight: bold;
  color: #E54B25;
}
section.contacts .contact-form {
  background: #ffffff;
  padding: 30px 15px;
  box-shadow: 0px 0px 4px 4px rgba(150, 150, 150, 0.2);
}
section.contacts .contact-form .title {
  font-weight: bold;
  text-align: center;
}
section.contacts .contact-form label {
  margin-bottom: 5px;
  margin-top: 10px;
}
section.contacts .map {
  margin: 50px 0;
  box-shadow: 0px 0px 4px 4px rgba(150, 150, 150, 0.2);
  padding: 10px;
}
section.contacts .map #map {
  width: 100%;
  height: 350px;
}
section.single-line-gallery .gal-slider {
  width: 100%;
}
section.single-line-gallery .gal-slider .bg-img {
  width: calc(100% - 20px);
  padding-top: 60%;
  content: '';
  display: block;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin: 10px;
}
section.single-line-gallery .gal-slider .slick-arrow {
  z-index: 9;
  width: 26px;
  height: 26px;
  background: #000000;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  opacity: .75;
  -webkit-transition: 0.2s linear;
  -moz-transition: 0.2s linear;
  -ms-transition: 0.2s linear;
  -o-transition: 0.2s linear;
  transition: 0.2s linear;
}
section.single-line-gallery .gal-slider .slick-arrow::before {
  font-size: 20px;
  opacity: 1;
  color: #ffffff;
  position: absolute;
  top: 50%;
  font-family: "Font Awesome 5 Free";
  font-weight: bold;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}
section.single-line-gallery .gal-slider .slick-arrow:hover,
section.single-line-gallery .gal-slider .slick-arrow:focus {
  opacity: 1;
}
section.single-line-gallery .gal-slider .slick-prev {
  left: 25px;
}
section.single-line-gallery .gal-slider .slick-prev::before {
  left: 45%;
  content: '\f053';
}
section.single-line-gallery .gal-slider .slick-next {
  right: 25px;
}
section.single-line-gallery .gal-slider .slick-next::before {
  left: 55%;
  content: '\f054';
}
section .guestbook-form {
  max-width: 600px;
  margin: auto;
}
section .guestbook-form label {
  margin-bottom: 5px;
  margin-top: 10px;
}
section.event-pages > a {
  display: inline-block;
  padding: 5px 10px;
  border: 1px solid #E54B25;
  background: #ffffff;
  color: #E54B25;
  -webkit-transition: 0.2s linear;
  -moz-transition: 0.2s linear;
  -ms-transition: 0.2s linear;
  -o-transition: 0.2s linear;
  transition: 0.2s linear;
}
section.event-pages > a.active,
section.event-pages > a:hover {
  color: #ffffff;
  background: #E54B25;
}
@media (max-width: 767px) {
  section.event-pages {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
  }
  section.event-pages > a {
    display: block;
    margin: 5px;
  }
}
section.multi-blocks .row {
  display: flex;
  align-items: center;
}
@media (max-width: 575px) {
  section.multi-blocks .row {
    flex-direction: column-reverse;
    margin-top: 15px;
    margin-bottom: 15px;
  }
}
section.multi-blocks .img-gal a.bg-img-box {
  display: block;
  position: relative;
}
section.multi-blocks .img-gal a.bg-img-box .bg-img {
  width: 100%;
  padding-top: 75%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
section.multi-blocks .img-gal a.bg-img-box::after,
section.multi-blocks .img-gal a.bg-img-box::before {
  position: absolute;
  display: block;
  content: '';
  bottom: 0;
  right: 0;
  left: 0;
  top: 0;
  opacity: 0;
  -webkit-transition: 0.2s linear;
  -moz-transition: 0.2s linear;
  -ms-transition: 0.2s linear;
  -o-transition: 0.2s linear;
  transition: 0.2s linear;
}
section.multi-blocks .img-gal a.bg-img-box::before {
  background: #000000;
}
section.multi-blocks .img-gal a.bg-img-box::after {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-family: "Font Awesome 5 Free";
  content: '\f00e';
  font-weight: bold;
}
section.multi-blocks .img-gal a.bg-img-box:hover::after,
section.multi-blocks .img-gal a.bg-img-box:focus::after {
  opacity: 1;
}
section.multi-blocks .img-gal a.bg-img-box:hover::before,
section.multi-blocks .img-gal a.bg-img-box:focus::before {
  opacity: 0.65;
}
section.multi-blocks .img-gal .slick-arrow {
  z-index: 99;
  width: 30px;
  height: 30px;
  background: rgba(0, 0, 0, 0.5);
}
section.multi-blocks .img-gal .slick-arrow::before {
  position: relative;
  z-index: 9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-family: "Font Awesome 5 Free";
  content: '\f053';
  font-weight: bold;
}
section.multi-blocks .img-gal .slick-arrow.slick-prev {
  left: 15px;
}
section.multi-blocks .img-gal .slick-arrow.slick-prev::before {
  font-family: "Font Awesome 5 Free";
  content: '\f053';
  font-weight: bold;
}
section.multi-blocks .img-gal .slick-arrow.slick-next {
  right: 15px;
}
section.multi-blocks .img-gal .slick-arrow.slick-next::before {
  font-family: "Font Awesome 5 Free";
  content: '\f054';
  font-weight: bold;
}
section.multi-blocks .img-gal .slick-arrow disabled {
  opacity: .25;
}
section.multi-blocks .img-gal .slick-arrow disabled::before {
  opacity: 1;
}
@media (min-width: 576px) {
  section.multi-blocks .info-bl {
    text-align: left;
  }
  section.multi-blocks .info-bl h1,
  section.multi-blocks .info-bl h2,
  section.multi-blocks .info-bl h3,
  section.multi-blocks .info-bl h4,
  section.multi-blocks .info-bl h5,
  section.multi-blocks .info-bl h6 {
    text-align: left;
  }
}
/* buttons */
.btn {
  border: solid 2px #E54B25;
  background: transperent;
  color: #E54B25;
  text-transform: uppercase;
  padding: 5px 10px;
  padding-right: 30px;
  position: relative;
  font-weight: 600;
  -webkit-transition: 0.2s linear;
  -moz-transition: 0.2s linear;
  -ms-transition: 0.2s linear;
  -o-transition: 0.2s linear;
  transition: 0.2s linear;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
.btn::after {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  right: 10px;
  bottom: 0;
  font-family: "Font Awesome 5 Free";
  content: '\f054';
  font-size: inherit;
  color: #E54B25;
  font-weight: bold;
  -webkit-transition: 0.2s linear;
  -moz-transition: 0.2s linear;
  -ms-transition: 0.2s linear;
  -o-transition: 0.2s linear;
  transition: 0.2s linear;
}
.btn:hover {
  border: solid 2px #E54B25;
  background: #E54B25;
  color: #ffffff;
}
.btn:hover::after {
  color: #ffffff;
}
.btn.alt {
  border: solid 2px #dadada;
  background: #ffffff;
  color: #000000;
}
.btn.alt::after {
  color: #000000;
}
.btn.alt:hover {
  border: solid 2px #ffffff;
  background: #E54B25;
  color: #ffffff;
}
.btn.alt:hover::after {
  color: #ffffff;
}
.btn.orang {
  border: solid 2px #E54B25;
  background: #E54B25;
  color: #ffffff;
}
.btn.orang::after {
  color: #ffffff;
}
.btn.orang:hover {
  border: solid 2px #E54B25;
  background: #ffffff;
  color: #E54B25;
}
.btn.orang:hover::after {
  color: #E54B25;
}
.btn.white {
  border: solid 2px #ffffff;
  background: #ffffff;
  color: #E54B25;
}
.btn.white::after {
  color: #E54B25;
}
.btn.white:hover {
  border: solid 2px #ffffff;
  background: #E54B25;
  color: #ffffff;
}
.btn.white:hover::after {
  color: #ffffff;
}
.btn.small {
  padding: 3px 6px;
  padding-right: 20px;
  font-size: 14px;
}
.btn.small::after {
  right: 6px;
}

.page-template-default section.page{
    padding-bottom: 0;
}

@media (max-width: 768px) {
    .home .index-banner{
        display: none;
    }
    .page-template-page-contacts section.page{
        padding-bottom: 100px !important;
    }
    .places-slick-slider{
        margin-bottom: 30px;
    }
    .index-banner{
        min-height: 230px;
    }
    .index-banner .container{
        display: none;
    }
}

.table-section table tr td,
.table-section table tr th {
    font-size: 12px;
}

.places-slick-slider .slick-list{
    height: auto !important;
}

.places-slick-slider .image-galery{
    display: none;
}

.places-slick-slider .image-galery.slick-initialized{
    display: block;
}

.places-slick-slider .slick-slide:not(.slick-current){
    height: 0 !important;
}

.accordion{
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    margin-top: 34px;
}

.accordion .tabs-nav{
    width: 100%;
    display: flex;
    padding: 0;
    margin: 0;
    border-radius: 15px;
    justify-content: space-between;
}

.accordion .tabs-nav p{
    margin: 0;
}

.accordion .tabs-nav a{
    color: #3D3D3D;
    margin-bottom: 26px;
    display: block;
    padding: 11px;
    margin-bottom: 4px;
}

.accordion .tab-active a{
    background-color: #E54B25;
}

.accordion .tab-active a p{

    color: #fff;
}

.accordion .tabs-nav li{
    list-style: none;
}

.accordion .tabs-nav li:last-child a{
    margin-bottom: 0;
}

.accordion .tabs-stage{
    width: 100%;
    display: flex;
    align-items: center;
}

.accordion .tabs-stage .tab-content{
    color: #737373;
    text-align: left;
    width: 100%;
}

.accordion .tabs-stage .tab-content .image-galery{
    min-height: 360px;
    margin-top: 25px;
}

.accordion .tabs-stage .tab-content .image-galery .slick-track{

}

.accordion .tabs-stage .tab-header{
    display: none;
    width: 100%;
}

.accordion .tabs-stage .tab-header a{
    color: #3D3D3D;
    margin-bottom: 26px;
    display: block;
    padding: 10px 6px;
}

.accordion .tabs-stage iframe{
    width: 100%;
}

@media (max-width: 768px) {
    .accordion{
        overflow: hidden;
    }
    .accordion .tabs-nav{
        display: none;
    }
    .accordion .tabs-stage .tab-header a {
        margin-bottom: -1px;
    }
    .accordion .tabs-stage{
        width: 100%;
        padding-left: 0;
        flex-direction: column;
    }
    .accordion .tabs-stage .tab-header{
        display: block;
    }
    .accordion .tab-stage .tab-content{
        margin-top: 10px;
    }
    .accordion .tabs-stage .tab-header.tab-active a{
        margin-bottom: 0;
        color: #fff;
        padding: 10px;
    }
}
