@keyframes fade-in-bottom {
  from {
    transform: translateY(100px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.anim-fib {
  opacity: 0;
}
.anim-fib.anim--shown {
  animation: fade-in-bottom 1000ms ease 1;
  animation-fill-mode: forwards;
}
@keyframes fade-in-left {
  from {
    transform: translateX(-100px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
.anim-fil {
  opacity: 0;
}
.anim-fil.anim--shown {
  animation: fade-in-left 1000ms ease 1;
  animation-fill-mode: forwards;
}
@keyframes fade-in-right {
  from {
    transform: translateX(100px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
.anim-fir {
  opacity: 0;
}
.anim-fir.anim--shown {
  animation: fade-in-right 1000ms ease 1;
  animation-fill-mode: forwards;
}
@keyframes fade-in-zoom {
  from {
    transform: scale(1.2);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.anim-fiz {
  opacity: 0;
}
.anim-fiz.anim--shown {
  animation: fade-in-zoom 1000ms ease 1;
  animation-fill-mode: forwards;
}
body,
html {
  height: 100%;
  font: 600 20px/1.2 "Exo 2", sans-serif;
  color: black;
  scroll-behavior: smooth;
}
@media screen and (max-width: 767px) {
  body,
  html {
    font-size: 18px;
  }
}
@media screen and (max-width: 575px) {
  body,
  html {
    font-size: 16px;
  }
}
.snake-loading {
  display: block;
  width: 16px;
  height: 16px;
  background: url('../images/loading-snake-16x16.gif') no-repeat center;
  background-size: contain;
}
.nobr {
  white-space: nowrap;
}
a,
.link {
  text-decoration: underline;
  text-decoration-thickness: 0.05em;
  color: inherit;
  cursor: pointer;
}
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: "Dela Gothic One", sans-serif;
  font-weight: normal;
  line-height: 1.1;
  color: black;
}
.h1 {
  font-size: 3rem;
}
.h2 {
  font-size: 2rem;
}
.h3 {
  font-size: 1.5rem;
}
.h4 {
  font-size: 1.25rem;
}
.h5 {
  font-size: 1.1rem;
}
.h6 {
  font-size: 1rem;
}
.spinner {
  display: inline-flex;
  box-sizing: border-box;
  position: relative;
  padding-left: 2em;
  padding-right: 2em;
  font-size: 1em;
  vertical-align: middle;
  background: white;
  border: 1px solid #808080;
}
.spinner__value {
  display: block;
  box-sizing: border-box;
  width: 100%;
  padding: 0.5em 0;
  font-family: inherit;
  font-weight: inherit;
  font-size: inherit;
  line-height: 1.25;
  text-align: center;
  color: black;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
[data-autoresize] .spinner__value {
  width: auto;
  box-sizing: content-box;
  padding-left: 0.5em;
  padding-right: 0.5em;
}
.spinner__minus,
.spinner__plus {
  display: block;
  box-sizing: border-box;
  position: absolute;
  top: 0;
  width: 2em;
  height: 100%;
  text-align: center;
  color: black;
  cursor: pointer;
  user-select: none;
}
.spinner__minus::before,
.spinner__plus::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.spinner__minus {
  left: 0;
}
.spinner__minus::before {
  background-position: 50%;
  background-repeat: no-repeat;
  background-image: linear-gradient(#000, #000);
  background-size: 1em 2px;
}
.spinner__plus {
  right: 0;
}
.spinner__plus::before {
  background-position: 50%;
  background-repeat: no-repeat;
  background-image: linear-gradient(#000, #000), linear-gradient(#000, #000);
  background-size: 1em 2px, 2px 1em;
}
.container {
  max-width: 1170px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}
.narrow {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.section {
  scroll-margin-top: 50px;
  padding-top: 4rem;
}
@media screen and (max-width: 575px) {
  .section {
    padding-top: 3rem;
  }
}
.section--with-bg {
  margin-top: 4rem;
}
@media screen and (max-width: 575px) {
  .section--with-bg {
    margin-top: 3rem;
  }
}
.section__title {
  margin-bottom: 0.75em;
  text-transform: uppercase;
  text-align: center;
}
.section__subtitle {
  margin-top: -1rem;
  margin-bottom: 1.5rem;
  text-align: center;
  color: #454545;
}
.section__lead {
  max-width: 800px;
  margin: 1rem auto 2rem;
  text-align: center;
  font-size: 1.5rem;
}
.section__title + .section__lead {
  margin-top: -0.5rem;
}
.section__lead:last-child {
  margin-bottom: 0;
}
.text {
  color: #666;
}
.text * + p {
  margin-top: 1em;
}
.text * + ul,
.text * + ol {
  margin-top: 1em;
}
.text li {
  margin-top: 0.333em;
}
.text ol {
  counter-reset: xxx;
}
.text ol > li {
  position: relative;
  padding-left: 1.25em;
  counter-increment: xxx;
}
.text ol > li::before {
  content: counter(xxx) ".";
  position: absolute;
  left: 0;
  top: 0;
}
.text ul > li {
  position: relative;
  padding-left: 1.25em;
}
.text ul > li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 0.75em;
  border-bottom: 1px solid;
}
.text em {
  color: #333;
}
.text .link {
  color: black;
}
.text--centered {
  text-align: center;
}
.text--size--medium {
  font-size: 1.2rem;
}
.narrow {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.centered {
  text-align: center;
}
.btns-group {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem 2rem;
}
.btn {
  display: inline-block;
  margin: 0;
  padding: 1em 2em;
  text-decoration: none;
  font-family: "Dela Gothic One", sans-serif;
  font-weight: normal;
  font-size: inherit;
  line-height: 1;
  color: black;
  border: 0;
  background: #ffc100;
  appearance: none;
  cursor: pointer;
  clip-path: polygon(0% 0%, 100% 5%, 100% 95%, 5% 100%);
  transition: transform 250ms ease;
}
.btn:hover {
  transform: scale(1.05);
}
.btn[disabled],
.btn.disabled {
  background: #ccc !important;
}
.btn--primary {
  color: white;
  background-color: #fe3901;
}
.btn--white {
  color: black;
  background-color: white;
}
.form__item {
  margin-top: 1rem;
}
.form__label {
  text-transform: uppercase;
  font-size: 0.8rem;
  color: #333;
}
.form__note {
  font-size: 0.8rem;
  color: rgba(0, 0, 0, 0.3);
}
.input {
  border: 1px solid;
  background: white;
}
.input__ctrl {
  display: block;
  box-sizing: border-box;
  width: 100%;
  padding: 0.5em;
  font-family: inherit;
  font-weight: 400;
  font-size: inherit;
  line-height: normal;
  color: black;
  border: 0;
  background: transparent;
  appearance: none;
  outline: none;
}
.input__ctrl:focus {
  outline: 2px solid #ffcc00;
}
.input__ctrl[disabled],
.input__ctrl.disabled {
  color: #666;
  background: rgba(0, 0, 0, 0.05);
}
.input--with-link {
  position: relative;
}
.input__link {
  position: absolute;
  right: 0.5em;
  top: 50%;
  color: #f90;
  transform: translateY(-50%);
}
.layout {
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  min-height: 100%;
  padding-top: 50px;
  overflow-x: hidden;
}
.index-page .layout {
  padding-top: 0;
}
.header {
  position: absolute;
  z-index: 999;
  top: 0;
  width: 100%;
  height: 50px;
}
.index-page .header {
  color: white;
}
.index-page .header--flow.header {
  color: rgba(0, 0, 0, 0.75);
}
.hamburger-menu-opened .header {
  position: fixed;
}
.header--flow {
  position: fixed;
  background: rgba(255, 204, 0, 0.9);
  backdrop-filter: blur(3px);
}
.hamburger-menu-opened .header--flow {
  background: none;
  backdrop-filter: none;
}
.main-menu {
  text-transform: uppercase;
  font-size: 0.8rem;
  line-height: 50px;
}
@media screen and (max-width: 859px) {
  .main-menu {
    display: none;
    left: 100%;
  }
  .hamburger-menu-opened .main-menu {
    display: block;
    box-sizing: border-box;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    padding: 3rem 1rem;
    font-size: 1.2rem;
    line-height: 1.2;
    color: rgba(0, 0, 0, 0.75);
    background: rgba(255, 204, 0, 0.9);
    backdrop-filter: blur(3px);
  }
  .hamburger-menu-opened .main-menu .menu__items {
    height: 100%;
    flex-direction: column;
    justify-content: center;
  }
  .hamburger-menu-opened .main-menu .menu__separator {
    display: none;
  }
}
.main-menu .menu__items {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 2rem 1rem;
}
.main-menu .menu__item {
  white-space: nowrap;
}
.main-menu .menu__separator {
  height: 1.2rem;
  border-left: 1px solid;
  opacity: 0.25;
}
.main-menu .menu__link {
  text-decoration: none;
  color: inherit;
}
.hamburger {
  display: none;
  position: absolute;
  right: 15px;
  top: 50%;
  width: 32px;
  height: 32px;
  transform: translateY(-50%);
  cursor: pointer;
}
@media screen and (max-width: 859px) {
  .hamburger {
    display: block;
  }
}
.hamburger span {
  display: block;
  position: absolute;
  width: 100%;
  transition: 250ms ease;
}
.hamburger span:nth-of-type(1) {
  top: 10%;
  border-top: 2px solid;
}
.hamburger span:nth-of-type(2) {
  top: 50%;
  margin-top: -1px;
  border-top: 2px solid;
}
.hamburger span:nth-of-type(3) {
  top: 90%;
  margin-top: -2px;
  border-top: 2px solid;
}
.hamburger-menu-opened .hamburger {
  color: black;
}
.hamburger-menu-opened .hamburger span:nth-of-type(1) {
  top: 50%;
  margin-top: 0;
  transform: rotate(45deg);
}
.hamburger-menu-opened .hamburger span:nth-of-type(2) {
  opacity: 0;
}
.hamburger-menu-opened .hamburger span:nth-of-type(3) {
  top: 50%;
  margin-top: 0;
  transform: rotate(-45deg);
}
.content {
  flex: 1;
}
.footer {
  max-width: none;
  margin-top: 4rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
  background: rgba(255, 204, 0, 0.8);
}
@media screen and (max-width: 575px) {
  .footer {
    margin-top: 3rem;
  }
}
.footer .row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem 2rem;
  margin: 0;
}
.top-banner {
  position: relative;
  padding-top: 6rem;
  padding-bottom: 6rem;
  color: #ffcc00;
  background: black;
  clip-path: polygon(0 0, 100% 0, 100% 95%, 40% 100%, 0 95%);
}
.top-banner::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url("../images/banner.webp") no-repeat center;
  background-size: cover;
  filter: blur(1px);
  opacity: 0.7;
}
.heading {
  position: relative;
  z-index: 1;
  text-align: center;
  font-family: "Dela Gothic One", sans-serif;
  font-weight: normal;
  line-height: 1;
}
.heading .heading__logo {
  width: 90%;
  max-width: 800px;
  margin: 2rem auto;
}
.heading .heading__logo img {
  display: block;
  width: 100%;
  height: auto;
  opacity: 0.85;
}
.heading .heading__where {
  margin-bottom: 0.5rem;
  text-shadow: 0 0 15px rgba(255, 204, 0, 0.2);
}
@media screen and (max-width: 419px) {
  .heading .heading__where {
    font-size: 0.9rem;
  }
}
.heading .heading__when {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
  white-space: nowrap;
  font-size: 2rem;
  text-shadow: 0 0 15px rgba(255, 204, 0, 0.2);
}
.heading .heading__when span {
  white-space: nowrap;
}
.heading .heading__when .separator {
  font-size: 1.3em;
  opacity: 0.5;
}
@media screen and (max-width: 479px) {
  .heading .heading__when {
    font-size: 1.75rem;
  }
}
@media screen and (max-width: 419px) {
  .heading .heading__when {
    font-size: 1.5rem;
  }
}
.xxx {
  padding: 4rem 2rem;
  background: rgba(255, 204, 0, 0.1);
  clip-path: polygon(5% 0, 30% 5%, 50% 0, 70% 5%, 95% 3%, 100% 100%, 80% 90%, 60% 100%, 30% 95%, 0 100%);
}
.socials {
  margin-top: 4rem;
  padding-top: 4rem;
  padding-bottom: 4rem;
  text-align: center;
  background: rgba(255, 204, 0, 0.8);
  clip-path: polygon(0 5%, 60% 0, 100% 10%, 100% 95%, 40% 100%, 0 90%);
}
@keyframes line-up-card {
  0% {
    clip-path: polygon(0% 0%, 100% 10%, 95% 90%, 10% 100%);
  }
  100% {
    clip-path: polygon(0% 10%, 100% 0%, 90% 100%, 5% 90%);
  }
}
.line-up__cards .card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
}
@media screen and (max-width: 991px) {
  .line-up__cards .card {
    width: 100%;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    flex-direction: column;
  }
}
.line-up__cards .card__media {
  position: relative;
  z-index: 1;
  padding: 2rem 4rem 2rem 3rem;
  clip-path: polygon(0% 10%, 100% 0%, 93% 100%, 5% 93%);
}
.line-up__cards .card__media img {
  width: 100%;
  max-width: 300px;
}
.line-up__cards .card__main {
  flex: 1;
  margin-left: -3rem;
  padding: 1.5rem 5rem;
  background: rgba(255, 204, 0, 0.2);
}
@media screen and (max-width: 991px) {
  .line-up__cards .card__main {
    margin-left: 0;
    margin-top: -3rem;
    padding: 4rem 1.5rem;
  }
}
.line-up__cards .card--last .card__main {
  max-width: 480px;
  margin: auto;
  padding-left: 2rem;
}
.line-up__cards .card__date {
  aspect-ratio: 1;
  position: relative;
  z-index: 1;
  margin-left: -3rem;
  padding: 1.5rem;
  text-align: center;
  font-family: "Dela Gothic One", sans-serif;
  font-weight: normal;
  font-size: 1.5rem;
  line-height: 1;
  border: 1px solid;
  border-radius: 999px;
  background: white;
}
.line-up__cards .card__date em {
  display: block;
  font-size: 2em;
}
@media screen and (max-width: 991px) {
  .line-up__cards .card__date {
    margin-left: auto;
    margin-top: -5rem;
  }
}
.line-up__cards .card__title {
  font-family: "Dela Gothic One", sans-serif;
  font-weight: normal;
  font-size: 1.25rem;
}
.line-up__cards .card__subtitle {
  margin-top: 0.5rem;
}
.line-up__cards .card__actions {
  margin-top: 1rem;
}
.map__info {
  margin-bottom: 2rem;
  text-align: center;
  font-size: 0.9rem;
  color: #666;
}
.map__img {
  display: block;
  width: 100%;
  max-width: 800px;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  border: 2px solid rgba(255, 204, 0, 0.75);
  box-shadow: 0 0 20px rgba(255, 204, 0, 0.25);
}
.tickets__info {
  margin-bottom: 2rem;
  text-align: center;
  font-size: 0.9rem;
  color: #666;
}
.tickets__cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}
.tickets__cards .card {
  flex: 1 1 calc((100% - 4rem) / 3);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  max-width: 480px;
  padding: 4rem 2rem;
  text-align: center;
  background: rgba(0, 0, 0, 0.05);
  clip-path: polygon(0 5%, 70% 0, 100% 10%, 95% 95%, 40% 100%, 5% 90%);
}
.tickets__cards .card__date {
  opacity: 0.7;
}
.tickets__cards .card__price {
  margin-bottom: 0.5rem;
  font-size: 2rem;
}
.tickets__cards .card__notes li + li {
  margin-top: 0.333rem;
}
.seller {
  text-align: center;
  color: #999;
}
.seller .section__title {
  text-transform: none;
  color: #666;
}
.seller__block + .seller__block {
  margin-top: 0.5rem;
}
.seller__block em {
  font-weight: 800;
}
.accordion {
  border-bottom: 1px solid;
}
.accordion__item {
  padding-left: 1rem;
  padding-right: 1rem;
  border-top: 1px solid;
}
@media screen and (max-width: 575px) {
  .accordion__item {
    padding-left: 0;
    padding-right: 0;
  }
}
.accordion__title {
  position: relative;
  padding-top: 1rem;
  padding-bottom: 1rem;
  font-weight: 900;
  font-size: 1.2rem;
  cursor: pointer;
}
.accordion__content {
  padding-bottom: 1.25rem;
}
.faq .accordion {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
#ymap {
  display: block;
  box-sizing: border-box;
  width: 100%;
  height: 400px;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.contacts {
  max-width: none;
  margin-bottom: -4rem;
  padding-top: 4rem;
  padding-bottom: 4rem;
  background: rgba(255, 204, 0, 0.2);
  clip-path: polygon(0 5%, 60% 0, 100% 7%, 100% 100%, 0 100%);
}
@media screen and (max-width: 575px) {
  .contacts {
    margin-bottom: -3rem;
  }
}
.contacts .phone-link,
.contacts .email-link {
  display: inline-block;
  font-size: 1.5rem;
  color: #ff6600;
  transition: transform 250ms ease;
}
.contacts .phone-link:hover,
.contacts .email-link:hover {
  transform: scale(1.05);
}
.contacts__row {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
.contacts__row .col {
  flex: 1 1 calc(50% - 1rem);
}
.contacts__item + .contacts__item {
  margin-top: 1.5rem;
}
@media screen and (max-width: 575px) {
  .contacts__item {
    text-align: center;
  }
}
.buy-ticket-form {
  max-width: 600px;
  margin: auto;
}
.buy-ticket-form .form__actions {
  text-align: center;
}
.buy-ticket-form__rates .card {
  display: flex;
  align-items: flex-start;
  gap: 0 1rem;
}
.buy-ticket-form__rates .card + .card {
  margin-top: 0.5rem;
}
.buy-ticket-form__rates .card__title {
  flex: 1;
  align-self: center;
}
.buy-ticket-form__rates .spinner__value {
  width: 3ch;
}
.buy-ticket-form__total {
  margin-top: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-align: center;
  font-size: 1.35rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.buy-ticket-form__total span:first-child {
  position: relative;
  font-size: 0.75em;
  color: #666;
}
.buy-ticket-form__total span:first-child::before {
  content: "";
  display: block;
  position: absolute;
  left: -5%;
  top: 50%;
  width: 110%;
  height: 1px;
  background: red;
  transform: rotate(-10deg);
  opacity: 0.8;
}
.gallery {
  display: grid;
  grid-auto-flow: dense;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: auto;
  gap: 1px;
}
@media screen and (max-width: 767px) {
  .gallery {
    margin-left: -15px;
    margin-right: -15px;
  }
}
.gallery__item {
  grid-column: span 1;
  grid-row: span 1;
}
.gallery__item .img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 20%;
}
.complete .link {
  color: black;
}
.camping-card {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.camping-card + .camping-card {
  margin-top: 4rem;
}
.camping-card p + p {
  margin-top: 1rem;
}
.camping-card img {
  display: block;
  max-width: 100%;
  height: auto;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.camping-card__title {
  margin-bottom: 0.5rem;
}
.camping-card__price {
  white-space: nowrap;
  font-size: 2rem;
}
.transfer-card {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  padding: 1rem 1rem 1.5rem;
  text-align: center;
  border: 2px solid rgba(255, 204, 0, 0.75);
  box-shadow: 0 0 20px rgba(255, 204, 0, 0.25);
}
.transfer-card + .transfer-card {
  margin-top: 3rem;
}
.transfer-card .link {
  color: #ff6600;
}
.transfer-card .card__title {
  font-weight: 700;
  font-size: 1.5rem;
}
.transfer-card .card__location {
  font-size: 1.2rem;
}
.transfer-card .card__addr {
  color: #999;
}
.transfer-card .card__ymap {
  margin-left: -1rem;
  margin-right: -1rem;
  margin-top: 0.75rem;
}
.transfer-card .card__ymap .map {
  height: 320px;
  background: #f0f0f0;
  margin-bottom: 0.25rem;
}
.transfer-card .card__price {
  margin-top: 0.75rem;
}
.transfer-card .card__price em {
  font-size: 1.333rem;
}
.transfer-card .card__schedule {
  margin-top: 0.75rem;
}
.transfer-card .card__schedule div + div {
  margin-top: 0.25rem;
}
.transfer-card .card__route {
  display: inline-block;
  padding: 0.5em 1em;
  border-radius: 1em;
  background: #f5f5f5;
}
.transfer-card .card__actions {
  margin-top: 1rem;
}
