@charset "UTF-8";
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  visibility: hidden;
  pointer-events: none;
}

.container {
  max-width: 1440px;
  padding: 0 64px;
  margin-right: auto;
  margin-left: auto;
  position: relative;
}
@media (max-width: 1568px) {
  .container {
    max-width: unset;
    padding: 0 32px;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }
}
.cookies {
  position: fixed;
  bottom: 32px;
  left: calc(50% - 688px);
  width: 555px;
  height: 192px;
  border-radius: 12px;
  background: #FFF;
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.1);
  padding: 20px 20px 20px 248px;
  z-index: 1000;
}
.cookies--hide {
  display: none;
}
.cookies .cookies__img {
  position: absolute;
  width: 228px;
  height: 270px;
  object-fit: cover;
  bottom: 0;
  left: 0;
  border-radius: 12px;
}
.cookies .cookies__text {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  gap: 8px;
}
.cookies .cookies__title {
  font-size: 24px;
  line-height: 32px;
  color: #09222E;
}
@media (max-width: 1440px) {
  .cookies {
    left: 32px;
  }
}
@media (max-width: 620px) {
  .cookies {
    bottom: 8px;
    left: 8px;
    padding-left: 20px;
    width: calc(100% - 16px);
    height: 192px;
  }
  .cookies .cookies__img {
    bottom: 192px;
    left: 0;
  }
  .cookies .cookies__text {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
}

.center-app-button {
  position: absolute;
  left: 50%;
  z-index: 100;
  width: 206px;
  height: 206px;
  transform: translateX(-50%);
  transition: all 0.3s ease;
  overflow: visible;
}
.center-app-button .center-app-button__wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: #FFF;
  opacity: 0.2;
  border-radius: 50%;
  transition: all 0.3s ease;
}
.center-app-button .center-app-button__inner {
  position: absolute;
  width: 160px;
  height: 160px;
  background: #FFF;
  filter: drop-shadow(0px 4px 20px rgba(0, 0, 0, 0.1));
  z-index: 2;
  border-radius: 50%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
}
.center-app-button .center-app-button__img {
  position: absolute;
  width: 54px;
  height: 26px;
  object-fit: cover;
  z-index: 3;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
}
.center-app-button:hover {
  width: 240px;
  height: 240px;
}
.center-app-button:hover .center-app-button__inner {
  width: 140px;
  height: 140px;
}
.center-app-button--top {
  bottom: 0;
}

.main-button, .secondary-button {
  position: relative;
  padding: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 9px;
  cursor: pointer;
  overflow: hidden;
  z-index: 0;
}
.main-button::before, .secondary-button::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  z-index: 2;
  transition: opacity 0.3s ease-in-out;
}
.main-button:hover::before, .secondary-button:hover::before {
  opacity: 1;
}
.main-button:active::before, .secondary-button:active::before {
  opacity: 1;
}
.main-button span, .secondary-button span {
  z-index: 3;
}
.main-button img, .secondary-button img {
  width: 20px;
  height: 20px;
  object-fit: cover;
  z-index: 3;
}
.main-button.not-active, .secondary-button.not-active {
  opacity: 0.5;
  background: rgba(9, 34, 46, 0.06);
  cursor: auto;
}
.main-button.not-active:hover::before, .secondary-button.not-active:hover::before {
  opacity: 0;
}
.main-button.not-active:active::before, .secondary-button.not-active:active::before {
  opacity: 0;
}

.secondary-button {
  background: rgba(9, 34, 46, 0.06);
}
.secondary-button::before {
  background: linear-gradient(112deg, rgba(235, 237, 238, 0.28) 0%, rgba(85, 95, 99, 0.28) 100%);
}

.main-button {
  background: #E01B1B;
  color: #FFF;
}
.main-button::before {
  background: linear-gradient(111deg, #E01B1B 11.8%, #4D171C 108.17%);
}
.main-button:active::before {
  background: linear-gradient(236deg, #E01B1B 4.56%, #4D171C 126.08%);
}

input::-webkit-calendar-picker-indicator {
  display: none;
  appearance: none;
}

input[list]::-webkit-calendar-picker-indicator {
  display: none !important;
}

.select-block {
  position: relative;
  width: 100%;
  height: 48px;
  border: 1px solid rgba(9, 34, 46, 0.06);
  border-radius: 9px;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}
.select-block:before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  top: 14px;
  left: 14px;
  background-repeat: no-repeat;
  background-size: cover;
}
.select-block--quantity:before {
  background-image: url("../assets/icons/icon-user.svg");
}
.select-block--language:before {
  background-image: url("../assets/icons/icon-language.svg");
}
.select-block--phone:before {
  background-image: url("../assets/icons/icon-phone.svg");
}
.select-block--calendar:before {
  background-image: url("../assets/icons/icon-calendar.svg");
}
.select-block .select-block__picker {
  position: absolute;
  top: 14px;
  right: 14px;
  transform: rotate(0);
  transition: transform 0.3s ease-in-out;
}
.select-block .select-block__picker--focused {
  transform: rotate(180deg);
}
.select-block .select-input {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 22px 46px 6px;
  border: none;
  outline: none;
  background: transparent;
  z-index: 10;
}
.select-block .select-input:focus + .select-block__label, .select-block .select-input:not(:placeholder-shown) + .select-block__label {
  top: 6px;
  font-size: 12px;
  line-height: 16px;
  color: rgba(9, 34, 46, 0.28);
}
.select-block .select-input--promo {
  padding-left: 14px;
  padding-right: 14px;
}
.select-block .select-block__label {
  position: absolute;
  top: 14px;
  left: 46px;
  pointer-events: none;
  transition: all 0.3s ease;
}
.select-block:hover {
  border-color: #09222E;
}
.select-block:focus-within {
  border-color: #09222E;
}
.select-block.hide {
  display: none;
}

.flatpickr-calendar {
  width: 319px;
}
.flatpickr-calendar .flatpickr-monthDropdown-months {
  width: auto;
  min-width: unset;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.flatpickr-calendar .dayContainer {
  row-gap: 4px;
  column-gap: 0;
}
.flatpickr-calendar .flatpickr-day {
  font-size: 12px;
  line-height: 16px;
  color: #09222E;
  height: 28px;
  max-width: 41px;
  padding: 6px;
  border-radius: 4px;
  align-items: center;
  align-self: center;
}
.flatpickr-calendar .flatpickr-day.selected {
  background: #09222E !important;
  color: #FFF !important;
}

.checkbox-block {
  position: relative;
  padding-left: 32px;
}

.checkbox-block__input {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  visibility: hidden;
  pointer-events: none;
}

.checkbox-block__input:checked + .checkbox-block__label::before {
  background-image: url("../assets/icons/icon-checkbox-checked.svg");
  background-repeat: no-repeat;
}

.checkbox-block__label {
  display: inline;
  cursor: pointer;
  color: #09222E;
  background-repeat: no-repeat;
  text-align: left;
}
.checkbox-block__label .checkbox-block__label-button {
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  cursor: pointer;
}
.checkbox-block__label::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 20px;
  height: 20px;
  background-image: url("../assets/icons/icon-checkbox.svg");
  background-repeat: no-repeat;
  transition: background 0.2s;
}
.checkbox-block__label:hover::before {
  background-image: url("../assets/icons/icon-checkbox-hover.svg");
  background-repeat: no-repeat;
}

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: 70%;
  max-width: 100vw;
  background-color: white;
  box-shadow: -4px 0 10px rgba(0, 0, 0, 0.2);
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
  z-index: 1000;
}
.drawer.open {
  transform: translateX(0);
}
.drawer .drawer__button-close {
  position: absolute;
  padding: 8px;
  cursor: pointer;
  top: 32px;
  right: 48px;
  background-color: #FFF;
  border-radius: 16px;
}
.drawer .drawer__button-close img {
  width: 40px;
  height: 40px;
  object-fit: cover;
}
.drawer .drawer__content {
  padding: 88px 40px;
  height: 100%;
  overflow-y: auto;
}
.drawer .drawer__title {
  font-size: 32px;
  line-height: 40px;
  color: #09222E;
}
.drawer .drawer__text-list {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 40px;
}
.drawer .drawer__title-item {
  font-size: 24px;
  line-height: 32px;
  color: #09222E;
}
.drawer .drawer__text-item {
  margin-top: 16px;
  font-size: 20px;
  line-height: 26px;
  color: #09222E;
}
@media (max-width: 768px) {
  .drawer {
    width: calc(100% - 32px);
  }
  .drawer .drawer__title {
    font-size: 26px;
    line-height: 32px;
    color: #09222E;
  }
}
@media (max-width: 375px) {
  .drawer {
    width: calc(100% - 8px);
  }
}

html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, dl, dt, dd, button {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

h1, h2, h3, h4, h5, h6, p, blockquote {
  margin: 0;
}

button {
  border: none;
  background-color: transparent;
}

body {
  position: relative;
  font-size: 16px;
  line-height: 20px;
  font-family: Onest, sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: #09222E;
  background-color: #FCFCFC;
}

.main {
  background-color: inherit;
  overflow-x: hidden;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 122px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 110;
}

.header__inner {
  position: relative;
  max-width: 1440px;
  padding: 0 12px;
  margin: 0 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  width: 100%;
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 12px;
}
.header__inner--left {
  position: absolute;
  left: 0px;
  top: 0;
  width: 12px;
  height: 60px;
  background-image: url("../assets/mask-left.svg");
  background-repeat: no-repeat;
  background-position: left;
}
.header__inner--right {
  position: absolute;
  right: 0px;
  top: 0;
  width: 12px;
  height: 60px;
  background-image: url("../assets/mask-right.svg");
  background-repeat: no-repeat;
  background-position: right;
}

.header__block {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 4px;
  height: 60px;
  background: #FFF;
}
.header__block:after {
  content: "";
  position: absolute;
  top: 28px;
  height: 4px;
  border-radius: 1px;
}
.header__block--left {
  flex: 1;
  padding-left: 15px;
  padding-right: 14px;
  border-radius: 0 12px 12px 0;
}
.header__block--left:after {
  right: -12px;
  width: 20px;
  background: #E01B1B;
  z-index: 111;
}
.header__block--right {
  padding-left: 12px;
  padding-right: 4px;
  border-radius: 12px 0 0 12px;
}

.header__logo {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.header__logo-title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
}

.header__logo-text {
  font-family: "Playwrite DK Loopet", sans-serif;
  leading-trim: both;
  text-edge: cap;
  font-size: 28px;
  line-height: 30px;
  color: #09222E;
}
.header__logo-text--red {
  color: #E01B1B;
  font-weight: 600;
}

.header__nav-list {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
}

.header__nav-item {
  padding: 8px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease-in-out;
}
.header__nav-item:hover {
  color: #E01B1B;
}

.header__menu-button {
  display: none;
  padding: 4px 12px;
  border-radius: 6px;
  background: rgba(9, 34, 46, 0.06);
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.header__menu-button img {
  height: 20px;
  width: 20px;
  object-fit: cover;
}
.header__menu-button:hover {
  -webkit-box-shadow: -5px -5px 5px -5px rgba(34, 60, 80, 0.6) inset;
  -moz-box-shadow: -5px -5px 5px -5px rgba(34, 60, 80, 0.6) inset;
  box-shadow: -5px -5px 5px -5px rgba(34, 60, 80, 0.6) inset;
}

@media (max-width: 1160px) {
  .header {
    height: 76px;
  }

  .header__inner {
    max-width: unset;
    margin: 0 8px;
  }

  .header__block--left {
    padding-right: 4px;
    border-radius: 0;
  }
  .header__block--left:after {
    content: unset;
  }

  .header__block--right {
    display: none;
  }

  .header__menu-button {
    display: inline;
  }

  .header__nav {
    position: fixed;
    top: 76px;
    left: 8px;
    width: calc(100% - 16px);
    background-color: #FFF;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transform: translateY(-10px);
    transition: max-height 0.5s ease, opacity 0.4s ease, transform 0.4s ease;
    pointer-events: none;
    visibility: hidden;
  }
  .header__nav .header__nav-list {
    display: none;
  }
  .header__nav.visible {
    max-height: 500px;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    visibility: visible;
  }
  .header__nav.visible .header__nav-list {
    display: flex;
  }

  .header__nav-list {
    padding: 16px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
}


.hero__inner {
  max-width: 1440px;
  padding: 0 48px;
  margin-right: auto;
  margin-left: auto;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 24px;
}

.hero__title {
  text-align: center;
  margin-top: 258px;
  font-size: 56px;
  line-height: 56px;
  color: #FFF;
}

.hero__description {
  text-align: center;
  font-size: 20px;
  line-height: 26px;
  color: #FFF;
}

.hero__booking {
  display: none;
}

.hero__app-button {
  bottom: -103px;
}

@media (max-width: 768px) {
  .hero {
    height: 1024px;
  }

  .hero__inner {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 16px;
    padding-bottom: 116px;
  }

  .hero__title {
    margin-top: 0;
    font-size: 40px;
    line-height: 40px;
    color: #FFF;
  }

  .hero__booking {
    display: inline;
  }
}
@media (max-width: 375px) {
  .hero {
    height: 800px;
  }

  .hero__inner {
    padding-left: 16px;
    padding-right: 16px;
    padding-bottom: 135px;
  }
}
.book-walk {
  position: relative;
  padding-top: 184px;
}
.book-walk--footer {
  padding-top: 0;
  padding-bottom: 84px;
}

.book-walk__title {
  text-align: center;
  font-size: 40px;
  line-height: 52px;
  color: #09222E;
  margin-bottom: 32px;
}

.book-walk__inputs-wrapper {
  background-color: #FFF;
  box-shadow: 0 20px 16px 0 rgba(0, 0, 0, 0.05);
}

.book-walk__inputs {
  padding-top: 24px;
  padding-bottom: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}
.book-walk__inputs .select-block {
  width: calc(25% - 9px);
}

.book-walk__inputs-options {
  margin: 32px auto 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 16px;
  width: 426px;
}

.book-walk__promo {
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  cursor: pointer;
}

.book-walk__alert {
  position: absolute;
  bottom: 36px;
  left: calc(50% - 636px);
  padding: 32px 32px 32px 80px;
  background: #09222E;
  border-radius: 12px;
  box-shadow: 0 8px 30px 0 rgba(0, 0, 0, 0.2);
  font-size: 20px;
  line-height: 26px;
  color: #FFF;
  z-index: 10;
}
.book-walk__alert::before {
  content: "";
  position: absolute;
  width: 32px;
  height: 32px;
  top: 32px;
  left: 32px;
  object-fit: cover;
  background-repeat: no-repeat;
}
.book-walk__alert--success:before {
  background-image: url("../assets/icons/icon-successful-white.svg");
}
.book-walk__alert--error:before {
  background-image: url("../assets/icons/icon-unsuccessful-white.svg");
}
.book-walk__alert.hide {
  display: none;
}

@media (max-width: 1440px) {
  .book-walk__alert {
    bottom: 36px;
    left: 32px;
  }
}
@media (max-width: 1120px) {
  .book-walk {
    padding-top: 200px;
  }
  .book-walk--footer {
    padding-top: 0;
    padding-bottom: 84px;
  }

  .book-walk__title {
    font-size: 32px;
    line-height: 40px;
    color: #09222E;
  }

  .book-walk__inputs {
    padding-top: 20px;
    padding-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
  }
  .book-walk__inputs .select-block {
    width: calc(50% - 8px);
  }
}
@media (max-width: 768px) {
  .book-walk__alert {
    padding: 20px 20px 20px 68px;
  }
  .book-walk__alert::before {
    left: 20px;
    top: 20px;
  }
}
@media (max-width: 524px) {
  .book-walk {
    padding-top: 160px;
  }
  .book-walk--footer {
    padding-top: 0;
    padding-bottom: 96px;
  }

  .book-walk__title {
    margin-bottom: 24px;
  }

  .book-walk__inputs {
    padding-top: 16px;
    padding-bottom: 16px;
    gap: 12px;
  }
  .book-walk__inputs .select-block {
    width: 100%;
  }

  .book-walk__inputs-options {
    margin: 32px auto 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 24px;
    width: 343px;
  }

  .checkbox-block__label {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
  }
}
@media (max-width: 450px) {
  .book-walk__alert {
    width: calc(100% - 16px);
    left: 8px;
  }
}
.gallery {
  padding-top: 84px;
  padding-bottom: 20px;
}

.gallery__title {
  font-size: 40px;
  line-height: 52px;
  color: #09222E;
}

.gallery__wrapper {
  padding-top: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 32px;
}

.gallery__first-line, .gallery__thirty-line {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.gallery__second-line {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 16px;
}

.gallery__full-block {
  width: 427px;
}

.gallery__small-block {
  width: 205px;
}

.gallery__img, .gallery__half-img, .gallery__small-img, .gallery__full-img {
  border-radius: 9px;
  overflow: hidden;
}
.gallery__img img, .gallery__half-img img, .gallery__small-img img, .gallery__full-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery__full-img {
  width: 427px;
  height: 300px;
}

.gallery__small-img {
  width: 205px;
  height: 205px;
}

.gallery__half-img {
  width: 206px;
  height: 300px;
}

.gallery__text {
  margin-top: 16px;
  width: 100%;
}

.gallery_right-block {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 16px;
}

.gallery__swiper {
  display: none;
  position: relative;
}

.gallery__slide-img {
  width: 100%;
  height: 615px;
  object-fit: cover;
}

.gallery__slide-text {
  margin-top: 16px;
}

.gallery__swiper-pagination {
  bottom: 0 !important;
}
.gallery__swiper-pagination .swiper-pagination-bullet-active {
  width: 12px;
  height: 8px;
  border-radius: 100px;
  background-color: #E01B1B;
}

@media (max-width: 1220px) {
  .gallery__wrapper {
    display: none;
  }

  .gallery__swiper {
    margin-top: 24px;
    display: block;
    padding-bottom: 40px;
  }
}
@media (max-width: 524px) {
  .gallery {
    padding-top: 96px;
    padding-bottom: 0;
  }

  .gallery__title {
    font-size: 32px;
    line-height: 40px;
    color: #09222E;
  }

  .gallery__slide-img {
    height: 300px;
  }

  .gallery__slide-text {
    margin-top: 16px;
  }
}
.current-routes {
  padding-top: 100px;
  padding-bottom: 60px;
}

.current-routes__subtitle {
  color: #E01B1B;
}

.current-routes__tabs {
  margin-top: 8px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 32px;
}

.current-routes__tab-item button {
  font-size: 32px;
  line-height: 40px;
  color: rgba(9, 34, 46, 0.28);
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  white-space: nowrap;
}
.current-routes__tab-item.active-tab button {
  color: #09222E;
}

.current-routes__tab-content {
  position: relative;
  margin-top: 24px;
  overflow: hidden;
  min-height: 796px;
}

.current-routes__item {
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  position: absolute;
  top: 0;
  left: 0;
}
.current-routes__item.active-route {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  position: relative;
  z-index: 1;
}

.current-routes__option-list {
  height: 56px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 24px;
}

.current-routes__option {
  height: 100%;
  padding: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  border-radius: 9px;
  border: 1px solid rgba(9, 34, 46, 0.06);
}

.current-routes__option-value {
  font-size: 24px;
  line-height: 32px;
  color: #09222E;
}

.current-routes__option-divider {
  width: 1px;
  height: 100%;
  background-color: rgba(9, 34, 46, 0.06);
}

.current-routes__option-text {
  font-size: 14px;
  line-height: 16px;
  color: rgba(9, 34, 46, 0.4);
}
.current-routes__option-text.first {
  width: 116px;
}
.current-routes__option-text.second {
  width: 187px;
}
.current-routes__option-text.third {
  width: 154px;
}

.current-routes__swiper {
  position: relative;
  margin-top: 24px;
  width: 100%;
  height: 716px;
}

.current-routes__swiper-wrapper {
  width: 100%;
  height: 648px;
}

.current-slide {
  box-sizing: border-box;
  height: 100%;
  position: relative;
  padding: 48px 48px 120px 48px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
}

.current-slide__img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
  z-index: -1;
}

.current-slide__text {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  flex-direction: column;
  gap: 8px;
}

.current-slide__title {
  font-size: 24px;
  line-height: 32px;
  color: #FFF;
}

.current-slide__subtitle {
  color: #FFF;
}

.current-slide__action-list {
  color: #FFF;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  flex-direction: column;
}

.current-slide__action {
  margin-left: 16px;
  list-style-type: disc;
}

.swiper-button-prev, .swiper-button-next {
  position: relative;
  top: unset;
  left: unset;
  right: unset;
  height: 44px;
  border-radius: 9px;
  background: rgba(9, 34, 46, 0.06);
  padding: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: auto;
  color: #09222E;
  user-select: none;
}
.swiper-button-prev.swiper-button-disabled span, .swiper-button-next.swiper-button-disabled span {
  display: none;
}
.swiper-button-prev:after, .swiper-button-next:after {
  content: unset;
}

.swiper-controls {
  position: absolute;
  left: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.custom-slider {
  width: calc(100% - 96px);
  appearance: none;
  background: #FFF;
  position: absolute;
  height: 4px;
  bottom: 136px;
  left: 48px;
  z-index: 10;
}

.noUi-pips .noUi-marker {
  display: none;
}

.noUi-pips .noUi-value {
  width: 16px;
  height: 16px;
  background-color: #FFF;
  border-radius: 50%;
  transform: translateX(-50%);
  display: inline-block;
  text-indent: -9999px;
  position: absolute;
  bottom: -2px;
  transition: all 0.3s ease-in-out;
  z-index: 10;
}
.noUi-pips .noUi-value:before {
  content: "";
  position: absolute;
  left: -4px;
  top: -4px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: white;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.noUi-pips .noUi-value:hover:before {
  opacity: 0.4;
}

/* Стили noUiSlider */
.noUi-target {
  background: #FFF;
  border-radius: 6px;
  height: 4px;
}
.noUi-target .noUi-base .noUi-connects .noUi-connect {
  background: #FFF;
}
.noUi-target .noUi-base .noUi-origin .noUi-handle {
  width: 40px;
  height: 40px;
  top: -19px;
  background: #FFF;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.1));
  border-radius: 50%;
  z-index: 11;
}
.noUi-target .noUi-base .noUi-origin .noUi-handle::before {
  left: 17px;
  top: 13px;
}
.noUi-target .noUi-base .noUi-origin .noUi-handle::after {
  left: 19px;
  top: 13px;
}
.noUi-target .noUi-base .noUi-origin .noUi-handle-lower:after {
  content: "";
  position: absolute;
  width: 64px;
  height: 64px;
  background: #FFF;
  border-radius: 50%;
  opacity: 0.2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.noUi-target .noUi-pips .noUi-value {
  background: #FFF;
}
.noUi-target .noUi-pips-horizontal {
  height: 16px;
  top: -9px;
  padding: 0;
}

@media (max-width: 1030px) {
  .current-routes__tabs {
    gap: 16px;
  }

  .current-routes__tab-item button {
    font-size: 26px;
    line-height: 32px;
    color: rgba(9, 34, 46, 0.28);
  }

  .current-routes__option-list {
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 8px;
  }

  .current-routes__option {
    width: 100%;
    height: 58px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }

  .current-routes__option-value {
    width: 88px;
  }
}
@media (max-width: 768px) {
  .current-routes__swiper {
    height: auto;
    padding-bottom: 68px;
  }

  .current-routes__swiper-wrapper {
    height: auto;
  }

  .current-slide {
    padding: 0;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
  }

  .current-slide__img {
    position: relative;
    height: 400px;
  }

  .current-slide__title, .current-slide__subtitle, .current-slide__action-list {
    color: #09222E;
  }

  .custom-slider {
    width: calc(100% - 84px);
    bottom: unset;
    top: 358px;
    left: 42px;
  }

  .noUi-target .noUi-base .noUi-origin .noUi-handle {
    width: 32px;
    height: 32px;
    top: -15px;
    border-radius: 50%;
  }
  .noUi-target .noUi-base .noUi-origin .noUi-handle::before {
    left: 14px;
    top: 9px;
    width: 2px;
  }
  .noUi-target .noUi-base .noUi-origin .noUi-handle::after {
    left: 15px;
    top: 14px;
  }
  .noUi-target .noUi-base .noUi-origin .noUi-handle-lower:after {
    width: 56px;
    height: 56px;
  }
}
@media (max-width: 650px) {
  .current-routes__tabs {
    overflow-x: auto;
  }
}
@media (max-width: 524px) {
  .current-slide__img {
    height: 500px;
  }

  .custom-slider {
    width: calc(100% - 72px);
    top: 458px;
    left: 36px;
  }
}
.included-tour {
  background-color: #FCFCFC;
  padding-top: 60px;
}

.included-tour__subtitle {
  color: #E01B1B;
}

.included-tour__title {
  margin-top: 8px;
  font-size: 32px;
  line-height: 40px;
  color: #09222E;
}

.included-tour__items {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: 300px;
  grid-template-areas: "item1 item1 item2 item3 item4 item5";
  column-gap: 16px;
}

.included-item-1 {
  grid-area: item1;
}

.included-item-2 {
  grid-area: item2;
}

.included-item-3 {
  grid-area: item3;
}

.included-item-4 {
  grid-area: item4;
}

.included-item-5 {
  grid-area: item5;
}

.included-item {
  position: relative;
  width: 100%;
  padding: 20px;
  border-radius: 12px;
  background: #FFF;
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  flex-direction: column;
}
.included-item--first .included-item__description {
  width: 40%;
}
.included-item--first .included-item__img {
  height: 100%;
}

.included-item__img {
  position: absolute;
  width: 100%;
  height: 208px;
  top: 0;
  left: 0;
  object-fit: contain;
  z-index: 1;
}

.included-item__title {
  position: relative;
  font-size: 24px;
  line-height: 32px;
  color: #09222E;
  z-index: 2;
  margin-bottom: 8px;
}

.included-item__description {
  position: relative;
  font-size: 14px;
  line-height: 16px;
  color: #09222E;
  z-index: 2;
  background-color: #FFF;
}

.included-tour__transition {
  position: relative;
  min-height: 355px;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  padding-top: 32px;
  padding-bottom: 48px;
}

.included-tour__description {
  width: 50%;
  padding: 0 32px;
  font-size: 18px;
}

.included-tour__transition-line {
  position: absolute;
  width: 6px;
  height: 100%;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  z-index: 110;
}

.included-tour__app-button {
  bottom: -103px;
}

@media (max-width: 1200px) {
  .included-tour__items {
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 324px 324px;
    grid-template-areas: "item1 item1 item2" "item3 item4 item5";
    column-gap: 8px;
    row-gap: 8px;
  }

  .included-tour__transition {
    position: relative;
    min-height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding-top: 24px;
    padding-bottom: 48px;
  }

  .included-tour__description {
    width: 100%;
    padding: 0;
    font-size: 18px;
  }

  .included-tour__transition-line {
    position: relative;
    width: 6px;
    height: 160px;
    left: unset;
    top: unset;
    transform: unset;
  }
}
@media (max-width: 570px) {
  .included-tour {
    padding-top: 48px;
  }

  .included-tour__title {
    font-size: 26px;
    line-height: 32px;
    color: #09222E;
  }

  .included-tour__items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 240px 242px 242px;
    grid-template-areas: "item1 item1" "item2 item3" "item4 item5";
    column-gap: 8px;
    row-gap: 8px;
  }

  .included-item__img {
    position: absolute;
    height: 165px;
  }

  .included-item__description {
    font-size: 11px;
    line-height: 13px;
    color: #09222E;
    z-index: 2;
    background-color: #FFF;
  }

  .included-tour__transition {
    padding-bottom: 115px;
  }

  .included-tour__app-button {
    bottom: -40px;
  }
}
.video {
  padding-bottom: 20px;
}

.video__block {
  position: relative;
  width: 100%;
  aspect-ratio: 1440/800;
  display: block;
  cursor: url("../assets/icon-cursor-play.png") 16 16, auto;
}
.video__block.playing {
  cursor: url("../assets/icon-cursor-stop.png") 16 16, auto;
}

.custom-player {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .video {
    padding-bottom: 0;
  }

  .video__block {
    aspect-ratio: 10/7;
  }
}
.step {
  padding-top: 100px;
  padding-bottom: 20px;
}

.step__inner {
  position: relative;
  padding-top: 32px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 16px;
  background-color: transparent;
}

.step__line-desktop {
  position: absolute;
  width: 1136px;
  height: 158px;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.step__line-tablet {
  display: none;
}

.step__line-mobile {
  display: none;
}

.step__item {
  width: 205px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  gap: 16px;
  z-index: 2;
}

.step__item-img {
  width: 153px;
  height: 153px;
  object-fit: cover;
}

.step_item-text {
  text-align: center;
}

@media (max-width: 1200px) {
  .step__inner {
    width: 647px;
    margin-right: auto;
    margin-left: auto;
    padding-top: 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 16px;
  }

  .step__line-desktop {
    display: none;
  }

  .step__line-tablet {
    display: inline;
    position: absolute;
    width: 665px;
    height: 377px;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
  }
}
@media (max-width: 680px) {
  .step {
    padding-top: 54px;
    padding-bottom: 0;
  }

  .step__inner {
    width: auto;
    margin-right: auto;
    margin-left: auto;
    padding-top: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    flex-direction: column;
    gap: 0;
  }

  .step__line-tablet {
    display: none;
  }

  .step__line-mobile {
    display: inline;
    position: absolute;
    width: 254px;
    height: 903px;
    object-fit: cover;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
  }

  .step__item {
    gap: 0;
  }
}
.popular-tours {
  padding-top: 100px;
  padding-bottom: 60px;
}

.popular-tours__title {
  font-size: 32px;
  line-height: 40px;
  color: #09222E;
  max-width: 700px;
}

.popular-tours__swiper {
  position: relative;
  margin-top: 32px;
  height: 556px;
}

.popular-tours__swiper-wrapper {
  height: auto;
}

.tour-card {
  width: 427px;
  height: auto;
}
.tour-card .tour-card__img-block {
  width: 100%;
  height: 380px;
  overflow: hidden;
}
.tour-card .tour-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
}
.tour-card .tour-card__title {
  margin-top: 4px;
  font-size: 32px;
  line-height: 40px;
  color: #09222E;
}
.tour-card .tour-card__description {
  margin-top: 4px;
  font-size: 12px;
  line-height: 16px;
  color: #09222E;
}
.tour-card .tour-card__data {
  margin-top: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}
.tour-card .tour-card__price {
  font-size: 26px;
  line-height: 32px;
  color: #09222E;
}
.tour-card .tour-card__divider {
  margin: 4px 0;
  width: 1px;
  height: 100%;
  background-color: rgba(9, 34, 46, 0.06);
}
.tour-card .tour-card__data-right {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
}
.tour-card .tour-card__data-time {
  font-size: 12px;
  line-height: 16px;
  color: #E01B1B;
}
.tour-card .tour-card__data-format {
  font-size: 12px;
  line-height: 16px;
  color: rgba(9, 34, 46, 0.4);
}

@media (max-width: 768px) {
  .popular-tours__title {
    font-size: 26px;
    line-height: 32px;
    color: #09222E;
    max-width: 100%;
  }

  .popular-tours__swiper {
    height: 581px;
  }

  .tour-card {
    width: 464px;
  }
  .tour-card .tour-card__img-block {
    height: 413px;
  }
  .tour-card .tour-card__title {
    font-size: 26px;
    line-height: 32px;
    color: #09222E;
  }
  .tour-card .tour-card__price {
    font-size: 24px;
  }
}
@media (max-width: 496px) {
  .popular-tours {
    padding-top: 57px;
    padding-bottom: 45px;
  }

  .popular-tours__swiper {
    margin-top: 24px;
    height: 521px;
  }

  .tour-card {
    width: 343px;
  }
  .tour-card .tour-card__img-block {
    height: 305px;
  }
  .tour-card .tour-card__title {
    font-size: 32px;
    line-height: 40px;
    color: #09222E;
    min-height: 80px;
  }
  .tour-card .tour-card__price {
    font-size: 26px;
  }
}
.garland {
  padding-top: 60px;
  padding-bottom: 60px;
  position: relative;
  height: 602px;
}

.garland__wrapper {
  position: absolute;
  width: 1584px;
  height: 100%;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.garland__item {
  position: relative;
  width: 371px;
  height: 400px;
  border-radius: 12px;
  border: 12px solid #FFF;
  background: #FFF;
  box-shadow: 0 15px 40px 0 rgba(0, 0, 0, 0.15);
}
.garland__item:nth-child(odd) {
  transform: rotate(-15deg);
}
.garland__item:nth-child(even) {
  transform: rotate(15deg);
}

.garland__item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.garland__item-title {
  position: absolute;
  font-family: "Caveat", cursive;
  font-size: 32px;
  line-height: 32px;
  color: #FFF;
  left: 32px;
  bottom: 32px;
}

@media (max-width: 1500px) {
  .garland__wrapper {
    width: 110%;
  }
}
@media (max-width: 1024px) {
  .garland {
    padding-top: 30px;
    height: 394px;
  }

  .garland__wrapper {
    width: 100%;
  }

  .garland__item {
    width: 226px;
    height: 244px;
    border: 8px solid #FFF;
  }
  .garland__item:nth-child(odd) {
    transform: rotate(-15deg);
  }
  .garland__item:nth-child(even) {
    transform: rotate(15deg);
  }

  .garland__item-title {
    font-size: 24px;
    line-height: 24px;
    color: #FFF;
    left: 20px;
    bottom: 20px;
  }
}
@media (max-width: 768px) {
  .garland__wrapper {
    width: 110%;
  }
}
@media (max-width: 666px) {
  .garland__wrapper {
    width: 100%;
    justify-content: center;
  }

  .garland__item {
    width: 248px;
    height: 268px;
    border: 8px solid #FFF;
  }
  .garland__item--tablet {
    display: none;
  }
}
@media (max-width: 375px) {
  .garland {
    padding-top: 45px;
    padding-bottom: 32px;
  }

  .garland__wrapper {
    width: 120%;
    justify-content: space-between;
  }
}
.footer__main {
  border-block: 1px solid rgba(9, 34, 46, 0.28);
  padding-top: 120px;
  padding-bottom: 120px;
}

.footer__subtitle {
  color: #E01B1B;
}

.footer__title {
  margin-top: 8px;
  font-size: 32px;
  line-height: 40px;
  color: #09222E;
}

.footer__info-list {
  margin-top: 32px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 32px;
}

.footer__info {
  width: calc(25% - 24px);
}
.footer__info .footer__info-name {
  color: rgba(9, 34, 46, 0.28);
}
.footer__info .footer__info-first-value {
  display: block;
  margin-top: 8px;
  font-size: 24px;
  line-height: 32px;
  color: #09222E;
  transition: all 0.3s ease-in-out;
}
.footer__info .footer__info-first-value:hover {
  opacity: 0.8;
}
.footer__info .footer__info-second-value {
  display: block;
  transition: all 0.3s ease-in-out;
}
.footer__info .footer__info-second-value:hover {
  opacity: 0.8;
}
.footer__info .footer__info-social-block {
  margin-top: 16px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
}
.footer__info .footer__info-social-link {
  width: 44px;
  height: 44px;
  border-radius: 9px;
  background: rgba(9, 34, 46, 0.06);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.footer__info .footer__info-social-link:hover {
  -webkit-box-shadow: 5px 5px 5px -5px rgba(34, 60, 80, 0.6);
  -moz-box-shadow: 5px 5px 5px -5px rgba(34, 60, 80, 0.6);
  box-shadow: 5px 5px 5px -5px rgba(34, 60, 80, 0.6);
}
.footer__info .footer__info-social-link img {
  width: 20px;
  height: 20px;
  object-fit: cover;
}

.footer__logo-block {
  padding-top: 40px;
  padding-bottom: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__logo {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.footer__logo-title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
}

.footer__logo-text {
  font-family: "Playwrite DK Loopet", sans-serif;
  leading-trim: both;
  text-edge: cap;
  font-size: 28px;
  line-height: 30px;
  color: #09222E;
}
.footer__logo-text--red {
  color: #E01B1B;
  font-weight: 600;
}

@media (max-width: 1024px) {
  .footer__main {
    padding-top: 96px;
    padding-bottom: 96px;
  }

  .footer__info-list {
    flex-wrap: wrap;
  }

  .footer__info {
    width: calc(50% - 16px);
  }
}
@media (max-width: 1024px) {
  .footer__info {
    width: 100%;
  }
}
.not_found {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  background-image: url("../assets/background404.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.not_found__404-img {
  position: absolute;
  width: calc(100% - 240px);
  height: calc(100vh - 310px);
  object-fit: contain;
  left: 102px;
  top: 111px;
  z-index: 1;
}

.not_found__horses-img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  object-fit: cover;
  z-index: 1;
}

.not_found__content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 64px;
}

.not_found__title {
  text-align: center;
  font-size: 32px;
  line-height: 40px;
  color: #FFF;
}

.not_found__description {
  margin-top: 8px;
  text-align: center;
  font-size: 20px;
  line-height: 26px;
  color: #FFF;
}

.not_found__button-block {
  position: relative;
  margin-top: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.not_found__button-copy {
  background-color: #FFF;
}

.copy-tooltip {
  padding: 8px;
  background-color: #FFF;
  border-radius: 12px 12px 0 12px;
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-100%);
}
.copy-tooltip.show {
  opacity: 1;
}
.copy-tooltip.hide {
  opacity: 0;
}

@media (max-width: 768px) {
  .not_found {
    background-position: 60% 50%;
  }

  .not_found__404-img {
    width: calc(100% - 64px);
    height: 100%;
    left: 32px;
    top: 0;
  }

  .not_found__horses-img {
    left: -200px;
    width: calc(100% + 200px);
  }
}
@media (max-width: 450px) {
  .not_found {
    background-position: 70% 50%;
  }

  .not_found__404-img {
    width: calc(100% - 16px);
    height: 100%;
    left: 8px;
    top: 0;
  }

  .not_found__horses-img {
    left: -100px;
    width: calc(100% + 100px);
  }

  .not_found__title {
    text-align: center;
    font-size: 26px;
    line-height: 32px;
    color: #FFF;
  }
}

/*# sourceMappingURL=main.css.map */
