:root {
  --font-family: "ElliotPro", sans-serif;
  --content-width-mobile: 100%;
  --content-width-big-mobile: 610px;
  --content-width-small-tablet: 790px;
  --content-width-tablet: 1030px;
  --content-width-desktop: 1210px;
  --content-width-big-desktop: 1360px;
  --container-offset-small: 20px;
  --container-offset: 40px;
  --container-width-big-mobile: calc(
    var(--content-width-big-mobile) + (var(--container-offset-small) * 2)
  );
  --container-width-small-tablet: calc(
    var(--content-width-small-tablet) + (var(--container-offset-small) * 2)
  );
  --container-width-tablet: calc(
    var(--content-width-tablet) + (var(--container-offset) * 2)
  );
  --container-width-desktop: calc(
    var(--content-width-desktop) + (var(--container-offset) * 2)
  );
  --container-width-big-desktop: calc(
    var(--content-width-big-desktop) + (var(--container-offset) * 2)
  );
  --grid-offset: 1.25rem;
  --light-color: #fff;
  --gainsboro-color: #dfdfdf;
  --dark-color: #1f1f1f;
  --swamp-color: #ada292;
  --gray-color: #909090;
}
.custom-checkbox__field:checked + .custom-checkbox__content::after {
  opacity: 1;
}
.custom-checkbox__field:focus + .custom-checkbox__content::before {
  outline: red solid 2px;
  outline-offset: 2px;
}
.custom-checkbox__field:disabled + .custom-checkbox__content {
  opacity: 0.4;
  pointer-events: none;
}
@font-face {
  font-family: ElliotPro;
  src: url(../fonts/FSElliotPro-Light.woff2) format("woff2");
  font-weight: 300;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: ElliotPro;
  src: url(../fonts/FSElliotPro.woff2) format("woff2");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: ElliotPro;
  src: url(../fonts/FSElliotPro-Bold.woff2) format("woff2");
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}
html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
*,
::after,
::before {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}
.page {
  height: 100%;
  font-family: var(--font-family, sans-serif);
  -webkit-text-size-adjust: 100%;
  font-size: 12px;
}
@media (min-width: 830px) {
  .page {
    font-size: 10px;
  }
}
.page__body {
  margin: 0;
  min-width: 360px;
  min-height: 100%;
  background-color: var(--light-color);
}
img {
  height: auto;
  max-width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
a {
  text-decoration: none;
}
.is-hidden {
  display: none !important;
}
.btn-reset {
  border: none;
  padding: 0;
  background-color: transparent;
  cursor: pointer;
}
.list-reset {
  list-style: none;
  margin: 0;
  padding: 0;
}
.input-reset {
  outline: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  border-radius: 0;
  background-color: #fff;
  padding: 0;
}
.input-reset::-webkit-search-cancel-button,
.input-reset::-webkit-search-decoration,
.input-reset::-webkit-search-results-button,
.input-reset::-webkit-search-results-decoration {
  display: none;
}
.visually-hidden {
  position: absolute;
  overflow: hidden;
  margin: -1px;
  border: 0;
  padding: 0;
  width: 1px;
  height: 1px;
  clip: rect(0 0 0 0);
}
.container {
  margin: 0 auto;
  padding: 0 var(--container-offset-small);
  max-width: var(--content-width-mobile);
}
@media (min-width: 650px) {
  .container {
    max-width: var(--container-width-big-mobile);
  }
}
@media (min-width: 830px) {
  .container {
    max-width: var(--container-width-small-tablet);
  }
}
@media (min-width: 1110px) {
  .page {
    font-size: 12px;
  }
  .container {
    padding: 0 var(--container-offset);
    max-width: var(--container-width-tablet);
  }
}
@media (min-width: 1290px) {
  .page {
    font-size: 14px;
  }
  .container {
    max-width: var(--container-width-desktop);
  }
}
@media (min-width: 1440px) {
  .page {
    font-size: 16px;
  }
  .container {
    max-width: var(--container-width-big-desktop);
  }
}

.page-header {
    text-align: center;
    background-color: #edf0f0;
    padding-bottom: 15px;
}

.breadcrumbs {
    padding-top: 12px;
}

.page-header__headline {
    margin-top: 10px;
    margin-bottom: 0;
}

.headline {
    font-family: ElliotBold;
    text-transform: uppercase;
}

.page-content__search-header {
    margin-top: 20px;
    margin-bottom: 20px;
    text-align: center;
}

a._underlined, .link._underlined {
    text-decoration: underline;
}

.navbar__social-link-icon {
  background-image: url(/img/max.png);
  width: 12px;
  height: 12px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
} 
.js-focus-visible :focus:not(.focus-visible) {
  outline: 0;
}
.centered {
  text-align: center;
}
.dis-scroll {
  position: fixed;
  left: 0;
  top: 0;
  overflow: hidden;
  width: 100%;
  height: 100vh;
  -ms-scroll-chaining: none;
  overscroll-behavior: none;
}
.page--ios .dis-scroll {
  position: relative;
}
.grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr) [12];
  grid-template-columns: repeat(12, 1fr);
  -webkit-column-gap: var(--grid-offset);
  -moz-column-gap: var(--grid-offset);
  column-gap: var(--grid-offset);
}
.navbar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.navbar__link-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 25px;
  -moz-column-gap: 25px;
  column-gap: 25px;
}

@media (max-width: 1290px) {
  .navbar__link-list {
      column-gap: 15px;
  }
}

.navbar__item {
  display: inline-block;
  font-size: 0;
}
.navbar__link {
  padding-bottom: 6px;
  vertical-align: bottom;
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--dark-color);
  text-transform: uppercase;
}
.navbar__link::before {
  display: block;
  content: attr(title);
  font-weight: 700;
  height: 0;
  overflow: hidden;
  visibility: hidden;
}
.navbar__link:active {
  border-bottom: 1px solid var(--dark-color);
  font-weight: 700;
}
.navbar__social-list {
  margin-right: 17px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-column-gap: 10px;
  -moz-column-gap: 10px;
  column-gap: 10px;
}
.navbar__social-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  background-color: #000;
}
.navbar__social-link svg {
  width: 13px;
  height: 13px;
  fill: var(--light-color);
}
.navbar__tel {
  margin-right: 46px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark-color);
}
.navbar__lang {
  border-bottom: 1px solid var(--dark-color);
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark-color);
}
.navbar__logo {
  width: 163px;
  height: 16px;
}
.navbar__list-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
}
.navbar__icon {
  position: relative;
}
.navbar__icon svg {
  width: 24px;
  height: 24px;
  fill: var(--dark-color);
  -webkit-transition: fill 0.3s ease-in-out;
  transition: fill 0.3s ease-in-out;
}
.vertical-card {
  -ms-grid-column-span: 12;
  grid-column: 12 span;
}
.vertical-card__img-wrapper {
  height: auto;
  aspect-ratio: 320/415;
}
@media (min-width: 650px) {
  .navbar__logo {
    width: auto;
    height: auto;
  }
  .vertical-card__img-wrapper {
    aspect-ratio: 1/1.29851;
  }
}
.vertical-card .img-wrapper img {
  top: 0;
  left: 0;
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
  -webkit-transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
@media (min-width: 830px) {
  .vertical-card {
    -ms-grid-column-span: 6;
    grid-column: 6 span;
    -ms-grid-row-span: 2;
    grid-row: 2 span;
  }
}
@media (any-hover: hover) {
  .navbar__link:hover {
    border-bottom: 1px solid var(--dark-color);
    font-weight: 700;
  }
  .navbar__tel:hover {
    border-bottom: 1px solid var(--dark-color);
  }
  .navbar .search-icon svg:hover {
    fill: var(--swamp-color);
  }
  .vertical-card:hover img {
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
  }
}
.horizontal-card {
  -ms-grid-column-span: 12;
  grid-column: 12 span;
}
.horizontal-card__img-wrapper {
  height: auto;
  aspect-ratio: 320/200;
}
.horizontal-card__img-wrapper img {
  height: 100%;
}
@media (min-width: 650px) {
  .horizontal-card__img-wrapper img {
    height: auto;
  }
  .horizontal-card__img-wrapper {
    aspect-ratio: 2.09375/1;
  }
}
.horizontal-card .img-wrapper img {
  top: 0;
  left: 0;
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
  -webkit-transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
@media (min-width: 830px) {
  .horizontal-card {
    -ms-grid-column-span: 6;
    grid-column: 6 span;
  }
}
@media (any-hover: hover) {
  .horizontal-card:hover img {
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
  }
}
.big-horizontal-card {
  -ms-grid-column-span: 12;
  grid-column: 12 span;
}
.big-horizontal-card__img-wrapper {
  height: auto;
  aspect-ratio: 320/200;
}
@media (min-width: 650px) {
  .big-horizontal-card__img-wrapper {
    aspect-ratio: 2.09375/1;
  }
}
.big-horizontal-card__img-wrapper img:first-child {
  display: none;
}
.big-horizontal-card .img-wrapper img {
  top: 0;
  left: 0;
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
  -webkit-transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
@media (any-hover: hover) {
  .big-horizontal-card:hover img {
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
  }
}
.card {
  cursor: default;
}
.card__subtitle {
  margin: 0 0 1.1667em;
  text-align: center;
  font-size: 1em;
  font-weight: 700;
  letter-spacing: 0.496px;
  color: var(--swamp-color);
  text-transform: uppercase;
}
@media (min-width: 650px) {
  .big-horizontal-card__img-wrapper img:first-child {
    display: block;
  }
  .big-horizontal-card__img-wrapper img:last-child {
    display: none;
  }
  .card__subtitle {
    margin-bottom: 0.7333em;
    font-size: 0.9375rem;
    line-height: 1.38em;
  }
}
.card__title {
  display: block;
  margin: 0 auto 1em;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  font-size: 1.6667rem;
  font-weight: 400;
  line-height: 1.4em;
  letter-spacing: 0.496px;
  color: var(--dark-color);
}
@media (min-width: 830px) {
  .big-horizontal-card__img-wrapper {
    aspect-ratio: 3.0222/1;
  }
  .big-horizontal-card {
    -ms-grid-column-span: 12;
    grid-column: 12 span;
  }
  .card__title {
    margin-bottom: 1.3667em;
  }
}
.cinema-card__img-wrapper {
  height: auto;
  aspect-ratio: 320/482;
}
.cinema-card__img-wrapper img {
  height: 100%;
}
@media (min-width: 650px) {
  .card__title {
    font-size: 1.875rem;
  }
  .cinema-card__img-wrapper {
    aspect-ratio: 1/1.507692;
  }
  .cinema-card__img-wrapper img {
    height: auto;
  }
}
.cinema-card__title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  margin: 0.45em 0 0;
  font-weight: 400;
  line-height: 1.7936em;
  font-size: 1.6667rem;
  letter-spacing: 0.496px;
  color: var(--dark-color);
}
@media (min-width: 650px) {
  .cinema-card__title {
    margin-top: 1.4em;
    font-size: 1.5625rem;
  }
}
.cinema-card__genre {
  cursor: default;
  margin: 11px 0 0;
  font-size: 1.3333rem;
  font-weight: 400;
  line-height: 1.4em;
  letter-spacing: 0.496px;
  color: var(--gray-color);
}
@media (min-width: 650px) {
  .cinema-card__genre {
    margin-top: 0.2778em;
    font-size: 1.25rem;
  }
}
.cinema-card__session {
  cursor: default;
  margin: 45px 0 0;
  font-size: 1.1667rem;
  font-weight: 700;
  line-height: 1.38em;
  letter-spacing: 0.496px;
  color: var(--swamp-color);
  text-transform: uppercase;
}
@media (min-width: 650px) {
  .cinema-card__session {
    margin-top: 2.5333em;
    font-size: 0.9375rem;
  }
}
.cinema-card__session-block {
  margin-top: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 20px;
}
.cinema-card__session-time {
  max-width: 80px;
  width: 100%;
  background-color: var(--light-color);
  border: 1px solid var(--gainsboro-color);
  text-align: center;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 2.2em;
  color: #000;
}
.cinema-card .img-wrapper img {
  top: 0;
  left: 0;
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
  -webkit-transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
@media (any-hover: hover) {
  .cinema-card:hover img {
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
  }
}
.shop-card {
  cursor: default;
  -ms-grid-column-span: 12;
  grid-column: 12 span;
}
@media (min-width: 650px) {
  .cinema-card__session-block {
    margin-top: 1.125rem;
    gap: 1.25rem;
  }
  .cinema-card__session-time {
    max-width: 6.3333em;
    font-size: 0.9375rem;
    line-height: 2.3333em;
  }
  .shop-card {
    -ms-grid-column-span: 6;
    grid-column: 6 span;
  }
}
@media (min-width: 830px) {
  .shop-card {
    -ms-grid-column-span: 4;
    grid-column: 4 span;
  }
}
.shop-card__img-wrapper {
  margin-bottom: 14px;
  height: auto;
  aspect-ratio: 440/220;
}
@media (min-width: 650px) {
  .shop-card__img-wrapper {
    margin-bottom: 2.375rem;
  }
}
.shop-card__title {
  display: block;
  margin: 0 0 14px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.6667rem;
  font-weight: 400;
  line-height: 1.4em;
  letter-spacing: 0.496px;
  color: var(--dark-color);
}
@media (min-width: 650px) {
  .shop-card__title {
    margin-bottom: 0.48em;
    font-size: 1.5625rem;
  }
}
.shop-card__descr {
  display: block;
  margin: 0 0 14px;
  font-size: 1.3333rem;
  font-weight: 400;
  line-height: 1.4em;
  letter-spacing: 0.496px;
  color: var(--gray-color);
}
@media (min-width: 650px) {
  .shop-card__descr {
    margin-bottom: 0.8em;
    min-height: 3.2em;
    font-size: 1.25rem;
    line-height: 1.6em;
  }
}
.shop-card__bottom-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.shop-card__floor {
  display: block;
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.38em;
  letter-spacing: 0.496px;
  color: var(--swamp-color);
  text-transform: uppercase;
}
@media (min-width: 650px) {
  .shop-card__floor {
    font-size: 0.9375rem;
  }
}
.shop-card__more {
  display: block;
  text-align: right;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.38em;
  letter-spacing: 0.496px;
  color: #000;
  -webkit-text-decoration-line: underline;
  text-decoration-line: underline;
  text-transform: uppercase;
}
.shop-card .img-wrapper img {
  top: 0;
  left: 0;
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
  -webkit-transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
@media (any-hover: hover) {
  .shop-card:hover img {
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
  }
}
.img-wrapper {
  display: block;
  position: relative;
  width: 100%;
  overflow: hidden;
}
.img-wrapper img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.breadcrumbs {
  -ms-grid-column-span: 12;
  grid-column: 12 span;
}
.breadcrumbs__list {
  margin-bottom: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  row-gap: 10px;
}
@media (min-width: 650px) {
  .shop-card__more {
    font-size: 0.9375rem;
  }
  .breadcrumbs__list {
    margin-bottom: 8px;
  }
}
.breadcrumbs__item,
.breadcrumbs__item a {
  font-size: 16px;
  font-weight: 400;
  color: var(--dark-color);
}
.breadcrumbs__item:not(:last-child),
.breadcrumbs__item:not(:last-child) a {
  color: var(--gray-color);
}
.breadcrumbs__item:not(:last-child)::after {
  content: "/";
  margin-right: 10px;
  margin-left: 5px;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
}
.breadcrumbs__title {
  margin: 0;
  font-size: 2.0833rem;
  font-weight: 400;
  line-height: 1.4em;
  color: var(--dark-color);
}
.filter {
  -ms-grid-column-span: 12;
  grid-column: 12 span;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.filter__search-block {
  width: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr) [6];
  grid-template-columns: repeat(6, 1fr);
  -webkit-column-gap: 20px;
  -moz-column-gap: 20px;
  column-gap: 20px;
  row-gap: 16px;
}
.filter__item {
  position: relative;
  -ms-grid-column-span: 3;
  grid-column: 3 span;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--gainsboro-color);
}
.filter__item:nth-child(2n + 1) .filter__search-list-wrapper {
  left: 0;
}
.filter__search-btn {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.filter__search-btn span {
  font-size: 15px;
  font-weight: 400;
  color: #000;
}
.filter__search-btn svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: #333;
  stroke-width: 1px;
}
.filter__drop-list-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 5;
  min-width: 100vw;
  min-height: 100%;
}
.filter__drop-list-overlay_visible {
  display: block;
}
.filter__search-list-wrapper {
  display: none;
  position: absolute;
  top: 48px;
  right: 0;
  z-index: 10;
  padding: 27px 9px 30px 30px;
  min-width: 210px;
  width: 100%;
  border: 1px solid var(--gainsboro-color);
  background: var(--light-color);
  -webkit-box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.1);
}
.filter__search-list-wrapper_visible {
  display: block;
}
@media (min-width: 650px) {
  .breadcrumbs__title {
    font-size: 2.8125rem;
    line-height: 1.4em;
  }
  .filter__item {
    -ms-grid-column-span: 2;
    grid-column: 2 span;
  }
  .filter__search-list-wrapper {
    left: 0;
  }
}
.filter__search-list {
  overflow-y: scroll;
  max-height: 220px;
  padding-right: 18px;
  scrollbar-color: #000 var(--gainsboro-color);
  scrollbar-width: thin;
}
.filter__search-list::-webkit-scrollbar {
  width: 4px;
}
.filter__search-list::-webkit-scrollbar-track {
  background: -webkit-gradient(
    linear,
    right top,
    left top,
    from(rgba(223, 223, 223, 0)),
    color-stop(30%, rgba(223, 223, 223, 0)),
    color-stop(50%, #dfdfdf),
    color-stop(70%, rgba(223, 223, 223, 0)),
    to(rgba(223, 223, 223, 0))
  );
  background: linear-gradient(
    to left,
    rgba(223, 223, 223, 0) 0,
    rgba(223, 223, 223, 0) 30%,
    #dfdfdf 50%,
    rgba(223, 223, 223, 0) 70%,
    rgba(223, 223, 223, 0) 100%
  );
}
.filter__search-list::-webkit-scrollbar-thumb {
  background-color: #000;
}
.filter__search-item {
  cursor: pointer;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--gainsboro-color);
  font-size: 14px;
  font-weight: 400;
  color: var(--dark-color);
}
.filter__search-item:not(:first-child) {
  padding-top: 8px;
}
@media (any-hover: hover) {
  .filter__search-item:hover {
    font-weight: 700;
    border-color: #000;
  }
}
.filter__sort-block {
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 10px;
  -moz-column-gap: 10px;
  column-gap: 10px;
}

.filter__sort-block span {
  font-size: 15px;
  font-weight: 400;
  color: #000;
}
@media (min-width: 1110px) {
  .filter__search-block {
    max-width: 41.875rem;
  }
  /* .filter__sort-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  } */
}
.filter__sort-btn {
  padding: 10px 20px;
  border: 1px solid var(--gainsboro-color);
  background-color: var(--light-color);
  font-weight: 400;
  font-size: 15px;
  color: #000;
}
.filter__sort-btn_active {
  border-color: #000;
}
.search-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.search-wrapper svg {
  width: 16px;
  height: 16px;
  fill: var(--dark-color);
}
.search-field {
  width: calc(100% - 16px);
  font-size: 15px;
  font-weight: 400;
  color: var(--gray-color);
}
.search-field::-webkit-input-placeholder {
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
}
.search-field::-moz-placeholder {
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
}
.search-field:-ms-input-placeholder {
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
}
.search-field::-ms-input-placeholder {
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
}
.search-field::placeholder {
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
}
.search-field:focus::-webkit-input-placeholder {
  color: transparent;
}
.search-field:focus::-moz-placeholder {
  color: transparent;
}
.search-field:focus:-ms-input-placeholder {
  color: transparent;
}
.search-field:focus::-ms-input-placeholder {
  color: transparent;
}
.search-field:focus::placeholder {
  color: transparent;
}
.info-list {
  -ms-grid-column-span: 12;
  grid-column: 12 span;
}
@media (min-width: 830px) {
  .info-list {
    -ms-grid-column-span: 5;
    grid-column: 5 span;
  }
}
.info-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.info-list__item:not(:last-child) {
  margin-bottom: 14px;
}
.info-list__item svg {
  margin-right: 20px;
  width: 1.25rem;
  height: 1.25rem;
  fill: var(--swamp-color);
}
.info-list__text {
  font-size: 1.3333rem;
  font-weight: 400;
  line-height: 1.4em;
  letter-spacing: 0.496px;
  color: #000;
}
.btn-map {
  -ms-grid-column-span: 12;
  grid-column: 12 span;
  border: 1px solid #000;
  background: var(--light-color);
  max-width: 210px;
  width: 100%;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #000;
}
@media (min-width: 830px) {
  .btn-map {
    -ms-grid-column-span: 5;
    grid-column: 5 span;
  }
}
.btn-map svg {
  margin-right: 20px;
  width: 20px;
  height: 20px;
  fill: currentColor;
}
.btn-map span {
  font-size: 15px;
  font-weight: 400;
  line-height: 40px;
  color: inherit;
}
.btn-white {
  -webkit-transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}
.btn-tr {
  -webkit-transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}
.btn-dark {
  -webkit-transition: background-color 0.3s ease-in-out, border 0.3s ease-in-out,
    color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out, border 0.3s ease-in-out,
    color 0.3s ease-in-out;
}
@media (any-hover: hover) {
  .btn-tr:hover,
  .btn-white:hover {
    background-color: var(--dark-color);
    color: var(--light-color);
  }
  .btn-dark:hover {
    background-color: transparent;
    border: 1px solid var(--dark-color);
    color: var(--dark-color);
  }
}
.contact-form {
  margin-bottom: 63px;
  -ms-grid-column-span: 12;
  grid-column: 12 span;
  background-color: #f5f5f5;
}
.contact-form__content {
  padding-top: 70px;
  padding-bottom: 69px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: end;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (min-width: 650px) {
  .filter__sort-block {
    -webkit-column-gap: var(--grid-offset);
    -moz-column-gap: var(--grid-offset);
    column-gap: var(--grid-offset);
  }
  .info-list__item:not(:last-child) {
    margin-bottom: 12px;
  }
  .info-list__text {
    font-size: 1.25rem;
  }
  .contact-form {
    margin-bottom: 7.875rem;
  }
  .contact-form__content {
    padding: 4.375rem 5rem 4.75rem;
  }
}
@media (min-width: 830px) {
  .contact-form {
    background-color: transparent;
  }
  .contact-form__content {
    background-color: #f5f5f5;
  }
}
.contact-form__title {
  margin: 0 0 48px;
  width: 100%;
  font-size: 25px;
  font-weight: 400;
  line-height: 1.4em;
  color: var(--dark-color);
}
@media (min-width: 650px) {
  .contact-form__title {
    margin-bottom: 50px;
    font-size: 1.875rem;
  }
}
.contact-form__field {
  margin-bottom: 51px;
  width: 100%;
  background-color: #f5f5f5;
  padding-bottom: 19px;
  border-bottom: 1px solid #c3c3c3;
  font-size: 16px;
  font-weight: 400;
  color: #000;
}
.contact-form__field:not(:last-of-type) {
  margin-bottom: 17px;
  width: 100%;
}
@media (min-width: 650px) {
  .contact-form__field:not(:last-of-type) {
    margin-bottom: 1.25rem;
  }
  .contact-form__field {
    margin-bottom: 3.125rem;
    padding-bottom: 1.25rem;
  }
}
.contact-form__field::-webkit-input-placeholder {
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
}
.contact-form__field::-moz-placeholder {
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
}
.contact-form__field:-ms-input-placeholder {
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
}
.contact-form__field::-ms-input-placeholder {
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
}
.contact-form__field::placeholder {
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
}
.contact-form__field:focus::-webkit-input-placeholder {
  color: transparent;
}
.contact-form__field:focus::-moz-placeholder {
  color: transparent;
}
.contact-form__field:focus:-ms-input-placeholder {
  color: transparent;
}
.contact-form__field:focus::-ms-input-placeholder {
  color: transparent;
}
.contact-form__field:focus::placeholder {
  color: transparent;
}
@media (min-width: 830px) {
  .contact-form__field:not(:last-of-type) {
    margin: 0 1.25rem 0 0;
    width: 13.125rem;
  }
  .contact-form__field {
    margin: 0 3.3rem 0 0;
    width: 20.3125rem;
  }
}
.contact-form__btn-sub {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
  width: 100%;
  background-color: #000;
  border: 1px solid var(--dark-color);
  padding: 20px 106px;
  color: #e1e1e1;
  font-size: 18px;
  font-weight: 400;
  text-transform: uppercase;
}
@media (min-width: 650px) {
  .contact-form__btn-sub {
    padding: 1.1667em 4.25em;
    font-size: 1.125rem;
  }
}
@media (min-width: 830px) {
  .contact-form__btn-sub {
    width: auto;
    -webkit-box-ordinal-group: unset;
    -ms-flex-order: unset;
    order: unset;
  }
}
@media (min-width: 1110px) {
  .contact-form__field {
    margin-right: 5.5rem;
  }
  .contact-form__btn-sub {
    padding-right: 6em;
    padding-left: 6em;
  }
}
.contact-form__attention {
  margin-top: 0;
  margin-bottom: 22px;
  width: 100%;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4em;
  letter-spacing: 0.496px;
  color: #c3c3c3;
}
@media (min-width: 650px) {
  .contact-form__attention {
    margin-bottom: 1.25rem;
    text-align: start;
    font-size: 0.875rem;
  }
}
@media (min-width: 830px) {
  .contact-form__attention {
    margin-bottom: 0;
    margin-top: 1.2857em;
  }
}
.contact-form__attention a {
  color: inherit;
  text-decoration: underline;
}
.modal-success-wrapper {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1001;
  width: 100vw;
  height: 100vh;
  background: rgba(31, 31, 31, 0.85);
}
.modal-success-wrapper_visible {
  display: block;
}
.modal-success {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-color: var(--light-color);
  width: 320px;
  height: 251px;
  padding: 38px 15px;
}
.modal-success__btn-cross {
  position: absolute;
  top: 10px;
  right: 10px;
}
.modal-success__btn-cross svg {
  width: 16px;
  height: 16px;
  fill: #000;
}
.modal-success__title {
  margin: 0 0 2px;
  text-align: center;
  font-size: 2.9167rem;
  font-weight: 400;
  line-height: 1.4em;
  color: var(--dark-color);
}
@media (min-width: 650px) {
  .modal-success {
    width: 41.875rem;
    height: 23.125rem;
    padding: 3.375rem 7.1875rem;
  }
  .modal-success__btn-cross {
    top: 1em;
    right: 0.6875em;
  }
  .modal-success__btn-cross svg {
    width: 25px;
    height: 25px;
    fill: #000;
  }
  .modal-success__title {
    margin-bottom: 0.0909em;
    font-size: 3.4375rem;
  }
}
.modal-success__text {
  margin: 0 0 48px;
  text-align: center;
  font-size: 1.3333rem;
  font-weight: 400;
  line-height: 1.4em;
  letter-spacing: 0.496px;
  color: #000;
}
@media (min-width: 650px) {
  .modal-success__text {
    margin-bottom: 2em;
    font-size: 1.5625rem;
  }
}
@media (min-width: 1110px) {
  .modal-success__text {
    margin-bottom: 2.68em;
  }
}
.modal-success__btn {
  margin: 0 auto;
  display: block;
  width: 239px;
  background-color: #000;
  border: 1px solid var(--dark-color);
  padding: 12px 26px;
  text-align: center;
  color: #e1e1e1;
  font-size: 1.1667rem;
  font-weight: 400;
  text-transform: uppercase;
}
@media (min-width: 650px) {
  .modal-success__btn {
    margin: 0;
    width: 100%;
    font-size: 1.125rem;
    padding: 1.1111em 5.2222em;
  }
}
.header {
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--light-color);
  border-bottom: 1px solid var(--gainsboro-color);
}
.header__top {
  display: none;
}
@media (min-width: 1110px) {
  .header__top {
    display: block;
    height: 60px;
    padding-top: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--gainsboro-color);
  }
}
.header__bottom {
  height: 65px;
  padding-top: 20px;
  padding-bottom: 20px;
}
.header__bottom .navbar__iconlink:not(:first-child),
.header__bottom .navbar__link-list {
  display: none;
}
.header__bottom .navbar__iconlink_hidden {
  opacity: 0;
  pointer-events: none;
}
.header__bottom .navbar__iconlink_disable .navbar__icon svg {
  fill: var(--swamp-color);
}
.btn-burger div {
  width: 24px;
  height: 2px;
  background-color: var(--dark-color);
}
.btn-burger div:not(:last-child) {
  margin-bottom: 6px;
}
.btn-burger div:nth-child(2) {
  width: 20px;
}
.btn-burger svg {
  display: none;
  width: 24px;
  height: 24px;
  fill: #000;
}
.btn-burger_cross div {
  display: none;
}
.btn-burger_cross svg {
  display: block;
}
.search-block {
  display: none;
  position: absolute;
  top: 66px;
  left: 0;
  z-index: 10;
  min-width: 100%;
  min-height: 7.5625rem;
}
@media (min-width: 650px) {
  .header__bottom {
    height: 90px;
    padding-top: 35px;
    padding-bottom: 35px;
  }
  .search-block {
    top: 91px;
  }
}
@media (min-width: 1110px) {
  .header__bottom .navbar__link-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .header__bottom .navbar__iconlink:not(:first-child) {
    display: list-item;
  }
  .btn-burger {
    display: none;
  }
  .search-block {
    top: 151px;
  }
}
.search-block_visible {
  display: block;
}
.search-block__overlay {
  position: fixed;
  top: 0;
  left: 0;
  min-width: 100vw;
  min-height: 100%;
}
.search-block__content {
  position: relative;
  z-index: 10;
  background-color: var(--light-color);
  border-bottom: 0 solid var(--gainsboro-color);
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: 0fr;
  grid-template-rows: 0fr;
  overflow: hidden;
  -webkit-transition: grid-template-rows 0.3s ease-in-out,
    padding 0.3s ease-in-out, border-width 0.3s ease-in-out;
  transition: grid-template-rows 0.3s ease-in-out, padding 0.3s ease-in-out,
    border-width 0.3s ease-in-out, -ms-grid-rows 0.3s ease-in-out;
}
.search-block__content_show {
  padding-top: 23px;
  padding-bottom: 23px;
  border-width: 1px;
  -ms-grid-rows: 1fr;
  grid-template-rows: 1fr;
  -webkit-animation: 0.5s search;
  animation: 0.5s search;
}
@media (min-width: 650px) {
  .search-block__content_show {
    padding-top: 2.375rem;
    padding-bottom: 2.375rem;
    -webkit-animation: 0.5s search-for-bm;
    animation: 0.5s search-for-bm;
  }
}
.search-block__container {
  width: 100%;
  min-height: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: end;
}
.search-block__btn-close {
  display: none;
  width: 1.875rem;
  height: 1.875rem;
}
.search-block__btn-close svg {
  width: 1.875rem;
  height: 1.875rem;
  fill: var(--swamp-color);
}
.search-block .search-wrapper {
  margin: 0 auto;
  width: 100%;
  padding-bottom: 19px;
  border-bottom: 1px solid var(--gainsboro-color);
}
.search-block .search-field {
  font-size: 1.3333rem;
}
@media (min-width: 650px) {
  .search-block .search-wrapper {
    padding-bottom: 0.4375rem;
  }
  .search-block .search-field {
    font-size: 1.6rem;
  }
}
.search-block .btn-search,
.search-block .btn-search svg {
  width: 24px;
  height: 24px;
}
@media (min-width: 1110px) {
  .search-block__content_show {
    padding-top: 1.25rem;
    -webkit-animation: 0.5s search-for-tablet;
    animation: 0.5s search-for-tablet;
  }
  .search-block__btn-close {
    display: inline-block;
  }
  .search-block .search-wrapper {
    max-width: 56.25rem;
  }
  .search-block .search-field {
    font-size: 1.125rem;
  }
  .search-block .btn-search,
  .search-block .btn-search svg {
    width: 1.5rem;
    height: 1.5rem;
  }
}
.burger-wrapper {
  display: none;
  position: absolute;
  top: 66px;
  left: 0;
  z-index: 10;
  min-width: 100%;
  min-height: 100%;
}
@media (min-width: 650px) {
  .burger-wrapper {
    top: 91px;
  }
}
.burger-wrapper_visible {
  display: block;
}
.burger-overlay {
  position: fixed;
  top: 66px;
  left: 0;
  min-width: 100vw;
  min-height: 100%;
}
.burger-menu {
  position: relative;
  z-index: 10;
  background-color: var(--light-color);
  border-bottom: 0 solid var(--gainsboro-color);
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: 0fr;
  grid-template-rows: 0fr;
  overflow: hidden;
  -webkit-transition: grid-template-rows 0.3s ease-in-out,
    padding 0.3s ease-in-out, border-width 0.3s ease-in-out;
  transition: grid-template-rows 0.3s ease-in-out, padding 0.3s ease-in-out,
    border-width 0.3s ease-in-out, -ms-grid-rows 0.3s ease-in-out;
}
.burger-menu_show {
  padding-top: 50px;
  padding-bottom: 70px;
  border-width: 1px;
  -ms-grid-rows: 1fr;
  grid-template-rows: 1fr;
  -webkit-animation: 0.5s burger;
  animation: 0.5s burger;
}
.burger-menu__container {
  width: 100%;
  min-height: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.burger-menu__top {
  position: relative;
  width: 100%;
  padding-bottom: 50px;
}
.burger-menu__top::after {
  position: absolute;
  bottom: 0;
  left: -20px;
  content: "";
  width: 100vw;
  height: 1px;
  background-color: var(--gainsboro-color);
}
@media (min-width: 850px) {
  .burger-overlay {
    top: 91px;
  }
  .burger-menu__container {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .burger-menu__top::after {
    content: unset;
  }
  .burger-menu__top {
    width: auto;
    padding-bottom: 0;
  }
}
.burger-menu__top .navbar__link-list {
  max-height: 130px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-column-gap: 20px;
  -moz-column-gap: 20px;
  column-gap: 20px;
  row-gap: 20px;
}
.burger-menu__top .navbar__item {
  min-width: 150px;
}
.burger-menu__top .navbar__link {
  font-size: 1.1667rem;
}
.burger-menu__bottom {
  padding-top: 50px;
}
@media (min-width: 850px) {
  .burger-menu__top .navbar__link-list {
    -webkit-column-gap: 60px;
    -moz-column-gap: 60px;
    column-gap: 60px;
  }
  .burger-menu__top .navbar__item {
    min-width: unset;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
  .burger-menu__bottom {
    padding-top: 0;
  }
}
.burger-menu__bottom .navbar__link-list {
  margin-bottom: 50px;
}
.burger-menu__bottom .navbar__link {
  font-size: 1.1667rem;
}
.burger-menu__bottom .navbar__social-list {
  margin-right: 0;
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-column-gap: 10px;
  -moz-column-gap: 10px;
  column-gap: 10px;
}
.burger-menu__bottom .navbar__social-link {
  border-radius: 50%;
  width: 25px;
  height: 25px;
  background-color: #000;
}
.burger-menu__bottom .navbar__social-link svg {
  width: 15px;
  height: 15px;
  fill: var(--light-color);
}
.burger-menu__bottom .navbar__tel {
  margin: 0 0 20px;
  display: block;
  width: 100%;
  text-align: center;
  font-size: 1.5rem;
}
.burger-menu__bottom .navbar__list-group {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 20px;
}
.burger-menu__bottom .navbar__lang {
  font-size: 1.3333rem;
}
.burger-menu .search-wrapper {
  margin-top: 54px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--gainsboro-color);
  width: 100%;
}
@-webkit-keyframes burger {
  0% {
    padding-top: 0;
    padding-bottom: 0;
    grid-template-rows: 0fr;
  }
  100% {
    padding-top: 50px;
    padding-bottom: 70px;
    grid-template-rows: 1fr;
  }
}
@keyframes burger {
  0% {
    padding-top: 0;
    padding-bottom: 0;
    -ms-grid-rows: 0fr;
    grid-template-rows: 0fr;
  }
  100% {
    padding-top: 50px;
    padding-bottom: 70px;
    -ms-grid-rows: 1fr;
    grid-template-rows: 1fr;
  }
}
@-webkit-keyframes search {
  0% {
    padding-top: 0;
    padding-bottom: 0;
    grid-template-rows: 0fr;
  }
  100% {
    padding-top: 23px;
    padding-bottom: 23px;
    grid-template-rows: 1fr;
  }
}
@keyframes search {
  0% {
    padding-top: 0;
    padding-bottom: 0;
    -ms-grid-rows: 0fr;
    grid-template-rows: 0fr;
  }
  100% {
    padding-top: 23px;
    padding-bottom: 23px;
    -ms-grid-rows: 1fr;
    grid-template-rows: 1fr;
  }
}
@-webkit-keyframes search-for-bm {
  0% {
    padding-top: 0;
    padding-bottom: 0;
    grid-template-rows: 0fr;
  }
  100% {
    padding-top: 2.375rem;
    padding-bottom: 2.375rem;
    grid-template-rows: 1fr;
  }
}
@keyframes search-for-bm {
  0% {
    padding-top: 0;
    padding-bottom: 0;
    -ms-grid-rows: 0fr;
    grid-template-rows: 0fr;
  }
  100% {
    padding-top: 2.375rem;
    padding-bottom: 2.375rem;
    -ms-grid-rows: 1fr;
    grid-template-rows: 1fr;
  }
}
@-webkit-keyframes search-for-tablet {
  0% {
    padding-top: 0;
    padding-bottom: 0;
    grid-template-rows: 0fr;
  }
  100% {
    padding-top: 1.25rem;
    padding-bottom: 2.375rem;
    grid-template-rows: 1fr;
  }
}
@keyframes search-for-tablet {
  0% {
    padding-top: 0;
    padding-bottom: 0;
    -ms-grid-rows: 0fr;
    grid-template-rows: 0fr;
  }
  100% {
    padding-top: 1.25rem;
    padding-bottom: 2.375rem;
    -ms-grid-rows: 1fr;
    grid-template-rows: 1fr;
  }
}
.hero {
  width: 100%;
  height: 480px;
}
@media (min-width: 650px) {
  .hero {
    height: 350px;
  }
}
@media (min-width: 1110px) {
  .hero {
    height: 700px;
  }
}
@media (min-width: 1921px) {
  .hero {
    max-height: 700px;
    aspect-ratio: 1920/700;
  }
}
.hero_sec {
  overflow: hidden;
  height: auto;
  max-height: 600px;
  aspect-ratio: 360/600;
}
.hero_sec__container {
  /* max-height: 600px; */
  height: 100%;
  padding-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: end;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (min-width: 650px) {
  .hero_sec {
    aspect-ratio: 1920/600;
  }
  .hero_sec .hero__img-bcg {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  .hero_sec__container {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
    padding-bottom: 2.8125rem;
  }
}
.hero_sec__img-wrapper {
  max-width: 30%;
  height: auto;
  aspect-ratio: 440/200;
  position: absolute;
  margin-left: 15px;
  margin-bottom: 15px;
}
.img-wrapper.hero_sec__img-wrapper {
	left: 0%;
}
.hero__swiper {
  width: 100%;
  height: 100%;
}
.hero__slide {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.hero__img-bcg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: inherit;
}
.hero__text {
  margin: 0 0 1.6667em;
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  color: var(--swamp-color);
  text-transform: uppercase;
}
@media (min-width: 650px) {
  .hero__img-bcg {
    display: block;
  }
  .hero__img-bcg_mob {
    display: none;
  }
  .hero__text {
    margin: 0;
    font-size: 0.9375rem;
  }
}
.hero__title {
  margin: 0 0 0.9091em;
  text-align: center;
  font-size: 1.8333rem;
  font-weight: 400;
  color: var(--dark-color);
}
@media (min-width: 650px) {
  .hero__title {
    margin-bottom: 0.7636em;
    font-size: 3.4375rem;
    line-height: 1.4em;
  }
}
.hero__btn {
  display: block;
  margin: 0 auto;
  padding: 0.8571em 1.8571em;
  background-color: var(--light-color);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  font-size: 1.1667rem;
  font-weight: 400;
  color: var(--dark-color);
  text-transform: uppercase;
}
@media (min-width: 650px) {
  .hero__btn {
    padding: 1.1111em 4.1111em;
    font-size: 1.125rem;
  }
}
.info-section {
  padding-top: 5.5rem;
}
.info-section__container {
  row-gap: 4rem;
}
@media (min-width: 650px) {
  .info-section__container {
    row-gap: 2.8rem;
  }
}
@media (min-width: 830px) {
  .info-section__container {
    row-gap: 3.4rem;
  }
  .info-section__container_news .horizontal-card:nth-child(3) .card__title {
    min-height: 2.8em;
  }
}
@media (min-width: 1110px) {
  .info-section__container {
    row-gap: 4.6667rem;
  }
}
@media (min-width: 1290px) {
  .info-section__container {
    row-gap: 4.8571rem;
  }
}
@media (min-width: 1440px) {
  .info-section__container {
    row-gap: 4.5625rem;
  }
}
.info-section__container_news {
  -ms-grid-column-span: 12;
  grid-column: 12 span;
}
@media (min-width: 830px) {
  .info-section {
    padding-top: 7rem;
  }
}
@media (min-width: 1110px) {
  .info-section {
    padding-top: 8.4375rem;
  }
}
.cinema-section {
  padding-top: 5.3333rem;
  padding-bottom: 5.3333rem;
}
@media (min-width: 650px) {
  .cinema-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}
@media (min-width: 1110px) {
  .cinema-section {
    padding-top: 8.0625rem;
    padding-bottom: 8.125rem;
  }
}
.cinema-section__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 0 0 0.68em;
  font-size: 2.0833rem;
  font-weight: 400;
  line-height: 1.4em;
  letter-spacing: 0.496px;
  color: var(--dark-color);
}
.cinema-section__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 14%;
}
.cinema-section__link svg {
  width: 100%;
  height: 19px;
  fill: var(--dark-color);
}
.footer {
  background-color: var(--dark-color);
  padding-top: 70px;
  padding-bottom: 80px;
}
@media (min-width: 650px) {
  .cinema-section__title {
    margin-bottom: 0.8889em;
    font-size: 2.8125rem;
  }
  .footer {
    padding-top: 8.75rem;
    padding-bottom: 5rem;
  }
}
.footer-top {
  padding-bottom: 75px;
  border-bottom: 1px solid var(--swamp-color);
}
.footer-top__logo-wrapper {
  margin-bottom: 44px;
  -ms-grid-column-span: 12;
  grid-column: 12 span;
}
.footer-top__logo-wrapper svg {
  fill: var(--light-color);
  width: 163px;
  aspect-ratio: 163/16;
  height: auto;
}
.footer-top__block {
  -ms-grid-column-span: 12;
  grid-column: 12 span;
}
.footer-top__block:not(:last-child) {
  margin-bottom: 66px;
}
@media (min-width: 650px) {
  .footer-top {
    padding-bottom: 5.0625rem;
    row-gap: 4.5625rem;
  }
  .footer-top__logo-wrapper {
    margin-bottom: 0;
  }
  .footer-top__logo-wrapper svg {
    width: 20.25rem;
    aspect-ratio: 10.4516/1;
  }
  .footer-top__block:not(:last-child) {
    margin-bottom: 0;
  }
  .footer-top__block {
    -ms-grid-column-span: 6;
    grid-column: 6 span;
  }
}
.footer-top__block:last-child {
  -ms-grid-column-span: 12;
  grid-column: 12 span;
}
@media (min-width: 830px) {
  .cinema-section__link {
    display: none;
  }
  .cinema-section__swiper-wrapper {
    gap: var(--grid-offset);
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .cinema-section__swiper-slide {
    max-width: 20.3125rem;
    -ms-flex-negative: 1;
    flex-shrink: 1;
  }
  .footer-top__block,
  .footer-top__block:last-child {
    -ms-grid-column-span: 4;
    grid-column: 4 span;
  }
}
.footer-top__title {
  margin: 0 0 17px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.1556em;
  letter-spacing: 1px;
  color: var(--light-color);
  text-transform: uppercase;
}
.footer-top__field-wrapper {
  padding-top: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--light-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media (min-width: 650px) {
  .footer-top__title {
    margin-bottom: 2.3889em;
    font-size: 1.125rem;
  }
  .footer-top__field-wrapper {
    padding-top: 0;
    padding-bottom: 1.125rem;
  }
}
.footer-top__field {
  outline: 0;
  width: 100%;
  height: 1em;
  padding: 0;
  background-color: var(--dark-color);
  font-size: 1.3333rem;
  font-weight: 400;
  color: var(--light-color);
}
.footer-top__field::-webkit-input-placeholder {
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
}
.footer-top__field::-moz-placeholder {
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
}
.footer-top__field:-ms-input-placeholder {
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
}
.footer-top__field::-ms-input-placeholder {
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
}
.footer-top__field::placeholder {
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
}
.footer-top__field:focus::-webkit-input-placeholder {
  color: transparent;
}
.footer-top__field:focus::-moz-placeholder {
  color: transparent;
}
.footer-top__field:focus:-ms-input-placeholder {
  color: transparent;
}
.footer-top__field:focus::-ms-input-placeholder {
  color: transparent;
}
.footer-top__field:focus::placeholder {
  color: transparent;
}
.footer-top__btn-sub {
  position: relative;
  left: 0;
  -webkit-transition: left 0.3s ease-in-out;
  transition: left 0.3s ease-in-out;
}
.footer-top__btn-sub svg {
  width: 45px;
  height: 8px;
  fill: var(--light-color);
}
.footer-top__attention {
  margin: 20px 0 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 140%;
  color: var(--swamp-color);
}
.footer-top__attention a {
  color: inherit;
  -webkit-text-decoration-line: underline;
  text-decoration-line: underline;
}
.footer-navbar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.footer-navbar__link-list {
  min-width: 150px;
}
.footer-navbar__item {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.footer-navbar__item:not(:last-child) {
  margin-bottom: 18px;
}
.footer-navbar__item a {
  font-size: 1.3333rem;
  font-weight: 400;
  line-height: 1.1375em;
  color: var(--light-color);
}
@media (min-width: 650px) {
  .footer-top__field {
    font-size: 1rem;
  }
  .footer-top__attention {
    margin-top: 1.25em;
  }
  .footer-navbar__link-list {
    min-width: 13.125rem;
  }
  .footer-navbar__item:not(:last-child) {
    margin-bottom: 1.0625rem;
  }
  .footer-navbar__item a {
    font-size: 1rem;
  }
}
.footer-contacts__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.footer-contacts__item:not(:last-child) {
  margin-bottom: 15px;
}
.footer-contacts__item svg {
  display: none;
}
.footer-contacts__text {
  font-weight: 400;
  line-height: 1.4em;
  font-size: 1.3333rem;
  color: var(--light-color);
}
@media (min-width: 650px) {
  .footer-contacts__item:not(:last-child) {
    margin-bottom: 0.875rem;
  }
  .footer-contacts__item svg {
    display: block;
    width: 16px;
    height: 16px;
    fill: var(--light-color);
  }
  .footer-contacts__text {
    margin-left: 1em;
    font-size: 0.9rem;
  }
}
@media (min-width: 1110px) {
  .footer-contacts__text {
    font-size: 1rem;
  }
}
.footer-bottom {
  padding-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.footer-bottom__copyright {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.1429em;
  color: var(--light-color);
  text-transform: uppercase;
}
@media (min-width: 650px) {
  .footer-bottom {
    padding-top: 1.1875rem;
  }
  .footer-bottom__copyright {
    font-size: 0.875rem;
  }
}
.footer-bottom__doc {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.1429em;
  color: var(--light-color);
}
.shops {
  padding-top: 66px;
  padding-bottom: 66px;
}
.shops__breadcrumbs {
  margin-bottom: 43px;
}
@media (min-width: 650px) {
  .footer-bottom__doc {
    font-size: 0.875rem;
  }
  .shops {
    padding-top: 4.875rem;
    padding-bottom: 8.75rem;
  }
  .shops__container {
    row-gap: 4.6875rem;
  }
  .shops__breadcrumbs {
    margin-bottom: 0;
  }
}
.shops__filter {
  margin-bottom: 70px;
}
.shops__list {
  -ms-grid-column-span: 12;
  grid-column: 12 span;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr) [12];
  grid-template-columns: repeat(12, 1fr);
  -webkit-column-gap: var(--grid-offset);
  -moz-column-gap: var(--grid-offset);
  column-gap: var(--grid-offset);
  row-gap: 50px;
}
.shop {
  padding-bottom: 80px;
}
@media (min-width: 650px) {
  .shops__filter {
    margin-bottom: 0;
  }
  .shops__list {
    row-gap: 2.8125rem;
  }
  .shop {
    padding-bottom: 8.75rem;
  }
}
.shop__hero {
  margin-bottom: 66px;
  /* background-image: url(../../img/shop-hero_mob.jpg); */
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
}
.shop__container {
  row-gap: 43px;
}
@media (min-width: 650px) {
  .shop__hero {
    /* background-image: url(../../img/shop-hero.jpg); */
    background-attachment: fixed;
    background-position: center center;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
  }
  .shop__container {
    row-gap: 38px;
  }
}
.shop__menu {
  -ms-grid-column-span: 12;
  grid-column: 12 span;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  height: -moz-max-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  row-gap: 43px;
}
@media (min-width: 830px) {
  .shop__hero {
    margin-bottom: 8.875rem;
  }
  .shop__menu {
    -ms-grid-column-span: 5;
    grid-column: 5 span;
    position: sticky;
    top: 140px;
  }
}
.shop__breadcrumbs {
  width: 100%;
}
.shop__labels {
  margin: 0;
  font-size: 1.3333rem;
  font-weight: 400;
  line-height: 1.4em;
  letter-spacing: 0.496px;
  color: var(--gray-color);
}
@media (min-width: 650px) {
  .shop__menu {
    row-gap: 38px;
  }
  .shop__labels {
    font-size: 1.25rem;
  }
}
.shop__descr {
  -ms-grid-column-span: 12;
  grid-column: 12 span;
  margin: 0;
  font-size: 1.3333rem;
  font-weight: 400;
  line-height: 1.4em;
  letter-spacing: 0.496px;
  color: #000;
}
.news {
  padding-top: 67px;
  padding-bottom: 70px;
}
.news__breadcrumbs {
  margin-bottom: 38px;
}
@media (min-width: 650px) {
  .shop__descr {
    font-size: 1.25rem;
  }
  .news {
    padding-top: 4.8125rem;
    padding-bottom: 8.75rem;
  }
  .news__breadcrumbs {
    margin-bottom: 2.25rem;
  }
}
.news__filter {
  margin-bottom: 44px;
}
.news__filter .filter__sort-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px;
}
.stock {
  padding-bottom: 71px;
}
@media (min-width: 650px) {
  .news__filter {
    margin-bottom: 4.5625rem;
  }
  .stock {
    padding-bottom: 8.75rem;
  }
}
.stock__hero {
  margin-bottom: 66px;
  /* background-image: url(../../img/stock-hero_mob.jpg); */
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
}
@media (min-width: 830px) {
  .shop__descr {
    grid-column: 6/7 span;
  }
  .stock__hero {
    margin-bottom: 8.875rem;
  }
}
.stock__breadcrumbs {
  margin-bottom: 36px;
}
.stock__descr {
  margin: 0 0 80px;
  -ms-grid-column-span: 12;
  grid-column: 12 span;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.496px;
  color: #000;
}
.stock__info-list {
  margin-bottom: 45px;
}
.stock__btn-map {
  margin-bottom: 73px;
  -ms-grid-column-span: 12;
  grid-column: 12 span;
}
@media (min-width: 650px) {
  .stock__hero {
    /* background-image: url(../../img/stock-hero.jpg); */
    background-attachment: fixed;
  }
  .stock__btn-map {
    margin-bottom: 8.75rem;
  }
}
.other-section {
  -ms-grid-column-span: 12;
  grid-column: 12 span;
}
.other-section__top {
  margin-bottom: 48px;
  padding-bottom: 17px;
  border-bottom: 1px solid var(--gainsboro-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (min-width: 650px) {
  .other-section__top {
    margin-bottom: 4.6875rem;
    padding-bottom: 0.9375rem;
  }
}
.other-section__title {
  margin: 0 0 14px;
  font-size: 25px;
  font-weight: 400;
  line-height: 1.4em;
  color: var(--dark-color);
}
@media (min-width: 650px) {
  .other-section__title {
    margin-bottom: 20px;
    font-size: 2.8125rem;
  }
}
@media (min-width: 830px) {
  .other-section__top {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .other-section__title {
    margin: 0;
  }
  .other-section__link svg {
    display: none;
  }
}
.other-section__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.38em;
  letter-spacing: 0.496px;
  color: var(--swamp-color);
  text-transform: uppercase;
}
.other-section__link svg {
  width: 14%;
  height: 19px;
  fill: var(--swamp-color);
}
.cinema {
  padding-top: 67px;
  padding-bottom: 66px;
}
.cinema__breadcrumbs {
  margin-bottom: 64px;
}
.cinema__filter {
  margin-bottom: 19px;
}
.cinema-list {
  -ms-grid-column-span: 12;
  grid-column: 12 span;
  row-gap: 50px;
}
.cinema-list__item {
  -ms-grid-column-span: 12;
  grid-column: 12 span;
}
@media (min-width: 650px) {
  .other-section__link {
    font-size: 0.9375rem;
  }
  .cinema {
    padding-top: 5rem;
    padding-bottom: 8.75rem;
  }
  .cinema__breadcrumbs {
    margin-bottom: 4.25rem;
  }
  .cinema__filter {
    margin-bottom: 5rem;
  }
  .cinema-list {
    row-gap: 5rem;
  }
  .cinema-list__item {
    -ms-grid-column-span: 4;
    grid-column: 4 span;
  }
}
@media (min-width: 830px) {
  .other-section__link {
    display: block;
    width: auto;
    text-align: right;
  }
  .cinema-list__item {
    -ms-grid-column-span: 3;
    grid-column: 3 span;
  }
}
.film {
  padding-top: 67px;
  padding-bottom: 67px;
}
.film__breadcrumbs {
  margin-bottom: 46px;
  -ms-grid-column-span: 12;
  grid-column: 12 span;
}
@media (min-width: 650px) {
  .film {
    padding-top: 3.9375rem;
    padding-bottom: 8.75rem;
  }
  .film__breadcrumbs {
    margin-bottom: 4.5625rem;
    padding-top: 0.9375rem;
    -ms-grid-column-span: 8;
    grid-column: 8 span;
  }
}
.film__preview {
  margin-bottom: 48px;
  -ms-grid-column-span: 12;
  grid-column: 12 span;
  grid-row: 2/1 span;
  height: auto;
  aspect-ratio: 320/482;
}
@media (min-width: 650px) {
  .film__preview {
    margin-bottom: 0;
    grid-column: 9/4 span;
    grid-row: 1/2 span;
    aspect-ratio: 440/626;
  }
}
@media (min-width: 830px) {
  .film__preview {
    grid-column: 9/4 span;
    grid-row: 1/4 span;
  }
}
.film__preview img {
  height: 100%;
}
.film__preview-img {
  display: none;
}
.film__descr {
  margin: 0 0 45px;
  -ms-grid-column-span: 12;
  grid-column: 12 span;
  font-size: 1.3333rem;
  font-weight: 400;
  line-height: 1.4em;
  letter-spacing: 0.496px;
  color: #000;
}
@media (min-width: 650px) {
  .film__preview img {
    height: auto;
  }
  .film__preview-img {
    display: block;
  }
  .film__preview-img_mob {
    display: none;
  }
  .film__descr {
    margin-bottom: 5em;
    -ms-grid-column-span: 8;
    grid-column: 8 span;
    font-size: 1.25rem;
  }
}
.film__info-list {
  margin-bottom: 47px;
  -ms-grid-column-span: 12;
  grid-column: 12 span;
}
@media (min-width: 830px) {
  .film__info-list {
    -ms-grid-column-span: 8;
    grid-column: 8 span;
  }
}
.film__info-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 1.5625rem;
}
.film__info-item:not(:last-child) {
  margin-bottom: 14px;
}
.film__info-item span {
  max-width: 5.9375em;
  width: 100%;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.38em;
  letter-spacing: 0.496px;
  color: var(--swamp-color);
  text-transform: uppercase;
}
.film__info-item p {
  margin: 0;
  font-size: 1.333rem;
  font-weight: 400;
  line-height: 1.4em;
  letter-spacing: 0.496px;
  color: #000;
}
@media (min-width: 650px) {
  .film__info-list {
    margin-bottom: 5.625rem;
  }
  .film__info-item:not(:last-child) {
    margin-bottom: 0.625rem;
  }
  .film__info-item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .film__info-item span {
    font-size: 0.9375rem;
  }
  .film__info-item p {
    font-size: 1.125rem;
  }
}
.film__session-info {
  -ms-grid-column-span: 12;
  grid-column: 12 span;
  margin-bottom: 62px;
}
.film__session-info .cinema-card__session {
  margin-top: 0;
}
@media (min-width: 830px) {
  .film__session-info {
    -ms-grid-column-span: 8;
    grid-column: 8 span;
  }
}
.film__other-section .other-section__top {
  margin-bottom: 72px;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: end;
}
@media (min-width: 650px) {
  .film__session-info {
    margin-bottom: 7.8125rem;
  }
  .film__other-section .other-section__top {
    margin-bottom: 5rem;
  }
}
.about {
  padding-top: 67px;
  padding-bottom: 52px;
}
.about__container {
  row-gap: 61px;
}
.about__content {
  margin-bottom: 76px;
  -ms-grid-column-span: 12;
  grid-column: 12 span;
  row-gap: 48px;
}
@media (min-width: 650px) {
  .about__content {
    margin-bottom: 8.75rem;
    row-gap: 2.4rem;
  }
}
@media (min-width: 1110px) {
  .shop__menu {
    top: 290px;
  }
  .about__content {
    row-gap: 5.75rem;
  }
}
@media (min-width: 1290px) {
  .about__content {
    row-gap: 6rem;
  }
}
@media (min-width: 1440px) {
  .about__content {
    row-gap: 5.5625rem;
  }
}
.about__descr {
  margin: 0;
  text-align: center;
  font-size: 1.3333rem;
  font-weight: 400;
  line-height: 1.4em;
  letter-spacing: 0.496px;
  color: #000;
}
.about__descr a {
  color: var(--swamp-color);
  text-decoration: underline;
}
.about__vertical-card .card__subtitle {
  margin-bottom: 16px;
}
@media (min-width: 650px) {
  .about__descr {
    font-size: 1rem;
    line-height: 1.5625em;
    letter-spacing: normal;
  }
  .about {
    padding-top: 5rem;
    padding-bottom: 5.8125rem;
  }
  .about__container {
    row-gap: 7.875rem;
  }
  .about__vertical-card .card__subtitle {
    margin-bottom: 0.9375em;
  }
}
.about__vertical-card .card__title {
  margin-bottom: 13px;
  min-height: unset;
  line-height: 1.4em;
  letter-spacing: 0.496px;
}
@media (min-width: 650px) {
  .about__vertical-card .card__title {
    margin-bottom: 1em;
    line-height: 2.242em;
    letter-spacing: normal;
  }
}
.about__vertical-card .about__descr {
  margin-bottom: 17px;
}
.about__vertical-card .vertical-card__img-wrapper {
  height: auto;
  aspect-ratio: 320/415;
}
@media (min-width: 650px) {
  .about__vertical-card .about__descr {
    margin-bottom: 3.125rem;
  }
  .about__vertical-card .vertical-card__img-wrapper {
    aspect-ratio: 670/1036;
  }
}
@media (min-width: 830px) {
  .about__vertical-card .card__title {
    margin-bottom: 0.8667em;
    line-height: 1em;
  }
}
.about__vertical-card .img-wrapper img {
  top: 0;
  left: 0;
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
  -webkit-transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
@media (any-hover: hover) {
  .footer-top__btn-sub:hover {
    position: relative;
    left: 10px;
  }
  .footer-navbar__item a:hover {
    border-bottom: 1px solid var(--light-color);
    font-weight: 700;
  }
  .footer-contacts__item a:hover {
    line-height: calc(1.4em - 1px);
    border-bottom: 1px solid var(--light-color);
    font-weight: 700;
  }
  .footer-bottom__doc:hover {
    border-bottom: 1px solid var(--light-color);
    font-weight: 700;
  }
  .about__vertical-card:hover img {
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
  }
}
.about__horizontal-card .card__subtitle {
  margin-bottom: 16px;
}
@media (min-width: 650px) {
  .about__horizontal-card .card__subtitle {
    margin-bottom: 0.9375em;
  }
}
.about__horizontal-card .card__title {
  margin-bottom: 13px;
  min-height: unset;
  line-height: 1.4em;
  letter-spacing: 0.496px;
}
@media (min-width: 650px) {
  .about__horizontal-card .card__title {
    margin-bottom: 1em;
    line-height: 2.242em;
    letter-spacing: normal;
  }
}
.about__horizontal-card .about__descr {
  margin-bottom: 20px;
}
@media (min-width: 650px) {
  .about__horizontal-card .about__descr {
    margin-bottom: 4.7em;
  }
}
@media (min-width: 1110px) {
  .about__horizontal-card .about__descr {
    margin-bottom: 3.125rem;
  }
}
.about__horizontal-card .horizontal-card__img-wrapper {
  height: auto;
  aspect-ratio: 320/200;
}
@media (min-width: 650px) {
  .about__horizontal-card .horizontal-card__img-wrapper {
    aspect-ratio: 670/326;
  }
}
.about__horizontal-card:nth-child(3) .horizontal-card__img-wrapper {
  height: auto;
  aspect-ratio: 320/200;
}
@media (min-width: 830px) {
  .about__horizontal-card .card__title {
    margin-bottom: 0.8667em;
    line-height: 1em;
  }
}
.about__horizontal-card .img-wrapper img {
  top: 0;
  left: 0;
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
  -webkit-transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.about__contact-form {
  margin-bottom: 50px;
}
.about__list {
  -ms-grid-column-span: 12;
  grid-column: 12 span;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr) [12];
  grid-template-columns: repeat(12, 1fr);
  -webkit-column-gap: var(--grid-offset);
  -moz-column-gap: var(--grid-offset);
  column-gap: var(--grid-offset);
}
.about__item {
  cursor: default;
  padding-top: 21px;
  padding-bottom: 17px;
  -ms-grid-column-span: 12;
  grid-column: 12 span;
  text-align: center;
  font-size: 1.3333rem;
  font-weight: 400;
  line-height: 1.4em;
  color: #000;
  border-bottom: 1px solid var(--gainsboro-color);
}
.about__item svg {
  margin-bottom: 9px;
  width: 32px;
  height: 32px;
  fill: var(--swamp-color);
}
@media (min-width: 650px) {
  .about__horizontal-card:nth-child(3) .horizontal-card__img-wrapper {
    aspect-ratio: 670/350;
  }
  .about__contact-form {
    margin-bottom: 5.9375rem;
  }
  .about__item svg {
    margin-bottom: 0.3636em;
    width: 2.0909em;
    height: 2.0909em;
  }
  .about__item:nth-child(n + 4) {
    border-top: 1px solid var(--gainsboro-color);
  }
  .about__item {
    padding-top: 2.0455em;
    padding-bottom: 1.9091em;
    -ms-grid-column-span: 4;
    grid-column: 4 span;
    font-size: 1.375rem;
    border: none;
  }
}
.about__item-title {
  margin: 0;
}
.route {
  padding-top: 67px;
  padding-bottom: 79px;
}
.route__breadcrumbs {
  margin-bottom: 42px;
}
@media (min-width: 650px) {
  .route {
    padding-top: 4.8125rem;
    padding-bottom: 9rem;
  }
  .route__breadcrumbs {
    margin-bottom: 2.1875rem;
  }
}
.route__filter {
  margin-bottom: 40px;
}
.route__filter .filter__sort-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  row-gap: 10px;
}
@media (min-width: 650px) {
  .route__filter {
    margin-bottom: 4.875rem;
  }
}
.route__map {
  margin-bottom: 53px;
  width: 100%;
  height: auto;
  max-height: 300px;
  aspect-ratio: 360/300;
}
@media (min-width: 650px) {
  .route__map {
    margin-bottom: 4.8125rem;
    max-height: 585px;
    aspect-ratio: 1920/585;
  }
}
.route__text {
  margin: 0 0 1.5em;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.455em;
  letter-spacing: 1px;
  color: #000;
}
@media (min-width: 650px) {
  .route__text {
    line-height: 1.4em;
    letter-spacing: 0.496px;
  }
}
.route__parking {
  display: block;
  margin-bottom: 23px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.455em;
  letter-spacing: 1px;
  color: var(--swamp-color);
  -webkit-text-decoration-line: underline;
  text-decoration-line: underline;
}
@media (min-width: 650px) {
  .route__parking {
    margin-bottom: 1.3em;
    line-height: 1.4em;
    letter-spacing: 0.496px;
  }
}
.route__exp {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.455em;
  letter-spacing: 1px;
  color: #000;
}
.working-hours {
  padding-top: 67px;
  padding-bottom: 67px;
}
@media (min-width: 650px) {
  .route__exp {
    margin-bottom: 1.3em;
    line-height: 1.4em;
    letter-spacing: 0.496px;
  }
  .working-hours {
    padding-top: 4.8125rem;
    padding-bottom: 9.5625rem;
  }
}
.working-hours__breadcrumbs {
  margin-bottom: 41px;
}
@media (min-width: 650px) {
  .working-hours__breadcrumbs {
    margin-bottom: 4.4375rem;
  }
}
.working-hours__list {
  -ms-grid-column-span: 12;
  grid-column: 12 span;
  margin-bottom: 67px;
}
.working-hours__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--gainsboro-color);
  font-size: 1.5625rem;
  font-weight: 400;
  line-height: 1.4em;
  letter-spacing: 1.2px;
  color: #000;
}
.working-hours__item:not(:first-child) {
  padding-top: 33px;
}
.working-hours__item .a {
  color: inherit;
  text-decoration: underline;
}
.working-hours__item-title {
  max-width: 65%;
}
.working-hours__item-time {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.25rem;
  letter-spacing: 0.496px;
}
@media (min-width: 650px) {
  .working-hours__list {
    margin-bottom: 8.75rem;
  }
  .working-hours__item:not(:first-child) {
    padding-top: 1.6em;
  }
  .working-hours__item {
    padding-bottom: 0.84em;
    letter-spacing: 0.496px;
  }
  .working-hours__item-time {
    font-size: inherit;
  }
}
.working-hours__menu,
.working-hours__shops {
  -ms-grid-column-span: 12;
  grid-column: 12 span;
}
.working-hours__shops-title {
  margin: 0 0 53px;
  font-size: 2.0833rem;
  font-weight: 400;
  line-height: 0.9em;
  color: var(--dark-color);
}
@media (min-width: 650px) {
  .working-hours__shops-title {
    font-size: 2.8125rem;
  }
}
@media (min-width: 1110px) {
  .working-hours__menu {
    -ms-grid-column-span: 8;
    grid-column: 8 span;
    position: sticky;
    top: 270px;
  }
  .working-hours__shops-title {
    margin-bottom: 1.1333em;
  }
}
.working-hours__descr {
  -ms-grid-column-span: 12;
  grid-column: 12 span;
  margin: 0 0 50px;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.5em;
  letter-spacing: 0.999px;
  color: #000;
}
@media (min-width: 650px) {
  .working-hours__descr {
    margin-bottom: 4em;
    line-height: 1.4em;
    letter-spacing: 0.496px;
  }
}
@media (min-width: 1110px) {
  .working-hours__descr {
    -ms-grid-column-span: 8;
    grid-column: 8 span;
    margin: 0;
  }
}
.working-hours__filter {
  -ms-grid-column-span: 12;
  grid-column: 12 span;
  margin-bottom: 50px;
}
@media (min-width: 650px) {
  .working-hours__filter {
    margin-bottom: 20px;
  }
  .working-hours__shop-card .shop-card__img-wrapper {
    margin-bottom: 1.8125rem;
  }
}
@media (min-width: 1110px) {
  .working-hours__filter {
    grid-column: 9/4 span;
    -ms-grid-row: 1;
    grid-row: 1;
    margin: 0;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
  }
  .working-hours__filter .filter__search-block {
    -ms-grid-columns: (1fr) [4];
    grid-template-columns: repeat(4, 1fr);
  }
}
.working-hours__shops__list {
  -ms-grid-column-span: 12;
  grid-column: 12 span;
}
@media (min-width: 1110px) {
  .working-hours__shops__list {
    grid-column: 9/4 span;
    -ms-grid-columns: unset;
    grid-template-columns: unset;
  }
  .working-hours__shop-card {
    width: 100%;
  }
}
.search-result {
  padding-top: 66px;
  padding-bottom: 66px;
}
.search-result__breadcrumbs {
  margin-bottom: 43px;
}
@media (min-width: 650px) {
  .working-hours__shop-card .shop-card__title {
    margin-bottom: 0.4em;
  }
  .working-hours__shop-card .shop-card__descr {
    margin-bottom: 0.2em;
  }
  .search-result {
    padding-top: 4.875rem;
    padding-bottom: 8.75rem;
  }
  .search-result__breadcrumbs {
    margin-bottom: 5rem;
  }
}
.search-result__filter {
  margin-bottom: 2.8125rem;
}
.search-result__query {
  -ms-grid-column-span: 12;
  grid-column: 12 span;
  margin: 0 0 45px;
  font-size: 1.6667rem;
  font-weight: 400;
  line-height: 1.4em;
  color: #1f1f1f;
}
@media (min-width: 650px) {
  .search-result__query {
    margin-bottom: 4em;
    font-size: 1.875rem;
  }
}
.search-result__list {
  margin-bottom: 70px;
}
.contacts {
  padding-top: 67px;
}
@media (min-width: 650px) {
  .search-result__list {
    margin-bottom: 8.75rem;
  }
  .contacts {
    padding-top: 4.8125rem;
  }
}
.contacts__map {
  margin-bottom: -4px;
  width: 100%;
  height: auto;
  max-height: 480px;
  aspect-ratio: 360/480;
}
.eco {
  padding-bottom: 66px;
}
@media (min-width: 650px) {
  .contacts__map {
    max-height: 800px;
    aspect-ratio: 1920/800;
  }
  .eco {
    padding-bottom: 8.75rem;
  }
}
.eco__hero {
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  margin-bottom: 66px;
  height: auto;
  max-height: 400px;
  aspect-ratio: 360/400;
}
@media (min-width: 830px) {
  .eco__hero {
    margin-bottom: 8.5625rem;
  }
}
.eco__hero-img-bcg {
  height: 100%;
}
.eco__hero-text {
  margin-bottom: 7px;
}
@media (min-width: 650px) {
  .eco__hero {
    max-height: 600px;
    aspect-ratio: 1920/600;
  }
  .eco__hero-img-bcg {
    height: auto;
  }
  .eco__hero-text {
    margin: 0;
  }
}
.eco__hero-title {
  margin-bottom: 20px;
  font-size: 2.0833rem;
  color: var(--light-color);
}
@media (min-width: 650px) {
  .eco__hero-title {
    margin-bottom: 0.0909em;
    font-size: 3.4375rem;
  }
}
.eco__hero-descr {
  margin: 0 auto 20px;
  max-width: 18.7em;
  text-align: center;
  font-size: 1.3333rem;
  font-weight: 400;
  line-height: 1.4em;
  letter-spacing: 0.496px;
  color: var(--light-color);
}
@media (min-width: 650px) {
  .eco__hero-descr {
    margin-bottom: 1em;
    font-size: 1.25rem;
  }
}
@media (min-width: 830px) {
  .eco__hero-descr {
    margin-bottom: 1.76em;
  }
}
.eco__breadcrumbs {
  margin-bottom: 44px;
}
@media (min-width: 650px) {
  .eco__breadcrumbs {
    margin-bottom: 2.5rem;
  }
}
.eco__text-block {
  -ms-grid-column-span: 12;
  grid-column: 12 span;
  margin-bottom: 68px;
}
@media (min-width: 650px) {
  .eco__text-block {
    margin-bottom: 8.9375rem;
  }
}
.eco__text {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.5em;
  letter-spacing: 1px;
  color: #000;
}
.eco__text:not(:last-child) {
  margin-bottom: 15px;
}
.eco__text a {
  color: var(--swamp-color);
  text-decoration: underline;
}
.eco__filter {
  margin-bottom: 70px;
}
.jobs {
  padding-top: 66px;
  padding-bottom: 66px;
}
@media (min-width: 650px) {
  .eco__text:not(:last-child) {
    margin-bottom: 1.45em;
  }
  .eco__text {
    line-height: 1.4em;
    letter-spacing: 0.496px;
  }
  .eco__filter {
    margin-bottom: 5rem;
  }
  .jobs {
    padding-top: 5rem;
    padding-bottom: 8.5625rem;
  }
}
.jobs__breadcrumbs {
  margin-bottom: 43px;
}
@media (min-width: 650px) {
  .jobs__breadcrumbs {
    margin-bottom: 2rem;
  }
}
.jobs__filter {
  margin-bottom: 39px;
}
.jobs__filter .filter__sort-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  row-gap: 10px;
}
.jobs__filter .filter__search-block {
  display: none;
}
@media (min-width: 1110px) {
  .jobs__filter .filter__sort-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .jobs__filter .filter__search-block {
    display: -ms-grid;
    display: grid;
  }
}
.jobs__list {
  -ms-grid-column-span: 12;
  grid-column: 12 span;
}
.jobs__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  padding-bottom: 13px;
  border-bottom: 1px solid var(--gainsboro-color);
}
.jobs__item:not(:last-child) {
  margin-bottom: 46px;
}
@media (min-width: 650px) {
  .jobs__filter {
    margin-bottom: 4.4375rem;
  }
  .jobs__filter .filter__sort-block {
    row-gap: unset;
  }
  .jobs__item:not(:last-child) {
    margin-bottom: 2.25rem;
  }
  .jobs__item {
    padding-bottom: 1.25rem;
  }
  .jobs__item-info {
    max-width: 75%;
  }
}
.jobs__item-title {
  display: block;
  margin-bottom: 15px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.4em;
  color: var(--dark-color);
}
@media (min-width: 650px) {
  .jobs__item-title {
    margin-bottom: 0.68em;
    font-size: 1.5625rem;
  }
}
.jobs__item-descr {
  cursor: default;
  margin: 0 0 17px;
  font-size: 1.3333rem;
  font-weight: 400;
  line-height: 1.4em;
  letter-spacing: 0.496px;
  color: var(--gray-color);
}
.jobs__requirements-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 10px;
  -moz-column-gap: 10px;
  column-gap: 10px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  row-gap: 10px;
}
@media (min-width: 650px) {
  .jobs__item-descr {
    margin-bottom: 1.05em;
    font-size: 1.25rem;
  }
  .jobs__requirements-list {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-column-gap: var(--grid-offset);
    -moz-column-gap: var(--grid-offset);
    column-gap: var(--grid-offset);
    row-gap: unset;
  }
}
.jobs__requirements-item {
  cursor: default;
  padding: 10px 20px;
  border: 1px solid var(--gainsboro-color);
  color: #000;
  font-size: 15px;
  font-weight: 400;
}
.jobs__item-link {
  position: relative;
  left: 0;
  display: none;
  width: 46px;
  -webkit-transition: left 0.3s;
  transition: left 0.3s;
}
.jobs__item-link svg {
  width: 100%;
  height: 19px;
  fill: #000;
}
@media (any-hover: hover) {
  .about__horizontal-card:hover img {
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
  }
  .jobs__item-link:hover {
    left: 10px;
  }
}
.job {
  padding-top: 66px;
}
.job__container {
  margin-bottom: 5.5rem;
}
.job__menu {
  -ms-grid-column-span: 12;
  grid-column: 12 span;
}
@media (min-width: 830px) {
  .job__menu {
    grid-column: 1/5 span;
    position: sticky;
    position: -webkit-sticky;
    top: 141px;
  }
}
@media (min-width: 1110px) {
  .job__menu {
    top: 211px;
  }
}
@media (min-width: 1290px) {
  .job__menu {
    top: 221px;
  }
}
@media (min-width: 1440px) {
  .job__menu {
    top: 231px;
  }
}
.job__breadcrumbs {
  width: 100%;
  margin-bottom: 43px;
}
@media (min-width: 650px) {
  .jobs__item-link {
    display: inline;
  }
  .job {
    padding-top: 5rem;
  }
  .job__breadcrumbs {
    margin-bottom: 2.6875rem;
  }
}
.job__labels {
  display: none;
  margin: 0 0 2.25em;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.4em;
  letter-spacing: 0.496px;
  color: var(--gray-color);
}
@media (min-width: 830px) {
  .job__labels {
    display: block;
    grid-column: 1/5 span;
  }
}
.job__requirements-list {
  -ms-grid-column-span: 12;
  grid-column: 12 span;
  margin-bottom: 43px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-column-gap: var(--grid-offset);
  -moz-column-gap: var(--grid-offset);
  column-gap: var(--grid-offset);
  row-gap: 10px;
}
@media (min-width: 650px) {
  .job__requirements-list {
    margin-bottom: 2.8125rem;
  }
}
@media (min-width: 830px) {
  .job__requirements-list {
    grid-column: 1/5 span;
  }
}
.job__info {
  -ms-grid-column-span: 12;
  grid-column: 12 span;
}
@media (min-width: 830px) {
  .job__info {
    grid-column: 6/7 span;
    grid-row: 1/7 span;
  }
}
.job__info-list-title {
  margin: 0 0 23px;
  font-size: 1.6667rem;
  font-weight: 400;
  line-height: 1em;
  color: var(--dark-color);
}
@media (min-width: 650px) {
  .job__info-list-title {
    margin-bottom: 0.92em;
    font-size: 1.5625rem;
  }
}
.job__info-list {
  margin-bottom: 52px;
}
.job__info-item {
  font-size: 1.3333rem;
  font-weight: 400;
  line-height: 1.4em;
  letter-spacing: 0.496px;
  color: #000;
}
@media (min-width: 650px) {
  .job__info-list {
    margin-bottom: 3.125rem;
  }
  .job__info-item {
    font-size: 1.25rem;
  }
}
.job__btn-response {
  display: none;
  -ms-grid-column-span: 12;
  grid-column: 12 span;
  background-color: #000;
  padding: 1.1667em 4.1111em;
  border: 1px solid var(--dark-color);
  font-size: 1.5rem;
  font-weight: 400;
  text-transform: uppercase;
  color: #e1e1e1;
}
.job__btn-response_mob {
  display: inline-block;
}
@media (min-width: 830px) {
  .job__btn-response {
    display: inline-block;
    grid-column: 1/3 span;
  }
  .job__btn-response_mob {
    display: none;
  }
}
.job__map {
  margin-bottom: -4px;
  width: 100%;
  height: auto;
  max-height: 600px;
  aspect-ratio: 360/600;
}
.parking {
  padding-top: 66px;
}
.parking__container {
  margin-bottom: 70px;
}
@media (min-width: 650px) {
  .job__btn-response {
    font-size: 1.125rem;
  }
  .job__map {
    max-height: 600px;
    aspect-ratio: 1920/600;
  }
  .parking {
    padding-top: 5rem;
  }
  .parking__container {
    margin-bottom: 5rem;
  }
}
.parking__menu {
  -ms-grid-column-span: 12;
  grid-column: 12 span;
}
@media (min-width: 830px) {
  .parking__menu {
    grid-column: 1/4 span;
    position: sticky;
    position: -webkit-sticky;
    top: 141px;
  }
}
@media (min-width: 1110px) {
  .parking__menu {
    top: 211px;
  }
}
@media (min-width: 1290px) {
  .parking__menu {
    top: 221px;
  }
}
@media (min-width: 1440px) {
  .parking__menu {
    top: 231px;
  }
}
.parking__breadcrumbs {
  width: 100%;
  margin-bottom: 43px;
}
@media (min-width: 650px) {
  .parking__breadcrumbs {
    margin-bottom: 2.1875rem;
  }
}
.parking__advantages-list {
  margin-bottom: 2.65em;
  font-size: 1.3333rem;
  font-weight: 400;
  line-height: 1.4em;
  letter-spacing: 0.496px;
  color: #000;
}
@media (min-width: 650px) {
  .parking__advantages-list {
    font-size: 1.25rem;
  }
}
.parking__advantages-list::before {
  content: attr(title);
  display: block;
  margin-bottom: 1.4em;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}
.parking__advantages-item {
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}
.parking__app-list {
  margin-bottom: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
.parking__app-link {
  padding: 10px 20px;
  border: 1px solid #dfdfdf;
  font-size: 0.9375rem;
  font-weight: 400;
  color: #000;
}
.parking__info {
  -ms-grid-column-span: 12;
  grid-column: 12 span;
}
@media (min-width: 830px) {
  .parking__app-list {
    margin-bottom: 0;
  }
  .parking__info {
    grid-column: 5/8 span;
    grid-row: 1/7 span;
  }
}
.parking__subtitle {
  margin: 0 0 20px;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.4em;
  color: var(--dark-color);
}
@media (min-width: 650px) {
  .parking__app-list {
    gap: 1.0625rem;
  }
  .parking__subtitle {
    margin-bottom: 1.4em;
    font-size: 1.5625rem;
    line-height: unset;
  }
}
.parking__days {
  margin: 0 0 20px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4em;
  color: var(--gray-color);
}
@media (min-width: 650px) {
  .parking__days {
    margin-bottom: 1.25em;
    font-size: 1rem;
  }
}
.parking__list {
  margin-bottom: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 20px;
}
.parking__item {
  border: 1px solid #dfdfdf;
  width: 100%;
}
.parking__item-top {
  padding: 20px;
  border-bottom: 1px solid #dfdfdf;
}
@media (min-width: 650px) {
  .parking__list {
    margin-bottom: 2.875rem;
    -ms-flex-wrap: unset;
    flex-wrap: unset;
    gap: var(--grid-offset);
  }
  .parking__item {
    max-width: 27.5rem;
  }
  .parking__item-top {
    padding: 1.25rem;
  }
}
.parking__item-title {
  margin: 0 0 0.3em;
  font-size: 1.6667rem;
  font-weight: 400;
  color: var(--dark-color);
}
@media (min-width: 650px) {
  .parking__item-title {
    font-size: 1.25rem;
  }
}
.parking__item-subtitle {
  margin: 0;
  font-size: 1.3333rem;
  font-weight: 400;
  color: var(--gray-color);
}
.parking__item-bottom {
  padding: 50px 20px;
}
@media (min-width: 650px) {
  .parking__item-subtitle {
    font-size: 1rem;
  }
  .parking__item-bottom {
    padding: 2.9375rem 1.25rem;
  }
}
.parking__item-price-block:not(:last-child) {
  margin-bottom: 2.1875rem;
}
.parking__item-price {
  margin: 0 0 0.16em;
  font-size: 1.6667rem;
  font-weight: 400;
  color: var(--dark-color);
}
@media (min-width: 650px) {
  .parking__item-price {
    font-size: 1.5625rem;
  }
}
.parking__item-time {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.38em;
  letter-spacing: 0.496px;
  color: var(--swamp-color);
  text-transform: uppercase;
}
@media (min-width: 650px) {
  .parking__item-time {
    font-size: 0.9375rem;
  }
}
.parking__text {
  margin-bottom: 20px;
  font-size: 1.333rem;
  font-weight: 400;
  line-height: 1.4em;
  letter-spacing: 0.496px;
  color: #000;
}
@media (min-width: 650px) {
  .parking__text {
    margin-bottom: 1.75em;
    font-size: 1.25rem;
  }
}
.parking__text p {
  margin: 0;
}
.parking__text p:not(:last-child) {
  margin-bottom: 1.35em;
}
.parking__text p a {
  color: inherit;
  text-decoration: underline;
}
.parking__tel {
  display: block;
  margin-bottom: 20px;
  font-size: 1.3333rem;
  font-weight: 400;
  line-height: 1.4em;
  letter-spacing: 0.496px;
  color: #000;
  -webkit-text-decoration-line: underline;
  text-decoration-line: underline;
}
@media (min-width: 650px) {
  .parking__tel {
    margin-bottom: 1.75em;
    font-size: 1.25rem;
  }
}
.parking__lease-item {
  font-size: 1.3333rem;
  font-weight: 400;
  line-height: 1.4em;
  letter-spacing: 0.496px;
  color: #000;
}
.parking__contact-form {
  margin-bottom: 0;
}
.error-section {
  padding-top: 70px;
}
@media (min-width: 650px) {
  .parking__lease-item {
    font-size: 1.25rem;
  }
  .parking__contact-form {
    margin-bottom: 5rem;
  }
  .error-section {
    padding-top: 5rem;
  }
}
.error-section__breadcrumbs {
  margin-bottom: 50px;
}
.error-section__hero {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  max-height: 400px;
  aspect-ratio: 360/400;
}
.error-section__bg-img {
  display: none;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.error-section__bg-img_mob {
  display: block;
}
@media (min-width: 650px) {
  .error-section__breadcrumbs {
    margin-bottom: 5rem;
  }
  .error-section__hero {
    max-height: 700px;
    aspect-ratio: 1920/700;
  }
  .error-section__bg-img {
    display: block;
  }
  .error-section__bg-img_mob {
    display: none;
  }
}
.error-section__container {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  row-gap: 20px;
}
.error-section__title {
  margin: 0;
  font-size: 5.4167rem;
  font-weight: 400;
  line-height: 1.4em;
  color: var(--dark-color);
}
@media (min-width: 650px) {
  .error-section__container {
    row-gap: 1.25rem;
  }
  .error-section__title {
    font-size: 6.375rem;
  }
}
@media (min-width: 830px) {
  .error-section__title {
    font-size: 9.375rem;
  }
}
.error-section__descr {
  margin: 0;
  font-size: 1.8333rem;
  font-weight: 400;
  line-height: 1.4em;
  color: var(--dark-color);
}
@media (min-width: 650px) {
  .error-section__descr {
    font-size: 2.4375rem;
  }
}
@media (min-width: 830px) {
  .error-section__descr {
    font-size: 3.4375rem;
  }
}
.error-section__btn {
  padding: 1.0833em 2.1667em;
  background-color: var(--light-color);
  font-size: 1.1667rem;
  font-weight: 400;
  color: var(--dark-color);
  text-transform: uppercase;
}
@media (min-width: 650px) {
  .error-section__btn {
    padding: 1.1111em 3.3333em;
    font-size: 1.125rem;
  }
}

.scroll-top {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  cursor: pointer;
  width: 50px;
  height: 50px;
}

.navbar__link.active {
  border-bottom: 1px solid var(--dark-color);
  font-weight: 700;
}

@media (min-width: 650px) {
  .scroll-top {
    width: 80px;
    height: 80px;
  }
}

@media (max-width: 650px) {
    .search-wrapper {
    grid-column: 1 / -1;
  }
}
