/*основные цвета*/
:root{
    --c-beige: #e3b77c;
    --c-ligt-beige: rgba(227, 183, 124, 0.62);
    --very-light-beige: rgba(227, 183, 124, 0.28);
    --c-black: #090E0C;
    --c-red: #e95121;
}

*{
    margin: 0;
    padding: 0;
}

.rubl {
    font-family: rouble, serif;
    text-transform: none;
}

body{
    font-family: Montserrat, serif;
    font-size: 16px;
    font-weight: 400;
    font-style: normal;
    background-color: var(--c-black);
    color:white;
}

.w-100{
    width: 100%;
}

.light-back{
    position: relative;
    background-color: var(--very-light-beige);
}

.title{
    font-family: Cormorant, sans-serif;
    font-size: 50px;
}

.container.catalog .title{
    margin-top: 97px;
}

h1,h2,h3{
    font-family: Cormorant, sans-serif;
}

ul, li{
    padding: 0;
    list-style-type: none;
}

img{
    width: 100%;
}

a,
a:hover,
a:active,
a:visited,
a:focus
{
    text-decoration: none;
    color: white;
}

.mb-30{
    margin-bottom: 30px;
}

.mb-50{
    margin-bottom: 50px;
}

header{
    position:fixed;
    top: 0;
    width: 100%;
    z-index: 2;
    background-color: var(--c-black);
    height: 80px;
}

header .header-top{
    display: flex;
    align-items: center;
    padding: 10px 0;
    width: 100%;
}

#header_logo{
    width: 125px;
    height: 43px;
}

#header_logo img{
    width: 100%;
}

.header_menu{
    display: flex;
    align-self: center;
    text-align: center;
    font-size: 16px;
    height: 51px;
    min-width: 157px;
}

.header_menu a:nth-child(2){
    margin-left: 35px;
}

.header_menu a{
    position: relative;
    height: 100%;
    display: inline-flex;
    align-items: center;
}

.header_menu a.active{
    font-weight: bold;
    color: var(--c-red)
}

#content{
    position: relative;
    min-height: 70vh;
    margin-bottom: 50px;
    margin-top: 80px;
}

#mobile-navigation-btn{
    color: var(--c-red);
    font-size: 21px;
}

#mobile-navigation {
    background: var(--c-black);
    color: white;
    position: absolute;
    top: 53px;
    margin: 0;
    z-index: 1001;
    width: 100%;
    height: auto;
    min-height: 280px;
    border-bottom: 2px var(--c-red) solid;
}

#mobile-navigation h1{
    font-family: Montserrat, serif;
}

ul#mobile-nav {
    margin: 16px 0 30px 0;
}

ul#mobile-nav li a {
    display: block;
    position: relative;
    padding: 12px 0 !important;
    font-weight: bold;
}

#catName{
    margin-bottom: 30px;
}

#catName,
#empty-cart{
    padding-left: 7px;
}

.red{
    color: var(--c-red) !important;
}

.line {
    width: 90%;
    height: 1px;
    background-color: #ffffff6e;
    margin: 50px auto;
}

.button{
    display: inline-block;
    font-family: Montserrat, serif;
    border: 0;
    font-size: 20px;
    background-color: var(--c-beige);
    color: var(--c-black) !important;
    border-radius: 1px;
    padding: 8px;
    cursor: pointer;
    font-weight: bold;
}

/*main page*/
.back{
    display: flex;
}

.back .text{
    align-self: center;
    padding: 50px;
}

.back .text h1{
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px #ffffff6e solid;
    display: inline-block;
}

.back .text h2{
    display: block;
    margin-bottom: 50px;
    line-height: 40px;
}

.back .text,
.back .image{
    width: 50%;
}

.main-schedule{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.main-schedule .block-schedule{
    width: 150px;
    display: flex;
    flex-wrap: wrap;
    margin: 0 70px;
    justify-content: center;
}

.main-schedule p{
    text-align: center;
}

.our_menu {
    margin-top: 60px;
}

.our_menu ul{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    overflow: hidden;
    height: 40px;
    margin-bottom: 50px;
}

.our_menu ul li {
    margin: 10px;
    padding: 0;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.our_menu ul li.active a{
    position: relative;
    font-weight: bold;
    color:var(--c-beige)
}

.our_menu ul li.active a::after{
    content: '';
    display: inline-block;
    width: 7px;
    height: 7px;
    -moz-border-radius: 7.5px;
    -webkit-border-radius: 7.5px;
    border-radius: 7.5px;
    background-color: var(--c-beige);
    position: absolute;
    left: 44%;
    bottom: -5px;
}

.see_all{
    display: block;
    text-align: right;
    font-weight: bold;
    text-decoration: underline;
}

a.see_all{
    color: var(--c-beige);
}

.header_bottom{
    position: fixed;
    top: 80px;
    width: 100%;
    z-index: 2;
    padding-top: 15px;
    padding-bottom: 15px;
    background-color: var(--c-black);
    border-top: 1px var(--c-beige) solid;
    border-bottom: 1px var(--c-beige) solid;
}

.header_bottom ul{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    font-size: 13px;
    font-weight: 600;
    margin: 0;
}

.header_bottom ul li{
    margin-right:  11px;
    margin-bottom: 5px;
}

.header_bottom ul li a.active{
    color: var(--c-beige);
}

/*product*/
.products{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.product{
    position: relative;
    cursor: pointer;
    height: 330px;
}

.product,
.last-product{
    width: 250px;
    margin: 0 35px 55px 35px;
}

.last-product{
    display: block;
}

.product .image{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 187px;
    overflow: hidden;
    color: var(--c-beige);
}

.product .image.no-image{
    border-top: 2px var(--c-beige) solid;
    border-left: 2px var(--c-beige) solid;
    border-right: 2px var(--c-beige) solid;
}

.product .image.no-image img{
    width: 70%;
}

.product .image img{
    width: 100%;
    text-align: center;
}

.product .info{
    padding: 10px;
    height: 140px;
    text-decoration: none;
    position: relative;
    border-bottom: 2px var(--c-beige) solid;
    border-left: 2px var(--c-beige) solid;
    border-right: 2px var(--c-beige) solid;
    color: white;
}

.product .info .name{
    font-family: Montserrat, serif;
    font-weight: 400;
    overflow: hidden;
    position: relative;
    margin-bottom: 5px;
    font-size: 18px;
    height: 85px;
    text-align: center;
    text-overflow: ellipsis;
}

.product .info .desc{
    font-weight: 300;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    overflow: hidden;
    height: 40px;
    margin-bottom: 5px;
    font-size: 13px;
}

.product .info .out{
    font-size: 12px;
    line-height: 18px;
}

.product .info .price{
    position: absolute;
    left: 43%;
    font-weight: bold;
    margin-bottom: 0;
    font-size: 18px;
    color: var(--c-beige);
}

/*catalog dishes*/
.catalog-dishes{
    display: flex;
    margin-top: 20px;
    width: 100%;
    flex-wrap: wrap;
}

.product-box {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: space-between;
}

/*мод. окно*/
.modal-dish-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-dish {
    background-color:var(--c-black);
    padding: 20px;
    max-width: 460px;
    width: 100%;
    color: white;
    border: 2px var(--c-beige) solid;
}

.modal-dish .dish-price{
    font-family: Montserrat serif;
    color: var(--c-beige);
}

.modal-dish button {
   font-size: 15px;
}

.modal-dish button:hover {
    background-color: #e3e3e3;
}

/*footer*/
footer{
    position:relative;
    width: 100%;
    background-color: rgba(36,36,36, 0.5);
    z-index: 2;
    min-height: 120px;
}

.footer-inner{
    display: flex;
}

.footer-inner .footer_logo{
    display: flex;
    -ms-flex-item-align: center;
    align-self: center;
    width: 95px;
    margin-right: 8%;
}

.footer-inner .footer_logo img{
    width: 100%;
}

.footer_contacts{
    margin-right: 10%;
    padding-top: 20px;
}

.contacts .block{
    margin-bottom: 20px;
}

.footer_contacts p,
.contacts .block p
{
    font-weight: bold;
}

.footer_contacts .block{
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.footer_contacts i,
.contacts .block i
{
    color: var(--c-red);
    font-size: 25px;
    margin-right: 5px;
}

/*Согалсие на обработку данных*/
.bottom-privacy{
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    font-weight: bold;
    z-index: 100;
    padding: 10px;
    background-color: #000000;
    border-top: 1px solid #333333;
    color: grey;
}

.bottom-privacy .privacy-inner{
    display: flex;
    justify-content: center;
    align-items: center;
}

.bottom-privacy .privacy-inner p{
    margin: 0;
    font-size: 12px;
}

.bottom-privacy .privacy-inner a{
    color: white;
}

.bottom-privacy .privacy-inner button {
    border: none;
    transition: .3s;
    margin-left: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    padding: 5px 10px;
    background-color: var(--c-beige);
    color: var(--c-black) !important;
}

@media screen and (max-width: 767px) {
    .bottom-privacy .privacy-inner {
        flex-wrap: wrap;
    }
}


