* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  transition: 0.5s;
  text-decoration: none;
}

ul {
  padding-left: 40px;
}
ul li {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1rem;
  font-weight: 400;
}

button {
  font-size: 1rem;
}

input, textarea {
  color: #888;
  font-size: 1rem;
}
input::placeholder, textarea::placeholder {
  font-size: 1rem;
  color: #888;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 400;
}
input:focus, textarea:focus {
  outline: 0;
}

body {
  font-weight: 400;
  line-height: 1.5;
  font-size: 16px;
  font-family: "Plus Jakarta Sans", sans-serif;
  background-color: #F6F8F6;
  color: #0D1B12;
  position: relative;
  overflow-x: hidden;
}
body.open:before {
  opacity: 1;
  visibility: visible;
}
body:before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
}

main {
  overflow: hidden;
}

.container {
  max-width: 1720px;
  margin: 0 auto;
  width: 100%;
}

.big-gap {
  margin-top: 124px;
}

.small-gap {
  margin-top: 64px;
}

.position-center {
  text-align: center;
}
.position-left {
  text-align: left;
}
.position-right {
  text-align: right;
}

.align-left {
  margin: 0 auto;
}
@media (min-width: 768px) {
  .align-left {
    margin: 0 auto 0 0;
  }
}
.align-center {
  margin: 0 auto;
}
.align-right {
  margin: 0 auto;
}
@media (min-width: 768px) {
  .align-right {
    margin: 0 0 0 auto;
  }
}

.background-green {
  background-color: #39b54a;
}
.background-dark {
  background-color: #0D1B12;
}

.button {
  color: #FFF;
  border-radius: 24px;
  padding: 12px 32px;
  border: 1px solid transparent;
  display: inline-block;
}
.button-green {
  background-color: #39b54a;
  border-color: #39b54a;
}
.button-green:hover, .button-green:focus {
  background-color: #0D1B12;
  border-color: #0D1B12;
}
.button-transparent {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: #FFF;
}
.button-transparent:hover, .button-transparent:focus {
  background-color: rgba(57, 181, 74, 0.2);
  border-color: #39b54a;
}
.button-dark {
  background-color: #0D1B12;
  border-color: #0D1B12;
}
.button-dark:hover, .button-dark:focus {
  background-color: #39b54a;
  border-color: #39b54a;
}

.pr-24 {
  padding-right: 24px;
}
.pr-12 {
  padding-right: 12px;
}

.pl-24 {
  padding-left: 24px;
}
.pl-12 {
  padding-left: 12px;
}

.pt-24 {
  padding-top: 24px;
}
.pt-12 {
  padding-top: 12px;
}

.pb-24 {
  padding-bottom: 24px;
}
.pb-12 {
  padding-bottom: 12px;
}

.header {
  border-bottom: 1px solid rgba(13, 27, 18, 0.05);
}
.header__inner {
  display: flex;
  align-items: center;
}
.header__inner--nav {
  width: 50%;
  display: none;
}
@media (min-width: 1024px) {
  .header__inner--nav {
    display: block;
  }
}
.header__inner--nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
}
.header__inner--nav ul li {
  margin-right: 32px;
}
.header__inner--nav ul li:last-child {
  margin-right: 0;
}
.header__inner--nav ul li a {
  color: #0D1B12;
}
.header__inner--nav ul li a:hover, .header__inner--nav ul li a:focus {
  color: #39b54a;
}
.header__inner--nav ul li.current_page_item a {
  color: #39b54a;
}
.header__inner--logo {
  width: 100px;
}
@media (min-width: 768px) {
  .header__inner--logo {
    width: 150px;
  }
}
@media (min-width: 1024px) {
  .header__inner--logo {
    width: 25%;
  }
}
.header__inner--logo svg {
  width: 100%;
  height: auto;
  vertical-align: middle;
}
@media (min-width: 1024px) {
  .header__inner--logo svg {
    width: 150px;
  }
}
.header__inner--action {
  text-align: right;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: calc(100% - 100px);
}
@media (min-width: 768px) {
  .header__inner--action {
    width: calc(100% - 150px);
  }
}
@media (min-width: 1024px) {
  .header__inner--action {
    width: 25%;
  }
}
.header__inner--action .hamburger {
  margin-right: 12px;
}
@media (min-width: 1024px) {
  .header__inner--action .hamburger {
    display: none;
  }
}
.header__inner--action .hamburger svg {
  height: 24px;
  vertical-align: middle;
  width: auto;
}
.header__inner--action .link {
  display: none;
}
@media (min-width: 1024px) {
  .header__inner--action .link {
    display: inline-block;
  }
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  max-width: 400px;
  width: 100%;
  background-color: #FFF;
  height: 100%;
  z-index: 10000000;
  overflow: scroll;
  border-top: 10px solid #FFF;
  border-bottom: 10px solid #FFF;
  transition: 0.5s;
  transform: translateX(-400px);
}
.mobile-menu.open {
  transform: translateX(0);
}
@media (min-width: 1024px) {
  .mobile-menu {
    display: none;
  }
}
.mobile-menu__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 24px;
  border-bottom: 1px solid #ddd;
}
.mobile-menu__top svg {
  vertical-align: middle;
}
.mobile-menu__top .left svg {
  width: 100px;
  height: auto;
}
.mobile-menu__top .right svg {
  width: 24px;
  height: auto;
  fill: #333;
}
.mobile-menu__items {
  border-bottom: 1px solid #ddd;
  padding: 0 24px 24px 24px;
}
.mobile-menu__items ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.mobile-menu__items ul li {
  margin-top: 24px;
}
.mobile-menu__items ul li a {
  color: #333;
  font-size: clamp(1rem, 0.7983rem + 0.4202vw, 1.25rem);
}
.mobile-menu__items ul li.menu-item-has-children > a {
  display: none;
}
@media (min-width: 768px) {
  .mobile-menu__items ul li.menu-item-has-children > a {
    display: block;
  }
}
.mobile-menu__items ul li.current-menu-item a {
  color: #000;
}
.mobile-menu__items .link {
  margin-top: 24px;
}
.mobile-menu__actions {
  border-bottom: 1px solid #ddd;
  padding: 24px;
}
.mobile-menu__actions .actions {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.mobile-menu__actions .actions__item {
  margin-right: 12px;
}
.mobile-menu__actions .actions__item:last-child {
  margin-right: 0;
}
.mobile-menu__actions .actions__item a {
  display: flex;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid #000;
  align-items: center;
  justify-content: center;
}
.mobile-menu__actions .actions__item a:hover, .mobile-menu__actions .actions__item a:focus {
  background: #000;
}
.mobile-menu__actions .actions__item a:hover svg path, .mobile-menu__actions .actions__item a:focus svg path {
  fill: #FFF;
}
.mobile-menu__actions .actions__item a svg path {
  fill: #000;
}

.footer__inner {
  padding-top: 64px;
  border-top: 1px solid rgba(13, 27, 18, 0.1);
}
.footer__inner--top {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 24px;
  column-gap: 24px;
  padding-bottom: 64px;
}
@media (min-width: 768px) {
  .footer__inner--top {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1024px) {
  .footer__inner--top {
    grid-template-columns: 25% 15% 20% 40%;
  }
}
.footer__inner--top .column {
  width: 100%;
}
.footer__inner--top .column svg {
  width: 125px;
  height: auto;
  vertical-align: middle;
}
.footer__inner--top .column img {
  max-width: 340px;
  width: 100%;
  height: auto;
  border-radius: 24px;
  margin: 24px 0 0 0;
}
.footer__inner--top .column p {
  color: rgba(13, 27, 18, 0.6);
}
.footer__inner--top .column p.title {
  font-weight: 700;
  color: #0D1B12;
}
.footer__inner--top .column ul {
  margin: 24px 0 0 0;
  list-style: none;
  padding: 0;
}
.footer__inner--top .column ul li {
  color: rgba(13, 27, 18, 0.6);
}
.footer__inner--top .column ul li a {
  color: rgba(13, 27, 18, 0.6);
}
.footer__inner--bottom {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(13, 27, 18, 0.1);
  padding: 24px 0;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .footer__inner--bottom {
    flex-wrap: nowrap;
  }
}
.footer__inner--bottom .left {
  width: 100%;
  margin-top: 12px;
  order: 2;
}
@media (min-width: 768px) {
  .footer__inner--bottom .left {
    margin-top: 0;
    order: 1;
    width: auto;
  }
}
.footer__inner--bottom .left p {
  color: rgba(13, 27, 18, 0.4);
  font-size: clamp(0.75rem, 0.6492rem + 0.2101vw, 0.875rem);
}
.footer__inner--bottom .right {
  width: 100%;
  order: 1;
}
@media (min-width: 768px) {
  .footer__inner--bottom .right {
    order: 2;
    width: auto;
  }
}
.footer__inner--bottom .right ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
}
.footer__inner--bottom .right ul li {
  margin-right: 12px;
}
.footer__inner--bottom .right ul li:last-chilf {
  margin-right: 0;
}
.footer__inner--bottom .right ul li a {
  color: rgba(13, 27, 18, 0.4);
  font-size: clamp(0.75rem, 0.6492rem + 0.2101vw, 0.875rem);
}

body.page-template-home .hero {
  margin-top: 24px;
}
body.page-template-home .hero__inner {
  border-radius: 24px;
  position: relative;
  z-index: 10;
  background-size: cover;
  background-position: center center;
  min-height: 600px;
  width: 100%;
  display: flex;
  align-items: flex-end;
  padding: 64px 24px;
  justify-content: flex-start;
}
@media (min-width: 768px) {
  body.page-template-home .hero__inner {
    padding: 64px;
  }
}
body.page-template-home .hero__inner:before {
  content: "";
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 100%);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: -1;
  height: 100%;
  border-radius: 24px;
}
body.page-template-home .hero__inner--content {
  max-width: 768px;
  width: 100%;
}
body.page-template-home .hero__inner--content span {
  color: #39b54a;
  font-weight: 700;
  margin-bottom: 12px;
  display: block;
}
body.page-template-home .hero__inner--content h1, body.page-template-home .hero__inner--content p {
  color: #FFF;
}
body.page-template-home .hero__inner--content h1 {
  font-size: clamp(2.5rem, 0.3427rem + 4.4944vw, 4.5rem);
  line-height: 1;
}
body.page-template-home .hero__inner--content p {
  line-height: 1.4;
  font-weight: 100;
  max-width: 680px;
  font-size: clamp(1rem, 0.7983rem + 0.4202vw, 1.25rem);
  margin: 24px 0 0 0;
}
body.page-template-home .hero__inner--content .links {
  display: flex;
  flex-wrap: wrap;
}
body.page-template-home .hero__inner--content .links .link {
  margin-top: 24px;
  width: 100%;
}
body.page-template-home .hero__inner--content .links .link:last-child {
  margin-right: 0;
}
@media (min-width: 768px) {
  body.page-template-home .hero__inner--content .links .link {
    width: auto;
    margin-right: 12px;
  }
}
body.page-template-home .usps__inner {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  row-gap: 24px;
  column-gap: 24px;
}
@media (min-width: 1024px) {
  body.page-template-home .usps__inner {
    grid-template-columns: repeat(3, 1fr);
  }
}
body.page-template-home .usps__inner--usp {
  width: 100%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  background-color: #FFF;
  border-radius: 24px;
  border: 1px solid rgba(13, 27, 18, 0.05);
  padding: 48px 32px;
}
body.page-template-home .usps__inner--usp .icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: rgba(57, 181, 74, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}
body.page-template-home .usps__inner--usp .icon svg {
  height: auto;
  width: 24px;
  vertical-align: middle;
}
body.page-template-home .usps__inner--usp .text {
  width: calc(100% - 56px);
  padding-left: 24px;
}
body.page-template-home .usps__inner--usp .text p {
  color: rgba(13, 27, 18, 0.6);
  font-weight: 500;
}
body.page-template-home .usps__inner--usp .text h3 {
  font-size: clamp(1.25rem, 1.0483rem + 0.4202vw, 1.5rem);
}
body.page-template-home .review__inner {
  background-color: #0D1B12;
  border-radius: 24px;
  padding: 96px 24px;
  position: relative;
  z-index: 10;
  overflow: hidden;
}
body.page-template-home .review__inner--content {
  max-width: 768px;
  margin: 0 auto;
  width: 100%;
}
body.page-template-home .review__inner--content .icon {
  text-align: center;
}
body.page-template-home .review__inner--content .icon svg {
  width: 42px;
  height: 42px;
  vertical-align: middle;
}
body.page-template-home .review__inner--content .text {
  margin-top: 6px;
}
body.page-template-home .review__inner--content .text p {
  font-size: clamp(2.5rem, 2.0966rem + 0.8403vw, 3rem);
  color: #FFF;
  text-align: center;
  font-weight: 600;
}
body.page-template-home .review__inner--content .name {
  text-align: center;
  margin-top: 24px;
}
body.page-template-home .review__inner--content .name img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  vertical-align: bottom;
  border: 2px solid #39b54a;
  border-radius: 50%;
}
body.page-template-home .review__inner--content .name p, body.page-template-home .review__inner--content .name span {
  color: #FFF;
}
body.page-template-home .review__inner--content .name p {
  margin-top: 12px;
  font-size: clamp(1rem, 0.7983rem + 0.4202vw, 1.25rem);
  font-weight: 700;
}
body.page-template-home .review__inner--content .name span {
  font-size: clamp(0.75rem, 0.6492rem + 0.2101vw, 0.875rem);
}
body.page-template-home .review__inner--circle {
  position: absolute;
  bottom: -96px;
  right: -96px;
  width: 384px;
  height: 384px;
  background-color: rgba(57, 181, 74, 0.2);
  filter: blur(32px);
  z-index: 10;
  border-radius: 999999px;
}

.facilities__inner h2 {
  text-align: center;
  font-size: clamp(2.5rem, 2.0966rem + 0.8403vw, 3rem);
  font-weight: 500;
}
.facilities__inner .items {
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 1024px) {
  .facilities__inner .items {
    justify-content: center;
  }
}
.facilities__inner .items .item {
  width: 100%;
  margin-top: 48px;
  text-align: center;
}
@media (min-width: 768px) {
  .facilities__inner .items .item {
    width: 33.3333%;
  }
}
@media (min-width: 1024px) {
  .facilities__inner .items .item {
    width: 25%;
  }
}
.facilities__inner .items .item .icon svg {
  height: 48px;
  width: auto;
}
.facilities__inner .items .item h4 {
  margin: 12px 0 0 0;
}
.facilities__inner .items .item p {
  margin: 6px 0 0 0;
}

.package-items__inner--top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .package-items__inner--top {
    flex-wrap: nowrap;
  }
}
.package-items__inner--top .left {
  width: 100%;
}
@media (min-width: 768px) {
  .package-items__inner--top .left {
    width: auto;
  }
}
.package-items__inner--top .left .subtitle span {
  color: #39b54a;
  font-weight: 700;
}
.package-items__inner--top .left h2 {
  font-size: clamp(2.5rem, 2.0966rem + 0.8403vw, 3rem);
  font-weight: 500;
  max-width: 600px;
}
.package-items__inner--top .left p {
  max-width: 650px;
  font-size: 1.125rem;
  color: rgba(13, 27, 18, 0.7);
}
.package-items__inner--top .right {
  width: 100%;
  margin-top: 12px;
}
@media (min-width: 768px) {
  .package-items__inner--top .right {
    width: auto;
    margin-top: 0;
    text-align: right;
  }
}
.package-items__inner--top .right .link {
  display: inline-block;
}
.package-items__inner--top .right .link a {
  display: flex;
  align-items: center;
  color: #39b54a;
  font-weight: 700;
}
.package-items__inner--top .right .link a svg {
  margin-left: 12px;
  height: 18px;
  width: auto;
  vertical-align: middle;
}
.package-items__inner--swiper {
  margin-top: 48px;
}
.package-items__inner--swiper .information-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: scroll;
  z-index: 1000;
  display: none;
}
.package-items__inner--swiper .information-popup__backface {
  background-color: rgba(0, 0, 0, 0.8);
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
}
.package-items__inner--swiper .information-popup__inner {
  max-width: 768px;
  margin: 0 auto;
  width: 100%;
  padding: 64px 24px;
}
.package-items__inner--swiper .information-popup__inner--content {
  width: 100%;
  border-radius: 12px;
  background-color: #FFF;
  padding: 64px 32px 32px 32px;
  position: relative;
}
.package-items__inner--swiper .information-popup__inner--content .close-information-popup {
  position: absolute;
  top: 12px;
  right: 12px;
  cursor: pointer;
}
.package-items__inner--swiper .information-popup__inner--content .close-information-popup svg {
  width: 38px;
  height: auto;
}
.package-items__inner--swiper .information-popup__inner--content h3 {
  font-weight: 500;
  font-size: clamp(1.25rem, 1.0483rem + 0.4202vw, 1.5rem);
}
.package-items__inner--swiper .information-popup__inner--content p {
  margin: 12px 0 0 0;
}
.package-items__inner--swiper .information-popup__inner--content .link {
  margin-top: 24px;
}
.package-items__inner--swiper .swiper-packages .swiper-wrapper .swiper-slide {
  width: 290px;
  height: auto;
}
.package-items__inner--swiper .swiper-packages .swiper-wrapper .swiper-slide .package-item {
  width: 100%;
  height: 100%;
  background-color: #FFF;
  border-radius: 24px;
  border: 1px solid #E7F3EB;
  position: relative;
  padding-bottom: 96px;
}
.package-items__inner--swiper .swiper-packages .swiper-wrapper .swiper-slide .package-item .image img {
  border-top-right-radius: 24px;
  border-top-left-radius: 24px;
  width: 100%;
  height: auto;
  aspect-ratio: 16/10;
  object-fit: cover;
}
.package-items__inner--swiper .swiper-packages .swiper-wrapper .swiper-slide .package-item .content {
  padding: 24px;
}
.package-items__inner--swiper .swiper-packages .swiper-wrapper .swiper-slide .package-item .content h3 {
  color: #0D1B12;
  font-size: clamp(1rem, 0.7983rem + 0.4202vw, 1.25rem);
}
.package-items__inner--swiper .swiper-packages .swiper-wrapper .swiper-slide .package-item .content p {
  color: #39b54a;
  font-size: clamp(0.75rem, 0.6492rem + 0.2101vw, 0.875rem);
  margin: 12px 0 0 0;
}
.package-items__inner--swiper .swiper-packages .swiper-wrapper .swiper-slide .package-item .content ul {
  padding: 0;
  list-style: none;
  margin: 0;
}
.package-items__inner--swiper .swiper-packages .swiper-wrapper .swiper-slide .package-item .content ul li {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 8px;
}
.package-items__inner--swiper .swiper-packages .swiper-wrapper .swiper-slide .package-item .content ul li .icon {
  width: 18px;
  height: 18px;
}
.package-items__inner--swiper .swiper-packages .swiper-wrapper .swiper-slide .package-item .content ul li .icon svg {
  width: 100%;
  height: 100%;
  vertical-align: middle;
}
.package-items__inner--swiper .swiper-packages .swiper-wrapper .swiper-slide .package-item .content ul li .title {
  padding-left: 8px;
}
.package-items__inner--swiper .swiper-packages .swiper-wrapper .swiper-slide .package-item .content ul li .title p {
  font-size: clamp(0.75rem, 0.6492rem + 0.2101vw, 0.875rem);
  color: rgba(13, 27, 18, 0.7);
}
.package-items__inner--swiper .swiper-packages .swiper-wrapper .swiper-slide .package-item .pricing {
  padding: 0 24px 0 24px;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
.package-items__inner--swiper .swiper-packages .swiper-wrapper .swiper-slide .package-item .pricing__inner {
  border-top: 1px solid #E7F3EB;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.package-items__inner--swiper .swiper-packages .swiper-wrapper .swiper-slide .package-item .pricing__inner span {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(57, 181, 74, 0.1);
}
.package-items__inner--swiper .swiper-packages .swiper-wrapper .swiper-slide .package-item .pricing__inner span svg {
  height: 18px;
  width: auto;
  vertical-align: middle;
}

body.page-template-rates .hero-text__inner {
  text-align: center;
  max-width: 768px;
  margin: 0 auto;
  width: 100%;
}
body.page-template-rates .hero-text__inner .subtitle span {
  color: #39b54a;
  font-size: 0.875rem;
  font-weight: 700;
}
body.page-template-rates .hero-text__inner h1 {
  font-size: clamp(2.5rem, 0.3427rem + 4.4944vw, 4.5rem);
  font-weight: 500;
}
body.page-template-rates .hero-text__inner p {
  margin: 12px 0 0 0;
  font-size: 1.125rem;
  color: rgba(13, 27, 18, 0.7);
  font-weight: 300;
}
body.page-template-rates .rates__rate {
  display: flex;
  flex-wrap: wrap;
}
body.page-template-rates .rates__rate--image, body.page-template-rates .rates__rate--content {
  width: 100%;
}
@media (min-width: 768px) {
  body.page-template-rates .rates__rate--image, body.page-template-rates .rates__rate--content {
    width: 50%;
  }
}
body.page-template-rates .rates__rate--image {
  position: relative;
  z-index: 10;
}
@media (min-width: 768px) {
  body.page-template-rates .rates__rate--image {
    padding-right: 32px;
  }
}
@media (min-width: 768px) {
  body.page-template-rates .rates__rate--image .image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: calc(100% - 32px);
    height: 100%;
  }
}
body.page-template-rates .rates__rate--image img {
  aspect-ratio: 560/700;
  object-fit: cover;
  height: 100%;
  width: 100%;
  vertical-align: bottom;
  border-radius: 24px;
}
@media (min-width: 768px) {
  body.page-template-rates .rates__rate--content {
    padding-left: 32px;
  }
}
body.page-template-rates .rates__rate--content .inner {
  padding-top: 48px;
}
@media (min-width: 768px) {
  body.page-template-rates .rates__rate--content .inner {
    padding: 96px 0;
  }
}
body.page-template-rates .rates__rate--content .inner h2 {
  font-weight: 500;
  font-size: clamp(1.75rem, 1.5483rem + 0.4202vw, 2rem);
}
body.page-template-rates .rates__rate--content .inner p {
  margin: 24px 0 0 0;
  color: rgba(13, 27, 18, 0.7);
}
body.page-template-rates .rates__rate--content .inner .prices {
  margin-top: 32px;
}
body.page-template-rates .rates__rate--content .inner .prices p {
  margin: 0;
}
body.page-template-rates .rates__rate--content .inner .prices__price {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(13, 27, 18, 0.1);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
body.page-template-rates .rates__rate--content .inner .prices__price:first-child {
  margin-top: 0;
  border: none;
  padding-top: 0;
}
body.page-template-rates .rates__rate--content .inner .prices__price--left {
  width: 60%;
}
body.page-template-rates .rates__rate--content .inner .prices__price--left p {
  color: rgba(13, 27, 18, 0.5);
}
body.page-template-rates .rates__rate--content .inner .prices__price--left p strong {
  font-size: 1.125rem;
  color: #0D1B12;
}
body.page-template-rates .rates__rate--content .inner .prices__price--right {
  width: 40%;
  text-align: right;
}
body.page-template-rates .rates__rate--content .inner .prices__price--right p {
  font-weight: 300;
  font-size: clamp(1.25rem, 1.0483rem + 0.4202vw, 1.5rem);
}
body.page-template-rates .rates__rate--content .inner .link {
  margin-top: 24px;
}
body.page-template-rates .rates__rate--content .inner .link a {
  display: inline-block;
  background: #0D1B12;
  color: #FFF;
  font-weight: 700;
  border-radius: 24px;
  width: 150px;
  text-align: center;
  padding: 12px 24px;
}
body.page-template-rates .rates__rate--content .inner .link a:hover, body.page-template-rates .rates__rate--content .inner .link a:focus {
  background: #39b54a;
}
@media (min-width: 768px) {
  body.page-template-rates .rates__rate:nth-child(even) .rates__rate--image {
    order: 2;
    padding-left: 32px;
    padding-right: 0;
  }
}
@media (min-width: 768px) {
  body.page-template-rates .rates__rate:nth-child(even) .rates__rate--image .image-wrapper {
    left: unset;
    right: 0;
  }
}
@media (min-width: 768px) {
  body.page-template-rates .rates__rate:nth-child(even) .rates__rate--content {
    order: 1;
    padding-right: 32px;
    padding-left: 0;
  }
}

body.page-template-packages .hero__inner {
  padding: 64px 24px;
  position: relative;
  z-index: 10;
  box-shadow: 0px 8px 10px -6px rgba(0, 0, 0, 0.1), 0px 20px 25px -5px rgba(0, 0, 0, 0.1), 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px rgba(0, 0, 0, 0.2);
  border-radius: 24px;
  background-size: cover;
  background-position: center center;
}
body.page-template-packages .hero__inner:before {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  top: 0;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.6) 100%);
  z-index: -1;
}
body.page-template-packages .hero__inner--content {
  max-width: 768px;
  margin: 0 auto;
  width: 100%;
  text-align: center;
}
body.page-template-packages .hero__inner--content h1, body.page-template-packages .hero__inner--content h2, body.page-template-packages .hero__inner--content h3, body.page-template-packages .hero__inner--content p {
  color: #FFF;
}
body.page-template-packages .hero__inner--content h1, body.page-template-packages .hero__inner--content h2, body.page-template-packages .hero__inner--content h3 {
  font-weight: 500;
  font-size: clamp(2.5rem, 0.3427rem + 4.4944vw, 4.5rem);
}
body.page-template-packages .hero__inner--content p {
  margin: 12px 0 0 0;
  font-size: 1.125rem;
  font-weight: 300;
}
body.page-template-packages .package-items__inner--top .left h2 {
  font-size: clamp(1.75rem, 1.5483rem + 0.4202vw, 2rem);
  font-weight: 700;
}
body.page-template-packages .quote {
  background: rgba(57, 181, 74, 0.1);
  min-height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
}
body.page-template-packages .quote__inner {
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
  padding: 64px 24px;
  text-align: center;
}
body.page-template-packages .quote__inner--icon svg {
  width: 32px;
  height: 32px;
  vertical-align: middle;
}
body.page-template-packages .quote__inner--text p {
  margin: 24px 0 0 0;
  font-size: clamp(1.75rem, 1.5483rem + 0.4202vw, 2rem);
  line-height: 1.2;
}
body.page-template-packages .quote__inner--info {
  margin-top: 24px;
}
body.page-template-packages .quote__inner--info p {
  font-size: 1.125rem;
  font-weight: 700;
}
body.page-template-packages .quote__inner--info span {
  color: #39b54a;
  font-weight: 700;
  font-size: 0.875rem;
}
body.page-template-packages .cta__inner {
  max-width: 1024px;
  background: #102216;
  border-radius: 24px;
  padding: 24px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  body.page-template-packages .cta__inner {
    padding: 64px;
  }
}
body.page-template-packages .cta__inner--content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
}
body.page-template-packages .cta__inner--content .left {
  width: 100%;
}
@media (min-width: 768px) {
  body.page-template-packages .cta__inner--content .left {
    width: 60%;
    padding-right: 32px;
  }
}
body.page-template-packages .cta__inner--content .left h2 {
  color: #FFF;
  font-size: clamp(1.75rem, 1.5483rem + 0.4202vw, 2rem);
  line-height: 1.2;
}
body.page-template-packages .cta__inner--content .left p {
  margin: 12px 0 0 0;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  font-size: 1.125rem;
}
body.page-template-packages .cta__inner--content .right {
  width: 100%;
  margin-top: 12px;
}
@media (min-width: 768px) {
  body.page-template-packages .cta__inner--content .right {
    width: 40%;
    margin-top: 0;
    text-align: center;
  }
}
body.page-template-packages .cta__inner--content .right .link a {
  display: inline-block;
  padding: 16px 24px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: #FFF;
  font-weight: 700;
  border-radius: 9999px;
}
body.page-template-packages .cta__inner--content .right .link a:hover, body.page-template-packages .cta__inner--content .right .link a:focus {
  background: #FFF;
  color: #102216;
}

body.page-template-activities .hero-text__inner {
  text-align: center;
  max-width: 768px;
  margin: 0 auto;
  width: 100%;
}
body.page-template-activities .hero-text__inner h1 {
  font-size: clamp(2.5rem, 0.3427rem + 4.4944vw, 4.5rem);
  font-weight: 500;
}
body.page-template-activities .hero-text__inner p {
  margin: 12px 0 0 0;
  font-size: 1.125rem;
  color: rgba(13, 27, 18, 0.7);
  font-weight: 300;
}
body.page-template-activities .activity {
  margin-top: 64px;
}
@media (min-width: 768px) {
  body.page-template-activities .activity {
    margin-top: 128px;
  }
}
@media (min-width: 768px) {
  body.page-template-activities .activity:nth-child(odd) .activity__inner--left {
    order: 2;
    padding-right: 0;
    padding-left: 48px;
  }
}
@media (min-width: 768px) {
  body.page-template-activities .activity:nth-child(odd) .activity__inner--right {
    order: 1;
  }
}
@media (min-width: 768px) {
  body.page-template-activities .activity:nth-child(odd) .activity__inner--right .image:after {
    left: -32px;
  }
}
body.page-template-activities .activity__inner {
  max-width: 1024px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
body.page-template-activities .activity__inner--left, body.page-template-activities .activity__inner--right {
  width: 100%;
}
@media (min-width: 768px) {
  body.page-template-activities .activity__inner--left, body.page-template-activities .activity__inner--right {
    width: 50%;
  }
}
@media (min-width: 768px) {
  body.page-template-activities .activity__inner--left {
    padding-right: 48px;
  }
}
body.page-template-activities .activity__inner--left span {
  color: #39b54a;
  font-size: 0.875rem;
  font-weight: 700;
}
body.page-template-activities .activity__inner--left h1, body.page-template-activities .activity__inner--left h2, body.page-template-activities .activity__inner--left h3 {
  font-size: clamp(2rem, 1.5966rem + 0.8403vw, 2.5rem);
  font-weight: 500;
}
body.page-template-activities .activity__inner--left p {
  margin: 12px 0 0 0;
  line-height: 1.5;
  font-weight: 300;
}
body.page-template-activities .activity__inner--left .link {
  margin-top: 24px;
}
body.page-template-activities .activity__inner--right {
  margin-top: 48px;
}
@media (min-width: 768px) {
  body.page-template-activities .activity__inner--right {
    margin-top: 0;
  }
}
body.page-template-activities .activity__inner--right .image {
  display: block;
  position: relative;
}
body.page-template-activities .activity__inner--right .image:after {
  content: "";
  position: absolute;
  top: -32px;
  left: 32px;
  width: 100%;
  height: 100%;
  border-radius: 24px;
  background: rgba(57, 181, 74, 0.1);
  transform: rotate(-2deg);
}
body.page-template-activities .activity__inner--right .image img {
  aspect-ratio: 432/324;
  border-radius: 24px;
  border: 4px solid #FFF;
  object-fit: cover;
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

body.page-template-contact .hero__inner {
  padding: 64px 24px;
  position: relative;
  z-index: 10;
  box-shadow: 0px 8px 10px -6px rgba(0, 0, 0, 0.1), 0px 20px 25px -5px rgba(0, 0, 0, 0.1), 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px rgba(0, 0, 0, 0.2);
  border-radius: 24px;
  background-size: cover;
  background-position: center center;
}
body.page-template-contact .hero__inner:before {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  top: 0;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.6) 100%);
  z-index: -1;
}
body.page-template-contact .hero__inner--content {
  max-width: 1024px;
  margin: 0 auto;
  width: 100%;
  text-align: center;
}
body.page-template-contact .hero__inner--content h1, body.page-template-contact .hero__inner--content h2, body.page-template-contact .hero__inner--content h3, body.page-template-contact .hero__inner--content p {
  color: #FFF;
}
body.page-template-contact .hero__inner--content h1, body.page-template-contact .hero__inner--content h2, body.page-template-contact .hero__inner--content h3 {
  font-size: clamp(1.75rem, 1.5483rem + 0.4202vw, 2rem);
  line-height: 1.1;
  font-weight: 500;
}
@media (min-width: 768px) {
  body.page-template-contact .hero__inner--content h1, body.page-template-contact .hero__inner--content h2, body.page-template-contact .hero__inner--content h3 {
    font-size: clamp(2.5rem, 0.3427rem + 4.4944vw, 4.5rem);
  }
}
body.page-template-contact .hero__inner--content p {
  margin: 12px 0 0 0;
  font-size: 1.125rem;
  font-weight: 300;
}
body.page-template-contact .contact {
  margin-top: 64px;
}
body.page-template-contact .contact__inner {
  display: flex;
  flex-wrap: wrap;
}
body.page-template-contact .contact__inner--left {
  width: 100%;
}
@media (min-width: 768px) {
  body.page-template-contact .contact__inner--left {
    width: 60%;
    padding-right: 64px;
  }
}
body.page-template-contact .contact__inner--left .inner {
  background: #FFF;
  border-radius: 24px;
  padding: 32px;
}
body.page-template-contact .contact__inner--left .inner h2 {
  font-size: clamp(1.75rem, 1.5483rem + 0.4202vw, 2rem);
  font-weight: 500;
}
body.page-template-contact .contact__inner--left .inner .form-wrapper form {
  width: 100%;
}
body.page-template-contact .contact__inner--left .inner .form-wrapper form .form-group {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 24px;
  column-gap: 24px;
}
@media (min-width: 768px) {
  body.page-template-contact .contact__inner--left .inner .form-wrapper form .form-group.two {
    grid-template-columns: 1fr 1fr;
  }
}
body.page-template-contact .contact__inner--left .inner .form-wrapper form .form-group input[type=text], body.page-template-contact .contact__inner--left .inner .form-wrapper form .form-group input[type=email], body.page-template-contact .contact__inner--left .inner .form-wrapper form .form-group textarea {
  width: 100%;
  margin-top: 12px;
  background: #F6F8F6;
  border: none;
  border-radius: 12px;
}
body.page-template-contact .contact__inner--left .inner .form-wrapper form .form-group input[type=text], body.page-template-contact .contact__inner--left .inner .form-wrapper form .form-group input[type=email] {
  height: 40px;
  padding: 0 12px;
}
body.page-template-contact .contact__inner--left .inner .form-wrapper form .form-group textarea {
  background: #F6F8F6;
  padding: 12px;
  height: 100px;
  max-width: 100%;
}
body.page-template-contact .contact__inner--left .inner .form-wrapper form .form-group input[type=submit] {
  color: #FFF;
  border-radius: 24px;
  border: none;
  padding: 12px 32px;
  border: 1px solid transparent;
  display: inline-block;
  background-color: #39b54a;
  transition: 0.5s;
  cursor: pointer;
}
body.page-template-contact .contact__inner--left .inner .form-wrapper form .form-group input[type=submit]:hover, body.page-template-contact .contact__inner--left .inner .form-wrapper form .form-group input[type=submit]:focus {
  background-color: #0D1B12;
}
body.page-template-contact .contact__inner--right {
  width: 100%;
  margin-top: 32px;
}
@media (min-width: 768px) {
  body.page-template-contact .contact__inner--right {
    width: 40%;
    margin-top: 0;
  }
}
body.page-template-contact .contact__inner--right .block {
  margin-top: 32px;
}
body.page-template-contact .contact__inner--right .block:first-child {
  margin-top: 0;
}
body.page-template-contact .contact__inner--right .block h2 {
  font-size: clamp(1.75rem, 1.5483rem + 0.4202vw, 2rem);
  font-weight: 500;
}
body.page-template-contact .contact__inner--right .block .info {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
}
body.page-template-contact .contact__inner--right .block .info .icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(57, 181, 74, 0.1);
}
body.page-template-contact .contact__inner--right .block .info .text {
  width: calc(100% - 48px);
  padding-left: 12px;
}
body.page-template-contact .contact__inner--right .block .info .text p {
  font-weight: 300;
}
body.page-template-contact .contact__inner--right .block .info .text p.title {
  font-weight: 700;
}
body.page-template-contact .contact__inner--right .block ul {
  padding: 0;
  margin: 24px 0 0 0;
  list-style: none;
}
body.page-template-contact .contact__inner--right .block ul li {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
}
body.page-template-contact .contact__inner--right .block ul li.active .left p {
  color: #39b54a;
  font-weight: 700;
}
body.page-template-contact .contact__inner--right .block ul li.active .right p {
  font-weight: 700;
}
body.page-template-contact .contact__inner--right .block ul li .left {
  width: 60%;
}
body.page-template-contact .contact__inner--right .block ul li .right {
  width: 40%;
  text-align: right;
}
body.page-template-contact .contact__inner--right .block .additional {
  margin-top: 12px;
}
body.page-template-contact .contact__inner--right .block .additional p {
  font-size: clamp(0.75rem, 0.6492rem + 0.2101vw, 0.875rem);
  font-weight: 500;
}
body.page-template-contact .contact__inner--right .route {
  background: rgba(57, 181, 74, 0.1);
  margin-top: 32px;
  border-radius: 24px;
  padding: 32px;
}
body.page-template-contact .contact__inner--right .route h2 {
  font-size: clamp(1.75rem, 1.5483rem + 0.4202vw, 2rem);
  font-weight: 500;
}
body.page-template-contact .contact__inner--right .route p {
  margin: 12px 0 0 0;
}

body.page-template-reserve .reserve-wrapper {
  margin-top: 64px;
}
body.page-template-reserve .reserve-wrapper__inner {
  display: flex;
  flex-wrap: wrap;
}
body.page-template-reserve .reserve-wrapper__inner .left, body.page-template-reserve .reserve-wrapper__inner .right {
  width: 100%;
}
@media (min-width: 1024px) {
  body.page-template-reserve .reserve-wrapper__inner .left {
    width: 60%;
    padding-right: 24px;
  }
}
body.page-template-reserve .reserve-wrapper__inner .right {
  margin-top: 48px;
}
@media (min-width: 1024px) {
  body.page-template-reserve .reserve-wrapper__inner .right {
    margin-top: 0;
    width: 40%;
    padding-left: 24px;
  }
}
body.page-template-reserve .reserve-wrapper__inner .right__top {
  position: relative;
  z-index: 10;
  min-height: 600px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  padding: 24px;
}
body.page-template-reserve .reserve-wrapper__inner .right__top:before {
  content: "";
  background: linear-gradient(0deg, rgba(16, 34, 22, 0.9) 0%, rgba(16, 34, 22, 0.2) 50%, #000000 100%);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  border-radius: 24px;
}
body.page-template-reserve .reserve-wrapper__inner .right__top .image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}
body.page-template-reserve .reserve-wrapper__inner .right__top .image img {
  width: 100%;
  height: 100%;
  border-radius: 24px;
  vertical-align: bottom;
  object-fit: cover;
}
body.page-template-reserve .reserve-wrapper__inner .right__top .text {
  max-width: 480px;
  width: 100%;
}
body.page-template-reserve .reserve-wrapper__inner .right__top .text .subtitle {
  margin-bottom: 12px;
  display: flex;
  flex-wrap: wrap;
}
body.page-template-reserve .reserve-wrapper__inner .right__top .text .subtitle__icon {
  width: 14px;
}
body.page-template-reserve .reserve-wrapper__inner .right__top .text .subtitle__icon svg {
  width: 14px;
  height: auto;
}
body.page-template-reserve .reserve-wrapper__inner .right__top .text .subtitle__text {
  padding-left: 6px;
  width: calc(100% - 14px);
}
body.page-template-reserve .reserve-wrapper__inner .right__top .text .subtitle__text p {
  margin-top: 0;
  color: #39b54a;
}
body.page-template-reserve .reserve-wrapper__inner .right__top .text p, body.page-template-reserve .reserve-wrapper__inner .right__top .text h3 {
  color: #FFF;
}
body.page-template-reserve .reserve-wrapper__inner .right__top .text h3 {
  font-size: clamp(1.75rem, 1.5483rem + 0.4202vw, 2rem);
  line-height: 1.1;
  font-weight: 500;
}
body.page-template-reserve .reserve-wrapper__inner .right__top .text p {
  font-weight: 300;
  margin: 12px 0 0 0;
}

/*# sourceMappingURL=app.css.map */
