@charset "UTF-8";
/**
  Нормализация блочной модели
 */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/**
  Убираем внутренние отступы слева тегам списков,
  у которых есть атрибут class
 */
:where(ul, ol):where([class]) {
  padding-left: 0;
}

/**
  Убираем внешние отступы body и двум другим тегам,
  у которых есть атрибут class
 */
body,
:where(blockquote, figure):where([class]) {
  margin: 0;
}

/**
  Убираем внешние отступы вертикали нужным тегам,
  у которых есть атрибут class
 */
:where(h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
dl):where([class]) {
  margin-block: 0;
}

:where(dd[class]) {
  margin-left: 0;
}

:where(fieldset[class]) {
  margin-left: 0;
  padding: 0;
  border: none;
}

/**
  Убираем стандартный маркер маркированному списку,
  у которого есть атрибут class
 */
:where(ul[class]) {
  list-style: none;
}

/**
  Обнуляем вертикальные внешние отступы параграфа,
  объявляем локальную переменную для внешнего отступа вниз,
  чтобы избежать взаимодействие с более сложным селектором
 */
p {
  --paragraphMarginBottom: 24px;
  margin-block: 0;
}

/**
  Внешний отступ вниз для параграфа без атрибута class,
  который расположен не последним среди своих соседних элементов
 */
p:where(:not([class]):not(:last-child)) {
  margin-bottom: var(--paragraphMarginBottom);
}

/**
  Упрощаем работу с изображениями
 */
img {
  display: block;
  max-width: 100%;
}

/**
  Наследуем свойства шрифт для полей ввода
 */
input,
textarea,
select,
button {
  font: inherit;
}

html {
  /**
    Пригодится в большинстве ситуаций
    (когда, например, нужно будет "прижать" футер к низу сайта)
   */
  height: 100%;
  /**
    Плавный скролл
   */
  scroll-behavior: smooth;
  font-size: 100%;
  margin: 0;
}

body {
  /**
    Пригодится в большинстве ситуаций
    (когда, например, нужно будет "прижать" футер к низу сайта)
   */
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  margin: 0;
  /**
    Унифицированный интерлиньяж
   */
  font-family: "Commissioner";
  line-height: 1.5;
  font-size: 1rem;
  font-weight: 500;
  color: #2A2A2A;
  background-color: #f3eee9;
}

a {
  text-decoration: none;
}

/**
  Приводим к единому цвету svg-элементы
 */
svg *[fill] {
  fill: currentColor;
}

svg *[stroke] {
  stroke: currentColor;
}

/**
  Чиним баг задержки смены цвета при взаимодействии с svg-элементами
 */
svg * {
  transition-property: fill, stroke;
}

/**
  Удаляем все анимации и переходы для людей,
  которые предпочитают их не использовать
 */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.container {
  width: 100%;
  max-width: 1320px;
  padding: 0 30px;
  margin: 0 auto;
}

@font-face {
  font-family: "Commissioner";
  src: url("./fonts/Commissioner-ExtraBold.woff2") format("woff2");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Commissioner";
  src: url("./fonts/Commissioner-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Commissioner";
  src: url("./fonts/Commissioner-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Commissioner";
  src: url("./fonts/Commissioner-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
main {
  flex: 1 1 auto;
}

.text-center {
  text-align: center;
}

.mt-1 {
  margin-top: 1rem;
}

.mt-2 {
  margin-top: 2rem;
}

.mt-3 {
  margin-top: 3rem;
}

.mt-5 {
  margin-top: 5rem;
}

.pb-5 {
  padding-bottom: 80px;
}

.py-2 {
  padding-bottom: 2rem;
}

.pt-3 {
  padding-top: 3rem;
}

.pb-4 {
  padding-bottom: 4rem;
}

.pbl-5-4 {
  padding-block: 5rem 4rem;
}

.mb-5 {
  margin-bottom: 5rem;
}

.cap32 {
  font-size: 32px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 20px;
}

/* ------------- header --------------*/
.wh-bg-p {
  padding-top: 2rem;
  border-radius: 16px;
  background: #ffffff;
}

.wh-bg-pb {
  padding-block: 2rem;
  border-radius: 16px;
  background: #ffffff;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
  white-space: nowrap;
}
.button_main {
  background-color: rgba(255, 255, 255, 0);
  color: #ffffff;
  box-shadow: 0 10px 30px rgba(10, 61, 76, 0.45);
  border: 2px solid #ffffff;
}
@media (max-width: 768px) {
  .button_main {
    background-color: #222222;
    color: #ffffff;
    border: 2px solid #222222;
  }
  .button_main:hover {
    border: 2px solid #222222;
  }
}
.button_main:hover {
  background-color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 14px 34px rgba(10, 61, 76, 0.55);
  border: 2px solid #ffffff;
  color: #000000;
}
.button_main:active {
  transform: translateY(0);
  box-shadow: 0 8px 22px rgba(10, 61, 76, 0.4);
}
.button_ghost {
  background-color: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
}
.button_ghost:hover {
  background-color: rgba(255, 255, 255, 0.28);
}

.section {
  padding-block: 80px;
}
.section__inner {
  width: 100%;
}
.section__title {
  margin: 0 0 20px;
  font-size: 36px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.section__title_center {
  text-align: center;
}
.section__title_light {
  color: #ffffff;
}
.section__subt {
  margin: 0 0 24px;
}
.section__subtitle {
  margin: 0 0 24px;
  line-height: 1.6;
  color: #E2CCBF;
  font-size: 32px;
  font-weight: 500;
}
@media (max-width: 768px) {
  .section__subtitle {
    font-size: 12px;
  }
}
.section__subtitle_center {
  margin-inline: auto;
  text-align: center;
}

.header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: linear-gradient(to bottom, rgba(19, 24, 32, 0.86), rgba(19, 24, 32, 0.4) 55%, transparent);
  color: #ffffff;
}
.header__nav {
  position: relative;
  z-index: 2;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 18px;
}
.header__logo {
  z-index: 1;
}
.header__logo-text {
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.header__cta {
  margin-left: 24px;
}
@media (max-width: 768px) {
  .header__cta {
    display: none;
  }
}
.header__burger {
  display: none;
  position: relative;
  z-index: 3;
  width: 40px;
  height: 40px;
  margin-left: 10px;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .header__burger {
    display: inline-flex;
  }
}
.header__burger-lines {
  width: 22px;
  height: 14px;
  position: relative;
}
.header__burger-line {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background-color: #000000;
  transition: transform 0.2s ease, opacity 0.2s ease, top 0.2s ease, bottom 0.2s ease;
}
.header__burger-line:nth-child(1) {
  top: 0;
}
.header__burger-line:nth-child(2) {
  top: 6px;
}
.header__burger-line:nth-child(3) {
  bottom: 0;
}
.header.header--menu-open::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1;
  background: #EDE3DD;
}
.header.header--menu-open .header__nav {
  position: fixed;
  inset: 91px 0px auto;
  height: 100vh;
  background: #EDE3DD;
  padding: 10px 0px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}
.header.header--menu-open .nav__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0px;
}
.header.header--menu-open .nav__item {
  border-bottom: 1px solid #DFDFDF;
  width: 100%;
  text-align: center;
}
.header.header--menu-open .nav__link {
  color: #000000;
  padding-block: 14px;
  line-height: 291%;
}
.header.header--menu-open .header__burger-line:nth-child(1) {
  top: 6px;
  transform: rotate(45deg);
}
.header.header--menu-open .header__burger-line:nth-child(2) {
  opacity: 0;
}
.header.header--menu-open .header__burger-line:nth-child(3) {
  bottom: 6px;
  transform: rotate(-45deg);
}

.header--menu-open .pc_none {
  display: block;
  z-index: 1;
}

@media (min-width: 768px) {
  .pc_none {
    display: none;
  }
}
@media (max-width: 500px) {
  .header--menu-open .pc_none {
    display: none;
  }
}
.nav__list {
  display: flex;
  align-items: center;
  gap: 26px;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (max-width: 768px) {
  .nav__list {
    display: none;
  }
}
.nav__link {
  font-family: "Commissioner";
  font-weight: 600;
  text-transform: uppercase;
  font-size: 16px;
  line-height: 20px;
  color: #FFFFFF;
  position: relative;
  padding-block: 4px;
  transition: color 0.2s ease;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background-color: #f6b15a;
  transition: width 0.2s ease;
}
.nav__link:hover {
  color: #ffffff;
}
.nav__link:hover::after {
  width: 18px;
}

.hero {
  position: relative;
  min-height: 100vh;
  padding-block: 120px 80px;
  display: flex;
  align-items: center;
  color: #ffffff;
  overflow: hidden;
}
.hero__background {
  position: absolute;
  inset: 0;
  background-image: url(../images/bg-header.webp);
  background-size: cover;
  background-position: bottom;
  transform: scale(1.02);
}
.hero__overlay {
  position: absolute;
  inset: 0;
}
.hero__content {
  position: relative;
  z-index: 1;
}
.hero__title {
  margin: 0 0 16px;
  font-size: 64px;
  font-weight: 800;
  line-height: 1.15;
}
.hero__subtitle {
  margin: 0 0 26px;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.7;
  max-width: 540px;
  color: rgba(255, 255, 255, 0.78);
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
@media (max-width: 768px) {
  .hero {
    padding-top: 100px;
  }
  .hero__title {
    font-size: 34px;
  }
}

.tour {
  background-color: #f3eee9;
}
.tour__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}
@media (max-width: 900px) {
  .tour__grid {
    grid-template-columns: minmax(0, 1fr);
  }
}
.tour__media {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.02);
}
.tour__image {
  aspect-ratio: 4/3;
  background-image: url("../images/img1.webp");
  background-size: cover;
  background-position: center;
}
.tour__content {
  padding-right: 10px;
}

.section__сap {
  font-weight: 600;
  font-size: 20px;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .tour__grid {
    text-align: center;
  }
  .section__subtitle {
    margin: 0 auto;
    margin-bottom: 24px;
  }
  .tour__content {
    order: -1;
  }
}
.author__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}
@media (max-width: 900px) {
  .author__grid {
    grid-template-columns: minmax(0, 1fr);
  }
}
.author__content {
  padding-right: 10px;
}
@media (max-width: 900px) {
  .author__content {
    order: -1;
    padding-right: 0;
    text-align: center;
  }
}
.author__text {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 24px;
}
.author__signature {
  background-color: #ffffff;
  padding: 24px;
  border-radius: 14px;
  text-align: left;
}
.author__signature p {
  margin: 0;
}
.author__signature p:first-child {
  margin-bottom: 8px;
  font-size: 18px;
}
.author__signature p:last-child {
  color: #777777;
  font-size: 14px;
}
.author__media {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.02);
}
.author__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 3/4;
}

.btn_p {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
  white-space: nowrap;
  border: 1px solid rgb(149, 149, 149);
  color: #222222;
}
@media (max-width: 768px) {
  .btn_p {
    background-color: #222222;
    color: #ffffff;
    border: 2px solid #222222;
  }
  .btn_p:hover {
    border: 2px solid #222222;
  }
}
.btn_p:hover {
  background-color: #000000;
  transform: translateY(-1px);
  box-shadow: 0 14px 34px rgba(10, 61, 76, 0.55);
  color: #ffffff;
  border: 1px solid rgb(0, 0, 0);
}

.btn_p-w {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
  white-space: nowrap;
  border: 1px solid rgb(149, 149, 149);
  color: #ffffff;
}
.btn_p-w:hover {
  background-color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 14px 34px rgba(10, 61, 76, 0.55);
  color: #000000;
  border: 1px solid rgb(255, 255, 255);
}

.btn_p-s {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
  white-space: nowrap;
  border: 1px solid #F5F0ED;
  background-color: #F5F0ED;
  color: #222222;
}
.btn_p-s:hover {
  background-color: #000000;
  transform: translateY(-1px);
  box-shadow: 0 14px 34px rgba(10, 61, 76, 0.55);
  color: #ffffff;
  border: 1px solid #000000;
}

.btn-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
  white-space: nowrap;
  border: 1px solid #222222;
  background-color: #222222;
  color: #ffffff;
}
.btn-dark:hover {
  background-color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 14px 34px rgba(10, 61, 76, 0.55);
  color: #222222;
  border: 1px solid #222222;
}

.reasons .section__subtitle {
  max-width: 600px;
}
.reasons__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}
.reasons__item {
  background: #ffffff;
  padding: 30px;
  padding-top: 36px;
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.02);
  border: 1px solid #ded4c9;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  position: relative;
  overflow: hidden;
}
.reasons__item p {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  color: #222222;
}
.reasons__item:hover .reasons__number {
  transform: scale(1.1) translateX(-5px);
}
.reasons__number {
  font-size: 70px;
  font-weight: 800;
  color: rgba(246, 177, 90, 0.15);
  line-height: 1;
  position: absolute;
  top: -10px;
  right: 5px;
  transition: transform 0.3s ease;
  z-index: 0;
}
.reasons p {
  position: relative;
  z-index: 1;
}

.offers__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 66px;
}
@media (max-width: 900px) {
  .offers__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .offers__grid {
    grid-template-columns: minmax(0, 1fr);
  }
}
.offers__card {
  padding: 26px;
  border-radius: 20px;
  background-color: #ffffff;
  border: 1px solid #ded4c9;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.02);
  text-align: center;
  display: flex;
  flex-direction: column;
}
.offers__card-title {
  margin: 0 0 8px;
  font-size: 32px;
  font-weight: 500;
  text-transform: uppercase;
}
.offers__line {
  display: flex;
  justify-content: center;
  margin-bottom: 39px;
}
.offers__text {
  flex: 1;
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 500;
}
.offers .yellow {
  width: 37px;
  height: 5px;
  background-color: #FFD257;
  border-bottom-left-radius: 12px;
  border-top-left-radius: 12px;
}
.offers .blue {
  width: 37px;
  height: 5px;
  background-color: #3BA7FF;
  border-bottom-right-radius: 12px;
  border-top-right-radius: 12px;
}
.offers .blue-2 {
  width: 77px;
  height: 5px;
  background-color: #3BA7FF;
  border-radius: 12px;
}
.offers .yellow-2 {
  width: 77px;
  height: 5px;
  background-color: #FFD257;
  border-radius: 12px;
}
.offers__footer {
  margin-top: auto;
}

.section__title {
  color: #000000;
}

.booking-calendar {
  padding-block: 80px;
}
.booking-calendar__head,
.booking-calendar .booking__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 30px;
}
.booking-calendar__body {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-bottom: 180px;
}
.booking-calendar__card {
  display: grid;
  grid-template-columns: 181px 1fr;
  border-radius: 16px;
  background-color: #ffffff;
  overflow: hidden;
  padding: 20px;
  font-size: 36px;
}
.booking-calendar__month {
  display: flex;
  align-items: center;
  padding: 18px 16px;
  color: #222222;
  border-right: 4px solid #E5E5E5;
  background-color: #ffffff;
}
.booking-calendar__month-name {
  font-weight: 500;
}
.booking-calendar__rows {
  display: grid;
  grid-auto-rows: minmax(52px, auto);
}
.booking-calendar__row {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  padding: 14px 18px;
  border-top: 4px solid #E5E5E5;
}
.booking-calendar__row:first-child {
  border-top: none;
}
.booking-calendar__dates {
  font-weight: 500;
  letter-spacing: 0.01em;
  color: #222222;
}
.booking-calendar__info {
  font-weight: 500;
  color: #222222;
}

@media (max-width: 767px) {
  .section__title {
    font-size: 19px;
  }
  .booking-calendar__card {
    font-size: 19px;
  }
  .booking-calendar {
    padding-block: 60px;
  }
  .booking-calendar__head,
  .booking-calendar .booking__head {
    align-items: center;
  }
  .booking-calendar__card {
    grid-template-columns: 120px 1fr;
  }
}
@media (max-width: 576px) {
  .section__title {
    font-size: 14px;
  }
  .booking-calendar__card {
    font-size: 9px;
  }
  .booking-calendar__head,
  .booking-calendar .booking__head {
    flex-direction: column;
    align-items: flex-start;
  }
  .booking-calendar__card {
    grid-template-columns: 1fr;
  }
  .booking-calendar__month {
    border-right: none;
    border-bottom: 1px solid #e7dfd6;
    padding: 14px 16px;
  }
  .booking-calendar__row {
    justify-content: space-between;
  }
}
.form-z {
  margin-top: 26px;
  padding: 26px 24px 24px;
  border-radius: 16px;
  background-color: #ffffff;
  border: 1px solid #ded4c9;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.02);
}
.form-z__field br {
  display: none;
}
.form-z__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 22px;
}
@media (max-width: 720px) {
  .form-z__grid {
    grid-template-columns: minmax(0, 1fr);
  }
}
.form-z__field_full {
  grid-column: 1/-1;
}
.form-z__label {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 500;
}
.form-z__input, .form-z__textarea {
  width: 100%;
  padding: 11px 12px;
  border-radius: 10px;
  border: 1px solid #ded4c9;
  font-family: inherit;
  font-size: 14px;
  background-color: #fdf9f5;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}
.form-z__input::-moz-placeholder, .form-z__textarea::-moz-placeholder {
  color: #b6aa9c;
}
.form-z__input::placeholder, .form-z__textarea::placeholder {
  color: #b6aa9c;
}
.form-z__input:focus, .form-z__textarea:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.2);
  background-color: #ffffff;
}
.form-z__textarea {
  resize: vertical;
  min-height: 110px;
}
.form-z__footer {
  margin-top: 22px;
}
.form-z__note {
  margin: 0;
  font-size: 12px;
  color: #777777;
  margin-top: 22px;
}
.form-z__note a {
  color: #2c2c2c;
}
.form-z__note a:hover {
  color: #606060;
}

.tur {
  background-color: #222222;
  color: #ffffff;
  padding-block: 72px;
}
.tur__inner {
  text-align: center;
}
.tur__title {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 46px;
  border-radius: 999px;
  background-color: #ffffff;
  color: #222222;
  font-size: 36px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .tur__title {
    font-size: 19px;
  }
}
@media (max-width: 576px) {
  .tur__title {
    font-size: 9px;
  }
}
.tur__steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin: 0 auto 60px;
}
.tur__step {
  padding: 26px 24px 24px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  background-color: transparent;
  max-width: 31%;
  width: 100%;
}
.tur__step--compact:nth-child(-n+3) {
  min-height: 132px;
}
.tur__step--wide {
  grid-column: span 1;
  min-height: 132px;
}
.tur__step-number {
  font-size: 96px;
  font-weight: 600;
}
.tur__step-text {
  font-size: 26px;
  font-weight: 600;
  line-height: 1.5;
  opacity: 0.86;
}
.tur__wrapper {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px;
  margin: 0 auto;
}
.tur__block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 66px;
}
.tur__block img {
  max-width: 200px;
  width: 100%;
}

@media (max-width: 900px) {
  .tur {
    padding-block: 70px;
  }
  .tur__steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 640px;
  }
  .tur__wrapper {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 32px;
  }
  .tur__block {
    gap: 62px;
  }
  .tur__step-number {
    font-size: 77px;
  }
  .tur__step-text {
    font-size: 20px;
  }
}
@media (max-width: 640px) {
  .tur {
    padding-block: 60px;
  }
  .tur__title {
    width: 100%;
    max-width: 320px;
    font-size: 16px;
    padding-inline: 32px;
  }
  .tur__steps {
    grid-template-columns: minmax(0, 1fr);
  }
  .tur__block {
    gap: 29px;
  }
  .tur__step-number {
    font-size: 35px;
  }
  .tur__step-text {
    font-size: 9.5px;
  }
}
.gallery__cap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 46px;
  border-radius: 999px;
  background-color: #ffffff;
  color: #222222;
  font-size: 40px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 auto 12px;
}
@media (max-width: 767px) {
  .gallery__cap {
    font-size: 19px;
  }
}
@media (max-width: 576px) {
  .gallery__cap {
    font-size: 9px;
  }
}
.gallery__cap-mini {
  margin: 0 auto 32px;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  color: #c7b8ac;
}
@media (max-width: 768px) {
  .gallery__cap-mini {
    font-size: 10px;
  }
}
.gallery__wrapper {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1.1fr);
  gap: 16px;
  align-items: stretch;
}
.gallery__block-s {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.gallery__block-e {
  border-radius: 18px;
  overflow: hidden;
}
.gallery__block-s a:first-child {
  width: 100%;
  height: auto;
}
.gallery__block-s a:nth-child(2) {
  width: 48%;
  height: auto;
}
.gallery__block-s a:nth-child(3) {
  width: 48%;
  height: auto;
}
.gallery__block-s a, .gallery__block-e a {
  display: block;
  height: 100%;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}
.gallery__block-s img, .gallery__block-e img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
  display: block;
}
.gallery__block-s a:hover img, .gallery__block-e a:hover img {
  transform: scale(1.03);
}
.gallery__footer {
  margin-top: 30px;
  text-align: center;
}

@media (max-width: 900px) {
  .gallery__cap {
    font-size: 25;
  }
  .gallery__wrapper {
    grid-template-columns: minmax(0, 1fr);
  }
  .gallery__block-e {
    display: none;
  }
}
@media (max-width: 576px) {
  .gallery__cap {
    width: 100%;
    max-width: 320px;
    font-size: 12px;
    padding-inline: 32px;
  }
  .gallery__block-s {
    grid-template-columns: minmax(0, 1fr);
  }
}
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  align-items: stretch;
}
@media (max-width: 900px) {
  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

.gallery__grid-item {
  display: block;
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}
.gallery__grid-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
  display: block;
}
.gallery__grid-item:hover img {
  transform: scale(1.03);
}

.reviews__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 30px;
}
.reviews__head p {
  color: #E2CCBF;
  font-size: 32px;
  font-weight: 500;
}
@media (max-width: 640px) {
  .reviews__head p {
    font-size: 10px;
    text-align: center;
  }
}
.reviews__wrapper {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 66px;
}
.reviews__block {
  padding: 26px;
  border-radius: 20px;
  background-color: #ffffff;
  border: 1px solid #ded4c9;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.05);
}
.reviews__block--hidden {
  display: none;
}
.reviews__user {
  margin-bottom: 21px;
  display: flex;
  gap: 21px;
}
.reviews__user p {
  font-size: 20px;
  font-weight: bold;
}
.reviews__user p span {
  font-size: 16px;
  color: #E2CCBF;
  font-weight: 500;
}
.reviews__text {
  font-size: 18px;
  font-weight: 500;
}
.reviews__footer {
  margin-top: 46px;
  text-align: center;
}

@media (max-width: 900px) {
  .reviews__head {
    align-items: center;
    gap: 0px;
    margin-bottom: 10px;
    flex-direction: column;
  }
  .reviews__head p {
    font-size: 32px;
  }
}
@media (max-width: 640px) {
  .reviews__head p {
    font-size: 10px;
  }
  .reviews__wrapper {
    grid-template-columns: minmax(0, 1fr);
  }
}
.news__wrapper {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding-bottom: 20px;
  scroll-snap-type: x mandatory;
}
.news__wrapper::-webkit-scrollbar {
  height: 6px;
}
.news__wrapper::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.05);
  border-radius: 10px;
}
.news__wrapper::-webkit-scrollbar-thumb {
  background: #f6b15a;
  border-radius: 10px;
}
.news__block {
  flex: 0 0 calc(33.333% - 16px);
  min-width: 280px;
  scroll-snap-align: start;
  margin-top: 48px;
  border-radius: 15px;
  padding: 24px;
  color: #ffffff;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.news__block .btn_p-w {
  margin-top: auto;
}
.news__cap {
  text-transform: uppercase;
  font-size: 20px;
  margin-top: 65%;
}
.news__text {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 17px;
}

@media (max-width: 720px) {
  .news__wrapper {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.booking {
  background-color: #f3eee9;
}

.form {
  margin-top: 26px;
  padding: 26px 24px 24px;
  border-radius: 16px;
  background-color: #ffffff;
  border: 1px solid #ded4c9;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.02);
}
.form__field br {
  display: none;
}
.form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 22px;
}
.form__grid :nth-child(3) {
  grid-column: span 2;
}
@media (max-width: 720px) {
  .form__grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .form__grid :nth-child(3) {
    grid-column: span 1;
  }
}
.form__field_full {
  grid-column: 1/-1;
}
.form__label {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 500;
}
.form__input, .form__textarea {
  width: 100%;
  padding: 11px 12px;
  border-radius: 10px;
  border: 1px solid #ded4c9;
  font-family: inherit;
  font-size: 14px;
  background-color: #fdf9f5;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}
.form__input::-moz-placeholder, .form__textarea::-moz-placeholder {
  color: #b6aa9c;
}
.form__input::placeholder, .form__textarea::placeholder {
  color: #b6aa9c;
}
.form__input:focus, .form__textarea:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.2);
  background-color: #ffffff;
}
.form__textarea {
  resize: vertical;
  min-height: 110px;
}
.form__footer {
  margin-top: 22px;
}
.form__note {
  margin: 0;
  font-size: 12px;
  color: #777777;
  margin-top: 22px;
}
.form__note a {
  color: #2c2c2c;
}
.form__note a:hover {
  color: #606060;
}

.footer {
  background-color: #222222;
  color: rgba(255, 255, 255, 0.86);
  padding-block: 50px 44px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 26px;
  align-items: flex-start;
  align-items: center;
}
@media (max-width: 640px) {
  .footer__inner {
    grid-template-columns: minmax(0, 1fr);
  }
}
@media (max-width: 640px) {
  .footer__list {
    text-align: center;
  }
}
.footer__center {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 640px) {
  .footer__center {
    order: -1;
  }
}
.footer__logo {
  width: 155px;
}
.footer__map {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}
.footer__title {
  margin: 0 0 8px;
  font-size: 24px;
  font-weight: 600;
  color: #ffffff;
}
.footer__title:hover {
  color: #E2CCBF;
}
.footer__link {
  color: #ffffff;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 600;
}
.footer__link:hover {
  color: #E2CCBF;
}
.footer__rights {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.footer__rights img {
  display: inline-block;
}
.footer__polit {
  color: #7e7e7e;
}
.footer__polit:hover {
  color: #E2CCBF;
}
.footer__tel {
  color: #ffffff;
}
.footer__tel:hover {
  color: #E2CCBF;
}
.footer__tel__text {
  font-size: 11px;
}

@media (max-width: 900px) {
  footer__title {
    font-size: 23px;
  }
  footer__link {
    font-size: 19px;
  }
  footer__rights {
    font-size: 9px;
  }
}
@media (max-width: 640px) {
  footer__logo {
    width: 68px;
  }
  footer__title {
    font-size: 11px;
  }
  footer__link {
    font-size: 9px;
  }
  footer__rights {
    font-size: 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 768px) {
  .section {
    padding-block: 60px;
  }
}
/* ------------- tours page --------------*/
.breadcrumbs {
  font-size: 14px;
  font-weight: 600;
  color: #222222;
  margin-top: 2rem;
  text-transform: uppercase;
}
.breadcrumbs a {
  color: #222222;
  text-decoration: none;
}
.breadcrumbs a:hover {
  color: #f6b15a;
}
.breadcrumbs span {
  color: rgba(34, 34, 34, 0.5);
}

.tours-switcher {
  padding-top: 0;
  padding-bottom: 40px;
}
.tours-switcher__tabs {
  display: inline-flex;
  padding: 5px;
  border-radius: 99px;
  justify-content: flex-start;
  width: 100%;
  padding-top: 2rem;
}
.tours-switcher__tab {
  border: none;
  background: transparent;
  padding: 12px 30px;
  border-radius: 99px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #222222;
  border: 1px solid #222222;
}
.tours-switcher__tab.active {
  background-color: #222222;
  color: #fff;
}

.tour-plan__header {
  margin-bottom: 60px;
}
.tour-plan__title {
  font-size: 32px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.season-switcher {
  display: inline-flex;
  gap: 10px;
}
.season-switcher__tab {
  border: 1px solid #e0e0e0;
  background: #fff;
  padding: 8px 24px;
  border-radius: 99px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #999;
}
.season-switcher__tab.summer.active {
  border-color: #FFC812;
  background-color: #FFC812;
}
.season-switcher__tab.active {
  border-color: #3BA7FF;
  background-color: #3BA7FF;
  color: #fff;
}
.tour-day {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  padding-block: 60px;
  border-top: 1px solid #f0f0f0;
  align-items: flex-start;
}
.tour-day:first-child {
  border-top: none;
}
.tour-day__title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.tour-day__text {
  font-size: 16px;
  line-height: 1.6;
  color: #222222;
  text-transform: uppercase;
  max-width: 480px;
  margin: 0;
}
.tour-day__media {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.tour-day__media img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  display: block;
}
.tour-day__gallery {
  display: flex;
  gap: 10px;
}
.tour-day__gallery img {
  width: calc(33.333% - 7px);
  box-shadow: none;
}

@media (max-width: 992px) {
  .tour-day {
    gap: 30px;
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .tour-day {
    grid-template-columns: 1fr;
    padding-block: 40px;
    gap: 30px;
  }
  .tour-day__content {
    order: 1;
  }
  .tour-day__media {
    order: 0;
  }
}
.single-news__content {
  max-width: 800px;
  margin: 0 auto;
}
.single-news__header {
  margin-bottom: 40px;
}
.single-news__thumbnail {
  margin-bottom: 30px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}
.single-news__thumbnail img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  -o-object-fit: cover;
     object-fit: cover;
}
.single-news__text {
  font-size: 18px;
  line-height: 1.8;
  color: #222222;
}
.single-news__text p {
  margin-bottom: 24px;
}
.single-news__text img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin-bottom: 24px;
}

.info__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
}
@media (max-width: 900px) {
  .info__grid {
    grid-template-columns: minmax(0, 1fr);
  }
}
.info__link {
  color: #777777;
}
.info__link:hover {
  color: #222222;
}
.info__block {
  background: #ffffff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.02);
  border: 1px solid #ded4c9;
}
@media (max-width: 768px) {
  .info__block {
    padding: 24px;
  }
}
.info__cap {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  margin-top: 0;
  color: #222222;
}
.info__text {
  font-size: 16px;
  line-height: 1.6;
  color: #222222;
}
.info__text p {
  margin-bottom: 8px;
}
.info__text p:last-child {
  margin-bottom: 0;
}
.info__highlight {
  font-size: 18px;
  font-weight: 700;
  color: #E2CCBF;
  background: rgba(246, 177, 90, 0.1);
  padding: 12px 20px;
  border-radius: 14px;
  display: inline-block;
}
.info__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.info__list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1.5;
  color: #222222;
}
.info__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #E2CCBF;
}

.text-phone {
  font-size: 10px;
  display: inline-block;
  line-height: 93%;
  color: #5e5e5e;
}

.route-page__lead {
  margin: 0;
  font-size: 20px;
  color: #5e5e5e;
}

.route-page__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.route-page__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.route-page__list {
  margin: 0;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.route-page__list li {
  color: #222222;
  line-height: 1.6;
}

.route-page__notice {
  border-color: #f6b15a;
  background: rgba(246, 177, 90, 0.08);
}

@media (max-width: 900px) {
  .route-page__grid {
    grid-template-columns: minmax(0, 1fr);
  }
}
@media (max-width: 640px) {
  .route-page__lead {
    font-size: 16px;
  }
}
/*
@media (max-width: 576px) {}

@media (min-width: 576px) {}

@media (max-width: 767px) {}

@media (min-width: 767px) {}

@media (max-width: 991.98px) {}

@media (min-width: 992px) {}

@media (max-width: 992px) {}

@media (min-width: 1400px) {}
*//*# sourceMappingURL=style.css.map */