/* NOTE: MAIN SETTINGS */

:root {
  --black-color: #0e0d0d;
  --white-color: #ffffff;
  --primary-color: #8d1726;
  --dark-red-color: #6B111D;
  --secondary-color: #f7be90;
  --grey-color: #4a4949;
  --dark-grey-color: #191818;
  --light-grey-color: #8c8b8b;
  --primary-font: "Euclid Square", "Helvetica", "Arial", sans-serif;
  --secondary-font: "Magistral", "Helvetica", "Arial", sans-serif;
  --app-height: 100%;
}
* {
  list-style: none;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
html,
body {
  background: var(--black-color);
  font-family: var(--primary-font);
  color: var(--white-color);
  font-weight: 300;
  position: relative;
  font-size: 16px;
  overflow-x: hidden;
}
body {
  width: 100%;
  line-height: 1.1;
  margin-top: 110px;
}
.loading-overlay {
  display: block;
  background: #101218;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}
.fast-order {
  position: fixed;
  bottom: 20px;
  right: 20px;
  font-weight: 400;
  z-index: 100;
  text-align: center;
  opacity: 0;
  transition: all 0.3s ease;
  box-shadow: 0 3px 15px #000;
  border-radius: 40px;
}
.scroll-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  border-radius: 30px;
  opacity: 0;
  background: rgba(255,255,255,0.05);
  color: var(--white-color);
  border: 1px solid rgba(255,255,255,0.07);
  font-weight: 700;
  text-transform: uppercase;
  z-index: 200;
  text-align: center;
  padding: 20px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: opacity 0.3s ease;
}
.page-body-wrapper .scroll-to-top {
  right: auto;
  left: 20px;
}


/* NOTE: GRID SETTINGS */

.wrapper {
  width: 100%;
}
.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 1320px;
  min-width: 1280px;
  margin: 0 auto;
}
.row {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.col {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.grid {
  display: grid;
  max-width: 1320px;
  min-width: 1280px;
  margin: 0 auto;
}
.grid.x6-cols {
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-gap: 20px;
}
.grid.x5-cols {
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-gap: 20px;
}
.grid.x4-cols {
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-gap: 20px;
}
.grid.x3-cols {
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 50px;
}
.grid.x2-cols {
  grid-template-columns: 1fr 1fr;
  grid-gap: 30px;
}
.grid.x1-cols {
  grid-template-columns: 1fr;
  grid-gap: 30px;
}
.offset-top {
  margin-top: 30px;
}
.offset-right {
  margin-right: 50px;
}
.row-flex-start {
  align-items: flex-start;
}
.row-flex-stretch {
  align-items: stretch;
}
.row-reverse {
  flex-direction: row-reverse;
}
.col-reverse {
  flex-direction: column-reverse;
}


/* NOTE: HEADLINES AND TEXT */

h1,
h2 {
  font-family: var(--secondary-font);
}
h1 {
  font-weight: 500;
}
h2 {
  font-weight: 500;
  font-size: 3em;
}
h3 {
  font-family: var(--primary-font);
  font-weight: 400;
  font-size: 1.2em;
}
p {
  font-family: var(--primary-font);
  font-weight: 400;
  font-size: 1.2em;
}
a {
  display: inline-block;
  color: var(--white-color);
  text-decoration: underline;
  transition: color .2s ease-in-out;
  cursor: pointer;
}
a:hover {
  color: var(--white-color);
}
strong {
  font-weight: 800;
}


/* NOTE: BUTTONS STYLE */

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  flex-direction: row;
  width: fit-content;
  padding: 20px 50px;
  border-radius: 30px;
  border: 1px solid transparent;
}
.btn.btn-lg {
  padding: 20px 50px;
}
.btn.btn-sm {
  padding: 15px 30px;
}
.btn.btn-outline {
  border-color: var(--secondary-color);
  transition: border-color .3s ease-in-out;
}
.btn.btn-outline:hover, .btn.btn-outline:active {
  border-color: rgba(255,255,255,0.3);
}
.btn.btn-grey {
  background: var(--dark-grey-color);
  transition: background .3s ease-in-out;
}
.btn.btn-grey:hover, .btn.btn-grey:active {
  background: var(--grey-color);
}
.btn.btn-red {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  transition: background .3s ease-in-out, border .3s ease-in-out;
}
.btn.btn-red:hover, .btn.btn-red:active {
  background-color: var(--dark-red-color);
  border-color: var(--dark-red-color);
}
.btn.btn-blur {
  background-color: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background .3s ease-in-out;
}
.btn.btn-blur:hover, .btn.btn-blur:active {
  background-color: rgba(255,255,255,0.25);
}
.btn.btn-icon::before {
  content: '';
  display: block;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
  margin-right: 15px;
}
.btn.btn-icon.btn-icon-phone::before {
  background-image: url("../images/phone_icon.svg");
}
.btn.btn-icon.btn-icon-reserve::before {
  background-image: url("../images/reserve_icon.svg");
}
.btn.btn-icon.btn-icon-geo::before {
  background-image: url("../images/geo_icon.svg");
}
.btn.btn-icon.btn-icon-dl::before {
  background-image: url("../images/download_icon.svg");
}


/* NOTE: PAGE FADE ANIMATION */

#fader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999999;
  pointer-events: none;
  background: var(--black-color);
  animation-duration: 300ms;
  animation-timing-function: ease-in-out;
}
@keyframes fade-out {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
#fader.fade-out {
  opacity: 0;
  animation-name: fade-out;
}
#fader.fade-in {
  opacity: 1;
  animation-name: fade-in;
}

/* NOTE: METRO COLORS */

.metro.metro-color-red {
  background: #EF161E;
  border-color: #EF161E !important;
}
.metro.metro-color-redb {
  background: none;
  border: 1px solid #EF161E !important;
}
.metro.metro-color-blue {
  background: #0078BE;
  border-color: #0078BE !important;
}
.metro.metro-color-cyan {
  background: #00BFFF;
  border-color: #00BFFF !important;
}
.metro.metro-color-orange {
  background: #ED9121;
  border-color: #ED9121 !important;
}
.metro.metro-color-green {
  background: #2DBE2C;
  border-color: #2DBE2C !important;
}
.metro.metro-color-brown {
  background: #8D5B2D;
  border-color: #8D5B2D !important;
}
.metro.metro-color-yellow {
  background: #FFD702;
  border-color: #FFD702 !important;
}
i.metro.metro-color-yellow::before {
  filter: invert(1);
  -webkit-filter: invert(1);
}
.metro.metro-color-purple {
  background: #800080;
  border-color: #800080 !important;
}
.metro.metro-color-grey {
  background: #999999;
  border-color: #999999 !important;
}
.metro.metro-color-lightgreen {
  background: #99CC00;
  border-color: #99CC00 !important;
}
.metro.metro-color-aqua {
  background: #82C0C0;
  border-color: #82C0C0 !important;
}
.metro.metro-color-lavender {
  background: #A1B3D4;
  border-color: #A1B3D4 !important;
}
.metro.metro-color-pink {
  background: #DE64A1;
  border-color: #DE64A1 !important;
}

/* NOTE: MAIN NAV */

.main-nav {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 500;
  background: var(--black-color);
  transition: background .3s ease-in-out, border .3s ease-in-out;
  border-bottom: 1px solid transparent;
  background: transparent;
}
.main-nav .logo {
  width: 170px;
}
.main-nav .logo img {
  width: 100%;
}
.main-nav ul {
  display: flex;
  flex-direction: row;
  margin: 0 auto;
  font-size: 14px;
}
.main-nav ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 40px 15px 45px;
  color: var(--light-grey-color);
  border-top: 4px solid transparent;
  transition: color 0.3s ease-in-out, padding .3s ease-in-out;
  font-weight: normal;
}
.main-nav ul li a:hover {
  color: var(--white-color);
}
.main-nav ul li a.nav-item-selected {
  color: var(--white-color);
  border-top: 4px solid var(--secondary-color);
}
.main-nav.scrolled {
  background: var(--dark-grey-color);
  border-color: #333;
}
.main-nav.scrolled ul li a {
  padding: 30px 15px 30px;
}


/* NOTE: MOBILE NAV */

.menu-toggle {
  position: relative;
  display: none;
  width: 35px;
  height: 23px;
  background: transparent;
  border-top: 1px solid;
  border-bottom: 1px solid;
  color: var(--white-color);
  font-size: 0;
  z-index: 999;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  padding: 10px;
  margin-left: 30px;
}
.menu-toggle:before,
.menu-toggle:after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  top: 50%;
  left: 50%;
  background: currentColor;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: -webkit-transform 0.25s ease-in-out;
  transition: -webkit-transform 0.25s ease-in-out;
  transition: transform 0.25s ease-in-out;
  transition: transform 0.25s ease-in-out, -webkit-transform 0.25s ease-in-out;
}
.menu-toggle.is-active {
  opacity: 0.5;
  border-color: transparent;
}
.menu-toggle.is-active:before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}
.menu-toggle.is-active:after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
}
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 100;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  transition: opacity .2s ease;
  transform: translateY(-120vh);
  opacity: 0;
}
.mobile-nav .mobile-wrapper {
  height: calc(var(--vh, 1vh) * 100);
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.mobile-nav.active {
  transition: transform .5s ease-in-out;
  transform: translateX(0vh);
  opacity: 1;
}
.mobile-menu li {
  padding-bottom: 20px;
  font-size: 2em;
  font-weight: 400;
  position: relative;
}
.mobile-menu li a {
  width: 100%;
  position: relative;
  text-decoration: none;
}
.mobile-menu li a:after {
  content: "";
  position: absolute;
  top: -10px;
  bottom: -10px;
  left: -10px;
  right: -10px;
}
.mobile-menu li .nav-item.nav-item-selected {
  color: var(--secondary-color);
}
.mobile-nav .mobile-phone {
  font-size: 2em;
  margin-top: 35px;
}
.mobile-nav .mobile-phone a {
  position: relative;
}
.mobile-nav .mobile-phone a:after {
  content: "";
  display: block;
  background: var(--primary-color);
  width: 100%;
  position: absolute;
  bottom: -10px;
  left: 0;
  height: 2px;
  transition: all 0.3s ease;
}


/* NOTE: FORM */

.align-center {
  text-align: center;
}
.input-text {
  font-family: var(--primary-font);
  outline: none;
  border: none;
  border: 1px solid var(--grey-color);
  background: transparent;
  color: var(--white-color);
  border-radius: 10px;
  width: 100%;
  font-size: 1em;
  padding: 15px;
  appearance: none;
  -webkit-appearance: none;
  transition: border .2s ease;
}
textarea {
  font-family: var(--primary-font);
  resize: none;
}
.input-text:hover, textarea:hover {
  border: 1px solid var(--light-grey-color);
}
.input-text:focus, textarea:focus {
  border: 1px solid var(--white-color);
}
.success-send {
  float: left;
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 20px;
}
.submit-btn {
  font-family: var(--primary-font);
  color: var(--white-color);
}
::-webkit-input-placeholder {
  color: var(--grey-color);
}
:-moz-placeholder {
  color: var(--grey-color);
}
::-moz-placeholder {
  color: var(--grey-color);
}
:-ms-input-placeholder {
  color: var(--grey-color);
}

.call-content-modal {
  padding: 50px;
  background: rgba(25,24,24,0.5);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  min-width: 500px;
  text-align: center;
}
.call-content-modal h3 {
  font-size: 2em;
  margin-bottom: 20px;
}
.call-content-modal p {
  font-size: 1em;
  line-height: 1.5;
  color: var(--light-grey-color);
}


/* NOTE: MAIN SLIDER */

.swiper-container.main-slider {
  height: 50vh;
  width: 100%;
  border-radius: 25px;
  min-height: 650px;
}
.swiper-container.main-slider .swiper-slide:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #000, transparent);
  opacity: 0.8;
  z-index: 2;
}
.swiper-container.main-slider .swiper-slide .slider-content {
  padding-left: 100px;
  width: 100%;
  z-index: 3;
}
.swiper-container.main-slider .swiper-slide .slider-content h1, .swiper-container.main-slider .swiper-slide .slider-content h2 {
  width: 70%;
}

/* Если слайд класс .special-slide, убираем затемнение */
.swiper-container.main-slider .swiper-slide.special-slide::before {
  content: none;
  display: none;
}

.swiper-container.main-slider .swiper-slide .slider-content .container {
  width: 100%;
  max-width: none;
}
.swiper-slide {
  background-size: cover;
  background-position: center center;
  display: flex;
  align-items: center;
}
.swiper-slide h2,
.swiper-slide h1 {
  font-size: 2.6vw;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}
.swiper-slide h2 p,
.swiper-slide h1 p {
  font-weight: 500;
  line-height: 1;
  font-size: 1em;
  font-family: var(--secondary-font);
  width: 100%;
  margin-top: 0px;
}
.swiper-slide p {
  margin-top: 20px;
  font-size: 1.3em;
  line-height: 1.5;
  width: 35%;
}
.header-buttons {
  margin-top: 80px;
}
.header-buttons a:first-child {
  margin-right: 30px;
}
.swiper-slide .slider-content {
  position: relative;
  z-index: 100;
}
.slider-wrapper {
  position: relative;
}
.additional-nav {
  position: absolute;
  display: flex;
  align-items: center;
  bottom: 0;
  left: 0;
  padding: 20px;
  margin-left: auto;
  margin-right: auto;
  z-index: 200;
  width: 100%;
}
.additional-nav li:not(:last-child) {
  margin-right: 10px;
}
.additional-nav img {
  width: 20px;
}
.additional-nav a {
  border: 1px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  background: rgba(255,255,255,0.05);
  border-radius: 50px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .3s ease-in-out;
}
.additional-nav a:hover {
  background: rgba(255,255,255,0.15);
}
.age-limit {
  border: 1px rgba(255,255,255,0.6) solid;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  background: rgba(255,255,255,0.05);
  font-size: 1.4em;
  border-radius: 30px;
  padding: 10px 20px;
  font-weight: 500;
  opacity: 0.7;
  margin-left: auto;
  pointer-events: none;
}
.swiper-button-next,
.swiper-button-prev {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  margin-top: -20px;
  width: 40px;
  z-index: 200;
  transition: all 0.3s ease;
}
.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  left: 20px;
  border-radius: 30px;
}
.swiper-button-prev:before,
.swiper-container-rtl .swiper-button-next:before {
  content: "";
  display: block;
  border: solid var(--white-color);
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 4px;
  margin-left: 3px;
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
  transition: all 0.3s ease;
}
.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  right: 20px;
  border-radius: 30px;
}
.swiper-button-next:before,
.swiper-container-rtl .swiper-button-right:before {
  content: "";
  display: block;
  margin-right: 3px;
  border: solid var(--white-color);
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 4px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transition: all 0.3s ease;
}
.swiper-button-prev:hover,
.swiper-button-next:hover {
  background: var(--primary-color);
}
.swiper-button-prev:hover:before,
.swiper-button-next:hover:before {
  border: solid var(--white-color);
  border-width: 0 3px 3px 0;
}
.swiper-pagination-bullet {
  width: 50px;
  height: 3px;
  border-radius: 15px;
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.swiper-pagination-bullet-active {
  background: var(--white-color);
}
.swiper-container-horizontal>.swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction {
  bottom: 20px;
}


/* NOTE: MENU PAGE */

.menu-page {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.menu-page-cat {
  display: flex;
  flex: 0 0 100%;
  justify-content: space-between;
}
.menu-page-cat-border {
  display: flex;
  flex: 0 0 100%;
  padding: 50px 50px 10px;
  border-radius: 20px;
  background: var(--dark-grey-color);
  margin-bottom: 40px;
}
.menu-page-cat-border-2x {
  flex: 0 0 47%;
}
.menu-page-list-wrapper {
  display: flex;
  justify-content: space-between;
}
.menu-page-item {
  width: 100%;
}
.menu-page-item p {
  margin-bottom: 10px;
  font-size: 16px;
}
.menu-page-cat-2x {
  flex: 0 0 47%;
}
.menu-page-list {
  margin-bottom: 50px;
}
.menu-page-list-2x {
  flex: 0 0 47%;
  margin-bottom: 50px;
}
.menu-page h2 {
  margin-bottom: 15px;
  color: var(--secondary-color);
  display: inline-block;
  font-size: 26px;
}
.menu-page h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}
.menu-page-list li {
  display: flex;
  padding: 10px 0;
  width: 100%;
}
.menu-page-list .list-subheader:not(:first-child) {
  margin-top: 20px;
}
.menu-page-list li:last-child {
  padding-bottom: 0;
}
.menu-page-list li .item-name {
  display: flex;
  flex: 1;
  margin-right: 20px;
}
.menu-page-list li .item-name:after {
  content: "";
  border-bottom: dashed 1px #4b505f;
  margin-left: 20px;
  margin-bottom: 10px;
  flex: 1;
}
.menu-page-list li .item-name span {
  display: inline-block;
  color: #838585;
  margin-left: 15px;
}
.menu-page-list li .item-price {
  display: inline-block;
  white-space: nowrap;
  font-weight: 700;
  flex: 0 0 4em;
}


/* NOTE: REST BLOCK */

.rest {
  margin: 0 auto;
  padding: 110px 0 130px;
}
.page {
  margin: 0 auto;
  padding: 50px 0 70px;
}
.rest-header {
  display: flex;
  align-items: center;
  justify-content: center;
}
.rest-header h2 {
  flex: 1;
  display: block;
}
.rest-sort {
  flex: 1;
}
.rest-header .rest-sort .sort-dropdown {
  margin-left: auto;
  width: fit-content;
}
.rest-list {
  margin-top: 40px;
}
.grid.x3-cols.rest-list {
  grid-gap: 30px;
}
.rest-item {
  position: relative;
  display: none;
  background: var(--dark-grey-color);
  border-radius: 25px;
}
.rest-wrapper {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.rest-info {
  display: flex;
  padding: 30px 30px 20px;
  background: var(--dark-grey-color);
  border-radius: 25px;
}
.rest-img .rest-title {
  position: absolute;
  left: 30px;
  bottom: 30px;
  z-index: 20;
  width: 85%;
}
.rest-img .rest-title span {
  font-size: 14px;
}
.rest-title div {
  font-family: var(--primary-font);
  font-weight: 500;
  font-size: 1.4em;
  padding-top: 5px;
}
.rest-img {
  overflow: hidden;
  position: relative;
  border-radius: 25px;
  height: 300px;
}
.rest-img::after {
  content: '';
  display: block;
  width: 100%;
  height: 50%;
  left: 0;
  bottom: 0;
  position: absolute;
  background: linear-gradient(to top, #000, rgba(0,0,0,0));
  opacity: 0.8;
  z-index: 1;
}
.rest-img img {
  transition: transform 0.3s ease;
  object-fit: cover;
  height: 300px;
  width: 100%;
  border-radius: 25px;
}
.rest-img a {
  display: block;
  line-height: 0;
}
.rest-soon {
  position: absolute;
  background: var(--secondary-color);
  border-radius: 40px;
  top: 30px;
  z-index: 15;
  right: 40px;
  font-size: 1.2em;
  padding: 8px 15px;
  font-weight: 800;
  color: var(--black-color);
}
.rest-location {
  position: absolute;
  background: rgba(14, 13, 13, 0.15);
  backdrop-filter: blur(7.5px);
  -webkit-backdrop-filter: blur(7.5px);
  top: 20px;
  left: 20px;
  font-size: 16px;
  border-radius: 30px;
  padding: 10px 12px;
  font-weight: 400;
  z-index: 2;
}
.rest-desc {
  display: flex;
  flex-direction: column;
  flex: 1;
  height: 170px;
}
.rest-desc i.metro {
  margin-right: 10px;
  width: 10px;
  height: 10px;
}
.rest-desc i.metro:before {
  display: none;
}
.rest-metro-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 15px;
}
.rest-metro-wrapper .place-metro:not(:first-child) {
  margin-top: 10px;
}
.place-metro {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.rest-desc p {
  margin-bottom: 10px;
  font-size: 1em;
  display: flex;
  align-items: center;
}
.rest-desc p .rest-adress {
  color: var(--light-grey-color);
  line-height: 1.5;
}
.rest-phone {
  margin-bottom: 0;
  padding-top: 15px;
  margin-top: auto;
}
.rest-desc p:last-child a {
  padding: 15px;
  width: 100%;
}
i.metro {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  width: 22px;
  height: 22px;
  border-radius: 25px;
}
i.metro:before {
  content: '';
  display: inline-block;
  background: url("/images/place_metro.svg");
  opacity: 0.53;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 15px;
  height: 12px;
}
i.metro-red {
  background: var(--primary-color);
}
.rest-list-btn {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 40px;
}
.rest-list-btn a:first-child {
  margin-right: 20px;
}
.sort-dropdown select {
  appearance: none;
  -webkit-appearance: none;
  outline: none;
  background: none;
  color: #eaeaea;
  border: none;
  font-family: var(--primary-font);
  font-size: 1em;
  padding: 15px 50px 15px 20px;
  cursor: pointer;
}
.sort-select {
  display: inline-block;
  position: relative;
  border-radius: 10px;
  border: 1px solid var(--grey-color);
  transition: border .3s ease-in-out;
  cursor: pointer;
}
.sort-select:hover {
  border-color: var(--light-grey-color);
}
.sort-dropdown .sort-select:before {
  content: "";
  display: block;
  position: absolute;
  top: 20px;
  right: 20px;
  border: solid var(--white-color);
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 3px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transition: all 0.3s ease;
}

/* NOTE: MENU */
.rest-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-size: cover;
  background-position: center center;
  position: relative;
}
.rest-menu .container {
  position: relative;
  overflow: hidden;
}
.rest-menu .container .col:first-child {
  padding: 110px 0;
}
.rest-menu::after {
  content: '';
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 40%;
  background: var(--primary-color);
  z-index: 1;
}
.rest-menu h2 {
  font-size: 2.5vw;
  font-weight: 500;
  margin-bottom: 20px;
}
.menu-image {
  position: absolute;
  bottom: 0;
  right: 20px;
  width: 570px;
  height: 100%;
  z-index: 2;
}
.menu-image img {
  position: absolute;
  bottom: -10px;
  width: 100%;
}
.rest-menu-desc {
  font-size: 1em;
  line-height: 1.5;
  margin-bottom: 30px;
  width: 80%;
}
.rest-menu-caption {
  font-size: 14px;
  line-height: 1.5;
  margin-top: 20px;
  color: var(--light-grey-color);
}


/* NOTE: APP */

.app-block {
  padding: 120px 0 120px;
  overflow: hidden;
}
.app-block .container {
  background: linear-gradient(90deg, #191818 0%, #302D2C 100%);
  padding: 80px;
  border-radius: 25px;
  position: relative;
}
.app-block .container::before {
  content: '';
  background-image: url('/images/logo_footer.svg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  right: 20px;
  top: 0;
  width: 50%;
  height: 100%;
  opacity: 0.03;
}
.app-content {
  width: 100%;
  display: flex;
  position: relative;
  z-index: 2;
}
.app-block h2 {
  margin-bottom: 20px;
  font-size: 2.5vw;
  line-height: 1;
  text-align: right;
}
.app-block h3 {
  color: var(--secondary-color);
}
.app-block ul {
  display: flex;
  flex-direction: column;
}
.app-block ul li {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  padding: 0 0 20px;
  position: relative;
}
.app-block ul li:last-child {
  padding-bottom: 0;
}
.app-block ul li:before {
  content: "";
  background: url('/images/list_lg.svg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  width: 40px;
  min-width: 40px;
  height: 40px;
  margin-right: 30px;
  border-radius: 10px;
}
.app-buttons {
  display: flex;
  flex-direction: row;
  margin-top: 40px;
}
.app-buttons a:first-child {
  margin-right: 15px;
}
.app-buttons a {
  height: 60px;
}
.app-buttons a img {
  height: 100%;
}
.app-info {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}


/* NOTE: GALLERY BLOCK */

.gallery-block {
  text-align: center;
  padding-bottom: 120px;
}
.gallery-item {
  height: 200px;
  border-radius: 15px;
  display: block;
  position: relative;
}
.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 15px;
  object-position: center;
  transition: opacity 0.3s ease;
}
.gallery-item img:hover {
  opacity: 0.3;
}
.gallery-item:after {
  content: "\f002";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 20px;
  position: absolute;
  top: calc(50% - 10px);
  left: calc(50% - 10px);
  transition: opacity 0.3s ease;
  opacity: 0;
}
.gallery-item:hover:after {
  opacity: 1;
}


/* NOTE: ADVANTAGES BLOCK */

.advantages-block {
  background: var(--dark-grey-color);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 100px 0;
  text-align: center;
}
.advantages-block h2 {
  text-align: left;
  font-size: 2.5vw;
}
.advantages-block .adv-header .col {
  justify-content: center;
}
.advantages-block .adv-header h3 {
  width: 100%;
  text-align: left;
  font-size: 1em;
  padding: 30px;
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12.5px);
  -webkit-backdrop-filter: blur(12.5px);
  line-height: 1.5;
}
.advantages-block ul {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  justify-content: flex-start;
  margin: 70px auto 0;
}
.adv-item {
  text-align: left;
  flex: 1;
}
.adv-item h3 {
  font-weight: 500;
  font-family: var(--secondary-font);
  margin: 0;
  width: 100%;
  margin-bottom: 20px;
}
.adv-item p {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255,255,255,0.8);
}
.adv-item .adv-item-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  border-radius: 25px;
  background: var(--primary-color);
  margin-bottom: 25px;
}
.adv-item .adv-item-icon img {
  width: 45%;
}
.adv-item:not(:last-child) {
  margin-right: 60px;
}


/* NOTE: PROMO */

.promo-block {
  padding: 120px 0;
}
.promo-block .promo-list {
  display: flex;
  flex-direction: row;
}
.promo-item {
  flex: 1;
  height: 570px;
  border-radius: 25px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding: 40px;
  position: relative;
  background-color: var(--dark-grey-color);
}
.promo-item:not(:last-child) {
  margin-right: 30px;
}
.promo-item::before {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70%;
  border-radius: 0 0 25px 25px;
  background: linear-gradient(rgba(0,0,0,0), #000);
  opacity: 0.85;
  z-index: 1;
}
.promo-item .promo-content {
  position: relative;
  z-index: 2;
}
.promo-item .promo-title h3 {
  font-family: var(--secondary-font);
  font-weight: 500;
  font-size: 1.8em;
  margin-bottom: 5px;
}
.promo-item .promo-info {
  margin-top: 20px;
}
.promo-item .promo-info li:not(:last-child) {
  margin-bottom: 10px;
}
.promo-info li {
  display: flex;
  flex-direction: row;
  align-items: center;
  font-size: 14px;
}
.promo-info li::before {
  content: '';
  display: inline-block;
  width: 15px;
  height: 15px;
  background: url('/images/list_sm.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-right: 10px;
}


/* NOTE: FOOTER */

.footer {
  padding: 90px 0 0;
  background: var(--dark-grey-color);
}
.footer .container .row {
  align-items: flex-start;
}
.footer .footer-logo {
  width: 130px;
}
.footer .footer-logo img {
  width: 100%;
}
.footer-sub {
  border-top: 1px solid var(--grey-color);
  padding: 30px 0;
  margin-top: 70px;
  color: var(--light-grey-color);
}
.footer-sub a {
  color: var(--light-grey-color);
  text-decoration: underline;
}
.footer-sub .footer-policy {
  margin-left: auto;
}
.footer h3 {
  font-size: 16px;
  margin-bottom: 20px;
  font-weight: 500;
}
.footer .footer-nav {
  display: grid;
  grid-template-columns: 120px 120px;
  font-size: 16px;
}
.footer .footer-nav li {
  margin-bottom: 10px;
}
.footer .footer-nav li a {
  color: var(--light-grey-color);
}
.footer .footer-nav li a:hover, .footer-policy a:hover {
  color: var(--white-color);
}
.footer .footer-buttons {
  display: flex;
  flex-direction: column;
}
.footer .footer-buttons a {
  width: 140px;
}
.footer .footer-buttons a:first-child {
  margin-bottom: 15px;
}
.footer .footer-buttons a img {
  width: 100%;
}
.footer .footer-contacts {
  text-align: right;
}
.footer .footer-social {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
}
.footer .footer-social li:not(:last-child) {
  margin-right: 15px;
}
.footer .footer-phone {
  font-size: 1.4em;
  margin-bottom: 10px;
}
.footer .footer-mail {
  margin-bottom: 20px;
}


/* NOTE: PAGE COVER */

.page-cover {
  display: flex;
  background: var(--dark-grey-color);
  padding: 50px 0;
  min-height: 300px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 25px;
  position: relative;
}
.page-cover::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 25px;
  background: rgba(0,0,0,0.3);
  z-index: 1;
}
.page-cover .page-cover-content h1 {
  font-size: 3em;
  text-align: center;
}
.page-cover .page-cover-content {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.page-cover .col {
  align-items: center;
}

/* NOTE: ABOUT PAGE */

.about-page {
  padding: 0 0 100px;
}
.about-page .row {
  margin-top: 100px;
}
.about-page p {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 30px;
  color: var(--light-grey-color);
}
.about-page h3 {
  font-size: 2.5em;
  font-family: var(--secondary-font);
  font-weight: 500;
  margin-bottom: 30px;
}
.about-page .app-buttons {
  margin-top: 30px;
}
.about-page .about-item {
  border-radius: 25px;
  padding: 40px;
  border: 1px solid var(--grey-color);
  flex: 1;
}
.about-page .about-item p {
  margin: 0;
  color: var(--white-color);
}
.about-page .about-item:not(:last-child) {
  margin-right: 30px;
}
.about-page .about-desc {
  column-count: 2;
  column-gap: 50px;
}
.about-page .about-item-block {
  background: var(--primary-color);
  border-radius: 25px;
  padding: 50px;
}
.about-page .about-item-block p {
  color: var(--white-color);
}
.about-page .about-item-block p:last-child {
  margin-bottom: 0;
}
.about-app-img, .about-geo-img {
  width: 100%;
}
.about-app-img img, .about-geo-img img {
  display: block;
  width: 80%;
}
.about-geo-img img {
  margin-left: auto;
}
.about-map-button {
  margin-top: 40px;
}
.about-slider {
  width: 100%;
}
.about-slider .slider-content {
  position: absolute;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  flex-direction: row;
  padding: 40px;
  margin: auto;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 3;
}
.about-slider .header-buttons {
  display: flex;
  flex-direction: row;
  margin-left: auto;
}
.about-slider .slider-content h1 {
  font-weight: 500;
  font-size: 4em;
  line-height: 1;
}
.about-slider .header-buttons a:first-child {
  margin-right: 15px;
}


/* NOTE: PLACE PAGE */

.place-page-wrapper {
  margin-bottom: 100px;
}
.place-slider {
  height: 500px;
  border-radius: 25px;
  width: 100%;
}
.place-slider:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(-90deg, transparent, #000);
  opacity: 0.7;
  z-index: 1;
}
.place-slider-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  position: absolute;
  z-index: 20;
  bottom: 0;
  left: 0;
  right: 0;
  padding-left: 100px;
  padding-bottom: 70px;
  margin-left: auto;
  margin-right: auto;
  height: 100%;
  width: 100%;
}
.place-slider-info {
  width: 100%;
}
.place-slider-content h1 {
  font-size: 1.2em;
  line-height: 1;
  width: 80%;
  font-weight: 400;
  font-family: var(--primary-font);
}
.place-slider-content h1 span {
  font-size: 3em;
  font-weight: 500;
  display: block;
  font-family: var(--secondary-font);
  margin-top: 10px;
  margin-bottom: 30px;
}
.place-slider-content h3 {
  margin-bottom: 15px;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 2em;
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}
.place-slider .swiper-slide img {
  width: 100%;
  object-position: center;
}
.open-place-gallery {
  width: 60px;
  height: 60px;
  position: absolute;
  right: 0;
  bottom: 80px;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  transition: background 0.3s ease;
  cursor: pointer;
}
.open-place-gallery i {
  opacity: 0.7;
  transition: opacity 0.3s ease;
}
.open-place-gallery:hover {
  background: #050609;
}
.open-place-gallery:hover i {
  opacity: 1;
}
.rest-location.place-loc {
  display: flex;
  font-size: 1.2em;
  top: 70px;
  left: 100px;
  padding: 15px 20px;
}
.place-media {
  padding: 30px 0 0;
}
.place-media .container {
  border-radius: 25px;
  background: var(--dark-grey-color);
  padding: 30px;
}
.place-media-items {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.place-media-item a {
  display: flex;
  flex-direction: row;
  align-items: center;
  text-decoration: none;
}
.place-media-item a::before {
  content: '';
  display: block;
  width: 40px;
  min-width: 40px;
  height: 40px;
  min-height: 40px;
  background-size: 23px;
  border: 1px solid var(--secondary-color);
  border-radius: 40px;
  margin-right: 15px;
  background-repeat: no-repeat;
  background-position: center;
  transition: border .3s ease-in-out;
}
.place-media-item a:hover::before {
  border-color: var(--grey-color);
}
.place-media-item.place-menu a::before {
  background-image: url('/images/place_menu.svg');
}
.place-media-item.place-video a::before {
  background-image: url('/images/place_video.svg');
  background-size: 15px;
}
.place-media-item.place-3d a::before {
  background-image: url('/images/place_3d.svg');
}
.place-media-item a {
  font-size: 1em;
  white-space: nowrap;
}
.place-media-item:not(:last-child) {
  margin-right: 30px;
}
.place-media-item:not(:first-child) {
  border-left: 1px solid var(--grey-color);
  padding-left: 30px;
}
.place-info ul {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  align-items: stretch;
}
.place-info ul.place-links li {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 12px 20px;
  border-radius: 50px;
  border: 1px solid var(--grey-color);
}
.place-info ul.place-links li.place-link-metro {
  flex-basis: fit-content;
}
.place-info ul.place-links li.place-link-metro .place-metro:not(:first-child) {
  margin-left: 15px;
}
.place-info ul.place-links .place-metro i {
  margin-right: 10px;
}
.place-info ul.place-links li.place-link-adress {
  flex: 1.5;
}
.place-info ul.place-links li.place-link-phone {
  flex-basis: fit-content;
}
.place-info ul.place-links li.place-link-time {
  flex-basis: fit-content;
}
.place-info ul.place-links li.place-link-phone a {
  text-decoration: none;
}
.place-info ul.place-links li:not(:last-child) {
  margin-right: 20px;
}
.place-info ul.place-links {
  margin-bottom: 80px;
  margin-top: 30px;
}
.place-info h2 {
  margin-bottom: 40px;
}
.place-info p {
  font-size: 1em;
}
.place-info ul.place-links i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-right: 15px;
  font-size: 12px;
  text-align: center;
  width: 28px;
  height: 28px;
  min-width: 28px;
  border: 1px solid var(--grey-color);
  border-radius: 30px;
}
.place-info i.fa-chevron-left,
.place-info i.fa-chevron-right {
  display: flex;
  justify-content: center;
  align-items: center;
  background: 0;
  margin: 0;
  width: auto;
  height: 100%;
}
.place-info i.fa-chevron-left {
  margin-right: 15px;
}
.place-info i.fa-chevron-right {
  margin-left: 15px;
}
.place-info .metro:before {
  opacity: 1;
}
.place-desc span {
  font-size: 1.2em;
  display: block;
  font-weight: 700;
  margin-bottom: 20px;
}
.place-desc-border p {
  margin-bottom: 30px;
}
.place-desc-border {
  padding: 50px;
  background: #0d0e13;
  border: 2px solid #21232e;
}
.place-social a {
  border: 1px solid var(--grey-color);
  border-radius: 30px;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border 0.3s ease;
}
.place-social a:hover {
  border-color: var(--white-color);
}
.place-social a img {
  width: 16px;
}
.place-info ul.place-social-list li:not(:last-child) {
  margin-right: 20px;
}
.place-social-list {
  display: flex;
  flex-direction: row;
  margin-left: auto;
}
.place-social-list li:not(:first-child) {
  margin-left: 15px;
}
.place-info #gallery {
  margin-bottom: 100px;
}
.place-navigation, .article-navigation {
  display: flex;
  margin-top: 50px;
  flex-direction: row;
}
.article-navigation {
  margin-bottom: 100px;
}
.place-navigation a {
  display: flex;
  align-items: center;
  border-radius: 20px;
  border: 1px solid var(--grey-color);
  padding: 15px;
  font-weight: 400;
}
.place-navigation .next-rest {
  margin-left: auto;
  text-align: right;
  padding-right: 30px;
}
.place-navigation .prev-rest {
  margin-right: auto;
  text-align: right;
  padding-left: 30px;
}
.place-navigation .next-rest .rest-nav-img {
  margin-right: 25px;
}
.place-navigation .prev-rest .rest-nav-img {
  margin-left: 25px;
}
.place-navigation .rest-nav-img {
  width: 80px;
  height: 80px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
}

.place-description {
  column-count: 2;
  column-gap: 80px;
  margin-bottom: 80px;
}
.place-description p {
  color: var(--light-grey-color);
  line-height: 1.5;
}
.place-description h3 {
  margin-bottom: 15px;
  padding-top: 20px;
}
.place-description p:not(:last-child) {
  margin-bottom: 20px;
}

.other-places, .place-reviews {
  margin-top: 100px;
}
.place-reviews .grid.x1-cols {
  margin: 0;
}
.other-places  .rest-list {
  margin-top: 0;
}
.place-review-buttons {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin-top: 50px;
}
.place-review-buttons a:first-child {
  margin-right: 30px;
}



/* NOTE: FRANCHISE */

.franchise-header {
  width: 100%;
  padding: 100px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 25px;
}
.franchise-header h1 {
  font-size: 4em;
}
.franchise-header ul {
  display: flex;
  flex-direction: column;
  margin: 30px 0;
}
.franchise-header li {
  display: flex;
  align-items: center;
  margin: 5px 0;
  position: relative;
}
.franchise-header li::before {
  content: '';
  display: inline-block;
  width: 15px;
  height: 15px;
  background: url(/images/list_sm.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-right: 10px;
}
.franchise-header-numbers {
  background: var(--dark-grey-color);
  padding: 30px 50px;
  border-radius: 25px;
  margin-top: 30px;
  margin-bottom: 100px;
  align-items: stretch;
}
.franchise-header-numbers h3 {
  font-size: 1.4em;
  color: var(--secondary-color);
  margin-bottom: 15px;
}
.franchise-header-numbers p {
  font-size: 1em;
  line-height: 1.5;
}
.franchise-header-numbers .col:not(:last-child) {
  margin-right: 40px;
  padding-right: 40px;
  border-right: 1px solid var(--grey-color);
}
.franchise-numbers {
  margin-bottom: 120px;
}
.franchise-numbers h2 {
  display: block;
  margin-bottom: 50px;
}
.franchise-numbers .grid.x3-cols {
  grid-gap: 30px;
}
.franchise-numbers-item {
  border-radius: 25px;
  border: 1px solid var(--grey-color);
  padding: 30px;
}
.franchise-numbers-item h3 {
  font-size: 2em;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 15px;
}
.franchise-numbers-item p {
  font-size: 1em;
  line-height: 1.5;
}
.franchise-promo {
  background: var(--primary-color);
  margin-bottom: 120px;
}
.franchise-promo h2 {
  margin-bottom: 30px;
}
.franchise-promo p {
  margin-bottom: 40px;
  line-height: 1.5;
}
.franchise-promo-image {
  position: relative;
  height: 550px;
  top: -30px;
  width: 80%;
  margin-left: auto;
  border-radius: 25px;
  background-color: var(--dark-grey-color);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.franchise-benefits {
  margin-bottom: 120px;
}
.franchise-benefits h2 {
  text-align: center;
  display: block;
  margin-bottom: 50px;
}
.franchise-benefits .franchise-benefits-item {
  padding: 30px;
  border-radius: 25px;
  background: var(--dark-grey-color);
}
.franchise-benefits .franchise-benefits-item .icon {
  color: var(--secondary-color);
  margin-bottom: 25px;
  font-size: 1.2em;
}
.franchise-benefits .franchise-benefits-item h3 {
  font-size: 1.4em;
  margin-bottom: 15px;
  line-height: 1.2;
}
.franchise-benefits .franchise-benefits-item p {
  font-size: 14px;
  color: var(--light-grey-color);
  line-height: 1.5;
}
.franchise-steps {
  margin-bottom: 120px;
}
.franchise-steps h2 {
  text-align: center;
  margin-bottom: 50px;
}
.franchise-steps .row {
  background: var(--primary-color);
  border-radius: 25px;
}
.franchise-steps .row .col:first-child {
  padding: 0 70px;
}
.franchise-step-list {
  margin-bottom: 50px;
}
.franchise-step-list li {
  display: flex;
  align-items: center;
  line-height: 1.5;
}
.franchise-step-list li:not(:last-child) {
  margin-bottom: 10px;
}
.franchise-step-list li:before {
  content: "";
  background: url('/images/list_lg.svg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  width: 40px;
  min-width: 40px;
  height: 40px;
  margin-right: 30px;
  border-radius: 10px;
}
.franchise-steps-image {
  width: 100%;
  height: 650px;
  border-radius: 25px;
}
.franchise-market {
  margin-bottom: 130px;
}
.franchise-market h2 {
  margin-bottom: 50px;
  text-align: center;
}
.franchise-market-item {
  border-radius: 25px;
  border: 1px solid var(--grey-color);
  padding: 30px;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.franchise-market-item .icon {
  font-size: 1.2em;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  min-width: 50px;
  height: 50px;
  border: 1px solid var(--secondary-color);
  border-radius: 50px;
  margin-right: 20px;
}
.franchise-market-item p {
  font-size: 1em;
  line-height: 1.5;
}
.franchise-market-caption {
  text-align: center;
  width: 80%;
  margin: 50px auto;
  line-height: 1.5;
  font-size: 1.3em;
}
.franchise-market-caption strong {
  color: var(--secondary-color);
}
.franchise-market-buttons {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.franchise-market-buttons a:first-child {
  margin-right: 25px;
}
.franchise-place {
  margin-bottom: 120px;
}
.franchise-place h2 {
  text-align: center;
  margin-bottom: 50px;
}
.franchise-place-wrapper {
  border-radius: 25px;
  background: var(--primary-color);
  padding: 50px 80px;
}
.franchise-place li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-size: 1.2em;
}
.franchise-place li:before {
  content: "";
  background: url('/images/list_lg.svg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  width: 40px;
  min-width: 40px;
  height: 40px;
  margin-right: 30px;
  border-radius: 10px;
}
.franchise-rules-caption p {
  margin-top: 30px;
  padding: 30px 50px;
  border-radius: 20px;
  border: 1px solid var(--white-color);
  font-size: 1em;
  line-height: 1.5;
  text-align: center;
}
.franchise-contracts {
  background: var(--dark-grey-color);
  padding: 100px 0;
  margin-bottom: 120px;
}
.franchise-contracts h2 {
  margin-bottom: 30px;
  text-align: center;
}
.franchise-contracts p {
  text-align: center;
  line-height: 1.5;
  color: var(--light-grey-color);
  max-width: 80%;
  margin: 0 auto;
}
.franchise-contracts .row {
  align-items: center;
  justify-content: space-around;
  margin: 40px 0;
}
.franchise-open {
  margin-bottom: 120px;
}
.franchise-open h2 {
  margin-bottom: 50px;
  text-align: center;
}
.franchise-open-item {
  padding: 30px;
  border-radius: 25px;
  background: var(--dark-grey-color);
}
.franchise-open-item .number {
  font-size: 2em;
  font-family: var(--secondary-font);
  color: var(--secondary-color);
  font-weight: 500;
  margin-bottom: 20px;
}
.franchise-open-item h3 {
  font-size: 1.4em;
  font-weight: 500;
}
.franchise-open-item p {
  line-height: 1.5;
  margin-top: 15px;
  font-size: 1em;
  color: var(--light-grey-color);
}
.franchise-contacts {
  background: var(--primary-color);
  padding: 100px 0;
}
.franchise-contacts h2 {
  text-align: center;
  margin-bottom: 50px;
}
.franchise-contacts .row {
  justify-content: space-between;
}
.franchise-contact-item {
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
}
.franchise-contact-item .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  min-width: 50px;
  height: 50px;
  border: 1px solid var(--secondary-color);
  margin-right: 15px;
  border-radius: 50px;
}
.franchise-contact-item .contact {
  font-size: 1.4em;
  text-decoration: none;
}
.footer-mail a, .footer-phone a {
  text-decoration: none;
}
.franchise-contact-item .contact:hover, .footer-mail a:hover, .footer-phone a:hover {
  text-decoration: underline;
}
.franchise-content-modal {
  padding: 50px;
  background: rgba(25,24,24,0.5);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  min-width: 800px;
}
.franchise-content-modal h3 {
  font-size: 1.5em;
  margin-bottom: 25px;
}
.franchise-content-modal h3 strong {
  color: var(--secondary-color);
}
.franchise-content-modal ul li {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  line-height: 1.5;
  font-size: 14px;
  margin-bottom: 15px;
}
.franchise-content-modal li::before {
  content: '';
  display: inline-block;
  width: 15px;
  height: 15px;
  min-width: 15px;
  margin-top: 3px;
  background: url(/images/list_sm.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-right: 10px;
}

/* NOTE: STOCKS PAGE */

.stocks-page .stocks-container {
  padding: 50px 0 100px;;
}
.stocks-page .stock-img {
  width: 100%;
  min-height: 300px;
  height: 300px;
  max-height: 500px;
}
.stocks-page .stock-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 25px;
}
.stock-item {
  background: var(--dark-grey-color);
  border-radius: 25px;
}
.stock-item:not(:last-child) {
  margin-bottom: 30px;
}
.stock-item h2 {
  font-size: 2em;
  margin-bottom: 30px;
}
.stock-item .col:first-child {
  flex: 0.5;
}
.stock-item .stock-info {
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 60px;
}
.stock-item .stock-info p {
  font-size: 16px;
  line-height: 1.5;
  color: var(--light-grey-color);
}


/* NOTE: REVIEWS PAGE */

.reviews-page .send-review-btn {
  margin-top: 30px;
}
.reviews-page .grid {
  padding: 50px 0 100px;
}
.review-item {
  background: var(--dark-grey-color);
  padding: 30px;
  border-radius: 25px;
}
.review-item .rating {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.review-item .rating .rating-stars {
  display: flex;
  align-items: center;
  flex-direction: row;
  margin-right: 15px;
  font-size: 14px;
}
.review-item .rating .rating-stars i:not(:last-child) {
  margin-right: 6px;
}
.review-item .rating i.rating-star {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  border-radius: 24px;
  width: 24px;
  height: 24px;
  background: var(--primary-color);
  position: relative;
}
.review-item .rating i.rating-star::before {
  content: '';
  display: block;
  width: 16px;
  height: 16px;
  background-image: url('/images/rating_star.svg');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.review-item .rating i.star-hidden {
  background: var(--grey-color);
  opacity: 0.5;
}
.review-item .rating i.rating-star.star-hidden::before {
  opacity: 0.5;
}
.review-item .avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  height: 60px;
  width: 60px;
  background: var(--grey-color);
  color: var(--white-color);
  font-weight: 700;
  font-size: 20px;
  margin-right: 20px;
}
.review-item .name {
  font-size: 14px;
  font-weight: 300;
  color: var(--light-grey-color);
  margin-bottom: 5px;
}
.review-item .title {
  font-size: 20px;
  font-size: 700;
}
.review-item .review-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  border-bottom: 1px solid var(--grey-color);
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.review-item .review-desc {
  margin-bottom: 30px;
}
.review-item .review-desc p {
  line-height: 1.5;
  font-size: 16px;
}
.review-item .review-info {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.review-item .review-info .review-date {
  margin-left: auto;
  font-size: 14px;
  color: var(--light-grey-color);
}


/* NOTE: REVIEWS MODAL */

#send-review {
  padding: 50px 50px 20px;
}
.modal a.close-modal {
  top: 10px;
  right: 10px;
  z-index: 700;
}
.form-fieldset {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 20px;
  width: 100%;
}
.form-field {
  width: 100%;
  margin-bottom: 20px;
}
.rating span {
  position: relative;
}
.rating span input {
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0;
}
.rating span label {
  display: inline-flex;
  width: 30px;
  height: 30px;
  text-align: center;
  align-items: center;
  justify-content: center;
  background: var(--grey-color);
  opacity: 0.5;
  font-size: 30px;
  margin-right: 7px;
  line-height: 30px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  transition: background .2s ease, opacity .2s ease;
  cursor: pointer;
}
.rating span label:before {
  content: '';
  display: block;
  width: 16px;
  height: 16px;
  background-image: url(/images/rating_star.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.rating span:hover ~ span label,
.rating span:hover label,
.rating span.checked label,
.rating span.checked ~ span label {
  background: var(--primary-color);
  opacity: 1;
}
.rating-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  direction: rtl;
  margin-right: auto;
  height: 50px;
}
.review-page-header {
  display: flex;
  flex-direction: row;
}
.review-page-header h1 {
  margin-right: auto;
}
.review-page-header .send-review-btn a {
  padding: 15px 25px;
}
.modal.review-content-modal {
  background: rgba(25,24,24,0.4);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  min-width: 40%;
  padding-top: 20px;
}
.modal.review-content-modal h2 {
  text-align: left;
  font-size: 2em;
  margin-bottom: 30px;
}
.modal.review-content-modal h3 {
  font-weight: 400;
  font-size: 1.2em;
  margin-bottom: 15px;
  color: var(--white-color);
}
#review-form {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}
.submit-btn {
  font-size: 1em;
  margin: 20px auto 0;
}

select#review-place.input-text {
  appearance: none;
  -webkit-appearance: none;
  outline: none;
  background: none;
  color: #eaeaea;
  border: none;
  font-family: var(--primary-font);
  font-size: 1em;
  padding: 15px 50px 15px 20px;
  margin-bottom: 0;
  cursor: pointer;
}
.select-wrapper {
  display: inline-block;
  position: relative;
  border-radius: 10px;
  border: 1px solid var(--grey-color);
  transition: border .3s ease-in-out;
  cursor: pointer;
}
.select-wrapper:hover {
  border-color: var(--light-grey-color);
}
.select-wrapper:before {
  content: "";
  display: block;
  position: absolute;
  top: 20px;
  right: 20px;
  border: solid var(--white-color);
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 3px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transition: all 0.3s ease;
}

/* NOTE: BLOG */

.blog-page .grid {
  padding: 50px 0 100px;
}
.blog-item {
  display: flex;
  flex-direction: column;
  background: var(--dark-grey-color);
  border-radius: 25px;
  transition: transform .3s ease-in-out;
}
.blog-item .article-image {
  width: 100%;
  height: 300px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 25px;
}
.article-wrapper {
  width: 100%;
}
.article-wrapper a {
  display: block;
}
.article-body {
  padding: 40px;
}
.article-body .article-title {
  margin-bottom: 30px;
  transition: opacity 0.3s ease;
  line-height: 1.4;
}
.article-body a {
  text-decoration: none;
}
.article-body .article-title:hover {
  opacity: 0.5;
}
.article-body .article-text {
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--light-grey-color);
}
.article-text h2 {
  margin-top: 30px;
  font-size: 1.4em;
  margin-bottom: 10px;
}
.article-text a {
  color: var(--secondary-color);
  text-decoration: underline;
}
.blog-item .link-red {
  color: var(--white-color);
  font-weight: 400;
  font-size: 13px;
  text-transform: uppercase;
}
.blog-item .link-red:hover {
  color: var(--secondary-color);
}
.blog-item .link-red i {
  margin-left: 15px;
}
.header .article-image h1 {
  font-size: 3em;
  width: 50%;
  position: relative;
  z-index: 2;
  text-align: center;
}
.header .article-image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 350px;
  border-radius: 25px;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.header .article-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 25px;
  background: rgba(0,0,0,0.3);
  z-index: 1;
}
.article-info {
  margin-top: 70px;
  margin-bottom: 100px;
}
.article-info .article-text {
  font-size: 1em;
  line-height: 1.5;
  padding: 0 15%;
}
.article-info .article-text p {
  font-size: 1em;
  line-height: 1.5;
  padding: 15px 0;
}
.article-info .article-text ul {
  margin-top: 15px;
}
.article-info .article-text ul li, .article-info .article-text ol li {
  padding: 10px 0;
  margin-left: 20px;
}
.article-info .article-text ul li:before, .article-info .article-text ol li:before {
  content: "—";
  margin-right: 15px;
}
.article-info h2 {
  font-size: 2em;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 20px;
  margin-top: 50px;
}
.article-info h3 {
  font-size: 1.4em;
  font-weight: 500;
  margin-bottom: 20px;
  margin-top: 40px;
}
.other-articles {
  margin-bottom: 100px;
  height: auto;
}


/* NOTE: MODAL */

.modal {
  border-radius: 25px;
  overflow: hidden;
}
.modal.place-content-modal {
  max-width: 1400px;
  border-radius: 25px;
  padding: 0;
  box-shadow: none;
  background: var(--black-color);
}
.modal iframe {
  display: block;
  width: 100%;
  height: 70vh;
}
.blocker {
  z-index: 1000;
}
.modal a.close-modal {
  z-index: 100;
}
#map {
  max-width: 1200px;
  border: none;
  padding: 0;
}
#map:before {
  display: none;
}
#map-yandex {
  position: relative;
  z-index: 7;
  width: 100%;
  height: 500px;
  cursor: pointer;
  background-color: transparent;
  border-radius: 25px;
  overflow: hidden;
}
.loader {
  position: absolute;
  z-index: 15;
  top: -1000%;
  left: 0;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  overflow: hidden;
  color: #000000;
  transition: opacity 0.7s ease;
  opacity: 0;
  background-color: rgba(0, 0, 0, 0.55);
}
.place-map {
  position: relative;
}
.place-map .ymap-container {
  border-radius: 25px;
  overflow: hidden;
}
.loader:after,
.loader:before {
  box-sizing: border-box;
}
.loader.is-active {
  top: 0;
  opacity: 1;
}
.loader-default:after {
  position: absolute;
  top: calc(50% - 24px);
  left: calc(50% - 24px);
  width: 48px;
  height: 48px;
  content: "";
  animation: rotation 1s linear infinite;
  border: solid 8px var(--white-color);
  border-left-color: transparent;
  border-radius: 50%;
}
@keyframes rotation {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(359deg);
  }
}
.header-buttons .btn.btn-red-border {
  display: none;
}


/* NOTE: RESPONSIVE */

@media screen and (max-width: 1440px) {
  .swiper-slide h2, .swiper-slide h1 {
    font-size: 3.5em;
  }
  .swiper-container.main-slider {
    height: 550px;
  }
  .swiper-slide p {
    width: 30%;
  }
  .rest-menu-desc {
    width: 80%;
  }
  .advantages-block h2, .app-block h2, .rest-menu h2 {
    font-size: 3em;
  }
  .app-block h2 {
    width: 70%;
  }
}
@media screen and (max-width: 1200px) {
  body {
    margin-top: 80px;
  }
  .container {
    min-width: 1000px;
    max-width: 1080px;
  }
  .grid {
    min-width: 1000px;
    max-width: 1080px;
  }
  .main-nav {
    padding: 15px 0;
  }
  .main-nav .main-menu {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
  .main-nav .btn.btn-outline {
    margin-left: auto;
    padding: 10px 20px;;
    font-size: 14px;
  }
  .swiper-slide h2, .swiper-slide h1 {
    font-size: 3em;
  }
  .swiper-slide p {
    width: 35%;
    font-size: 14px;
  }
  .swiper-container.main-slider .swiper-slide .slider-content {
    padding-left: 90px;
  }
  .swiper-container.main-slider {
    height: 500px;
  }
  .additional-nav a {
    width: 40px;
    height: 40px;
  }
  .age-limit {
    padding: 5px 15px;
    font-size: 1.2em;
  }
  .header-buttons {
    margin-top: 25px;
  }
  .rest {
    padding: 60px 0;
  }
  .rest-header h2 {
    font-size: 2em;
  }
  .rest-img {
    height: 250px;
  }
  .rest-img img {
    height: 250px;
  }
  .rest-info p {
    font-size: 14px;
  }
  .menu-image {
    width: 520px;
  }
  .rest-menu-caption {
    width: 60%;
  }
  .app-block h3 {
    width: 50%;
    text-align: right;
  }
  .app-buttons a {
    height: 45px;
  }
  .gallery-item {
    height: 150px;
  }
  .gallery-item img {
    height: 150px;
  }
  .footer-logo-col {
    flex: 0.7 !important;
  }
  #map-yandex {
    height: 400px;
  }
  .place-slider-content h1 span {
    font-size: 2.5em;
    margin-bottom: 20px;
  }
  .place-slider-content {
    padding-bottom: 60px;
    padding-left: 90px;
  }
  .rest-location.place-loc {
    left: 90px;
    top: 60px;
  }
  .mobile-menu li a.btn {
    font-size: 0.5em;
  }
  .place-info ul.place-links {
    margin-bottom: 60px;
  }
  .place-info ul.place-links li.place-link-phone {
    flex: auto;
    width: 80px;
  }
  .place-info ul.place-links li.place-link-time {
    flex: auto;
    width: 90px;
  }
  .about-slider {
    height: 400px;
  }
  .about-page .row:first-child {
    margin-top: 40px;
  }
  .about-page .about-item {
    padding: 25px;
  }
  .franchise-header {
    padding-left: 80px;
  }
  .franchise-header li {
    width: 40%;
    line-height: 1.5;
  }
  .franchise-header li::before {
    min-width: 15px;
    margin-right: 15px;
  }
  .franchise-header-numbers {
    padding: 30px;
    margin-bottom: 70px;
  }
  .franchise h2 {
    font-size: 2.5em;
  }
  .franchise-benefits .grid.x4-cols {
    grid-template-columns: 1fr 1fr;
  }
  .franchise-step-list li {
    font-size: 14px;
  }
  .franchise-market-caption {
    width: 100%;
  }
  .franchise-contract-item {
    height: 70px;
  }
  .franchise-contract-item img {
    height: 100%;
  }
  .franchise-open .grid.x3-cols {
    grid-gap: 30px;
  }
  .blog-page .grid.x3-cols {
    grid-template-columns: 1fr 1fr;
    grid-gap: 30px;
  }
  .other-articles .grid.x3-cols {
    grid-gap: 30px;
  }
}

@media screen and (max-width: 1024px) {
  .container {
    min-width: 760px;
    max-width: 960px;
  }
  .grid {
    min-width: 760px;
    max-width: 960px;
  }
  .mobile-menu {
    width: 100%;
    text-align: center;
  }
  .grid.x3-cols.rest-list {
    grid-template-columns: 1fr 1fr;
  }
  .rest-item {
    width: 45vw;
  }
  .swiper-slide p {
    width: 45%;
  }
  .app-block {
    padding: 80px 0 80px;
  }
  .promo-item {
    height: 400px;
    padding: 20px;
  }
  .promo-block {
    padding-top: 70px;
  }
  .promo-item .promo-title h3 {
    font-size: 1.5em;
  }
  .footer .footer-contacts {
    flex: 0.7;
  }
  .place-info ul.place-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
  }
  .place-info ul.place-links li.place-link-time, .place-info ul.place-links li.place-link-phone {
    flex: 1;
    width: auto;
  }
  .place-info ul.place-links li:not(:last-child) {
    margin-right: 0;
  }
  .place-info ul.place-links li {
    justify-content: flex-start;
  }
  .place-media .container {
    padding: 20px 30px;
  }
  .franchise-contact-item .contact {
    font-size: 1.2em;
  }
  .franchise-contacts .row {
    justify-content: space-around;
  }
}

@media screen and (max-width: 768px) {
  .container {
    min-width: 600px;
    max-width: 720px;
  }
  .grid {
    min-width: 600px;
    max-width: 720px;
  }
  .gallery-block .grid.x6-cols {
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 15px;
  }
  .advantages-block ul {
    flex-direction: column;
  }
  .swiper-container.main-slider .swiper-slide .slider-content {
    padding: 0 80px;
  }
  .swiper-container.main-slider .swiper-slide .slider-content h1, .swiper-container.main-slider .swiper-slide .slider-content h2 {
    width: 80%;
  }
  .main-slider .swiper-slide p {
    margin-bottom: 0;
  }
  .swiper-slide p {
    width: 60%;
  }
  .swiper-button-prev, .swiper-container-rtl .swiper-button-next {
    left: 10px;
  }
  .swiper-button-next, .swiper-container-rtl .swiper-button-prev {
    right: 10px;
  }
  .swiper-container.main-slider .swiper-slide:before {
    background: var(--black-color);
    opacity: 0.6;
  }
  .rest {
    padding-bottom: 80px;
  }
  .rest-menu .row {
    flex-direction: column;
  }
  .menu-image {
    position: static;
  }
  .menu-image img {
    position: relative;
  }
  .rest-menu::after {
    bottom: 0;
    top: auto;
    height: 30%;
    width: 100%;
  }
  .app-block .container {
    padding: 50px;
  }
  .app-block .container .row {
    flex-direction: column-reverse;
  }
  .footer .container:first-child .row {
    flex-direction: column;
    align-items: center;
  }
  .footer .container:first-child .row .col {
    flex: 1;
  }
  .adv-header {
    flex-direction: column;
  }
  .promo-block .promo-list {
    flex-direction: column;
  }
  .rest-menu h2 {
    text-align: center;
  }
  .rest-menu-desc {
    text-align: center;
    margin: 0 auto;
  }
  .rest-menu .btn {
    margin: 30px auto 0;
  }
  .rest-menu-caption {
    width: 100%;
    text-align: center;
  }
  .rest-menu .container .col:first-child {
    padding-bottom: 0px;
  }
  .app-info {
    align-items: flex-start;
  }
  .app-block h2 {
    width: 100%;
    text-align: center;
  }
  .app-block h3 {
    width: 100%;
    text-align: center;
  }
  .app-buttons {
    margin: 40px auto 70px;
  }
  .app-block .container::before {
    display: none;
  }
  .app-buttons a {
    height: 60px;
  }
  .advantages-block h2 {
    text-align: center;
  }
  .advantages-block {
    padding: 70px 0;
  }
  .advantages-block .adv-header h3 {
    margin-top: 30px;
    text-align: center;
  }
  .adv-item:not(:last-child) {
    margin-right: 0;
    margin-bottom: 40px;
  }
  .advantages-block ul {
    align-items: center;
  }
  .adv-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .adv-item h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
  }
  .adv-item p {
    font-size: 16px;
  }
  .promo-item:not(:last-child) {
    margin-right: 0;
    margin-bottom: 30px;
  }
  .footer-sub .row {
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
  }
  .footer-sub .row .col {
    margin: 0 auto;
  }
  .footer-sub .row .col:first-child {
    margin-bottom: 20px;
  }
  .promo-item {
    flex: auto;
    height: 500px;
    background-position: left top 20%;
  }
  .footer .footer-logo {
    margin-bottom: 30px;
  }
  .footer h3 {
    text-align: center;
  }
  .footer .footer-nav {
    margin-bottom: 30px;
  }
  .footer .footer-buttons {
    flex-direction: row;
    margin-bottom: 30px;
  }
  .footer .footer-buttons a {
    margin-bottom: 0;
  }
  .footer .footer-buttons a:first-child {
    margin-right: 20px;
  }
  .footer .footer-phone, .footer .footer-mail {
    text-align: center;
  }
  .footer .footer-social {
    justify-content: center;
  }
  .footer .footer-nav li {
    text-align: center;
  }
  .place-slider-content h1 span {
    font-size: 2em;
  }
  .place-slider-content {
    padding-left: 75px;
  }
  .rest-location.place-loc {
    left: 75px;
    top: 40px;
  }
  .swiper-pagination-bullet {
    width: 30px;
  }
  .place-slider {
    height: 400px;
  }
  .place-slider:after {
    width: 70%;
    opacity: 0.8;
  }
  .place-info ul.place-links {
    font-size: 14px;
  }
  .place-info ul.place-links li {
    padding: 15px;
    border-radius: 15px;
  }
  .place-media .row {
    flex-direction: column;
  }
  .place-media .row .col:first-child {
    margin-bottom: 15px;
  }
  .place-media-item {
    font-size: 14px;
  }
  .place-media-item:not(:last-child) {
    margin-right: 15px;
  }
  .place-media-item:not(:first-child) {
    padding-left: 15px;
  }
  .place-info #gallery.grid.x5-cols {
    grid-gap: 10px;
  }
  .place-info #gallery {
    margin-bottom: 70px;
  }
  .gallery-item {
    height: 120px;
  }
  .gallery-item img {
    height: 120px;
  }
  .place-description {
    column-count: 1;
  }
  .about-slider .slider-content {
    flex-direction: column;
    align-items: flex-start;
  }
  .about-slider .header-buttons {
    margin-left: 0;
    margin-top: auto;
  }
  .about-page .row:first-child {
    flex-direction: column;
  }
  .about-page .row:first-child .about-item {
    margin-right: 0;
    margin-bottom: 20px;
  }
  .about-page .row {
    margin-top: 70px;
  }
  .about-page .about-desc {
    column-count: 1;
  }
  .about-loyal {
    flex-direction: column;
  }
  .about-app-img img {
    width: 100%;
  }
  .about-map-button {
    margin-top: 20px;
  }
  .franchise-header {
    padding: 50px;
  }
  .franchise-header h1 {
    font-size: 2.5em;
  }
  .franchise-header li {
    font-size: 14px;
    width: 55%;
  }
  .franchise-header-numbers .col:not(:last-child) {
    margin-right: 20px;
    padding-right: 20px;
  }
  .franchise-header-numbers p {
    font-size: 14px;
  }
  .franchise-numbers .grid.x3-cols {
    grid-gap: 15px;
  }
  .franchise-numbers-item p {
    font-size: 14px;
  }
  .franchise h2 {
    font-size: 2em;
  }
  .franchise-promo p {
    font-size: 16px;
  }
  .franchise-promo-image {
    height: 500px;
  }
  .franchise-steps .col:last-child {
    display: none;
  }
  .franchise-steps .row .col:first-child {
    padding: 40px;
  }
  .franchise-step-list {
    margin-bottom: 30px;
  }
  .franchise-steps {
    margin-bottom: 70px;
  }
  .franchise-market-item {
    align-items: flex-start;
  }
  .franchise-market-item p {
    font-size: 14px;
  }
  .franchise-market-item {
    padding: 20px;
  }
  .franchise-market .grid.x2-cols {
    grid-gap: 15px;
  }
  .franchise-market-caption {
    width: 90%;
  }
  .franchise-market-caption p {
    font-size: 20px;
  }
  .franchise-market {
    margin-bottom: 70px;
  }
  .franchise-place-wrapper {
    padding: 40px;
  }
  .franchise-place li {
    font-size: 1em;
  }
  .franchise-contracts .row {
    flex-direction: column;
  }
  .franchise-contract-item {
    margin-bottom: 20px;
  }
  .franchise-contracts {
    margin-bottom: 70px;
  }
  .franchise-open .grid.x3-cols {
    grid-gap: 15px;
    grid-template-columns: 1fr 1fr;
  }
  .franchise-contacts .row {
    flex-direction: column;
    align-items: flex-start;
    width: 50%;
    margin: 0 auto;
  }
  .franchise-contacts .row .col {
    margin-bottom: 20px;
  }
  .page-cover {
    padding: 30px 0;
    min-height: 240px;
  }
  .stock-item h2 {
    font-size: 1.5em;
  }
  .stock-item .stock-info {
    padding: 40px;
  }
  .stock-item .col:first-child {
    flex: 0.7;
  }
  .article-body {
    padding: 25px;
  }
  .review-item .review-desc p {
    font-size: 14px;
  }
  .header .article-image h1 {
    font-size: 2em;
  }
  .header .article-image {
    height: 270px;
  }
  .article-info .article-text {
    padding: 0 10%;
  }
  .other-articles .grid.x3-cols {
    grid-template-columns: 1fr;
  }
  .article-body .article-title {
    margin-bottom: 20px;
  }
  .place-reviews .grid.x2-cols {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 480px) {
  .container {
    min-width: 320px;
    width: calc(100vw - 30px);
    max-width: 440px;
  }
  .grid {
    min-width: 320px;
    width: calc(100vw - 30px);
    max-width: 440px;
  }
  .main-nav .btn.btn-outline {
    font-size: 12px;
    padding: 10px 12px;
  }
  .main-nav .btn.btn-icon::before {
    width: 16px;
    height: 16px;
    margin-right: 10px;
  }
  .swiper-container.main-slider .swiper-slide .slider-content {
    padding: 0 50px;
  }
  .swiper-container.main-slider .swiper-slide .slider-content h1, .swiper-container.main-slider .swiper-slide .slider-content h2 {
    width: 100%;
  }
  .swiper-slide h2, .swiper-slide h1 {
    font-size: 2em;
    text-align: center;
  }
  .swiper-button-prev, .swiper-container-rtl .swiper-button-next {
    transform: scale(0.7);
    left: 5px;
  }
  .swiper-button-next, .swiper-container-rtl .swiper-button-prev {
    transform: scale(0.7);
    right: 5px;
  }
  .swiper-slide p {
    width: 80%;
    text-align: center;
    margin: 0 auto;
    margin-top: 20px;
    margin-bottom: 10px;
  }
  .main-slider .swiper-slide p {
    width: 90%;
    margin-top: 10px;
    margin-bottom: 0px;
  }
  .grid.x3-cols.rest-list {
    grid-template-columns: 1fr;
  }
  .btn {
    padding: 15px 30px;
  }
  .swiper-container.main-slider {
    height: 75vh;
  }
  .header-buttons a:first-child {
    margin: 0 auto;
  }
  .main-nav .logo {
    width: 120px;
  }
  .menu-toggle {
    margin-left: 20px;
  }
  .rest-item {
    width: auto;
  }
  .menu-image {
    width: 300px;
  }
  .mobile-menu li {
    font-size: 1.5em;
  }
  .blog-page .grid.x3-cols {
    grid-template-columns: 1fr;
  }
  .review-item {
    padding: 20px;
  }
  .reviews-page .grid.x2-cols {
    grid-template-columns: 1fr;
  }
  .page-cover .page-cover-content h1 {
    font-size: 2em;
  }
  .swiper-container.main-slider .swiper-slide .slider-content .container {
    margin: 0 auto;
  }
  .swiper-container.main-slider .swiper-slide .slider-content {
    display: flex;
    justify-content: center;
  }
  .rest-desc {
    height: auto;
  }
  .rest-header {
    flex-direction: column;
  }
  .sort-select {
    margin-top: 20px;
  }
  .rest-title div {
    font-size: 24px;
  }
  .rest-desc p:last-child a {
    font-size: 1.2em;
  }
  .rest-list-btn {
    flex-direction: column-reverse;
  }
  .rest-list-btn a {
    flex: 1;
    width: 100%;
  }
  .rest-list-btn a:first-child {
    margin-right: 0;
  }
  #show-more {
    margin-bottom: 15px;
  }
  .rest-menu-desc {
    font-size: 14px;
    width: 85%;
  }
  .advantages-block h2, .app-block h2, .rest-menu h2 {
    font-size: 2em;
  }
  .app-buttons a {
    height: 40px;
  }
  .footer .footer-nav {
    grid-template-columns: 130px 130px;
    grid-gap: 10px;
    margin-bottom: 40px;
  }
  .footer .footer-nav li a {
    display: block;
    padding: 10px 7px;
    font-size: 14px;
    border-radius: 25px;
    background: rgba(255,255,255,0.05);
  }
  .footer .footer-nav li {
    margin-bottom: 0;
  }
  .footer-sub {
    font-size: 12px;
  }
  .place-info ul.place-links {
    grid-template-columns: 1fr;
    grid-gap: 10px;
    margin-bottom: 30px;
    margin-top: 15px;
  }
  .place-metro {
    width: fit-content;
  }
  .place-info ul.place-links li {
    padding: 10px 15px;
    border-radius: 15px;
  }
  .place-link-time {
    line-height: 1.5;
  }
  .place-info #gallery.grid.x5-cols {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .place-info #gallery .gallery-item:last-child {
    display: none;
  }
  .place-description p {
    font-size: 14px;
  }
  .place-navigation {
    flex-direction: column;
  }
  .place-info i.fa-chevron-left, .place-info i.fa-chevron-right {
    display: none;
  }
  .place-navigation .prev-rest {
    flex-direction: row-reverse;
    justify-content: flex-end;
    margin-right: 0;
    padding-left: 15px;
    margin-bottom: 20px;
    width: 100%;
  }
  .place-navigation .rest-nav-img {
    min-width: 80px;
  }
  .place-navigation .prev-rest .rest-nav-img {
    margin-right: 25px;
    margin-left: 0;
  }
  .place-navigation .next-rest {
    text-align: left;
    width: 100%;
  }
  .place-media-item:not(:first-child) {
    padding-left: 0;
    border-left: none;
  }
  .place-media-item:not(:last-child) {
    margin-left: 0;
  }
  .place-slider-content h1 span {
    font-size: 1.6em;
  }
  .franchise-benefits .grid.x4-cols {
    grid-template-columns: 1fr;
  }
  .franchise-numbers .grid.x3-cols {
    grid-template-columns: 1fr;
  }
  .franchise-numbers {
    margin-bottom: 80px;
  }
  .franchise-header-numbers {
    flex-direction: column;
  }
  .franchise-market .grid.x2-cols {
    grid-template-columns: 1fr;
  }
  .franchise-open .grid.x3-cols {
    grid-template-columns: 1fr;
  }
  .stock-item {
    flex-direction: column;
  }
  .page-cover {
    min-height: 100px;
    padding: 40px 0;
  }
  .about-geo-img {
    display: none;
  }
  .about-page .row {
    flex-direction: column;
  }
  .about-loyal .app-buttons a {
    height: 45px;
  }
  .about-page .about-item-block {
    padding: 30px;
  }
  .about-page .about-item-block p, .about-page .about-item p, .about-page .about-desc p, .about-page p {
    font-size: 14px;
  }
  .about-slider .slider-content h1 {
    font-size: 2.5em;
  }
  .about-slider .header-buttons {
    flex-direction: column;
  }
  .about-slider .slider-content {
    padding: 30px 20px;
  }
  .about-slider .header-buttons a {
    flex: 1;
    width: 100%;
    font-size: 14px;
  }
  .about-slider .header-buttons a:first-child {
    margin-right: 0;
    margin-bottom: 10px;
  }
  .place-media .row .col {
    align-items: flex-start;
  }
  .place-media-item:not(:last-child) {
    margin-right: 20px;
  }
  .place-media-item a {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .place-media .row {
    flex-direction: row;
  }
  .place-media .container {
    padding: 15px 20px;
    border-radius: 15px;
  }
  .place-media-item a {
    font-size: 12px;
  }
  .place-media-item a::before {
    margin-right: 0px;
    margin-bottom: 7px;
    width: 35px;
    height: 35px;
    min-width: 35px;
    min-height: 35px;
    background-size: 23px;
  }
  .place-media .row .col:first-child {
    margin-bottom: 0;
  }
  .place-social a {
    width: 45px;
    height: 45px;
  }
  .place-social a img {
    width: 20px;
  }
  .place-slider .swiper-slide img {
    object-fit: cover;
    height: 100%;
  }
  .swiper-pagination-bullet {
    width: 20px;
  }
  .swiper-container-horizontal>.swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction {
    bottom: 10px;
  }
  .place-slider-content h1 {
    width: 100%;
    font-size: 1em;
  }
  .place-slider-content h1 span {
    margin-bottom: 10px;
  }
  .place-slider-content {
    padding-left: 20px;
    padding-bottom: 40px;
  }
  .place-slider-content .btn.btn-red {
    padding: 10px 20px;
    font-size: 14px;
  }
  .place-slider {
    height: 420px;
  }
  .page-body-wrapper .scroll-to-top {
    width: 52px;
    height: 52px;
    padding: 17px 0;
  }
  .place-info h2 {
    font-size: 2em;
    margin-bottom: 20px;
  }
  .place-description {
    margin-bottom: 40px;
  }
  .place-info #gallery {
    margin-bottom: 50px;
  }
  .place-slider:after {
    background: linear-gradient(180deg, transparent, #000);
    width: 100%;
    height: 70%;
  }
  .app-block ul li {
    font-size: 14px;
  }
  .app-block ul li:before {
    margin-right: 20px;
  }
  .app-block .container {
    padding: 30px;
  }
  .app-buttons {
    margin: 30px auto 40px;
  }
  .advantages-block .adv-header h3 {
    font-size: 14px;
    padding: 20px;
  }
  .adv-item p {
    font-size: 14px;
    width: 70%;
  }
  .adv-item h3 {
    font-size: 1.5em;
  }
  .about-map-button a {
    width: 100%;
  }
  .franchise-header {
    padding: 50px 25px;
  }
  .franchise-header li {
    width: 100%;
  }
  .franchise-header h1 {
    font-size: 2em;
  }
  .franchise-header {
    position: relative;
  }
  .franchise-header::after {
    content: '';
    z-index: 1;
    background: var(--black-color);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.5;
    display: block;
  }
  .franchise-header .col {
    position: relative;
    z-index: 2;
  }
  .franchise-button .btn {
    font-size: 14px;
    width: 100%;
  }
  .promo-item {
    padding: 30px;
    background-position: center center;
    height: 450px;
  }
  .stocks-page .stock-img {
    width: calc(100vw - 30px);
    height: 250px;
    min-height: 0;
    max-height: none;
  }
  .stock-item h2 {
    margin-bottom: 15px;
  }
  .stock-item .stock-info {
    padding: 25px;
  }
  .article-body .article-title {
    line-height: 1.3;
  }
  .rest-location.place-loc {
    right: auto;
    top: 20px;
    left: 20px;
    font-size: 14px;
    padding: 15px;
  }
  .sort-dropdown select {
    padding: 15px 40px 15px 15px;
  }
  .rest-list {
    margin-top: 20px;
  }
  .header .article-image h1 {
    font-size: 1.5em;
  }
  .header .article-image {
    height: 220px;
  }
  .article-info {
    margin-top: 50px;
    margin-bottom: 70px;
  }
  .article-info .article-text {
    padding: 0;
  }
  .btn.btn-icon::before {
    margin-right: 10px;
  }
  .app-block {
    padding: 70px 0 50px;
  }
  .gallery-block {
    padding-bottom: 80px;
  }
  .adv-item h3 {
    width: 75%;
  }
  .adv-item .adv-item-icon {
    margin-bottom: 15px;
  }
  .mobile-menu li a.btn {
    font-size: 0.7em;
    width: fit-content;
    margin: 0 auto;
  }
  .review-item .avatar {
    width: 50px;
    height: 50px;
    min-width: 50px;
    margin-right: 15px;
  }
  .review-item .title {
    font-size: 18px;
  }
  .header .article-image h1 {
    width: 80%;
  }
  .article-info h2 {
    font-size: 1.8em;
  }
  .article-info h3 {
    font-size: 1.3em;
    margin-bottom: 15px;
  }
  .blog-item .article-image {
    height: 200px;
  }
  .franchise-header-numbers .col:not(:last-child) {
    margin-right: 0;
    padding-right: 0;
    border: none;
    margin-bottom: 25px;
  }
  .franchise-header-numbers h3 {
    margin-bottom: 10px;
  }
  .franchise-numbers h2 {
    margin-bottom: 30px;
  }
  .franchise-numbers-item {
    padding: 20px;
  }
  .franchise-numbers-item h3 {
    margin-bottom: 10px;
  }
  .franchise-promo  {
    margin-bottom: 120px;
  }
  .franchise-promo .row {
    flex-direction: column;
    padding: 50px 0 0;
  }
  .franchise-promo .btn.btn-outline {
    width: 100%;
  }
  .franchise-promo-image {
    width: calc(100vw - 30px);
    height: 300px;
    top: 50px;
  }
  .franchise-benefits h2 {
    margin-bottom: 30px;
  }
  .franchise-benefits .franchise-benefits-item {
    padding: 20px;
  }
  .franchise-benefits .franchise-benefits-item h3 {
    font-size: 1.2em;
    margin-bottom: 10px;
  }
  .franchise-benefits {
    margin-bottom: 70px;
  }
  .franchise-steps h2, .franchise-market h2, .franchise-place h2 {
    margin-bottom: 30px;
  }
  .franchise-steps .row .col:first-child {
    padding: 30px 20px;
  }
  .franchise-step-list li:before {
    margin-right: 15px;
    width: 30px;
    height: 30px;
    min-width: 30px;
  }
  .franchise-steps .btn {
    width: 100%;
  }
  .franchise-market-item .icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    font-size: 1em;
    margin-top: 5px;
  }
  .franchise-market-buttons {
    flex-direction: column;
  }
  .franchise-market-buttons a {
    width: 100%;
  }
  .franchise-market-buttons a:first-child {
    margin-right: 0;
    margin-bottom: 20px;
  }
  .franchise-place-wrapper .row:first-child {
    flex-direction: column;
  }
  .franchise-place-wrapper .row:first-child .col {
    justify-content: flex-start;
    width: 100%;
  }
  .franchise-place li:before {
    width: 30px;
    height: 30px;
    min-width: 30px;
    min-height: 30px;
    margin-right: 15px;
  }
  .franchise-place-wrapper {
    padding: 40px 20px;
  }
  .franchise-rules-caption p {
    padding: 15px;
    font-size: 14px;
  }
  .franchise-place {
    margin-bottom: 70px;
  }
  .franchise-contracts p {
    font-size: 14px;
  }
  .franchise-contracts .row {
    margin: 40px 0 0;
  }
  .franchise-contracts {
    padding: 60px 0;
  }
  .franchise-open h2 {
    margin-bottom: 30px;
  }
  .franchise-open-item {
    padding: 20px;
  }
  .franchise-open {
    margin-bottom: 70px;
  }
  .franchise-contacts {
    padding: 60px 0;
  }
  .franchise-contacts .row {
    width: calc(100vw - 30px);
    justify-content: center;
  }
  .franchise-contacts h2 {
    margin-bottom: 30px;
  }
  .about-slider .header-buttons {
    width: 100%;
  }
  .about-slider .header-buttons a {
    display: flex;
    width: 100%;
  }
  .about-slider.place-slider:after {
    background: linear-gradient(0deg, transparent, #000);
    opacity: 0.6;
    height: 30%;
    bottom: auto;
    top: 0;
  }
  .about-page .row {
    margin-top: 50px;
  }
  .about-page .row.about-loyal, .about-page .row.about-geo {
    margin-top: 70px;
  }
  .place-reviews, .other-places {
    margin-top: 70px;
  }
  .place-info .other-places h2 {
    margin-bottom: 30px;
  }
  .place-review-buttons {
    flex-direction: column;
  }
  .place-review-buttons a:first-child {
    margin-right: 0;
    margin-bottom: 20px;
  }
  .place-review-buttons a {
    width: 100%;
  }
  .footer-sub .row .col:first-child {
    margin-bottom: 10px;
  }
  .footer {
    padding-bottom: 80px;
  }
  .franchise-content-modal {
    min-width: calc(100vw - 40px);
    padding: 20px;
    padding-top: 30px;
  }
  .franchise-content-modal h3 {
    font-size: 1.2em;
  }
  .modal.review-content-modal {
    min-width: calc(100vw - 40px);
  }
  #send-review {
    padding: 30px 20px 0px;
  }
  .modal.review-content-modal h2 {
    font-size: 1.5em;
  }
  .modal.review-content-modal h3 {
    font-size: 1em;
  }
  .form-fieldset {
    grid-template-columns: 1fr;
    grid-gap: 15px;
    margin-bottom: 15px;
  }
  .form-field {
    margin-bottom: 15px;
  }
  .form-fieldset .form-field {
    margin-bottom: 0;
  }
  .submit-btn {
    width: 100%;
  }
  .rating-wrapper {
    align-items: flex-start;
    height: 40px;
  }
  .input-text {
    padding: 12px;
  }
  .scroll-to-top {
    display: flex;
    padding: 0;
    width: 55px;
    height: 55px;
    align-items: center;
    justify-content: center;
  }
  .place-social-list li:not(:first-child) {
    margin-left: 12px;
  }
  .place-media {
    padding-top: 15px;
  }
}

@media screen and (max-width: 320px) {
  .container {
    min-width: 280px;
    max-width: 300px;
  }
  .grid {
    min-width: 280px;
    max-width: 300px;
  }
}
