body {
    margin: 0;
    font-family: 'Montserrat Alternates', sans-serif;
    font-size: 15px;
    color: white;
    line-height: 1.6;
    background-color: #0e0d0d;
}
*,
*:before,
*:after {
    box-sizing: border-box;
}
h1, h2, h3, h4, h5 {
    margin: 0
}
/* Container */
.container {
    width: 100%;
    max-width: 1230px;
    padding: 0 15px;
    margin: 0 auto;
}
/* Intro */
.intro {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 100vh;
    background: url(../images/home/fon.jpg) center no-repeat;
    background-size: cover;
}
.intro__inner {
    width: 100%;
    max-width: 600px;
    margin: 0 60px;
}
.intro__title {
    font-family: 'Lobster', cursive;
    font-size: 78px;
    font-weight: 500;
    border-radius: 25px;
    background-color: rgba(82, 42, 42, 0.233);
    color: #fdfeff;
    line-height: 1.2;
    margin: 60px auto;
}
/* Header */
.header {
    width: 100%;
    position: absolute;
    padding-top: 7px;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}
.header__fixed {
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, .7);
    animation: show__header;
    animation-duration: 1s;
}
@keyframes show__header {
    0% {
        opacity: 0;
        top: -70px;
    }
    100% {
        opacity: 1;
        top: 0;
    }
}
.header__inner {
    margin-top: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.img-logo {
    width: 120px;
}
/* Nav */
.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 200;
    padding: 0 20px;
}
.nav__link {
    color: white;
    margin: 0 15px;
    position: relative;
    text-decoration: none;
    transition: color 0.1s linear;

}
.nav__link:after {
    content: "";
    display: block;
    width: 100%;
    height: 3px;
    opacity: 0;
    background-color: aquamarine;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1;
    transition: opacity 0.1s linear ;
}
.nav__link:hover {
    color: aquamarine;
}
.nav__link:hover:after,
.nav__link.active:after {
    opacity: 1;
}
.nav__link.active {
    color: aquamarine;
}
.phone__img {
    margin-left: 30px;
}
.number {
    font-size: 14px;
    text-decoration: none;
    color: #fff;
    transition: color 0.3s linear;
}
.number:hover, .number a:hover {
    color: aquamarine;
}
.number a {
    text-decoration: none !important;
    color: white;
}
a {
    text-decoration: none
}
a.help-a:hover {
    text-decoration: none;
}
.nav-toggle {
    width: 30px;
    padding: 15px 0;
    display: none;
    font-size: 0;
    color: transparent;
    border: 0;
    background: none;
    cursor: pointer;
    position: absolute;
    top: 40px;
    right: 40px;
    z-index: 1;
}
.nav-toggle:focus {
    outline: 0;
}
.nav-toggle__item {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #fff;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    transition: background .2s linear;
}
.nav-toggle__item::before,
.nav-toggle__item:after {
    content: "";
    width: 100%;
    height: 2px;
    background-color: #fff;
    position: absolute;
    left: 0;
    z-index: 1;
    
    transition: transform .2s linear;
}
.nav-toggle__item::before {
    top: -8px;
}
.nav-toggle__item:after {
    bottom: -8px;
}
.nav-toggle.active .nav-toggle__item {
    background: none;
}
.nav-toggle.active .nav-toggle__item:before {
    transform-origin: left top;
    transform: rotate(45deg) translate3d(0, -2px, 0);
}
.nav-toggle.active .nav-toggle__item:after {
    transform-origin: left bottom;
    transform: rotate(-45deg) translate3d(0, 3px, 0);
}

/* Button */
.btn {
    display: inline-block;
    vertical-align: top;
    padding: 10px 15px;
    border-radius: 15px;
    border: 3px solid #fff;
    color: rgb(255, 255, 255);
    text-decoration: none;
    font-size: 17px;
    font-weight: 500;
}
.btn:hover {
    background-color:  rgb(75, 175, 142);
    color: #fff;
}

/* Концепция */
.intro__about {
    background-image: url(../images/home/_DSC16322.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 100vh;
    width: 100%;
    margin-top: -15px;
}
.section__about {
    display: flex;
}
.about_text {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    background-color:  rgba(27, 25, 25, 0.349);
    border-radius: 17px;
    margin-top: 370px;
}
.section__about-info {
    font-size: 68px;
    font-weight: 500;
}
.section__about-conceptia {
    width: 50%;
    font-weight: 200;
    font-size: 21px;
}
/* История */
.history__holder {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 25px;
}
.history__info {
    width: 100%;
    margin-top: 20px;
}
.history-title {
    font-size: 36px;
    font-weight: 400;
    text-align: center;
}
.history__disc {
    text-align: center;
    margin-top: 15px;
}
.history__number {
    display: flex;
    justify-content: space-evenly;
    margin-top: 28px;
}
.number__item span {
    display: block;
    text-decoration: none;
    text-align: center;
    font-size: 32px;
    color: #fff;
}
/* Общий зал/Летняя терраса */
.about__hall, .about__terrace {
    width: 100%;
    max-width: 950px;
    margin: 40px auto 40px;
    text-align: center;

}
.hall__title, .terrace__title {
    font-size: 27px;
    text-transform: uppercase;
}
.hall__text, .terrace__text {
    font-size: 16px;
}
.hall__item, .terrace__item {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.about_img, .terrace_img {
    max-width: 30%;
    border-radius: 5%;
    padding: 10px;
    transition: transform 0.5s;
}
.about_img:hover, .terrace_img:hover {
    transform: scale(1.3);
    align-items: center;
}
/*  Команда ресторана */
.section__comanda {
    display: block;
    margin: 35px auto 35px;
}
.comanda-title {
    font-size: 42px;
    text-align: center;
}
.comanda-img {
    width: 100%;
    border-radius: 5px;
}
.comanda__info {
    display: flex;
    justify-content: space-evenly;
}
.comanda__info-img {
    width: 30%;
    padding: 10px;
}
/* Наши рекомендации */
.recommendation {
    width: 100%;
    max-width: 1230px;
    margin: auto;
    padding-bottom: 30px;
}
.recommendation__title {
    font-size: 42px;
    text-align: center;
    margin-top: 70px;
    margin-bottom: 50px;
}
.recommendation-content {
    display: flex;
    justify-content: center;
}
.recommendation-down {
    display: flex;
    justify-content: space-between;
}
.img-rec {
    width: 270px;
    margin: 7px;
}
/* Меню ресторана */
/* Секции */
.section__header {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    max-width: 985px;
    margin: 130px auto 20px;
}
.section__menu {
    margin: 15px 0;
    padding: 0 15px;
}
.section__suptitle {
    width: 100%;
    overflow: auto;
    text-align: center;
    font-size: 44px;
    text-transform: uppercase;
}
.section__img {
    align-items: center;
    border: 2px solid white;
    border-radius: 55px;
    transition: transform 0.5s;
}
.section__img:hover {
    transform: scale(1.2);
    align-items: center;
}
.section__title {
    text-align: center;
    font-size: 22px;
    font-weight: 300;
}
/* Бизнес-ланч */
.dish__biznes {
    width: 100%;
    max-width: 1200px;
    margin-top: 100px;
    border-top: 2px solid white;
    border-bottom: 2px solid white;
}
.dish__bisnes-title {
    font-family: 'Montserrat Alternates', serif;
    font-size: 38px;
    font-weight: 600;
    text-align: center;
    margin-top: 10px;
}
.dish__bisness-img img{
    margin-top: 20px;
    margin-bottom: 40px;
    transition: transform 0.5s;
}
.dish__bisness-img img:hover {
    transform: scale(1.3);
    align-items: center;
}
/* Меню/корзина */
.section__menu-dish {
    width: 100%;
    max-width: 1000px;
    margin: 130px auto;
}
.section__suptitle-menu {
    width: 100%;
    overflow: auto;
    text-align: center;
    font-size: 32px;
    text-transform: uppercase;
}
.section__dish {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    text-decoration: none;
    line-height: 0.5em;
    margin: 20px 60px;
}
.section__dish img {
    width: 100%;
    max-width: 400px;
    margin: 20px 20px;
    transition: transform 0.5s;
    border-radius: 12px;
}
.section__dish img:hover {
    transform: scale(1.2);
    align-items: center;
}
.text {
    display: flex;
    flex-direction: column;
    margin: 0 18px;
}

.item-title {
    color: #ffffff;
    line-height: normal;
    font-size: 16px; 
    text-align: center;
}
.item-title--ru {
    line-height: 0.5;
    margin-bottom: 12px;
}
.item-title--md {
    margin-bottom: 12px;
    line-height: 0.5;
}

.price-weight {
    font-size: 9px;
    color: rgb(255, 254, 254);
    line-height: 0.5;
    text-align: center;
}
.price__currency {
    color: rgb(127, 255, 204);
    font-size: 20px;
	font-weight: 400;
    text-align: center;
}
.card-wine {
    width: 100%;
    max-width: 1000px;
    margin: 130px auto;
}

.item--title-wine {
    border-bottom: 1px solid #ccc;
    padding: 20px 0;
}

.item:last-child {
    border-bottom: none;
}

.title-menu-wine {
    margin: 0;
    font-size: 18px;
    color: #fff;
    line-height: 1.2;
}
.desc {
    margin: 5px 0 15px;
    color: #ddd;
    font-size: 14px;
    
}
.price-menu-wine {
    color:rgb(127, 255, 204);
    font-size: 18px;
}
.corten-font {
    color: crimson;
}
/* Винная карта */
.intro__wine {
    display: flex;
    align-items: flex-end;
    width: 100%;
    height: 100vh;
    background: url(../images/winemap/fon-vino.jpg) center no-repeat;
    background-size: cover;
}
.section__wine {
    margin: 0 520px 20px;
}
.btn_wine {
    display: inline-block;
    vertical-align: top;
    padding: 10px 15px;
    border-radius: 15px;
    border: 3px solid #fff;
    color: rgb(255, 255, 255);
    text-decoration: none;
    font-size: 17px;
    font-weight: 500;
}
.btn_wine:hover {
    background-color:  rgb(75, 175, 142);
    color: #fff;
}
.section__catalog {
    width: 100%;
    max-width: 1200px;
    margin: 40px auto 40px;
    text-align: center;
}
.vino__title {
    text-transform: uppercase;
    font-size: 27px;
}
.vino__history {
    font-size: 16px;
}
.wine__menu {
    width: 100%;
    max-width: 1000px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto 250px;
}
.cover {
    width: 500px;
    height: 832px;
    position: relative;
    perspective: 1000px;
}
.cover img {
    width: 100%;
    border: 1px solid white;
}
.front, .back {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 1.3s;
    backface-visibility: hidden;
}
.back {
    transform: rotateY(180deg);
}
.cover:hover .front {
    transform: rotateY(180deg);}
.cover:hover .back {
    transform: rotateY(360deg);}

/* Кейтеринг */
.section__catering {
    display: block;
    width: 100%;
    max-width: 1000px;
    margin: 135px auto 20px;
}
.catering, .deivery {
    display: flex;
    margin: 35px 0;
    padding: 0 15px;
}
.catering__title, .delivery__title {
    width: 100%;
    text-align: center;
    font-size: 24px;
}
.catering__text {
    font-size: 14px;
}
.img-cat {
    width: 450px;
}
.delivery__text {
    margin-left: 50px;
    font-size: 14px;
}
.img-del {
    width: 180px;
}
/* Галерея */
/* Slideshow container */
.slideshow-container {
    width: 100%;
    position: relative;
    margin: auto;
}
/* Hide the images by default */
.mySlides {
    display: none;
}
/* Next & previous buttons */
.prevgallery, .nextgallery {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    display: none;
}
/* Position the "next button" to the right */
.nextgallery {
    right: 0;
    border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prevgallery:hover, .nextgallery:hover {
    background-color: rgba(0,0,0,0.8);
}
/* Number text (1/3 etc) */
.numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
    display: none;
}
/* The dots/bullets/indicators */
.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
    display: none;
}
.active, .dot:hover {
    background-color: #71717100;
}
/* Fading animation */
.fade {
    -webkit-animation-name: fade;
    -webkit-animation-duration: 1.5s;
    animation-name: fade;
    animation-duration: 1.5s;
}
@-webkit-keyframes fade {
    from {opacity: .4}
    to {opacity: 1}
}
@keyframes fade {
    from {opacity: .4}
    to {opacity: 1}
}
.section__album {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding-bottom: 80px;
}
.album {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.afiwa {
    margin: 15px 15px;
    border-radius: 2px;
}
.afiwa_title {
    text-align: center;
    font-size: 19px;
    text-transform: uppercase;
}
/* Footer */
.footer {
    padding: 70px 0;
}
.footer__inner {
    display: flex;
    flex-wrap: wrap;
}
.footer__block {
    width: 33.33333%;
    text-align: center;
}
.footer__title {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.footer__adress {
    font-style: normal;
    line-height: 1.5;
    font-size: 13px;
}
.footer__adress a {
    text-decoration: none;
    color: #fff;
}
.footer__social {
    display: flex;
    justify-content: center;
}
.social__item {
    display: flex;
    justify-content: center;
    align-items: center;
}
.social__item  img {
    width: 30px;
    height: 34px;
    margin: 8px;
}
.footer__partners {
    display: flex;
    justify-content: center;
    align-items: center;
}

.partners__item img {
    width: 100px;
    height: 80px;
    margin: 8px;
}
.footer__web {
    width: 100%;
    text-align: center;
    font-size: 12px;
    margin-top: 35px;
    line-height: 0.7em;
}
.footer__web a {
    color: #fff;
    text-decoration: none;
    cursor: pointer;
}
.footer__web a:hover {
    color: aquamarine;
    cursor: pointer;
}


@media (max-width: 1230px) {
    /* Intro */
    .intro__title {
        font-size: 70px;
    }
    .wine__menu {
        margin: auto 111px;
    }
    .nav, .number {
        font-size: 12px;
    }

}
@media (max-width: 990px) {
    /* Intro */
    .intro__title {
        font-size: 52px;
    }
    .nav, .number {
        font-size: 10px;
    }
    /* Концепция */
    .about_text {
        margin-top: 200px;
    }
    .section__about-info {
        font-size: 44px;
    }
    .section__about-conceptia {
        font-size: 14px;
    }
    /* История */
    .history-title {
        font-size: 34px;
    }
    .history__disc {
        font-size: 14px;
    }
    .number__item span {
        font-size: 22px;
    }
    /* Концепция */
    .hall__title, .terrace__title  {
        font-size: 24px;
    }
    .hall__text, .terrace__text {
        font-size: 14px;
    }
    /* Команда */
    .comanda-title {
        font-size: 28px;
    }
    /* Рекомендации */
    .recommendation {
        width: 100%;
        max-width: 900px;
    }
    .recommendation__title {
        font-size: 36px;
    }
    .recommendation-down img {
        width: 170px;
    }
    /* Меню */
    .section__header {
        max-width: 700px;
        justify-content: center;
    }
    .section__suptitle {
        font-size: 40px;
    }
    .section__title {
        font-size: 24px;
    }
    /* Меню ресторана*/
    .section__menu-dish {
        max-width: 900px;
        display: flex;
        justify-content: center;
    }
    .section__suptitle-menu {
        font-size: 24px;
    }
    .section__dish {
        justify-content: center;
        margin: 20px 60px;
    }
    .section__dish img {
        max-width: 350px;
        justify-content: center;
    }
    .item-title, .title-menu-wine {
        font-size: 20px;
    }
    .price-weight, .desc {
        font-size: 9px;
    }
    .price__currency, .price-menu-wine {
        font-size: 20px;
    }
    /* Винная карта */
    .section__wine {
        margin: 0 380px 20px;
    }
    .section__catalog {
        max-width: 880px;
    }
    .vino__title {
        font-size: 24px;
    }
    .vino__history {
        font-size: 12px;
    }
    .wine__menu {
        max-width: 630px;
    }
    .btn_wine {
        font-size: 14px;
        padding: 10px 10px;
    }
    /* Кейтеринг */
    .section__catering {
        max-width: 800px;
        margin: 135px auto 20px;
    }
    .catering__title, .delivery__title {
        font-size: 22px;
    }
    .catering__text {
        font-size: 12px;
    }
    .img-cat {
        width: 340px;
        margin-top: 15px;
    }
    .delivery__text {
        margin-left: 50px;
        font-size: 12px;
    }
    .img-del {
        width: 150px;
    }
    /* Галерея */
    .section__album {
        max-width: 970px;
    }
    .album {
        width: auto;
        display: flex;
        justify-content: center;
    }
    .afiwa {
        width: 290px;
    }
    .afiwa_title {
        font-size: 20px;
        margin-left: 15px;
    }

    /* Footer */
    .footer__inner {
        width: 100%;
        max-width: 900px;
    }
    .footer__title {
        font-size: 13px;
    }
    .footer__adress {
        font-size: 12px;
    }
    .partners__item img {
        width: 90px;
        height: 75px;
    }
}

@media (max-width: 770px) {
     /* Intro */
    .intro__inner {
        max-width: 530px;
        margin: 0 50px;
    }
    .intro__title {
        font-size: 57px;
    }
    .btn {
        font-size: 16px;
        padding: 10px 12px;
    }
    .nav {
        display: none;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background-color: rgba(0, 0, 0, .7);
        font-size: 11px;
    }
    .nav.active {
        display: block;
    }
    .nav__link {
        display: block;
        margin: 0;
        padding: 8px 20px;
    }
    .nav-toggle {
        display: block;
    }
    .section__about-info {
        font-size: 40px;
    }
    .section__about-conceptia {
        font-size: 13px;
    }
    .phone__img {
        margin-left: 20px;
    }
    /* История */
    .history-title {
        font-size: 28px;
    }
    .history__disc {
        font-size: 11px;
    }
    .number__item img {
        width: 80%;
    }
    .number__item span {
        font-size: 18px;
    }
    /* Концепция */
    .hall__title,.terrace__title  {
        font-size: 21px;
    }
    .hall__text, .terrace__text  {
        font-size: 12px;
    }
    /* Команда */
    .section__comanda {
        margin-left: 25px;
    }
    .comanda-title {
        font-size: 24px;
    }
    .comanda__info-img {
        margin-left: 25px;
    }
    /* Рекомендации */
    .recommendation {
        width: 100%;
        max-width: 680px;
    }
    .recommendation__title {
        font-size: 30px;
    }
    .recommendation-down img {
        width: 150px;
    }
    /* Меню */
    .section__header {
        max-width: 650px;
    }
    .section__menu {
        margin: 15px 0;
    }
    .section__suptitle {
        font-size: 36px;
    }
    .section__title {
        font-size: 20px;
    }
    /* Меню ресторана*/
    .section__menu-dish {
        max-width: 700px;
    }
    .section__suptitle-menu {
        font-size: 22px;
    }
    .section__dish {
        justify-content: center;
        margin: 20px 60px;
    }
    .section__dish img {
        max-width: 250px;
        justify-content: center;
    }
    .item-title, .title-menu-wine {
        text-align: center;
        font-size: 16px;
    }
    .price-weight, .desc {
        text-align: center;
        font-size: 7px;
    }
    .price__currency, .price-menu-wine {
        text-align: center;
        font-size: 18px;
    }
    /* Винная карта */
    .section__wine {
        margin: 0 305px 20px;
    }
    .section__catalog {
        max-width: 630px;
        margin: 40px auto 0;
    }
    .vino__title {
        font-size: 22px;
    }
    .vino__history {
        font-size: 11px;
    }
    .wine__menu {
        max-width: 430px;
    }
    .cover {
        width: 400px;
        height: 750px;
    }
    /* Кейтеринг */
    .section__catering {
        max-width: 700px;
        margin: 135px auto 20px;
    }
    .catering__title, .delivery__title {
        font-size: 20px;
    }
    .catering__text {
        font-size: 11px;
    }
    .img-cat {
        width: 320px;
        margin-top: 15px;
    }
    .delivery__text {
        margin-left: 50px;
        font-size: 11px;
    }
    .img-del {
        width: 140px;
    }
    /* Галерея */
    .section__album {
        max-width: 600px;
    }
    .album {
        width: auto;
    }
    .afiwa {
        width: 255px;
    }
    .afiwa_title {
        font-size: 18px;
        margin-left: 15px;
    }
    /* Footer */
    .footer__inner {
        width: 100%;
        max-width: 700px;
    }
    .footer__title {
        font-size: 12px;
    }
    .social__item  img {
        width: 25px;
        height: 28px;
    }
    .footer__adress {
        font-size: 10px;
    }
    .partners__item img {
        width: 70px;
        height: 55px;
    }
    .footer__web {
        font-size: 10px;
    }
}
@media (max-width: 575px) {
    .img-logo {
        width: 120px;
    }
    .nav, .number {
        display: none;
        font-size: 8px;
    }
    .phone__img {
        width: 30px;
        height: 26px;
        margin-left: 5px;
    }
    /* Intro */
    .intro__inner {
        max-width: 290px;
        margin: 0 50px;
    }
    .intro__title {
        font-size: 46px;
    }
    .btn {
        font-size: 16px;
        padding: 10px 10px;
    }
    .about_text {
        margin-top: 380px;
    }
    .section__about-info {
        font-size: 28px;
    }
    .section__about-conceptia {
        font-size: 12px;
    }
    /* История */
    .history-title {
        font-size: 24px;
    }
    .history__disc {
        font-size: 10px;
    }
    .number__item img {
        width: 60%;
    }
    .number__item span {
        font-size: 14px;
        margin-right: 20px;
    }
    /* Концепция */
    .hall__title,.terrace__title  {
        font-size: 18px;
    }
    .hall__text, .terrace__text  {
        font-size: 11px;
    }
    /* Команда */
    .section__comanda {
        margin-left: 25px;
    }
    .comanda-title {
        font-size: 24px;
    }
    .comanda__info-img {
        margin-left: 11px;
    }
    /* Рекомендации */
    .recommendation {
        width: 100%;
        max-width: 485px;
    }
    .recommendation__title {
        font-size: 24px;
    }
    .recommendation-down {
        display: flex;
        flex-direction: column;
    }
    .recommendation-down img {
        width: 120px;
    }
    /* Меню */
    .section__header {
        max-width: 310px;
    }
    .section__menu {
        margin: 15px 0;
    }
    .section__img {
        width: 270px;
        justify-content: center;
    }
    .section__suptitle {
        font-size: 32px;
    }
    .section__title {
        font-size: 18px;
    }
    /* Бизнес-ланч */
    .dish__bisnes-title {
        font-size: 36px;
    }
    /* Меню ресторана*/
    .section__menu-dish {
        max-width: 500px;
    }
    .section__suptitle-menu {
        font-size: 24px;
    }
    .section__dish {
        justify-content: center;
        margin: 20px 20px;
    }
    .section__dish img {
        max-width: 315px;
        justify-content: center;
    }
    .item-title, .title-menu-wine {
        text-align: center;
        font-size: 16px;
    }
    .price-weight, .desc {
        text-align: center;
        font-size: 9px;
    }
    .price__currency, .price-menu-wine {
        text-align: center;
        font-size: 16px;
    }
    /* Винная карта */
    .section__wine {
        margin: 0 140px 20px;
    }
    .section__catalog {
        max-width: 355px;
        margin: 40px auto 0;
    }
    .vino__title {
        font-size: 19px;
    }
    .vino__history {
        font-size: 8px;
    }
    .wine__menu {
        margin: auto 25px;
        max-width: 380px;
    }
    .cover {
        width: 300px;
        height: 550px;
    }
    /* Кейтеринг */
    .section__catering {
        max-width: 550px;
    }
    .catering, .deivery {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: 20px 0;
    }
    .catering__title, .delivery__title {
        text-align: center;
        font-size: 16px;
    }
    .catering__text {
        text-align: center;
        font-size: 8px;
    }
    .img-cat {
        width: 223px;
        margin-left: 10px;
    }
    .delivery__text {
        text-align: center;
        margin-left: 0;
        font-size: 8px;
    }
    .img-del {
        width: 120px;
    }
    /* Галерея */
    .section__album {
        max-width: 310px;
        display: flex;
        align-items: center;
    }
    .album {
        width: auto;
    }
    .afiwa {
        width: 245px;
    }
    .afiwa_title {
        font-size: 18px;
        margin-left: 15px;
    }
    /* Footer */
    .footer__inner {
        width: 100%;
        max-width: 520px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .footer__block {
        margin-bottom: 25px;
    }
    .footer__title {
        font-size: 9px;
        margin-bottom: 5px;
    }
    .social__item  img {
        width: 18px;
        height: 19px;
    }
    .footer__adress {
        font-size: 8px;
    }
    .partners__item img {
        width: 47px;
        height: 33px;
    }
    .footer__web {
        font-size: 8px;
    }
}


@media (max-width: 375px) {
    .img-logo {
        width: 100px;
    }
    .nav, .number {
        display: none;
        font-size: 9px;
    }
    .number {
        display: none;
    }
    .phone__img {
        width: 23px;
        height: 21px;
        margin-left: 2px;
    }
    /* Intro */
    .intro__inner {
        max-width: 290px;
        margin: 0 35px;
    }
    .intro__title {
        font-size: 44px;
    }
    .btn {
        font-size: 14px;
        padding: 7px 7px;
        display: block;
        text-align: center;
    }
    .section__about-info {
        font-size: 24px;
    }
    .section__about-conceptia {
        font-size: 8px;
    }
    /* История */
    .history-title {
        font-size: 20px;
    }
    .history__disc {
        font-size: 8px;
    }
    .number__item img {
        width: 55%;
    }
    .number__item span {
        font-size: 9px;
        margin-right: 29px;
    }
    /* Концепция */
    .hall__title,.terrace__title  {
        font-size: 14px;
    }
    .hall__text, .terrace__text  {
        font-size: 8px;
    }
    /* Команда */
    .section__comanda {
        margin-left: 25px;
        width: 300px;
    }
    .comanda-title {
        font-size: 16px;
    }
    .comanda__info-img {
        width: 100px;
        margin-left: 0;
    }
    /* Рекомендации */
    .recommendation {
        width: 100%;
        max-width: 270px;
    }
    .recommendation__title {
        font-size: 16px;
    }
    .recommendation-down {
        display: flex;
        flex-direction: column;
    }
    .recommendation-down img {
        width: 100px;
    }
    /* Меню */
    .section__header {
        max-width: 265px;
    }
    .section__menu {
        margin: 15px 0;
    }
    .section__suptitle {
        font-size: 28px;
    }
    .section__img {
        width: 236px;
    }
    .section__title {
        font-size: 16px;
    }
    /* Бизнес-ланч */
    .dish__bisnes-title {
        font-size: 34px;
    }
    /* Меню ресторана*/
    .section__menu-dish {
        max-width: 365px;
    }
    .section__suptitle-menu {
        font-size: 21px;
    }
    .section__dish {
        justify-content: center;
        margin: 20px 60px;
    }
    .section__dish img {
        max-width: 200px;
        justify-content: center;
    }
    .item-title, .title-menu-wine {
        text-align: center;
        font-size: 16px;
    }
    .price-weight, .desc {
        text-align: center;
        font-size: 7px;
    }
    .price__currency, .price-menu-wine {
        text-align: center;
        font-size: 12px;
    }
    /* Винная карта */
    .section__wine {
        margin: 0 109px 20px;
    }
    .section__catalog {
        max-width: 310px;
        margin: 40px auto 0;
    }
    .btn_wine {
        font-size: 14px;
        padding: 7px 7px;
        display: block;
        text-align: center;
    }
    .vino__title {
        font-size: 16px;
    }
    .vino__history {
        font-size: 8px;
    }
    .wine__menu {
        margin:  auto 57px;
        max-width: 270px;
    }
    .cover {
        width: 240px;
        height: 450px;
    }
    /* Кейтеринг */
    .section__catering {
        max-width: 320px;
    }
    .catering, .deivery {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: 20px 0;

    }
    .catering__title, .delivery__title {
        font-size: 12px;
    }
    .catering__text {
        font-size: 7px;
        text-align: center;
    }
    .img-cat {
        width: 255px;
        margin-left: 0;

    }
    .delivery__text {
        font-size: 7px;
        margin-left: 5px;
        text-align: center;
    }
    .img-del {
        width: 120px;
    }
    /* Галерея */
    .section__album {
        max-width: 275px;
        display: block;
        align-items: center;
    }
    .album {
        width: auto;
    }
    .afiwa {
        width: 215px;
    }
    .afiwa_title {
        font-size: 14px;
        margin-left: 15px;
    }
    /* Footer */
    .footer__inner {
        width: 100%;
        max-width: 340px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .footer__block {
        margin-bottom: 20px;
    }
    .footer__title {
        font-size: 8px;
        margin-bottom: 5px;
    }
    .social__item  img {
        width: 16px;
        height: 17px;
    }
    .footer__adress {
        font-size: 7px;
    }
    .partners__item img {
        width: 42px;
        height: 27px;
    }
    .footer__web {
        font-size: 7px;
    }
}
