* {
  margin: 0;
  padding: 0;
  color: #000;
  font-family: 'montserrat', sans-serif;
}

body.hideScroll {
  overflow-y: hidden;
}

.fixedPage {
  overflow: hidden;
}

a {
  text-decoration: none;
}

li {
  line-height: 1.6;
}

button {
  outline: none;
}

img {
  display: block;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.wrapper {
  width: 1200px;
  margin: 0 auto;
}

.hide {
  display: none;
}

header {
  height: 70px;
  background: #fff;
  position: fixed;
  width: 100%;
  -webkit-box-shadow: 0 5px 6px rgba(36, 36, 36, 0.37);
  box-shadow: 0 5px 6px rgba(36, 36, 36, 0.37);
  z-index: 9999;
}

header .wrap {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  background: #fff;
}

header #logo {
  -ms-flex-preferred-size: 25%;
  flex-basis: 25%;
  height: 100%;
}

@media (max-width: 1240px) {
  header #logo {
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }
}

header #logo .logoImg {
  padding: 8px;
  height: 50px;
}

header #logo .logoDesc {
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  text-align: center;
}

header .logoDesc p {
  letter-spacing: 2px;
  margin: 0;
  color: #20471F;
  line-height: inherit;
}

header .logoDesc .name {
  font-size: 20px;
  font-weight: 700;
  font-family: "playfair_display", sans-serif;
}

header .logoDesc .desc {
  font-size: 18px;
}

header .navMobile {
  display: none;
}

@media (max-width: 768px) {
  header {
    height: 60px;
  }

  header .navMobile {
    display: block;
  }

  header #logo .logoImg {
    padding: 5px 0 5px 10px;
  }
}

@media (max-width: 320px) {
  header #logo .logoImg {
    padding: 5px 0;
  }
}

header .burger {
  cursor: pointer;
  width: 30px;
  height: 24px;
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
}

header .burger span:nth-child(2) {
  margin: 6px 0;
}

header .navMobile div span {
  display: block;
  /*position: absolute;*/
  width: 30px;
  height: 4px;
  background: #000;
  border-radius: 8px;
  right: 30px;
}

@media (max-width: 320px) {
  header .burger {
    right: 10px;
  }
}

header .navMobile div.active span:nth-child(1) {
  -webkit-transform: translate(0, 10px) rotate(-45deg);
  -ms-transform: translate(0, 10px) rotate(-45deg);
  transform: translate(0, 10px) rotate(-45deg);
}

header .navMobile div.active span:nth-child(2) {
  -webkit-transition-duration: 0s;
  -o-transition-duration: 0s;
  transition-duration: 0s;
  opacity: 0;
}

header .navMobile div.active span:nth-child(3) {
  -webkit-transform: translate(0, -10px) rotate(45deg);
  -ms-transform: translate(0, -10px) rotate(45deg);
  transform: translate(0, -10px) rotate(45deg);
}

header .navMobile nav {
  position: absolute;
  top: -300px;
  left: 0;
  width: 100%;
  background: #fff;
  -webkit-box-shadow: 0 5px 6px rgba(36, 36, 36, 0.37);
  box-shadow: 0 5px 6px rgba(36, 36, 36, 0.37);
  z-index: -1;
  -webkit-transition: top 0.5s;
  -o-transition: top 0.5s;
  transition: top 0.5s;
}

header .navMobile nav.open {
  top: 60px;
}

header .navMobile nav ul {
  text-align: center;
}

header .navMobile nav ul li {
  list-style: none;
  font-size: 20px;
  margin: 1rem;
}

header .navMobile nav ul li:nth-child(5) {
  margin-top: 2rem;
}

@media (max-width: 1240px) {
  header .navWeb nav {
    display: none;
  }
}

header .navWeb nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

header .navWeb nav li {
  list-style: none;
  margin-right: 16px;
}

header .navWeb nav a {
  letter-spacing: 2px;
  font-size: 16px;
  font-weight: 700;
}

@media (max-width: 1324px) {
  header .navWeb nav a {
    letter-spacing: 1px;
  }
}

header #contactsHeader {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-preferred-size: 25%;
  flex-basis: 25%;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

@media (max-width: 768px) {
  header #contactsHeader {
    display: none;
  }
}

@media (max-width: 1620px) {
  header #contactsHeader {
    -ms-flex-wrap: wrap-reverse;
    flex-wrap: wrap-reverse;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

header #contactsHeader .phone {
  font-size: 20px;
  text-decoration: none;
  font-weight: 700;
}

@media (max-width: 1620px) {
  header #contactsHeader .phone {
    margin-top: 8px;
  }
}

.btn {
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 16px;
  text-transform: uppercase;
  background: #20471F;
  letter-spacing: 2px;
  border: 2px solid #20471F;
  color: #fff;
  cursor: pointer;
  -webkit-transition: color .3s, background .3s;
  -o-transition: color .3s, background .3s;
  transition: color .3s, background .3s;
}

.btn:hover {
  background: #fff;
  color: #20471f;
}

.button {
  text-align: center;
  margin: 3rem 0 0 0;
}

#contactsHeader .btn {
  margin: 0 16px;
}

@keyframes coverMove {
  from {transform: scale(1.0);}
  50% {transform: scale(1.1);}
  to {transform: scale(1.0);}
}

#cover {
  overflow: hidden;
  position: relative;
}

.cover-image {
  animation: coverMove 15s infinite linear;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.3)), to(rgba(0, 0, 0, 0.3))), url(../images/bg.jpg);
  background-image: -o-linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(../images/bg.jpg);
  background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(../images/bg.jpg);
  height: 100vh;
  background-size: cover;
  background-position: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media (max-width: 768px) {
  .cover-image {
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.3)), to(rgba(0, 0, 0, 0.3))), url(../images/bgMob.jpg);
    background-image: -o-linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(../images/bgMob.jpg);
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(../images/bgMob.jpg);
  }
}

#cover p {
  line-height: inherit;
}

#cover .desc {
  padding-top: 40vh;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

@media (max-height: 680px) {
  #cover .desc {
    padding-top: 30vh;
  }
}

#cover .desc .header {
  color: #fff;
  font-size: 60px;
  text-align: center;
  font-weight: 700;
  margin: 0;
}

@media (max-width: 425px) {
  #cover .desc .header {
    font-size: 40px;
    padding: 0 8px;
  }
}

#cover .subHeader {
  color: #fff;
  font-size: 32px;
  text-align: center;
  margin-top: 32px;
}

@media (max-width: 320px) {
  #cover .subHeader {
    font-size: 24px;
  }
}

#bnovoFrame {
  position: absolute;
  width: 100%;
  margin-top: -135px;
}

@media (max-height: 570px) {
  #bnovoFrame {
    margin-top: -65px;
  }
}

#tents .wrap {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

#tents .desc {
  max-width: 800px;
  margin: auto;
}

@media (max-width: 1000px) {
  #tents .wrap {
    max-width: 800px;
    margin: 0 auto;
  }
}

#tents .wrap .tent {
  width: calc(50% - 12px);
  position: relative;
}

#tents .tent .owl-stage-outer::before {
  content: '';
  position: absolute;
  z-index: 100;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 50px;
  background: #000;
  opacity: 0.5;
}

#tents .wrap .owl-prev, #tents .wrap .owl-next {
  top: calc(50% - 25px);
}

#tents .wrap .owl-prev {
  left: 16px;
}

#tents .wrap .owl-next {
  right: 16px;
}

#tents .tent-name {
  position: absolute;
  z-index: 100;
  bottom: -4px;
  left: 0;
  transform: translateY(-50%);
  color: #fff;
  font-family: "playfair_display", sans-serif;
  font-size: 24px;
  letter-spacing: 2px;
  margin: 8px auto;
  width: 100%;
  text-align: center;
}

#tents .wrap .desc {
  padding: 0 2rem;
  -ms-flex-preferred-size: 30%;
  flex-basis: 30%;
}

@media (max-width: 1000px) {
  #tents .wrap .desc {
    padding: 0 0 0 2rem;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }
}

#tents .wrap .desc .title {
  font-weight: 700;
  text-transform: uppercase;
  margin: 0;
}

#tents .wrap .desc li {
  margin-top: 1rem;
}

@media (max-width: 767px) {
  #terra .web {
    display: none;
  }
}

@media (min-width: 768px) {
  #terra .mobile {
    display: none;
  }
}

#terra div {
  width: 1060px;
  margin: 0 auto;
}

@media (max-width: 1240px) {
  #terra div {
    width: 100%;
  }
}

#terra .owl-carousel {
  margin-top: 3rem;
  text-align: center;
}

#terra .owl-carousel .owl-prev, #terra .owl-carousel .owl-next {
  top: 45%;
}

#awards .reward_wrap.flex {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

#good-place.reward_wrap {
  flex-direction: row-reverse;
}

#awards .text {
  padding-right: 5em;
}

#awards #good-place .text {
  padding-left: 5em;
  padding-right: 0;
}

#good-place .reward {
  width: 200px;
}

#booking .reward_web {
  width: 300px;
}

#awards .reward_mob {
  display: none;
}

@media only screen and (max-width: 768px){
  #awards #booking.reward_wrap.flex{
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  #awards #booking .image {
    width: 100%;
    margin-top: 2em;
  }

  #awards .text {
    padding-right: 0;
  }

  #awards #good-place .text {
    padding-left: 2em;
  }

  #awards img {
    width: 100%;
  }

  #awards .reward_mob {
    display: block;
  }

  #awards .reward_web {
    display: none;
  }

}

@media only screen and (max-width: 768px){
  #awards .reward_wrap.flex{
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  #awards #good-place .text {
    padding-left: 0;
  }

  #awards #good-place .image {
    margin: 2rem auto;
  }
}

#price .cards {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 4rem;
}

#price .cards .card {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

#price .cards .card .img {
  width: 580px;
  height: 326.25px;
}

#price .cards .card .name {
  font-size: 24px;
  text-align: center;
}

#price .cards .card .description {
  text-align: center;
}

#price .table {
  margin: 3rem auto 0;
  display: -ms-grid;
  display: grid;
  grid: 1fr 1fr 1fr / 40% 30% 30%;
  max-width: 800px;
}

#price .table .cell {
  padding: 16px 0;
  font-size: 24px;
}

@media (max-width: 425px) {
  #price .table .cell {
    font-size: 16px;
  }
}

#price .table .cell:nth-child(3n), #price .table .cell:nth-child(3n+2) {
  text-align: center;
}

#price .table .cell {
  border-top: 2px solid #20471F;
}

#price .table .cell:nth-child(-n+3) {
  border-top: 0;
}

#price > p {
  text-align: center;
}

#certificates .certificates-wrap {
  padding-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

#certificates .certificates-item {
  width: 30%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

#certificates .item-image {
  position: relative;
}

#certificates .sale-label {
  font-weight: bold;
  position: absolute;
  top: 0;
  right: 0;
  background: red;
  color: #fff;
  padding: 10px;
  z-index: 50;
  font-size: 30px;
}

#certificates .item-image img {
  width: 100%;
}

#certificates .item-price {
  padding-top: 20px;
  text-align: center;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

#certificates .current-price {
  font-size: 32px;
  font-weight: bold;
}

#certificates .current-price.old-price {
  display: block;
  -webkit-text-decoration: line-through red;
  text-decoration: line-through red;
  margin-bottom: 10px;
}

.certificates-item .button {
  margin-top: 2rem;
}

#comfort > p {
  text-align: center;
}

.wrap {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.itemWrap {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 300px;
  margin: 3rem 1rem 0;
}

.itemWrap .title > p {
  margin: 0;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  padding: 0 0 0 16px;
  font-weight: 700;
  letter-spacing: 2px;
}

.itemWrap img.icon {
  width: 60px;
}

#services > p {
  text-align: center;
}

.service-item {
  padding: 0 100px;
}

.service-name, .service-price {
  font-weight: 700;
}

.service-name, .service-desc {
  margin-right: 20px;
}

.service-price {
  color: #20471F;
}

#services .wrap {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

#services .wrap .wrapItem {
  width: 300px;
  margin: 1rem;
  position: relative;
}

#services .wrap .wrapItem img {
  width: 100%;
}

#services .wrap .wrapItem p {
  background: rgba(0, 0, 0, 0.6);
  color: #e8e8e8;
  margin: 0;
  position: absolute;
  width: -webkit-fill-available;
  width: -moz-available;
  width: fill-available;
  bottom: 4px;
  line-height: 40px;
  padding-left: 16px;
}

#faq p.answers, #faq p.questions {
  margin: 0;
  font-size: 16px;
  border: 1px solid #20471F;
  border-top: none;
}

#faq p.answers:nth-child(1), #faq p.questions:nth-child(1) {
  border-top: 1px solid #20471F;
}

#faq .questions {
  background: #e8e8e8;
  padding: 16px 0 16px 16px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  line-height: 30px;
  cursor: pointer;
}

#faq .questions::after {
  content: "";
  background-image: url(../images/ico/cross.svg);
  background-repeat: no-repeat;
  padding-right: 16px;
  margin-top: 10px;
  float: right;
  width: 20px;
  height: 20px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  -o-transition: transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}

#faq .questions-open::after {
  -webkit-transform: translate(2px, -5px) rotate(0deg);
  -ms-transform: translate(2px, -5px) rotate(0deg);
  transform: translate(2px, -5px) rotate(0deg);
}

#faq .answers {
  display: none;
  padding: 16px 0 16px 16px;
}

@media (max-width: 340px) {
  #faq p.questions, #faq p.answers {
    font-size: 14px;
  }
}

#instaGallery .instWrap{
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

#instaGallery .instCard {
  position: relative;
  width: 24%;
  margin-bottom: 1%;
  /*box-shadow: 2px 2px 10px rgba(32, 71, 31, 0.6);*/
}

#instaGallery .instCard::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  top: 0;
  left: 0;
  z-index: 10;
  opacity: 0;
  transition: opacity 0.5s ease;
}

#instaGallery .instCard:hover::after {
  opacity: 1;
}

#instaGallery .instCard-desc {
  font-size: 14px;
  position: absolute;
  top: 0;
  left: 0;
  color: #fff;
  z-index: 20;
  opacity: 0;
  transition: opacity 0.5s ease;
  padding: 0 16px;
  margin: 25% 0 0;
  cursor: pointer;
}

#instaGallery .instCard:hover .instCard-desc {
  opacity: 1;
}

#instaGallery  img {
  width: 100%;
  display: block;
}

@media only screen and (max-width: 768px){
  #instaGallery .instCard {
    width: 49%;
  }
}

@media only screen and (max-width: 500px){
  #instaGallery .instCard {
    width: 100%;
    margin-bottom: 16px;
  }
}

#howToGet .wrap .method strong {
  letter-spacing: 2px;
}

#howToGet .wrap .method .title {
  font-weight: 700;
  letter-spacing: 2px;
  text-align: center;
  margin: 0;
}

#howToGet .wrap .method a b {
  color: blue;
}

#howToGet .wrap .method:nth-child(2) {
  margin-top: 2rem;
}

#playlists {
  margin-bottom: 4em;
}

.playlists-text {
  text-align: center;
}

.playlists-image {
  margin-top: 32px;
}

.playlists-image img {
  display: block;
  margin: auto;
}

.playlists {
  max-width: 400px;
  margin: 20px auto 0;
  justify-content: space-between;
}

.playlist_name {
  font-size: 20px;
  margin-bottom: 30px;
  text-align: center;
}

.playlist_item a {
  padding: 14px 25px 14px 21px;
  background-color: #FFDB4D;
  border-radius: 50px;
}

.play-icon {
  margin-right: 12px;
}

#map {
  margin-top: 2rem;
}

#modalRev {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.8);
  width: 100%;
  height: 100%;
}

#modalRev.show {
  display: block;
}

#modalRev .formWrap {
  position: absolute;
  top: 50%;
  left: 50%;
  min-height: 380px;
  background: white;
  padding: 16px;
  z-index: 19999;
  border-radius: 4px;
  transform: translate(-50%, -50%);
}

#modalRev .formWrap .x {
  position: absolute;
  width: 16px;
  height: 16px;
  top: 8px;
  right: 8px;
}

.formWrap .input {
  display: block;
  width: 250px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 1rem;
  padding: 0.5rem;
  margin: 0.8rem 0 0;
}

@media (min-width: 768px) {
  .formWrap .input {
    width: 400px;
  }
}

#modalRev .formWrap textarea {
  resize: none;
}

#modalRev .formWrap #thank {
  width: 250px;
  text-align: center;
  font-size: 24px;
  margin-top: 120px;
}

@media (min-width: 768px) {
  #modalRev .formWrap #thank {
    width: 400px;
  }
}

.wrapper, .full-width {
  margin-top: 5rem;
}

p {
  margin-top: 1rem;
  line-height: 1.6;
}

h1 {
  font-family: "playfair_display", sans-serif;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  font-weight: 400;
}

h1 strong {
  font-family: "playfair_display", sans-serif;
  color: #20471F;
  letter-spacing: 2px;
}

h2 {
  text-align: center;
  font-family: "playfair_display", sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #20471F;
  margin-bottom: 3rem;
}

footer {
  background: #20471F;
}

footer p, footer a, footer span {
  color: #e8e8e8;
  margin-top: 0;
}

footer .wrapper {
  margin-top: 0;
}

footer .wrapper > p {
  text-align: center;
  padding-bottom: 1rem;
}

footer .wrap {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

footer .wrap > div {
  padding: 3rem 0 0;
  width: 300px;
  max-width: 33%;
}

@media only screen and (max-width: 768px){
  footer .wrap > div {
    width: 50%;
  }

  footer .wrap div.rules {
    width: 100%;
    order: 0;
    max-width: none;
  }
}

@media only screen and (max-width: 500px){
  footer .wrap > div {
    width: 100%;
    max-width: none;
  }
}

footer .wrap > div:nth-child(2) p:nth-child(3) {
  margin-top: 1rem;
}

@media (max-width: 631px) {
  footer div.contacts {
    padding: 2rem 0 0 0;
  }

  footer div.contacts p {
    text-align: center;
  }
}

footer .social {
  text-align: end;
}

@media (max-width: 631px) {
  footer .social {
    text-align: center;
  }
}

footer .items {
  margin-top: 0.5rem;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

@media (max-width: 631px) {
  footer .items {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

footer .items img {
  width: 40px;
  height: 40px;
  margin-right: 10px;
}

footer .items img:hover {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-filter: drop-shadow(0px 0px 6px #ffffff90);
  filter: drop-shadow(0px 0px 6px #ffffff90);
}

footer li.rule {
  list-style: none;
  line-height: 1.6;
  text-align: center;
}

@media (max-width: 1240px) {
  .wrapper {
    width: 1000px;
    padding: 0 8px;
  }
}

@media (max-width: 1000px) {
  .wrapper {
    width: auto;
    padding: 0 16px;
  }
}

.owl-carousel .owl-dots {
  text-align: center;
  margin-bottom: 1rem;
}

.owl-carousel button.owl-dot {
  background: #e8e8e8;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  margin: 0 8px;
}

@media (min-width: 769px) {
  .owl-carousel button.owl-dot {
    display: none;
  }
}

.owl-carousel button.owl-dot.active {
  background: #20471f;
}

@media (max-width: 768px) {
  .owl-carousel button[role=presentation] {
    display: none;
  }
}

.owl-carousel .owl-nav button.owl-prev, .owl-carousel .owl-nav button.owl-next {
  position: absolute;
  right: -65px;
  width: 50px;
  background-color: #e8e8e8;
  height: 50px;
  border-radius: 50%;
  outline: none;
  -webkit-transition: background .3s;
  -o-transition: background .3s;
  transition: background .3s;
}

.owl-carousel .owl-nav button.owl-prev:hover, .owl-carousel .owl-nav button.owl-next:hover {
  background: #20471F;
}

.owl-carousel .owl-nav button.owl-prev:hover span,
.owl-carousel .owl-nav button.owl-next:hover span{
  color: #e8e8e8;
}

.owl-carousel .owl-nav button.owl-prev span, .owl-carousel .owl-nav button.owl-next span {
  font-size: 50px;
  line-height: 30px;
  color: #20471F;
  padding: 0 16px;
  -webkit-transition: color .3s;
  -o-transition: color .3s;
  transition: color .3s;
}

.owl-carousel .owl-nav button.owl-prev {
  left: -70px;
}

@media (max-width: 1360px) {
  .owl-carousel .owl-nav button.owl-prev {
    left: 15px;
  }
}

.owl-carousel .owl-nav button.owl-prev span {
  margin-right: 4px;
}

.owl-carousel .owl-nav button.owl-next {
  right: -70px;
}

@media (max-width: 1360px) {
  .owl-carousel .owl-nav button.owl-next {
    right: 15px;
  }
}

.owl-carousel .owl-nav button.owl-next span {
  margin-left: 4px;
}

#_bn_widget_ {
  margin-bottom: -1rem;
}

.secondary {
  padding-top: 100px;
  margin-bottom: 2rem;
}

.secondary h1 {
  font-size: 24px;
  font-weight: bold;
  color: #20471F;
}

.secondary h2 {
  margin: 2rem auto 1rem;
  font-size: 20px;
}

.secondary .wrapper {
  margin-top: 2rem;
}

.secondary ul {
  padding-left: 1rem;
}

.secondary ul li {
  margin-top: 0.5rem;
}

.secondary#reservation {
  margin: 0;
}

#reviews .owl-carousel .owl-prev, #reviews .owl-carousel .owl-next {
  top: 45%;
}

#reviews .review-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-right: 1px solid #dbdbdb;
}

iframe.instagram-media {
  min-width: 0 !important;
}

#hiddenCertificates {
  display: none;
  width: 460px;
}

#formCertificates {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.checkForm {
  padding: 15px 0;
  text-align: center;
}

.thank {
  display: none;
  text-align: center;
  padding: 30px 0;
}

.fancybox-content {
  padding: 30px !important;
}

ol.include-list, ol.include-list ol {
  list-style: none;
  counter-reset: li;
}

ol.include-list li li:before, ol.include-list li h2:before {
  counter-increment: li;
  content: counters(li, ".") ". ";
  font-family: "playfair_display", sans-serif;
  font-size: 20px;
}

ol.include-list>li {
  text-align: center;
}

ol.include-list ol {
  text-align: left;
}

ol.include-list h2, ol.include-list p {
  display: inline-block;
}

.requisites {
  font-weight: bold;
  margin-top: 25px;
}

.annex {
  margin-top: 50px;
  text-align: end;
}

.annex-title {
  font-weight: bold;
}

.annex table {
  margin-top: 50px;
}

table, td, th {
  border: 1px solid grey;
  border-collapse: collapse;
}

.download {
  position: relative;
  display: inline-block;
  padding-left: 35px;
  line-height: 25px;
  color: #3A0D0D;
}

.download:hover {
  color: #AC6363;
}

.download::before {
  content: '';
  width: 25px;
  height: 25px;
  display: inline-block;
  margin-right: 10px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}

.download-offer::before {
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/PjxzdmcgaWQ9IkNhcGFfMSIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgMTI4IDEyODsiIHZlcnNpb249IjEuMSIgdmlld0JveD0iMCAwIDEyOCAxMjgiIHhtbDpzcGFjZT0icHJlc2VydmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiPjxzdHlsZSB0eXBlPSJ0ZXh0L2NzcyI+Cgkuc3Qwe2ZpbGw6IzIxQTM2NTt9Cgkuc3Qxe2ZpbGw6IzEwN0M0MTt9Cgkuc3Qye2ZpbGw6IzE4NUIzNzt9Cgkuc3Qze2ZpbGw6IzMzQzQ4MTt9Cgkuc3Q0e2ZpbGw6IzE3ODY0Qzt9Cgkuc3Q1e2ZpbGw6I0ZGRkZGRjt9Cgkuc3Q2e2ZpbGw6IzAzNkM3MDt9Cgkuc3Q3e2ZpbGw6IzFBOUJBMTt9Cgkuc3Q4e2ZpbGw6IzM3QzZEMDt9Cgkuc3Q5e2ZpbGw6IzA0ODc4Qjt9Cgkuc3QxMHtmaWxsOiM0RjU5Q0E7fQoJLnN0MTF7ZmlsbDojN0I4MkVBO30KCS5zdDEye2ZpbGw6IzRDNTNCQjt9Cgkuc3QxM3tmaWxsOiMwRjc4RDU7fQoJLnN0MTR7ZmlsbDojMjlBN0VCO30KCS5zdDE1e2ZpbGw6IzAzNThBODt9Cgkuc3QxNntmaWxsOiMwRjc5RDY7fQoJLnN0MTd7ZmlsbDojMDM4Mzg3O30KCS5zdDE4e2ZpbGw6IzA0OEE4RTt9Cgkuc3QxOXtmaWxsOiNDODQyMUQ7fQoJLnN0MjB7ZmlsbDojRkY4RjZBO30KCS5zdDIxe2ZpbGw6I0VENkI0Nzt9Cgkuc3QyMntmaWxsOiM4OTEzMjM7fQoJLnN0MjN7ZmlsbDojQUYyMTMxO30KCS5zdDI0e2ZpbGw6I0M5NEU2MDt9Cgkuc3QyNXtmaWxsOiNFMDgxOTU7fQoJLnN0MjZ7ZmlsbDojQjQyODM5O30KCS5zdDI3e2ZpbGw6IzA0NjRCODt9Cgkuc3QyOHtmaWxsOiMwMzc3RDQ7fQoJLnN0Mjl7ZmlsbDojNEZEOEZGO30KCS5zdDMwe2ZpbGw6IzE2ODFENzt9Cgkuc3QzMXtmaWxsOiMwMTc4RDQ7fQoJLnN0MzJ7ZmlsbDojMDQyMDcxO30KCS5zdDMze2ZpbGw6IzE2OEZERTt9Cgkuc3QzNHtmaWxsOiNDQTY0RUE7fQoJLnN0MzV7ZmlsbDojN0UxRkFGO30KCS5zdDM2e2ZpbGw6I0FFNEJENTt9Cgkuc3QzN3tmaWxsOiM5MzMyQkY7fQoJLnN0Mzh7ZmlsbDojNzcxOUFBO30KCS5zdDM5e2ZpbGw6IzAwNzhENDt9Cgkuc3Q0MHtmaWxsOiMxNDkwREY7fQoJLnN0NDF7ZmlsbDojMDM2NEI4O30KCS5zdDQye2ZpbGw6IzI4QThFQTt9Cgkuc3Q0M3tmaWxsOiM0MUE1RUQ7fQoJLnN0NDR7ZmlsbDojMkM3QkQ1O30KCS5zdDQ1e2ZpbGw6IzE5NUFCRTt9Cgkuc3Q0NntmaWxsOiMxMDNFOTE7fQoJLnN0NDd7ZmlsbDojMjE2NkMzO30KCS5zdDQ4e29wYWNpdHk6MC4yO30KPC9zdHlsZT48cGF0aCBjbGFzcz0ic3Q0MyIgZD0iTTEyOCwzNC4ySDI5LjZWMTAuM2MwLTMuMiwyLjYtNS44LDUuOC01LjhoODYuN2MzLjIsMCw1LjgsMi42LDUuOCw1LjhWMzQuMnoiLz48cmVjdCBjbGFzcz0ic3Q0NCIgaGVpZ2h0PSIyOS44IiB3aWR0aD0iOTguNCIgeD0iMjkuNiIgeT0iMzQuMiIvPjxyZWN0IGNsYXNzPSJzdDQ1IiBoZWlnaHQ9IjI5LjgiIHdpZHRoPSI5OC40IiB4PSIyOS42IiB5PSI2NCIvPjxwYXRoIGNsYXNzPSJzdDQ2IiBkPSJNMTIyLjIsMTIzLjVIMzUuNWMtMy4yLDAtNS44LTIuNi01LjgtNS44VjkzLjhIMTI4djIzLjlDMTI4LDEyMC45LDEyNS40LDEyMy41LDEyMi4yLDEyMy41eiIvPjxwYXRoIGNsYXNzPSJzdDQ3IiBkPSJNNTkuNSw5Ni41aC01M2MtMy41LDAtNi40LTIuOS02LjQtNi40VjM3LjljMC0zLjUsMi45LTYuNCw2LjQtNi40aDUzYzMuNSwwLDYuNCwyLjksNi40LDYuNHY1Mi4yICBDNjUuOSw5My42LDYzLjEsOTYuNSw1OS41LDk2LjV6Ii8+PGc+PHBhdGggY2xhc3M9InN0NSIgZD0iTTE5LjMsODIuNGwtOC45LTM1LjloNy4xbDMuNSwxNi4zYzAuOSw0LjQsMS44LDguOSwyLjQsMTIuNWgwLjFjMC42LTMuOCwxLjYtOCwyLjYtMTIuNkwzMCw0Ni41aDdMNDAuNiw2MyAgIGMwLjksNC4zLDEuNyw4LjIsMi4yLDEyLjFoMC4xYzAuNi00LDEuNS04LDIuNS0xMi40bDMuOC0xNi4yaDYuOGwtOS44LDM1LjlIMzlsLTMuOC0xNi45Yy0wLjktNC0xLjYtNy40LTIuMS0xMS4zaC0wLjEgICBjLTAuNiwzLjgtMS4zLDcuMy0yLjQsMTEuNGwtNC4yLDE2LjlIMTkuM3oiLz48L2c+PHBhdGggY2xhc3M9InN0NDgiIGQ9Ik02NS45LDM3LjNjMCwwLjIsMCwwLjQsMCwwLjZ2NTIuMmMwLDMuNS0yLjksNi40LTYuNCw2LjRIMjkuN3Y1LjdoMzUuMmMzLjUsMCw2LjQtMi45LDYuNC02LjRWNDMuNiAgQzcxLjMsNDAuNCw2OSwzNy43LDY1LjksMzcuM3oiLz48L3N2Zz4=');
}

.download-offer {
  margin-top: 25px;
}

td, th {
  text-align: left;
  padding: 3px 5px;
}

@media (max-width: 500px) {
  #certificates .current-price {
    font-size: 24px;
  }

  .annex {
    text-align: left;
  }
}

@media (max-width: 426px) {
  #certificates .certificates-item {
    width: 100%;
    padding-bottom: 40px;
  }

  #certificates .item-price {
    padding-top: 10px;
  }

  .certificates-item .button {
    margin-top: 20px;
  }
}

@media screen and (max-width: 640px) {
  header #logo .logoDesc {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
  }
}

.full-width .one-slide {
  position: relative;
} 

.full-slide {
  position: relative;
}

.full-slide img {
  filter: brightness(0.6);
  object-fit: cover;
  height: 75vh;
}

.full-slide img.mob {
  display: none;
}

.slide-text {
  position: absolute;
  left: 50%;
  top: 60%;
  z-index: 10;
  max-width: 1200px;
  width: 100%;
  transform: translateX(-50%);
}

.slide-text p {
  color: #fff;
  font-size: 20px;
  font-family: 'montserrat', sans-serif;
}

.slide-text .title {
  text-transform: uppercase;
  text-align: center;
  line-height: 130%;
}

.full-width button {
  top: 50%;
}

.full-width .owl-carousel .owl-nav button.owl-prev {
  left: 20px;
}

.full-width .owl-carousel .owl-nav button.owl-next {
  right: 20px;
}

@media screen and (max-width: 1200px) {
  .slide-text p  {
    padding: 0 15px;
  }
}

@media screen and (max-width: 1024px) {
  .service-item.flex {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .service-desc {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    width: 100%;
    margin-top: 0;
  }
}

@media screen and (max-width: 768px) {
  #tents .tent-name {
    bottom: 16px;
  }
}

@media screen and (max-width: 640px) {
  h2 {
    margin-bottom: 1rem;
  }

  .wrapper, .full-width {
    margin-top: 3rem;
  }

  #tents .wrap .tent {
    width: 100%;
    margin-bottom: 24px;
  }

  #price .table {
    margin: 1rem auto 0;
  }

  .full-slide img.web {
    display: none;
  }

  .full-slide img.mob {
    display: block;
  }

  .slide-text {
    top: 80%;
  }

  .slide-text .description {
    display: none;
  }
}

@media screen and (max-width: 500px) {
  .service-item.flex {
    display: block;
    padding: 0;
  }
  .service-price {
    margin-top: 0;
  }

  .playlists {
    max-width: 350px;
  }
}

@media screen and (max-width: 375px) {
  .playlists-image img {
    width: 270px;
  }
}