:root {
    --font-family: 'Inter', sans-serif;
    --second-family: 'Source Serif Pro', sans-serif;
    --third-family: 'Open Sans', sans-serif;
    --font3: 'Roboto', sans-serif;
    --font4: 'Comforter Brush', sans-serif;

    --text-color-gray: #363636;
    --gold: #d4c294;
    --gold-bg: #fcf3db;
    --transition: 0.15s ease-in-out;
}

body {
    color: var(--text-color-gray);
    overflow-x: hidden;
}

.container {
    min-width: 360px;
    max-width: 1360px;
    padding: 0 30px;
    margin: 0 auto;
    position: relative;
}

.section-wrapper {
    padding: 50px 0;
}

.button {
    display: inline-block;
    cursor: pointer;
    font-family: var(--second-family);
    font-size: 18px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    text-align: center;
    color: var(--text-color-gray);
}

.button--white {
    outline: 1px solid var(--gold);
    background-color: #fff;
    transition: background-color var(--transition), font-weight var(--transition),
    outline var(--transition);
}

.button--white:hover {
    font-weight: 600;
    background-color: var(--gold-bg);
    outline: 2px solid var(--gold);
}

.button--white:focus {
    outline: 1px solid var(--gold);
}

.button--gold {
    background-color: var(--gold) !important;
    outline: 1px solid #fff;
    transition: background-color var(--transition), font-weight var(--transition),
    outline var(--transition);
}

.button--gold:hover {
    font-weight: 600;
    background-color: var(--gold-bg);
    outline: 2px solid #fff;
}

.button--black {
    color: #fff;
    background: rgba(0, 0, 0, 0.77);
    outline: 1px solid var(--gold);
    transition: background-color var(--transition), font-weight var(--transition),
    outline var(--transition);
}

.button--black:hover {
    font-weight: 600;
    background-color: #000;
    outline: 2px solid var(--gold);
}

.button--black:focus {
    outline: 1px solid var(--gold);
}

.section-title {
    font-family: var(--second-family);
    font-size: 48px;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.buttons-container {
    display: flex;
    justify-content: center;
}

.arrow-buttons {
    display: flex;
    align-items: center;
    gap: 70px;
}

.services__swiper .arrow-buttons {
    display: flex;
    align-items: center;
    gap: 70px;
    position: absolute;
    bottom: 25px;
    left: 51px;
    z-index: 1;
    width: fit-content;
}

.arrow-button svg {
    fill: var(--gold);
    transition: fill var(--transition);
}

.arrow-button svg:hover {
    fill: var(--gold-bg);
}

.arrow-button--inactive {
    opacity: 0.5;
}

.arrow-button--inactive:hover svg {
    fill: var(--gold);
    cursor: default;
}

/* header */

.header {
    position: relative;
    background-color: #fff;
    z-index: 2000;
    top: 0;
    padding: 24px 0 29px;
    transition: transform 0.3s ease-in-out;
}

.header.hidden {
    transform: translateY(-100%);
}

.services__link {
    display: flex;
    align-items: center;
    gap: 4px;
}

.header__top {
    display: flex;
    justify-content: center;
    gap: 70px;
    padding-bottom: 23px;
}

.header__top-inner {
    display: flex;
    gap: 16px;
}

.header__top-img {
    display: block;
    width: 22px;
    height: 22px;
    background-repeat: no-repeat;
    background-size: contain;
}

.header__top-text {
    font-family: var(--font-family);
    font-size: 18px;
    text-align: center;
}

.nav {
    padding-top: 19px;
    position: relative;
    display: grid;
    gap: 60px;
    grid-template-columns: 1fr 152px 1fr;
}

.nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--gold);
}

.nav__section {
    width: 100%;
    display: flex;
    /* gap: 93px; */
    justify-content: space-between;
    align-items: center;
}

.nav__section--left {
    grid-column: 1 /2;
}

.nav__section--center {
	grid-column: 2 / 3;
    justify-content: center;
    position: relative;
    font-family: var(--second-family);
    font-size: 21px;
    line-height: 100%;
    text-transform: uppercase;
    text-align: center;
    transition: color var(--transition);
}

.nav__section--center img{
    height: 50px;
}

.nav__section--right {
    /* justify-content: end; */
    grid-column: 3 / 3;
}

.nav__item {
    position: relative;
    font-family: var(--font-family);
    font-size: 18px;
    line-height: 100%;
    text-transform: uppercase;
    text-align: center;
    transition: color var(--transition);
}

.nav__item:hover {
    color: var(--gold);
}

.nav__item--lang {
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    gap: 4px;
}

.dropdown__menu--lang {
    display: none;
    position: absolute;
    padding-top: 20px;
    top: 100%;
    width: 68px;
    left: 0;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.25);
    background: #fff;
    z-index: 100;
}

.lang-item a {
    text-align: left;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 20px;
    line-height: 171%;
    text-transform: uppercase;
    color: #999 !important;
    padding: 10px 13px;
    display: block;
    transition: color var(--transition);
    border-bottom: 1px solid #999;
}

.lang-item a:hover {
    color: var(--text-color-gray) !important;
}

.dropdown__item--lang {
    text-align: left;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 20px;
    line-height: 171%;
    text-transform: uppercase;
    color: #999 !important;
    padding: 10px 13px;
    display: block;
    transition: color var(--transition);
    border-bottom: 1px solid #999;
}

.dropdown__item--lang:hover {
    color: var(--text-color-gray) !important;
}

.nav__item--lang.dropdown:hover .dropdown__menu--lang {
    display: block;
}

.nav__item--lang__arrow {
    fill: var(--text-color-gray);
    transition: fill var(--transition);
}

.nav__item:hover .nav__item--lang__arrow {
    fill: var(--gold);
}

.dropdown__menu {
    display: none;
    position: absolute;
    padding-top: 20px;
    top: 100%;
    width: 257px;
    left: 0;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.25);
    background: #fff;
    z-index: 100;
}

.dropdown__item {
    text-align: left;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 20px;
    line-height: 171%;
    text-transform: uppercase;
    color: #999 !important;
    padding: 10px 20px;
    display: block;
    transition: color var(--transition);
    border-bottom: 1px solid #999;
}

.dropdown__item:hover {
    color: var(--text-color-gray) !important;
}

.nav__item.dropdown:hover .dropdown__menu {
    display: block;
}

.button--nav {
    padding: 14px 20px;
}

.nav__cart {
    width: 32px;
    position: relative;
}

.nav__cart svg {
    width: 32px;
    height: 27px;
}

.cart__index {
    display: none;
    position: absolute;
    top: -5px;
    right: -9px;
    border-radius: 100%;
    background-color: var(--gold);
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 12px;
    line-height: 100%;
    text-align: center;
    color: #fff;
}

/* footer */

.footer {
    background-color: var(--text-color-gray);
    padding: 50px 0 60px 0;
    color: #fff;
    font-family: var(--font-family);
}

.footer__wrapper {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin: 0 auto;
    min-width: 360px;
    max-width: 1360px;
    padding: 0 30px;
}

.footer__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer__logo {
    font-family: var(--second-family);
    font-size: 28px;
    line-height: 100%;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    transition: color var(--transition);
}

.footer__logo svg {
    height: 100px;
}

.button--footer {
    padding: 20px 40px;
}

.footer__middle {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer__middle .footer__contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
    cursor: pointer;
    font-family: var(--font-family);
    font-size: 18px;
}

.footer__middle .footer__contact .footer__title-contact {
    margin-bottom: 10px;
    font-size: 20px;
    text-transform: uppercase;
}

.footer__links {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.footer__link {
    cursor: pointer;
    font-family: var(--font-family);
    font-size: 20px;
    text-transform: uppercase;
}

.footer__bottom {
    position: relative;
    padding-top: 60px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    gap: 40px;
}

.footer__bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--gold);
}

.copyright {
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    opacity: 0.8;
}

.webstork {
    display: flex;
    align-items: center;
}

.social {
    display: flex;
    gap: 30px;
    justify-content: flex-end;
}

.social a {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* gallery */

.gallery__top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 51px;
}

.section-title--gallery {
    margin-bottom: 0;
}

.button--gallery {
    padding: 18px 66px;
}

.gallery-slider {
    line-height: 0;
    display: flex;
    gap: 95px;
}

.gallery__img-main {
    position: relative;
}

.gallery__img-main .gallery__img--big__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100% - 30px);
    background: linear-gradient(rgba(0, 0, 0, 0.43), rgba(0, 0, 0, 0.43));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery__img-main:hover .gallery__img--big__overlay {
    opacity: 1;
}

.gallery__img-main .gallery__img--big__overlay .button--gallery {
    position: unset;
    margin: 0;
    line-height: 1;
}

.gallery__img-main .gallery__img--big {
    margin-bottom: 0;
}

.gallery__img-main .gallery__title {
    display: block;
    margin: 10px 0 30px;
    text-align: center;
    font-family: var(--second-family);
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #151515;
}

.gallery__img--big {
    width: 590px;
    height: 590px;
    box-shadow: 3px 4px 7px 0 rgba(0, 0, 0, 0.2);
    object-fit: cover;
    margin-bottom: 30px;
}

.gallery-slider__right {
    display: grid;
    grid-template-columns: repeat(3, 165px);
    grid-template-rows: repeat(3, 165px);
    column-gap: 62px;
    row-gap: 48px;
}

.gallery-slider__right li {
    position: relative;
    z-index: 1;
}

.gallery__img--small {
    cursor: pointer;
    height: 100%;
    width: 100%;
    display: block;
    box-shadow: 1px 2px 8px 0 rgba(0, 0, 0, 0.2);
    object-fit: cover;
}

.fade-out {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.fade-in {
    opacity: 1;
    transition: opacity 0.3s ease;
}

.gallery-slider__right li::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 5px solid var(--gold);
    opacity: 0;
    transition: opacity var(--transition);
    z-index: -1;
}

.gallery-slider__right li:hover::before {
    opacity: 1;
}

.gallery__img--active {
    outline: 5px solid var(--gold);
    /* transition: all var(--transition); */
}

/* corners */

.img-corner {
    position: absolute;
    border-right: 1px solid #d4c294;
    border-top: 1px solid #d4c294;
    width: 10px;
    height: 10px;
    z-index: 3;
}

.img-corner--top-right {
    top: 15px;
    right: 15px;
}

.img-corner--top-left {
    top: 15px;
    left: 15px;
    transform: rotate(270deg);
}

.img-corner--bottom-left {
    bottom: 15px;
    left: 15px;
    transform: rotate(180deg);
}

.img-corner--bottom-right {
    bottom: 15px;
    right: 15px;
    transform: rotate(90deg);
}

.hero__wrapper--common {
    margin-bottom: 50px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    right: 0;
    width: 100vw;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero__title--common {
    font-family: var(--second-family);
    font-weight: 600;
    font-size: 96px;
    text-transform: uppercase;
    text-align: center;
    color: #fff;
    padding: 135px 0;
    margin: 0 auto;
}

/* reviews */

.reviews__slide {
    display: flex;
    gap: 80px;
    flex-wrap: nowrap;
}

.reviews-left {
    display: flex;
}

.reviews__image-wrapper {
    position: relative;
    margin-right: 124px;
    margin-bottom: 90px;
}

/* .reviews__image-wrapper::before {
  content: '';
  position: absolute;
  width: 5px;
  height: 39%;
  bottom: 0;
  right: 0;
  top: 0;
  z-index: 0;
  box-shadow: 3px 4px 7px 0 rgba(0, 0, 0, 0.2);
}

.reviews__image-wrapper::after {
  content: '';
  position: absolute;
  width: 49%;
  height: 5px;
  bottom: 0;
  left: 0;
  z-index: 0;
  box-shadow: 3px 4px 7px 0 rgba(0, 0, 0, 0.2);
} */

.reviews__image-wrapper--first {
    width: 514px;
    height: 422px;
    position: relative;
}

.reviews__image--first {
    width: 100%;
    height: 100%;
    position: relative;
    object-fit: cover;
    clip-path: polygon(100% 0, 100% 40%, 50% 40%, 50% 100%, 0 100%, 0 0);
}

/* .reviews__image-wrapper--first::before {
  content: '';
  position: absolute;
  width: 50%;
  height: 5px;
  top: calc(40% - 5px);
  left: 50%;
  z-index: 0;
  box-shadow: 3px 4px 7px 0 rgba(0, 0, 0, 0.2);
}

.reviews__image-wrapper--first::after {
  content: '';
  position: absolute;
  width: 5px;
  height: 60%;
  top: 40%;
  left: calc(50% - 5px);
  z-index: 0;
  box-shadow: 3px 4px 7px 0 rgba(0, 0, 0, 0.2);
} */

.reviews__image-wrapper--second {
    position: absolute;
    width: 350px;
    height: 310px;
    top: calc(40% + 15px);
    left: calc(50% + 15px);
    box-shadow: 3px 4px 7px 0 rgba(0, 0, 0, 0.2);
}

.reviews__image--second {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reviews__image-wrapper--second::after {
    content: '';
    position: absolute;
    top: 18px;
    left: 16px;
    width: 100%;
    height: 100%;
    border: 1px solid var(--gold);
    z-index: 2;
}

.reviews-right {
    font-family: var(--font-family);
    color: var(--text-color-gray);
    display: flex;
    flex-direction: column;
    gap: 55px;
}

.section-title--reviews {
    margin-bottom: 0;
}

.reviews__slider {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.reviews__text {
    font-weight: 500;
    font-size: 20px;
    line-height: 185%;
}

.reviews__author-wrapper {
    display: flex;
    gap: 12px;
}

.reviews__avatar {
    width: 70px;
    height: 70px;
    border-radius: 100%;
}

.reviews__author-content {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.reviews__name {
    font-weight: 600;
    font-size: 20px;
    line-height: 160%;
}

.reviews__work {
    font-weight: 600;
    font-size: 18px;
    line-height: 160%;
    color: var(--gold);
}

/* pop up menu */

body.no-scroll {
    overflow: hidden;
}

.menu-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #fefefe;
    z-index: 1000;
    overflow-y: auto;
}

.menu-popup__wrapper {
    padding-top: 50px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 80px;
    align-items: center;
}

.menu-popup__title-container {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 60px;
}

.menu-popup__title-container span {
    width: 100%;
    height: 1px;
    border: 1px solid var(--text-color-gray);
}

.menu-popup__title {
    font-family: var(--second-family);
    font-weight: 600;
    font-size: 96px;
    line-height: 116%;
    text-transform: uppercase;
    text-align: center;
}

.menu-popup__image-container {
    position: relative;
    width: 100%;
}

.menu-popup__image-container img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.menu-popup__menu-list {
    margin: 0 auto;
    max-width: 1340px;
    padding: 0 30px;
    display: grid;
    grid-template-columns: repeat(2, 560px);
    column-gap: 155px;
}

.menu-list__inner {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.menu-list__item {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.menu-list__item-line {
    border: 1px solid var(--text-color-gray);
    width: 100%;
    height: 1px;
}

.menu__title {
    font-family: var(--second-family);
    font-weight: 600;
    font-size: 40px;
    line-height: 100%;
    text-transform: uppercase;
}

.dishes-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.dishes-list__item {
    display: flex;
    justify-content: space-between;
    font-family: var(--font-family);
    font-size: 24px;
    line-height: 171%;
}

.button--close {
    padding: 20px 110px;
}

/* burger */

.burger-menu {
    display: none;
    position: absolute;
    z-index: 3000;
    top: 130%;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: calc(100vh - 100%);
    overflow-y: auto;
    background-color: var(--text-color-gray);
}

.burger-menu__content {
    padding: 40px 15px;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    gap: 30px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.burger-menu--active {
    display: block;
}

.burger {
    display: none;
    width: 36px;
    height: 24px;
    flex-direction: column;
    justify-content: space-between;
}

.burger span {
    width: 100%;
    height: 1.5px;
    background-color: var(--gold);
}

.burger-lang-switch {
    justify-content: center;
    margin-bottom: 80px;
    display: flex;
    gap: 16px;
}

.burger-lang-switch__btn {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 20px;
    color: #fff;
}

.burger-lang-switch__btn--inactive {
    opacity: 0.5;
}

.lang-switch__line {
    display: block;
    background-color: #fff;
    width: 2px;
}

.burger-list {
    padding: 0 10px;
}

.burger-list__button {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 20px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    text-transform: uppercase;
    color: #fff !important;
}

.burger-list__links {
    display: none;
    flex-direction: column;
    padding: 30px 20px 0;
    gap: 25px;
}

.burger-list__links a {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    color: #fff;
}

.burger-arrow {
    transition: transform 0.3s ease;
}

@media (max-width: 1440px) {
    .nav {
        gap: 30px;
    }

    /* gallery */
    .gallery__img--big {
        max-height: 500px;
    }

    .gallery-slider {
        gap: 30px;
    }

    .gallery-slider__right {
        display: grid;
        grid-template-columns: repeat(3, 150px);
        grid-template-rows: repeat(3, 150px);
        column-gap: 20px;
        row-gap: 20px;
    }

    /* reviews */
    .reviews__image-wrapper {
        margin-right: 80px;
    }

    .reviews__image-wrapper--first {
        width: 400px;
    }

    .reviews__image-wrapper--second {
        width: 250px;
    }

    /* menu pop up */
    .menu-popup__menu-list {
        display: grid;
        grid-template-columns: repeat(2, 400px);
        column-gap: 100px;
    }
}

@media (max-width: 1199px) {
    .nav__item {
        font-size: 16px;
    }

    .button--nav {
        padding: 14px 14px;
        font-size: 14px;
    }
}

@media (max-width: 1024px) {
    .section-wrapper {
        position: relative;
        padding: 25px 0;
    }

    .section-title {
        font-size: 36px;
        margin-bottom: 30px;
    }

    .hero__wrapper--common {
        padding: 55px 0;
        margin-bottom: 25px;
    }

    .hero__title--common {
        padding: 0;
        font-size: 32px;
    }

    /* header */
    .burger {
        display: flex;
    }

    .header__top {
        gap: 0;
        justify-content: space-between;
    }

    .header__top-inner {
        gap: 10px;
    }

    .header__top-text {
        font-size: 12px;
    }

    .header__top-img {
        width: 14px;
        height: 14px;
    }

    .nav {
        display: flex;
        gap: 0;
        justify-content: space-between;
    }

    .nav__item {
        display: none;
    }

    .header-logo {
        width: 102px;
        height: 32px;
    }

    /* gallery */
    .gallery__top {
        flex-direction: column;
        margin-bottom: 30px;
    }

    .section-title--gallery {
        text-align: center;
    }

    .button--gallery {
        font-size: 18px;
        padding: 12px 40px;
        width: 172px;
        margin-bottom: 25px;
        height: 45px;
        position: absolute;
        bottom: 0;
        right: 0;
    }

    .gallery__img--big {
        max-height: 400px;
    }

    .gallery-slider {
        gap: 20px;
    }

    .gallery-slider__right {
        display: grid;
        grid-template-columns: repeat(3, 120px);
        grid-template-rows: repeat(3, 120px);
        column-gap: 15px;
        row-gap: 15px;
    }

    /* reviews */
    .section-title--reviews {
        position: absolute;
        top: 0;
        text-align: center;
        margin-bottom: 0;
    }

    .reviews__image-wrapper {
        position: relative;
        margin-bottom: 48px;
    }

    .reviews__image-wrapper--first {
        width: 268px;
        height: 221px;
    }

    .reviews__image-wrapper--second {
        width: 183px;
        height: 162px;
        top: calc(40% + 8px);
        left: calc(50% + 8px);
    }

    .reviews__image-wrapper--second::after {
        top: 7px;
        left: 5px;
    }

    .reviews__slide {
        padding-top: 60px;
        gap: 10px;
    }

    .reviews__quotes svg {
        height: 20px;
    }

    .reviews__slider {
        gap: 10px;
    }

    .reviews__text {
        font-size: 14px;
    }

    .reviews__avatar {
        width: 45px;
        height: 45px;
    }

    .reviews__name {
        font-size: 13px;
    }

    .reviews__work {
        font-size: 12px;
    }

    .reviews__author-wrapper {
        gap: 22px;
    }

    .reviews-right {
        gap: 30px;
    }

    /* menu pop up */
    .menu-popup__title {
        font-size: 32px;
    }

    .menu-list__inner {
        gap: 30px;
    }

    .menu-popup__menu-list {
        padding: 0 15px;
        display: flex;
        flex-direction: column;
    }

    .button--close--menu {
        font-size: 22px;
        width: 330px;
    }

    .menu-popup__wrapper {
        gap: 50px;
    }

    .menu-popup__menu-list {
        gap: 30px;
    }

    .menu-popup__image-container {
        height: 300px;
    }

    .menu-popup__image-container img {
        height: 100%;
        object-fit: cover;
    }

    .menu-popup__title-container {
        padding: 0 32px;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .section-title {
        font-size: 32px;
        text-align: center;
    }

    /* gallery */
    .gallery {
        padding-bottom: 70px;
    }

    .button--gallery {
        right: 0;
        bottom: -40px;
        left: 0;
        margin: auto;
    }

    .gallery-slider {
        flex-direction: column;
        overflow: hidden;
        gap: 0;
    }

    .gallery-slider__left {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .gallery__img--big {
        height: 300px;
    }

    .buttons-container--gallery {
        position: absolute;
        bottom: 20px;
    }

    .gallery-slider__right {
        justify-content: center;
        padding: 3px 3px;
        display: grid;
        grid-template-columns: repeat(9, 60px);
        grid-template-rows: repeat(1, 60px);
        overflow-y: hidden;
        overflow-x: scroll;
        column-gap: 6px;
        margin-bottom: 40px;
    }

    .gallery__img--small {
        width: 100%;
        height: 100%;
    }

    /* footer */
    .footer {
        padding-bottom: 70px;
    }

    .footer__wrapper {
        padding: 0 15px;
        gap: 35px;
    }

    .footer__top {
        align-items: center;
        flex-direction: column;
        gap: 40px;
    }

    .button--footer {
        width: 300px;
        height: 60px;
    }

    .footer__middle .footer__contact .footer__title-contact {
        font-size: 16px;
    }

    .footer__middle .footer__contact {
        font-size: 14px;
    }

    .footer__links {
        gap: 16px;
    }

    .footer__link {
        text-align: center;
        font-size: 16px;
    }

    .footer__bottom {
        display: flex;
        padding-top: 30px;
        flex-direction: column;
        gap: 5px;
    }

    .section-title--reviews {
        width: 100%;
    }

    .reviews__slide {
        flex-direction: column;
    }

    .reviews__image-wrapper {
        margin-right: 0;
    }

    .social {
        display: none;
    }

    .copyright {
        font-size: 14px;
    }

    .webstork {
        font-size: 14px;
    }

    .webstork img {
        width: 52px;
        height: 40px;
    }

    /* menu pop up */
    .menu-popup__image-container img {
        height: 100%;
    }

    .menu-list__inner {
        gap: 30px;
    }

    .menu-popup__menu-list {
        padding: 0 15px;
        display: flex;
        flex-direction: column;
    }

    .menu-list__item {
        max-width: 330px;
    }

    .menu__title {
        font-size: 24px;
    }

    .menu-popup__image-container {
        height: 100px;
    }

    .dishes-list {
        gap: 10px;
    }

    .dishes-list__item span {
        font-size: 14px;
    }
}

@media screen and (max-width: 575px) {
    .footer__middle {
        flex-direction: column;
        gap: 25px;
    }

    .footer__middle .footer__contact {
        text-align: center;
    }
}

.screen-reader-response {
    display: none;
}

.wpcf7-response-output {
    display: none;
}
