* {
  margin: 0;
  padding: 0;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before, blockquote:after {
  content: "";
  content: none;
}

q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

* {
  box-sizing: border-box;
}

body {
  background-color: #0e1317;
  color: #fff;
  font-family: Oswald, sans-serif;
  overflow-x: hidden;
}

.dots {
  border-bottom: 1px solid #7a6351;
  width: 165px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 81px auto 0;
}
.dots li {
  flex: 1;
  height: 3px;
  width: auto;
  margin-bottom: -1px;
  background-color: transparent;
}
.dots li a {
  display: none;
}
.dots li.slick-active {
  background-color: #C39975;
}

.header {
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  height: 200px;
  padding: 40px 30px 0;
}
.header__inner {
  max-width: 1640px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.header__logo {
  width: 90px;
  height: 90px;
}
.header__button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 203px;
  height: 57px;
  font-weight: 400;
  color: white;
  background-color: #C39975;
  margin-left: 75px;
  text-decoration: none;
  font-size: 17px;
  transition: all ease 300ms;
  border: 2px solid #C39975;
}
.header__button:hover {
  color: #C39975;
  background-color: transparent;
}
@media screen and (max-width: 1600px) {
  .header__button {
    margin-left: 50px;
  }
}
@media screen and (max-width: 1300px) {
  .header {
    height: 120px;
  }
  .header__logo {
    width: 64px;
    height: 64px;
  }
  .header__button {
    width: 150px;
    margin-left: 40px;
  }
}
@media screen and (max-width: 1024px) {
  .header {
    padding: 25px 25px 0;
    height: 120px;
  }
  .header__logo {
    width: 64x;
    height: 64px;
  }
  .header__button {
    margin-left: auto;
    margin-right: 20px;
  }
}

.menu {
  display: none;
  align-items: flex-end;
  flex-direction: column;
  width: 35px;
  margin-top: 10px;
}
.menu span {
  display: block;
  width: 100%;
  height: 3px;
  margin-bottom: 6px;
  background-color: white;
  transition: width ease 500ms;
}
.menu span:nth-last-child(1) {
  width: 50%;
}
.menu span:nth-last-child(2) {
  width: 75%;
}
.menu:hover span:nth-last-child(1), .menu:hover span:nth-last-child(2) {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .menu {
    display: flex;
  }
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav ul {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-weight: 300;
  line-height: 30px;
  font-size: 20px;
}
.nav ul li:not(:last-child) {
  padding-right: 64px;
}
.nav ul li:nth-last-child(2) {
  padding-right: 45px;
}
.nav ul li a {
  color: white;
  text-decoration: none;
  transition: color ease 300ms;
}
.nav ul li a:hover {
  color: #C39975;
}
.nav ul li.active a {
  position: relative;
}
.nav ul li.active a:hover {
  color: white;
}
.nav ul li.active a::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 5px;
  height: 5px;
  background-color: #C39975;
}
@media screen and (max-width: 1600px) {
  .nav ul li:not(:last-child) {
    padding-right: 45px;
  }
}
@media screen and (max-width: 1300px) {
  .nav ul li:not(:last-child) {
    padding-right: 30px;
  }
  .nav ul li:nth-last-child(2) {
    padding-right: 30px;
  }
}
@media screen and (max-width: 1024px) {
  .nav {
    position: fixed;
    right: -250px;
    top: 0;
    height: 100vh;
    width: 250px;
    border-left: 1px solid #C39975;
    background-color: #090D10;
    display: block;
    transition: right ease 500ms;
  }
  .nav.opened {
    z-index: 5;
    right: 0;
  }
  .nav .close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    position: absolute;
    top: 30px;
    right: 30px;
  }
  .nav .close-div {
    height: 25px;
    width: 2px;
    margin-left: 12px;
    background-color: white;
    transform: rotate(45deg);
    z-index: 1;
  }
  .nav .close-inner {
    height: 25px;
    width: 2px;
    background-color: white;
    transform: rotate(90deg);
  }
  .nav ul {
    flex-direction: column;
    align-items: flex-end;
    margin-top: 80px;
    padding-right: 20px;
  }
  .nav ul li {
    padding-bottom: 20px;
  }
  .nav ul li:not(:last-child) {
    padding-right: 0;
  }
  .nav ul li:nth-last-child(2) {
    padding-right: 0;
  }
  .nav ul li.active a::after {
    content: "";
    position: absolute;
    bottom: 11px;
    left: -15px;
    transform: rotate(45deg);
  }
}

.main-slider__dots {
  position: absolute;
  left: 50%;
  bottom: 280px;
  transform: translateX(-50%);
}
.main-slider__dots li a {
  display: block;
  background-color: transparent;
  box-shadow: none;
  border: none;
  color: white;
  font-family: Oswald, sans-serif;
  font-weight: 300;
  margin: -25px auto 0;
}
@media screen and (max-width: 1400px) {
  .main-slider__dots {
    bottom: -70px;
  }
}
@media screen and (max-width: 767px) {
  .main-slider__dots {
    display: none !important;
  }
}
.main-slider .slide {
  overflow: hidden;
  padding-top: 30px;
}
.main-slider .slide__description {
  max-width: 390px;
  width: 100%;
  margin: 47px auto 0;
  font-family: Jost, sans-serif;
  font-size: 22px;
  line-height: 34px;
  text-align: center;
}
.main-slider .slide__button {
  margin: 64px auto 0;
}
.main-slider .slide__header {
  font-size: 85px;
  line-height: 126px;
  font-weight: 200;
  position: relative;
  z-index: 3;
  letter-spacing: 4.2px;
  text-align: center;
}
.main-slider .slide .about-page__top img:first-of-type {
  position: relative;
  z-index: 3;
}
.main-slider .slide__text {
  color: #C39975;
  font-size: 29px;
  line-height: 43px;
  font-weight: 300;
  padding-top: 100px;
  text-align: center;
  margin-bottom: 22px;
  position: relative;
  z-index: 3;
}
.main-slider .slide__inner {
  width: 100%;
  max-width: 1666px;
  margin: 0 auto;
  position: relative;
  min-height: 930px;
}
.main-slider .slide .image-1 {
  position: absolute;
  right: -30px;
  bottom: 30px;
  z-index: 1;
}
.main-slider .slide .image-2 {
  position: absolute;
  right: 0;
  top: -30px;
}
.main-slider .slide .image-3 {
  position: absolute;
  left: 0;
  top: 70px;
}
.main-slider .slide .image-circle {
  position: absolute;
  left: 420px;
  top: 612px;
}
@media screen and (max-width: 1400px) {
  .main-slider .slide__header {
    font-size: 59px;
    line-height: 75px;
  }
  .main-slider .slide__inner {
    min-height: 500px;
  }
  .main-slider .slide__text {
    padding-top: 50px;
  }
  .main-slider .slide .image-1 {
    width: 200px;
    right: 0;
    bottom: -20px;
    z-index: 1;
  }
  .main-slider .slide .image-2 {
    width: 300px;
    right: 0;
    top: 30px;
  }
  .main-slider .slide .image-3 {
    width: 300px;
    left: 0;
    top: 60px;
  }
  .main-slider .slide .image-circle {
    left: 220px;
    top: 342px;
  }
}
@media screen and (max-width: 991px) {
  .main-slider .slide .image-1 {
    display: none;
  }
  .main-slider .slide .image-2 {
    width: 250px;
    right: 0;
    top: auto;
    bottom: 0;
  }
  .main-slider .slide .image-3 {
    width: 250px;
    left: 0;
    top: auto;
    bottom: 0;
  }
  .main-slider .slide .image-circle {
    width: 50px;
    left: 220px;
    top: 342px;
  }
  .main-slider .slide__description {
    max-width: 320px;
    margin: 30px auto 0;
    font-size: 16px;
    line-height: 26px;
  }
}
@media screen and (max-width: 767px) {
  .main-slider .slide__inner {
    min-height: 100px;
  }
  .main-slider .slide__text {
    padding-top: 10px;
  }
  .main-slider .slide__header {
    font-size: 35px;
    line-height: 50px;
  }
  .main-slider .slide__text {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .main-slider .slide .image-1 {
    display: none;
  }
  .main-slider .slide .image-2 {
    display: none;
  }
  .main-slider .slide .image-3 {
    display: none;
  }
  .main-slider .slide .image-circle {
    display: none;
  }
}

.values__inner {
  background-color: #090D10;
  width: 100%;
  max-width: 1396px;
  margin: 139px auto 0;
  padding: 90px 60px 76px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media screen and (max-width: 991px) {
  .values__inner {
    padding: 45px 30px 38px;
  }
}
@media screen and (max-width: 767px) {
  .values__inner {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
  }
}

.value {
  text-align: center;
}
.value__more {
  width: 100%;
  text-align: center;
  margin-top: 70px;
}
.value__button {
  position: relative;
  text-transform: uppercase;
  text-decoration: none;
  color: #C39975;
  transition: font-size ease 300ms;
}
.value__button::after, .value__button::before {
  content: "";
  position: absolute;
  display: block;
  transform: rotate(45deg);
  width: 5px;
  height: 5px;
  bottom: 9px;
  background-color: #C39975;
  transition: all ease 300ms;
}
.value__button::after {
  left: -35px;
}
.value__button::before {
  right: -35px;
}
.value__button:hover {
  font-size: 17px;
  border-bottom: 1px solid #C39975;
}
.value__button:hover::after, .value__button:hover::before {
  transform: rotate(135deg);
}
.value__header {
  font-size: 29px;
  line-height: 43px;
  margin-bottom: 20px;
}
.value__text {
  font-size: 17px;
  line-height: 30px;
}
.value:nth-child(1) {
  max-width: 272px;
}
.value:nth-child(2) {
  max-width: 242px;
}
.value:nth-child(3) {
  max-width: 308px;
}
.value__img {
  margin: 0 auto 55px;
  width: 99px;
  height: 90px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.value__img img {
  width: 100%;
}
.value__more {
  color: #C39975;
}
@media screen and (max-width: 991px) {
  .value__img {
    margin-bottom: 25px;
  }
  .value__header {
    font-size: 19px;
    line-height: 28px;
  }
  .value__text {
    font-size: 14px;
    line-height: 25px;
  }
  .value:nth-child(1) {
    max-width: 232px;
  }
  .value:nth-child(2) {
    max-width: 192px;
  }
  .value:nth-child(3) {
    max-width: 248px;
  }
}
@media screen and (max-width: 767px) {
  .value {
    margin-bottom: 30px;
  }
  .value__img {
    height: 45px;
    width: 50px;
  }
  .value__header {
    margin-bottom: 15px;
  }
}

.about {
  display: flex;
  align-items: start;
  justify-content: center;
  margin-top: 200px;
}
.about__button {
  margin-top: 60px;
}
.about__text {
  max-width: 575px;
  width: 100%;
  padding-right: 10px;
}
.about__header {
  font-size: 59px;
  line-height: 87px;
}
.about__line {
  margin: 25px 0 53px;
}
.about__paragraph {
  font-size: 18px;
  line-height: 30px;
  opacity: 0.51;
  font-family: Jost, sans-serif;
  margin-bottom: 30px;
}
.about__images {
  max-width: 831px;
  width: 100%;
  margin-right: 113px;
  position: relative;
  margin-top: 20px;
}
.about__image--1 {
  position: absolute;
  right: 0;
  top: 0;
  width: 734px;
}
.about__image--2 {
  position: absolute;
  top: 312px;
  left: 0;
  width: 399px;
}
@media screen and (max-width: 1600px) {
  .about__image--1 {
    width: 550px;
  }
  .about__image--2 {
    top: 250px;
    left: auto;
    right: 350px;
    width: 299px;
  }
}
@media screen and (max-width: 1350px) {
  .about__image--1 {
    width: 350px;
  }
  .about__image--2 {
    top: 200px;
    right: 260px;
    width: 270px;
  }
  .about__images {
    margin-right: 50px;
  }
}
@media screen and (max-width: 1200px) {
  .about__text {
    max-width: 40%;
  }
  .about__image--1 {
    width: 350px;
  }
  .about__image--2 {
    top: 200px;
    right: 260px;
    width: 270px;
  }
  .about__images {
    margin-right: 0;
  }
}
@media screen and (max-width: 1024px) {
  .about {
    flex-direction: column-reverse;
    margin-top: 30px;
  }
  .about__text {
    max-width: 100%;
    padding: 0 25px;
    font-size: 14px;
    line-height: 26px;
  }
  .about__line {
    margin-bottom: 25px;
    max-width: 100%;
  }
  .about__button {
    margin-top: 35px;
    margin-bottom: 10px;
  }
  .about__image--1 {
    width: 100%;
    position: static;
    margin-bottom: 25px;
  }
  .about__image--2 {
    position: static;
    width: 100%;
  }
  .about__images {
    width: 100%;
    padding: 0 25px;
  }
}

.popular {
  margin: 192px auto 0;
  max-width: 1580px;
}
.popular__nav {
  width: 143px;
  margin: 100px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.popular__nav span {
  cursor: pointer;
}
.popular__nav span path {
  fill: white;
}
.popular__nav span:hover path {
  fill: #C39975;
}
.popular__nav-left {
  transform: rotate(-90deg);
}
.popular__nav-right {
  transform: rotate(90deg);
}
.popular__order {
  margin: 65px auto 0;
}
.popular__top {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
}
.popular__header {
  font-size: 59px;
  line-height: 87px;
  letter-spacing: 3px;
  text-align: center;
}
.popular__slider {
  margin-top: 147px;
}
.popular__slider .slick-arrow {
  opacity: 0;
  height: 0;
  width: 0;
  overflow: hidden;
}
.popular .glider-track {
  align-items: flex-start;
}
.popular__line {
  max-width: 100%;
  padding: 0 25px;
}
.popular__box {
  background-color: #090D10;
  padding: 26px 32px 45px;
  margin-right: 16px;
  min-height: 698px;
}
.popular__box-img {
  margin-top: 16px;
  height: 261px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
}
.popular__box-img img {
  max-width: 100%;
  max-height: 100%;
  transition: filter ease 300ms;
}
.popular__box-img span {
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #C39975;
  font-size: 126px;
  font-weight: 200;
  transition: opacity ease 300ms;
}
.popular__box-img:hover img {
  filter: brightness(25%);
}
.popular__box-img:hover span {
  opacity: 1;
}
.popular__box-name {
  color: #C39975;
  margin: 32px 0;
  font-size: 39px;
  line-height: 58px;
  font-weight: 200;
  display: block;
}
.popular__box-text {
  margin-top: 32px;
  font-family: Jost, sans-serif;
  font-size: 17px;
  line-height: 30px;
}
.popular__box:nth-child(2n) {
  margin-top: 104px;
}
@media screen and (max-width: 991px) {
  .popular {
    margin-top: 92px;
  }
  .popular__slider {
    margin-top: 60px;
  }
}
@media screen and (max-width: 767px) {
  .popular__header {
    font-size: 35px;
    line-height: 50px;
  }
  .popular__box {
    min-height: auto;
    margin-right: 0;
  }
  .popular__box:nth-child(2n) {
    margin-top: 0;
  }
  .popular__box-img {
    height: 150px;
  }
}

.button--order {
  cursor: pointer;
  border: 1px solid #C39975;
  padding: 7px;
  min-width: 100px;
  height: 75px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: padding ease 300ms;
}
.button--order:hover {
  padding: 3px;
}
.button--order a {
  cursor: pointer;
  width: 100%;
  height: 100%;
  display: flex;
  text-transform: uppercase;
  align-items: center;
  justify-content: center;
  border: none;
  box-shadow: none;
  background-color: #222e3c;
  color: white;
  font-weight: 600;
  font-size: 17px;
  letter-spacing: 0.85px;
  font-family: Oswald, sans-serif;
}

.opinions {
  position: relative;
  margin-top: 45px;
  padding: 175px 0 200px;
  overflow: hidden;
}
.opinions__quote {
  position: absolute;
  top: 295px;
  left: 50%;
  transform: translateX(-50%);
}
.opinions__slider {
  max-width: 850px;
  width: 100%;
  margin: 0 auto;
  padding-top: 110px;
}
.opinions__slide {
  font-family: Jost, sans-serif;
  font-style: italic;
  font-size: 17px;
  line-height: 30px;
  text-align: center;
}
.opinions__slide-text {
  opacity: 0.5;
}
.opinions__slide-name {
  opacity: 1;
  color: #C39975;
  font-weight: 500;
  margin-top: 24px;
  text-align: center;
}
.opinions__header {
  font-size: 59px;
  line-height: 87px;
  text-align: center;
  position: relative;
  font-weight: 200;
}
.opinions__header::after {
  content: "";
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12.2px;
  height: 12.2px;
  background-color: #C39975;
}
.opinions__inner {
  width: 100%;
  background-color: #090D10;
  padding-top: 103px;
}
.opinions__shrimp {
  position: absolute;
  top: 160px;
  left: 14.21%;
  width: 350px;
}
.opinions__salmon {
  position: absolute;
  width: 215px;
  bottom: 100px;
  left: 75.65%;
}
.opinions__circle {
  position: absolute;
  width: 150px;
  top: 110px;
  left: 71.14%;
}
.opinions__inner {
  margin-top: 170px;
  height: 645px;
}
@media screen and (max-width: 1199px) {
  .opinions {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .opinions__inner {
    margin-top: 50px;
  }
  .opinions__quote {
    top: 45px;
  }
  .opinions__shrimp {
    position: absolute;
    top: -30px;
    left: 7.21%;
    width: 250px;
  }
  .opinions__salmon {
    position: absolute;
    width: 150px;
    bottom: -10px;
    left: 75.65%;
  }
  .opinions__circle {
    position: absolute;
    width: 100px;
    top: 60px;
    left: 78.14%;
  }
  .opinions__inner {
    height: 500px;
  }
}
@media screen and (max-width: 767px) {
  .opinions {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .opinions__quote {
    width: 120px;
    top: 66px;
  }
  .opinions__header {
    font-size: 35px;
    line-height: 50px;
  }
  .opinions__inner {
    margin-top: 50px;
  }
  .opinions__shrimp {
    position: absolute;
    top: -30px;
    left: 7.21%;
    width: 250px;
  }
  .opinions__salmon {
    position: absolute;
    width: 100px;
    bottom: 10px;
    right: 10%;
    left: auto;
  }
  .opinions__circle {
    display: none;
  }
  .opinions__slide {
    font-size: 14px;
    line-height: 26px;
    padding: 0 25px;
  }
  .opinions__slider {
    padding-top: 80px;
  }
  .opinions__inner {
    height: auto;
    padding-bottom: 75px;
  }
}

.insta {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding-top: 26px;
}
.insta img {
  margin-bottom: 35px;
}
.insta__link {
  color: white;
  font-weight: 300;
  text-transform: uppercase;
  font-size: 31px;
  line-height: 46px;
  text-decoration: none;
  cursor: pointer;
  transition: color ease 300ms;
}
.insta__link:hover {
  color: #C39975;
}
.insta p {
  max-width: 520px;
  width: 100%;
  font-family: Jost, sans-serif;
  font-size: 22px;
  line-height: 34px;
  margin-top: 39px;
  margin-bottom: 123px;
  text-align: center;
  padding: 0 25px;
}
.insta__images {
  max-width: 100%;
  height: 350px;
}
.insta__image {
  display: block;
  margin-right: 5px;
  position: relative;
  width: 350px;
}
.insta__image img {
  margin-bottom: 0;
  max-width: 100%;
}
.insta__image-text {
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 17px;
  transition: opacity ease 300ms;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-direction: column;
}
.insta__image-text img {
  width: 30px;
  height: 30px;
  margin-bottom: 25px;
}
.insta__image:hover > img {
  filter: brightness(0.64);
}
.insta__image:hover .insta__image-text {
  opacity: 1;
}
@media screen and (max-width: 991px) {
  .insta__image {
    width: 200px;
  }
  .insta__images {
    height: 200px;
  }
}
@media screen and (max-width: 767px) {
  .insta {
    padding-bottom: 12px;
  }
  .insta__image {
    width: 150px;
  }
  .insta__images {
    height: 150px;
  }
}

.food-section {
  position: relative;
}
.food-section__beans {
  position: absolute;
  right: 150px;
  top: -220px;
  animation: knife 10s infinite;
}
@media screen and (max-width: 1600px) {
  .food-section__beans {
    right: 0;
    width: 300px;
    top: -180px;
  }
}
@media screen and (max-width: 991px) {
  .food-section__beans {
    right: 0;
    width: 200px;
    top: -180px;
  }
}
@media screen and (max-width: 767px) {
  .food-section__beans {
    display: none;
  }
}
@media screen and (max-width: 991px) {
  .food-section .meal {
    margin-top: 100px;
  }
}
@media screen and (max-width: 767px) {
  .food-section .meal {
    margin-top: 50px;
  }
}

.footer {
  background-color: #090D10;
}
.footer__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  max-width: 1680px;
  padding: 72px 20px 42px;
  width: 100%;
  margin: 0 auto;
}
.footer__center {
  max-width: 724px;
  width: 100%;
  text-align: center;
}
.footer__center img {
  width: 144px;
  height: 144px;
  margin-bottom: 63px;
}
.footer__center-text {
  font-family: Jost, sans-serif;
  font-size: 17px;
  line-height: 34px;
  margin-bottom: 32px;
}
.footer__menu ul {
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer__menu ul li {
  padding: 0 25px;
}
.footer__menu a {
  font-size: 12px;
  line-height: 17px;
  color: white;
  text-decoration: none;
  cursor: pointer;
  transition: color ease 300ms;
}
.footer__menu a:hover {
  color: #C39975;
}
.footer__left p.gold, .footer__right p.gold {
  margin-top: 40px;
  font-size: 22px;
  line-height: 32px;
  margin-bottom: 32px;
  text-transform: uppercase;
  font-weight: 300;
}
.footer__left p.text, .footer__right p.text {
  font-size: 17px;
  line-height: 30px;
  font-family: Jost, sans-serif;
}
.footer__right {
  text-align: right;
}
@media screen and (max-width: 1199px) {
  .footer__center {
    max-width: 480px;
  }
  .footer__menu ul li {
    padding: 0 10px;
  }
  .footer__left p.text, .footer__right p.text {
    font-size: 14px;
    line-height: 26px;
  }
}
@media screen and (max-width: 991px) {
  .footer__center {
    max-width: 380px;
  }
  .footer__center-text {
    font-size: 14px;
  }
  .footer__center img {
    width: 72px;
    height: 72px;
  }
  .footer__menu ul li {
    padding: 0 5px;
  }
  .footer__menu ul li:last-child {
    padding-right: 0;
  }
  .footer__menu ul li:first-child {
    padding-left: 0;
  }
  .footer__left p.text, .footer__right p.text {
    font-size: 14px;
    line-height: 26px;
  }
}
@media screen and (max-width: 767px) {
  .footer__inner {
    flex-direction: column;
  }
  .footer__center {
    order: 1;
    max-width: 100%;
  }
  .footer__center-text {
    font-size: 14px;
  }
  .footer__center img {
    margin-bottom: 32px;
  }
  .footer__menu {
    display: none;
  }
  .footer__menu ul li {
    padding: 0 5px;
  }
  .footer__menu ul li:last-child {
    padding-right: 0;
  }
  .footer__menu ul li:first-child {
    padding-left: 0;
  }
  .footer__left {
    order: 2;
  }
  .footer__right {
    order: 3;
  }
  .footer__left, .footer__right {
    width: 100%;
    text-align: left;
  }
  .footer__left p.gold, .footer__right p.gold {
    margin-top: 15px;
    margin-bottom: 10px;
  }
}

.video {
  margin-top: 466px;
  width: 100%;
  height: 698px;
  background-image: url("./../assets/bg-video.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.video__inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.video__inner img {
  width: 128px;
  margin-bottom: 47px;
  cursor: pointer;
  transition: transform ease 500ms;
}
.video__inner img:hover {
  transform: rotate(359deg);
}
.video__inner p {
  text-transform: uppercase;
  font-size: 20px;
  line-height: 30px;
}
@media screen and (max-width: 1600px) {
  .video {
    margin-top: 166px;
    height: 498px;
  }
}

.breadcrumbs {
  display: flex;
  align-items: center;
  justify-content: center;
}
.breadcrumbs a {
  color: #C39975;
  font-size: 20px;
  line-height: 30px;
  font-weight: 300;
  text-decoration: none;
}
.breadcrumbs a ~ a::before {
  content: " / ";
  display: inline-block;
  padding: 0 2px;
}

.menu__options {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1281px;
  padding: 0 20px;
  margin: 86px auto 0;
}
.menu__option {
  font-weight: 200;
  font-size: 19px;
  line-height: 28px;
  color: white;
  text-decoration: none;
  transition: color ease 300ms;
}
.menu__option:hover {
  color: #C39975;
}
.menu__option--active {
  color: #C39975;
}
.menu__option ~ .menu__option::before {
  content: "|";
  display: inline-block;
  color: white;
  padding: 0 25px;
}
@media screen and (max-width: 767px) {
  .menu__option {
    font-size: 15px;
    line-height: 25px;
  }
  .menu__option ~ .menu__option::before {
    padding: 0 15px;
  }
}
.menu-card {
  max-width: 1640px;
  width: 100%;
  margin: 212px auto 263px;
  background-color: #090D10;
  padding: 60px 144px;
}
.menu-card__wrapper {
  position: relative;
  overflow: hidden;
}
.menu-card__img {
  position: absolute;
  right: 0;
  top: 90px;
}
.menu-card__header {
  font-weight: 200;
  font-size: 59px;
  line-height: 87px;
  margin-bottom: 40px;
}
.menu-card__description {
  font-family: Jost, sans-serif;
  font-size: 18px;
  line-height: 30px;
  opacity: 0.51;
  margin-bottom: 32px;
  max-width: 480px;
}
.menu-card__options {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 144px;
  padding-right: 156px;
}
.menu-card__option {
  max-width: 458px;
  width: 100%;
  margin-bottom: 30px;
}
.menu-card__option-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  color: #C39975;
}
.menu-card__option-name {
  font-size: 30px;
  line-height: 45px;
  font-weight: 200;
}
.menu-card__option-price {
  font-size: 20px;
  line-height: 45px;
}
.menu-card__option-line {
  flex: 1;
  margin: auto 15px 12px;
  height: 1px;
  background-color: #C39975;
}
.menu-card__option-bottom {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  margin-top: 20px;
}
.menu-card__option-bottom span {
  font-size: 18px;
  line-height: 30px;
  font-weight: 300;
}
@media screen and (max-width: 1400px) {
  .menu-card {
    padding: 50px 72px;
    margin-top: 50px;
    margin-bottom: 75px;
  }
  .menu-card__img {
    width: 360px;
    top: 20px;
  }
  .menu-card__options {
    padding-right: 0;
    margin-top: 50px;
  }
  .menu-card__option {
    max-width: 410px;
  }
}
@media screen and (max-width: 991px) {
  .menu-card {
    padding: 40px 53px;
  }
  .menu-card__options {
    padding-right: 0;
    margin-top: 50px;
  }
  .menu-card__option {
    max-width: 320px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  .menu-card {
    padding: 20px 30px;
    margin-top: 100px;
  }
  .menu-card__img {
    top: 20px;
    width: 235px;
    right: -25px;
  }
  .menu-card__header {
    font-size: 35px;
    line-height: 50px;
    margin-bottom: 30px;
  }
  .menu-card__description {
    font-family: Jost, sans-serif;
    font-size: 14px;
    line-height: 24px;
    max-width: 300px;
  }
  .menu-card__options {
    padding-right: 0;
    margin-top: 50px;
  }
  .menu-card__option {
    max-width: 250px;
  }
  .menu-card__option-name {
    font-size: 24px;
    line-height: 40px;
  }
  .menu-card__option-price {
    font-size: 18px;
    line-height: 40px;
  }
  .menu-card__option-bottom {
    margin-top: 10px;
  }
  .menu-card__option-bottom span {
    font-size: 14px;
    line-height: 24px;
  }
}
@media screen and (max-width: 550px) {
  .menu-card__option {
    max-width: 100%;
  }
}

.menu-restaurant__button {
  margin: 85px auto 0;
}
.menu-restaurant__header {
  font-size: 59px;
  line-height: 87px;
  color: white;
  font-weight: 200;
  text-transform: uppercase;
  margin-bottom: 26px;
}
.menu-restaurant__top {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.menu-restaurant__bottom {
  max-width: 1640px;
  width: 100%;
  background-image: url("./../assets/menu-bg.svg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 48px 376px 48px 256px;
  margin: 77px auto 0;
}
.menu-restaurant__bottom-text {
  font-size: 34px;
  line-height: 51px;
  font-weight: 200;
  margin-bottom: 19px;
}
.menu-restaurant__bottom-description {
  font-family: Jost, sans-serif;
  font-size: 18px;
  line-height: 30px;
  opacity: 0.51;
}
@media screen and (max-width: 1200px) {
  .menu-restaurant__bottom {
    padding: 48px 150px 48px 100px;
  }
}
@media screen and (max-width: 767px) {
  .menu-restaurant__header {
    font-size: 35px;
    line-height: 50px;
    margin-bottom: 0;
  }
  .menu-restaurant__top img {
    max-width: 100%;
    padding: 0 20px;
  }
  .menu-restaurant__bottom {
    margin-top: 60px;
    padding: 24px 50px 24px 25px;
  }
}

.meal {
  max-width: 1435px;
  padding: 0 20px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 200px auto 0;
}
.meal:last-of-type {
  margin-bottom: 325px;
}
.meal__text {
  max-width: 575px;
  width: 100%;
}
.meal__text-header {
  font-weight: 200;
  font-size: 59px;
  line-height: 87px;
  margin-bottom: 40px;
}
.meal__text-description {
  font-family: Jost, sans-serif;
  font-size: 18px;
  line-height: 30px;
  opacity: 0.51;
  margin-bottom: 32px;
}
.meal__img {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 698px;
  width: 100%;
}
.meal__img img {
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  .meal {
    flex-direction: column;
    margin-top: 50px;
  }
  .meal:last-of-type {
    margin-bottom: 50px;
  }
  .meal__text-header {
    font-size: 35px;
    line-height: 50px;
  }
  .meal__text-description {
    font-size: 14px;
    line-height: 25px;
  }
  .meal__img {
    order: 1;
    max-width: 100%;
  }
  .meal__text {
    order: 2;
    max-width: 100%;
  }
}

.info {
  max-width: 1680px;
  padding: 0 20px;
  width: 100%;
  margin: 0 auto 261px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 31px;
  line-height: 46px;
  text-align: center;
  font-weight: 300;
}
.info__header {
  color: #C39975;
  text-transform: uppercase;
}
.info__left, .info__right {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 367px;
}
.info__hours {
  margin-top: 32px;
}
.info__button {
  margin: 49px auto 0;
  background-color: #C39975;
  color: white;
  text-transform: uppercase;
  width: 145px;
  height: 48px;
  font-size: 15px;
  font-weight: 500;
  line-height: 48px;
  transition: background-color ease 300ms;
  border: 1px solid #C39975;
}
.info__button:hover {
  background-color: transparent;
}
.info__left {
  padding-top: 92px;
  background-image: url("./../assets/info-men.png");
}
.info__right {
  background-image: url("./../assets/info-dokku.png");
  padding-top: 105px;
}
.info__right a {
  color: white;
  text-decoration: none;
}
@media screen and (max-width: 991px) {
  .info {
    font-size: 26px;
    line-height: 30px;
  }
  .info__left, .info__right {
    min-height: 267px;
    padding-top: 75px;
  }
}
@media screen and (max-width: 767px) {
  .info {
    flex-direction: column;
  }
  .info__left, .info__right {
    width: 100%;
  }
}

.double-border {
  background-color: #090D10;
  border: 1px solid #C39975;
  padding: 68px 18px 77px;
  width: 326px;
  max-width: none !important;
  position: relative;
}
.double-border::after {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  border: 1px solid #C39975;
  position: absolute;
  top: -14px;
  left: 14px;
  z-index: 1;
}
@media screen and (max-width: 1199px) {
  .double-border {
    width: 250px;
    padding: 34px 18px 38px;
  }
}
@media screen and (max-width: 991px) {
  .double-border {
    width: 215px;
  }
}
@media screen and (max-width: 767px) {
  .double-border {
    margin-bottom: 75px;
    width: 255px;
  }
}

.about-page-info {
  display: flex;
  align-items: stretch;
  justify-content: space-around;
  max-width: 1640px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .about-page-info {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}

.about-page {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  min-height: 603px;
  background: url("./../assets/ab-illustration.png") top left no-repeat, url("./../assets/plate.png") right center no-repeat, #171c21;
  padding-top: 237px;
  max-width: 1640px;
  margin: 0 auto 267px;
  position: relative;
}
.about-page__knife {
  position: absolute;
  left: 0;
  bottom: -267px;
  animation: knife 10s infinite;
}
.about-page__knife img {
  max-width: 100%;
}
.about-page__circle {
  position: absolute;
  top: 50px;
  left: 60%;
}
.about-page__header {
  font-size: 59px;
  line-height: 87px;
  color: white;
  font-weight: 200;
  text-transform: uppercase;
  margin-bottom: 26px;
}
.about-page__tel {
  font-size: 39px;
  line-height: 58px;
  text-align: center;
  font-weight: 200;
  margin-top: 30px;
}
.about-page__tel a {
  text-decoration: none;
  color: white;
}
.about-page__top {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1600px) {
  .about-page {
    min-height: 430px;
    padding-top: 100px;
    background-size: 300px, 1000px;
    margin-bottom: 177px;
  }
  .about-page__knife {
    width: 500px;
    bottom: -177px;
  }
  .about-page__circle {
    top: 30px;
    left: 68%;
  }
}
@media screen and (max-width: 1200px) {
  .about-page {
    background: url("./../assets/ab-illustration.png") top left no-repeat, #171c21;
    background-size: 300px;
    margin-bottom: 100px;
  }
  .about-page__knife {
    display: none;
  }
  .about-page__circle {
    left: auto;
    right: 10%;
    width: 75px;
  }
  .about-page__circle img {
    max-width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .about-page {
    background-size: 150px;
    min-height: 320px;
  }
  .about-page__header {
    font-size: 35px;
    line-height: 50px;
    margin-bottom: 0;
  }
  .about-page__tel {
    font-size: 21px;
    line-height: 30px;
  }
  .about-page__top img {
    padding: 0 20px;
  }
}

.philosophy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1680px;
  margin: 200px auto 0;
  padding: 0 20px;
}
.philosophy__name {
  color: #C39975;
  margin-bottom: 15px;
  font-size: 20px;
  line-height: 30px;
  font-weight: 300;
}
.philosophy__header {
  font-size: 49px;
  line-height: 72px;
  font-weight: 200;
  margin-bottom: 61px;
}
.philosophy__text {
  font-family: Jost, sans-serif;
  font-size: 18px;
  line-height: 30px;
}
.philosophy__left, .philosophy__right {
  max-width: 454px;
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.philosophy__left img, .philosophy__right img {
  max-width: 100%;
}
.philosophy__center {
  max-width: 543px;
  padding: 0 20px;
  width: 100%;
  text-align: center;
}
@media screen and (max-width: 1199px) {
  .philosophy__text {
    font-size: 16px;
    line-height: 26px;
  }
  .philosophy__header {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 991px) {
  .philosophy {
    margin-top: 100px;
  }
  .philosophy__text {
    font-size: 16px;
    line-height: 26px;
  }
  .philosophy__header {
    margin-bottom: 20px;
  }
  .philosophy__right {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .philosophy {
    flex-direction: column-reverse;
    margin-top: 50px;
  }
  .philosophy__text {
    font-size: 14px;
  }
  .philosophy__header {
    margin-bottom: 20px;
  }
  .philosophy__left {
    margin-top: 20px;
  }
}

.about-page-images-text {
  max-width: 1680px;
  width: 100%;
  padding: 0 20px;
  margin: 292px auto 329px;
}
@media screen and (max-width: 991px) {
  .about-page-images-text {
    margin: 146px auto 175px;
  }
}
@media screen and (max-width: 767px) {
  .about-page-images-text {
    margin: 73px auto 80px;
  }
}

.image-text {
  margin-top: 237px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.image-text__text {
  max-width: 619px;
  width: 100%;
  padding: 0 20px;
}
.image-text__img {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 698px;
  width: 100%;
  position: relative;
}
.image-text__img img {
  max-width: 100%;
}
.image-text__img .line {
  width: 235px;
  height: 1px;
  background-color: #C39975;
  position: absolute;
  top: 88px;
  left: -118px;
}
.image-text__img .line--right {
  left: auto;
  right: -118px;
}
.image-text__description {
  font-family: Jost, sans-serif;
  font-size: 18px;
  line-height: 30px;
}
.image-text__header {
  margin-top: 119px;
  font-size: 49px;
  line-height: 72px;
  margin-bottom: 38px;
  font-weight: 200;
}
@media screen and (max-width: 1199px) {
  .image-text {
    margin-top: 41px;
  }
  .image-text__img .line {
    width: 50px;
    left: -25px;
    top: 50px;
  }
  .image-text__img .line--right {
    left: auto;
    right: -25px;
  }
  .image-text__header {
    font-size: 39px;
    line-height: 60px;
    margin-top: 69px;
  }
  .image-text__description {
    font-size: 16px;
    line-height: 26px;
  }
}
@media screen and (max-width: 767px) {
  .image-text {
    flex-direction: column;
    margin-top: 41px;
  }
  .image-text__img {
    max-width: 100%;
    order: 2;
    margin-top: 19px;
  }
  .image-text__img .line {
    display: none;
  }
  .image-text__text {
    max-width: 100%;
    order: 1;
  }
  .image-text__header {
    font-size: 39px;
    line-height: 60px;
    margin-top: 69px;
  }
  .image-text__description {
    font-size: 16px;
    line-height: 26px;
  }
}

.gold {
  color: #C39975;
}

.guide__header {
  font-size: 59px;
  line-height: 87px;
  color: white;
  font-weight: 200;
  text-transform: uppercase;
  margin-bottom: 26px;
}
.guide__top {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.guide__bottom {
  max-width: 1515px;
  width: 100%;
  margin: 85px auto;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 20px;
}
@media screen and (max-width: 991px) {
  .guide__bottom {
    padding: 0 15px;
  }
}
@media screen and (max-width: 767px) {
  .guide__header {
    font-size: 35px;
    line-height: 50px;
    margin-bottom: 0;
  }
  .guide__top img {
    padding: 0 20px;
  }
  .guide__bottom {
    margin-top: 40px;
  }
}

.sushi-single {
  max-width: 371px;
  width: 100%;
}
.sushi-single__img {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  width: 100%;
  height: 222px;
  transition: transform ease 500ms;
}
.sushi-single__img img {
  max-width: 100%;
}
.sushi-single__img:hover {
  transform: rotate(5deg);
}
.sushi-single__count {
  color: #C39975;
  margin-top: 7px;
  font-size: 26px;
  line-height: 39px;
  font-weight: 200;
}
.sushi-single__name {
  font-size: 37px;
  line-height: 55px;
  margin-bottom: 20px;
}
.sushi-single__description {
  font-family: Jost, sans-serif;
  font-size: 18px;
  line-height: 30px;
  opacity: 0.5;
}
@media screen and (max-width: 991px) {
  .sushi-single {
    max-width: 50%;
    padding: 0 10px;
  }
  .sushi-single__img {
    height: 150px;
  }
  .sushi-single__description {
    font-size: 16px;
    line-height: 26px;
  }
  .sushi-single__name {
    font-size: 24px;
    line-height: 36px;
  }
  .sushi-single__count {
    font-size: 20px;
    line-height: 32px;
  }
}
@media screen and (max-width: 600px) {
  .sushi-single {
    max-width: 100%;
  }
}

.guide-image-text {
  max-width: 1570px;
  width: 100%;
  margin: 179px auto 0;
}
.guide-image-text .image-text__header {
  margin-top: 39px;
}

.guide-rectangle {
  border: 1px solid #C39975;
  padding: 61px 120px;
  font-family: Jost, sans-serif;
  text-align: center;
  font-size: 18px;
  line-height: 30px;
}
.guide-rectangle span {
  font-family: Oswald, sans-serif;
  font-weight: 300;
  font-size: 22px;
}
.guide-rectangle__wrapper {
  max-width: 1401px;
  width: 100%;
  margin: 149px auto 0;
  padding: 0 60px 220px;
  position: relative;
}
.guide-rectangle__wrapper img {
  position: absolute;
  bottom: 0;
  right: -60px;
  animation: sign 10s infinite;
}
@-webkit-keyframes sign {
  0% {
    transform: rotate(0);
  }
  20% {
    transform: rotate(-40deg);
  }
  40% {
    transform: rotate(0);
  }
}
@media screen and (max-width: 1525px) {
  .guide-rectangle__wrapper img {
    right: 0;
  }
}
@media screen and (max-width: 1400px) {
  .guide-rectangle__wrapper {
    overflow: hidden;
  }
}
@media screen and (max-width: 991px) {
  .guide-rectangle {
    padding: 30px 60px;
  }
  .guide-rectangle__wrapper {
    padding: 0 20px 110px;
  }
  .guide-rectangle__wrapper img {
    width: 150px;
    right: 0;
  }
}
@media screen and (max-width: 991px) {
  .guide-rectangle {
    padding: 25px 30px;
    font-size: 14px;
    line-height: 26px;
  }
  .guide-rectangle__wrapper {
    padding: 0 20px 55px;
  }
  .guide-rectangle__wrapper img {
    width: 75px;
    right: 0;
  }
  .guide-rectangle span {
    font-size: 18px;
  }
}

.chopsticks {
  padding: 107px 21.8% 88px;
  background-color: #171c21;
  width: 100%;
  text-align: center;
  position: relative;
  background-image: url("./../assets/chopsticks--bg.svg");
  background-position: top left;
  background-repeat: no-repeat;
}
.chopsticks__header {
  font-size: 59px;
  line-height: 87px;
  font-weight: 200;
  margin-bottom: 63px;
}
.chopsticks__description {
  font-family: Jost, sans-serif;
  font-size: 18px;
  line-height: 30px;
  opacity: 0.5;
}
.chopsticks__sign {
  position: absolute;
  top: -50px;
  left: 18.2%;
}
.chopsticks__chopstick {
  position: absolute;
  right: 0;
  top: 330px;
  width: 36.8vw;
  animation: shake ease 7s 5s infinite;
}
@-webkit-keyframes shake {
  10%, 30% {
    transform: rotate(-2deg);
  }
  20%, 40% {
    transform: rotate(2deg);
  }
  50% {
    transform: rotate(0deg);
  }
}
.chopsticks__rectangle {
  padding: 51px 128px;
  max-width: 1280px;
  margin: 111px auto 214px;
  border: 1px solid #C39975;
  font-family: Jost, sans-serif;
  text-align: center;
  font-size: 18px;
  line-height: 30px;
}
.chopsticks__rectangle span {
  font-family: Oswald, sans-serif;
  font-weight: 300;
  font-size: 22px;
}
@media screen and (max-width: 1400px) {
  .chopsticks {
    padding: 53px 100px;
  }
  .chopsticks__chopstick {
    width: 18vw;
    bottom: 0;
    top: auto;
  }
}
@media screen and (max-width: 767px) {
  .chopsticks {
    padding: 25px;
  }
  .chopsticks__chopstick {
    display: none;
  }
  .chopsticks__rectangle {
    padding: 25px 64px;
  }
  .chopsticks__header {
    font-size: 28px;
    line-height: 50px;
    margin-bottom: 31px;
  }
  .chopsticks__description {
    font-size: 14px;
    line-height: 26px;
  }
  .chopsticks__sign {
    display: none;
  }
  .chopsticks__rectangle {
    font-size: 14px;
    line-height: 26px;
    margin-bottom: 100px;
  }
  .chopsticks__rectangle span {
    font-size: 18px;
  }
}

.guide-values {
  display: flex;
  align-items: stretch;
  justify-content: space-around;
  margin-bottom: 214px;
}
.guide-values .value {
  padding: 88px 40px;
}
.guide-values .value__header {
  font-size: 20px;
  line-height: 30px;
  margin-bottom: 53px;
}
.guide-values .value__text {
  font-family: Jost, sans-serif;
  font-size: 15px;
  line-height: 25px;
  opacity: 0.5;
}
@media screen and (max-width: 767px) {
  .guide-values {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
  }
  .guide-values .value {
    padding: 44px 30px;
    width: 75%;
  }
  .guide-values .value__header {
    margin-bottom: 20px;
  }
}

.order-section__top {
  display: flex;
  max-width: 1220px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin: 112px auto 0;
}
.order-section__button {
  margin: 0 10px 20px;
  min-width: 183px;
  height: 51px;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
  text-transform: uppercase;
  border: 1px solid #C39975;
  color: #C39975;
  opacity: 0.3;
  transition: opacity ease 300ms;
  cursor: pointer;
  font-size: 15px;
  line-height: 22px;
}
.order-section__button.active {
  opacity: 1;
}
.order-section__button:hover {
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .order-section__button {
    font-size: 13px;
    line-height: 19px;
    height: 39px;
    min-width: 100px;
    margin: 0 5px 10px;
  }
}
.order-section__submenu {
  max-width: 1640px;
  width: 100%;
  margin: 178px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 66px 0;
  border-top: 1px solid #C39975;
  border-bottom: 1px solid #C39975;
}
.order-section__submenu-item {
  font-size: 15px;
  line-height: 22px;
  color: #C39975;
  background-color: transparent;
  box-shadow: none;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: color ease 300ms;
}
.order-section__submenu-item.active {
  color: white;
  position: relative;
}
.order-section__submenu-item.active::after {
  content: "";
  position: absolute;
  display: block;
  transform: rotate(45deg) translateX(-50%);
  width: 5px;
  height: 5px;
  bottom: -22px;
  left: 50%;
  background-color: #C39975;
}
.order-section__submenu-item:hover {
  color: white;
}
.order-section__submenu-item ~ .order-section__submenu-item::before {
  content: " | ";
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0 10px 0;
  color: #C39975;
}
.order-section__content {
  max-width: 1680px;
  padding: 0 20px;
  margin: 169px auto 0;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  flex-wrap: wrap;
}
.order-section__big {
  max-width: 478px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  background-color: #090D10;
  transition: background-color ease 300ms;
  cursor: pointer;
  margin-bottom: 90px;
}
.order-section__big-img {
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-bottom: 20px;
}
.order-section__big-img img {
  max-height: 290px;
}
.order-section__big-name {
  font-size: 39px;
  line-height: 58px;
  font-weight: 200;
  color: #C39975;
  margin-bottom: 21px;
}
.order-section__big-name .count {
  font-size: 20px;
  font-weight: 200;
  color: white;
}
.order-section__big-content {
  font-family: Jost, sans-serif;
  font-size: 17px;
  line-height: 20px;
}
.order-section__big-top {
  padding: 0 40px 68px;
}
.order-section__big-price {
  color: #C39975;
  font-weight: 200;
  font-size: 29px;
  line-height: 43px;
}
.order-section__big-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
  padding: 29px 44px;
}
.order-section__big-bottom .cart {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  border-radius: 34px;
  background-color: #171c21;
  transition: background-color ease 300ms, width ease 300ms;
  overflow: hidden;
  position: relative;
}
.order-section__big-bottom .cart svg {
  min-width: 68px;
  min-height: 68px;
  margin-right: 0;
  margin-left: auto;
}
.order-section__big-bottom .cart-text {
  color: #C39975;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 68px;
  width: 92px;
}
.order-section__big-bottom .cart:hover {
  width: 160px;
}
.order-section__big-bottom .cart path {
  fill: #C39975;
}
.order-section__big:hover {
  background-color: #171c21;
}
.order-section__big:hover .order-section__big-bottom .cart {
  background-color: #090D10;
}
@media screen and (max-width: 1400px) {
  .order-section__content {
    margin-top: 80px;
  }
  .order-section__submenu {
    margin-top: 80px;
    flex-wrap: wrap;
  }
  .order-section__submenu-item {
    font-size: 12px;
    padding-top: 14px;
  }
  .order-section__submenu-item ~ .order-section__submenu-item::before {
    content: "";
    padding: 0 12px;
  }
  .order-section__submenu-item.active::after {
    bottom: -10px;
  }
  .order-section__big {
    max-width: 340px;
    margin: 0 10px 40px;
  }
  .order-section__big-bottom {
    padding: 15px 20px;
  }
  .order-section__big-top {
    padding: 0 20px 34px;
  }
  .order-section__big-img img {
    max-height: 200px;
  }
}
@media screen and (max-width: 767px) {
  .order-section__content {
    margin-top: 25px;
  }
  .order-section__submenu {
    margin-top: 25px;
  }
  .order-section__big {
    max-width: 90%;
    margin: 0 10px 20px;
  }
  .order-section__big-price {
    font-size: 19px;
  }
  .order-section__big .cart {
    height: 32px;
    width: 32px;
  }
  .order-section__big .cart-text {
    right: 32px;
  }
  .order-section__big .cart:hover {
    width: 140px;
  }
  .order-section__big .cart svg {
    min-width: 32px;
    max-width: 32px;
    min-height: 32px;
    max-height: 32px;
  }
  .order-section__big .cart-text {
    font-size: 14px;
  }
  .order-section__content {
    justify-content: center;
  }
}

.order-big {
  background-image: url("./../assets/order-bg.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  margin-top: -200px;
  padding-top: 228px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.order-big__logo {
  width: 230px;
  text-align: center;
  margin: 0 auto 81px;
}
.order-big__bottom {
  width: 100%;
  margin: 85px auto 237px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.order-big__searcher {
  max-width: 913px;
  width: 100%;
  background-color: #171c21;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.83);
  border: 1px solid rgba(255, 255, 255, 0.13);
  padding-left: 46px;
  height: 82px;
  border-radius: 41px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.order-big__searcher img {
  margin-right: 50px;
}
.order-big__searcher input {
  flex: 1;
  background-color: transparent;
  color: white;
  box-shadow: none;
  border: none;
  font-size: 18px;
  outline: none;
  padding-right: 25px;
}
.order-big__searcher input::placeholder {
  font-size: 18px;
  color: white;
  opacity: 1;
}
.order-big__searcher input:-ms-input-placeholder {
  font-size: 18px;
  color: white;
}
.order-big__searcher input::-ms-input-placeholder {
  font-size: 18px;
  color: white;
}
.order-big__searcher input:focus::placeholder {
  opacity: 0.4;
}
.order-big__searcher input:focus:-ms-input-placeholder {
  opacity: 0.4;
}
.order-big__searcher input:focus::-ms-input-placeholder {
  opacity: 0.4;
}
.order-big__searcher a {
  cursor: pointer;
  height: 100%;
  box-shadow: none;
  border-radius: 41px;
  width: 239px;
  background-color: #C39975;
  color: white;
  font-size: 17px;
  text-transform: uppercase;
  font-family: Oswald, sans-serif;
  letter-spacing: 0.85px;
  border: 1px solid #C39975;
  transition: background-color ease 300ms;
}
.order-big__searcher a:hover {
  background-color: transparent;
}
@media screen and (max-width: 767px) {
  .order-big__searcher {
    height: 51px;
    padding-left: 23px;
  }
  .order-big__searcher a {
    font-size: 14px;
    width: 150px;
  }
  .order-big__searcher img {
    margin-right: 25px;
  }
  .order-big__searcher input {
    font-size: 15px;
  }
  .order-big__searcher input::placeholder {
    font-size: 15px;
  }
  .order-big__searcher input:-ms-input-placeholder {
    font-size: 15px;
  }
  .order-big__searcher input::-ms-input-placeholder {
    font-size: 15px;
  }
}
@media screen and (max-width: 500px) {
  .order-big__searcher {
    padding-left: 15px;
    justify-content: space-between;
  }
  .order-big__searcher a {
    font-size: 12px;
    width: 150px;
  }
  .order-big__searcher img {
    margin-right: 15px;
    display: none;
  }
  .order-big__searcher input {
    font-size: 13px;
    max-width: 180px;
  }
  .order-big__searcher input::placeholder {
    font-size: 13px;
  }
  .order-big__searcher input:-ms-input-placeholder {
    font-size: 13px;
  }
  .order-big__searcher input::-ms-input-placeholder {
    font-size: 13px;
  }
}
@media screen and (max-width: 991px) {
  .order-big__bottom {
    margin-bottom: 120px;
  }
}

.lb-outerContainer {
  background-color: transparent !important;
}

.lightbox .lb-image {
  border: 2px solid #C39975 !important;
  padding: 30px;
}
@media screen and (max-width: 767px) {
  .lightbox .lb-image {
    padding: 15px;
  }
}

.lb-dataContainer {
  display: none !important;
}

@-moz-keyframes spin {
  100% {
    -moz-transform: rotate(360deg);
  }
}
@-webkit-keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.rotate {
  -webkit-animation: spin 20s linear infinite;
  -moz-animation: spin 20s linear infinite;
  animation: spin 20s linear infinite;
}

.copy {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: Jost, sans-serif;
  color: rgba(255, 255, 255, 0.24);
  font-size: 17px;
}
@media screen and (max-width: 767px) {
  .copy {
    height: 50px;
    font-size: 13px;
  }
}

.modal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.5);
  filter: blur(1);
  transform: translate(-50%, -50%);
  font-size: 222px;
  z-index: 5;
}
.modal.opened {
  display: flex;
}

.preload {
  background-color: #090D10;
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  transition: opacity ease 300ms;
  visibility: visible;
}
.preload.hidden {
  opacity: 0;
  visibility: hidden;
}

@-webkit-keyframes knife {
  0% {
    transform: rotate(0);
  }
  20% {
    transform: rotate(60deg);
  }
  40% {
    transform: rotate(0);
  }
}
.hide {
  display: none;
}

.video {
  position: relative;
}

#myVideo {
  z-index: 1;
  filter: blur(0px) brightness(0.4);
}

.no-scroll {
  overflow: hidden;
}

.rice {
  position: relative;
  height: 600px;
}
.rice-main, .rice-falling {
  z-index: 100;
  pointer-events: none;
}
.rice-main {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-animation: falling linear infinite both;
  animation: falling linear infinite both;
  transform: translate3D(0, -100%, 0);
}
.rice-falling {
  overflow: hidden;
  position: absolute;
  right: 400px;
  top: 330px;
  height: 100%;
  width: 132px;
  max-width: 100%;
}
.rice--near {
  -webkit-animation-duration: 10s;
  animation-duration: 10s;
  background-image: url("./../assets/rice/ziarenka-pojedyncze2.png");
  background-size: contain;
}
.rice--near + .rice--alt {
  -webkit-animation-delay: 5s;
  animation-delay: 5s;
}
.rice__chopsticks {
  position: absolute;
  top: 170px;
  right: 40%;
  animation: rice ease 5s infinite;
}
.rice__chopsticks img {
  max-width: 100%;
}
.rice__grounds {
  position: absolute;
  right: 2.5%;
  top: 120px;
}
.rice__animate {
  position: absolute;
  left: 67%;
  top: 50%;
}
.rice__animate-inner {
  width: 100%;
  height: 100%;
  position: relative;
}
@media screen and (max-width: 1400px) {
  .rice-falling {
    right: 260px;
    top: 230px;
  }
  .rice__chopsticks {
    position: absolute;
    top: 170px;
    right: 48%;
    width: 600px;
  }
  .rice__heap {
    width: 103px;
    left: 52%;
  }
  .rice__heap-wrapper {
    width: 800px;
    left: 32%;
  }
  .rice__grounds {
    right: 0;
    width: 290px;
  }
  .rice__animate {
    left: 69%;
    top: 38%;
  }
}
@media screen and (max-width: 1100px) {
  .rice {
    height: 300px;
  }
  .rice-falling {
    right: 190px;
    top: 140px;
    width: 62px;
  }
  .rice__chopsticks {
    top: 70px;
    left: 0;
    right: auto;
    width: 400px;
  }
  .rice__grounds {
    top: 50px;
    width: 200px;
  }
  .rice__animate {
    left: 69%;
    top: 30%;
  }
}
@media screen and (max-width: 991px) {
  .rice__animate {
    left: 65%;
    top: 20%;
  }
}
@media screen and (max-width: 767px) {
  .rice-falling {
    display: none;
  }
  .rice__chopsticks {
    top: 10px;
    width: 90%;
    left: 20px;
  }
  .rice__animate {
    left: 65%;
    top: 20%;
  }
  .rice__grounds {
    display: none;
  }
  .rice__animate {
    display: none;
  }
}
@media screen and (max-width: 500px) {
  .rice {
    height: 230px;
  }
}

@-webkit-keyframes rice {
  0% {
    transform: rotate(0);
  }
  20% {
    transform: rotate(-1deg);
  }
  40% {
    transform: rotate(0);
  }
}
@-webkit-keyframes falling {
  0% {
    transform: translate3D(-7.5%, -100%, 0);
  }
  100% {
    transform: translate3D(7.5%, 100%, 0);
  }
}
@keyframes falling {
  0% {
    transform: translate3D(-7.5%, -100%, 0);
  }
  100% {
    transform: translate3D(7.5%, 100%, 0);
  }
}


body {
    background: #0e1317;
	color: #fff;
}

.main {
  display: flex;
  flex-direction:column;
  align-items: center;
  min-height: 100vh;
  background-position: center;
  background-size:cover;
  background-repeat:no-repeat;
  background-attachment: fixed;
}

.about__button {
    margin-top: 15px;
    margin-bottom: 0px;
}

.komunikat {
    margin-top: 30px;
}

.button--order {
    cursor: pointer;
    border: 1px solid #C39975;
    padding: 7px;
    min-width: 100px;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: padding ease 300ms;
}
.button--order a {
    text-decoration: none;
    cursor: pointer;
    width: 100%;
    height: 100%;
    display: flex;
    text-transform: uppercase;
    align-items: center;
    justify-content: center;
    border: none;
    box-shadow: none;
    background-color: #222e3c;
    color: white;
    font-weight: 600;
    font-size: 17px;
    letter-spacing: 0.85px;
    font-family: Oswald, sans-serif;
}	

.button--order:hover {
    padding: 3px;
}

ul#mob-lang-switch {
    display: inherit;
	margin-top: 0px;
}

ul#mob-lang-switch .lang-item,
i.lang-item.lang-item-3.lang-item-en.lang-item-first {
    margin-right: 10px;
}

.plsfe-country-flag img{
width: 50px !important;
}

img[title="English"] {
    width: 50px !important;
    height: 30px !important;
}

.img-fluid {
    max-width: 100%;
    height: auto;
	margin-bottom: 20px;
}

.img-single-dishes--text.gold {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
    margin-top: 20px;
    text-align: center;
}