@charset "UTF-8";
@font-face {
  font-family: "Rubik";
  src: url("../fonts/Rubik-Regular.eot");
  src: local("☺"), url("../fonts/Rubik-Regular.woff") format("woff"), url("../fonts/Rubik-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Rubik";
  src: url("../fonts/Rubik-Medium.eot");
  src: local("☺"), url("../fonts/Rubik-Medium.woff") format("woff"), url("../fonts/Rubik-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Rubik";
  src: url("../fonts/Rubik-SemiBold.eot");
  src: local("☺"), url("../fonts/Rubik-SemiBold.woff") format("woff"), url("../fonts/Rubik-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Rubik";
  src: url("../fonts/Rubik-Bold.eot");
  src: local("☺"), url("../fonts/Rubik-Bold.woff") format("woff"), url("../fonts/Rubik-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "Vinque";
  src: url("../fonts/Vinque.eot");
  src: local("☺"), url("../fonts/Vinque.woff") format("woff"), url("../fonts/Vinque.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
* {
  padding: 0;
  margin: 0;
  border: 0;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

:focus, :active {
  outline: none;
}

a:focus, a:active {
  outline: none;
}

nav, footer, header, aside {
  display: block;
}

html, body {
  height: 100%;
  width: 100%;
  font-size: 100%;
  line-height: 1;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  font-family: "Rubik", "Arial", sans-serif;
  color: #FFFFFF;
}

input, button, textarea {
  font-family: inherit;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a, a:visited {
  text-decoration: none;
}

a {
  transition: 0.2s;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Vinque", "Arial", sans-serif;
  font-size: inherit;
  font-weight: normal;
  color: #E17A26;
}

/*===================================================================================================================*/
.preloader {
  /*фиксированное позиционирование*/
  position: fixed;
  /* координаты положения */
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  /* фоновый цвет элемента */
  background: #1C1C1C;
  /* размещаем блок над всеми элементами на странице (это значение должно быть больше, чем у любого другого позиционированного элемента на странице) */
  z-index: 1001;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px;
}
@media (max-width: 768px) {
  .preloader {
    padding: 30px 16px;
  }
}

.preloader__content {
  position: relative;
}

.search-preloader.preloader {
  display: none;
  z-index: 1000;
  transition: 0.3s opacity;
}

.search-preloader.preloader .preloader__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.search-preloader.preloader .preloader__text {
  line-height: 120%;
  color: #FFFFFF;
  font-weight: 500;
  margin: 30px 0 0 0;
  text-align: center;
}

.lds-roller {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}

.lds-roller div {
  animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  transform-origin: 40px 40px;
}

.lds-roller div:after {
  content: " ";
  display: block;
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #E17A26;
  margin: -4px 0 0 -4px;
}

.lds-roller div:nth-child(1) {
  animation-delay: -0.036s;
}

.lds-roller div:nth-child(1):after {
  top: 63px;
  left: 63px;
}

.lds-roller div:nth-child(2) {
  animation-delay: -0.072s;
}

.lds-roller div:nth-child(2):after {
  top: 68px;
  left: 56px;
}

.lds-roller div:nth-child(3) {
  animation-delay: -0.108s;
}

.lds-roller div:nth-child(3):after {
  top: 71px;
  left: 48px;
}

.lds-roller div:nth-child(4) {
  animation-delay: -0.144s;
}

.lds-roller div:nth-child(4):after {
  top: 72px;
  left: 40px;
}

.lds-roller div:nth-child(5) {
  animation-delay: -0.18s;
}

.lds-roller div:nth-child(5):after {
  top: 71px;
  left: 32px;
}

.lds-roller div:nth-child(6) {
  animation-delay: -0.216s;
}

.lds-roller div:nth-child(6):after {
  top: 68px;
  left: 24px;
}

.lds-roller div:nth-child(7) {
  animation-delay: -0.252s;
}

.lds-roller div:nth-child(7):after {
  top: 63px;
  left: 17px;
}

.lds-roller div:nth-child(8) {
  animation-delay: -0.288s;
}

.lds-roller div:nth-child(8):after {
  top: 56px;
  left: 12px;
}

@keyframes lds-roller {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
body.loaded_hiding .preloader {
  transition: 0.3s opacity;
  opacity: 0;
}

body.loaded .preloader {
  display: none;
}

body.search-process .search-preloader.preloader {
  display: flex;
}

body.appearing .search-preloader.preloader {
  opacity: 1;
}

body.hiding .search-preloader.preloader {
  opacity: 0;
}

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

@media (max-width: 1439px) {
  .container {
    max-width: 1140px;
  }
}
@media (max-width: 1200px) {
  .container {
    max-width: 960px;
  }
}
@media (max-width: 992px) {
  .container {
    max-width: 720px;
  }
}
@media (max-width: 768px) {
  .container {
    max-width: unset;
    padding: 0 16px;
  }
}
/*===================================================================================================================*/
body {
  background-color: #1C1C1C;
}

body.body_lock {
  overflow: hidden;
}

.wrapper {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  position: relative;
}
.wrapper__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.wrapper__bg img {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

._ibg {
  position: relative;
  overflow: hidden;
}

._ibg img {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.title {
  font-family: "Vinque", Arial, sans-serif;
  font-style: normal;
  color: #E17A26;
}

.popup.call-popup {
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  transition: 0.4s ease-out;
  opacity: 0;
  top: 0;
  left: 0;
  visibility: hidden;
  overflow-y: auto;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.popup.call-popup.popup_open {
  opacity: 1;
  visibility: visible;
}
.popup.call-popup.popup_open .popup__content {
  visibility: visible;
  transform: perspective(600px) translate(0vh, 0vh) rotateX(0deg);
}

.popup.call-popup .popup__body {
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px 16px;
}
.popup.call-popup .popup__content {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  background-color: rgba(0, 0, 0, 0.9);
  width: 100%;
  max-width: 540px;
  border-radius: 5px;
  position: relative;
  visibility: hidden;
  transition: 0.4s ease-out;
  transform: perspective(600px) translate(0vh, -50vh) rotateX(45deg);
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: #E17A26 rgba(0, 0, 0, 0);
}
.popup.call-popup .popup__content::-webkit-scrollbar {
  width: 2px;
}
.popup.call-popup .popup__content::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0);
}
.popup.call-popup .popup__content::-webkit-scrollbar-thumb {
  background-color: #E17A26;
}
.popup.call-popup .popup__close {
  cursor: pointer;
  color: #9d9d9d;
  position: absolute;
  top: 5px;
  right: 4px;
  transition: 0.2s ease-out;
}
.popup.call-popup .popup__close:hover {
  color: #E17A26;
}
.popup.call-popup .popup__inner {
  padding: 70px;
}
@media (max-width: 768px) {
  .popup.call-popup .popup__inner {
    padding: 70px 40px;
  }
}
.popup.call-popup .popup__title {
  font-family: "Vinque", Arial, sans-serif;
  color: #E17A26;
  font-weight: 700;
  font-size: 34px;
  line-height: 110%; /* 31/28 */
  text-align: center;
}
.popup.call-popup .popup__text {
  margin-top: 18px;
  color: #FFFFFF;
  font-size: 18px;
  line-height: 160%; /* 24/15 */
  text-align: center;
}
.popup.call-popup .popup__text a {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

.header {
  position: relative;
  padding: 75px 0 80px;
}
@media (max-width: 600px) {
  .header {
    padding: 75px 0 50px;
  }
}
@media (max-width: 340px) {
  .header {
    padding: 55px 0 50px;
  }
}

.header .header__img-left, .header .header__img-right {
  position: absolute;
  top: 0;
}
@media (min-width: 601px) {
  .header .header__img-left, .header .header__img-right {
    max-width: 50%;
  }
}
.header .header__img-left img, .header .header__img-right img {
  max-width: 100%;
}
.header .header__img-left {
  left: 0;
  width: 557px;
  z-index: 0;
}
.header .header__img-right {
  right: 0;
  width: 631px;
  z-index: -1;
}
@media (max-width: 1439px) {
  .header .header__img-left {
    width: 500px;
  }
  .header .header__img-right {
    width: 560px;
  }
}
@media (max-width: 1200px) {
  .header .header__img-left {
    width: 415px;
  }
  .header .header__img-right {
    width: 470px;
  }
}
@media (max-width: 992px) {
  .header .header__img-left {
    width: 310px;
  }
  .header .header__img-right {
    width: 350px;
  }
}
@media (max-width: 750px) {
  .header .header__img-left {
    width: 220px;
    left: -50px;
  }
  .header .header__img-right {
    width: 250px;
    right: -40px;
  }
}
@media (max-width: 425px) {
  .header .header__img-left {
    width: 170px;
    left: -30px;
  }
  .header .header__img-right {
    width: 220px;
    right: -35px;
  }
}
.header .header__logo {
  width: 228px;
  margin: 0 auto;
}
@media (max-width: 1439px) {
  .header .header__logo {
    width: 200px;
  }
}
@media (max-width: 425px) {
  .header .header__logo {
    width: 160px;
  }
}
@media (max-width: 340px) {
  .header .header__logo {
    width: 112px;
  }
}
.header .header__logo img {
  max-width: 100%;
}
.header .header__contacts-row {
  margin-top: 50px;
  gap: 30px;
  align-items: center;
}
@media (min-width: 376px) {
  .header .header__contacts-row {
    margin-top: 75px;
  }
}
@media (min-width: 993px) {
  .header .header__contacts-row {
    display: grid;
    grid-template-columns: auto auto auto;
  }
}
@media (min-width: 1201px) {
  .header .header__contacts-row {
    grid-template-columns: 1fr auto 1fr;
  }
}
.header .header__contact:nth-child(1) {
  justify-self: start;
}
.header .header__contact:nth-child(2) {
  justify-self: center;
}
@media (max-width: 992px) {
  .header .header__contact:not(:first-child) {
    margin-top: 25px;
  }
}
.header .header__socials-row {
  justify-self: end;
  display: grid;
  grid-template-columns: auto auto auto;
  justify-content: center;
  gap: 35px;
  margin-top: 33px;
}
@media (min-width: 993px) {
  .header .header__socials-row {
    margin-top: 0;
    gap: 20px;
  }
}
.header .header__line {
  margin-top: 30px;
  width: 100%;
  height: 6px;
  border-radius: 6px;
  background-color: #E17A26;
}
@media (max-width: 425px) {
  .header .header__line {
    height: 5px;
    border-radius: 5px;
  }
}
.header .header__order-buttons {
  margin-top: 30px;
}

.header .item-contact__link {
  display: flex;
}
@media (min-width: 993px) {
  .header .item-contact__link {
    align-items: center;
  }
}
@media (any-hover: hover) {
  .header .item-contact__link:hover .item-contact__text {
    color: #E17A26;
  }
}
.header .item-contact__icon {
  color: #E17A26;
  flex: 0 0 32px;
}
.header .item-contact__text {
  color: #FFFFFF;
  margin-left: 10px;
  font-size: 18px;
  line-height: 1.5555555556;
  transition: 0.2s ease-out;
}
@media (max-width: 1439px) and (min-width: 993px) {
  .header .item-contact__text {
    font-size: 16px;
  }
}
.header .item-contact__text span {
  white-space: nowrap;
}

.header .item-social {
  display: inline-block;
  width: 44px;
  height: 44px;
}
.header .item-social__icon {
  color: #FFFFFF;
  max-width: 100%;
  transition: 0.2s ease-out;
}
@media (any-hover: hover) {
  .header .item-social:hover .item-social__icon {
    color: #E17A26;
  }
}

@media (min-width: 768px) {
  .header .order-buttons__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}
.header .order-buttons__col:nth-child(1) {
  justify-self: end;
}
.header .order-buttons__col:nth-child(2) {
  justify-self: start;
}
@media (max-width: 767px) {
  .header .order-buttons__col {
    text-align: center;
  }
  .header .order-buttons__col:not(:last-child) {
    margin: 0 0 15px 0;
  }
}
.header .order-buttons__btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  min-width: 270px;
  font-size: 18px;
  line-height: 122.222222%; /* 22/18 */
  padding: 10px 25px;
  color: #FFFFFF;
  font-weight: 500;
  background-color: #E17A26;
  border-radius: 5px;
  transition: 0.2s ease-out;
}
@media (max-width: 1439px) and (min-width: 993px) {
  .header .order-buttons__btn {
    min-width: 250px;
    font-size: 16px;
  }
}
@media (max-width: 425px) {
  .header .order-buttons__btn {
    width: 100%;
  }
}
.header .order-buttons__btn span {
  transform: translateZ(0px);
}
@media (any-hover: hover) {
  .header .order-buttons__btn:hover {
    transform: scale(0.9);
    background-color: #d36a15;
  }
}

@media (max-width: 992px) {
  .images__body {
    padding: 0 30px;
  }
}
@media (max-width: 600px) {
  .images__body {
    padding: 0 20px;
  }
}

.images .image-slider {
  overflow: visible;
}
.images .image-slider__image {
  padding: 64% 0 0 0;
  border-radius: 10px;
}
.images .image-slider__image img {
  max-width: 100%;
}

.swiper-pagination {
  position: static;
  margin-top: 20px;
}
@media (min-width: 601px) {
  .swiper-pagination {
    margin-top: 33px;
  }
}
.swiper-pagination .swiper-pagination-bullet {
  width: 7px;
  height: 7px;
  background-color: #FFFFFF;
  opacity: 1;
  transition: 0.2s ease-out;
}
.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #E17A26;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 5px);
}

.menu {
  padding: 110px 0;
}
@media (max-width: 600px) {
  .menu {
    padding: 70px 0;
  }
}
@media (max-width: 425px) {
  .menu {
    padding: 40px 0;
  }
}

.menu .menu__header {
  padding-bottom: 15px;
}
@media (min-width: 376px) {
  .menu .menu__header {
    padding-bottom: 30px;
  }
}
@media (min-width: 601px) {
  .menu .menu__header {
    padding-bottom: 40px;
  }
}
@media (min-width: 993px) {
  .menu .menu__header {
    padding-bottom: 60px;
    border-bottom: 1px solid #ffffff;
  }
}
.menu .menu__title {
  font-family: "Vinque", Arial, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 154px;
  line-height: 100%;
  color: #E17A26;
  margin: 0 auto;
  text-align: center;
}
@media (max-width: 992px) {
  .menu .menu__title {
    font-size: 120px;
  }
}
@media (max-width: 600px) {
  .menu .menu__title {
    font-size: 70px;
  }
}
.menu .menu__body {
  margin-top: 15px;
}
@media (min-width: 376px) {
  .menu .menu__body {
    margin-top: 25px;
  }
}
@media (min-width: 601px) {
  .menu .menu__body {
    margin-top: 45px;
  }
}
@media (min-width: 993px) {
  .menu .menu__body {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 50px;
  }
}
.menu .menu__group {
  max-width: 725px;
}
.menu .menu__group:not(:last-child) {
  margin-bottom: 60px;
}
@media (max-width: 600px) {
  .menu .menu__group:not(:last-child) {
    margin-bottom: 40px;
  }
}
.menu .menu__orange-note {
  max-width: 685px;
  background-color: #E17A26;
  padding: 16px 28px;
  color: #FFFFFF;
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  text-align: center;
  margin-top: 26px;
}
@media (max-width: 600px) {
  .menu .menu__orange-note {
    margin-top: 18px;
    font-size: 15px;
    line-height: 21px;
    padding: 11px 20px 13px;
  }
}

.menu .menu-group {
  position: relative;
}
.menu .menu-group__subgroup {
  margin-top: 45px;
}
@media (max-width: 600px) {
  .menu .menu-group__subgroup {
    margin-top: 22px;
  }
}
.menu .menu-group__subgroup:not(:last-child) {
  margin-bottom: 45px;
}
@media (max-width: 600px) {
  .menu .menu-group__subgroup:not(:last-child) {
    margin-bottom: 40px;
  }
}
.menu .menu-group__title {
  font-family: "Vinque";
  font-style: normal;
  font-weight: 400;
  font-size: 60px;
  line-height: 1.2;
  margin-bottom: 25px;
}
@media (max-width: 600px) {
  .menu .menu-group__title {
    font-size: 28px;
    line-height: 32px;
  }
}
.menu .menu-group__title:not(:first-child) {
  margin-top: 60px;
}
@media (max-width: 600px) {
  .menu .menu-group__title:not(:first-child) {
    margin-top: 40px;
  }
}
.menu .menu-group__subtitle {
  text-align: center;
  font-size: 32px;
  line-height: 1.25;
  padding: 12px 30px 18px;
  margin-bottom: 28px;
  border-radius: 20px;
  background-color: rgba(0, 0, 0, 0.6);
}
@media (max-width: 600px) {
  .menu .menu-group__subtitle {
    font-size: 21px;
    line-height: 1.3333333333;
    border-radius: 10px;
    padding: 6px 16px 8px;
    margin-bottom: 10px;
  }
}
.menu .menu-group__table {
  width: 100%;
}
.menu .menu-group__table th {
  font-weight: 600;
  color: #E17A26;
}
.menu .menu-group__table td,
.menu .menu-group__table th {
  font-size: 18px;
  line-height: 1.3888888889;
  text-align: left;
  vertical-align: bottom;
  padding-top: 7px;
  padding-bottom: 7px;
  padding-right: 15px;
}
@media (max-width: 600px) {
  .menu .menu-group__table td,
  .menu .menu-group__table th {
    font-size: 15px;
    padding-right: 5px;
  }
}
@media (max-width: 425px) {
  .menu .menu-group__table td,
  .menu .menu-group__table th {
    font-size: 13px;
  }
}
.menu .menu-group__table td:nth-child(3),
.menu .menu-group__table th:nth-child(3) {
  padding-right: 30px;
}
@media (max-width: 600px) {
  .menu .menu-group__table td:nth-child(3),
  .menu .menu-group__table th:nth-child(3) {
    padding-right: 10px;
  }
}
@media (max-width: 425px) {
  .menu .menu-group__table td:nth-child(3),
  .menu .menu-group__table th:nth-child(3) {
    padding-right: 0;
  }
}
.menu .menu-group__table td:nth-child(1) {
  width: 55.1724137931%;
  font-weight: 500;
}
.menu .menu-group__table td:nth-child(1) .fw-400 {
  font-weight: 400;
}
.menu .menu-group__table td:nth-child(2) {
  width: 27.5862068966%;
}
.menu .menu-group__table td:nth-child(3) {
  white-space: nowrap;
}
.menu .menu-group__table .td-inner {
  overflow: hidden;
}
.menu .menu-group__table .td-dots {
  display: inline;
  position: relative;
}
.menu .menu-group__table .td-dots:before {
  position: absolute;
  content: "";
  transition: 0.2s ease-out;
  left: calc(100% + 4px);
  width: 400px;
  height: 1px;
  border-bottom: 1px dashed #ffffff;
  bottom: 5px;
}
@media (max-width: 600px) {
  .menu .menu-group__table .td-dots:before {
    bottom: 4px;
  }
}
@media (max-width: 425px) {
  .menu .menu-group__table .td-dots:before {
    bottom: 3px;
  }
}

.menu .menu-group .food-image img {
  max-width: 100%;
}
@media (min-width: 993px) {
  .menu .menu-group .food-image {
    position: absolute;
    bottom: 0;
    left: 100%;
  }
  .menu .menu-group .food-image.crayfish {
    width: 644px;
    left: calc(100% - 30px);
    bottom: -60px;
  }
  .menu .menu-group .food-image.crayfish_fried {
    width: 546px;
    left: calc(100% - 20px);
    bottom: -60px;
  }
  .menu .menu-group .food-image.seafood_1 {
    width: 609px;
    left: calc(100% - 20px);
    bottom: 60px;
  }
  .menu .menu-group .food-image.seafood_2 {
    width: 420px;
    left: calc(100% + 30px);
    bottom: 540px;
  }
  .menu .menu-group .food-image.plate {
    width: 568px;
    left: calc(100% + 30px);
    bottom: 380px;
  }
  .menu .menu-group .food-image.plate-small {
    width: 277px;
    left: calc(100% + 230px);
    bottom: 125px;
  }
  .menu .menu-group .food-image.fish {
    width: 684px;
    left: calc(100% + 0px);
    bottom: 0px;
  }
  .menu .menu-group .food-image.first_red {
    width: 594px;
    left: calc(100% - 90px);
    bottom: -55px;
  }
  .menu .menu-group .food-image.first_orange {
    width: 473px;
    left: calc(100% - 65px);
    bottom: 410px;
  }
  .menu .menu-group .food-image.meat {
    width: 557px;
    left: calc(100% - 40px);
    bottom: -30px;
  }
  .menu .menu-group .food-image.sauces {
    width: 511px;
    left: calc(100% - 40px);
    bottom: -30px;
  }
  .menu .menu-group .food-image.cups-wrap {
    left: calc(100% - 40px);
    bottom: 70px;
  }
  .menu .menu-group .food-image.cups-wrap .cup_1,
  .menu .menu-group .food-image.cups-wrap .cup_3 {
    width: 196px;
    margin-left: auto;
  }
  .menu .menu-group .food-image.cups-wrap .cup_2 {
    width: 334px;
    margin-right: 78px;
  }
  .menu .menu-group .food-image.wine_glass {
    width: 290px;
    left: calc(100% + 100px);
    bottom: 430px;
  }
  .menu .menu-group .food-image.wine_bottle {
    width: 480px;
    left: calc(100% - 40px);
    bottom: 30px;
  }
}
@media (min-width: 1651px) {
  .menu .menu-group .food-image {
    left: unset;
  }
  .menu .menu-group .food-image.crayfish {
    left: unset;
    right: calc((-100vw + 1280px) / 2 - 200px - 210px);
  }
  .menu .menu-group .food-image.crayfish_fried {
    left: unset;
    right: calc((-100vw + 1280px) / 2 - 200px - 130px);
  }
  .menu .menu-group .food-image.seafood_1 {
    left: unset;
    right: calc((-100vw + 1280px) / 2 - 200px - 200px);
  }
  .menu .menu-group .food-image.seafood_2 {
    left: unset;
    right: calc((-100vw + 1280px) / 2 - 200px - 60px);
  }
  .menu .menu-group .food-image.plate {
    left: unset;
    right: calc((-100vw + 1280px) / 2 - 200px - 215px);
  }
  .menu .menu-group .food-image.plate-small {
    left: unset;
    right: calc((-100vw + 1280px) / 2 - 200px - 130px);
  }
  .menu .menu-group .food-image.fish {
    left: unset;
    right: calc((-100vw + 1280px) / 2 - 200px - 280px);
  }
  .menu .menu-group .food-image.first_red {
    left: unset;
    right: calc((-100vw + 1280px) / 2 - 200px - 130px);
  }
  .menu .menu-group .food-image.first_orange {
    left: unset;
    right: calc((-100vw + 1280px) / 2 - 200px - 25px);
  }
  .menu .menu-group .food-image.meat {
    left: unset;
    right: calc((-100vw + 1280px) / 2 - 200px - 134px);
  }
  .menu .menu-group .food-image.sauces {
    left: unset;
    right: calc((-100vw + 1280px) / 2 - 200px - 80px);
  }
  .menu .menu-group .food-image.cups-wrap {
    left: unset;
    right: calc((-100vw + 1280px) / 2 - 200px - 5px);
  }
  .menu .menu-group .food-image.wine_glass {
    left: unset;
    right: calc((-100vw + 1280px) / 2 - 200px - 0px);
  }
  .menu .menu-group .food-image.wine_bottle {
    left: unset;
    right: calc((-100vw + 1280px) / 2 - 200px - 50px);
  }
}
@media (max-width: 992px) {
  .menu .menu-group .food-image {
    display: block;
  }
  .menu .menu-group .food-image.crayfish {
    margin: -30px -200px -20px auto;
    width: 450px;
  }
  .menu .menu-group .food-image.crayfish_fried {
    transform: rotate(-10deg);
    margin: 30px -200px -60px auto;
    width: 350px;
  }
  .menu .menu-group .food-image.seafood_1 {
    transform: rotate(100deg);
    width: 400px;
    margin: 0px 100px 150px auto;
  }
  .menu .menu-group .food-image.seafood_2 {
    position: absolute;
    bottom: -100px;
    right: -200px;
    width: 300px;
  }
  .menu .menu-group .food-image.plate {
    width: 400px;
    margin: 30px auto -30px auto;
  }
  .menu .menu-group .food-image.plate-small {
    width: 230px;
    transform: rotate(150deg);
    position: absolute;
    bottom: 160px;
    left: -200px;
  }
  .menu .menu-group .food-image.fish {
    width: 500px;
    margin: 30px -200px 0px auto;
  }
  .menu .menu-group .food-image.first_red {
    position: absolute;
    width: 440px;
    bottom: -125px;
    right: 75px;
  }
  .menu .menu-group .food-image.first_orange {
    width: 370px;
    margin: 30px -200px 120px auto;
  }
  .menu .menu-group .food-image.meat {
    width: 450px;
    margin: 30px -200px -30px auto;
  }
  .menu .menu-group .food-image.sauces {
    transform: rotate(90deg);
    width: 450px;
    margin: -50px auto -50px auto;
  }
  .menu .menu-group .food-image.cups-wrap {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    margin-left: calc((-100vw + 720px) / 2);
    margin-right: calc((-100vw + 720px) / 2);
  }
  .menu .menu-group .food-image.cups-wrap .cup_1,
  .menu .menu-group .food-image.cups-wrap .cup_2,
  .menu .menu-group .food-image.cups-wrap .cup_3 {
    display: inline-block;
  }
  .menu .menu-group .food-image.cups-wrap .cup_1 {
    width: 110px;
    transform: scaleX(-1);
    margin-top: 73px;
  }
  .menu .menu-group .food-image.cups-wrap .cup_2 {
    width: 195px;
    margin-top: 43px;
  }
  .menu .menu-group .food-image.cups-wrap .cup_3 {
    width: 120px;
  }
  .menu .menu-group .food-image.wine_glass {
    width: 200px;
    margin: 30px -200px 120px auto;
    margin-right: calc((-100vw + 720px) / 2 - 10px);
  }
  .menu .menu-group .food-image.wine_bottle {
    position: absolute;
    width: 320px;
    bottom: -140px;
    right: 100px;
  }
}
@media (max-width: 768px) {
  .menu .menu-group .food-image.crayfish {
    margin: -30px -160px -20px auto;
  }
  .menu .menu-group .food-image.crayfish_fried {
    margin: 30px -110px -60px auto;
  }
  .menu .menu-group .food-image.seafood_1 {
    margin: 0px 220px 150px auto;
  }
  .menu .menu-group .food-image.seafood_2 {
    right: -70px;
  }
  .menu .menu-group .food-image.plate {
    width: 350px;
    margin: 30px 0px -30px auto;
  }
  .menu .menu-group .food-image.plate-small {
    left: -80px;
  }
  .menu .menu-group .food-image.fish {
    margin: 30px -100px 0px auto;
  }
  .menu .menu-group .food-image.first_red {
    bottom: -125px;
    right: 175px;
  }
  .menu .menu-group .food-image.first_orange {
    margin: 30px -100px 120px auto;
  }
  .menu .menu-group .food-image.meat {
    margin: 30px -100px -30px auto;
  }
  .menu .menu-group .food-image.cups-wrap {
    margin-left: -16px;
    margin-right: -16px;
  }
  .menu .menu-group .food-image.wine_glass {
    margin-right: -25px;
  }
  .menu .menu-group .food-image.wine_bottle {
    bottom: -160px;
    right: 120px;
  }
}
@media (max-width: 600px) {
  .menu .menu-group .food-image.crayfish {
    width: 350px;
    transform: rotate(-18deg);
    margin: -30px -100px -20px auto;
  }
  .menu .menu-group .food-image.crayfish_fried {
    margin: 30px -100px -60px auto;
  }
  .menu .menu-group .food-image.seafood_1 {
    width: 280px;
    margin: 0px auto 120px -125px;
  }
  .menu .menu-group .food-image.seafood_2 {
    width: 210px;
  }
  .menu .menu-group .food-image.plate {
    width: 240px;
    margin: 30px -20px -30px auto;
  }
  .menu .menu-group .food-image.plate-small {
    width: 130px;
    bottom: 130px;
    left: -60px;
  }
  .menu .menu-group .food-image.fish {
    width: 340px;
    margin: 30px -70px 0px auto;
  }
  .menu .menu-group .food-image.first_red {
    width: 300px;
    bottom: -90px;
    right: 105px;
  }
  .menu .menu-group .food-image.first_orange {
    width: 250px;
    margin: 30px -80px 80px auto;
  }
  .menu .menu-group .food-image.meat {
    width: 300px;
    margin: 10px -100px -30px auto;
  }
  .menu .menu-group .food-image.sauces {
    width: 330px;
    margin: -50px -10px -50px auto;
  }
  .menu .menu-group .food-image.cups-wrap .cup_1 {
    width: 70px;
  }
  .menu .menu-group .food-image.cups-wrap .cup_2 {
    width: 130px;
  }
  .menu .menu-group .food-image.cups-wrap .cup_3 {
    width: 75px;
  }
  .menu .menu-group .food-image.wine_glass {
    width: 140px;
    margin-right: -25px;
    margin-bottom: 60px;
  }
  .menu .menu-group .food-image.wine_bottle {
    width: 200px;
    bottom: -90px;
    right: 90px;
  }
}

.menu .menu__nav-desktop-wrap {
  position: relative;
}
.menu .menu__nav-desktop-wrap ._fixed {
  position: fixed;
  top: 20px;
}
.menu .menu__nav-desktop-wrap ._absolute {
  position: absolute;
  bottom: 0;
}
.menu .menu__nav-desktop-wrap .menu-nav {
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 20px;
}
.menu .menu__nav-desktop-wrap .menu-nav__wrapper {
  padding: 40px 0;
}
@media (max-width: 1439px) {
  .menu .menu__nav-desktop-wrap .menu-nav__wrapper {
    padding: 30px 0;
  }
}
.menu .menu__nav-desktop-wrap .nav-link {
  padding: 0 36px;
  color: #FFFFFF;
  display: inline-block;
  width: 100%;
  position: relative;
}
.menu .menu__nav-desktop-wrap .nav-link:before {
  position: absolute;
  content: "";
  transition: 0.2s ease-out;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background-color: transparent;
  transition: 0.2s ease-out;
}
.menu .menu__nav-desktop-wrap .nav-link__text {
  display: inline-block;
  width: 100%;
  padding: 14px 0;
  font-size: 18px;
  line-height: 1.5555555556;
  border-bottom: 1px solid #2C2C2C;
}
@media (max-width: 1439px) {
  .menu .menu__nav-desktop-wrap .nav-link__text {
    font-size: 18px;
    padding: 10px 0;
  }
}
.menu .menu__nav-desktop-wrap .nav-link._active {
  color: #E17A26;
}
.menu .menu__nav-desktop-wrap .nav-link._active:before {
  background-color: #E17A26;
}
@media (any-hover: hover) {
  .menu .menu__nav-desktop-wrap .nav-link:hover {
    color: #E17A26;
  }
}

@media (max-width: 992px) {
  .menu__nav-mobile-placeholder {
    position: relative;
    height: 84px;
  }
}
@media (max-width: 992px) and (max-width: 600px) {
  .menu__nav-mobile-placeholder {
    height: 74px;
  }
}
@media (max-width: 992px) and (max-width: 375px) {
  .menu__nav-mobile-placeholder {
    height: 70px;
  }
}
@media (max-width: 992px) {
  .menu .menu__nav-mobile-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px 0;
    background-color: transparent;
    transition: 0.2s ease-out;
  }
  .menu .menu__nav-mobile-wrap._fixed {
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1000;
  }
  .menu .menu__nav-mobile-wrap._absolute {
    position: absolute;
    left: 0;
    bottom: 0;
  }
  .menu .menu__nav-mobile-wrap .menu-nav {
    overflow: visible;
  }
  .menu .menu__nav-mobile-wrap .menu-nav__slide {
    width: auto;
  }
  .menu .menu__nav-mobile-wrap .nav-link {
    color: #FFFFFF;
    border: 1px solid #FFFFFF;
    background-color: transparent;
    font-size: 18px;
    line-height: 1.5555555556;
    padding: 12px 16px;
    border-radius: 5px;
    display: inline-block;
  }
}
@media (max-width: 992px) and (max-width: 600px) {
  .menu .menu__nav-mobile-wrap .nav-link {
    font-size: 15px;
    padding: 9px 12px;
  }
}
@media (max-width: 992px) and (max-width: 375px) {
  .menu .menu__nav-mobile-wrap .nav-link {
    font-size: 13px;
  }
}
@media (max-width: 992px) {
  .menu .menu__nav-mobile-wrap .nav-link._active {
    border: 1px solid #E17A26;
    background-color: #E17A26;
  }
}/*# sourceMappingURL=global_style.css.map */