@font-face {
  font-family: 'Inter';
  font-weight: 400;
  font-display: swap;
  src: url(../fonts/Inter-Regular.woff2) format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-weight: 500;
  font-display: swap;
  src: url(../fonts/Inter-Medium.woff2) format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-weight: 600;
  font-display: swap;
  src: url(../fonts/Inter-SemiBold.woff2) format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-weight: 700;
  font-display: swap;
  src: url(../fonts/Inter-Bold.woff2) format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-weight: 800;
  font-display: swap;
  src: url(../fonts/Inter-ExtraBold.woff2) format('woff2');
}

@font-face {
  font-family: 'Coda Caption';
  font-weight: 800;
  font-display: swap;
  src: url(../fonts/CodaCaption-ExtraBold.woff2) format('woff2');
}

@font-face {
  font-family: 'Raleway';
  font-weight: 400;
  font-display: swap;
  src: url(../fonts/Raleway-Regular.woff2) format('woff2');
}

@font-face {
  font-family: 'Raleway';
  font-weight: 500;
  font-display: swap;
  src: url(../fonts/Raleway-Medium.woff2) format('woff2');
}

:root {
  --main-font: "Inter", sans-serif;
  --coda-font: 'Coda Caption', sans-serif;
  --raleway-font: 'Raleway', sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 360px;
  background: #f4f4f4;
  color: #050213;
  font-family: var(--main-font);
}

main {
  overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin-top: 0;
}

ul {
  list-style-type: none;
}


a {
  text-decoration: none;
  color: inherit;
}

a:focus {
  outline: none;
}


img {
  display: block;
  max-width: 100%;
  height: auto;
}

input,
textarea,
button,
select,
label {
  font-family: var(--main-font);
  border: none;
}

button {
  cursor: pointer;
  border: none;
  outline: none;
}

html {
  scroll-behavior: smooth;
}

.header ul {
  padding-left: 0;
}

.container {
  width: 100%;
  max-width: 1730px;
  padding: 0 15px;
  margin: 0 auto;
}

.header {
  padding: 27px 0 23px;
  background: #fff;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 101;
  transition: box-shadow 0.3s ease;
}

.header.is-scrolled {
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.1);
}

.header__block {
  display: flex;
  align-items: center;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  font-weight: 700;
  font-size: 18px;
  line-height: 130%;
  margin-right: 15px;
  color: #050213;
}

.header__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  margin: 0 auto;
}

.header__link {
  font-weight: 400;
  font-size: 15px;
  line-height: 130%;
  color: #050213;

}

.header-mobile__inner .header__link {
  display: flex;
  flex-direction: column;
  align-items: end;
  gap: 5px;
}

.header-mobile__inner .settings_logout-btn {
  gap: 4px;
}

.header-mobile__logout-form .settings_logout-btn>span {
  font-size: 13px;
}

.header-mobile__logout-form .settings_logout-btn>svg {
  width: 13px;
  height: 13px;
}

.header__max {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 400;
  font-size: 15px;
  line-height: 130%;
  flex-shrink: 0;
  color: #050213;
  padding: 10px 20px;
  background: #f8f8f8;
  border-radius: 10px;
  margin-right: 10px;
}

.header__user {
  font-weight: 400;
  font-size: 15px;
  line-height: 130%;
  flex-shrink: 0;
  color: #0446ef;
  padding: 14px 42px;
  background: #dae4fe;
  border-radius: 10px;
}

.hero {
  padding: 0px 0 130px;
  position: relative;
  margin-top: 122px;

}

.hero__global {
  padding: 198px 15px 139px;
  border-radius: 60px;
  background: url(../img/hero-bg.webp) no-repeat center / cover;
}

.hero__title {
  font-family: var(--coda-font);
  font-weight: 800;
  font-size: 70px;
  line-height: 130%;
  text-align: center;
  color: #fff;
  margin-bottom: 5px;
}

.hero__subtitle {
  font-weight: 400;
  font-size: 32px;
  line-height: 130%;
  text-align: center;
  color: #fff;
  margin-bottom: 40px;
}

.hero__blur {
  backdrop-filter: blur(6.900000095367432px);
  background: rgba(255, 255, 255, 0.2);
  border-radius: 30px;
  padding: 34px 24px;
  max-width: 1149px;
  width: 100%;
  position: relative;
  z-index: 100;
  margin: 0 auto;
}

.hero__tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.hero__tab {
  cursor: pointer;
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  color: #8a9090;
  padding: 11px 25px;
  background: #fff;
  transition: 0.3s;
  border-radius: 0 24px 24px 0;
  border: 1px solid #d5d5d5;
}

.hero__tab:first-child {
  border-radius: 24px 0 0 24px;
}

.hero__tab input {
  display: none;
}

/* .hero__tab.active {
  color: #1d5af8;
  background: #eaf0ff;
} */

.hero__tab:has(input:checked) {
  color: #1d5af8;
  background: #eaf0ff;
}

.hero__form {
  display: flex;
  gap: 12px;
}

.hero__main {
  display: flex;
  background: #fff;
  flex-grow: 1;
  align-items: center;
  border-radius: 10px;
  padding: 9px 24px;
}

.hero__send {
  font-weight: 400;
  font-size: 20px;
  line-height: 130%;
  text-align: center;
  color: #eaf0ff;
  padding: 17px 42px;
  background: #1d5af8;
  border-radius: 10px;
}

.hero__dropdown {
  position: absolute;
  width: 298px;
  left: 24px;
  display: none;
  padding: 8px;
  top: 87%;
  border-radius: 15px;
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.1);
  background: #fff;
}

.hero__dropdown.active {
  display: block;
}

.hero-dropdown__inner {
  height: 236px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  scrollbar-width: thin;
  gap: 5px;
  /* или auto, или none */
  scrollbar-color: #8a9090 #f4f4f4;
  /* цвет ползунка и фона трека */
}

.hero-dropdown__inner::-webkit-scrollbar {
  width: 6px;
  /* ширина вертикального скролла */
  /* height: 12px; */
  /* высота горизонтального */
  background: #f4f4f4;
  border-radius: 10px;
  /* цвет фона трека */
}

.hero-dropdown__inner::-webkit-scrollbar-button {
  display: none;
}

/* Ползунок, который перемещается */
.hero__dropdown::-webkit-scrollbar-thumb {
  background-color: red;
  /* цвет ползунка */
  border-radius: 10px;
  /* скругление */
  border: 10px solid transparent;
  /* отступ внутри */
  background-clip: padding-box;
}

/* Тень или фон трека (область, по которой движется ползунок) */
.hero__dropdown::-webkit-scrollbar-track {
  background: #f4f4f4;
  /* цвет фона трека */
  border-radius: 10px;
}

.hero__dropdown-item {
  font-weight: 400;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: #364a51;
  padding: 16px 14px;
  cursor: pointer;
  margin: 0 5px;
  position: relative;
  transition: 0.3s;
  text-align: left;
  border-radius: 5px;
}

.hero__dropdown-item:hover {
  background: #f2f2f2;
}

.hero__dropdown-item:before {
  content: '';
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  transition: 0.3s;
  opacity: 0;
  background: url(../img/icons/hero-ok.svg) no-repeat center / cover;
}

.hero__dropdown-item:has(input:checked):before {
  opacity: 1;
}

.hero__count {
  position: relative;
}

.hero__calc {
  z-index: 10;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  position: absolute;
  width: 323px;
  right: 2px;
  padding: 12px 10px 12px 16px;
  top: 180%;
  border-radius: 15px;
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.1);
  background: #fff;
}

.hero__calc.active {
  display: flex;
}

.hero__controls {
  display: flex;
  align-items: center;
  gap: 5px;
}

.hero__label {
  font-weight: 500;
  font-size: 18px;
  line-height: 130%;
  color: #050213;
}

.hero__counter {
  width: 29px;
  background: none;
  font-weight: 500;
  font-size: 18px;
  line-height: 130%;
  text-align: center;
  color: #050213;
  padding: 0;
  transition: 0.3s;
}

.hero__icon {
  transition: 0.3s;
}

.hero__change[disabled] {
  background-color: #f4f4f4;
}

.hero__change[disabled] .hero__icon {
  filter: brightness(0.5);
}

.hero__counter:focus {
  outline: none;
}

.hero__counter::placeholder {
  color: #050213;
}

.hero__dropdown-item input {
  display: none;
}

.hero__change {
  width: 30px;
  height: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  padding: 0;
  background-color: #1D5AF8;
}

.hero__choose {
  display: block;
  width: 281px;
  background: none;
  font-weight: 400;
  font-size: 20px;
  padding-left: 30px;
  background-image: url(../img/icons/hero-search-first.svg);
  background-repeat: no-repeat;
  background-size: 20px 20px;
  background-position: left center;
  line-height: 130%;
  text-align: left;
  color: #8A9090;
  border-right: 1px solid #eaf0ff;
}

.hero__date {
  font-weight: 400;
  font-size: 20px;
  line-height: 130%;
  color: #8a9090;
  background: none;
  display: block;
  width: 225px;
  text-align: left;
  border-right: 1px solid #eaf0ff;
  padding: 8px 20px;
  background: url(../img/icons/hero-date.svg) no-repeat;
  background-size: 20px 20px;
  background-position: calc(100% - 20px) center;
}

.hero__open {
  width: 166px;
  display: block;
  text-align: left;
  font-weight: 400;
  font-size: 20px;
  line-height: 130%;
  padding-left: 20px;
  color: #8a9090;
  background: url(../img/icons/hero-arrow.svg) no-repeat;
  background-position: right center;
  background-size: 20px 20px;
}

.hero__bottom {

  display: flex;
  justify-content: center;
}

.hero__search {
  display: block;
  width: 100%;
  max-width: 390px;
  position: relative;
}

.hero__stroke {
  display: block;
  width: 100%;
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  color: #050213;
  background: url(../img/icons/hero-search-second.svg) no-repeat;
  background-position: 20px center;
  padding: 14px 145px 14px 44px;
  background-color: #fff;
  border-radius: 1000px;
}

.hero__stroke::placeholder {
  color: #8a9090;
}

.hero__submit {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  text-align: center;
  color: #eaf0ff;
  padding: 14px 40px;
  border-radius: 1000px;
  background: #1d5af8;
}

.rec {
  margin-bottom: 130px;
}

.rec__title {
  font-family: var(--coda-font);
  font-weight: 800;
  font-size: 40px;
  line-height: 130%;
  color: #050213;
  margin-bottom: 40px;
}

.rec__block {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.rec__item {
  border-radius: 20px;
  background: #fff;
  overflow: hidden;
  position: relative;
}

.rec__top {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.rec__fav {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 10;
  padding: 0;
  background: none;
}

.rec__heart {
  transition: 0.3s;
}

.rec__heart-second {
  display: block;
  position: absolute;
  opacity: 0;
  top: 0;
  transition: 0.3s;
  left: 0;
}

.rec__fav.active .rec__heart {
  opacity: 0;
}

.rec__fav.active .rec__heart-second {
  opacity: 1;
}

.rec__main {
  padding: 26px 20px 20px;
}

.rec__pills {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 5px;
}

.rec__pill {
  font-weight: 500;
  font-size: 15px;
  line-height: 130%;
  color: #3a3a3a;
  padding: 7px 14px;
  background: #f4f4f4;
  border-radius: 58px;
}

.rec__caption {
  font-family: var(--coda-font);
  font-weight: 800;
  font-size: 30px;
  line-height: 130%;
  color: #050213;
  margin-bottom: 5px;
}

.rec__text {
  font-weight: 500;
  font-size: 18px;
  line-height: 130%;
  color: #3a3a3a;
  margin-bottom: 20px;
}


.rec__feature+.rec__feature {
  margin-top: 5px;
}

.rec__feature {
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  color: #3a3a3a;
}

.rec__price {
  position: absolute;
  right: 0;
  bottom: 0;
  font-weight: 500;
  font-size: 24px;
  line-height: 130%;
  color: #0446ef;
  padding: 15px 20px;
  background: #eaf0ff;
  border-radius: 20px 0;
}

.rec__item .rec__pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  bottom: 10px;
  gap: 6px;
}

.rec__item .rec__pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  border-radius: 100%;
  background-color: #7c7c7c;
  opacity: 1;
  margin: 0;
  transition: 0.3s;
}

.rec__item .rec__pagination .swiper-pagination-bullet-active {
  background-color: #d7d7d7;
}

.rec__top.mob .rec__pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  bottom: 10px;
  gap: 6px;
}

.rec__top.mob .rec__pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  border-radius: 100%;
  background-color: #7c7c7c;
  opacity: 1;
  margin: 0;
  transition: 0.3s;
}

.rec__top.mob .rec__pagination .swiper-pagination-bullet-active {
  background-color: #d7d7d7;
}

.search__map {
  position: fixed !important;
  top: 98px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
}

.search__bg {
  background: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 102px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 15;
  width: 100%;
  height: 100%;
}

.search__window {
  top: 98px;
  position: fixed;
  z-index: 100;
  left: 0;
  bottom: 0;
  background: #f4f4f4;
  max-width: 1191px;
  width: 100%;
  padding: 15px 15px 15px 30px;
  display: grid;
  grid-template-columns: 320px 1fr;
  transition: 0.3s;
  gap: 12px;
}

.search__window.active .rec__block.second {
  grid-template-columns: 1fr;
}

.search__window.active {
  max-width: 770px;
}

.search__bg.hide {
  display: none;
}

.rec__block.second {
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.search__main {
  background: #fff;
  border-radius: 15px;
  padding: 15px;
  height: 100%;
  overflow-y: auto;
  scrollbar-width: none;
  /* для Firefox, но лучше для совместимости */
  -webkit-overflow-scrolling: touch;
  /* для плавной прокрутки на iOS */
}

/* Убираем полосы прокрутки в Chrome, Safari, Edge */
.search__main::-webkit-scrollbar {
  display: none;
}

.serch__aside {
  height: 100%;
  overflow-y: auto;
  scrollbar-width: none;
  /* для Firefox, но лучше для совместимости */
  -webkit-overflow-scrolling: touch;
}


/* Убираем полосы прокрутки в Chrome, Safari, Edge */
.serch__aside::-webkit-scrollbar {
  display: none;
}

.search__title {
  font-weight: 600;
  font-size: 20px;
  line-height: 130%;
  color: #000;
  margin-bottom: 15px;
}

.rec__block.second .rec__top {
  border-radius: 15px;
}

.rec__block.second .rec__item {
  border-radius: 15px;
  background: #f4f4f4;
  transition: 0.3s;
}

.rec__block.second .rec__item:hover {
  background-color: #EBEBEB;
}

.rec__block.second .rec__item.active {
  background-color: #EBEBEB;
}

.rec__block.second .rec__fav {
  top: 14px;
  right: 13px;
  width: 36px;
}

.rec__block.second .rec__item .rec__pagination {
  bottom: 5px;
  gap: 4px;
}

.rec__block.second .rec__main {
  padding: 15px;
}

.rec__block.second .rec__pills {
  gap: 4px;
}

.rec__block.second .rec__pill {
  font-size: 12px;
  background: rgba(25, 32, 48, 0.07);
  padding: 5px 8px;
}

.rec__block.second .rec__caption {
  font-size: 20px;
  margin-bottom: 4px;
}

.rec__block.second .rec__text {
  font-size: 12px;
  margin-bottom: 15px;
}

.rec__block.second .rec__feature+.rec__feature {
  margin-top: 4px;
}

.rec__block.second .rec__feature {
  gap: 3px;
  font-size: 12px;
}

.rec__block.second .rec__icon {
  width: 17px;
}

.rec__block.second .rec__price {
  font-size: 16px;
  padding: 10px 14px;
  border-radius: 15px 0;
}

.search-back {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #fff;
  border-radius: 12px;
  padding: 8px 12px;
  margin-bottom: 10px;
}

.search-back__title {
  display: block;
  font-weight: 500;
  font-size: 20px;
  line-height: 130%;
  color: #3a3a3a;
  margin-bottom: 0;
}

.search-back__info {
  display: block;
  font-weight: 500;
  font-size: 14px;
  line-height: 130%;
  color: #696969;
  margin-bottom: 0;
}

.search-back__search {
  margin-left: auto;
}

.search-filter {
  border-radius: 12px;
  padding: 15px 18px 21px 12px;
  background: #fff;
}

.search-filter__item+.search-filter__item {
  margin-top: 15px;
}

.search-filter__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.search-filter__heading {
  font-weight: 600;
  font-size: 16px;
  line-height: 130%;
  color: #3a3a3a;
  margin-bottom: 0;
}

.search-filter__reset {
  font-weight: 500;
  font-size: 14px;
  line-height: 130%;
  color: #696969;
  background: none;
  padding: 0;
}

.search-filter__cap+.search-filter__cap {
  margin-top: 15px;
}

.search-filter__cap {
  display: flex;
  align-items: center;
  gap: 4px;
  background: #f4f4f4;
  border-radius: 12px;
  padding: 12px;
}

.search-filter__mean {
  font-weight: 500;
  font-size: 14px;
  line-height: 130%;
  color: #3a3a3a;
}

.search-filter__arrow {
  margin-left: auto;
}

.search-filter__switch input {
  display: none;
}

.search-filter__switch {
  margin-left: auto;
  background: #8a9090;
  width: 35px;
  height: 20px;
  border-radius: 20px;
  transition: 0.3s;
  cursor: pointer;
  position: relative;
}

.search-filter__switch:before {
  content: '';
  position: absolute;
  top: 3px;
  left: 2px;
  background: #f4f4f4;
  width: 14px;
  height: 14px;
  border-radius: 100%;
  transition: 0.3s;
}

.search-filter__switch:has(input:checked) {
  background: #0446ef;
}

.search-filter__switch:has(input:checked):before {
  left: 19px;
}

.search-filter__pills {
  padding: 4px;
  width: fit-content;
  border-radius: 100px;
  background: #f4f4f4;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

.search-filter__pill {
  min-width: 104px;
  text-align: center;
  font-weight: 500;
  font-size: 12px;
  padding: 4px;
  cursor: pointer;
  line-height: 130%;
  transition: 0.3s;
  border-radius: 100px;
  color: rgba(0, 0, 0, 0.7);
}

.search-filter__group {
  display: none;
}

.search-filter__pill:has(input:checked) {
  background: #fff;
  color: #000;
}

.search-filter__count {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  background: #f4f4f4;
  border: 1px solid #e5e4e5;
  border-radius: 12px;
  padding: 4px 12px;
  margin-bottom: 18px;
}

.search-filter__input {
  background: transparent;
  padding: 9px 12px 8px 0;
  font-weight: 500;
  font-size: 14px;
  line-height: 120%;
  color: #000;
  width: 132px;
  border-right: 1px solid #e5e4e5;
}

.search-filter__input:nth-child(2) {
  padding-left: 12px;
  padding-right: 0;
  border-right: 0;
}

.search-filter__input:focus {
  outline: none;
}

.search-filter__range {
  position: relative;
  cursor: pointer;
}

.search-filter__line {
  width: 100%;
  height: 3px;
  border-radius: 3px;
  background-color: #e4e5e4;
}

.search-filter__dot {
  width: 20px;
  height: 20px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 100%;
  background-color: #fff;
  border: 3px solid #0e43d2;
  z-index: 10;
}

.search-filter__dot.second {
  z-index: 11;
  left: 172px;
}

.search-filter__fill {
  position: absolute;
  border-radius: 3px;
  width: 177px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 3px;
  background-color: #0e43d2;
  z-index: 1;
}

.search-filter__space {
  height: 10px;
}

.search-filter__gray {
  background: #f4f4f4;
  border-radius: 12px;
  padding: 12px;
}

.search-filter__var+.search-filter__var {
  margin-top: 8px;
}

.search-filter__var {
  display: block;
  position: relative;
  cursor: pointer;
  padding-left: 30px;
  padding-top: 1px;
  padding-bottom: 1px;
  transition: 0.3s;
}

.search-filter__var:before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border: 1px solid #e4e5e4;
  border-radius: 4px;
  background: #fff;
  transition: 0.3s;
}

.search-filter__var:after {
  content: '';
  position: absolute;
  background: url(../img/icons/search-ok.svg) no-repeat center / cover;
  width: 14px;
  height: 14px;
  top: 50%;
  transform: translateY(-50%);
  left: 4px;
}

.search-filter__var:has(input:checked):before {
  border-color: #0446ef;
  background: #0446ef;
}

.search-filter__flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.search-filter__label {
  font-weight: 500;
  font-size: 14px;
  line-height: 130%;
  color: #3a3a3a;

}

.search-filter__var input {
  display: none;
}

.search-filter__value {
  font-weight: 500;
  font-size: 14px;
  line-height: 130%;
  color: #8a9090;
}

.search-filter__submit {
  display: block;
  width: 100%;
  margin-top: 10px;
  font-weight: 500;
  font-size: 14px;
  line-height: 130%;
  text-align: center;
  color: #eaf0ff;
  padding: 16px;
  background: #0446ef;
  border-radius: 10px;
}

.card {
  margin-top: 122px;
}

.card-top {
  display: grid;
  grid-template-columns: 569px 1fr;
  gap: 20px;
  padding: 20px 0;
}

.card-top__item {
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.card-top__slider {
  width: 569px;
  border-radius: 20px;
  position: relative;
}

.card-top__arrow {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  padding: 0;
  z-index: 10;
}

.card-top__arrow.next {
  left: initial;
  right: 20px;
}

.card-top__main {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
}

.card-top__image {
  border-radius: 15px;
}

.card-top__last {
  padding: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #444;
  border-radius: 15px;
  font-weight: 500;
  font-size: 18px;
  line-height: 130%;
  text-align: center;
  color: #fff;
}

.card-middle {
  margin-bottom: 20px;
  padding: 20px 20px 0;
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
}

.card-middle__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 4px;
}

.card-middle__favorite {
  padding: 0;
  background: none;
}

.card-middle__number {
  display: flex;
  gap: 8px;
  font-weight: 500;
  font-size: 18px;
  line-height: 130%;
  color: #3a3a3a;
  padding: 10.5px 20px;
  background: rgba(25, 32, 48, 0.07);
  border-radius: 58px;
  background-position: 20px center;
}

.card-middle__copy-icon {
  cursor: pointer;
  transition: opacity 0.2s ease;
  display: inline-block;
  width: 20px;
  height: 20px;
}

.card-middle__copy-icon:hover {
  opacity: 0.7;
}

.card-middle__copy-icon:active {
  transform: scale(0.95);
}

.card-middle__title {
  font-family: var(--coda-font);
  font-weight: 800;
  font-size: 40px;
  line-height: 130%;
  color: #050213;
  margin-bottom: 23px;
}

.card-middle__bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}

.card-middle__max {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 500;
  font-size: 20px;
  line-height: 130%;
  text-align: center;
  color: #eaf0ff;
  max-width: 424px;
  width: 100%;
  padding: 20px 15px;
  background: #0446ef;
  border-radius: 12px;
  margin-bottom: 20px;
}

.card-middle__date {
  text-align: right;
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  color: #3a3a3a;
  margin-bottom: 10px;
}

.card-middle__price {
  font-weight: 700;
  font-size: 26px;
  line-height: 130%;
  color: #0446ef;
  margin-right: -20px;
  padding: 15px 25px;
  background: #eaf0ff;
}

.card-main {
  background: #fff;
  border-radius: 15px;
  padding: 20px 30px 30px 20px;
  margin-bottom: 60px;
}

.card-main__title {
  font-family: var(--coda-font);
  font-weight: 800;
  font-size: 24px;
  line-height: 130%;
  color: #050213;
  margin-bottom: 5px;
}

.card-main__text {
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
  color: #3a3a3a;
  margin-bottom: 20px;
}

.card-main__bold {
  font-weight: 500;
}

.card-main__caption {
  font-family: var(--coda-font);
  font-weight: 800;
  font-size: 24px;
  line-height: 130%;
  color: #050213;
  margin-bottom: 15px;
}

.card-main__item+.card-main__item {
  margin-top: 12px;
}

.card-main__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  color: #3a3a3a;
}

.res {
  padding: 0 0 162px;
  margin-top: 122px;
}

@media (width < 600px) {
  .res {
    margin-top: 15px;
  }

}

.res__global {
  display: grid;
  grid-template-columns: 303px 1fr;
  gap: 20px;
  align-items: start;
}

.res-aside {
  background: #fff;
  border-radius: 20px;
}

.res-aside__top {
  padding: 20px;
  border-bottom: 1px solid #d2d2d2;
}

.res-aside__name {
  font-weight: 400;
  font-size: 20px;
  line-height: 130%;
  color: #000;
  margin-bottom: 4px;
}

.res-aside__info {
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  color: rgba(0, 0, 0, 0.44);
  margin-bottom: 0;
}

.res-aside__bottom {
  padding: 20px;
}

.res-aside__link+.res-aside__link {
  margin-top: 20px;
}

.settings_delete-btn {
  padding: 0;
  margin-top: 150px;
  display: flex;
  align-items: center;
  background-color: none;
  background: none !important;
  background-color: transparent !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

.settings_delete-btn>span {
  font-family: var(--main-font);
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  color: #f96666;
}

.delete-popup {
  padding-top: 45px;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  border-radius: 20px;

}

.delete-popup__title {
  font-family: var(--main-font);
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  color: #000;
  text-align: center;

}

.delete-popup__buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.delete-popup__confirm,
.delete-popup__cancel {
  font-family: var(--main-font);
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  color: #000;
  padding: 10px;
  border-radius: 12px;
  transition: 0.8s ease;
}

.delete-popup__confirm:hover,
.delete-popup__cancel:hover {
  font-family: var(--main-font);
  font-weight: 700;
}

.settings_logout-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  background: none !important;
  background-color: transparent !important;
}

.settings_logout-btn>span {
  font-family: var(--main-font);
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  color: #818c91;
  transition: 0.3s ease-out;
}

.settings_logout-btn>svg {
  stroke: #818C91;
  transition: 0.3s ease-out;
}

.settings_logout-btn:hover span {
  color: #000;
}

.settings_logout-btn:hover svg {
  stroke: #000;
}


.res-aside__link {
  display: block;
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  color: #0446ef;
}

.res-aside__link.active {
  font-weight: 600;
}

.res-main {
  padding: 30px;
  background: #fff;
  border-radius: 20px;
}

.res-main__item {
  border: 1px solid #d2d2d2;
  border-radius: 10px;
  padding: 19px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
}

.res-main__book {
  display: flex;
  gap: 5px;
  color: #fff;
  padding: 10px 20px;
  border-radius: 10px;
  background-color: #0446ef;
}

.res-main__book-copy-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 121px;
  margin-top: 5px;
}

.res-main__book-copy {
  font-family: var(--main-font);
  font-weight: 500;
  font-size: 16px;
  line-height: 130%;
  margin: 0;
  color: #0446ef;
}

.res-main__capsule {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.res-main__book-copy>svg {
  width: 16px;
  height: 16px;
}


.res-main__left {
  display: flex;
  align-items: flex-start;
  gap: 33px;
}

.res-main__image {
  border-radius: 10px;
}

.res-main__middle {
  max-width: 584px;
}

.res-main__dates {
  margin-top: 5px;
  margin-bottom: 0 !important;
}

.res-main__dates-col {
  display: flex;
  flex-direction: column;
}

.res-main__dates-label {
  font-family: var(--main-font);
  font-weight: 500;
  font-size: 16px;
  line-height: 130%;
  color: #050213;
}

.res-main__dates-value {
  font-family: var(--main-font);
  font-weight: 700;
  font-size: 20px;
  line-height: 130%;
  color: #050213;
}

.res-main__name {
  font-family: var(--coda-font);
  font-weight: 800;
  font-size: 22px;
  line-height: 130%;
  color: #050213;
  margin-bottom: 5px;
}

.res-main__subname {
  font-weight: 500;
  font-size: 18px;
  line-height: 130%;
  color: #050213;
  margin-bottom: 12px;
}

.res-main__line {
  max-width: 279px;
  width: 100%;
  height: 1px;
  background-color: #d2d2d2;
  margin-bottom: 12px;
}

.res-main__lab {
  font-weight: 700;
  font-size: 18px;
  line-height: 130%;
  color: #050213;
  margin-bottom: 5px;
}

.res-main__guests {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 15px;
}

.res-main__guest {
  font-weight: 500;
  font-size: 16px;
  line-height: 130%;
  color: #0446ef;
}

.res-main__ta+.res-main__ta {
  margin-top: 15px;
}

.res-main__ti {
  font-weight: 700;
  font-size: 18px;
  line-height: 130%;
  color: #050213;
  margin-bottom: 5px;
}

.res-main__te {
  max-width: 514px;
  font-weight: 500;
  font-size: 16px;
  line-height: 130%;
  color: #050213;
  margin-bottom: 0;
}

.res-main__capsule+.res-main__capsule {
  margin-top: 30px;
}

.res-main__number {
  padding: 8px 47px 8px 15px;
  background: #efeff1 url(../img/icons/card-copy-2.svg) no-repeat;
  background-position: calc(100% - 15px) center;
  border-radius: 100px;
  font-weight: 500;
  font-size: 14px;
  line-height: 130%;
  color: #050213;
  margin-bottom: 8px;
}

.res-main__into {
  border: 1px solid #d2d2d2;
  border-radius: 10px;
  padding: 14px 14px 14px 17px;
  margin-bottom: 17px;
}

.res-main__code+.res-main__code {
  margin-top: 6px;
}

.res-main__code {
  cursor: pointer;
  font-weight: 500;
  font-size: 16px;
  line-height: 130%;
  color: #050213;
  text-align: right;
  padding-right: 27px;
  padding-top: 1px;
  background: url(../img/icons/card-copy-2.svg) no-repeat;
  background-position: right center;
}

.res-main__dates {
  display: flex;
  gap: 35px;
  margin-bottom: 37px;
}

.res-main__dl {
  font-weight: 500;
  font-size: 16px;
  line-height: 130%;
  color: #050213;
  margin-bottom: 0;
}

.res-main__dv {
  font-weight: 700;
  font-size: 20px;
  line-height: 130%;
  color: #050213;
}

.res-main__prices {
  display: flex;
  gap: 30px;
  background: #eaf0ff;
  padding: 15px 64px 15px 15px;
  border-radius: 10px 0;
  margin-top: auto;
  margin-bottom: -19px;
  margin-right: -19px;
}

.res-main__pl {
  font-weight: 500;
  font-size: 16px;
  line-height: 130%;
  color: #050213;
  margin-bottom: 0;
}

.res-main__pv {
  font-weight: 700;
  font-size: 20px;
  line-height: 130%;
  color: #050213;
}

.res-main__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  align-self: stretch;
  flex-shrink: 0;
}

.res-main__item.unactive {
  opacity: 0.5;
}

.res-main__item+.res-main__item {
  margin-top: 15px;
}

.header__user.active {
  font-weight: 700;
  padding: 14px 24px;
}

.res-main__outro {
  position: relative;
}

.res-main__favorite {
  padding: 0;
  z-index: 10;
  background: none;
  position: absolute;
  top: 15px;
  left: 15px;
}

.res-main__image.second {
  border-radius: 12px;
}

.res-main__ps {
  font-weight: 500;
  font-size: 22px;
  line-height: 130%;
  color: #0446ef
}

.res-main__prices.second {
  border-radius: 10px 0;
  padding: 12px 20px;
}

.res-main__square {
  display: inline-block;
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  color: #050213;
  padding: 8px 15px;
  background: rgba(211, 211, 211, 0.2);
  border-radius: 5px;
  margin-bottom: 10px;
}

.res-main__features {
  margin-bottom: 20px;
}

.res-main__feature+.res-main__feature {
  margin-top: 6px;
}

.res-main__feature {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  color: #050213;
}

.res-main__bt {
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  color: #050213;
  margin-bottom: 0;
}

.res-main__middle.second {
  max-width: 757px;
}

.settings__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
}

.settings__input {
  font-weight: 500;
  font-size: 18px;
  line-height: 130%;
  color: #818c91;
  padding: 17px 19px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 12px;
}

.settings__input.long {
  grid-column: span 2;
}

.settings__choose {
  display: flex;
  align-items: center;
  gap: 26px;
  padding: 26px 0;
}

.settings__radio input {
  display: none;
}

.settings__radio {
  position: relative;
  padding-left: 27px;
  font-weight: 500;
  font-size: 18px;
  cursor: pointer;
  line-height: 130%;
  color: #818c91;
}

.settings__radio:before {
  content: '';
  box-sizing: border-box;
  position: absolute;
  width: 20px;
  height: 20px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 100%;
  border: 1px solid #ccc;
  transition: 0.3s;
}

.settings__radio:has(input:checked):before {
  border-color: #0446ef;
  border-width: 5px;
}

.settings__align {
  margin-top: 26px;
  display: flex;
  justify-content: flex-end;
}

.settings__submit {
  font-weight: 500;
  font-size: 18px;
  line-height: 130%;
  text-align: center;
  color: #fff;
  padding: 17px 38px;
  background: #1d5af8;
  border-radius: 10px;
}

.header__link.active {
  font-weight: 700;
}

.about-top {
  padding: 0 0 60px;
  margin-top: 122px;
}

.about-top__block {
  display: grid;
  grid-template-columns: 515px 1fr;
  gap: 25px;
}

.about-top__left {
  border-radius: 15px;
  padding: 30px;
  background: #fff;
}

.about-top__title {
  font-family: var(--coda-font);
  font-weight: 800;
  font-size: 40px;
  line-height: 120%;
  color: #050213;
  margin-bottom: 15px;
}

.about-top__subtitle {
  font-weight: 600;
  font-size: 26px;
  line-height: 130%;
  color: #3a3a3a;
  margin-bottom: 0;
}

.about-top__image {
  border-radius: 15px;
  height: 100%;
  object-fit: cover;
}

.abro {
  margin-bottom: 60px;
}

.abro__title {
  font-family: var(--coda-font);
  font-weight: 800;
  font-size: 30px;
  line-height: 130%;
  color: #050213;
  margin-bottom: 20px;
}

.abro__block {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.abro__item {
  background: #fff;
  border-radius: 20px;
  padding: 20px 20px 0;
  min-height: 613px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.abro__item:nth-child(4) {
  padding-bottom: 20px;
}

.abro__text {
  font-weight: 500;
  font-size: 18px;
  line-height: 140%;
  color: #3a3a3a;
  margin-bottom: 34px;
}


.accordion {
  cursor: pointer;
  width: 100%;
  border: none;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  outline: none;
  transition: .4s;
  background: #fafdff;
  transition: all 0.5s ease-in-out, padding 0.3s;
  padding: 0 0 40px;
  font-weight: 500;
  font-size: 24px;
  line-height: 130%;
  color: #050213;
}

.accordion.active {
  padding-bottom: 0;
}


.accordion.active .faq__square {
  transform: rotate(314deg);
}

.accordion.active svg {
  fill: #0446ef;
}

.accordion.active svg path {
  stroke: #fff;
}


.faq__item+.faq__item {
  margin-top: 40px;
}

.faq__square {
  width: 40px;
  height: 40px;
  transition: 0.3s;
}

.faq__item {
  transition: ease-in-out .5s;
  border-bottom: 1px solid #bbb;
  overflow: hidden;
}

.faq__item:last-child {
  border-bottom: 0;
}

.panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height .2s ease-out
}

.panel p {
  margin: 0;
  margin-top: 20px;
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  color: #3a3a3a;
  max-width: 768px;
  padding-bottom: 10px;
}

.panel p span {
  display: block;
}

.panel p span+span {
  margin-top: 20px;
}

.faq {
  margin-bottom: 60px;
}

.faq__texto {
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  color: #3a3a3a;
  margin-bottom: 0;
}

.faq__title {
  font-family: var(--coda-font);
  font-weight: 800;
  font-size: 30px;
  line-height: 130%;
  color: #050213;
  margin-bottom: 30px;
}

.faq__global {
  background: #fff;
  border-radius: 20px;
  padding: 40px 30px;
  display: grid;
  grid-template-columns: 1fr 602px;
  gap: 146px;
  align-items: start;
  margin-bottom: 20px;
}

.faq__image {
  border-radius: 20px;
}

.fad {
  margin-bottom: 69px;
}

.fad__title {
  font-family: var(--coda-font);
  font-weight: 800;
  font-size: 30px;
  line-height: 130%;
  color: #050213;
  margin-bottom: 30px;
}

.fad__item+.fad__item {
  margin-top: 20px;
}

.fad__item {
  border-radius: 20px;
  padding: 20px;
  background: #fff;
}

.fad__caption {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  font-size: 24px;
  line-height: 130%;
  color: #3a3a3a;
  margin-bottom: 10px;
}

.fad__text {
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  color: #3a3a3a;
  margin-bottom: 0;
}

.trans-top {
  padding: 0 0 60px;
  margin-top: 122px;
}

.trans-top__global {
  border-radius: 30px;
  padding: 43px 49px 45px;
  background: url(../img/trans-1.webp) no-repeat center / cover;
}

.trans-top__wrapper {
  max-width: 673px;
  width: 100%;
}

.trans-top__title {
  font-family: var(--coda-font);
  font-weight: 800;
  font-size: 30px;
  line-height: 130%;
  color: #fff;
  margin-bottom: 20px;
}

.trans-top__fa {
  margin-bottom: 20px;
}

.trans-top__text+.trans-top__text {
  margin-top: 10px;
}

.trans-top__text {
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
  max-width: 585px;
  color: #fff;
  margin-bottom: 0;
}

.trans-top__pill {
  background: rgba(8, 12, 12, 0.7);
  border-radius: 15px;
  padding: 12px;
  width: fit-content;
  font-weight: 600;
  font-size: 18px;
  line-height: 140%;
  color: #fff;
  margin-bottom: 20px;
}

.trans-top__bottom {
  font-weight: 500;
  font-size: 18px;
  line-height: 140%;
  color: #fff;
  max-width: 546px;
  margin-bottom: 0;
}

.trans-middle {
  margin-bottom: 20px;
}

.trans-middle__block {
  border-radius: 20px;
  background: #fff;
  padding: 50px 80px 50px 50px;
  display: flex;
  align-items: center;
  gap: 50px;
}

.trans-middle__image {
  border-radius: 30px;
}

.trans-middle__title {
  font-family: var(--coda-font);
  font-weight: 800;
  font-size: 30px;
  line-height: 130%;
  color: #050213;
  margin-bottom: 25px;
}

.trans-middle__first {
  font-weight: 600;
  font-size: 18px;
  line-height: 130%;
  color: #050213;
  margin-bottom: 15px;
}

.trans-middle__text+.trans-middle__text {
  margin-top: 15px;
}

.trans-middle__text {
  font-weight: 500;
  font-size: 18px;
  line-height: 140%;
  color: #3a3a3a;
  margin-bottom: 0;
}

.trans-middle__text.first {
  font-size: 18px;
  line-height: 140%;
}

.trans-bottom {
  margin-bottom: 33px;
}

.trans-bottom__block {
  background: #fff;
  border-radius: 20px;
  padding: 20px;
}

.trans-bottom__title {
  font-family: var(--coda-font);
  font-weight: 800;
  font-size: 30px;
  line-height: 130%;
  color: #050213;
  margin-bottom: 10px;
}

.trans-bottom__text {
  font-weight: 400;
  font-size: 20px;
  line-height: 130%;
  color: #3a3a3a;
  margin-bottom: 0;
}

.check-top {
  padding: 0 0 15px;
  margin-top: 122px;
}

@media (width < 600px) {
  .check-top {
    margin-top: 15px;
  }

  .res-aside__link {
    font-size: 14px;
  }

}

.check__block {
  border-radius: 20px;
  padding: 30px;
  background: #fff;
}

.check__title {
  font-weight: 800;
  font-size: 30px;
  line-height: 130%;
  color: #050213;
  margin-bottom: 10px;
}

.check__subtitle {
  font-weight: 400;
  font-size: 20px;
  line-height: 130%;
  color: #000;
  margin-bottom: 10px;
}

.settings__form.second {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
}

.settings__form.second .settings__submit {
  padding: 17px 57px;
}

.check {
  padding-bottom: 15px;
}

.check__subtitle.second {
  margin-bottom: 0;
}


.modal {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  height: 100vh;
  display: grid;
  justify-content: center;
  align-items: center;
  grid-template-columns: minmax(300px, 604px);
  transition: 0.3s;
  z-index: -10;
  overflow: hidden;
  padding: 30px 16px;
}

.modal__bg {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  transition: 0.3s;
  opacity: 0;
  z-index: -10;
}

.modal__window {
  position: relative;
  background: #fff;
  padding: 37px 36px 44px;
  max-width: 604px;
  width: 100%;
  transition: 0.3s;
  opacity: 0;
  z-index: -10;
  transform: translateY(100px);
}

.modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 0;
  background: none;
}

.modal.active {
  z-index: 1250;
  overflow-y: auto;
}

.modal.active .modal__window {
  z-index: 151;
  opacity: 1;
  transform: translateY(0);
}

.modal.active .modal__bg {
  z-index: 150;
  opacity: 1;
}

.modal__title {
  max-width: 420px;
  width: 100%;
  font-weight: 400;
  font-size: 44px;
  line-height: 100%;
  letter-spacing: -0.02em;
  color: #0b0b0b;
  margin-bottom: 25px;
}


.reviews {
  padding: 0 0 28px;
  margin-top: 122px;
}

.reviews-title-hidden {

  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}


.reviews__block {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 28px;
  margin-bottom: 28px;
}

.reviews__item {
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
}

.reviews__caption {
  font-weight: 800;
  font-size: 30px;
  line-height: 130%;
  color: #050213;
  margin-bottom: 16px;
}

.reviews__video {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  display: block;
  margin-top: auto;
  margin-bottom: 15px;
}

.reviews__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}

.reviews__link {
  display: block;
  width: 100%;
  font-weight: 400;
  font-size: 20px;
  line-height: 130%;
  text-align: center;
  color: #eaf0ff;
  padding: 17px 15px;
  background: #0446ef;
  border-radius: 10px;
}

.reviews__nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.reviews__move {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 26px;
  background: #fff;
  border-radius: 10px;
  font-weight: 500;
  font-size: 18px;
  line-height: 140%;
  color: #050213;
}

.reviews__move.right {
  margin-left: auto;
}

.modal.second {
  grid-template-columns: minmax(300px, 1500px);
}

.modal.second .modal__window {
  max-width: 1500px;
  padding: 30px;
  border-radius: 30px;
}

.modal-second__video {
  max-width: 100%;
  width: 100%;
  height: auto;
}

.modal-second__title {
  font-weight: 800;
  font-size: 30px;
  line-height: 130%;
  color: #012104;
  margin-bottom: 30px;
}

.modal-second__wrapper {
  border-radius: 25px;
  overflow: hidden;
  position: relative;
}

.modal-second__glass {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: rgba(23, 23, 23, 0.8);
}

.modal-second__play {
  padding: 0;
  background: none;
}

.watch {
  padding: 0 0 76px;
  margin-top: 122px;
}

.watch-title-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.watch__block {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 28px;
  margin-bottom: 30px;
}

.watch__item {
  display: flex;
  flex-direction: column;
  padding: 20px;
  min-height: 660px;
  border-radius: 20px;
  background-color: #fff;
}

.watch__image {
  border-radius: 20px;
  margin-bottom: 15px;
}

.watch__caption {
  font-weight: 800;
  font-size: 30px;
  line-height: 130%;
  color: #050213;
  margin-bottom: 10px;
}

.watch__text {
  font-weight: 500;
  font-size: 18px;
  line-height: 140%;
  color: rgba(58, 58, 58, 0.8);
  margin-bottom: 21px;
}

.watch__more {
  align-self: flex-start;
  font-weight: 500;
  font-size: 18px;
  line-height: 140%;
  color: rgba(58, 58, 58, 0.8);
  padding: 10px 20px;
  background: #f7f9ff;
  border-radius: 10px;
  margin-top: auto;
}

.watch__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.watch__move {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  font-size: 18px;
  line-height: 140%;
  color: #050213;
}

.watch__move.next {
  margin-left: auto;
}

.watch-full {
  padding: 30px 0;
}

.watch-full__image {
  display: block;
  border-radius: 20px;
  margin-bottom: 30px;
}

.watch-full__global {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 20px;
}

.watch-full__title {
  font-weight: 800;
  font-size: 30px;
  line-height: 130%;
  color: #050213;
  margin-bottom: 20px;
}

.watch-full__block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 127px;
}

.watch-full__column {
  font-weight: 500;
  font-size: 18px;
  line-height: 140%;
  color: #050213;
}

.watch-full__video {
  object-fit: cover;
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 20px;
}

.watch-full__block.second {
  align-items: center;
}

.watch-full__column ul {
  margin: 0;
  padding-left: 25px;
  list-style-type: disc;
}

.modal-first {
  grid-template-columns: minmax(300px, 482px);
}

.modal__window.first {
  padding: 30px;
  border-radius: 20px;
}

.modal__title {
  font-weight: 800;
  font-size: 30px;
  line-height: 130%;
  color: #050213;
  margin-bottom: 20px;
}

.modal__input {
  display: block;
  width: 100%;
  font-weight: 500;
  font-size: 16px;
  line-height: 101%;
  color: #8a9090;
  padding: 15px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  margin-bottom: 10px;
}

.modal__privacy input {
  display: none;
}

.modal__privacy {
  display: block;
  width: 100%;
  padding-left: 34px;
  position: relative;
  font-weight: 400;
  font-size: 14px;
  line-height: 130%;
  color: #8a9090;
  cursor: pointer;
  margin-bottom: 30px;
}

.modal__privacy:before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 2px;
}

.modal__privacy:after {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  transition: 0.3s;
  opacity: 0;
  background: url(../img/icons/modal-check.svg) no-repeat center / cover;
}

.modal__privacy:has(input:checked):after {
  opacity: 1;
}

.modal__link {
  text-decoration: underline;
  text-decoration-skip-ink: none;
  color: #0446ef;
}

.modal__submit {
  display: block;
  width: 100%;
  font-weight: 500;
  font-size: 16px;
  line-height: 130%;
  text-align: center;
  color: #fff;
  padding: 13px 15px;
  background: #0446ef;
  border-radius: 10px;
}

.modal__form {
  display: block;
}

.modal__form.active {
  display: none;
}

.modal-seco__new {
  display: none;
}

.modal-seco__sent {
  font-weight: 500;
  font-size: 16px;
  line-height: 101%;
  color: #8a9090;
  margin-bottom: 5px;
}

.modal-seco__change {
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 500;
  font-size: 16px;
  line-height: 101%;
  color: #1d5af8;
  margin-bottom: 20px;
  background: none;
  padding: 0;
}

.modal-seco__numbers {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.modal-seco__input {
  border: 1.50px solid #ccc;
  border-radius: 10px;
  padding: 17px 18px;
  font-weight: 400;
  font-size: 20px;
  line-height: 130%;
  text-align: center;
  color: #050213;
  width: 54px;
  transition: 0.3s;
}

.modal-seco__input:focus {
  outline: none;
}

.modal-seco__info {
  font-weight: 500;
  font-size: 16px;
  line-height: 101%;
  color: #8a9090;
  margin-bottom: 20px;
}

.modal-seco__error {
  display: none;
  color: #f96666;
}

.modal-seco {
  display: none;
}

.modal-seco.active {
  display: block;
}

.modal-seco__input.error {
  border-color: #f96666;
}

.modal-seco__button {
  padding: 13px 15px;
  background: #0446ef;
  border-radius: 10px;
  display: block;
  width: 100%;
  font-weight: 500;
  font-size: 16px;
  line-height: 130%;
  text-align: center;
  color: #fff;
}

.header-mobile {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  display: block;
  width: 100%;
  transition: all 0.2s ease;
  z-index: -10;
}

.header-mobile.active {
  transform: translateX(0);
  opacity: 1;
  z-index: 500;
}

.header-mobile.active .header-mobile__bg {
  z-index: 100;
  opacity: 1;
}

.header-mobile__bg {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: -10;
  transition: all 0.1s ease;
  opacity: 0;
}

.header-mobile__inner {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  max-width: 224px;
  width: 100%;
  background-color: #fff;
  z-index: 900;
  height: 100%;
  overflow-y: auto;
  transition: all 0.2s ease;
  transform: translateX(100%);
}

body:has(.header-mobile.active) {
  overflow: hidden;
}

.header-mobile__close {
  padding: 0;
  background: none;
  position: absolute;
  top: 16px;
  right: 16px;
}

.header-mobile.active .header-mobile__inner {
  transform: translateX(0);
}

.header__burger {
  display: none;
  padding: 0;
  background: none;
}

.header-mobile__max {
  padding: 16px 15px;
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 400;
  justify-content: flex-end;
  border-bottom: 1px solid #f4f4f4;
  font-size: 13px;
  line-height: 130%;
  color: #1f1f1f;
  width: 100%;
}



.header__link[data-modal] {
  color: #0446ef;
}

.hero__mobbo {
  display: none;
}

.rec__top.mob {
  display: none;
}

.card-middle__subtitle {
  display: none;
}

.rec__item.glo {
  display: none;
}

.filter__open {
  padding: 10px 20px;
  position: fixed;
  z-index: 100;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%);
  display: none;
  align-items: center;
  gap: 5px;
  background: #0446ef;
  border-radius: 100px;
  font-weight: 500;
  font-size: 12px;
  line-height: 130%;
  color: #fff;
}

.figo {
  display: block;
  left: 0;
  right: 0;
  height: calc(100% - 187px);
  position: fixed;
  z-index: 150;
  overflow-y: auto;
  padding: 15px 15px 20px;
  background: #f4f4f4;
  border-radius: 15px 15px 0 0;
  bottom: -100%;
  transition: 0.3s;
}

.figo.active {
  bottom: -25px;
}

.sero {
  display: block;
  position: fixed;
  z-index: 200;
  left: 0;
  bottom: -100%;
  right: 0;
  transition: 0.3s;
  border-radius: 15px 15px 0 0;
  background: #fff;
  padding: 15px 15px 25px;
}

.sero.active {
  bottom: 0;
}

.sero__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 15px;
}

.sero__title {
  font-family: var(--coda-font);
  font-weight: 800;
  font-size: 20px;
  line-height: 130%;
  color: #050213;
  margin-bottom: 0;
}

.sero__open {
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 500;
  font-size: 12px;
  line-height: 130%;
  color: #1f1f1f;
  background: none;
  padding: 0;
}

.res-main__title {
  font-weight: 800;
  font-size: 30px;
  line-height: 130%;
  color: #050213;
  margin-bottom: 20px;
}

.lk-mob {
  display: none;
}

.res-mob__middle {
  display: none;
}

.res-mob__bottom {
  display: none;
}

.res-sec-mob__middle {
  display: none;
}

.res-sec-mob__bottom {
  display: none;
}

@media (max-width: 1618px) {
  .header__nav {
    gap: 10px;
  }

  .header__link {
    font-size: 16px;
  }
}

@media (max-width: 1450px) {
  .rec__price {
    font-size: 15px;
  }

  .res-main__dates {
    flex-direction: column;
  }

  .res-main__prices {
    flex-direction: column;
  }

  .trans-middle__block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  .watch__caption {
    font-size: 25px;
  }

  .search__window .rec__block.second {
    grid-template-columns: 1fr;
  }

  .search__window {
    max-width: 770px;
  }

  .watch-full__block.second {
    gap: 40px;
  }

  .header__max {
    font-size: 16px;
  }

  .header__max img {
    width: 20px
  }

  .header__user {
    font-size: 16px;
    padding: 10px 22px;
  }

  .header__nav {
    margin-right: 20px;
  }
}

@media (max-width: 1350px) {
  .header__nav {
    display: none;
  }

  .header__logo {
    margin-right: auto;
  }

  .header__burger {
    display: block;
  }

  .header__user {
    display: none;
  }

  .header__max {
    display: none;
  }

  .header-mobile {
    top: 102px;
  }

  .header {
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.15);
  }

  .hero__form {
    flex-direction: column;
  }

  .hero__choose {
    width: 100%;
  }

  .hero__date {
    width: 100%;
  }

  .hero__open {
    width: 100%;
  }

  .hero__main {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }

  .hero__dropdown {
    top: 63%;
  }

  .rec__block {
    grid-template-columns: 1fr 1fr;
  }

  .header__link {
    text-align: right;
    display: block;
    padding: 16px 15px;
    font-weight: 400;
    font-size: 13px;
    line-height: 130%;
    color: #1f1f1f;
    border-bottom: 1px solid #f4f4f4;
  }

  .header__link.active {
    font-weight: 600;
    background: #f4f4f4;
  }
}

@media (max-width: 1250px) {


  .card-top {
    grid-template-columns: 400px 1fr;
  }

  .card-top__slider {
    width: 400px;
  }

  .res-main__left {
    flex-direction: column;
  }

  .faq__global {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }

  .trans-middle__image {
    width: 100%;
  }

  .trans-middle__block {
    padding: 50px;
    grid-template-columns: 1fr;
  }

  .search__window {
    display: none;
  }

  .search__bg {
    display: none;
  }

  .search-back {
    position: fixed;
    top: 140px;
    right: 5px;
    z-index: 100;
  }

  .rec__item.glo {
    display: none;
    position: fixed;
    bottom: 15px;
    right: 15px;
    max-width: 500px;
    width: 100%;
    z-index: 100;
  }

  .filter__open {
    display: flex;
  }

  .figo {}

  .figo__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
  }

  .figo__close {
    padding: 0;
    background: none;
  }

  .search-filter {
    border-radius: 0;
    background: none;
    padding: 0;
  }

  .figo__reset {
    font-weight: 500;
    font-size: 12px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 100px;
    line-height: 130%;
    color: #3a3a3a;
    padding: 8px 10px;
  }

  .search-filter__pills {
    background: #fff;
  }

  .search-filter__pill:has(input:checked) {
    background: #f4f4f4;
  }


  .search-filter__cap {
    background: #fff;
  }

  .search-filter__count {
    background-color: #fff;
  }

  .search-filter__gray {
    background-color: #fff;
  }

  .search-filter__reset {
    display: none;
  }
}

@media (max-width: 1150px) {
  .watch__block {
    grid-template-columns: 1fr 1fr;
  }

  .reviews__block {
    grid-template-columns: 1fr 1fr;
  }

  .watch-full__block.second {
    grid-template-columns: 1fr;
  }

  .watch-full__video {
    width: 100%;
  }
}

@media (max-width: 1050px) {
  .res__global {
    grid-template-columns: 1fr;
  }

  .about-top__block {
    grid-template-columns: 1fr;
  }

  .abro__block {
    grid-template-columns: 1fr 1fr;
  }

  .faq__global {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .faq__image {
    width: 100%;
  }
}

@media (max-width: 950px) {
  .hero__main {
    grid-template-columns: 1fr 1fr;
    gap: 10px 0;
  }

  .hero__capsule.first {
    order: -2;
  }

  .hero__capsule.second {
    order: -1;
  }

  .hero__dropdown {
    top: 68%;
  }

  .hero__calc {
    top: 155%;
  }

  .hero__capsule.second .hero__date {
    padding-right: 0;
    border-right: 0;
  }

  .card-top {
    grid-template-columns: 1fr;
  }

  .card-top__slider {
    width: 100%;
  }

  .settings__form.second {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 800px) {
  .rec__caption {
    font-size: 25px;
  }

  .rec__price {
    font-size: 14px;
    padding: 8px 12px;
  }

  .card-middle__bottom {
    flex-direction: column;
  }

  .card-middle__max {
    align-self: center;
  }

  .reviews__caption {
    font-size: 24px;
  }

  .reviews__link {
    font-size: 17px;
  }

  .watch-full__block {
    gap: 30px;
  }
}

@media (max-width: 750px) {
  .rec__block {
    grid-template-columns: 1fr;
  }

  .res-main__item {
    flex-direction: column;
  }

  .res-main__dates {
    flex-direction: row;
  }

  .res-main__prices {
    flex-direction: row;
  }

  .settings__grid {
    grid-template-columns: 1fr;
  }

  .settings__input.long {
    grid-column: span 1;
  }

  .watch__caption {
    font-size: 14px;
  }

  .watch__text {
    font-size: 12px;
  }

  .watch__more {
    font-size: 12px;
  }
}

@media (max-width: 600px) {
  .hero__capsule {
    display: none;
  }

  .hero {
    padding: 12px 0 40px;
  }

  .hero__bottom {
    margin-bottom: 13px;
  }

  .hero__search {
    max-width: 100%;
  }

  .hero__blur {
    background: none;
    padding: 0;
    border-radius: 0;
  }

  .hero__stroke {
    font-size: 12px;
    padding: 10px 96px 10px 38px;
    background-size: 16px;
    background-position: 16px center;
    background-color: #f4f4f4;
  }

  .hero__tab {
    font-size: 12px;
    padding: 7px 13px;
  }

  .hero__submit {
    font-size: 12px;
    padding: 12px 25px;
  }

  .hero__global {
    margin-bottom: 10px;
    border-radius: 15px;
    padding: 34px 15px 25px;
  }

  .hero__title {
    font-size: 40px;
    margin-bottom: 8px;
    line-height: 110%;
  }

  .watch__item {
    min-height: initial;
  }

  .hero__subtitle {
    font-size: 14px;
    margin-bottom: 15px;
  }

  .hero__blur {
    margin-bottom: 0;
  }

  .hero__tabs {
    margin-bottom: 0;
  }

  .hero__main {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 0;
    border-radius: 0;
    background: none;
  }

  body:has(.hero) {
    background-color: #fff;
  }

  .hero__choose {
    font-weight: 400;
    font-size: 12px;
    line-height: 130%;
    padding: 16px 34px;
    border-radius: 10px;
    background-size: 16px;
    background-position: 12px center;
    background-color: #f4f4f4;
  }

  .hero__open {
    font-weight: 400;
    font-size: 12px;
    line-height: 130%;
    color: #8a9090;
    padding: 16px 12px;
    border-radius: 10px;
    background-size: 16px;
    background-position: calc(100% - 12px) center;
    background-color: #f4f4f4;
  }

  .header {
    position: relative;
    z-index: 100;
    padding: 12px 0;
  }

  .header__logo-icon {
    width: 30px;
  }

  .header__logo {
    gap: 6px;
    font-size: 12px;
    font-weight: 500;
  }

  .header-mobile {
    top: 58px;
  }

  .hero__send {
    font-size: 14px;
    padding: 16px 15px;
  }

  .hero__mobbo {
    display: flex;
    width: 100%;
    align-items: center;
    gap: 12px;
    padding: 16px 15px 16px 34px;
    background: #f4f4f4 url(../img/icons/hero-date.svg) no-repeat;
    background-position: 12px center;
    background-size: 16px;
    font-weight: 400;
    font-size: 12px;
    border-radius: 10px;
    line-height: 130%;
    text-align: center;
    color: #8a9090;
  }

  .hero__dropdown {
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    width: 100%;
    z-index: 100;
    padding: 10px 10px 10px 0;
    border-radius: 10px;
  }

  .hero__dropdown-item {
    font-size: 13px;
    padding: 17px 50px 17px 12px;
  }

  .hero-dropdown__inner {
    height: 214px;
  }

  .hero__select {
    position: relative;
  }

  .hero__calc {
    left: 0;
    right: 0;
    width: 100%;
    top: calc(100% + 9px);
    border-radius: 10px;
    padding: 16px 12px;
  }

  .hero__label {
    font-size: 13px;
  }

  .hero__change {
    width: 24px;
    height: 24px;
  }

  .hero__counter {
    font-size: 13px;
  }

  .hero__icon {
    width: 12px;
  }

  .rec__title {
    font-size: 20px;
    margin-bottom: 15px;
  }

  .rec__item {
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.15);
    border-radius: 15px;
  }

  .rec__top {
    border-radius: 15px;
  }

  .rec__block {
    gap: 15px;
  }

  .rec__fav {
    top: 10px;
    right: 10px;
    width: 32px;
  }

  .rec__main {
    padding: 20px 20px 15px 15px;
  }

  .rec__pills {
    gap: 6px;
  }

  .rec {
    margin-bottom: 30px;
  }

  .rec__pill {
    font-size: 10px;
    padding: 5px 10px;
  }

  .rec__caption {
    font-size: 18px;
  }

  .rec__text {
    font-size: 12px;
    margin-bottom: 10px;
  }

  .rec__icon {
    width: 16px;
  }

  .rec__feature {
    font-size: 12px;
  }

  .rec__price {
    border-radius: 15px 0;
  }

  .rec__item .rec__pagination .swiper-pagination-bullet {
    width: 5px;
    height: 5px;
  }

  .rec__item .rec__pagination {
    gap: 5px;
    bottom: 5px;
  }

  .modal__title {
    font-size: 20px;
  }

  .modal__input {
    font-size: 14px;
  }

  .modal__privacy {
    font-size: 12px;
    margin-bottom: 15px;
  }

  .modal__window.first {
    padding: 15px;
  }

  .modal-seco__input {
    padding: 12px 12px;
    font-size: 17px;
    width: 45px;
  }

  .card-top {
    display: none;
  }

  .card-middle__favorite {
    display: none;
  }

  .rec__top.mob {
    display: block;
    margin-bottom: 10px;
  }

  .rec__back {
    position: absolute;
    padding: 0;
    background: none;
    z-index: 10;
    top: 9px;
    left: 12px;
  }

  .card-middle__date {
    display: none;
  }

  .card-middle__bottom {
    flex-direction: column-reverse;
  }

  .card-middle__subtitle {
    display: block;
    font-weight: 500;
    font-size: 13px;
    line-height: 130%;
    color: #3a3a3a;
    margin-bottom: 0;
  }

  body:has(.card) {
    background: #f4f4f4;
  }

  .card-middle__number {
    font-size: 12px;
    padding: 5px 10px 5px 32px;
    background-size: 16px;
    background-position: 10px center;
  }

  .card-middle__top {
    margin-bottom: 10px;
  }

  .card-middle__title {
    font-size: 20px;
    margin-bottom: 5px;
  }

  .card-middle {
    padding: 15px;
    margin-bottom: 10px;
  }

  .card {
    padding: 15px 0 30px;
  }

  .card-main {
    padding: 15px 15px 0;
    margin-bottom: 0;
  }

  .card-main__title {
    font-size: 18px;
    margin-bottom: 5px;
  }

  .card-main__text br {
    display: none;
  }

  .card-main__bold {
    font-weight: 500;
    font-size: 12px;
  }

  .card-main__text {
    font-weight: 500;
    font-size: 12px;
    margin-bottom: 10px;
  }

  .card-main__caption {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .card-main__item+.card-main__item {
    margin-top: 8px;
  }

  .card-main__block {
    margin-bottom: 12px;
  }

  .card-main__item img {
    width: 16px;
  }

  .card-main__item {
    gap: 8px;
    font-size: 12px;
  }

  .card-middle__price {
    text-align: center;
    margin: 0 -15px;
    border-radius: 0 0 15px 15px;
    padding: 8px 12px;
    font-size: 14px
  }

  .card-middle__max {
    max-width: 100%;
    font-size: 14px;
    margin: 10px 0 0;
    padding: 16px 15px;
    border-radius: 10px;
  }

  .card-middle__icon {
    width: 24px;
  }

  .res-main__dv {
    font-size: 14px;
  }

  .res-main__prices {
    width: 100%;
    padding: 15px;
    margin-left: -19px;
    margin-right: -19px;
    width: calc(100% + 38px);
    align-self: stretch;
  }

  .res-main {
    padding: 0;
    background: none;
    border: none;
  }

  .res-main__pv {
    font-size: 14px;
  }

  .res-main__pl {
    font-size: 14px;
  }

  .res-main__image {
    width: 100%;
  }

  .res-main__title {
    font-size: 14px;
    margin-bottom: 15px;
  }

  .res-main__name {
    font-size: 14px;
  }

  .res-main__left {
    gap: 15px;
  }

  .res-main__subname {
    font-size: 12px;
  }

  .res {
    padding-bottom: 25px;
  }

  .res-aside__link+.res-aside__link {
    margin-top: 12px;
  }

  .settings__input {
    font-size: 12px;
    padding: 13px 15px;
  }


  .settings__form.second .settings__submit {
    font-size: 12px;
    padding: 10px 15px;
  }

  .settings__radio {
    font-size: 15px;
  }

  .settings__choose {
    gap: 15px;
  }

  .settings__submit {
    font-size: 14px;
    padding: 15px;
    width: 100%;
  }

  .res-main__prices.second {
    text-align: center;
    border-radius: 0 0 12px 12px;
  }

  .res-main__ps {
    margin: 0 auto;
  }

  .abro__block {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .about-top {
    padding: 0 0 35px;
    margin-top: 15px;
  }

  .about-top__left {
    padding: 15px;
  }

  .about-top__block {
    gap: 10px;
  }

  .about-top__subtitle {
    display: none;
  }

  .about-top__title {
    font-size: 20px;
    margin-bottom: 0;
  }

  .about-top__image {
    height: 330px;
    object-fit: cover;
  }

  .abro__title {
    font-size: 18px;
    margin-bottom: 5px;
  }

  .abro__item {
    padding: 15px 15px 0;
    border-radius: 15px;
  }

  .abro__text {
    font-size: 12px;
    margin-bottom: 22px;
  }

  .abro__item {
    gap: 0;
    min-height: 366px;
  }

  .abro {
    margin-bottom: 30px;
  }

  .faq__title {
    font-size: 18px;
    margin-bottom: 5px;
  }

  .faq__global {
    padding: 20px 15px;
    border-radius: 15px;
    gap: 15px;
  }

  .accordion {
    font-size: 16px;
    padding-bottom: 20px;
  }

  .faq__item+.faq__item {
    margin-top: 20px;
  }

  .panel p {
    font-size: 14px;
    padding-bottom: 0;
  }

  .faq__texto {
    font-size: 14px;
  }

  .faq {
    margin-bottom: 30px;
  }

  .fad__title {
    font-size: 18px;
    margin-bottom: 5px;
  }

  .fad__caption {
    font-size: 16px;
  }

  .fad__text {
    font-size: 14px;
  }

  .fad__item {
    border-radius: 15px;
  }

  .fad {
    margin-bottom: 30px;
  }

  .faq__image {
    border-radius: 15px;
  }

  .faq__square {
    width: 20px;
    height: 20px;
  }

  .faq__arrow {
    width: 20px;
    height: 20px;
  }

  .fad__caption img {
    width: 20px;
  }

  .trans-top {
    padding: 0 0 15px;
    margin-top: 15px;
  }

  .trans-top__global {
    border-radius: 20px;
    padding: 25px 20px;
  }

  .trans-top__title {
    font-size: 22px;
    margin-bottom: 15px;
  }

  .trans-top__text {
    font-size: 15px;
  }

  .trans-top__pill {
    font-size: 15px;
  }

  .trans-top__bottom {
    font-size: 16px;
  }

  .trans-middle__block {
    padding: 25px 20px;
    gap: 20px;
  }

  .trans-middle__image {
    border-radius: 15px;
  }

  .trans-middle__title {
    font-size: 22px;
    margin-bottom: 15px;
  }

  .trans-middle__first {
    font-size: 14px;
  }

  .trans-middle__text {
    font-size: 14px;
  }

  .trans-bottom__title {
    font-size: 22px;
  }

  .trans-bottom__text {
    font-size: 12px;
  }

  .watch__block {
    grid-template-columns: 1fr;
  }

  .watch {
    padding: 0;
    margin-top: 15px;
  }

  .watch__item {
    border-radius: 15px;
    min-height: 440px;
  }

  .watch__image {
    border-radius: 15px;
  }

  .watch__bottom {
    flex-direction: column;
    align-items: center;
  }

  .watch__move.next {
    margin-left: 0;
  }

  .check__block {
    padding: 20px 15px;
  }

  .check__title {
    font-size: 14px;
  }

  .check__subtitle {
    font-size: 12px;
  }

  .reviews__block {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .reviews__preview {
    width: 100%;
  }

  .reviews__play {
    width: 50px;
  }

  .reviews {
    padding: 0 0 35px;
    margin-top: 15px;
  }

  .reviews__caption {
    font-size: 21px;
  }

  .modal-second__title {
    font-size: 22px;
    margin-bottom: 15px;
  }

  .modal.second .modal__window {
    border-radius: 15px;
    padding: 15px;
  }

  .modal-second__play {
    width: 50px;
  }

  .modal-second__wrapper {
    border-radius: 15px;
  }

  .reviews__nav {
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
  }

  .reviews__move {
    justify-content: center;
  }

  .reviews__move.right {
    margin-left: 0;
  }

  .watch-full__image {
    border-radius: 15px;
    margin-bottom: 15px;
  }

  .watch-full {
    padding: 30px 0;
  }

  .watch-full__global {
    border-radius: 15px;
    padding: 20px 15px;
  }

  .watch-full__title {
    font-size: 22px;
  }

  .watch-full__block {
    gap: 15px;
    grid-template-columns: 1fr;
  }

  .watch-full__column {
    font-size: 15px;
  }

  .search__map {
    top: -1%;
  }

  .watch-full__video {
    border-radius: 15px;
  }


  .figo {
    height: calc(100% - 137px);
  }

  .search-back {
    top: 82px;
    left: 15px;
  }

  .watch__text {
    font-size: 12px;
  }

  .watch__more {
    font-size: 12px;
  }

  .trans-middle__first {
    font-size: 12px;
  }

  .trans-middle__text {
    font-size: 12px;
  }

  .trans-middle__text.first {
    font-size: 12px;
  }

  .res-main__ti {
    font-size: 14px;
  }

  .res-main__te {
    font-size: 12px;
  }

  .res-main__lab {
    font-size: 14px;
  }

  .res-main__guest {
    font-size: 12px;
  }
}






/* Календарь */

.hero__capsule {
  position: relative;
}

.calendar {
  position: absolute;
  z-index: 100;
  top: calc(100% + 20px);
  left: 0;
  width: 567px;
  border-radius: 20px;
  padding: 14px;
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.1);
  background: #fff;
}

.calendar__global {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 10px;
}

.calendar__bottom {
  display: flex;
  justify-content: center;
}

.calendar__submit {
  font-weight: 500;
  font-size: 16px;
  line-height: 130%;
  text-align: center;
  color: #fff;
  padding: 10px 70px;
  background: #1d5af8;
  border-radius: 10px;
}

.calendar__top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 9px;
}

.calendar__title {
  font-weight: 700;
  font-size: 16px;
  line-height: 130%;
  color: #050213;
  margin-bottom: 0;
}

.calendar__controls {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.calendar__arrow {
  padding: 0;
  background: none;
}

.calendar__head {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  margin-bottom: 7px;
}

.calendar__label {
  font-weight: 500;
  font-size: 13px;
  line-height: 130%;
  text-align: center;
  color: #8a9090;
}

.calendar__block {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px 0;
}

.calendar__item {
  font-weight: 400;
  font-size: 13px;
  line-height: 130%;
  text-align: center;
  padding: 11px 0 10px;

  color: #8a9090;
}

.calendar__item.active {
  background: #eaf0ff;
  color: #050213;
}

.calendar__item.last,
.calendar__item.first {
  background: #1d5af8;
  border-radius: 12px;
  color: #fff;
}

.round-left {
  border-radius: 12px 0 0 12px;
}

.round-right {
  border-radius: 0 12px 12px 0;
}

.calmo {
  position: absolute;
  top: 11px;
  left: 15px;
  right: 15px;
  bottom: 0;
  overflow-y: auto;
  z-index: 200;
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.1);
  background: #fff;
  border-radius: 15px;
  padding: 15px;
}

.calmo__close {
  position: absolute;
  right: 15px;
  top: 15px;
  background: none;
  padding: 0;
}

.calmo__capsule+.calmo__capsule {
  margin-top: 30px;
}

.calmo__wrapper {
  margin-bottom: 20px;
}


@media (max-width: 600px) {
  .calendar__head {
    margin-bottom: 8px;
  }

  .calendar__label {
    color: #050213;
  }

  .calendar__title {
    margin-bottom: 10px;
  }

  .calendar__block {
    gap: 10px 0;
  }


  .calendar__submit {
    font-size: 12px;
    padding: 10px 15px;
    width: 100%;
    border-radius: 10px;
  }

  .reviews__link {
    font-size: 13px;
    padding: 10px 15px;
  }

  .settings_delete-btn {
    margin-top: 80px;
  }

  .res-main__item {
    display: block;
  }

  .rec__item.lk-mob {
    width: 100vw;
    margin-bottom: 10px;
  }

  .lk-mob {
    display: block;
  }

  .rec__main {
    display: none;
  }

  .res-mob__middle {
    display: block;
    border-radius: 15px;
    background-color: #fff;
    margin-bottom: 10px;
    padding: 15px;
  }

  .res-mob__bottom {
    display: block;
  }

  .res-main__item {
    padding: 0;
    background: none;
    border-radius: 0;
    border: none;
  }

  .res-main__link {
    display: none;
  }


  .res-main__right {
    display: none;
  }

  .res-main__number {
    display: inline-block;
    font-size: 12px;
    padding: 5px 10px 5px 32px;
    background-position: 10px center;
    background-size: 16px;
    border-radius: 58px;
    margin-bottom: 5px;
  }

  .res-main__name {
    font-size: 20px;
    margin-bottom: 5px;
  }

  .res-main__subname {
    font-size: 13px;
    margin-bottom: 0;
  }

  .res-mob__bottom {
    border-radius: 15px;
    background: #fff;
    padding: 15px;
  }

  .res-main__dates {
    display: flex;
    gap: 35px;
    margin-bottom: 15px;
  }

  .res-main__dl {
    font-size: 13px;
    margin-bottom: 0;
  }

  .res-main__dv {
    font-size: 16px;
  }

  .res-main__lab {
    font-size: 18px;
    margin-bottom: 5px;
  }

  .res-main__guest {
    font-size: 13px;
  }

  .res-main__guest+.res-main__guest {
    margin-top: 2px;
  }

  .res-main__guests {
    margin-bottom: 10px;
  }

  .res-main__ti {
    font-size: 18px;
  }

  .res-main__te {
    font-size: 13px;
  }

  .res-main__ra {
    margin-bottom: 15px;
  }

  .res-main__code {
    text-align: left;
    font-size: 14px;
    background-size: 18px;
  }

  .res-main__title {
    font-size: 22px;
    margin-bottom: 10px;
  }

  .res-main__caption {
    font-weight: 700;
    font-size: 18px;

    /* line-height: 23px; */
    line-height: 130%;
    color: #050213;
    margin-bottom: 10px;
  }

  .res-main__into {
    margin-bottom: 15px;
    padding: 11px;
  }

  .res-main__middle {
    display: none;
  }

  .res-main__code+.res-main__code {
    margin-top: 8px;
  }

  .res-main__prices {
    width: calc(100% + 30px);
    margin: 0 -15px -15px;
    display: flex;
    border-radius: 0 0 10px 10px;
    justify-content: space-between;
    padding: 15px;
  }

  .res-main__pl {
    font-size: 13px;
    margin-bottom: 0;
  }

  .res-main__pv {
    color: #0446ef;
    font-weight: 700;
    font-size: 18px;
  }

  .res-main__capsule+.res-main__capsule {
    margin-top: 20px;
  }

  .res-sec-mob__middle {
    display: block;
    padding: 15px 15px 12px;
    border-radius: 15px 15px 0 0;
    background: #fff;
  }

  .res-sec-mob__bottom {
    display: block;
  }

  .res-sec-mob__bottom {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .res-sec-mob__title {
    font-family: var(--coda-font);
    font-weight: 800;
    font-size: 18px;
    line-height: 130%;
    color: #050213;
  }

  .res-sec-mob__text {
    font-weight: 500;
    font-size: 12px;
    line-height: 130%;
    color: #3a3a3a;
    margin-bottom: 10px;
  }

  .res-sec-mob__caption {
    font-family: var(--coda-font);
    font-weight: 800;
    font-size: 18px;
    line-height: 130%;
    color: #050213;
    margin-bottom: 10px;
  }

  .res-sec-mob__price {
    font-weight: 700;
    font-size: 14px;
    line-height: 130%;
    text-align: center;
    padding: 8px 15px;
    border-radius: 0 0 15px 15px;
    background: #eaf0ff;
    color: #0446ef;
  }

  .rec__item.lk-mob .res-main__favorite {
    left: initial;
    right: 12px;
    top: 12px;
  }

  .res.second .rec__item.lk-mob {
    width: calc(100vw - 30px);
  }

  .res-sec-mob__link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 500;
    font-size: 14px;
    line-height: 130%;
    color: #eaf0ff;
    padding: 16px 15px;
    background: #0446ef;
    border-radius: 10px;
  }
}

/**/
.auth-page {
  margin-top: 122px;
}


.page-template-page-register .auth-page__block {
  margin-top: 30px;
}

.auth-form {
  display: flex;
  flex-direction: column;
  padding: 30px;
  gap: 10px;
  background: #FFF;
  border-radius: 20px;
  max-width: 450px;
  width: 100%;
}

.auth-form .auth-form__field {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.auth-form .auth-form__field input {
  padding: 16px;
  font-family: 'Inter';
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 16.1px;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.20);
  background: #FFF;
  height: 50px;
}

.auth-form .auth-form__field span {
  color: #8A9090;
  font-family: 'Inter';
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
}

.auth-form .button {
  margin-top: 10px;
  border-radius: 10px;
  background: #1D5AF8;
  padding: 13px 15px;
  color: #FFF;
  text-align: center;
  font-family: 'Inter';
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%;
  transition: background ease .3s;
}

.auth-form .button:hover {
  background: #0446EF;
}

.page-template-page-login .auth-page__link,
.page-template-page-register .auth-page__link {
  margin-top: 10px;
  font-family: 'Inter';
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
}

.page-template-page-login .auth-page__link a {
  color: #0446EF;
  position: relative;
}

.page-template-page-login .auth-page__link a::after {
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
  height: 1px;
  content: '';
  background: #0446EF;
  transform: scale(0);
  transition: all ease .3s;
}

.page-template-page-login .auth-page__link a:hover::after {
  transform: scale(1);

}

.page-template-page-register .auth-page__link a {
  color: #0446EF;
  position: relative;
}

.page-template-page-register .auth-page__link a::after {
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
  height: 1px;
  content: '';
  background: #0446EF;
  transform: scale(0);
  transition: all ease .3s;
}

.page-template-page-register .auth-page__link a:hover::after {
  transform: scale(1);

}

.header .header__logo img {
  max-width: 52px;
}

.menu-item a {
  color: #050213;
  font-family: 'Inter';
  font-size: clamp(14px, 1.1vw, 18px);
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  transition: all ease .3s;
}

.menu-item a:hover {
  color: #0446EF;
}

.current-menu-item.menu-item a {
  font-weight: 700;
}

.header__max img {
  max-width: 30px;
}

.header-mobile__max img {
  max-width: 30px;
}

.header-mobile__nav {
  padding-left: 0;
  margin-top: 0;
}

.header-mobile__nav .menu-item a {
  text-align: right;
  display: flex;
  justify-content: end;
}

.header-mobile__nav .menu-item {
  padding: 16px 15px;
  border-bottom: 1px solid #F4F4F4;
}

@media(max-width: 1350px) {
  .header-mobile__nav .menu-item a {
    font-size: 14px;
  }

  .header-mobile__nav .current-menu-item {
    background: #F4F4F4;
  }

  .header-mobile__nav .current-menu-item a {
    color: #1F1F1F;
    font-weight: 600;
    line-height: 130%;
  }

  a.header__link {
    color: #0446EF;
  }
}

.hero__form {
  display: block;
}

.form-hero-search {
  display: flex;
  gap: 12px;
}

@media (max-width: 1350px) {
  .form-hero-search {
    flex-direction: column;
    margin-top: 35px;

  }

  .hero__blur {
    padding: 10px;
    border-radius: 10px;
  }
}

.trans-middle__block img {
  width: 100%;
  max-width: 693px;
  object-fit: cover;
  aspect-ratio: 693 / 503;
}

@media(max-width: 1250px) {
  .trans-middle__block img {
    max-width: 100%;
    aspect-ratio: 500 / 300;
  }
}

@media(max-width: 475px) {
  .trans-middle__block img {
    aspect-ratio: 350 / 270;
  }
}

/*.watch-full > img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 1700 / 400;
  border-radius: 20px;
}
.watch-full__block {
  display: block;
  column-count: 2;
  column-width: 400px;
  font-weight: 500;
    font-size: 18px;
    line-height: 140%;
    color: #050213;
}
@media (max-width: 600px) {
    .watch-full__block {
        font-size: 15px;
    }

}*/



/*стили для search*/
.search-filter-select {
  width: 100%;
  position: relative;
}

.search-filter-select-display {
  display: flex;
  gap: 4px;
  align-items: center;
  cursor: pointer;

}

.search-filter__arrow {
  width: 16px;
  transition: scale ease .3s;
}

.search-filter-select-dropdown {
  display: none;
}

.search-filter-select.active .search-filter-select-dropdown {
  display: block;
}

.search-filter-select.active .search-filter__arrow {
  transform: scale(1, -1);
}

.search-filter-select-dropdown__list {
  left: 0;
  position: absolute;
  top: calc(100% + 15px);
  padding: 7px 0;
  background: #FFF;
  border-radius: 5px;
  background: #FFF;
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.15);
  width: 100%;
  z-index: 1;
}

.options__item {
  position: relative;
  cursor: pointer;
  width: 100%;
}

.options__input {
  width: 0;
  height: 0;
  opacity: 0;
  position: absolute;


}

.options__input:checked+.options__text img {
  transform: scale(1);
}

.options__text {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  gap: 10px;
  padding: 5px 7px;
  width: 100%;
  transition: background ease .3s;
  color: #364A51;
  font-family: 'Roboto';
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.12px;
}

.options__text:hover {
  background: #F2F2F2;
}

.options__text img {
  transform: scale(0);
  transition: all ease .3s;
  margin-left: auto;
}

.place-details-compact-container {
  display: none !important;
}

.hero__choose.--selected {
  color: #050213;
}

.hero__open.--selected {
  color: #050213;
}

.hero__date.--selected {
  color: #050213;
}

.hero__mobbo.--selected {
  color: #050213;
}

@media(max-width: 600px) {
  .hero__global {
    height: 250px;
    margin-bottom: 0;
  }

  .hero__contents {
    margin-top: -55px;
  }

  .hero {
    padding: 0 0 20px;
    margin-top: 15px;
  }

  .form-hero-search {
    gap: 25px;
  }

  .hero__calc {
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.10);
  }
}

@media (max-width: 600px) {
  .rec__main {
    display: block;
  }
}

.accordion .faq__arrow path {
  stroke-width: 1.5px;
}

.accordion.active .faq__arrow path {
  fill: #FFF;
  stroke: #fff;
}

.page-template-page-login .auth-page__block,
.page-template-page-register .auth-page__block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.calmo__close {
  position: sticky;
  top: 0;
  left: 100%;
}

.calmo .calendar__bottom {
  position: sticky;
  bottom: 0;
}

.header-mobile .res-aside__nav .res-aside__link {
  font-size: 13px;
  margin-top: 0;
  padding: 10px 15px;
}

.header-mobile .res-aside__nav {
  border-bottom: 1px solid #F4F4F4;
}


.card-top.--not-slider {
  display: block;
}

.card-top.--not-slider .card-top__main {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: initial;
}

.card-top.--not-slider .card-top__main .card-top__image {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 750 / 450;
}

@media(max-width: 600px) {
  .card-top.--not-slider {
    display: none;
  }
}

.rec__top .swiper-slide img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 550 / 330;
}

.modal-second__iframe {
  width: 100%;
  border-radius: 25px;
  overflow: hidden;
  object-fit: cover;
  aspect-ratio: 1440 / 870;
}

.card-middle__price {
  border-radius: 15px 0 0 0;
}

@media(max-width: 600px) {
  .card-middle__price {
    border-radius: 0 0 15px 15px;
  }
}

.rec__top .swiper-slide img {}

.card-middle__favorite.obj-to-fav {
  position: relative;
  width: 50px;
  height: 50px;
}

.card-middle__favorite.obj-to-fav img {
  position: absolute;
  width: 50px;
  height: 50px;
  top: 0;
}

.card-middle__favorite.obj-to-fav.active {}

.res-main__outro .res-main__link {
  max-width: 238px;
  min-width: 238px;
  display: block;
}

@media (max-width: 600px) {
  .res-main__outro .res-main__link {
    display: none;
  }
}

.res-main__outro .res-main__link img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 238 / 281;
}

.seo-news-container {
  max-width: 1700px;
}

.seo-news-post {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.seo-news-post-item {
  width: 100%;
  min-height: 398px;
  height: auto;
  display: flex;
  gap: 30px;
  padding: 30px;
  background-color: #fff;
  border-radius: 20px;
}

.seo-news-post-item-img {
  border-radius: 18px;
  max-width: 508px;
  width: 100%;
  height: 100%;
  max-height: 338px;
  object-fit: cover;
}

.seo-news-post-item-content {
  max-width: 1102px;
  width: 100%;
  display: flex;
  flex-direction: column;

}

.seo-news-post-item-wrapper {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}

.seo-news-title {
  font-family: var(--coda-font);
  font-weight: 800;
  font-size: 40px;
  line-height: 130%;
  color: #050213;
  margin-bottom: 32px;
}

.seo-news-post-item-title {
  font-family: var(--main-font);
  font-weight: 800;
  font-size: 30px;
  line-height: 120%;
  color: #050213;
  margin-bottom: 10px;
}


.seo-news-post-item-text {
  font-family: var(--main-font);
  font-weight: 500;
  font-size: 18px;
  line-height: 130%;
  color: #3a3a3a;
  overflow: hidden;
  transition: max-height 0.6s ease;
  display: grid;
  grid-template-rows: 207px;
  transition: grid-template-rows 0.6s ease;
  overflow: hidden;
}

.seo-news-post-item-text .inner-content {
  min-height: 0;
  overflow: hidden;
}

.seo-news-post-item-text>p {
  margin: 0;
}

.seo-news-post-item-text.is-expanded {
  grid-template-rows: 1fr;
}

.seo-news-read-more {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 18px;
  line-height: 130%;
  text-align: right;
  align-self: end;
  color: #0446ef;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  gap: 5px;
  align-self: flex-end;
  margin-top: 25px;
}

.arrow-icon {
  padding-top: 2px;
}

.seo-news-pagination {
  display: flex;
  align-self: end;
  justify-content: end;
  margin-top: 30px;
}


.seo-news-pagination ul {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: end;
  list-style: none;
  padding: 0;
  margin: 0;
  width: 219px;
}


.seo-news-pagination li a,
.seo-news-pagination li span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background-color: #fff;
  border-radius: 5px;
  text-decoration: none;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 120%;
  color: #3a3a3a;
  transition: 0.3s;
}

.seo-news-pagination li .dots {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border: none;
  background: none;
}

.seo-news-pagination .current {
  background-color: #e1e1e1;
  color: #3a3a3a;
}


.seo-news-pagination li .prev,
.seo-news-pagination li .next {
  font-weight: bold;

}

.seo-news-pagination .prev,
.seo-news-pagination .next,
.seo-news-pagination .prev *,
.seo-news-pagination .next * {
  background: transparent !important;
}

#seo-news-list {
  transition: opacity 0.4s ease-in-out;
  min-height: 400px;
  opacity: 1;
}

#seo-news-list.fade-out {
  opacity: 0;
}

.seo-news-read-more .arrow-icon {
  display: inline-block;
  transition: transform 0.3s ease;
}

.seo-news-read-more .arrow-icon.rotated {
  transform: rotate(180deg);
}

@media (width < 1488px) {
  .seo-news-post-item-text {
    font-size: 16px;
  }

  .seo-news-post-item-title {
    font-size: 28px;
  }

}

@media (width < 1110px) {
  .seo-news-post-item {
    flex-direction: column;
  }

  .news-page-container {
    padding-bottom: 70px;
  }

  .seo-news-read-more {
    align-self: start;
  }
}

@media (width < 602px) {
  .seo-news-post {
    gap: 15px;
  }

  .seo-news-pagination {
    margin-top: 15px;
  }

  .seo-news-read-more {
    font-size: 12px;
    margin-top: 10px;
  }

  .seo-news-title {
    font-size: 20px;
    margin-bottom: 15px;
  }

  .arrow-icon>svg {
    width: 16px;
    height: 16px;
  }

  .seo-news-pagination li a,
  .seo-news-pagination li span {
    width: 21px;
    height: 21px;
    font-size: 12px;
  }

  .arrow-icon {
    padding-top: 0px;
  }

  .seo-news-post-item {
    padding: 15px;
    box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.15);
    gap: 15px;
  }

  .seo-news-post-item-title {
    font-size: 16px;
  }

  .seo-news-post-item-text {
    font-size: 12px;
    grid-template-rows: 92px;
  }

  .seo-news-post-item-text.is-expanded {
    grid-template-rows: 1fr;
  }
}

.fixed-book-btn-wrapper {
  position: fixed;
  z-index: 100;
  bottom: 30px;
  transform: translateX(-50%);
  border-radius: 10px;
  left: 50%;
  width: 290px;
  height: 56px;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.15);
  background-color: #0446ef;
  padding-right: 24px;
  display: flex;
  align-items: center;
  justify-content: end;
  animation: pulse 15s ease-in-out infinite;
  transition: opacity 0.3s ease, transform 2s ease;
}

.fixed-book-btn-wrapper:hover {
  animation: none;
  transform: translateX(-50%) scale(1.05);
}

.book-btn-link {

  font-family: var(--main-font);
  font-weight: 500;
  font-size: 18px;
  line-height: 130%;
  color: #fff;
}

.book-btn-link-icon {
  position: absolute;
  top: 16px;
  left: 24px;
}

@media (width < 1488px) {
  .fixed-book-btn-wrapper {
    width: 260px;
    height: 50px;
  }

  .book-btn-link-icon {
    width: 18px;
    height: 18px;
  }

  .book-btn-link {
    font-size: 16px;
  }
}

@keyframes pulse {
  0% {
    transform: translateX(-50%) scale(1);
  }

  50% {
    transform: translateX(-50%) scale(1.05);
  }

  100% {
    transform: translateX(-50%) scale(1);
  }
}

@media (width < 600px) {
  .fixed-book-btn-wrapper {
    width: 196px;
    height: 40px;
    bottom: 20px;
  }

  .book-btn-link {
    font-size: 12px;

  }

  .book-btn-link-icon {
    width: 16px;
    height: 16px;
    top: 12px;
    left: 16px;
  }

  .delete-popup__confirm,
  .delete-popup__cancel {
    font-size: 14px;
  }

  .settings_delete-btn>span {
    font-size: 14px;
  }

  .settings_delete-btn-icon {
    width: 16px;
    height: 16px;
  }

  .delete-popup__title {
    font-size: 14px;
  }
}

.news-page {
  margin-top: 134px;
}

.news-page-container {
  display: flex;
  gap: 30px;
}

.news-page-offer-wrapper {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 669px;
}

.news-page-offer-allnews>svg {
  width: 16px;
  height: 16px;
}



.news-page-main {
  max-width: 1001px;
}

.news-page-offer-arrow-icon>svg {
  vertical-align: middle;
  margin-left: 4px;
}

.news-page-offer-item {
  width: 100%;
  max-width: 669px;
  max-height: 239px;
  height: 100%;
  display: flex;
  gap: 20px;
  padding: 30px 17px 30px 30px;
  background-color: #fff;
  border-radius: 20px;
}

.news-page-main-item {
  border-radius: 20px;
  padding: 30px;
  width: 100%;
  max-height: 1600px;
  background-color: #fff;
}

.news-page-main-item-image {
  border-radius: 18px;
  max-width: 941px;
  max-height: 450px;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: #f5f5f5;

}

.news-page-main-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.news-page-main-item-title {
  font-family: var(--main-font);
  font-weight: 800;
  font-size: 30px;
  line-height: 120%;
  color: #050213;
  margin-top: 30px;
  margin-bottom: 10px;
}

.news-page-offer-item-content {
  display: flex;
  max-width: 323px;
  width: 100%;
  flex-direction: column;
  justify-content: space-between;
}

.news-page-offer-item-img {
  border-radius: 18px;
  max-width: 269px;
  max-height: 179px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.news-page-offer-item-title {
  max-width: 323px;
  font-family: var(--main-font);
  font-weight: 800;
  font-size: 22px;
  line-height: 120%;
  color: #050213;
}

.news-page-offer-item-read-more {
  font-family: var(--main-family);
  font-weight: 600;
  font-size: 16px;
  line-height: 130%;
  align-self: end;
  color: #0446ef;
}

.news-page-offer-item-read-more:hover,
.news-page-offer-item-read-more:focus,
.news-page-offer-item-read-more:active {
  text-decoration: none;
  color: #0446ef;
  transform: none;
  background: none;
  outline: none;
}

.news-page-offer-title {
  font-family: var(--coda-font);
  font-weight: 800;
  font-size: 30px;
  line-height: 130%;
  color: #050213;
  margin-bottom: 0;
}

.news-page-offer-menu-wrapper {
  display: flex;
  flex-direction: column;
  align-items: end;
  margin-bottom: 24px;
}

.news-page-offer-item-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.news-page-offer-allnews {
  font-family: var(--main-font);
  font-weight: 600;
  font-size: 14px;
  line-height: 130%;

  color: #3a3a3a;

}

.news-page-offer-allnews-wrapper {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 0 0 0;
}

.breadcrumb5-current {
  font-family: var(--coda-font);
  font-weight: 800;
  font-size: 40px;
  line-height: 130%;
  color: #050213;

}

.breadcrumb5-home-wrapper {
  display: flex;
  align-items: center;
  gap: 5px;
}

.breadcrumb5-home {
  font-family: var(--main-font);
  font-weight: 600;
  font-size: 18px;
  line-height: 130%;
  color: #3a3a3a;
}

.breadcrumb5-separator {
  font-family: var(--coda-font);
  font-weight: 200;
  font-size: 40px;
  line-height: 130%;
  color: #050213;
}

.breadcrumb5 {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.news-page-offer-item-text {
  display: none;
  visibility: hidden;
}


@media (width < 1700px) {


  .news-page-offer-item-title {
    font-size: clamp(16px, -4.15px + 1.54vw, 22px);
  }

  .news-page-offer-allnews,
  .breadcrumb5-home {
    font-size: 16px;
  }

  .news-page-offer-allnews-wrapper>svg,
  .breadcrumb5-home-wrapper>svg {
    width: 18px;
    height: 18px;
  }


}


@media (width < 1568px) {

  .news-page-offer {
    flex-shrink: 0;
  }

  .news-page-offer-item-title {
    margin-bottom: 10px;
  }

  .news-page-offer-wrapper {
    flex-direction: column;
    flex-wrap: wrap;
    max-width: 100%;
    justify-content: end;
  }

  .news-page-offer-item-img {
    max-width: 269px;
    max-height: 179px;
    width: 100%;
    height: 100%;
  }

  .news-page-main {
    max-width: 100%;
  }

  .news-page-offer-item {
    flex-direction: column;
    max-width: 332px;
    max-height: 430px;
    padding: 30px 33px 30px 30px;
  }

  .news-page-offer-item-wrapper {
    flex-direction: column;
  }



  .news-page-offer-arrow-icon>svg {
    height: 13px;
    width: 6px;
    margin-left: 3px;
  }



  .news-page-main-item-image {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
  }

}



@media (width < 1310px) {
  .news-page-container {
    flex-direction: column;
  }

  .news-page-offer-wrapper {
    flex-direction: row;
    flex-wrap: wrap;
    max-width: 100%;
    justify-content: center;
    flex-shrink: 1;
  }

  .news-page-offer-item-text {
    visibility: visible;
    font-family: var(--main-font);
    font-weight: 500;
    font-size: 14px;
    line-height: 130%;
    color: #3a3a3a;
    display: grid;
    grid-template-rows: 89px;
    transition: grid-template-rows 0.6s ease;
    overflow: hidden;
  }

  .news-page-main-item-text {
    display: block;
    visibility: visible;
  }
}


.news-page-offer-title,
.news-page-main-item-title {
  font-size: 26px;
}



.news-page-main-item-text {
  font-size: 14px;
}

.news-page-offer-item-title {
  font-size: 16px;
}

.news-page-offer-item {
  padding: 25px 14px 25px 25px;
}


@media (width < 600px) {
  .breadcrumb5-current {
    font-size: 20px;
  }

  .news-page-offer-menu-wrapper {
    margin-top: 0;
  }

  .news-page {
    margin-top: 10px;
  }

  .breadcrumb5-home {
    font-size: 16px;
  }

  .news-page-offer-menu-wrapper {
    margin-bottom: 15px;
  }

  .breadcrumb5 {
    margin-bottom: 15px;
  }

  .news-page-offer-allnews {
    font-size: 13px;
  }

  .news-page-offer-allnews-wrapper {
    gap: 6px;
  }

  .news-page-main-item {
    padding: 15px;
  }

  .news-page {
    margin-top: 10px;
  }

  .news-page-offer-arrow-icon>svg {
    height: 12px;
    width: 5px;
    margin-left: 3px;
  }

  .breadcrumb5-home-wrapper>svg {
    width: 16px;
    height: 16px;
  }



  .news-page-main-item-title {
    font-size: 16px;
    margin-top: 15px;
    margin-bottom: 10px;
  }

  .news-page-main-item-text {
    font-size: 12px;
  }

  .news-page-container {
    gap: 17px;
  }

  .news-page-offer-title {
    font-size: 16px;
  }

  .news-page-offer-item-img {
    max-width: 540px;
    max-height: 200px;
  }

  .news-page-offer-item-read-more {
    align-self: start;
    font-size: 12px;
  }

  .news-page-main-item-text-inner {
    font-size: 12px;
  }

  .news-page-offer-item {
    display: flex;
    flex-direction: column;
    max-height: 450px;
    gap: 15px;
    padding: 15px;
  }

  .news-page-offer-item-content {
    max-width: 100%;
  }

  .news-page-offer-item-title {
    max-width: 100%;
  }

  .news-page-offer-item-wrapper {
    gap: 10px;
  }
}


.footer {
  margin-top: 150px;
  width: 100%;
  background-color: #fff;
}

.footer__container {
  padding-block: 60px;
  display: grid;
  grid-template-columns: 400px 724px 400px;
  grid-template-rows: repeat(3, 128px);
  justify-content: space-between;

}

.footer__image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;


}

.footer__image-wrap {
  display: flex;
  justify-content: center;
  align-items: center;

  max-width: 382.5px;
  flex-shrink: 1;
  margin-right: clamp(30px, -64.44px + 7.72vw, 90px);
  grid-row: 1 /3 span;
  grid-column: 1;
}

.footer__logo {
  display: flex;
  gap: 15px;
  align-items: center;
  margin-bottom: 30px;
}

.footer__logo-image {
  height: 52px;
  width: 51px;
}

.footer__logo-name {
  font-family: var(--main-font);
  font-weight: 700;
  font-size: 22px;
  line-height: 130%;
  color: #050213;
}

.footer__info {
  display: flex;
  flex-direction: column;
  grid-row: 1;
  grid-column: 2;
}

.footer-description {
  grid-column: 2;
  grid-row: 2 /3 span;
  margin-top: 30px;
}

.footer__description-1 {
  font-family: var(--main-font);
  font-weight: 400;
  font-size: 17px;
  line-height: 130%;
  color: #050213;
  margin-bottom: 10px;
}

.footer__description-2 {
  font-family: var(--main-font);
  font-weight: 500;
  font-size: 17px;
  line-height: 130%;
  color: #050213;
  margin: 0;
}


.footer__contacts {
  display: flex;
  border: 1px solid #d3d3d3;
  border-radius: 10px;
  padding: 15px;

}

.footer__contacts-link {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-family: var(--main-font);
  font-weight: 500;
  font-size: 16px;
  line-height: 130%;
  color: #050213;
}

.footer__contacts-link-add {
  display: none;
  font-family: var(--main-font);
  font-weight: 500;
  font-size: 16px;
  line-height: 130%;
  color: #3a3a3a;
  font-style: normal;


}

.footer__contacts-icon {
  width: 30px;
  height: 30px;
}

.footer__contacts-link--email {
  padding-left: 20px;
}

.footer__contacts-link--vkmax {
  padding-right: 20px;
  border-right: 1px solid #d3d3d3;
}

.footer__nav {
  grid-column: 3;
  grid-row: 1 / 2 span;
}

.footer__nav-legal {
  grid-column: 3;
  grid-row: 3;
}

.footer__nav-list {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 28.5px;
  margin-left: clamp(30px, -158.88px + 15.44vw, 150px);
}

.footer__nav-link {
  font-family: var(--main-font);
  font-weight: 500;
  font-size: 18px;
  line-height: 130%;
  color: #050213;

}


.footer__legal-list {
  padding: 0;
  margin: 37px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-left: clamp(30px, -158.88px + 15.44vw, 150px);
}

.footer__legal-link {
  font-family: var(--main-font);
  font-weight: 400;
  font-size: 15px;
  line-height: 130%;
  text-decoration: underline;
  text-decoration-skip-ink: none;
  color: #515151;
}

.auth-popup {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.auth-popup__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.auth-popup__inner {
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  max-width: 420px;
  width: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.auth-popup__close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.auth-popup__text {
  font-family: var(--main-font);
  font-size: 18px;
  line-height: 130%;
  color: #050213;
  margin: 0;
}

.auth-popup__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #0446ef;
  color: #fff;
  font-family: var(--main-font);
  font-weight: 500;
  font-size: 16px;
  border-radius: 10px;
  padding: 14px 40px;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.auth-popup__btn:hover {
  opacity: 0.85;
}

@media (width < 1547px) {
  .footer__image-wrap {
    display: none;
  }

  .footer__container {
    grid-template-columns: 1fr 40px 400px;
  }

  .footer__info {
    grid-column: 1;
  }

  .footer-description {
    grid-column: 1;
  }
}

@media (width < 1191px) {

  .footer__container {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, auto);
    gap: 30px;
  }

  .footer {
    background-color: transparent;
  }

  .footer__nav-list {
    margin-left: 0;
  }

  .footer__info {
    grid-row: 1;
    grid-column: 1;
    max-width: 100%;
    width: 100%;
  }

  .footer__legal-list {
    margin: 0;
    padding-left: 15px;
  }

  .footer__nav {
    grid-row: 2;
    grid-column: 1;
    background-color: #fff;
    border-radius: 12px;
    padding: 15px;
  }

  .footer__contacts {
    border: none;
  }

  .footer-description {
    grid-row: 3;
    grid-column: 1;
    display: flex;
    flex-direction: column-reverse;
    gap: 6px;
    padding-inline: 15px;
  }

  .footer__nav-legal {
    grid-row: 4;
    grid-column: 1;
  }


  .footer__contacts {
    background-color: #fff;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 0;
  }
}

@media (width < 774px) {
  .footer__contacts {
    flex-direction: column;
    gap: 15px;
  }

  .footer__contacts-link--email {
    margin-left: 0;
    padding-left: 0;
  }

  .footer__contacts-link--vkmax {
    border: none;
  }

  .footer__contacts-link-add {
    display: flex;
    gap: 5px;
    width: 100%;
    align-items: center;
    margin-left: 39px;
  }
}

@media (width < 600px) {

  .footer__contacts,
  .footer__nav {
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.15);
  }

  .footer__contacts-link,
  .footer__logo-name {
    font-size: 13px;
  }

  .footer__contacts-icon {
    gap: 7px;
  }

  .footer__contacts-icon {
    width: 20px;
    height: 20px;
  }

  .footer__contacts-link-add {
    font-size: 12px;
  }

  .footer__contacts-link-add>svg {
    width: 15px;
    height: 15px;
  }

  .footer__nav-link {
    font-size: 12px;
  }

  .footer__nav-list {
    gap: 12px;
  }

  .footer__logo {
    gap: 10px;
    margin-bottom: 25px;
  }

  .footer__description-1,
  .footer__description-2,
  .footer__legal-link {
    font-size: 12px;
  }

  .footer__container {
    gap: 15px;
  }

  .footer__logo-image {
    width: 35px;
    height: 34px;
  }
}

.font-style {
  font-family: var(--main-font);
}

.map-label {
  max-width: 149px;
}

.map-single-popup {
  width: 381px;
  height: 120px;
}

.map-popup {
  display: flex;
  gap: 10px;
  border-radius: 14px;
  padding: 6px 10px 6px 6px;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  background-color: #fff;
  max-width: 381px;
  width: 100%;
}

.map-popup__img {
  max-width: 128px !important;
  max-height: 108px;
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.map-popup__body {
  display: flex;
  flex-direction: column;
}

.map-popup__number {
  font-family: var(--main-font);
  font-weight: 500;
  font-size: 11px;
  line-height: 130%;
  color: #3a3a3a;
}

.map-popup__title {
  font-family: var(--coda-font);
  font-weight: 800;
  font-size: 17px;
  line-height: 130%;
  color: #000;
  margin-bottom: 29px;
}

.map-popup__price {
  font-family: var(--main-font);
  font-weight: 500;
  font-size: 16px;
  line-height: 130%;
  margin-bottom: 0;
  color: #3a3a3a;
}