/* For old browsers */
@supports (not(--css: variables))
{
    .supports_error
    {
        display: flex !important;
    }
}

/* For IE */
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none)
{
    .supports_error
    {
        display: flex !important;
    }
}



/*-----------
    Fonts
-----------*/
@font-face
{
    font-family: 'CenturyGothic';
    font-weight: 700;
    font-style: normal;

    font-display: swap;
    src: url('../fonts/CenturyGothic-Bold.woff') format('woff'),
    url('../fonts/CenturyGothic-Bold.ttf') format('truetype');
}


@font-face
{
    font-family: 'AmaticSC';
    font-weight: 700;
    font-style: normal;

    font-display: swap;
    src: url('../fonts/AmaticSC-Bold.woff') format('woff'),
    url('../fonts/AmaticSC-Bold.ttf') format('truetype');
}



/*------------------
    Reset styles
------------------*/
*
{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

*:before,
*:after
{
    box-sizing: border-box;
}

html
{
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
        -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

body
{
    margin: 0;

    -webkit-tap-highlight-color: transparent;
    -webkit-overflow-scrolling: touch;
    text-rendering: optimizeLegibility;
    text-decoration-skip: objects;
}

img
{
    border-style: none;
}

textarea
{
    overflow: auto;
}

input,
textarea,
input:active,
textarea:active,
button
{
    margin: 0;

    -webkit-border-radius: 0;
            border-radius: 0;
         outline: none transparent !important;
    box-shadow: none;

    -webkit-appearance: none;
            appearance: none;
    -moz-outline: none !important;
}

:focus
{
    outline: 0;
}

:hover,
:active
{
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    -webkit-touch-callout: none;
}


::-ms-clear
{
    display: none;
}



/*-------------------
    Global styles
-------------------*/
:root
{
    --bg: #f8f4eb;
    --scroll_width: 17px;
    --text_color: #616161;
    --font_size: 15px;
    --font_size_title: 60px;
    --font_family: 'Roboto', 'Arial', sans-serif;
    --font_family2: 'CenturyGothic', 'Arial', sans-serif;
    --font_family3: 'AmaticSC', 'Arial', sans-serif;
}


::selection
{
    color: #fff;

    background: #ff7316;
}

::-moz-selection
{
    color: #fff;

    background: #ff7316;
}


.clear
{
    clear: both;
}

.left
{
    float: left;
}

.right
{
    float: right;
}



html
{
    height: 100%;
    min-height: -moz-available;
    min-height: -webkit-fill-available;
    min-height:         fill-available;
}

html.custom_scroll ::-webkit-scrollbar
{
    width: 10px;
    height: 10px;

    background-color: #ccc;
}

html.custom_scroll ::-webkit-scrollbar-thumb
{
    background-color: #ff7316;
}

html.custom_scroll
{
    scrollbar-color: #ff7316 #ccc;
    scrollbar-width: thin;
}


body
{
    color: var(--text_color);
    font: var(--font_size) var(--font_family);

    height: 100%;
    min-height: -moz-available;
    min-height: -webkit-fill-available;
    min-height:         fill-available;
}

body.lock
{
    position: fixed;
    top: 0;
    left: 0;

    overflow: hidden;

    width: 100%;
    height: 100%;
}


button
{
    color: var(--text_color);
    font: var(--font_size) var(--font_family);

    cursor: pointer;

    border: none;
    background: none;
}


.wrap
{
    position: relative;

    display: flex;
    overflow: hidden;
    flex-direction: column;

    min-width: 360px;
    min-height: 100%;

    background: var(--bg);
}


.main
{
    flex: 1 0 auto;
}


.cont
{
    width: 100%;
    max-width: 1210px;
    margin: 0 auto;
    padding: 0 20px;
}


.compensate-for-scrollbar
{
    margin-right: var(--scroll_width) !important;
}


.lozad
{
    transition: opacity .5s linear;

    opacity: 0;
}

.lozad.loaded
{
    opacity: 1;
}


.row
{
    display: flex;

    justify-content: flex-start;
    align-items: flex-start;
    align-content: flex-start;
    flex-wrap: wrap;
}



.overlay
{
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;

    display: none;

    width: 100%;
    height: 100%;

    opacity: .65;
    background: #000;
}



.supports_error
{
    font-family: 'Arial', sans-serif;
    font-size: 20px;
    line-height: 30px;

    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;

    display: none;

    width: 100%;
    height: 100%;
    padding: 20px;

    text-align: center;

    background: #fff;

    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.supports_error.show
{
    display: flex;
}



/*------------
    Header
------------*/
header
{
    position: absolute;
    z-index: 101;
    top: 0;
    left: 0;

    width: 100%;
    padding: 40px 0;
}

header .cont.row
{
    justify-content: space-between;
    align-items: center;
    align-content: center;
}



header .logo a,
header .logo img
{
    display: block;

    width: 153px;
    height: 101px;
}



header .menu .item + .item
{
    margin-left: 15px;
}

header .menu .item > a
{
    color: #fff;
    font-family: var(--font_family2);
    font-size: 14px;
    line-height: normal;

    display: block;

    transition: color .2s linear;
    text-decoration: none;
    letter-spacing: .025em;
    text-transform: uppercase;
}

header .menu .item:hover > a,
header .menu .item > a.active
{
    color: #ff7316;
}



header .socials
{
    display: flex;

    justify-content: flex-start;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

header .socials a
{
    display: block;
}

header .socials a + a
{
    margin-left: 12px;
}

header .socials .icon
{
    display: block;

    width: 40px;
    height: 40px;
}

header .socials .icon.soc_fb
{
    background: url(../images/ic_soc_fb.png) 0 0 no-repeat;
}

header .socials .icon.soc_whatsapp
{
    background: url(../images/ic_soc_whatsapp.png?11) 0 0 no-repeat;
}

header .socials .icon.soc_twitter
{
    background: url(../images/yandex-eda.png) 0 0 no-repeat;
	background-size: contain;
}

header .socials .icon.soc_insta
{
    background: url(../images/ic_soc_insta.png) 0 0 no-repeat;
}

header .socials .icon.soc_dev
{
    background: url(../images/dev.png) center center no-repeat;
    background-size: contain;
    width: 100px;
}

header .socials .icon.soc_dev:hover {
    background: url(../images/dev.png) center center no-repeat;
    background-size: contain;
    width: 100px;
}

header .socials .icon.soc_twitter:hover {
    background-position: inherit;
}

header .socials a:hover .icon
{
    background-position: 0 100%;
}



header .mob_menu_btn
{
    display: none;

    width: 48px;
    height: 38px;
    margin-right: -10px;
    margin-left: 20px;
    padding: 10px;

    cursor: pointer;

    border: none;
    background: none;
position: relative;
    z-index: 1;
}

header .mob_menu_btn span
{
    position: relative;

    display: block;

    width: 100%;
    height: 2px;

    transition: background .2s linear;

    background: #fff;
}

header .mob_menu_btn span:before,
header .mob_menu_btn span:after
{
    position: absolute;
    top: -8px;
    left: 0;

    display: block;

    width: 100%;
    height: 100%;

    content: '';
    transition: .2s linear;

    background: #fff;
}

header .mob_menu_btn span:after
{
    top: 8px;
}

header .mob_menu_btn.active span
{
    background: transparent;
}

header .mob_menu_btn.active span:before
{
    top: 0;

    transform: rotate(45deg);
}

header .mob_menu_btn.active span:after
{
    top: 0;

    transform: rotate(-45deg);
}



/*---------------
    Page head
---------------*/
.page_head
{
    color: #fff;

    position: relative;

    overflow: hidden;

    text-align: center;

    background: #ddd;
}

.page_head:before
{
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    content: '';

    opacity: .5;
    background: #171717;
}


.page_head .bg
{
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background-repeat: no-repeat;
    background-position: 50%;
    background-size: cover;
}


.page_head .cont
{
    position: relative;
    z-index: 3;

    display: flex;

    min-height: 532px;
    padding-top: 133px;
    padding-bottom: 53px;

    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}


.page_head .page_title
{
    font-family: var(--font_family3);
    font-size: 103px;
    font-weight: 700;
    line-height: 103px;

    display: block;

    width: 100%;

    text-transform: uppercase;

    text-shadow: 4px 4px 0 #11100e;
}


.page_head .phone
{
    font-family: var(--font_family2);
    font-size: 30px;
    font-weight: 700;

    width: 100%;
    margin-top: 20px;

    letter-spacing: .045em;
}

.page_head .phone a
{
    color: currentColor;

    white-space: nowrap;
    text-decoration: none;
}



/*----------------
    Block head
----------------*/
.block_head
{
    display: flex;

    width: 100%;
    margin-bottom: 45px;

    justify-content: flex-start;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.block_head .title
{
    color: #616161;
    font-family: var(--font_family3);
    font-size: var(--font_size_title);
    font-weight: 700;
    line-height: normal;

    position: relative;

    padding-bottom: 20px;

    text-transform: uppercase;
}

.block_head .title:after
{
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;

    display: block;

    width: 92px;
    height: 1px;
    margin: auto;

    content: '';

    background: #48302e;
}


.block_head.center
{
    text-align: center;

    justify-content: center;
}

.block_head.center .title
{
    width: 100%;
}



/*------------------
    Form elements
------------------*/
.form
{
    --form_border_color: #fff;
    --form_focus_color: #fff;
    --form_error_color: red;
    --form_border_radius: 35px;
    --form_bg_color: #fff;
    --form_placeholder_color: rgba(49,49,49,.6);
}


.form ::-webkit-input-placeholder
{
    color: var(--form_placeholder_color);
}

.form :-moz-placeholder
{
    color: var(--form_placeholder_color);
}

.form :-ms-input-placeholder
{
    color: var(--form_placeholder_color);
}


.form .line
{
    margin-bottom: 25px;
}


.form .field
{
    position: relative;
}


.form .input
{
    color: var(--text_color);
    font: 16px var(--font_family);

    display: block;

    width: 100%;
    height: 67px;
    padding: 0 40px;

    transition: border-color .2s linear;

    border: 1px solid var(--form_border_color);
    border-radius: var(--form_border_radius);
    background: var(--form_bg_color);
}

.form .input:-webkit-autofill
{
    -webkit-box-shadow: inset 0 0 0 50px var(--form_bg_color) !important;
}


.form .input:focus
{
    border-color: var(--form_focus_color);
}

.form .error
{
    border-color: var(--form_error_color);
}


.form .submit
{
    display: flex;

    padding-top: 33px;

    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.form .submit_btn
{
    color: #fff;
    font-family: var(--font_family2);
    font-size: 15px;
    font-weight: 700;
    line-height: 28px;

    display: inline-block;

    min-width: 267px;
    max-width: 100%;
    height: 58px;
    padding: 14px 40px 16px;

    cursor: pointer;
    transition: .2s linear;
    vertical-align: top;

    border-radius: var(--form_border_radius);
    background:    -moz-linear-gradient( 90deg, rgb(255,115,22) 0%, rgb(243,87,57) 100%);
    background: -webkit-linear-gradient( 90deg, rgb(255,115,22) 0%, rgb(243,87,57) 100%);
    background:     -ms-linear-gradient( 90deg, rgb(255,115,22) 0%, rgb(243,87,57) 100%);
    box-shadow: 0 0 54px rgba(243,87,57,.5);
}



/*----------------
    Typography
----------------*/
.text_block
{
    line-height: 27px;
}

.text_block > :last-child
{
    margin-bottom: 0 !important;
}

.text_block > :first-child
{
    margin-top: 0 !important;
}


.text_block > *
{
    margin-bottom: 25px;
}



/*-------------------
    First section
-------------------*/
.first_section
{
    position: relative;

    overflow: hidden;

    background: #ddd;
}

.first_section:before
{
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    content: '';

    opacity: .45;
    background: #171717;
}


.first_section .bg
{
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background-repeat: no-repeat;
    background-position: 50%;
    background-size: cover;
	background-image: url(../images/tmp/bg_first_section.jpg?1);
}


.first_section .cont
{
    position: relative;
    z-index: 3;

    display: flex;

    min-height: 100vh;
    padding-top: 253px;
    padding-bottom: 53px;

    justify-content: flex-start;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}


.first_section .info
{
    color: #fff;

    width: 100%;

    text-align: center;
}

.first_section .info .title
{
    font-family: var(--font_family3);
    font-size: 103px;
    font-weight: 700;
    line-height: 103px;

    text-transform: uppercase;

    text-shadow: 4px 4px 0 #11100e;
}

.first_section .info .phone
{
    font-family: var(--font_family2);
    font-size: 30px;
    font-weight: 700;

    margin-top: 20px;

    letter-spacing: .045em;
}

.first_section .info .phone a
{
    color: currentColor;

    white-space: nowrap;
    text-decoration: none;
}

.first_section .info .book_btn
{
    color: #fff;
    font-family: var(--font_family2);
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;

    display: inline-block;

    width: 398px;
    max-width: 100%;
    margin-top: 80px;
    padding: 24px 40px;

    text-align: center;
    vertical-align: top;
    letter-spacing: .025em;

    border-radius: 40px;
    background:    -moz-linear-gradient( -35deg, rgb(255,115,22) 0%, rgb(243,87,57) 100%);
    background: -webkit-linear-gradient( -35deg, rgb(255,115,22) 0%, rgb(243,87,57) 100%);
    background:     -ms-linear-gradient( -35deg, rgb(255,115,22) 0%, rgb(243,87,57) 100%);
}


.first_section .restaurants
{
    width: 100%;
    margin-top: 104px;
}



/*-----------------
    Restaurants
-----------------*/
.restaurants .row
{
    margin-bottom: -48px;
    margin-left: -48px;

    --restaurants_count: 3;
    justify-content: center;
    align-items: stretch;
    align-content: stretch;
}

.restaurants .row > *
{
    width: 296px;
    max-width: calc(33.333% - 48px);
    margin-bottom: 48px;
    margin-left: 48px;
}


.restaurants .restaurant
{
    position: relative;
    z-index: 3;

    padding: 23px 23px 33px;

    text-align: center;

    background: #f9f5e0;
}

.restaurants .restaurant:before
{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;

    display: block;

    width: calc(100% - 20px);
    height: calc(100% - 20px);
    margin: auto;

    content: '';
    pointer-events: none;

    border: 1px solid #5e4743;
    border-radius: 5px;
}


.restaurants .restaurant .name
{
    color: #23211d;
    font-family: var(--font_family3);
    font-size: 29px;
    line-height: 35px;

    display: flex;

    letter-spacing: .025em;

    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.restaurants .restaurant .name div
{
    position: relative;

    padding: 10px 0;
}

.restaurants .restaurant .name div:after
{
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;

    display: block;

    width: 54px;
    height: 1px;
    margin: auto;

    content: '';

    background: currentColor;
}


.restaurants .restaurant .location
{
    font-size: 14px;
    line-height: 20px;

    margin-top: 10px;

    letter-spacing: .025em;
}


.restaurants .restaurant .phones
{
    font-size: 14px;
    line-height: 20px;

    margin-top: 10px;

    letter-spacing: .025em;
}

.restaurants .restaurant .phones b
{
    font-weight: 500;

    display: block;

    margin-bottom: 3px;
}


.restaurants .restaurant .time
{
    font-size: 14px;
    line-height: 20px;

    margin-top: 10px;

    letter-spacing: .025em;
}

.restaurants .restaurant .time b
{
    font-weight: 500;

    display: block;

    margin-bottom: 3px;
}


.restaurants .restaurant .book_btn,
.restaurants .restaurant .link
{
    color: #fff;
    font-family: var(--font_family2);
    font-size: 11px;
    font-weight: 700;
    line-height: 16px;

    display: inline-block;

    margin-top: 15px;
    padding: 10px 40px;

    text-align: center;
    vertical-align: top;
    text-decoration: none;
    letter-spacing: .025em;

    border-radius: 18px;
    background:    -moz-linear-gradient( -35deg, rgb(255,115,22) 0%, rgb(243,87,57) 100%);
    background: -webkit-linear-gradient( -35deg, rgb(255,115,22) 0%, rgb(243,87,57) 100%);
    background:     -ms-linear-gradient( -35deg, rgb(255,115,22) 0%, rgb(243,87,57) 100%);
    box-shadow: 0 0 54px rgba(243,87,57,.5);
}


.restaurants .restaurant .links
{
    font-size: 14px;
    line-height: 20px;

    margin-top: 12px;

    text-align: center;
    letter-spacing: .025em;
}

.restaurants .restaurant .links .sep
{
    margin: 0 10px;
}

.restaurants .restaurant .links a
{
    color: currentColor;

    text-decoration: none;
}

.restaurants .restaurant .links a:hover
{
    text-decoration: underline;
}


.restaurants .restaurant .bg
{
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background-repeat: no-repeat;
    background-position: 50%;
    background-size: cover;
}



/*----------------
    Info block
----------------*/
.info_block
{
    position: relative;
    z-index: 3;

    padding-top: 175px;
}

.info_block .cont.row
{
    justify-content: center;
}


.info_block .img
{
    position: relative;
    z-index: 1;

    overflow: hidden;

    width: 555px;
    margin-right: -67px;
    padding-bottom: 700px;

    background: #ddd;
}

.info_block .data + .img
{
    margin-right: 0;
    margin-left: -67px;
}

.info_block .img:before
{
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;

    display: block;

    width: 100%;
    height: 100%;

    content: '';

    border: 10px solid rgba(0,0,0,.2);
}

.info_block .img:after
{
    position: absolute;
    z-index: 3;
    top: 0;
    left: 0;

    display: block;

    width: 100%;
    height: 100%;

    content: '';

    opacity: .49;
    background:    -moz-linear-gradient(top,  rgba(252,95,69,0) 0%, rgba(252,95,69,.6) 100%);
    background: -webkit-linear-gradient(top,  rgba(252,95,69,0) 0%,rgba(252,95,69,.6) 100%);
    background:         linear-gradient(to bottom,  rgba(252,95,69,0) 0%,rgba(252,95,69,.6) 100%);
}

.info_block .img img
{
    position: absolute;
    top: 0;
    left: 0;

    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}


.info_block .data
{
    position: relative;
    z-index: 5;

    width: 650px;
    max-width: 100%;
    min-height: 550px;
    padding: 80px;

    background: #fff;

    align-self: center;
}

.info_block .data .number
{
    color: #e0e0e0;
    font-size: 273px;
    font-weight: 900;
    line-height: 240px;

    position: absolute;
    z-index: -1;
    top: 0;
    left: 5px;

    pointer-events: none;

    opacity: .15;
}

.info_block .data:after
{
    position: absolute;
    bottom: 0;
    left: 0;

    display: block;

    width: 100%;
    height: 3px;

    content: '';

    background:    -moz-linear-gradient( -35deg, rgb(255,115,22) 0%, rgb(243,87,57) 100%);
    background: -webkit-linear-gradient( -35deg, rgb(255,115,22) 0%, rgb(243,87,57) 100%);
    background:     -ms-linear-gradient( -35deg, rgb(255,115,22) 0%, rgb(243,87,57) 100%);
}

.info_block .data .title
{
    color: #313131;
    font-family: var(--font_family3);
    font-size: 60px;
    font-weight: 700;
    line-height: 70px;

    margin-bottom: 25px;
}

.info_block .data .link
{
    color: #313131;
    font-family: var(--font_family2);
    font-size: 20px;
    font-weight: 700;
    line-height: 23px;

    display: inline-block;

    min-width: 267px;
    max-width: 100%;
    margin-top: 40px;
    padding: 14px 40px 16px;

    text-align: center;
    vertical-align: top;
    text-decoration: none;

    border: 1px solid #ff4800;
    border-radius: 30px;
}

.info_block .data .link:hover
{
    color: #fff;

    padding: 15px 41px 17px;

    border: none;
    background:    -moz-linear-gradient( 90deg, rgb(255,115,22) 0%, rgb(243,87,57) 100%);
    background: -webkit-linear-gradient( 90deg, rgb(255,115,22) 0%, rgb(243,87,57) 100%);
    background:     -ms-linear-gradient( 90deg, rgb(255,115,22) 0%, rgb(243,87,57) 100%);
    box-shadow: 0 0 54px rgba(243,87,57,.5);
}



.info_block.about:before
{
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;

    display: block;

    width: 419px;
    height: 924px;

    content: '';
    pointer-events: none;

   background: url(../images/bg_about_left.png) 0 0 no-repeat;
	
}

.info_block.about:after
{
    position: absolute;
    z-index: -1;
    top: 0;
    right: 0;

    display: block;

    width: 352px;
    height: 887px;

    content: '';
    pointer-events: none;

  background: url(../images/bg_about_right.png) 0 0 no-repeat;

}





.info_block.events
{
    padding-bottom: 175px;
}

.info_block.events:before
{
    position: absolute;
    z-index: -1;
    bottom: 0;
    left: 0;

    display: block;

    width: 351px;
    height: 945px;

    content: '';
    pointer-events: none;

    background: url(../images/bg_events_left.png) 0 0 no-repeat;
}

.info_block.events:after
{
    position: absolute;
    z-index: -1;
    right: 0;
    bottom: 0;

    display: block;

    width: 184px;
    height: 885px;

    content: '';
    pointer-events: none;

    background: url(../images/bg_events_right.png) 0 0 no-repeat;
}



/*--------------
    Articles
--------------*/
.articles
{
    position: relative;
    z-index: 3;

    padding-top: 175px;
}

.articles:before
{
    position: absolute;
    z-index: -1;
    top: 165px;
    left: 0;

    display: block;

    width: 180px;
    height: 828px;

    content: '';
    pointer-events: none;

    background: url(../images/bg_articles_left.png) 0 0 no-repeat;
}

.articles:after
{
    position: absolute;
    z-index: -1;
    top: 120px;
    right: 0;

    display: block;

    width: 361px;
    height: 873px;

    content: '';
    pointer-events: none;

    background: url(../images/bg_articles_right.png) 0 0 no-repeat;
}


.articles .row
{
    margin-bottom: -30px;
    margin-left: -30px;

    align-items: stretch;
    align-content: stretch;
}

.articles .row > *
{
    width: calc(25% - 30px);
    margin-bottom: 30px;
    margin-left: 30px;
}



.articles .item
{
    color: #fff;

    position: relative;

    display: block;
    overflow: hidden;

    text-decoration: none;
}

.articles .item .thumb
{
    position: relative;

    overflow: hidden;

    padding-bottom: 100%;

    background: #ddd;
}

.articles .item .thumb img
{
    position: absolute;
    top: 0;
    left: 0;

    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}

.articles .item .name
{
    font-family: var(--font_family3);
    font-size: 28px;
    font-weight: 700;
    line-height: 35px;

    position: absolute;
    z-index: 3;
    top: 0;
    left: 0;

    display: flex;

    width: 100%;
    height: 100%;
    padding: 20px;

    transition: opacity .2s linear;
    text-align: center;

    opacity: 0;
    background: rgba(0,0,0,.64);

    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.articles .item:hover .name
{
    opacity: 1;
}



/*-------------
    Gallery
-------------*/
.gallery
{
    position: relative;

    padding: 80px 0;

    background: #ddd;
}


.gallery .bg
{
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background-repeat: no-repeat;
    background-position: 50%;
    background-size: cover;
}


.gallery .cont
{
    position: relative;
    z-index: 3;
}


.gallery .data
{
    padding: 53px;

    border-radius: 8px;
    background: #fff;
}


.gallery .data .section + .section
{
    margin-top: 43px;
}

.gallery .data .section .title
{
    color: #313131;
    font-family: var(--font_family3);
    font-size: 30px;
    line-height: 40px;

    margin-bottom: 15px;
}


.gallery .row
{
    margin-bottom: -24px;
    margin-left: -24px;

    align-items: stretch;
    align-content: stretch;
}

.gallery .row > *
{
    width: calc(25% - 24px);
    margin-bottom: 24px;
    margin-left: 24px;
}



.gallery .item
{
    position: relative;

    display: block;
    overflow: hidden;
}

.gallery .item .thumb
{
    position: relative;

    overflow: hidden;

    padding-bottom: 100%;

    background: #ddd;
}

.gallery .item .thumb img
{
    position: absolute;
    top: 0;
    left: 0;

    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}



/*-------------------
    Contacts info
-------------------*/
.contacts_info
{
    position: relative;

    overflow: hidden;

    padding: 120px 0;
}


.contacts_info .cont
{
    position: relative;
    z-index: 3;

    pointer-events: none;
}


.contacts_info .data
{
    width: 474px;
    max-width: 100%;
    padding: 46px;

    pointer-events: auto;

    border-radius: 8px;
    background: #fff;
}


.contacts_info .title
{
    color: #444;
    font-family: var(--font_family2);
    font-size: 24px;
    font-weight: 700;

    position: relative;

    margin-bottom: 25px;
    padding-bottom: 15px;
}

.contacts_info .title:after
{
    position: absolute;
    bottom: 0;
    left: 0;

    display: block;

    width: 159px;
    height: 1px;

    content: '';

    background: #fa6923;
}


.contacts_info .item
{
    color: #23211d;
    font-size: 16px;
    line-height: 20px;

    cursor: pointer;
    letter-spacing: .025em;
}

.contacts_info .item + .item
{
    margin-top: 20px;
}

.contacts_info .item > *
{
    position: relative;

    padding-left: 24px;
}

.contacts_info .item > *:before
{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;

    display: block;

    width: 6px;
    height: 6px;
    margin: auto;

    content: '';

    border-radius: 50%;
    background: #fa6923;
}

.contacts_info .item .phones
{
    font-weight: 900;

    margin-top: 5px;
}

.contacts_info .item.active .location
{
    text-decoration: underline;
}


.contacts_info .map
{
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;

    display: none;

    width: 100%;
    height: 100%;

    background: #ddd;
}



/*---------------------
    Restaurant menu
---------------------*/
.restaurant_menu
{
    position: relative;
    z-index: 3;

    overflow: hidden;

    padding: 80px 0;
}

.restaurant_menu:before
{
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;

    display: block;

    width: 419px;
    height: 924px;

    content: '';
    pointer-events: none;

    background: url(../images/bg_about_left.png) 0 0 no-repeat;
}

.restaurant_menu:after
{
    position: absolute;
    z-index: -1;
    top: 0;
    right: 0;

    display: block;

    width: 352px;
    height: 887px;

    content: '';
    pointer-events: none;

    background: url(../images/bg_about_right.png) 0 0 no-repeat;
}



/*---------------
    Menu_info
---------------*/
.menu_info .head
{
    padding: 50px 0;

    background: #fff;
}

.menu_info .head .cont > * + *
{
    margin-top: 40px;
}


.menu_info .head .links
{
    display: flex;

    margin-bottom: -20px;
    margin-left: -20px;

    justify-content: flex-start;
    align-items: flex-start;
    align-content: flex-start;
    flex-wrap: wrap;
}

.menu_info .head .links > *
{
    width: calc(20% - 20px);
    margin-bottom: 20px;
    margin-left: 20px;
}

.menu_info .head .links button
{
    color: #000;
    font-family: var(--font_family2);
    font-size: 13px;
    font-weight: 700;
    line-height: 18px;

    display: block;

    padding: 10px 20px;

    letter-spacing: .025em;

    border: 1px solid #888;
    border-radius: 30px;
}

.menu_info .head .links button:hover
{
    color: #fff;

    padding: 11px 21px;

    border: none;
    background:    -moz-linear-gradient( 90deg, rgb(255,115,22) 0%, rgb(243,87,57) 100%);
    background: -webkit-linear-gradient( 90deg, rgb(255,115,22) 0%, rgb(243,87,57) 100%);
    background:     -ms-linear-gradient( 90deg, rgb(255,115,22) 0%, rgb(243,87,57) 100%);
    box-shadow: 0 0 54px rgba(243,87,57,.5);
}


.menu_info .head .text_block
{
    text-align: center;
}


.menu_info .data
{
    padding: 40px 0;

    /*background: #181717;*/
	background: #181717 url('../images/fon.png?1') repeat-y top center;
	background-size: cover;
}

.menu_info .data .cat
{
    position: relative;
    z-index: 3;

    overflow: hidden;

    padding: 60px 0;
}

.menu_info .data .cat img
{
    display: block;

    max-width: 100%;
    margin: 0 auto;
}


.menu_info .data .cat:before,
.menu_info .data .cat:after
{
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;

    display: block;

    width: 50%;
    height: 100%;

    content: '';
    pointer-events: none;
}

.menu_info .data .cat:after
{
    right: 0;
    left: auto;
}

/*
.menu_info .data .cat1:before
{
    background: url(../images/bg_menu_cat1_left.png) 0 50% no-repeat;
}

.menu_info .data .cat1:after
{
    background: url(../images/bg_menu_cat1_right.png) 100% 50% no-repeat;
}


.menu_info .data .cat2:before
{
    background: url(../images/bg_menu_cat2_left.png) 0 50% no-repeat;
}

.menu_info .data .cat2:after
{
    background: url(../images/bg_menu_cat2_right.png) 100% 100% no-repeat;
}


.menu_info .data .cat3:before
{
    background: url(../images/bg_menu_cat3_left.png) 0 50% no-repeat;
}

.menu_info .data .cat3:after
{
    background: url(../images/bg_menu_cat3_right.png) 100% 50% no-repeat;
}


.menu_info .data .cat4:before
{
    background: url(../images/bg_menu_cat4_left.png) 0 50% no-repeat;
}

.menu_info .data .cat4:after
{
    background: url(../images/bg_menu_cat4_right.png) 100% 50% no-repeat;
}


.menu_info .data .cat5:before
{
    background: url(../images/bg_menu_cat5_left.png) 0 50% no-repeat;
}

.menu_info .data .cat5:after
{
    background: url(../images/bg_menu_cat5_right.png) 100% 50% no-repeat;
}


.menu_info .data .cat6:before
{
    background: url(../images/bg_menu_cat6_left.png) 0 50% no-repeat;
}

.menu_info .data .cat6:after
{
    background: url(../images/bg_menu_cat6_right.png) 100% 50% no-repeat;
}


.menu_info .data .cat7:before
{
    background: url(../images/bg_menu_cat7_left.png) 0 50% no-repeat;
}

.menu_info .data .cat7:after
{
    background: url(../images/bg_menu_cat7_right.png) 100% 50% no-repeat;
}


.menu_info .data .cat8:before
{
    background: url(../images/bg_menu_cat8_left.png) 0 50% no-repeat;
}

.menu_info .data .cat8:after
{
    background: url(../images/bg_menu_cat8_right.png) 100% 50% no-repeat;
}


.menu_info .data .cat9:before
{
    background: url(../images/bg_menu_cat8_left.png) 0 50% no-repeat;
}

.menu_info .data .cat9:after
{
    background: url(../images/bg_menu_cat8_right.png) 100% 50% no-repeat;
}


.menu_info .data .cat10:before
{
    background: url(../images/bg_menu_cat10_left.png) 0 50% no-repeat;
}

.menu_info .data .cat10:after
{
    background: url(../images/bg_menu_cat10_right.png) 100% 50% no-repeat;
}


.menu_info .data .cat11:before
{
    background: url(../images/bg_menu_cat11_left.png) 0 50% no-repeat;
}

.menu_info .data .cat11:after
{
    background: url(../images/bg_menu_cat11_right.png) 100% 50% no-repeat;
}


.menu_info .data .cat12:before
{
    background: url(../images/bg_menu_cat12_left.png) 0 50% no-repeat;
}

.menu_info .data .cat12:after
{
    background: url(../images/bg_menu_cat12_right.png) 100% 50% no-repeat;
}


.menu_info .data .cat13:before
{
    background: url(../images/bg_menu_cat13_left.png) 0 50% no-repeat;
}

.menu_info .data .cat13:after
{
    background: url(../images/bg_menu_cat13_right.png) 100% 50% no-repeat;
}


.menu_info .data .cat14:before
{
    background: url(../images/bg_menu_cat14_left.png) 0 50% no-repeat;
}

.menu_info .data .cat14:after
{
    background: url(../images/bg_menu_cat14_right.png) 100% 50% no-repeat;
}
*/


/*------------
    Footer
------------*/
footer
{
    padding: 120px 0 20px;

    background: #fff;
}

footer .cont.row
{
    justify-content: space-between;
}


footer .bottom
{
    margin-top: 40px;
}

footer .bottom .cont.row
{
    align-items: center;
    align-content: center;
}


footer .col_left
{
    width: 325px;
}



footer .logo
{
    margin-top: -70px;
}

footer .logo a,
footer .logo img
{
    display: block;

    width: 153px;
    height: 101px;
}



footer .text
{
    color: #000;
    font-size: 15px;
    font-weight: 300;
    line-height: 27px;

    margin-top: 20px;
}



footer .title
{
    font-size: 18px;
    font-weight: 900;

    margin-bottom: 25px;

    letter-spacing: .05em;
}



footer .contacts .location
{
    color: #000;
    font-size: 17px;
    font-weight: 300;
    line-height: 27px;

    position: relative;

    padding-left: 36px;

    background: url(../images/ic_location.png) 0 2px no-repeat;
	margin-bottom: 8px;
}

footer .contacts .phones
{
    color: #000;
    font-size: 17px;
    font-weight: 300;
    line-height: 27px;

    position: relative;

    margin-top: 25px;
    padding-left: 36px;

    background: url(../images/ic_phone.png) 0 3px no-repeat;
}



footer .subscribe
{
    margin-bottom: 32px;
}

footer .subscribe form
{
    display: flex;

    justify-content: flex-start;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

footer .subscribe .input
{
    color: #000;
    font-family: var(--font_family);
    font-size: 17px;
    font-weight: 300;

    display: block;

    width: 258px;
    max-width: calc(100% - 95px);
    height: 55px;
    padding: 0 19px;

    border: 1px solid #000;
    border-radius: 30px;
}

footer .subscribe .submit_btn
{
    display: flex;

    width: 85px;
    height: 55px;
    margin-left: 10px;

    border-radius: 30px;
    background:    -moz-linear-gradient( -14deg, rgb(255,115,22) 0%, rgb(243,87,57) 100%);
    background: -webkit-linear-gradient( -14deg, rgb(255,115,22) 0%, rgb(243,87,57) 100%);
    background:     -ms-linear-gradient( -14deg, rgb(255,115,22) 0%, rgb(243,87,57) 100%);

    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

footer .subscribe .submit_btn img
{
    display: block;

    max-width: 100%;
    max-height: 100%;
}



footer .socials
{
    display: flex;

    justify-content: flex-start;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

footer .socials a
{
    display: flex;

    width: 44px;
    height: 44px;

    border: 1px solid #000;
    border-radius: 50%;

    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

footer .socials a + a
{
    margin-left: 10px;
}

footer .socials img
{
    display: block;

    max-width: 100%;
    max-height: 100%;
}



footer .links
{
    color: #000;
    font-size: 17px;
    line-height: 27px;

    display: flex;

    margin-bottom: -5px;
    margin-left: -42px;

    justify-content: flex-start;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

footer .links > *
{
    margin-bottom: 5px;
    margin-left: 42px;
}

footer .links a
{
    color: currentColor;

    display: inline-block;

    vertical-align: top;
    text-decoration: none;
}

footer .links a:hover
{
    text-decoration: underline;
}



footer .copyright
{
    color: #000;
    font-size: 17px;
    font-weight: 300;
    line-height: 27px;
}



/*-----------
    PopUp
-----------*/
.modal
{
    display: none;
    visibility: visible !important;

    width: 1170px;
    max-width: 100%;
    padding: 83px;

    border-radius: 5px;
    background: #f8f4eb;
}

.modal_title
{
    color: #313131;
    font-family: var(--font_family3);
    font-size: var(--font_size_title);
    font-weight: 700;
    line-height: calc(var(--font_size_title) + 10px);

    margin-bottom: 40px;

    text-align: center;
}

.buttonUp
{
    position: fixed;
    z-index: 999;
    right: 10px;
    bottom: 40px;

    display: none;

    /*margin-right: -761px;*/
}

.buttonUp button
{
    position: relative;

    display: block;

    width: 70px;
    height: 68px;

    cursor: pointer;
    transition: .2s linear;

    border: none;
    border-radius: 10px;
    background: #5e4743 url(../images/ic_buttonUp.svg) 50% no-repeat;
}

.buttonUp button:hover
{
    background-color: rgb(243,87,57);
}


.rest-mod {
	text-align: center;
    font-size: 18px;
}

.rest-mod a {
	text-decoration: none;
	margin-right: 10px;
	display: inline-block;
	color: rgb(243,87,57);
}

.rest-mod a span {
	border-bottom: 1px dashed;
}

.rest-mod a.active {
	font-weight: bold;
}

footer .contacts {
	width: 480px;
}

/*
.info_block.about:before,
.info_block.about:after,
.articles:before,
.articles:after,
.info_block:after,
.info_block:before
{
	background: none !important;
}

.info_block.about, .articles, .info_block {
	background: url(../images/ng.jpg) no-repeat;
}

*/

.ng23 {
	position: absolute; top: 0; right: 0; width: 150px;
	
}