@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&family=Noto+Serif:wght@400;700&display=swap");
body {
  font-family: "DM Sans", sans-serif;
  margin: 0;
  padding: 75px 0 0;
  font-size: 14px;
  color: #302828;
}
@media (min-width: 768px) {
  body {
    font-size: 15px;
    padding-top: 136px;
  }
}
@media (min-width: 1200px) {
  body {
    padding-top: 200px;
    font-size: 16px;
  }
}

ul, li, ol, dl, dt, dd, form, p, img, video a, h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  list-style: none;
  outline: none;
  border: none;
  box-shadow: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Noto Serif", serif;
  font-weight: 700;
}

button:focus, video:focus, input:focus, textarea:focus, select:focus, select:focus-visible {
  outline: none !important;
  outline-width: 0;
  box-shadow: none;
  -webkit-appearance: none;
  -webkit-tap-highlight-color: transparent;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
}

::selection {
  background-color: #e6ac00;
  color: #ffffff;
}

:focus {
  outline: 0 !important;
}

* {
  box-sizing: border-box;
}

a, label, span, ul, input, textarea, button, div, li, ol, p {
  -webkit-tap-highlight-color: transparent;
  text-decoration: none;
}

button {
  cursor: pointer;
}

input, select, textarea, button {
  font-family: "DM Sans", sans-serif;
  -webkit-appearance: none;
  -moz-appearance: none;
  border-radius: 0;
}

input, textarea {
  font-size: 16px;
}
@media (min-width: 768px) {
  input, textarea {
    font-size: 14px;
  }
}

img, svg {
  display: block;
}

.OF-Hidden, .ofHidden {
  overflow: hidden;
}

.go-to-top {
  position: fixed;
  right: 15px;
  bottom: 15px;
  z-index: 21;
  background-color: #525252;
  border-radius: 3px;
  cursor: pointer;
  padding: 12px;
  transition: background-color 0.5s;
  display: none;
}
@media (min-width: 1200px) {
  .go-to-top:hover {
    background-color: #e6ac00;
  }
}
.go-to-top .iconSVG {
  width: 12px;
  height: 12px;
  fill: #ffffff;
}

.slick-slide > div {
  display: flex;
}

.slick-dots {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.slick-dots li {
  margin: 0 3px;
  height: 14px;
}
.slick-dots li button {
  border: 1px solid #e6ac00;
  border-radius: 50%;
  width: 14px;
  height: 14px;
  padding: 0;
  background-color: transparent;
  text-indent: -9999px;
  transition: background-color 0.5s, border-color 0.5s;
}
@media (min-width: 1200px) {
  .slick-dots li button:hover {
    background-color: #e6ac00;
  }
}
.slick-dots li.slick-active button {
  background-color: #e6ac00;
}

#date-picker-div {
  position: absolute;
  top: 46px;
  left: 0;
  width: 100%;
  z-index: 2;
}

.ui-datepicker {
  background-color: #ffffff;
  top: 0 !important;
  left: 0 !important;
  border-radius: 5px;
  border: 1px solid #525252;
  display: none;
  width: 100%;
}
.ui-datepicker .ui-datepicker-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 10px;
  border-bottom: 1px solid #525252;
}
@media (min-width: 1200px) {
  .ui-datepicker .ui-datepicker-header {
    padding: 15px;
  }
}
.ui-datepicker .ui-datepicker-header .ui-corner-all {
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
}
.ui-datepicker .ui-datepicker-header .ui-datepicker-next {
  order: 2;
}
.ui-datepicker .ui-datepicker-header .ui-datepicker-title {
  order: 1;
  font-weight: 500;
  font-size: 14px;
}
.ui-datepicker .ui-datepicker-calendar {
  width: 100%;
  padding: 10px 10px 20px;
  display: block;
}
.ui-datepicker .ui-datepicker-calendar thead {
  width: 100%;
  display: block;
}
.ui-datepicker .ui-datepicker-calendar thead tr {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.ui-datepicker .ui-datepicker-calendar thead tr th {
  text-align: center;
  padding: 10px 0;
  width: 14.285%;
  font-size: 13px;
  font-weight: 500;
}
.ui-datepicker .ui-datepicker-calendar tbody {
  width: 100%;
  display: block;
}
.ui-datepicker .ui-datepicker-calendar tbody tr {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.ui-datepicker .ui-datepicker-calendar tbody tr td {
  text-align: center;
  width: 14.285%;
  display: flex;
  justify-content: center;
  font-size: 12px;
  padding: 2px 0;
}
@media (min-width: 1200px) {
  .ui-datepicker .ui-datepicker-calendar tbody tr td {
    font-size: 13px;
  }
}
@media (min-width: 1200px) {
  .ui-datepicker .ui-datepicker-calendar tbody tr td a:hover {
    background-color: #dde4e6;
  }
}
.ui-datepicker .ui-datepicker-calendar tbody tr td span, .ui-datepicker .ui-datepicker-calendar tbody tr td a {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: #151515;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  transition: background-color 0.5s;
}
@media (min-width: 1200px) {
  .ui-datepicker .ui-datepicker-calendar tbody tr td span, .ui-datepicker .ui-datepicker-calendar tbody tr td a {
    width: 32px;
    height: 32px;
  }
}
.ui-datepicker .ui-datepicker-calendar tbody tr td span.ui-state-active, .ui-datepicker .ui-datepicker-calendar tbody tr td a.ui-state-active {
  background-color: #6ab04c;
  color: #ffffff;
}
.ui-datepicker .ui-datepicker-calendar tbody tr td.ui-state-disabled {
  opacity: 0.5;
}
.ui-datepicker .ui-datepicker-calendar tbody tr td.ui-datepicker-today {
  opacity: 1;
}
.ui-datepicker .ui-datepicker-calendar tbody tr td.ui-datepicker-today span {
  background-color: #dde4e6;
  font-weight: 700;
  color: #302828;
}
.ui-datepicker .ui-datepicker-calendar tbody tr td.ui-datepicker-other-month {
  opacity: 0.3;
  font-size: 12px;
}

.container {
  width: 100%;
  max-width: 560px;
  padding: 0 15px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .container {
    max-width: 730px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 980px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1150px;
  }
}
@media (min-width: 1400px) {
  .container {
    max-width: 1330px;
  }
}

.twoColLayout {
  padding-bottom: 60px;
}
@media (min-width: 1200px) {
  .twoColLayout {
    padding-bottom: 50px;
  }
}
@media (min-width: 992px) {
  .twoColLayout .container {
    display: flex;
    flex-wrap: wrap;
  }
}
.twoColLayout--left {
  width: 100%;
  padding-bottom: 40px;
}
@media (min-width: 992px) {
  .twoColLayout--left {
    width: calc(100% - 400px);
    padding-right: 40px;
  }
}
@media (min-width: 1200px) {
  .twoColLayout--left {
    width: calc(100% - 410px);
    padding-right: 50px;
    padding: 0 50px 50px 0;
  }
}
.twoColLayout--right {
  width: 100%;
  max-width: 450px;
  margin: 0 auto;
}
@media (min-width: 992px) {
  .twoColLayout--right {
    max-width: 360px;
    margin: 0;
    padding-bottom: 50px;
  }
}

.button-1 {
  height: 45px;
  border-radius: 5px;
  background-color: #e6ac00;
  color: #ffffff;
  padding: 0 25px;
  display: flex;
  font-weight: 500;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.25s, color 0.25s;
}
@media (min-width: 768px) {
  .button-1 {
    height: 50px;
  }
}
@media (min-width: 1200px) {
  .button-1 {
    height: 55px;
    padding: 0 30px;
  }
}
.button-1:after {
  content: "";
  position: relative;
  left: 0;
  width: 7px;
  height: 7px;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  transform: rotate(45deg);
  margin-left: 5px;
  margin-top: 2px;
  transition: left 0.25s;
}
@media (min-width: 1200px) {
  .button-1:hover {
    background-color: #e74c3c;
  }
}
@media (min-width: 1200px) {
  .button-1:hover:after {
    left: 3px;
  }
}

.button-2 {
  height: 45px;
  border-radius: 999px;
  border: 1px solid #e74c3c;
  color: #e74c3c;
  padding: 0 25px;
  display: flex;
  font-weight: 500;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.25s, color 0.25s;
}
@media (min-width: 768px) {
  .button-2 {
    height: 50px;
  }
}
@media (min-width: 1200px) {
  .button-2 {
    height: 55px;
    padding: 0 30px;
  }
}
@media (min-width: 1200px) {
  .button-2:hover {
    background-color: #e74c3c;
    color: #ffffff;
  }
}

.formBlock {
  /* Chrome, Safari, Edge, Opera */
  /* Firefox */
}
.formBlock .formMessage .status-msg {
  margin-bottom: 20px;
  font-size: 13px;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .formBlock .formMessage .status-msg {
    margin-bottom: 25px;
    line-height: 1.6;
  }
}
@media (min-width: 1200px) {
  .formBlock .formMessage .status-msg {
    margin-bottom: 30px;
    font-size: 14px;
    line-height: 1.7;
  }
}
.formBlock .formMessage .status-msg.error {
  background-color: rgba(231, 76, 60, 0.15);
  color: #e74c3c;
  padding: 15px 20px;
}
.formBlock .formMessage .status-msg.error p {
  font-weight: 700;
  padding-bottom: 5px;
}
.formBlock .formMessage .status-msg.success {
  background-color: #6ab04c;
  padding: 15px 20px;
  color: #ffffff;
}
.formBlock .formMessage .status-msg.success span {
  display: block;
  font-weight: 500;
  font-size: 16px;
}
.formBlock .form {
  width: 100%;
  max-width: 650px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .formBlock--inner {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
  }
}
@media (min-width: 992px) {
  .formBlock--inner {
    margin: 0;
  }
}
@media (min-width: 1200px) {
  .formBlock--inner {
    margin: 0 -15px;
  }
}
.formBlock__list {
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .formBlock__list {
    width: 50%;
    padding: 0 15px;
  }
}
@media (min-width: 992px) {
  .formBlock__list {
    width: 100%;
    padding: 0;
  }
}
@media (min-width: 1200px) {
  .formBlock__list {
    width: 50%;
    padding: 0 15px;
  }
}
.formBlock__list.fullCol {
  width: 100%;
}
.formBlock__list--label {
  font-size: 14px;
  padding-bottom: 6px;
  font-weight: 500;
  font-family: "DM Sans", sans-serif;
  display: block;
  cursor: pointer;
}
.formBlock__list--label .required {
  color: #e74c3c;
  font-size: 11px;
}
.formBlock__list--field {
  position: relative;
}
.formBlock__list--field.number {
  position: relative;
  display: flex;
  flex-wrap: wrap;
}
.formBlock__list--field.number .number-button {
  width: 45px;
  height: 45px;
  background-color: #525252;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 28px;
  transition: background-color 0.5s;
  cursor: pointer;
}
.formBlock__list--field.number .number-button.plus {
  border-radius: 0 5px 5px 0;
}
.formBlock__list--field.number .number-button.minus {
  border-radius: 5px 0 0 5px;
}
@media (min-width: 1200px) {
  .formBlock__list--field.number .number-button:hover {
    background-color: #1a1a1a;
  }
}
.formBlock__list--field.number .formBlock__list--input {
  width: calc(100% - 90px);
  border-radius: 0;
  border-left: none;
  border-right: none;
}
.formBlock__list--input, .formBlock__list--textarea, .formBlock__list--select {
  width: 100%;
  border: none;
  border-radius: 5px;
  height: 45px;
  padding: 0 15px;
  border: 1px solid #302828;
  background-color: #ffffff;
}
.formBlock__list--input:focus, .formBlock__list--textarea:focus, .formBlock__list--select:focus {
  border-color: #ae201e;
}
.formBlock__list--textarea {
  height: 120px;
  resize: none;
  padding: 15px;
}
.formBlock__list--maxGuest {
  display: block;
  font-size: 11px;
  color: #e74c3c;
  padding-top: 5px;
  font-weight: 500;
}
.formBlock__list .g-recaptcha > div > div {
  display: flex;
}
.formBlock__list__dropDown {
  position: absolute;
  top: 46px;
  left: 0;
  z-index: 1;
  width: 100%;
  border-radius: 5px;
  border: 1px solid #525252;
  background-color: #ffffff;
  max-height: 200px;
  overflow-y: auto;
  display: none;
}
.formBlock__list__dropDown--item {
  padding: 10px 15px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.5s, color 0.5s;
}
@media (min-width: 768px) {
  .formBlock__list__dropDown--item {
    font-size: 13px;
  }
}
@media (min-width: 1200px) {
  .formBlock__list__dropDown--item:hover {
    background-color: #dde4e6;
  }
}
.formBlock__list__dropDown--item.active {
  background-color: #6ab04c;
  color: #ffffff;
}
.formBlock__list__dropDown--list.time {
  display: flex;
  flex-wrap: wrap;
  padding: 10px;
}
.formBlock__list__dropDown--list.time .formBlock__list__dropDown--item {
  width: 25%;
  padding: 7px 12px;
  text-align: center;
}
.formBlock__button {
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .formBlock__button {
    padding: 0 15px;
  }
}
@media (min-width: 992px) {
  .formBlock__button {
    padding: 0;
  }
}
@media (min-width: 1200px) {
  .formBlock__button {
    padding: 0 15px;
  }
}
.formBlock__button--btn {
  border: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  background-color: #6ab04c;
  padding: 15px 35px;
  border-radius: 5px;
  transition: background-color 0.5s;
  text-transform: uppercase;
}
@media (min-width: 1200px) {
  .formBlock__button--btn {
    font-size: 15px;
  }
}
@media (min-width: 1200px) {
  .formBlock__button--btn:hover {
    background-color: #e74c3c;
  }
}
.formBlock input::-webkit-outer-spin-button,
.formBlock input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.formBlock input[type=number] {
  -moz-appearance: textfield;
}

.book-a-table-page .formBlock {
  background-color: #fef4ef;
  padding: 30px 20px;
}
@media (min-width: 576px) {
  .book-a-table-page .formBlock {
    padding: 40px;
  }
}
@media (min-width: 1200px) {
  .book-a-table-page .formBlock {
    padding: 50px 30px;
  }
}
@media (min-width: 1400px) {
  .book-a-table-page .formBlock {
    padding: 60px 30px;
  }
}

.header {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 10;
  width: 100%;
  background-color: #ffffff;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
  transition: top 0.5s;
}
.header__top {
  display: none;
  height: 50px;
  transition: height 0.5s;
  overflow: hidden;
}
@media (min-width: 1200px) {
  .header__top {
    display: flex;
    align-items: center;
    background-color: #fdebe3;
  }
}
.header__top--container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__top__contact {
  display: flex;
}
.header__top__contact--item {
  display: flex;
  color: #ae201e;
}
@media (min-width: 768px) {
  .header__top__contact--item {
    font-size: 14px;
  }
}
.header__top__contact--item:not(:last-child) {
  margin-right: 20px;
}
.header__top__contact--item .iconSVG {
  width: 16px;
  height: 16px;
  fill: #ae201e;
  margin-right: 8px;
}
.header__top__social {
  display: flex;
  flex-wrap: wrap;
}
.header__top__social--link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background-color: #ffffff;
  border-radius: 50%;
  transition: background-color 0.5s;
}
.header__top__social--link:not(:last-child) {
  margin-right: 6px;
}
.header__top__social--link .iconSVG {
  width: 14px;
  height: 14px;
  fill: #e74c3c;
  transition: fill 0.5s;
}
@media (min-width: 1200px) {
  .header__top__social--link:hover {
    background-color: #ae201e;
  }
}
@media (min-width: 1200px) {
  .header__top__social--link:hover .iconSVG {
    fill: #ffffff;
  }
}
.header__mid {
  width: 100%;
  height: 75px;
  display: flex;
  align-items: center;
  padding: 0 15px;
}
@media (min-width: 768px) {
  .header__mid {
    height: auto;
    padding: 0;
  }
}
.header__mid--inner {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 768px) {
  .header__mid--inner {
    flex-direction: column;
    justify-content: center;
  }
}
@media (min-width: 768px) {
  .header__mid__logo {
    padding: 20px 0;
  }
}
.header__mid__logo--link {
  display: block;
}
.header__mid__logo--link img {
  width: 240px;
}
@media (min-width: 768px) {
  .header__mid__logo--link img {
    width: auto;
    height: 50px;
  }
}
@media (min-width: 1200px) {
  .header__mid__logo--link img {
    height: 60px;
  }
}
.header__mid--right {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
@media (min-width: 768px) {
  .header__mid--right {
    width: 100%;
    justify-content: center;
    background-color: #ae201e;
  }
}
@media (max-width: 767.98px) {
  .header__mid--navBlock {
    position: fixed;
    top: 75px;
    left: 100%;
    transition: left 0.5s;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: calc(100% - 65px);
    background-color: #302828;
  }
}
@media (min-width: 768px) {
  .header__mid--navBlock {
    top: 80px;
    display: block;
  }
}
.header__mid--navBlock.visible {
  left: 0;
}
.header__mid__nav {
  text-transform: uppercase;
}
@media (max-width: 767.98px) {
  .header__mid__nav {
    text-align: center;
    width: 100%;
    max-width: 300px;
  }
}
@media (min-width: 768px) {
  .header__mid__nav {
    display: flex;
  }
}
@media (max-width: 767.98px) {
  .header__mid__nav--item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
}
.header__mid__nav--item:last-child {
  border-bottom: none;
  margin: 0;
}
@media (min-width: 768px) {
  .header__mid__nav--item {
    margin-right: 28px;
  }
}
@media (min-width: 1200px) {
  .header__mid__nav--item {
    margin-right: 20px;
  }
}
.header__mid__nav--link {
  font-size: 14px;
  display: block;
  font-weight: 500;
  color: #ffffff;
  padding: 15px 0;
  transition: color 0.5s, background-color 0.5s;
}
@media (min-width: 768px) {
  .header__mid__nav--link {
    position: relative;
    padding: 14px 0;
  }
}
@media (min-width: 1200px) {
  .header__mid__nav--link {
    font-size: 15px;
    padding: 15px;
  }
}
@media (min-width: 1200px) {
  .header__mid__nav--link:hover {
    color: #e6ac00;
  }
}
.header__mid__nav--link.active {
  color: #e6ac00;
}
@media (min-width: 1200px) {
  .header__mid__nav--link.active {
    background-color: #e6ac00;
    color: #ffffff;
  }
}
.header__mid__lines {
  width: 24px;
  height: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 768px) {
  .header__mid__lines {
    display: none;
  }
}
.header__mid__lines--line {
  width: 24px;
  height: 2px;
  background-color: #ae201e;
}
.header__mid__lines--line.line1 {
  position: relative;
  top: 0;
  transition: transform 0.5s, top 0.5s 0.5s;
}
.header__mid__lines--line.line2 {
  opacity: 1;
  transition: opacity 0.5s;
  margin: 6px 0;
}
.header__mid__lines--line.line3 {
  position: relative;
  bottom: 0;
  transition: transform 0.5s, bottom 0.5s 0.5s;
}
.header__mid__lines.active .header__mid__lines--line.line1 {
  top: 8px;
  transform: rotate(-45deg);
  transition: top 0.5s, transform 0.5s 0.5s;
}
.header__mid__lines.active .header__mid__lines--line.line2 {
  opacity: 0;
}
.header__mid__lines.active .header__mid__lines--line.line3 {
  bottom: 8px;
  transform: rotate(45deg);
  transition: bottom 0.5s, transform 0.5s 0.5s;
}
@media (min-width: 1200px) {
  .header.scroll100 {
    top: -50px;
  }
}
@media (min-width: 1200px) {
  .header.scroll400 {
    top: -150px;
  }
}

.footer {
  background-color: #151515;
  padding: 60px 0;
}
@media (min-width: 768px) {
  .footer {
    padding: 80px 0;
  }
}
@media (min-width: 1200px) {
  .footer {
    padding: 100px 0;
  }
}
.footer__mainContact {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 768px) {
  .footer__mainContact {
    width: 50%;
    align-items: flex-start;
    padding-right: 50px;
  }
}
@media (min-width: 1200px) {
  .footer__mainContact {
    width: calc(100% - 760px);
  }
}
@media (min-width: 1400px) {
  .footer__mainContact {
    padding-right: 80px;
  }
}
.footer__mainContact--businessName {
  color: #ffffff;
  font-family: "Noto Serif", serif;
  font-size: 24px;
  font-weight: 500;
  text-transform: uppercase;
  padding-bottom: 15px;
  text-align: center;
}
@media (min-width: 768px) {
  .footer__mainContact--businessName {
    text-align: left;
  }
}
.footer__mainContact--text {
  color: #ffffff;
  opacity: 0.8;
  line-height: 1.7;
  text-align: center;
}
@media (min-width: 768px) {
  .footer__mainContact--text {
    text-align: left;
  }
}
.footer__mainContact__social {
  display: flex;
  justify-content: center;
  padding-top: 25px;
}
.footer__mainContact__social--link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.5s;
}
.footer__mainContact__social--link:not(:last-child) {
  margin-right: 10px;
}
@media (min-width: 1200px) {
  .footer__mainContact__social--link:hover {
    background-color: #e6ac00;
  }
}
@media (min-width: 1200px) {
  .footer__mainContact__social--link:hover .iconSVG {
    fill: #ffffff;
  }
}
.footer__mainContact__social--link .iconSVG {
  width: 18px;
  height: 18px;
  fill: #000000;
  transition: fill 0.5s;
}
@media (min-width: 768px) {
  .footer__contact {
    width: 50%;
  }
}
@media (min-width: 1200px) {
  .footer__contact {
    width: 410px;
    padding-right: 50px;
  }
}
.footer__contact__list {
  text-align: center;
  color: #ffffff;
  padding-top: 25px;
}
@media (min-width: 768px) {
  .footer__contact__list {
    padding-top: 0;
  }
}
.footer__contact__list--item {
  padding: 7px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  font-weight: 500;
}
@media (min-width: 768px) {
  .footer__contact__list--item {
    justify-content: flex-start;
  }
}
.footer__contact__list--item:last-child {
  padding-bottom: 0;
}
@media (min-width: 768px) {
  .footer__contact__list--item:last-child {
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .footer__contact__list--item:last-child {
    width: auto;
  }
}
.footer__contact__list--item .iconSVG {
  width: 15px;
  height: 15px;
  fill: #ffffff;
  margin-right: 10px;
}
@media (min-width: 1200px) {
  .footer__contact__list--item .iconSVG {
    width: 18px;
    height: 18px;
  }
}
.footer__contact__list--item .block {
  display: block;
  width: 100%;
}
@media (min-width: 768px) {
  .footer__contact__list--item .block {
    width: auto;
    padding-left: 25px;
  }
}
.footer__contact__list--item a {
  color: #ffffff;
  text-decoration: none;
}
.footer__contact .openingHrs {
  text-align: center;
  color: #ffffff;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .footer__contact .openingHrs {
    margin-bottom: 0;
    text-align: left;
  }
}
.footer__contact .openingHrs--title {
  padding: 25px 0 10px;
  font-size: 20px;
}
.footer__contact .openingHrs--text {
  line-height: 1.5;
}
.footer__contact .openingHrs--text .block {
  display: block;
}
@media (min-width: 768px) {
  .footer--threeCol {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
  }
}
.footer--fbBlock {
  background-color: #ffffff;
  padding: 10px;
  text-align: center;
}
@media (min-width: 768px) {
  .footer--fbBlock {
    width: 350px;
    margin-top: 50px;
  }
}
@media (min-width: 1200px) {
  .footer--fbBlock {
    width: 350px;
    margin-top: 0;
  }
}
.footer--lastRow {
  text-align: center;
  color: #ffffff;
  background-color: #000000;
  line-height: 1.5;
  padding: 25px 15px;
}
@media (min-width: 768px) {
  .footer--lastRow {
    font-size: 13px;
  }
}
.footer--lastRow a {
  color: #e6ac00;
  transition: color 0.5s;
}
@media (min-width: 1200px) {
  .footer--lastRow a:hover {
    color: #e74c3c;
  }
}

.rightSide__title {
  text-align: center;
  font-family: "Noto Serif", serif;
  font-size: 20px;
  font-weight: 500;
  color: #e6ac00;
  background-color: #e6ac00;
  color: #ffffff;
  padding: 10px 0;
  border-radius: 5px;
  margin-bottom: 10px;
}
.rightSide__list--item {
  margin-bottom: 20px;
}
@media (min-width: 1200px) {
  .rightSide__list--item {
    margin-bottom: 30px;
  }
}
.rightSide__list--item:last-child {
  margin-bottom: 0;
}
.rightSide__list--pic {
  height: 220px;
  background-position: center;
  background-size: cover;
  border-radius: 8px 8px 0 0;
}
@media (min-width: 576px) {
  .rightSide__list--pic {
    height: 280px;
  }
}
@media (min-width: 1200px) {
  .rightSide__list--pic {
    height: 220px;
  }
}
.rightSide__list--info {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  border-radius: 0 0 8px 8px;
  overflow: hidden;
  padding: 20px;
  background-color: #ffffff;
}
.rightSide__list--title {
  font-size: 18px;
  font-weight: 500;
  padding-bottom: 10px;
  color: #151515;
  text-align: center;
}
@media (min-width: 1200px) {
  .rightSide__list--title {
    font-size: 20px;
  }
}
.rightSide__list__btn {
  padding-top: 5px;
  display: flex;
  justify-content: center;
}
.rightSide__list__btn--link {
  padding: 10px 15px;
  border-radius: 5px;
  background-color: #e74c3c;
  color: #ffffff;
  font-weight: 500;
  transition: background-color 0.5s;
  margin: 0 5px;
}
@media (min-width: 1200px) {
  .rightSide__list__btn--link {
    padding: 12px 20px;
  }
}
@media (min-width: 1200px) {
  .rightSide__list__btn--link:hover {
    background-color: #e6ac00;
  }
}

.innerIntro {
  position: relative;
  background: url("../images/intro-banner.jpg") center bottom/cover;
  height: 260px;
  margin-bottom: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #ffffff;
  padding: 0 20px;
  text-align: center;
}
@media (min-width: 768px) {
  .innerIntro {
    margin-bottom: 80px;
  }
}
@media (min-width: 1200px) {
  .innerIntro {
    margin-bottom: 100px;
    height: 320px;
  }
}
@media (min-width: 1400px) {
  .innerIntro {
    height: 400px;
  }
}
.innerIntro:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.25);
}
.innerIntro--title {
  position: relative;
  font-size: 30px;
  padding-bottom: 20px;
  font-weight: 500;
}
@media (min-width: 768px) {
  .innerIntro--title {
    font-size: 40px;
  }
}
@media (min-width: 1200px) {
  .innerIntro--title {
    font-size: 50px;
  }
}
.innerIntro__breadcrumb {
  position: relative;
  font-size: 13px;
  font-weight: 500;
}
@media (min-width: 768px) {
  .innerIntro__breadcrumb {
    display: flex;
    justify-content: center;
    font-weight: 500;
  }
}
@media (min-width: 1200px) {
  .innerIntro__breadcrumb {
    font-size: 15px;
  }
}
.innerIntro__breadcrumb--center {
  border: 1px solid #e6ac00;
  padding: 10px 20px;
  border-radius: 999px;
}
@media (min-width: 1200px) {
  .innerIntro__breadcrumb--center {
    padding: 15px 40px;
  }
}
.innerIntro__breadcrumb--center a {
  color: #e6ac00;
  text-decoration: none;
}
@media (min-width: 1200px) {
  .innerIntro__breadcrumb--center a:hover {
    text-decoration: underline;
  }
}
@media (min-width: 1200px) {
  .innerIntro__breadcrumb--center .arrow {
    padding: 0 5px;
  }
}

.featuredMenu {
  margin-bottom: 60px;
}
@media (min-width: 768px) {
  .featuredMenu {
    margin-bottom: 80px;
  }
}
@media (min-width: 1200px) {
  .featuredMenu {
    margin-bottom: 100px;
  }
}
.featuredMenu--title {
  text-align: center;
  font-size: 28px;
  color: #ae201e;
  padding-bottom: 30px;
}
@media (min-width: 768px) {
  .featuredMenu--title {
    font-size: 32px;
    padding-bottom: 35px;
  }
}
@media (min-width: 1200px) {
  .featuredMenu--title {
    font-size: 36px;
  }
}
.featuredMenu__slider--pic {
  position: relative;
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 20px 20px;
}
@media (min-width: 576px) {
  .featuredMenu__slider--pic {
    height: 280px;
  }
}
@media (min-width: 768px) {
  .featuredMenu__slider--pic {
    height: 300px;
  }
}
@media (min-width: 1200px) {
  .featuredMenu__slider--pic {
    height: 350px;
  }
}
@media (min-width: 1400px) {
  .featuredMenu__slider--pic {
    height: 380px;
  }
}
.featuredMenu__slider--pic:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
}
.featuredMenu__slider--name {
  position: relative;
  font-weight: 500;
  font-family: "Noto Serif", serif;
  color: #ffffff;
  font-size: 24px;
  padding-bottom: 5px;
  text-align: center;
}
@media (min-width: 576px) {
  .featuredMenu__slider--name {
    font-size: 22px;
  }
}
@media (min-width: 768px) {
  .featuredMenu__slider--name {
    font-size: 20px;
  }
}
@media (min-width: 1200px) {
  .featuredMenu__slider--name {
    padding-bottom: 10px;
    font-size: 24px;
  }
}
.featuredMenu__slider--price {
  position: relative;
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  text-align: center;
}
.featuredMenu__slider--price:before {
  content: "£";
}
.featuredMenu__btns {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  padding-top: 40px;
}
@media (min-width: 576px) {
  .featuredMenu__btns {
    flex-direction: row;
  }
}
@media (min-width: 768px) {
  .featuredMenu__btns {
    padding-top: 50px;
  }
}
.featuredMenu__btns--link {
  margin: 0 5px;
}
@media (min-width: 768px) {
  .featuredMenu__btns--link {
    margin: 0 10px;
  }
}
.featuredMenu__btns--link:nth-child(2) {
  background-color: #e74c3c;
  margin-top: 10px;
}
@media (min-width: 576px) {
  .featuredMenu__btns--link:nth-child(2) {
    margin-top: 0;
  }
}
@media (min-width: 1200px) {
  .featuredMenu__btns--link:hover {
    background-color: #302828;
  }
}
.featuredMenu .slick-dots {
  padding-top: 20px;
}
.featuredMenu .slick-dots li button {
  border: none;
  background-color: #bdc3c7;
}
@media (min-width: 1200px) {
  .featuredMenu .slick-dots li button:hover {
    background-color: #e6ac00;
  }
}
.featuredMenu .slick-dots li.slick-active button {
  border: none;
  background-color: #ae201e;
}

.homeSlider {
  position: relative;
  margin-bottom: 60px;
}
@media (min-width: 768px) {
  .homeSlider {
    margin-bottom: 0;
  }
}
.homeSlider:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.25);
}
.homeSlider__businessInfo {
  position: absolute;
  text-align: center;
  top: 0;
  left: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}
.homeSlider__businessInfo--smTitle {
  font-size: 16px;
  padding-bottom: 5px;
  font-weight: 500;
}
@media (min-width: 768px) {
  .homeSlider__businessInfo--smTitle {
    font-size: 18px;
  }
}
@media (min-width: 1200px) {
  .homeSlider__businessInfo--smTitle {
    font-size: 20px;
  }
}
.homeSlider__businessInfo--name {
  font-size: 40px;
  font-weight: 500;
}
@media (min-width: 768px) {
  .homeSlider__businessInfo--name {
    font-size: 40px;
  }
}
@media (min-width: 1200px) {
  .homeSlider__businessInfo--name {
    font-size: 64px;
  }
}
.homeSlider__businessInfo--name .block {
  display: block;
  font-size: 21px;
}
@media (min-width: 1200px) {
  .homeSlider__businessInfo--name .block {
    font-size: 33px;
  }
}
.homeSlider__businessInfo__btn {
  display: flex;
  justify-content: center;
  padding-top: 30px;
}
.homeSlider__businessInfo__btn--link {
  margin: 0 5px;
  background-color: #ae201e;
  border: 1px solid #ffffff;
}
@media (min-width: 1200px) {
  .homeSlider__businessInfo__btn--link {
    margin: 0 10px;
  }
}
@media (min-width: 1200px) {
  .homeSlider__businessInfo__btn--link:hover {
    background-color: #e6ac00;
  }
}
.homeSlider__list--item {
  background-position: center;
  background-size: cover;
  height: 600px;
}
@media (min-width: 1200px) {
  .homeSlider__list--item {
    height: calc(100vh - 200px);
  }
}
.homeSlider__contact {
  color: #ffffff;
  padding-top: 30px;
  display: none;
}
@media (min-width: 1200px) {
  .homeSlider__contact {
    display: none;
  }
}
.homeSlider__contact--item {
  padding: 5px 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  font-weight: 500;
  text-shadow: 0 0 2px rgba(0, 0, 0, 0.3);
}
@media (min-width: 768px) {
  .homeSlider__contact--item {
    padding: 8px;
  }
}
.homeSlider__contact--item:last-child {
  padding-bottom: 0;
}
@media (min-width: 768px) {
  .homeSlider__contact--item:last-child {
    width: 100%;
  }
}
.homeSlider__contact--item .iconSVG {
  width: 15px;
  height: 15px;
  fill: #ffffff;
  margin-right: 10px;
}
.homeSlider__contact--item .block {
  display: block;
  width: 100%;
  padding-left: 25px;
}
@media (min-width: 768px) {
  .homeSlider__contact--item .block {
    width: auto;
    padding-left: 5px;
  }
}
.homeSlider__contact--item a {
  color: #ffffff;
  text-decoration: none;
}
.homeSlider .slick-dots {
  position: absolute;
  bottom: 50px;
  left: 0;
  z-index: 3;
  width: 100%;
}
@media (min-width: 768px) {
  .homeSlider .slick-dots {
    bottom: auto;
    top: 0;
    left: auto;
    right: 50px;
    width: auto;
    height: 100%;
    display: flex;
    flex-direction: column;
  }
}
@media (min-width: 768px) {
  .homeSlider .slick-dots li {
    margin: 0 0 5px;
  }
}
@media (min-width: 768px) {
  .homeSlider .slick-dots li:last-child {
    margin-bottom: 0;
  }
}
.homeSlider .slick-dots li button {
  border-color: #ffffff;
}
.homeSlider .slick-dots li.slick-active button {
  border-color: #ffffff;
  background-color: #ffffff;
}

.homeOptions {
  padding-bottom: 40px;
}
@media (min-width: 768px) {
  .homeOptions {
    position: relative;
    z-index: 3;
    margin-top: -50px;
    padding-bottom: 80px;
  }
}
@media (min-width: 1200px) {
  .homeOptions {
    margin-top: -100px;
    padding-bottom: 100px;
  }
}
@media (min-width: 768px) {
  .homeOptions--container {
    display: flex;
    justify-content: center;
  }
}
.homeOptions__link {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 150px 25px 25px;
  margin-bottom: 20px;
  background-position: center;
  background-size: cover;
  transition: transform 0.5s;
}
@media (min-width: 768px) {
  .homeOptions__link {
    margin-bottom: 0;
    border-radius: 0;
    width: 300px;
  }
}
@media (min-width: 1200px) {
  .homeOptions__link {
    margin-bottom: 0;
    border-radius: 0;
    width: 400px;
    padding: 150px 50px 40px;
  }
}
.homeOptions__link:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.65) 50%, rgba(0, 0, 0, 0) 100%);
}
.homeOptions__link--title {
  position: relative;
  color: #ffffff;
  font-weight: 400;
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid #ffffff;
  font-size: 28px;
}
@media (min-width: 1200px) {
  .homeOptions__link--title {
    font-size: 32px;
  }
}
.homeOptions__link--text {
  position: relative;
  color: #ffffff;
}
@media (min-width: 1200px) {
  .homeOptions__link--text {
    line-height: 1.5;
  }
}
.homeOptions__link:first-child {
  background-image: url("../images/order-online.jpg");
}
.homeOptions__link:nth-child(2) {
  background-image: url("../images/book-a-table.jpg");
}
@media (min-width: 1200px) {
  .homeOptions__link:hover {
    transform: translateY(-10px);
  }
}

.homeAbout {
  margin-bottom: 60px;
}
@media (min-width: 768px) {
  .homeAbout {
    margin-bottom: 80px;
  }
}
@media (min-width: 1200px) {
  .homeAbout {
    margin-bottom: 100px;
  }
}
.homeAbout__container {
  display: flex;
  flex-direction: column;
}
@media (min-width: 992px) {
  .homeAbout__container {
    flex-direction: row;
    align-items: center;
  }
}
.homeAbout__photos {
  order: 1;
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .homeAbout__photos {
    width: 50%;
    order: initial;
  }
}
.homeAbout__photos__item {
  width: 50%;
}
.homeAbout__photos__item--link {
  display: block;
  width: 100%;
  overflow: hidden;
}
.homeAbout__photos__item--pic {
  width: 100%;
  height: 150px;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s;
}
@media (min-width: 768px) {
  .homeAbout__photos__item--pic {
    height: 200px;
  }
}
@media (min-width: 992px) {
  .homeAbout__photos__item--pic {
    height: 230px;
  }
}
@media (min-width: 1200px) {
  .homeAbout__photos__item--pic:hover {
    transform: scale(1.1);
  }
}
.homeAbout__textBlock {
  padding-bottom: 30px;
}
@media (min-width: 992px) {
  .homeAbout__textBlock {
    width: 50%;
    padding: 0 0 0 50px;
  }
}
@media (min-width: 1200px) {
  .homeAbout__textBlock {
    padding-left: 80px;
  }
}
.homeAbout__textBlock--title {
  position: relative;
  font-size: 32px;
  font-weight: 700;
  padding-bottom: 10px;
  margin-bottom: 20px;
  color: #ae201e;
}
.homeAbout__textBlock--title:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 3px;
  background-color: #e6ac00;
}
.homeAbout__textBlock--text {
  line-height: 1.5;
  padding-bottom: 20px;
}
@media (min-width: 1200px) {
  .homeAbout__textBlock--text {
    line-height: 1.6;
  }
}
.homeAbout__textBlock__btn {
  display: flex;
}
@media (min-width: 1200px) {
  .homeAbout__textBlock__btn {
    padding-top: 20px;
  }
}

.homeBottom {
  padding-bottom: 1px;
}
@media (min-width: 576px) {
  .homeBottom {
    display: flex;
    flex-wrap: wrap;
  }
}
.homeBottom .subscription {
  position: relative;
  background: url("../images/subscription-bg.jpg") center/cover;
  background-color: #302828;
  display: flex;
  justify-content: center;
}
@media (min-width: 576px) {
  .homeBottom .subscription {
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .homeBottom .subscription {
    width: 50%;
  }
}
.homeBottom .subscription:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
}
.homeBottom .subscription__center {
  position: relative;
  width: 100%;
  max-width: 500px;
  padding: 80px 25px;
}
@media (min-width: 576px) {
  .homeBottom .subscription__center {
    padding: 80px 50px;
  }
}
@media (min-width: 768px) {
  .homeBottom .subscription__center {
    max-width: 650px;
  }
}
@media (min-width: 1200px) {
  .homeBottom .subscription__center {
    max-width: 750px;
    padding: 80px 50px;
  }
}
.homeBottom .subscription__center--title {
  color: #e6ac00;
  font-size: 18px;
  text-align: center;
  padding-bottom: 20px;
}
@media (min-width: 768px) {
  .homeBottom .subscription__center--title {
    font-size: 22px;
    padding-bottom: 25px;
  }
}
@media (min-width: 1200px) {
  .homeBottom .subscription__center--title {
    font-size: 28px;
    padding-bottom: 25px;
  }
}
@media (min-width: 768px) {
  .homeBottom .subscription__form--form {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
  }
}
.homeBottom .subscription__form--message .status-msg {
  color: #ffffff;
  padding: 15px;
  line-height: 1.4;
  margin-bottom: 20px;
}
.homeBottom .subscription__form--message .status-msg p {
  font-weight: 700;
  padding-bottom: 5px;
}
.homeBottom .subscription__form--message .status-msg.error {
  background-color: #e74c3c;
}
.homeBottom .subscription__form--message .status-msg.success {
  background-color: #6ab04c;
}
.homeBottom .subscription__form__list {
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .homeBottom .subscription__form__list {
    width: 50%;
    padding: 0 10px;
    margin-bottom: 20px;
  }
}
.homeBottom .subscription__form__list--label {
  color: #ffffff;
  display: block;
  padding-bottom: 5px;
  font-size: 13px;
}
@media (min-width: 1200px) {
  .homeBottom .subscription__form__list--label {
    padding-bottom: 8px;
    font-size: 14px;
  }
}
.homeBottom .subscription__form__list--input {
  background-color: #ffffff;
  padding: 10px 15px;
  width: 100%;
  border: none;
  border-radius: 5px;
}
@media (min-width: 1200px) {
  .homeBottom .subscription__form__list--input {
    padding: 15px;
    font-size: 15px;
  }
}
.homeBottom .subscription__form__list.fullCol {
  width: 100%;
}
@media (min-width: 768px) {
  .homeBottom .subscription__form__list.fullCol {
    display: flex;
    justify-content: center;
  }
}
.homeBottom .subscription__form__btn {
  display: flex;
}
@media (min-width: 768px) {
  .homeBottom .subscription__form__btn {
    padding: 0 10px;
    justify-content: center;
  }
}
.homeBottom .subscription__form__btn--btn {
  background-color: #e6ac00;
  color: #ffffff;
  border: none;
  padding: 10px 18px;
  border-radius: 5px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.5s;
}
@media (min-width: 1200px) {
  .homeBottom .subscription__form__btn--btn {
    padding: 15px 25px;
    font-size: 16px;
  }
}
@media (min-width: 1200px) {
  .homeBottom .subscription__form__btn--btn:hover {
    background-color: #6ab04c;
  }
}
.homeBottom .subscription__form__btn.fullCol {
  width: 100%;
}
.homeBottom__offers {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 50px 25px;
  text-align: center;
  color: #ffffff;
  background: url("../images/offers-bg.jpg") center/cover;
}
@media (min-width: 576px) {
  .homeBottom__offers {
    width: 50%;
  }
}
@media (min-width: 768px) {
  .homeBottom__offers {
    padding: 80px 40px;
  }
}
@media (min-width: 1200px) {
  .homeBottom__offers {
    width: 25%;
  }
}
.homeBottom__offers:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
}
.homeBottom__offers--title {
  position: relative;
  font-family: "Noto Serif", serif;
  font-weight: 700;
  font-size: 20px;
  padding-bottom: 12px;
}
@media (min-width: 1200px) {
  .homeBottom__offers--title {
    font-size: 24px;
  }
}
.homeBottom__offers--text {
  position: relative;
  font-size: 15px;
  line-height: 1.5;
}
@media (min-width: 1200px) {
  .homeBottom__offers--text {
    font-size: 18px;
  }
}
.homeBottom__offers__btn {
  position: relative;
  display: flex;
  justify-content: center;
  padding-top: 25px;
}

.aboutPage {
  text-align: center;
}
.aboutPage__topText {
  padding-bottom: 60px;
}
@media (min-width: 768px) {
  .aboutPage__topText {
    padding-bottom: 80px;
  }
}
@media (min-width: 1200px) {
  .aboutPage__topText {
    padding-bottom: 100px;
  }
}
.aboutPage__topText--subTitle {
  color: #e6ac00;
  font-size: 24px;
  padding-bottom: 20px;
  text-transform: uppercase;
}
@media (min-width: 1200px) {
  .aboutPage__topText--subTitle {
    font-size: 36px;
  }
}
.aboutPage__topText--text {
  line-height: 1.6;
  padding-bottom: 20px;
}
@media (min-width: 768px) {
  .aboutPage__topText--text {
    line-height: 1.7;
  }
}
@media (min-width: 1200px) {
  .aboutPage__topText--text {
    font-size: 18px;
  }
}
.aboutPage__topText--text.last {
  padding-bottom: 0;
}
.aboutPage .aboutPageMedia {
  text-align: center;
  margin-bottom: 60px;
}
@media (min-width: 768px) {
  .aboutPage .aboutPageMedia {
    margin-bottom: 80px;
  }
}
@media (min-width: 1200px) {
  .aboutPage .aboutPageMedia {
    margin-bottom: 100px;
  }
}
.aboutPage .aboutPageMedia__title {
  font-size: 24px;
  color: #ae201e;
  padding-bottom: 20px;
}
@media (min-width: 768px) {
  .aboutPage .aboutPageMedia__title {
    font-size: 28px;
    padding-bottom: 25px;
  }
}
@media (min-width: 1200px) {
  .aboutPage .aboutPageMedia__title {
    font-size: 32px;
    padding-bottom: 30px;
  }
}
.aboutPage .aboutPageMedia__list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  row-gap: 30px;
  width: 100%;
  max-width: 550px;
  margin: 0 auto;
}
@media (min-width: 1200px) {
  .aboutPage .aboutPageMedia__list {
    max-width: none;
    grid-template-columns: repeat(3, 1fr);
    gap: 0 20px;
  }
}
.aboutPage .aboutPageMedia__list--number {
  position: relative;
  z-index: 1;
  background-color: #fcdacb;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-family: "Noto Serif", serif;
}
@media (min-width: 1200px) {
  .aboutPage .aboutPageMedia__list--number {
    width: 64px;
    height: 64px;
    font-size: 32px;
  }
}
.aboutPage .aboutPageMedia__list__textBlock {
  background-color: #ecf0f1;
  padding: 40px 20px 20px;
  margin-top: -24px;
  font-size: 15px;
  line-height: 1.6;
}
@media (min-width: 1200px) {
  .aboutPage .aboutPageMedia__list__textBlock {
    margin-top: -32px;
    padding: 50px 30px 30px;
    height: calc(100% - 32px);
    font-size: 18px;
  }
}
.aboutPage .aboutPageMedia__list__textBlock--link {
  display: block;
  color: #000000;
  font-weight: 700;
}
.aboutPage .aboutPageMedia__list__textBlock--text {
  padding-top: 10px;
}
.aboutPage .charity {
  padding-bottom: 60px;
}
@media (min-width: 768px) {
  .aboutPage .charity {
    padding-bottom: 80px;
  }
}
@media (min-width: 1200px) {
  .aboutPage .charity {
    padding-bottom: 100px;
  }
}
.aboutPage .charity__topText {
  padding-bottom: 30px;
}
@media (min-width: 768px) {
  .aboutPage .charity__topText {
    padding-bottom: 40px;
  }
}
@media (min-width: 1200px) {
  .aboutPage .charity__topText {
    padding-bottom: 50px;
  }
}
.aboutPage .charity__topText--subTitle {
  color: #e6ac00;
  font-size: 24px;
  padding-bottom: 20px;
  text-transform: uppercase;
}
@media (min-width: 1200px) {
  .aboutPage .charity__topText--subTitle {
    font-size: 36px;
  }
}
.aboutPage .charity__topText--text {
  line-height: 1.6;
  padding-bottom: 20px;
}
@media (min-width: 768px) {
  .aboutPage .charity__topText--text {
    line-height: 1.7;
  }
}
@media (min-width: 1200px) {
  .aboutPage .charity__topText--text {
    font-size: 18px;
  }
}
.aboutPage .charity__topText--text.last {
  padding-bottom: 0;
}
.aboutPage .charity__gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}
@media (min-width: 768px) {
  .aboutPage .charity__gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1200px) {
  .aboutPage .charity__gallery {
    grid-template-columns: repeat(4, 1fr);
  }
}
.aboutPage .charity__gallery--item {
  height: 150px;
}
@media (min-width: 576px) {
  .aboutPage .charity__gallery--item {
    height: 180px;
  }
}
@media (min-width: 1200px) {
  .aboutPage .charity__gallery--item {
    height: 220px;
  }
}
.aboutPage .charity__gallery--item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.allergyIndex {
  padding: 0 13px;
  padding-bottom: 30px;
  margin-bottom: 50px;
  border-bottom: 1px solid #ecf0f1;
}
@media (min-width: 768px) {
  .allergyIndex--inner {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
}
@media (min-width: 576px) {
  .allergyIndex--block {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    padding-bottom: 20px;
  }
}
@media (min-width: 768px) {
  .allergyIndex--block {
    padding: 0 20px 20px;
  }
}
.allergyIndex--title {
  font-weight: 500;
  padding-bottom: 10px;
  text-align: center;
  text-decoration: underline;
}
@media (min-width: 992px) {
  .allergyIndex--title {
    padding: 0 15px 0 0;
    text-decoration: none;
  }
}
.allergyIndex__list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding-bottom: 5px;
}
@media (min-width: 576px) {
  .allergyIndex__list {
    padding-bottom: 0;
  }
}
.allergyIndex__list--item {
  padding: 0 10px 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 576px) {
  .allergyIndex__list--item {
    padding-bottom: 0;
  }
}
.allergyIndex__list--icon {
  height: 16px;
  margin-bottom: 5px;
}
.allergyIndex__list--name {
  font-size: 13px;
  font-weight: 500;
}
.allergyIndex--text {
  text-align: center;
  line-height: 1.7;
  font-size: 14px;
  width: 100%;
  max-width: 850px;
  margin: 0 auto;
}
@media (min-width: 576px) {
  .allergyIndex--text {
    padding-top: 10px;
  }
}

.menuList {
  padding-bottom: 60px;
}
@media (min-width: 768px) {
  .menuList {
    padding-bottom: 80px;
  }
}
@media (min-width: 1200px) {
  .menuList {
    padding-bottom: 100px;
  }
}
@media (min-width: 1200px) {
  .menuList__list--twoCol {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
.menuList__list--item {
  margin-bottom: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid #525252;
}
@media (min-width: 1200px) {
  .menuList__list--item {
    padding-bottom: 60px;
    margin-bottom: 60px;
  }
}
.menuList__list--item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
@media (min-width: 1200px) {
  .menuList__list--item:nth-child(2n+2) .menuList__list--pic {
    order: 1;
  }
}
.menuList__list__titleBlock {
  color: #e6ac00;
  padding-bottom: 20px;
}
@media (min-width: 768px) {
  .menuList__list__titleBlock {
    padding-bottom: 25px;
  }
}
@media (min-width: 1200px) {
  .menuList__list__titleBlock {
    padding-bottom: 30px;
  }
}
.menuList__list__titleBlock--mainTitle {
  font-size: 32px;
  font-weight: 500;
  font-family: "Noto Serif", serif;
  color: #e74c3c;
}
@media (min-width: 768px) {
  .menuList__list__titleBlock--mainTitle {
    font-size: 35px;
  }
}
@media (min-width: 1200px) {
  .menuList__list__titleBlock--mainTitle {
    font-size: 38px;
  }
}
.menuList__list__titleBlock--desc {
  color: #302828;
  padding-top: 5px;
}
.menuList__list--pic {
  height: 300px;
  background-position: center;
  background-size: cover;
  border-radius: 10px;
  margin-bottom: 15px;
  width: 100%;
  max-width: 500px;
}
@media (min-width: 576px) {
  .menuList__list--pic {
    margin-bottom: 25px;
  }
}
@media (min-width: 768px) {
  .menuList__list--pic {
    height: 380px;
  }
}
@media (min-width: 992px) {
  .menuList__list--pic {
    height: 450px;
  }
}
@media (min-width: 1200px) {
  .menuList__list--pic {
    position: sticky;
    top: 75px;
    height: auto;
    min-height: 300px;
    max-height: 450px;
    width: 350px;
    margin-bottom: 0;
  }
}
@media (min-width: 1200px) {
  .menuList__list__right {
    width: calc(100% - 380px);
  }
}
@media (min-width: 1400px) {
  .menuList__list__right {
    width: calc(100% - 400px);
  }
}
.menuList__list__right--item {
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .menuList__list__right--item {
    margin-bottom: 35px;
  }
}
@media (min-width: 1200px) {
  .menuList__list__right--item {
    margin-bottom: 40px;
  }
}
.menuList__list__right--item:last-child {
  margin-bottom: 0;
}
.menuList__list__right--catTitle {
  color: #e6ac00;
  font-family: "Noto Serif", serif;
  font-size: 20px;
  font-weight: 500;
}
@media (min-width: 768px) {
  .menuList__list__right--catTitle {
    font-size: 22px;
  }
}
@media (min-width: 1200px) {
  .menuList__list__right--catTitle {
    font-size: 24px;
  }
}
.menuList__list__right--catDesc {
  line-height: 1.5;
  padding-top: 10px;
}
.menuList__list__right--catDesc.red {
  color: #e74c3c;
}
.menuList .menuItem {
  padding-top: 20px;
}
@media (min-width: 768px) {
  .menuList .menuItem {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
  }
}
@media (min-width: 992px) {
  .menuList .menuItem {
    padding-top: 25px;
  }
}
.menuList .menuItem__item {
  padding-bottom: 12px;
  margin-bottom: 12px;
  border-bottom: 1px solid #ecf0f1;
}
@media (min-width: 768px) {
  .menuList .menuItem__item {
    width: calc(50% - 20px);
  }
}
@media (min-width: 1400px) {
  .menuList .menuItem__item {
    width: calc(50% - 30px);
  }
}
@media (min-width: 768px) {
  .menuList .menuItem__item:nth-last-child(2) {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
  }
}
.menuList .menuItem__item:last-child {
  margin-bottom: 0;
  border-bottom: none;
  padding-bottom: 0;
}
.menuList .menuItem__item__title {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
}
.menuList .menuItem__item__title--left {
  display: flex;
  flex-direction: column;
  width: calc(100% - 75px);
}
@media (min-width: 576px) {
  .menuList .menuItem__item__title--left {
    flex-direction: row;
    align-items: center;
  }
}
.menuList .menuItem__item__title--left .titleText {
  font-weight: 500;
  font-size: 15px;
}
.menuList .menuItem__item__title--left .allergies {
  display: flex;
  flex-wrap: wrap;
  padding-top: 8px;
}
@media (min-width: 576px) {
  .menuList .menuItem__item__title--left .allergies {
    padding: 0 0 0 15px;
  }
}
.menuList .menuItem__item__title--left .allergies img {
  height: 16px;
  margin-right: 10px;
}
.menuList .menuItem__item__title--left .allergies img:last-child {
  margin-right: 0;
}
.menuList .menuItem__item__title .price {
  color: #e74c3c;
  font-weight: 500;
}
@media (min-width: 768px) {
  .menuList .menuItem__item__title .price {
    font-size: 14px;
  }
}
.menuList .menuItem__item__title .price:before {
  content: "£";
}
.menuList .menuItem__item--desc {
  line-height: 1.6;
  padding-top: 10px;
  font-size: 13px;
  color: #525252;
}
@media (min-width: 576px) {
  .menuList .menuItem__item--desc {
    padding-top: 8px;
  }
}
@media (min-width: 768px) {
  .menuList .menuItem__item--desc {
    font-size: 13px;
  }
}

.photoGallery {
  padding-bottom: 60px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .photoGallery {
    padding-bottom: 80px;
  }
}
@media (min-width: 1200px) {
  .photoGallery {
    padding-bottom: 100px;
  }
}
@media (max-width: 575.98px) {
  .photoGallery .container {
    padding: 0;
  }
}
.photoGallery__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}
@media (min-width: 768px) {
  .photoGallery__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1200px) {
  .photoGallery__list {
    grid-template-columns: repeat(4, 1fr);
  }
}
.photoGallery__list--inner {
  width: 100%;
  height: 150px;
  overflow: hidden;
}
@media (min-width: 992px) {
  .photoGallery__list--inner {
    height: 200px;
  }
}
@media (min-width: 1200px) {
  .photoGallery__list--inner {
    height: 250px;
  }
}
.photoGallery__list--link {
  display: block;
  height: 100%;
  background-position: center;
  background-size: cover;
  transition: transform 0.5s;
}
@media (min-width: 1200px) {
  .photoGallery__list--link:hover {
    transform: scale(1.1);
  }
}

.textPage .pic-banner {
  width: 100%;
  height: 250px;
  background-position: center;
  background-size: cover;
  margin: 5px 0 20px;
}
@media (min-width: 768px) {
  .textPage .pic-banner {
    height: 280px;
  }
}
@media (min-width: 1200px) {
  .textPage .pic-banner {
    height: 350px;
  }
}
.textPage h2, .textPage h3, .textPage h4, .textPage h5 {
  font-size: 24px;
  font-weight: 500;
  color: #000000;
  padding-bottom: 10px;
}
@media (min-width: 768px) {
  .textPage h2, .textPage h3, .textPage h4, .textPage h5 {
    font-size: 28px;
    padding-bottom: 12px;
  }
}
@media (min-width: 1200px) {
  .textPage h2, .textPage h3, .textPage h4, .textPage h5 {
    font-size: 32px;
    padding-bottom: 15px;
  }
}
.textPage h3 {
  font-size: 22px;
  padding: 10px 0;
}
@media (min-width: 768px) {
  .textPage h3 {
    font-size: 25px;
  }
}
@media (min-width: 1200px) {
  .textPage h3 {
    font-size: 28px;
  }
}
.textPage h4 {
  font-size: 20px;
  padding: 10px 0;
}
@media (min-width: 768px) {
  .textPage h4 {
    font-size: 22px;
  }
}
@media (min-width: 1200px) {
  .textPage h4 {
    font-size: 24px;
  }
}
.textPage h5 {
  font-size: 18px;
  padding: 10px 0;
}
@media (min-width: 768px) {
  .textPage h5 {
    font-size: 19px;
  }
}
@media (min-width: 1200px) {
  .textPage h5 {
    font-size: 20px;
  }
}
.textPage p {
  line-height: 1.8;
  padding-bottom: 15px;
}
.textPage p a {
  color: #e74c3c;
}
@media (min-width: 1200px) {
  .textPage p a:hover {
    text-decoration: underline;
  }
}
.textPage ul, .textPage ol {
  padding-bottom: 10px;
  margin-left: 20px;
}
.textPage ul li, .textPage ol li {
  list-style: disc;
  line-height: 1.7;
  padding-bottom: 8px;
}
.textPage ul li a, .textPage ol li a {
  color: #e74c3c;
}
@media (min-width: 1200px) {
  .textPage ul li a:hover, .textPage ol li a:hover {
    text-decoration: underline;
  }
}
.textPage ul ol, .textPage ul ul, .textPage ol ol, .textPage ol ul {
  padding: 10px 0 0 0;
  margin-left: 20px;
}
.textPage ul ol li:last-child, .textPage ul ul li:last-child, .textPage ol ol li:last-child, .textPage ol ul li:last-child {
  padding-bottom: 0;
}
.textPage ul ol li, .textPage ol ol li {
  list-style: decimal;
}
.textPage ol > li {
  list-style: decimal;
}

.contactPage {
  padding-bottom: 10px;
}
@media (min-width: 768px) {
  .contactPage {
    padding-bottom: 30px;
  }
}
@media (min-width: 1200px) {
  .contactPage {
    padding-bottom: 100px;
  }
}
@media (min-width: 992px) {
  .contactPage .container {
    display: flex;
    flex-wrap: wrap;
  }
}
.contactPage--title {
  color: #151515;
  font-size: 24px;
  font-family: "Noto Serif", serif;
  padding-bottom: 20px;
  text-align: center;
  font-weight: 700;
}
@media (min-width: 1200px) {
  .contactPage--title {
    padding-bottom: 25px;
  }
}
.contactPage--left, .contactPage--right {
  background-color: #fef4ef;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 50px;
}
@media (min-width: 576px) {
  .contactPage--left, .contactPage--right {
    padding: 40px;
  }
}
@media (min-width: 992px) {
  .contactPage--left, .contactPage--right {
    padding: 40px 30px;
    margin-bottom: 0;
  }
}
@media (min-width: 992px) {
  .contactPage--left {
    width: 350px;
    margin-right: 30px;
  }
}
@media (min-width: 1200px) {
  .contactPage--left {
    width: 400px;
    margin-right: 50px;
  }
}
.contactPage--left .contactInfo {
  display: flex;
  flex-direction: column;
}
.contactPage--left .contactInfo__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 15px;
  background-color: #ffffff;
  padding: 20px 15px;
  border-radius: 5px;
}
@media (min-width: 1200px) {
  .contactPage--left .contactInfo__item {
    padding: 30px 15px;
  }
}
.contactPage--left .contactInfo__item:last-child {
  margin-bottom: 0;
}
.contactPage--left .contactInfo__item--icon {
  width: 44px;
  height: 44px;
  background-color: #ae201e;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 15px;
}
@media (min-width: 1200px) {
  .contactPage--left .contactInfo__item--icon {
    width: 54px;
    height: 54px;
  }
}
.contactPage--left .contactInfo__item--icon .iconSVG {
  width: 20px;
  height: 20px;
  fill: #ffffff;
}
.contactPage--left .contactInfo__item--text {
  text-align: center;
  font-weight: 500;
}
.contactPage--left .contactInfo__item--text .block {
  display: block;
}
.contactPage--left .contactInfo__item--text a {
  color: #151515;
  text-decoration: none;
}
@media (min-width: 992px) {
  .contactPage--right {
    width: calc(100% - 380px);
  }
}
@media (min-width: 992px) {
  .contactPage--right {
    width: calc(100% - 450px);
  }
}

.contactMap {
  padding-bottom: 1px;
}
.contactMap--frame {
  display: block;
}

/*# sourceMappingURL=style.css.map */
