:root {
  --park-font-big: 128px;
  --park-font-middle: 80px;
  --park-font-small: 48px;
  --gt-font-big: 24px;
  --gt-font-middle: 18px;
  --gt-font-small: 13px;
  --wrapper-padding: 48px;
}

@media (max-width: 1700px) {
  :root {
    --park-font-middle: 60px;
  }
}
@media (max-width: 1350px) {
  :root {
    --park-font-middle: 45px;
  }
}
@media (max-width: 768px) {
  :root {
    --park-font-big: 54px;
    --park-font-middle: 40px;
    --gt-font-big: 18px;
    --gt-font-middle: 13px;
    --wrapper-padding: 16px;
  }
}
/*
$black-color: #000;
$white-color: #fff;
$red-color: #cf3d47;
$purple-color: #c964ff;
$yellow-color: #fac532;
$gray-color: #bababa;
$green-color: #6cac68;
$blue-color: #2d66ed;
*/
.red-fill {
  color: var(--user-color-6);
  fill: var(--user-color-6);
}

.purple-fill {
  color: var(--user-color-4);
  fill: var(--user-color-4);
}

.green-fill {
  color: var(--user-color-5);
  fill: var(--user-color-5);
}

.blue-fill {
  color: var(--user-color-7);
  fill: var(--user-color-7);
}

.yellow-bg {
  background-color: var(--user-color-8);
}

.red-bg {
  background-color: var(--user-color-6);
}

.purple-bg {
  background-color: var(--user-color-4);
}

.green-bg {
  background-color: var(--user-color-5);
}

.blue-bg {
  background-color: var(--user-color-7);
}

@font-face {
  font-family: "Park360";
  src: url("/t/resources/fonts/Park360-Regular-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: block;
}
@font-face {
  font-family: "Park360";
  src: url("/t/resources/fonts/Park360-Regular-Plus15.woff2") format("woff2");
  font-weight: 500;
  font-display: block;
}
@font-face {
  font-family: "Park360";
  src: url("/t/resources/fonts/Park360-Regular-minus15.woff2") format("woff2");
  font-weight: 600;
  font-display: block;
}
@font-face {
  font-family: "GT-America";
  src: url("/t/resources/fonts/GT-America-Standard-Regular.woff2") format("woff2");
  font-weight: normal;
  font-display: block;
}
@font-face {
  font-family: "GT-America";
  src: url("/t/resources/fonts/GT-America-Standard-Bold.woff2") format("woff2");
  font-weight: bold;
  font-display: block;
}
.display-none {
  display: none;
}

html {
  scroll-behavior: smooth;
}

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

.no-exist {
  margin: 70px auto;
}
.no-exist h1 {
  font-size: 2em;
}
.no-exist p {
  font-size: 1.5em;
}

a {
  text-decoration: underline;
  color: var(--user-color-2);
}

.burger {
  display: none;
  cursor: pointer;
}
@media (max-width: 768px) {
  .burger {
    display: block;
    line-height: 0;
  }
}

input[type=text] {
  outline: none;
}

h1, h2 {
  font-weight: 400;
}

section:not(#header, #hero, #support, #timerange, #detail, #faq) {
  padding-bottom: 100px;
}
@media screen and (max-width: 1100px) {
  section:not(#header, #hero, #support, #timerange, #detail, #faq) {
    padding-bottom: 60px;
  }
}

section:not(#header, #contact, #timerange, #ecology) {
  font-family: "GT-America";
}

#rent,
#timerange,
#map,
#ecology,
#press {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}

section .section-title {
  font-family: "Park360", Verdana, sans-serif;
  font-size: var(--park-font-big);
  margin-bottom: 0.5em;
}
section .section-title svg {
  width: auto;
  height: 0.7em;
  margin-left: 0.15em;
}

body {
  background-color: var(--user-color-1);
  color: var(--user-color-2);
  font-family: "Park360", Verdana, sans-serif;
}

.wrapper {
  padding: 0 var(--wrapper-padding);
  padding-top: 3vw;
  position: relative;
  overflow: clip;
}

#header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: var(--park-font-small);
  position: fixed;
  width: 100vw;
  background-color: var(--user-color-1);
  padding: 0 var(--wrapper-padding);
  left: 0;
  top: 0;
  z-index: 1000;
}
#header .header__logo {
  display: flex;
}
#header .header__logo a {
  font-size: 3vw;
}
#header .header__logo a img {
  width: 2.5em;
}
@media (max-width: 1100px) {
  #header .header__logo {
    display: block;
  }
  #header .header__logo a img {
    width: auto;
  }
}
#header .nav-menu {
  display: flex;
  gap: 2vw;
}
#header .nav-menu a {
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-size: 3vw;
}
#header .nav-menu a span {
  padding-bottom: 0.5vw;
}
#header .nav-menu a svg {
  height: 2.2vw;
  width: 2.2vw;
}
#header .nav-menu a .visitors-menu-icon {
  width: 3vw;
}
@media (max-width: 768px) {
  #header .nav-menu a .visitors-menu-icon {
    width: 9vw;
    margin-top: 3vw;
  }
}
@media (max-width: 768px) {
  #header .nav-menu {
    display: none;
  }
}
#header .mobile {
  display: none;
  position: absolute;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  flex-direction: column;
  justify-content: flex-start;
  top: 100%;
  height: 100vh;
  z-index: -1;
  align-items: center;
  background-color: black;
  opacity: 0.9;
}
#header .mobile a {
  font-size: 10vw;
}
#header .mobile a svg {
  height: 8vw;
  width: 8vw;
  margin-top: 2vw;
}

.hero__wrapper {
  height: 60vh;
}

#hero {
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
}
#hero .swiper-container {
  position: relative;
  overflow: hidden;
  z-index: -1;
}
#hero .swiper-pagination {
  display: flex;
  position: absolute;
  flex-direction: column;
  left: 95%;
  gap: 1vw;
  bottom: 50%;
}
@media screen and (max-width: 767px) {
  #hero .swiper-pagination {
    left: 92%;
  }
}
#hero .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: var(--user-color-2);
  opacity: 1;
}
#hero .swiper-pagination-bullet-active {
  opacity: 0.4;
}
#hero::after {
  content: "";
  height: 370px;
  width: 100%;
  bottom: 0;
  position: absolute;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000 100%);
  z-index: -1;
}
#hero .hero__image {
  height: 100vh; /* Set hero section to full viewport height */
  position: relative;
}
#hero .hero__image img {
  display: block;
  height: 100%;
  width: 100%;
  position: relative;
  background-size: cover;
  background-position: center;
  object-fit: cover;
}

#event {
  display: flex;
  flex-direction: column;
}
#event .event-list {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.3vw;
  z-index: 1;
}
@media (max-width: 1100px) {
  #event .event-list {
    grid-template-columns: 1fr;
    gap: 2vw;
  }
}
#event .event-list .event-item {
  display: flex;
  align-items: center;
  height: max-content;
  gap: 24px;
  padding: 16px;
  font-size: var(--gt-font-big);
  background-color: var(--user-color-2);
  color: var(--user-color-1);
}
#event .event-list .event-item .event-item__date {
  width: 5vw;
  min-width: 75px;
}
#event .event-list .event-item .event-item__date .date-month {
  width: max-content;
}
@media (max-width: 1100px) {
  #event .event-list .event-item .event-item__date {
    min-width: 15vw;
  }
}
#event .event-list .event-item .event-item__picture img {
  width: 130px;
  height: 130px;
  object-fit: cover;
}
@media (max-width: 768px) {
  #event .event-list .event-item .event-item__picture img {
    width: 52px;
    height: 52px;
  }
}
@media (max-width: 768px) {
  #event .event-list .event-item {
    font-size: var(--gt-font-middle);
  }
}
#event .event-list .event-item:hover .event-item__title {
  text-decoration: underline;
}
#event .month-list {
  display: flex;
  justify-content: space-between;
  margin-bottom: 72px;
  padding: 5px 0;
  border: 1px solid var(--user-color-3);
  border-width: 1px 0;
}
#event .month-list .month-item {
  cursor: pointer;
  padding: 10px;
}
#event .month-list .month-item.active {
  font-weight: bold;
}
@media (max-width: 768px) {
  #event .month-list .month-item {
    display: none;
    flex-direction: column;
    width: 100%;
    text-align: center;
  }
  #event .month-list .month-item.active {
    display: block;
    color: var(--user-color-2);
    font-weight: bold;
  }
}
@media (max-width: 768px) {
  #event .month-list {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
  }
}

.button {
  margin-top: 80px;
  background-color: var(--user-color-2);
  color: var(--user-color-1);
  width: 246px;
  height: 10vw;
  max-height: 50px;
  font-size: var(--gt-font-middle);
  line-height: 16px;
  border-radius: 50px;
  cursor: pointer;
  transition: 0.2s ease-in;
}
.button:hover {
  background-color: var(--user-color-1);
  border: 1px solid var(--user-color-2);
  color: var(--user-color-2);
  transition: 0.2s ease-in;
}
.button:active {
  box-shadow: 0 0 0.5rem 0.5rem rgba(255, 255, 255, 0.5);
  border: none;
  transition: 0.15s ease-out;
}

button.buy-button {
  width: 100%;
}

.buttons-container {
  width: 250px;
}

.left {
  align-self: flex-start;
  margin-top: 32px;
}

.center {
  align-self: center;
}

.secondary {
  border: 1px solid var(--user-color-1);
  transition: 0.2s ease-in;
  margin: 0;
}
.secondary:hover {
  background-color: var(--user-color-1);
  color: var(--user-color-2);
  transition: 0.2s ease-in;
}

#news,
#availability,
#accommodation,
#our-focus {
  display: flex;
  flex-direction: column;
}

#news .bigbox-item__title {
  font-family: "GT-America", Verdana, sans-serif;
  font-size: var(--gt-font-big);
  line-height: 22px;
}

#availability .bigbox-item__image {
  max-height: 328px;
  width: 100%;
  height: 100%;
}
#availability .bigbox-item__image img {
  width: auto;
  height: auto;
  padding: 7vw 0;
}

#newsletter .newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
#newsletter .newsletter-form__text {
  font-size: 18px;
  font-style: normal;
  line-height: 22px;
}
#newsletter .newsletter-form__email {
  width: 100%;
  height: 58px;
  background: none;
  padding: 16px;
  border-bottom: 1px solid var(--user-color-3);
  color: var(--user-color-2);
}
#newsletter .newsletter-form .button {
  margin: 0;
}
@media screen and (max-width: 768px) {
  #newsletter .newsletter-form .button.left {
    align-self: center;
  }
}

#support {
  display: flex;
  justify-content: center;
  flex-direction: column;
  border-width: 1px 0 1px 0;
  border-color: var(--user-color-2);
  border-style: solid;
  margin-bottom: 100px;
}
#support .support-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(100px, auto);
  gap: 5vw 10vw;
  padding: 5vw 0;
  align-items: center;
}
#support .support-list a {
  text-align: center;
}
@media (max-width: 1280px) {
  #support .support-list {
    grid-template-columns: repeat(3, 1fr);
    align-self: center;
  }
}
@media (max-width: 1100px) {
  #support .support-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  #support .support-list {
    grid-template-columns: 1fr;
  }
}
#support .support-text {
  margin-top: 40px;
  font-size: var(--gt-font-middle);
}
@media (max-width: 768px) {
  #support {
    align-items: center;
  }
}
#support .partner-logo-wrapper {
  width: 300px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
#support .partner-logo-wrapper img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

#footer {
  margin-top: 150px;
}
#footer .icons-list {
  display: flex;
  justify-content: space-around;
  flex-wrap: nowrap;
  overflow: hidden;
}
#footer .icons-list .icons-item {
  height: 90px;
  flex-shrink: 0;
}
@media (max-width: 1100px) {
  #footer .icons-list .icons-item {
    height: 3em;
  }
}
@media (max-width: 1100px) {
  #footer .icons-list .hidden-mobile {
    display: none;
  }
}
@media screen and (max-width: 1100px) {
  #footer {
    margin-top: 50px;
  }
}

#contact {
  margin-top: 96px;
}
#contact .contact-info {
  font-size: var(--park-font-middle);
  display: flex;
  gap: 30px;
  line-height: 48px;
}
#contact .contact-info a {
  text-decoration: none;
}
#contact .contact-info div:hover {
  text-decoration: underline;
}
@media (max-width: 1100px) {
  #contact .contact-info {
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  #contact .contact-info {
    gap: 0;
  }
}
#contact .social {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
}
#contact .social-block {
  display: flex;
  gap: 50px;
}
#contact .social-block .personal-info-data {
  font-size: var(--gt-font-big);
  font-family: "GT-America";
}
#contact .social-block .personal-info-data a {
  text-decoration: none;
}
#contact .social-block .personal-info-data a:hover {
  text-decoration: underline;
}
#contact .social-block .social-webs {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2em;
}
@media (max-width: 1100px) {
  #contact .social-block .social-webs a img {
    width: 10vw;
    height: 10vw;
  }
}
@media (max-width: 1100px) {
  #contact .social-block {
    gap: 50px;
    flex-direction: column;
  }
}
#contact .social .credentials {
  font-family: "GT-America";
  font-size: var(--gt-font-small);
}
@media (max-width: 1100px) {
  #contact .social .credentials {
    margin-top: 40px;
  }
}
@media (max-width: 1100px) {
  #contact .social {
    flex-direction: column;
  }
}
#contact .contact-people {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  font-family: "GT-America", Verdana, sans-serif;
  font-size: var(--gt-font-middle);
  gap: 30px 20px;
  margin-top: 100px;
  max-width: 1400px;
  padding: 0 1rem;
}
#contact .contact-people .person {
  max-width: 100%;
}
#contact .contact-people .person-name {
  font-weight: bold;
  margin-bottom: 1vw;
}
#contact .contact-people .person-phone:hover {
  cursor: pointer;
  text-decoration: underline;
}
#contact .contact-people .person-email:hover {
  cursor: pointer;
  text-decoration: underline;
}
@media (max-width: 1100px) {
  #contact .contact-people {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  #contact .contact-people {
    grid-template-columns: 1fr;
    margin-top: 50px;
  }
}
@media screen and (max-width: 1100px) {
  #contact {
    margin-top: 50px;
  }
}

#detail {
  display: flex;
  flex-wrap: wrap;
  gap: 10vw;
  margin: 43px 0 80px 0;
}
#detail .detail__container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
}
#detail .detail__container li {
  list-style: disc;
  margin-left: 20px;
}
#detail .detail__container .swiper-container {
  position: relative;
  overflow: hidden;
  z-index: 0;
  max-height: 680px;
  aspect-ratio: 16/10;
}
#detail .detail__container .swiper-pagination {
  position: absolute;
  bottom: 5%;
  display: flex;
  justify-content: flex-end;
  padding-right: 25px;
  z-index: 10;
}
@media screen and (max-width: 1100px) {
  #detail .detail__container .swiper-pagination {
    bottom: 5%;
    padding-right: 0;
    justify-content: center;
  }
}
#detail .detail__container .swiper-pagination-bullet {
  background-color: var(--user-color-2);
  width: 12px;
  height: 12px;
  opacity: 1;
}
#detail .detail__container .swiper-pagination-bullet-active {
  background-color: var(--user-color-1);
}
@media screen and (max-width: 1280px) {
  #detail .detail__container {
    grid-template-columns: 1fr;
  }
}
#detail .detail__container.no-grid {
  grid-template-columns: 1fr;
}
#detail .column {
  display: flex;
  flex-direction: column;
  flex-basis: 100%;
  flex: 1;
}
#detail .detail__date {
  font-size: var(--gt-font-big);
}
#detail .detail__content {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
#detail .section-title {
  font-size: var(--park-font-middle);
  line-height: 80px;
}
#detail .section-title-big {
  display: flex;
  align-items: center;
  font-size: var(--park-font-big);
  font-family: "Park360", Verdana, sans-serif;
  white-space: nowrap;
}
#detail .section-title-big svg {
  width: 0.8em;
  height: 0.8em;
  margin-left: 0.3em;
  margin-top: 24px;
}
#detail .section-title-big .bigger {
  width: 1em;
  height: 1em;
  margin-top: 5px;
}
#detail .detail__text {
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 30px;
}
#detail .detail__text-big {
  font-size: var(--gt-font-big);
}
#detail .for-visitors {
  justify-content: start;
  gap: 30px;
}
#detail .detail__block {
  position: relative;
  justify-content: flex-end;
  font-size: var(--gt-font-middle);
  height: auto;
  z-index: 1;
}
#detail .detail__block .scroll {
  position: sticky;
  top: 5vw;
}
#detail .detail__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
  max-width: 1600px;
  font-size: var(--gt-font-big);
}
#detail .detail__list-item::before {
  content: "/ ";
}
@media (max-width: 1100px) {
  #detail .detail__list {
    grid-template-columns: 1fr;
  }
}
#detail .payment-form {
  justify-content: flex-start;
}
#detail .payment-form .detail__text {
  justify-content: flex-start;
  height: auto;
}
#detail .detail__image {
  display: flex;
  gap: 24px;
}
#detail .detail__image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
@media (max-width: 1100px) {
  #detail {
    margin-top: 70px;
  }
}

#timerange {
  display: grid;
  grid-template-rows: repeat(2, 1fr);
  grid-template-columns: repeat(3, 1fr);
  column-gap: 50px;
  font-family: "Park360", Verdana, sans-serif;
  background-color: var(--user-color-4);
  color: var(--user-color-1);
  padding: 80px var(--wrapper-padding);
  row-gap: 5vw;
  text-transform: uppercase;
  font-weight: 400;
}
#timerange .timerange-item {
  display: flex;
  flex-direction: column;
}
#timerange .timerange-item-title {
  font-size: var(--park-font-big);
  line-height: 128px;
}
@media (max-width: 768px) {
  #timerange .timerange-item-title {
    line-height: 54px;
  }
}
#timerange .timerange-item-text {
  font-size: var(--park-font-middle);
  line-height: 80px;
}
@media (max-width: 768px) {
  #timerange .timerange-item-text {
    line-height: 40px;
  }
}
#timerange .timerange-item:hover .timerange-item-title {
  font-weight: 500;
}
@media (max-width: 1100px) {
  #timerange {
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: auto;
    font-size: 54px;
    row-gap: 48px;
    padding: 40px 24px;
  }
  #timerange .timerange-item:nth-child(even) {
    align-items: flex-end;
  }
  #timerange .timerange-item-text {
    font-size: 40px;
  }
}

#faq .faq-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 768px) {
  #faq .faq-container {
    grid-template-columns: 1fr;
  }
}
#faq .faq-block {
  background-color: var(--user-color-2);
  height: fit-content;
}
#faq .faq-block-title {
  display: flex;
  position: relative;
  padding: 30px;
  align-items: center;
  width: 100%;
  height: 180px;
  font-size: var(--gt-font-big);
  text-decoration: underline;
  color: var(--user-color-1);
  cursor: pointer;
}
@media (max-width: 768px) {
  #faq .faq-block-title {
    height: auto;
  }
}
#faq .faq-block-text {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding-top 0.5s ease-out, padding-bottom 0.5s ease-out;
  display: flex;
  position: relative;
  justify-content: center;
  align-items: center;
  background-color: var(--user-color-2);
  color: var(--user-color-1);
  font-size: var(--gt-font-middle);
}
#faq .faq-block-text a {
  color: var(--user-color-1);
}
#faq .faq-block-arrow {
  position: absolute;
  background: url("/t/resources/icons/arrow-bottom.svg") no-repeat center center/contain;
  width: 20px;
  height: 20px;
  bottom: 15px;
  right: 10px;
  cursor: pointer;
  transition: transform 0.3s ease-out;
}
#faq .faq-block .up {
  transform: rotate(180deg);
}
#faq .faq-block .open {
  padding-bottom: 60px;
}

#ecology {
  background-color: var(--user-color-5);
  color: var(--user-color-1);
  padding: 0 var(--wrapper-padding);
}
#ecology .ecology-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 1280px) {
  #ecology .ecology-container {
    gap: 50px;
  }
}
#ecology .ecology-container .ecology-item {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
}
#ecology .ecology-container .ecology-item-text {
  flex: 1;
  font-size: var(--park-font-middle);
  line-height: 80px;
}
@media (max-width: 768px) {
  #ecology .ecology-container .ecology-item-text {
    line-height: 40px;
  }
}
#ecology .ecology-container .ecology-item-image {
  flex: 1;
}
#ecology .ecology-container .ecology-item-image img {
  width: 100%;
  height: 100%;
}
#ecology .ecology-container .ecology-item:nth-child(even) {
  flex-direction: row-reverse;
}
@media (max-width: 1280px) {
  #ecology .ecology-container .ecology-item {
    flex-direction: column !important;
    gap: 50px;
  }
}

#rent {
  background-color: var(--user-color-6);
  color: var(--user-color-1);
  padding: 0 var(--wrapper-padding);
  font-size: var(--gt-font-big);
}
#rent .rent-container {
  display: flex;
  gap: 200px;
}
#rent .rent-container .rent-text {
  flex: 0.8;
}
#rent .rent-container .rent-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 24px;
  column-gap: 50px;
}
@media (max-width: 1100px) {
  #rent .rent-container {
    flex-direction: column;
    gap: 50px;
  }
  #rent .rent-container .rent-list {
    grid-template-columns: 1fr;
    font-weight: bold;
  }
  #rent .rent-container .rent-list-item::before {
    content: "/ ";
  }
}
#rent .rent-form {
  max-height: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 3vw;
  margin-top: 0;
  transition: max-height 0.5s ease-out;
}
#rent .rent-form .input {
  color: var(--user-color-1);
  border-color: var(--user-color-1);
  border-radius: 0;
  border: 1px solid var(--user-color-1);
}
#rent .rent-form .input::placeholder {
  color: var(--user-color-1);
}
@media screen and (max-width: 768px) {
  #rent .rent-form .input {
    width: 100%;
  }
}
#rent .rent-form-description {
  outline: none;
  height: 205px;
  border: 1px solid var(--user-color-1);
  resize: none;
}
#rent .rent-form-description::placeholder {
  color: var(--user-color-1);
}
#rent .rent-form-title {
  margin-top: 50px;
  font-size: var(--gt-font-big);
}
#rent .rent-form .button {
  margin-top: 25px;
}

.rental-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9998;
  transition: opacity 0.3s ease;
}

.rental-success-message {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  padding: 30px;
  color: black;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  width: 90%;
  max-width: 400px;
  text-align: center;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.rental-success-message h3 {
  margin: 10px 0;
  font-size: 1.5rem;
}
.rental-success-message p {
  margin: 0.5rem 0;
  font-size: 1.125rem;
  line-height: 1.4;
}
.rental-success-message button {
  border: 1px solid black;
  margin-top: 1.25rem;
  padding: 0.625rem 1.25rem;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.rental-success-message button:hover {
  color: white;
  background-color: black;
}

@media (max-width: 480px) {
  .rental-success-message {
    padding: 20px;
  }
  .rental-success-message h3 {
    font-size: 1.25rem;
  }
  .rental-success-message p {
    font-size: 1rem;
  }
}
#map {
  display: flex;
  justify-content: space-between;
  padding: 0 var(--wrapper-padding);
  color: var(--user-color-1);
  background-color: var(--user-color-7);
  font-size: var(--gt-font-middle);
  scroll-margin-top: 100px;
}
#map .section-title {
  min-width: 300px;
}
#map .map-text p {
  margin-top: 30px;
}
#map .map-container {
  flex: 0.8;
}
@media (max-width: 1280px) {
  #map {
    flex-direction: column;
    gap: 50px;
  }
  #map .map-container {
    flex: 1;
  }
  #map .map-image {
    margin-top: 50px;
    width: 100%;
    align-self: center;
    overflow: hidden;
  }
}
#map .map-image {
  margin-top: 100px;
}
@media (max-width: 1280px) {
  #map .map-image iframe {
    width: 100%;
  }
}
@media (max-width: 1100px) {
  #map .map-image {
    margin-top: 25px;
  }
  #map .map-image iframe {
    width: 100%;
    height: 450px;
  }
}
@media (max-width: 768px) {
  #map .map-image {
    margin-top: 0px;
  }
  #map .map-image iframe {
    width: 100%;
    height: 300px;
  }
}

#press {
  padding: 0 var(--wrapper-padding);
  background-color: var(--user-color-8);
  color: var(--user-color-1);
  font-size: var(--gt-font-middle);
}
#press .press-list {
  max-width: 1400px;
  padding: 0 1rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
#press .press-list a {
  color: var(--user-color-1);
}
#press .press-list-item {
  text-decoration: underline;
  width: 100%;
  height: 2rem;
}
@media (max-width: 1100px) {
  #press .press-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  #press .press-list {
    grid-template-columns: 1fr;
  }
}

/* Styles for WP generated menu items */
.nav-menu .events-menu-item.current-menu-item a,
.nav-menu .events-menu-item.current-menu-item a .events-menu-icon,
.nav-menu .events-menu-item a:hover,
.nav-menu .events-menu-item a:hover > .events-menu-icon {
  color: var(--user-color-6);
  fill: var(--user-color-6);
}

.nav-menu .events-menu-item.current-menu-item a {
  font-weight: 500;
}

.nav-menu .visitors-menu-item.current-menu-item a,
.nav-menu .visitors-menu-item.current-menu-item a .visitors-menu-icon,
.nav-menu .visitors-menu-item a:hover,
.nav-menu .visitors-menu-item a:hover > .visitors-menu-icon {
  color: var(--user-color-4);
  fill: var(--user-color-4);
}

.nav-menu .visitors-menu-item.current-menu-item a {
  font-weight: 500;
}

.nav-menu .park360-menu-item.current-menu-item a,
.nav-menu .park360-menu-item.current-menu-item a .park360-menu-icon,
.nav-menu .park360-menu-item a:hover,
.nav-menu .park360-menu-item a:hover > .park360-menu-icon {
  color: var(--user-color-5);
  fill: var(--user-color-5);
}

.nav-menu .park360-menu-item.current-menu-item a {
  font-weight: 500;
}

.nav-menu .contact-menu-item.current-menu-item a,
.nav-menu .contact-menu-item.current-menu-item a .contact-menu-icon,
.nav-menu .contact-menu-item a:hover,
.nav-menu .contact-menu-item a:hover > .contact-menu-icon {
  color: var(--user-color-7);
  fill: var(--user-color-7);
}

.nav-menu .contact-menu-item.current-menu-item a {
  font-weight: 500;
}

.nav-menu .search-menu-item.current-menu-item a,
.nav-menu .search-menu-item.current-menu-item a .search-menu-icon,
.nav-menu .search-menu-item a:hover,
.nav-menu .search-menu-item a:hover > .search-menu-icon {
  color: var(--user-color-8);
  fill: var(--user-color-8);
}

.nav-menu .search-menu-item.current-menu-item a {
  font-weight: 500;
}

.nav-menu .language-menu-item a:hover {
  color: var(--user-color-9);
}

.bigbox-list {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.bigbox-list .bigbox-item {
  display: flex;
  flex-direction: column;
  height: 656px;
  background-color: var(--user-color-2);
}
.bigbox-list .bigbox-item a {
  display: contents;
}
.bigbox-list .bigbox-item__image {
  display: flex;
  justify-content: center;
  align-items: center;
  background-size: cover;
  background-position: center;
  flex-basis: 100%;
  min-height: 50%;
}
.bigbox-list .bigbox-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bigbox-list .bigbox-item__block {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--user-color-1);
  padding: 24px;
  gap: 24px;
  flex-basis: 100%;
  min-height: 50%;
}
.bigbox-list .bigbox-item__block .bigbox-item__title {
  font-size: var(--park-font-middle);
  font-family: "Park360", Verdana, sans-serif;
  font-weight: 400;
  line-height: 80px;
}
@media (max-width: 768px) {
  .bigbox-list .bigbox-item__block .bigbox-item__title {
    line-height: 40px;
  }
}
.bigbox-list .bigbox-item__block .bigbox-item__text {
  font-size: var(--gt-font-middle);
  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: clip;
}
.bigbox-list .bigbox-item__block .bigbox-item__button {
  width: 100%;
}
@media (max-width: 768px) {
  .bigbox-list .bigbox-item__block {
    padding: 12px;
  }
}
@media (max-width: 768px) {
  .bigbox-list .bigbox-item {
    height: 430px;
  }
}
@media (max-width: 1100px) {
  .bigbox-list {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }
}
@media (max-width: 768px) {
  .bigbox-list {
    grid-template-columns: repeat(1, 1fr);
    align-items: center;
  }
}

.input {
  font-family: "GT-America";
  display: flex;
  justify-content: space-between;
  width: 29em;
  height: 40px;
  background: none;
  padding: 16px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--user-color-3);
  color: var(--user-color-2);
}
@media (max-width: 1280px) {
  .input {
    width: 100%;
  }
}

.search-block {
  display: none;
  width: 100%;
  height: 74px;
  align-items: center;
  justify-content: space-between;
  padding-left: 33px;
  font-size: 3vw;
}
.search-block .input {
  width: 90%;
  font-size: var(--gt-font-big);
  margin: 0 20px;
}
.search-block .cross-icon svg {
  width: 2vw;
  height: 2vw;
}
.search-block .search-icon svg {
  width: 2vw;
  height: 2vw;
}
@media (max-width: 768px) {
  .search-block .search-icon {
    display: none;
  }
}
.search-block .close-search-block {
  display: flex;
  gap: 20px;
  cursor: pointer;
}
@media (max-width: 768px) {
  .search-block .close-search-block .close-search-title {
    display: none;
  }
}

.search-section {
  display: flex;
  flex-direction: column;
  gap: 50px !important;
}
.search-section .search-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.search-section .search-items div {
  font-size: var(--gt-font-big);
  text-decoration: underline;
}

#searchForm {
  display: flex;
  align-items: center;
  width: 100%;
  height: 74px;
}

.admin-bar .wrapper #header {
  top: 32px;
}

@media screen and (max-width: 782px) {
  .admin-bar .wrapper #header {
    top: 46px;
  }
}

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