/* 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;
    }
}



/*------------------
    Reset styles
------------------*/
*
{
    box-sizing: border-box;
    margin: 0;
    padding: 0;

    scroll-margin-top: 100px;
}

*: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;

    overscroll-behavior: none;
    -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;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button
{
    margin: 0;

    -webkit-appearance: none;
}

input[type=number]
{
    -moz-appearance: textfield;
}

: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: #fff;
    --scroll_width: 17px;
    --text_color: #333;
    --font_size: 18px;
    --font_size_title: 36px;
    --font_family: 'Manrope', 'Arial', sans-serif;
}


::selection
{
    color: #fff;

    background: #2b6461;
}

::-moz-selection
{
    color: #fff;

    background: #2b6461;
}


.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: var(--bg);
}

html.custom_scroll ::-webkit-scrollbar-thumb
{
    background-color: #2b6461;
}

html.custom_scroll
{
    scrollbar-color: #2b6461 var(--bg);
    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.menu_open
{
    /*
    position: fixed;
    top: 0;
    left: 0;
    */


    overflow: hidden;

    width: 100%;
    height: 100%;
    min-height: -moz-available;
    min-height: -webkit-fill-available;
    min-height:         fill-available;
}


button
{
    color: inherit;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;

    display: inline-block;

    cursor: pointer;
    vertical-align: top;

    border: none;
    background: none;
}


.wrap
{
    position: relative;
    z-index: 9;

    display: flex;
    overflow: hidden;
    flex-direction: column;

    min-width: 375px;
    min-height: 100%;

    background: var(--bg);
}


.main
{
    display: flex;
    flex-direction: column;

    flex: 1 0 auto;
}


.cont
{
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 100px;
}


.lazyload,
.swiper-lazy
{
    transition: opacity .5s linear;

    opacity: 0;
}

.lazyload.loaded,
.swiper-lazy-loaded
{
    opacity: 1;
}


.row
{
    display: flex;

    justify-content: flex-start;
    align-items: flex-start;
    align-content: flex-start;
    flex-wrap: wrap;
}



.block
{
    margin-bottom: 70px;
}

.block.no_margin
{
    margin-bottom: 0 !important;
}



.overlay
{
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;

    display: none;

    width: 100%;
    height: 100%;

    opacity: .65;
    background: #000;
}



/*--------------
    Fancybox
--------------*/
.fancybox__backdrop
{
    background: rgba(0, 0, 0, .6);
}


.fancybox__slide
{
    padding: 40px;
}



/*-----------------
    Fade effect
-----------------*/
.fadeIn
{
    animation-name: fadeIn;
    animation-duration: .3s;
    animation-iteration-count: 1;
}


.fadeOut
{
    animation-name: fadeOut;
    animation-duration: .2s;
    animation-iteration-count: 1;
}



@keyframes fadeIn
{
    0%
    {
        opacity: 0;
    }

    100%
    {
        opacity: 1;
    }
}

@keyframes fadeOut
{
    0%
    {
        opacity: 1;
    }

    100%
    {
        opacity: 0;
    }
}



/*--------------
    ButtonUp
--------------*/
.buttonUp
{
    position: fixed;
    z-index: 90;
    right: 40px;
    bottom: 40px;

    display: none;
}


.buttonUp .btn
{
    color: #fff;

    display: flex;

    width: 62px;
    height: 62px;

    transition: background .2s linear;

    border-radius: 50%;
    background: #ae0b05;

    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}


.buttonUp .btn .icon
{
    display: block;

    width: 22px;
    height: 24px;
}


.buttonUp .btn:hover
{
    background: #d3241d;
}



/*------------
    Header
------------*/
.header_wrap.margin
{
    margin-bottom: 50px;
}


header
{
    position: relative;
    z-index: 9;
    top: 0;
    left: 0;

    width: 100%;
    padding: 16px 0;

    transition: padding .2s linear;

    background: rgba(255, 255, 255, .98);
    box-shadow: 0 2px 2px rgba(0, 0, 0, .25);
}


header .cont
{
    justify-content: space-between;
    align-items: center;
    align-content: center;
}



header .logo
{
    color: currentColor;

    display: block;

    text-decoration: none;
}


header .logo img
{
    display: block;

    height: 100px;
}

header .logo img + img
{
    display: none;

    height: 32px;
}



header .sep
{
    width: 1px;
    height: 54px;
    margin-left: 50px;

    background: #2b6461;
}



header .menu
{
    margin-right: auto;
    margin-left: 50px;
}


header .menu_item
{
    position: relative;
}


header .menu_item + .menu_item
{
    margin-left: 106px;
}

header .menu_item + .menu_item:before
{
    position: absolute;
    top: 0;
    bottom: 0;
    left: -56px;

    display: block;

    width: 6px;
    height: 6px;
    margin: auto;

    content: '';

    border-radius: 50%;
    background: #ee2f26;
}


header .menu_item > a,
header .menu_item > span
{
    color: #2b6461;
    font-weight: 600;
    line-height: calc(100% + 6px);

    position: relative;

    display: block;

    transition: color .2s linear;
    text-align: center;
    text-decoration: none;
    letter-spacing: .025em;
    text-transform: uppercase;
}

header .menu_item > a:after,
header .menu_item > span:after
{
    position: absolute;
    bottom: -9px;
    left: 0;

    width: 0;
    height: 2px;

    content: '';
    transition: width .3s linear;
    pointer-events: none;

    background: #ee2f26;
}


header .menu_item:hover > a,
header .menu_item > a.active,
header .menu_item > span
{
    color: #ee2f26;
}

header .menu_item > a:hover:after
{
    width: 100%;
}

header .menu_item > a.active:after,
header .menu_item > span:after
{
    width: 27px;
}

header .book_btn
{
    margin-left: auto;
    color: #2b6461;
    font-size: 10px;
    font-weight: 600;
    line-height: 14px;
    text-decoration: none;

    padding: 5px 9px;

    transition: .2s linear;
    letter-spacing: .2em;
    text-transform: uppercase;

    border: 1px solid #2b6461;
    border-radius: 10px;
}

header .book_btn:hover
{
    color: #ee2f26;

    border-color: #ee2f26;
}

header .langs
{
    color: #2b6461;
    font-weight: 600;
    line-height: calc(100% + 6px);

    letter-spacing: .025em;
    text-transform: uppercase;
    margin-left: 50px;
}


header .langs a
{
    color: currentColor;

    position: relative;

    transition: color .2s linear;
    white-space: nowrap;
    text-decoration: none;
}

header .langs a + a
{
    margin-left: 25px;
}


header .langs a:after
{
    position: absolute;
    bottom: -9px;
    left: 0;

    width: 0;
    height: 2px;

    content: '';
    transition: width .3s linear;
    pointer-events: none;

    background: #ee2f26;
}


header .langs a:hover
{
    color: #ee2f26;
}

header .langs a:hover:after
{
    width: 100%;
}



header .butcher
{
    margin-left: 50px;
}


header .butcher a
{
    color: currentColor;

    transition: opacity .2s linear;
    text-decoration: none;

    opacity: .3;
}


header .butcher img
{
    display: block;

    height: 32px;
}



header.fixed
{
    position: fixed;

    margin: 0;
    padding: 19px 0;

    -webkit-animation: moveDown .5s;
            animation: moveDown .5s;
}


header.fixed .logo img
{
    display: none;
}

header.fixed .logo img + img
{
    display: block;
}


header.fixed .sep
{
    height: 32px;
}


header.fixed .menu_item > a,
header.fixed .langs
{
    font-size: 16px;
}


header.fixed .butcher img
{
    height: 28px;
}


@-webkit-keyframes moveDown
{
    0%
    {
        -webkit-transform: translateY(-100%);
                transform: translateY(-100%);
    }
}

@-moz-keyframes moveDown
{
    0%
    {
        -webkit-transform: translateY(-100%);
                transform: translateY(-100%);
    }
}

@keyframes moveDown
{
    0%
    {
        -webkit-transform: translateY(-100%);
                transform: translateY(-100%);
    }
}



/*-----------------
    Mob. header
-----------------*/
.mob_header_wrap.margin
{
    margin-bottom: 50px;
}


.mob_header
{
    position: relative;
    z-index: 20;
    top: 0;
    left: 0;

    display: none;

    width: 100%;
    padding: 12px 0;

    background: rgba(255, 255, 255, .98);
    box-shadow: 0 2px 2px rgba(0, 0, 0, .25);
}

.mob_header.fixed
{
    position: fixed;
}


.mob_header .cont
{
    justify-content: space-between;
    align-items: center;
    align-content: center;
}



.mob_header .logo
{
    color: currentColor;

    display: block;

    margin-right: auto;

    text-decoration: none;
}

.mob_header .logo img
{
    display: block;

    height: 75px;
}



.mob_header .sep
{
    width: 1px;
    height: 54px;
    margin-left: 24px;

    background: #2b6461;
}



.mob_header .mob_menu_btn
{
    color: #2b6461;

    display: flex;

    width: 40px;
    height: 40px;
    margin-left: 24px;

    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}


.mob_header .mob_menu_btn .icon
{
    display: block;

    width: 40px;
    height: 40px;
}

.mob_header .mob_menu_btn .icon + .icon
{
    width: 18px;
    height: 16px;
}

.mob_header .mob_menu_btn .icon + .icon,
.mob_header .mob_menu_btn.active .icon
{
    display: none;
}

.mob_header .mob_menu_btn.active .icon + .icon
{
    display: block;
}



/*----------------
    Block head
----------------*/
.block_head
{
    margin-bottom: 70px;
}


.block_head .title
{
    font-size: var(--font_size_title);
    font-weight: 800;
    line-height: calc(100% + 13px);

    display: block;

    letter-spacing: .03em;
    text-transform: uppercase;
}


.block_head.center
{
    text-align: center;
}



/*------------------
    Form elements
------------------*/
.form
{
    --form_border_color: #2b6461;
    --form_focus_color: #2b6461;
    --form_error_color: #ee2f26;
    --form_bg_color: none;
    --form_placeholder_color: #828282;
}


.form ::-webkit-input-placeholder
{
    color: var(--form_placeholder_color);
    text-transform: uppercase;
}

.form :-moz-placeholder
{
    color: var(--form_placeholder_color);
    text-transform: uppercase;
}

.form ::-moz-placeholder
{
    color: var(--form_placeholder_color);
    text-transform: uppercase;

    opacity: 1;
}

.form :-ms-input-placeholder
{
    color: var(--form_placeholder_color);
    text-transform: uppercase;
}


.form .cols
{
    margin-bottom: 14px;

    justify-content: space-between;
}

.form .cols .col
{
    width: calc(50% - 11px);
}


.form .line
{
    margin-bottom: 20px;
}


.form .label
{
    color: #828282;
    font-size: 12px;
    font-weight: 600;
    line-height: 16px;

    margin-bottom: 12px;

    letter-spacing: .2em;
    text-transform: uppercase;
}


.form .field
{
    position: relative;
}


.form .input
{
    color: #151515;
    font-family: var(--font_family);
    font-size: 14px;
    font-weight: 600;

    display: block;

    width: 100%;
    height: 36px;

    transition: border-color .2s linear;
    letter-spacing: .2em;

    border: none;
    border-bottom: 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 .input.error
{
    border-color: var(--form_error_color);
}

.form .label.error
{
    color: var(--form_error_color);
}

.form .address .label
{
    margin-bottom: 20px;
}


.form .address .field > * + *
{
    margin-top: 19px;
}


.form .address label
{
    display: inline-block;

    cursor: pointer;
    vertical-align: top;
}


.form .address input
{
    display: none;
}


.form .address label div
{
    color: #2b6461;
    font-size: 10px;
    font-weight: 600;
    line-height: 14px;

    padding: 5px 9px;

    transition: .2s linear;
    letter-spacing: .2em;
    text-transform: uppercase;

    border: 1px solid #2b6461;
    border-radius: 10px;
}

.form .address input:checked + div
{
    color: #fff;

    background: #2b6461;
}


.form .date .field
{
    display: flex;

    justify-content: flex-start;
    align-items: flex-start;
    align-content: flex-start;
    flex-wrap: wrap;
}


.form .date .field > *
{
    position: relative;
}

.form .date .field > * + *
{
    margin-left: 25px;
}


.form .date .arr
{
    color: #ee2f26;

    position: absolute;
    z-index: 9;
    top: 0;
    right: 0;

    display: block;

    width: 18px;
    height: 18px;

    pointer-events: none;
}


.form select
{
    display: none;
}


.form .nice-select
{
    position: relative;

    display: block;

    cursor: pointer;
}


.form .nice-select .current
{
    color: #151515;
    font-size: 14px;
    font-weight: 600;
    line-height: 19px;

    position: relative;

    display: block;
    overflow: hidden;

    min-width: 38px;
    padding-right: 23px;
    padding-bottom: 12px;

    cursor: pointer;
    white-space: nowrap;
    letter-spacing: .025em;
    text-overflow: ellipsis;

    border-bottom: 1px solid var(--form_border_color);
}


.form .nice-select-dropdown
{
    position: absolute;
    z-index: 9;
    top: 100%;
    right: 0;

    visibility: hidden;
    overflow: hidden;

    min-width: 100%;

    transition: .2s linear;

    opacity: 0;
    background: #fff;
    box-shadow: 0 4px 4px rgba(0, 0, 0, .25);
}

.form .nice-select.open .nice-select-dropdown
{
    visibility: visible;

    opacity: 1;
}


.form .nice-select .list
{
    overflow: auto;

    max-height: 162px;
}

.form .nice-select .list::-webkit-scrollbar
{
    width: 5px;
    height: 5px;
}


.form .nice-select .list .option
{
    color: #151515;
    font-size: 14px;
    line-height: 19px;

    padding: 4px 11px;

    cursor: pointer;
    transition: color .2s linear;
    white-space: nowrap;
}

.form .nice-select .list .option:empty
{
    display: none;
}

.form .nice-select .list .option:hover,
.form .nice-select .list .option.selected
{
    color: #ee2f26;
}


.form .captcha .label
{
    color: #333;
    font-size: 11px;
    font-weight: 400;
    line-height: 15px;

    margin-bottom: 12px;

    letter-spacing: 0;
    text-transform: none;
}


.form .captcha .field
{
    display: flex;

    justify-content: space-between;
    align-items: flex-end;
    align-content: flex-end;
    flex-wrap: wrap;
}


.form .captcha img
{
    display: block;

    width: 144px;
    height: 32px;

    object-fit: cover;
}


.form .captcha .input
{
    width: calc(100% - 152px);
    margin-left: auto;
}


.form .agree label
{
    font-size: 11px;
    line-height: 15px;

    display: flex;

    min-height: 24px;
    padding-left: 35px;

    cursor: pointer;

    justify-content: flex-start;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;

}

.form .agree label > *
{
    pointer-events: none;
}

.form .agree .link-policy {
    padding-left: 35px;
    font-size: 11px;
}
.form .agree .link-policy a {
    color: #333;
}



.form .agree input
{
    display: none;
}


.form .agree .check
{
    color: #2b6461;

    position: absolute;
    top: 0;
    left: 0;

    display: flex;

    width: 24px;
    height: 24px;

    border: 2px solid #2b6461;
    border-radius: 5px;
    background: rgba(224, 227, 226, .4);

    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.form .agree .check svg
{
    display: block;

    width: 17px;
    height: 13px;

    transition: opacity .2s linear;

    opacity: 0;
}


.form .agree input:checked + .check svg
{
    opacity: 1;
}


.form .submit
{
    display: flex;

    padding-top: 7px;

    justify-content: flex-start;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}


.form .submit_btn
{
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    line-height: 16px;

    display: flex;

    padding: 16px 32px;

    transition: all .2s linear;
    letter-spacing: .2em;
    text-transform: uppercase;

    border-radius: 10px;
    background: #2b6461;

    justify-content: flex-start;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}


.form .submit_btn .icon
{
    display: block;

    width: 16px;
    height: 16px;
    margin-left: 12px;

    transform: rotate(180deg);
}


.form .submit_btn:hover
{
    background: #ee2f26;
    transform: scale(1.1, 1.1);
}

.form .error_text {
    color: var(--form_error_color);
    font-size: 12px;
    margin-top: 5px;
}

/*----------------
    Typography
----------------*/
.text_block
{
    font-size: var(--font_size);
    line-height: calc(100% + 14px);

    letter-spacing: .025em;
}


.text_block > *
{
    margin-bottom: 30px;
}


.text_block > :last-child
{
    margin-bottom: 0 !important;
}

.text_block > :first-child
{
    margin-top: 0 !important;
}


.text_block img
{
    display: block;

    max-width: 100%;
    margin: 50px auto;

    border-radius: 40px 0 0 0;
}

.text_block img.loaded
{
    height: auto !important;
}



/*-----------------
    Main slider
-----------------*/
.main_slider
{
    position: relative;
    z-index: 3;
}


.main_slider .swiper-slide
{
    position: relative;
    z-index: 3;

    overflow: hidden;

    background: #ddd;
}

.main_slider .swiper-slide.active
{
    z-index: 5;
}

.main_slider .swiper-slide:before
{
    position: absolute;
    z-index: 2;
    bottom: 0;
    left: 0;

    display: block;

    width: 100%;
    height: 318px;

    content: '';

    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, .65) 87.43%);
}


.main_slider .bg
{
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;

    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}


.main_slider .cont
{
    position: relative;
    z-index: 3;

    display: flex;

    height: calc(100vh - 132px);
    padding-top: 119px;
    padding-bottom: 119px;

    justify-content: flex-start;
    align-items: flex-end;
    align-content: flex-end;
    flex-wrap: wrap;
}


.main_slider .title
{
    color: #fff;
    font-size: 64px;
    font-weight: 800;
    line-height: calc(100% + 23px);

    display: inline-block;

    vertical-align: top;
    letter-spacing: .03em;
}

.main_slider .title span
{
    color: #333;

    display: inline-block;

    margin-top: 32px;
    margin-left: 368px;
    padding: 3px 27px 17px 21px;

    vertical-align: top;
    letter-spacing: .03em;

    border-radius: 0 0 40px 0;
    background: rgba(255, 255, 255, .98);
}



.main_slider .scroll_down
{
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    line-height: 16px;

    position: absolute;
    z-index: 5;
    right: 0;
    bottom: 37px;
    left: 0;

    display: flex;

    padding: 8px 0;

    cursor: pointer;
    letter-spacing: .2em;
    text-transform: uppercase;

    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;

    transition: all 0.2s linear;
}

.main_slider .scroll_down:hover {
    transform: scale(1.2, 1.2);
}

.main_slider .scroll_down .icon
{
    display: block;

    width: 9px;
    height: 16px;
    margin-left: 10px;
}



/*-------------------
    Photo gallery
-------------------*/
.photo_gallery .row
{
    margin-bottom: -24px;
    margin-left: -51px;

    align-items: stretch;
    align-content: stretch;
}

.photo_gallery .row > *
{
    width: calc(25% - 51px);
    margin-bottom: 24px;
    margin-left: 51px;
}


.photo_gallery .item
{
    position: relative;

    padding-bottom: 23px;

    transition: background-position .3s linear;

    border-bottom: 1px solid #2b6461;
    background: url(../images/bg_lines.svg) 100% calc(100% - 4px) no-repeat;
}

.photo_gallery .item.hidden
{
    display: none;
}


.photo_gallery .item .thumb
{
    color: currentColor;

    position: relative;

    display: block;
    overflow: hidden;

    padding-bottom: 100%;

    text-decoration: none;

    border-radius: 40px 0 0 0;
    background: #ddd;
}

.photo_gallery .item .thumb img
{
    position: absolute;
    top: 0;
    left: 0;

    display: block;

    width: 100%;
    height: 100%;

    border-radius: inherit;

    object-fit: cover;
}


.photo_gallery .item:hover
{
    background-position: 0 calc(100% - 4px);
}



/*----------------
    About info
----------------*/
.about_info .data
{
    width: calc(50% - 132px);
}


.about_info .title
{
    font-size: var(--font_size_title);
    font-weight: 800;
    line-height: calc(100% + 13px);

    letter-spacing: .03em;
}


.about_info .desc
{
    margin-top: 70px;
}


.about_info .image
{
    width: calc(50% + 60px);
    margin-left: auto;
}


.about_info .image div
{
    position: relative;

    overflow: hidden;

    padding-bottom: 59.021%;

    border-radius: 40px 0 0 0;
    background: #ddd;
}

.about_info .image div img
{
    position: absolute;
    top: 0;
    left: 0;

    display: block;

    width: 100%;
    height: 100%;

    border-radius: inherit;

    object-fit: cover;
}



/*------------------
    Action block
------------------*/
.action_block
{
    position: relative;

    padding: 84px 0;

    background: rgba(224, 227, 226, .4);
}


.action_block .cont
{
    position: relative;
    z-index: 3;
}


.action_block .text_block
{
    font-size: 24px;
    line-height: calc(100% + 16px);

    width: 1048px;
    max-width: 100%;
    margin-right: auto;
    margin-left: auto;

    text-align: center;
}



.action_block .logo
{
    position: absolute;
    z-index: 1;

    display: block;

    height: 254px;
    margin: auto;

    opacity: .07;

    inset: 0;
}



/*-------------------
    Working hours
-------------------*/
.working_hours .row
{
    width: 1291px;
    max-width: 100%;
    margin-right: auto;
    margin-left: auto;

    justify-content: center;
}

.working_hours .row > *
{
    width: 33.333%;
}


.working_hours .item
{
    text-align: center;
    letter-spacing: .025em;
}


.working_hours .item .icon
{
    display: flex;

    height: 72px;
    margin-bottom: 34px;

    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.working_hours .item .icon img
{
    display: block;

    max-width: 100%;
    max-height: 100%;
}


.working_hours .item .label
{
    font-size: 14px;
    line-height: calc(100% + 5px);
}


.working_hours .item .val
{
    font-size: 18px;
    line-height: calc(100% + 14px);

    margin-top: 4px;
}



/*----------------
    Categories
----------------*/
.categories .row
{
    margin-bottom: -50px;
    margin-left: -50px;

    align-items: stretch;
    align-content: stretch;
}

.categories .row > *
{
    width: calc(25% - 50px);
    margin-bottom: 50px;
    margin-left: 50px;
}


.categories .category
{
    color: #2b6461;

    display: block;

    padding-bottom: 23px;

    transition: color .2s linear;
    text-decoration: none;

    border-bottom: 1px solid #2b6461;
}


.categories .category .thumb
{
    position: relative;

    overflow: hidden;

    margin-bottom: 25px;
    padding-bottom: 163.358%;

    border-radius: 40px 0 0 0;
    background: #d9d9d9;
}

.categories .category .thumb img
{
    position: absolute;
    top: 0;
    left: 0;

    display: block;

    width: 100%;
    height: 100%;

    transition: transform .2s linear;

    border-radius: inherit;

    object-fit: cover;
}


.categories .category .name
{
    font-size: 28px;
    font-weight: 700;
    line-height: calc(100% + 10px);

    display: flex;

    min-height: 91px;
    padding: 0 30px;

    letter-spacing: .03em;
    text-transform: uppercase;

    justify-content: space-between;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}


.categories .category .name span
{
    display: block;

    width: calc(100% - 64px);
}


.categories .category .name .icon
{
    display: block;

    width: 40px;
    height: 40px;
    margin-left: auto;

    transition: transform .2s linear;
    transform: scale(1, -1);
}


.categories .category:hover
{
    color: #ee2f26;
}

.categories .category:hover .thumb img
{
    transform: scale(1.1);
}

.categories .category:hover .name .icon
{
    transform: scale(1.2, -1.2);
}



/*-------------------
    Photos slider
-------------------*/
.photos_slider .image
{
    color: currentColor;

    position: relative;

    display: block;
    overflow: hidden;

    padding-bottom: 47.389%;

    text-decoration: none;

    border-radius: 40px 0 0;
    background: #ddd;
}

.photos_slider .image img
{
    position: absolute;
    top: 0;
    left: 0;

    display: block;

    width: 100%;
    height: 100%;

    border-radius: inherit;

    object-fit: cover;
}



/*------------
    Events
------------*/
.events .row
{
    margin-bottom: -55px;
    margin-left: -48px;

    align-items: stretch;
    align-content: stretch;
}

.events .row > *
{
    width: calc(50% - 48px);
    margin-bottom: 55px;
    margin-left: 48px;
}

.events .row > *.big
{
    width: calc(100% - 48px);
}


.events .event
{
    color: currentColor;

    display: flex;

    padding-bottom: 21px;

    transition: border-color .2s linear;
    text-decoration: none;

    border-bottom: 1px solid #2b6461;

    justify-content: space-between;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}


.events .event .thumb
{
    position: relative;

    overflow: hidden;

    width: 100%;
    margin-bottom: 25px;
    padding-bottom: 39.385%;

    border-radius: 40px 0 0 0;
    background: #ddd;
}

.events .event .thumb img
{
    position: absolute;
    top: 0;
    left: 0;

    display: block;

    width: 100%;
    height: 100%;

    transition: transform .2s linear;

    border-radius: inherit;

    object-fit: cover;
}


.events .event .name
{
    font-size: 20px;
    font-weight: 600;
    line-height: calc(100% + 12px);

    display: flex;

    width: 100%;

    transition: color .2s linear;
    letter-spacing: .025em;

    justify-content: space-between;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}


.events .event .name span
{
    display: block;

    width: calc(100% - 146px);
}


.events .event .name .icon
{
    color: #2b6461;

    display: block;

    width: 40px;
    height: 40px;
    margin-left: auto;

    transition: .2s linear;
    transform: scale(1, -1);
}


.events .event .desc
{
    font-size: 14px;
    line-height: 19px;

    width: calc(100% - 356px);
    min-height: 35px;
    margin-top: 16px;

    letter-spacing: .025em;
}


.events .event .date
{
    color: #828282;
    font-weight: 600;
    line-height: calc(100% + 6px);

    width: 250px;
    max-width: 100%;
    margin-top: 16px;

    text-align: right;
    letter-spacing: .025em;
    text-transform: uppercase;

    align-self: flex-end;
}


.events .event:hover
{
    border-color: #ee2f26;
}

.events .event:hover .name,
.events .event:hover .name .icon
{
    color: #ee2f26;
}

.events .event:hover .thumb img
{
    transform: scale(1.1);
}

.events .event:hover .name .icon
{
    transform: scale(1.2, -1.2);
}



/*----------------
    Event info
----------------*/
.event_info .head
{
    display: flex;

    margin-bottom: 34px;

    justify-content: space-between;
    align-items: flex-start;
    align-content: flex-start;
    flex-wrap: wrap;
}


.event_info .event_name
{
    font-size: 30px;
    font-weight: 800;
    line-height: calc(100% + 11px);

    display: block;

    letter-spacing: .03em;
}


.event_info .date
{
    color: #828282;
    font-size: 18px;
    font-weight: 600;
    line-height: calc(100% + 6px);

    margin-top: 6px;

    letter-spacing: .025em;
    text-transform: uppercase;
}


.event_info .back_btn
{
    color: #2b6461;
    font-size: 12px;
    font-weight: 600;
    line-height: 16px;

    margin-left: auto;
    padding: 16px 0;

    letter-spacing: .2em;
    text-transform: uppercase;
}


.event_info .back_btn a
{
    color: currentColor;

    display: flex;

    transition: color .2s linear;
    text-decoration: none;

    justify-content: flex-start;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.event_info .back_btn a:hover
{
    color: #ee2f26;
}


.event_info .back_btn .icon
{
    display: block;

    width: 16px;
    height: 16px;
    margin-left: 12px;
}



.event_info > .desc
{
    font-size: 18px;
    line-height: calc(100% + 14px);

    padding: 70px 0;

    text-align: center;
    letter-spacing: .025em;

    background: rgba(224, 227, 226, .4);
}

.event_info > .desc.left-text
{
    text-align: left;
}


.event_info > .desc .text_block
{
    width: 1280px;
    max-width: 100%;
    margin-right: auto;
    margin-left: auto;
}

.event_info > .desc.left-text .text_block {
    width: 100%;
}



.event_info .dishes
{
    margin-top: 50px;
}



/*------------
    Dishes
------------*/
.dishes .row
{
    margin-bottom: -50px;
    margin-left: -50px;

    align-items: stretch;
    align-content: stretch;
}

.dishes .row > *
{
    width: calc(33.333% - 50px);
    margin-bottom: 50px;
    margin-left: 50px;
}


.dishes .dish
{
    font-size: 18px;

    display: flex;
    flex-direction: column;

    padding-bottom: 21px;

    border-bottom: 1px solid #2b6461;
}


.dishes .dish .thumb
{
    color: currentColor;

    position: relative;

    display: block;
    overflow: hidden;

    margin-bottom: 17px;
    padding-bottom: 55.555%;

    text-decoration: none;

    border-radius: 40px 0 0 0;
    background: #d9d9d9;
}

.dishes .dish .thumb img
{
    position: absolute;
    top: 0;
    left: 0;

    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}


.dishes .dish .name
{
    font-weight: 600;
    line-height: calc(100% + 6px);

    width: 382px;
    max-width: 100%;

    letter-spacing: .025em;
}


.dishes .dish .name a
{
    color: currentColor;

    display: inline-block;

    transition: color .2s linear;
    vertical-align: top;
    text-decoration: none;
}


.dishes .dish .thumb:hover ~ .name a,
.dishes .dish .name a:hover
{
    color: #ee2f26;
}


.dishes .dish .desc
{
    line-height: calc(100% + 14px);

    margin-top: 16px;

    letter-spacing: .025em;
}


.dishes .dish .price
{
    color: #828282;
    font-weight: 600;
    line-height: calc(100% + 6px);

    margin-top: auto;

    text-align: right;
    letter-spacing: .025em;
}



/*----------------
    Add review
----------------*/
.add_review
{
    position: relative;

    padding: 50px 0;

    background: rgba(224, 227, 226, .4);
}


.add_review .title
{
    font-size: 18px;
    font-weight: 600;
    line-height: calc(100% + 6px);

    width: 382px;
    max-width: 100%;

    letter-spacing: .025em;
}


.add_review .form
{
    width: 533px;
    max-width: 100%;
    margin-left: 217px;
}



.add_review .success
{
    font-size: 24px;
    font-weight: 600;
    line-height: calc(100% + 8px);

    position: absolute;
    z-index: 50;
    top: 0;
    left: 0;

    display: flex;

    width: 100%;
    height: 100%;

    text-align: center;
    letter-spacing: .025em;

    background: #f1f2f1;

    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.add_review .success.show
{
    display: flex;
}



/*--------------
    All link
--------------*/
.all_link
{
    display: flex;

    margin-top: 40px;

    justify-content: flex-end;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}


.all_link a
{
    color: #2b6461;
    font-size: 12px;
    font-weight: 600;
    line-height: 16px;

    display: flex;

    padding: 8px 0;

    transition: color .2s linear;
    text-decoration: none;
    letter-spacing: .2em;
    text-transform: uppercase;

    justify-content: flex-start;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}


.all_link .icon
{
    position: relative;
    top: -1px;

    display: block;

    width: 14px;
    height: 14px;
    margin-left: 10px;
}


.all_link a:hover
{
    color: #ee2f26;
}



/*------------
    Places
------------*/
.places .row
{
    margin-bottom: -76px;
    margin-left: -76px;

    align-items: stretch;
    align-content: stretch;
}

.places .row > *
{
    width: calc(33.333% - 76px);
    margin-bottom: 76px;
    margin-left: 76px;
}


.places .place .thumb
{
    position: relative;

    overflow: hidden;

    width: 100%;
    margin-bottom: 20px;
    padding-bottom: 57.471%;

    border-radius: 40px 0 0 0;
    background: #ddd;
}

.places .place .thumb img
{
    position: absolute;
    top: 0;
    left: 0;

    display: block;

    width: 100%;
    height: 100%;

    border-radius: inherit;

    object-fit: cover;
}


.places .place .address
{
    font-size: 16px;
    font-weight: 600;
    line-height: calc(100% + 6px);

    letter-spacing: .025em;
}


.places .place .metro
{
    color: #828282;
    font-size: 12px;
    line-height: 16px;

    display: flex;

    margin-top: 5px;

    justify-content: space-between;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.places .place .metro .icon
{
    display: block;

    width: 16px;
    height: 16px;
}

.places .place .metro span
{
    width: calc(100% - 20px);
}


.places .place .logo
{
    margin-top: 13px;
}

.places .place .logo img
{
    display: block;

    height: 17px;
}


.places .place .phone
{
    display: flex;

    margin-top: 33px;

    justify-content: space-between;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}


.places .place .phone a
{
    color: currentColor;
    font-size: 16px;
    line-height: 22px;

    display: inline-block;

    vertical-align: top;
    white-space: nowrap;
    text-decoration: none;
    letter-spacing: .025em;
}


.places .place .phone .book_btn
{
    color: #2b6461;
    font-size: 10px;
    font-weight: 600;
    line-height: 14px;

    padding: 5px 9px;

    transition: .2s linear;
    letter-spacing: .2em;
    text-transform: uppercase;

    border: 1px solid #2b6461;
    border-radius: 10px;
}

.places .place .phone .book_btn:hover
{
    color: #ee2f26;

    border-color: #ee2f26;
}


.places .place .links
{
    color: #2b6461;
    font-size: 12px;
    font-weight: 600;
    line-height: 16px;

    display: flex;

    margin-top: 19px;
    padding-top: 12px;

    letter-spacing: .2em;
    text-transform: uppercase;

    border-top: 1px solid #2b6461;

    justify-content: space-between;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}


.places .place .links a
{
    color: currentColor;

    display: flex;

    padding: 8px 0;

    transition: .2s linear;
    text-decoration: none;

    justify-content: flex-start;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}


.places .place .links .icon
{
    display: block;

    width: 14px;
    height: 14px;
    margin-left: 10px;

    transform: scale(1, -1);
}


.places .place .links a:hover
{
    color: #ee2f26;

    transform: scale(1.2) translateX(7%);
}

.places .place .links > * + * a:hover
{
    transform: scale(1.2) translateX(-7%);
}



/*------------
    Footer
------------*/
footer
{
    position: relative;

    padding: 50px 0 30px;
}

footer:before
{
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;

    display: block;

    width: calc(100vw - 634px);
    height: 100%;

    content: '';

    background: rgba(224, 227, 226, .4);
}


footer .cont
{
    position: relative;
    z-index: 3;

    justify-content: space-between;
    align-items: stretch;
    align-content: stretch;
}



footer .cont + .cont
{
    margin-top: 27px;
}



footer .col_left
{
    display: flex;

    width: calc(100% - 634px);

    justify-content: space-between;
    align-items: flex-start;
    align-content: flex-start;
    flex-wrap: wrap;
}

footer .col_left.border
{
    padding-top: 29px;

    border-top: 1px solid #2b6461;
}



footer .places
{
    width: 100%;
}


footer .places .row
{
    margin-bottom: -48px;
    margin-left: -48px;
}

footer .places .row > *
{
    width: calc(33.333% - 48px);
    margin-bottom: 48px;
    margin-left: 48px;
}


footer .places .place
{
    padding-top: 19px;

    border-top: 1px solid #2b6461;
}



footer .main_logo
{
    width: 434px;
    max-width: 100%;
    margin-left: auto;
    padding-top: 50px;

    border-top: 1px solid #2b6461;
}

footer .main_logo img
{
    display: block;

    height: 180px;
    margin-right: auto;
    margin-left: auto;
}


footer .menu_item + .menu_item
{
    margin-left: 48px;
}


footer .menu_item > a,
footer .menu_item > span
{
    color: #2b6461;
    font-size: 12px;
    font-weight: 600;
    line-height: 16px;

    position: relative;

    display: block;

    transition: color .2s linear;
    text-align: center;
    text-decoration: none;
    letter-spacing: .1em;
    text-transform: uppercase;
}

footer .menu_item > a:after,
footer .menu_item > span:after
{
    position: absolute;
    bottom: -9px;
    left: 0;

    width: 0;
    height: 2px;

    content: '';
    transition: width .3s linear;
    pointer-events: none;

    background: #ee2f26;
}


footer .menu_item:hover > a,
footer .menu_item > a.active,
footer .menu_item > span
{
    color: #ee2f26;
}

footer .menu_item > a:hover:after,
footer .menu_item > a.active:after,
footer .menu_item > span:after
{
    width: 100%;
}

footer .small-menu {
    margin-top: 42px;
}

footer .small-menu .menu_item + .menu_item {
    margin-left: 24px;
}

footer .small-menu .menu_item > a,
footer .small-menu .menu_item > span
{
    font-size: 10px;
    line-height: 14px;
}
footer .small-menu .menu_item > a:after,
footer .small-menu .menu_item > span:after {
    bottom: -7px;
    height: 1px;
}

footer .langs
{
    color: #2b6461;
    font-size: 12px;
    font-weight: 600;
    line-height: 16px;

    margin-left: auto;

    letter-spacing: .2em;
    text-transform: uppercase;
}


footer .langs a
{
    color: currentColor;

    position: relative;

    transition: color .2s linear;
    white-space: nowrap;
    text-decoration: none;
}

footer .langs a + a
{
    margin-left: 15px;
}

footer .langs a:after
{
    position: absolute;
    bottom: -9px;
    left: 0;

    width: 0;
    height: 2px;

    content: '';
    transition: width .3s linear;
    pointer-events: none;

    background: #ee2f26;
}


footer .langs a:hover
{
    color: #ee2f26;
}

footer .langs a:hover:after
{
    width: 100%;
}



footer .copyright
{
    font-size: 12px;
    line-height: 16px;

    width: 434px;
    max-width: 100%;
    margin-left: auto;
    padding-top: 28px;

    text-align: center;
    text-transform: uppercase;

    border-top: 1px solid #2b6461;
}

footer .copyright br
{
    display: none;
}

@media print,
(max-width: 1899px)
{
    /*-------------------
        Global styles
    -------------------*/
    :root
    {
        --font_size: 16px;
        --font_size_title: 32px;
    }


    .cont
    {
        padding: 0 40px;
    }


    .swiper-button-prev
    {
        left: 80px;
    }

    .swiper-button-next
    {
        right: 80px;
    }



    /*------------
        Header
    ------------*/
    header .sep
    {
        height: 48px;
        margin-left: 40px;
    }


    header .menu
    {
        margin-left: 40px;
    }


    header .menu_item + .menu_item
    {
        margin-left: 90px;
    }

    header .menu_item + .menu_item:before
    {
        left: -48px;
    }


    header .butcher
    {
        margin-left: 40px;
    }



    /*----------------
        Block head
    ----------------*/
    .block_head
    {
        margin-bottom: 60px;
    }



    /*-----------------
        Main slider
    -----------------*/
    .main_slider .title
    {
        font-size: 60px;
        line-height: calc(100% + 20px);
    }

    .main_slider .title span
    {
        margin-top: 24px;
        margin-left: 360px;
        padding: 0 24px 16px;
    }



    /*-------------------
        Photo gallery
    -------------------*/
    .photo_gallery .row
    {
        margin-bottom: -40px;
        margin-left: -40px;
    }

    .photo_gallery .row > *
    {
        width: calc(25% - 40px);
        margin-bottom: 40px;
        margin-left: 40px;
    }



    /*----------------
        About info
    ----------------*/
    .about_info .data,
    .about_info .image
    {
        width: calc(50% - 20px);
    }


    .about_info .desc
    {
        margin-top: 40px;
    }



    /*------------------
        Action block
    ------------------*/
    .action_block
    {
        padding: 80px 0;
    }


    .action_block .text_block
    {
        font-size: 22px;
        line-height: calc(100% + 12px);

        width: 980px;
    }



    /*-------------------
        Working hours
    -------------------*/
    .working_hours .row
    {
        width: 1124px;
    }



    /*------------
        Places
    ------------*/
    .places .place .links
    {
        letter-spacing: .1em;
    }



    /*----------------
        Categories
    ----------------*/
    .categories .row
    {
        margin-bottom: -40px;
        margin-left: -40px;
    }

    .categories .row > *
    {
        width: calc(25% - 40px);
        margin-bottom: 40px;
        margin-left: 40px;
    }


    .categories .category .thumb
    {
        margin-bottom: 24px;
    }


    .categories .category .name
    {
        font-size: 24px;
        line-height: calc(100% + 8px);

        min-height: 72px;
        padding: 0 20px;
    }

    .categories .category .name span
    {
        width: calc(100% - 44px);
    }


    .categories .category .name .icon
    {
        width: 32px;
        height: 32px;
    }



    /*------------
        Events
    ------------*/
    .events .row
    {
        margin-bottom: -40px;
        margin-left: -40px;
    }

    .events .row > *
    {
        width: calc(50% - 40px);
        margin-bottom: 40px;
        margin-left: 40px;
    }

    .events .row > *.big
    {
        width: calc(100% - 40px);
    }


    .events .event .thumb
    {
        margin-bottom: 24px;
    }



    /*------------
        Places
    ------------*/
    .places .row
    {
        margin-bottom: -40px;
        margin-left: -40px;
    }

    .places .row > *
    {
        width: calc(33.333% - 40px);
        margin-bottom: 40px;
        margin-left: 40px;
    }



    /*----------------
        Add review
    ----------------*/
    .add_review .form
    {
        margin-left: 160px;
    }



    /*------------
        Dishes
    ------------*/
    .dishes .row
    {
        margin-bottom: -40px;
        margin-left: -40px;
    }

    .dishes .row > *
    {
        width: calc(33.333% - 40px);
        margin-bottom: 40px;
        margin-left: 40px;
    }



    /*------------
        Footer
    ------------*/
    footer:before
    {
        width: calc(100vw - 410px);
    }


    footer .col_left
    {
        width: calc(100% - 400px);
    }


    footer .main_logo,
    footer .copyright
    {
        width: 320px;
    }

    footer .main_logo
    {
        padding-top: 39px;
    }


    footer .places .row
    {
        margin-bottom: -40px;
        margin-left: -40px;
    }

    footer .places .row > *
    {
        width: calc(33.333% - 40px);
        margin-bottom: 40px;
        margin-left: 40px;
    }
}

@media print,
(max-width: 1439px)
{
    /*-------------------
        Global styles
    -------------------*/
    :root
    {
        --font_size: 15px;
        --font_size_title: 30px;
    }


    .cont
    {
        padding: 0 24px;
    }


    .swiper-button-prev
    {
        left: 48px;
    }

    .swiper-button-next
    {
        right: 48px;
    }



    /*------------
        Header
    ------------*/
    header .logo img
    {
        height: 88px;
    }


    header .sep
    {
        height: 40px;
    }



    /*----------------
        Block head
    ----------------*/
    .block_head
    {
        margin-bottom: 50px;
    }



    /*----------------
        Typography
    ----------------*/
    .text_block
    {
        line-height: calc(100% + 12px);
    }



    /*-----------------
        Main slider
    -----------------*/
    .main_slider .cont
    {
        height: calc(100vh - 120px);
        padding-top: 124px;
        padding-bottom: 124px;
    }


    .main_slider .title
    {
        font-size: 56px;
        line-height: calc(100% + 12px);
    }

    .main_slider .title span
    {
        margin-top: 24px;
        margin-left: 320px;
        padding: 0 24px 14px;
    }



    /*-------------------
        Photo gallery
    -------------------*/
    .photo_gallery .row
    {
        margin-bottom: -24px;
        margin-left: -24px;
    }

    .photo_gallery .row > *
    {
        width: calc(25% - 24px);
        margin-bottom: 24px;
        margin-left: 24px;
    }



    /*----------------
        About info
    ----------------*/
    .about_info .title
    {
        line-height: calc(100% + 8px);
    }


    .about_info .desc
    {
        margin-top: 32px;
    }



    /*------------------
        Action block
    ------------------*/
    .action_block
    {
        padding: 70px 0;
    }


    .action_block .text_block
    {
        font-size: 20px;
        line-height: calc(100% + 10px);

        width: 880px;
    }


    .action_block .logo
    {
        height: 224px;
    }



    /*-------------------
        Working hours
    -------------------*/
    .working_hours .row
    {
        width: 1040px;
    }


    .working_hours .item .icon
    {
        height: 64px;
        margin-bottom: 24px;
    }


    .working_hours .item .val
    {
        font-size: 16px;
        line-height: calc(100% + 10px);
    }



    /*----------------
        Categories
    ----------------*/
    .categories .row
    {
        margin-bottom: -24px;
        margin-left: -24px;
    }

    .categories .row > *
    {
        width: calc(25% - 24px);
        margin-bottom: 24px;
        margin-left: 24px;
    }


    .categories .category .name
    {
        font-size: 22px;

        min-height: 60px;
        padding: 0 16px;
    }

    .categories .category .name span
    {
        width: calc(100% - 48px);
    }


    .categories .category .name .icon
    {
        width: 28px;
        height: 28px;
    }



    /*------------
        Events
    ------------*/
    .events .event .name .icon
    {
        width: 32px;
        height: 32px;
    }


    .events .event .desc
    {
        width: calc(100% - 224px);
        min-height: 28px;
    }


    .events .event .date
    {
        width: 200px;
    }



    /*------------
        Places
    ------------*/
    .places .row
    {
        margin-left: -24px;
    }

    .places .row > *
    {
        width: calc(33.333% - 24px);
        margin-left: 24px;
    }



    /*----------------
        Add review
    ----------------*/
    .add_review .form
    {
        margin-left: 215px;
    }



    /*----------------
        Event info
    ----------------*/
    .event_info .head
    {
        margin-bottom: 32px;
    }


    .event_info .event_name
    {
        font-size: 28px;
        line-height: calc(100% + 10px);
    }


    .event_info .date
    {
        font-size: 16px;
        line-height: calc(100% + 6px);

        margin-top: 4px;
    }


    .event_info .back_btn
    {
        padding: 12px 0;
    }


    .event_info > .desc
    {
        padding: 50px 0;
    }



    /*------------
        Dishes
    ------------*/
    .dishes .row
    {
        margin-left: -24px;
    }

    .dishes .row > *
    {
        width: calc(33.333% - 24px);
        margin-left: 24px;
    }


    .dishes .dish .desc
    {
        font-size: 15px;
        line-height: calc(100% + 8px);

        margin-bottom: 12px;
    }



    /*--------------
        All link
    --------------*/
    .all_link
    {
        margin-top: 28px;
    }



    /*------------
        Footer
    ------------*/
    footer:before
    {
        width: calc(100vw - 288px);
    }


    footer .col_left
    {
        width: calc(100% - 304px);
    }


    footer .main_logo,
    footer .copyright
    {
        width: 224px;
    }


    footer .main_logo img
    {
        height: 140px;
    }
}

@media print,
(max-width: 1279px)
{
    /*-------------------
        Global styles
    -------------------*/
    :root
    {
        --font_size: 15px;
        --font_size_title: 28px;
    }


    html.custom_scroll ::-webkit-scrollbar
    {
        width: 5px;
        height: 5px;
    }



    /*--------------
        Fancybox
    --------------*/
    .fancybox__slide
    {
        padding: 32px;
    }



    /*------------
        Header
    ------------*/
    header
    {
        padding: 12px 0;
    }


    header .logo img
    {
        height: 80px;
    }


    header .sep
    {
        margin-left: 25px;
    }


    header .menu
    {
        margin-left: 25px;
    }


    header .menu_item + .menu_item
    {
        margin-left: 50px;
    }

    header .menu_item + .menu_item:before
    {
        left: -28px;
    }

    header .langs a + a {
        margin-left: 18px;
    }

    header .butcher
    {
        margin-left: 25px;
    }

    header .butcher img
    {
        height: 28px;
    }

    header .langs {
        margin-left: 25px;
    }

    /*----------------
        Typography
    ----------------*/
    .text_block > *
    {
        margin-bottom: 24px;
    }


    .text_block img
    {
        margin-top: 48px;
        margin-bottom: 48px;
    }



    /*-----------------
        Main slider
    -----------------*/
    .main_slider .cont
    {
        height: calc(100vh - 104px);
        padding-top: 100px;
        padding-bottom: 100px;
    }


    .main_slider .title
    {
        font-size: 52px;
        line-height: calc(100% + 8px);
    }

    .main_slider .title span
    {
        margin-top: 20px;
        margin-left: 280px;
        padding: 0 20px 12px;
    }


    .main_slider .scroll_down
    {
        bottom: 24px;
    }



    /*------------------
        Action block
    ------------------*/
    .action_block .text_block
    {
        font-size: 19px;

        width: 844px;
    }


    .action_block .logo
    {
        height: 200px;
    }



    /*----------------
        Categories
    ----------------*/
    .categories .category .name
    {
        font-size: 20px;

        min-height: 56px;
    }

    .categories .category .name span
    {
        width: calc(100% - 40px);
    }


    .categories .category .name .icon
    {
        width: 24px;
        height: 24px;
    }



    /*------------
        Events
    ------------*/
    .events .event .name .icon
    {
        width: 28px;
        height: 28px;
    }


    .events .event .desc
    {
        font-size: 13px;

        width: calc(100% - 184px);
    }


    .events .event .date
    {
        width: 160px;
    }



    /*----------------
        Add review
    ----------------*/
    .add_review .form
    {
        margin-left: auto;
    }



    /*----------------
        Event info
    ----------------*/
    .event_info .event_name
    {
        font-size: 26px;
    }


    .event_info .date
    {
        font-size: 15px;
    }


    .event_info .back_btn
    {
        padding: 10px 0;
    }



    /*------------
        Dishes
    ------------*/
    .dishes .dish
    {
        font-size: 17px;
    }


    .dishes .dish .desc
    {
        font-size: 14px;
    }



    /*------------
        Footer
    ------------*/
    footer:before
    {
        width: 100vw;
        height: calc(100% - 74px);
    }


    footer .col_left
    {
        width: 100%;
    }

    footer .col_left.border
    {
        display: none;
    }


    footer .copyright
    {
        width: 100%;

        text-align: left;
    }


    footer .main_logo
    {
        position: absolute;
        right: 24px;
        bottom: -100px;

        width: auto;
        margin: 0;
        padding: 0;

        border: none;
    }

    footer .main_logo img
    {
        height: 48px;
    }
}

@media print,
(max-width: 1023px)
{
    body.padding {
        padding-top: 150px;
    }
    body.small_padding {
        padding-top: 100px;
    }

    /*-------------------
        Global styles
    -------------------*/
    .block
    {
        margin-bottom: 50px;
    }


    .swiper-button-prev
    {
        left: 24px;
    }

    .swiper-button-next
    {
        right: 24px;
    }

    .swiper-button-next,
    .swiper-button-prev,
    .swiper-button-next .icon,
    .swiper-button-prev .icon
    {
        width: 40px;
        height: 40px;
    }



    /*--------------
        Fancybox
    --------------*/
    .fancybox__slide
    {
        padding: 24px;
    }



    /*------------
        Header
    ------------*/
    .header_wrap,
    .header_wrap.margin
    {
        height: 0 !important;
        margin: 0;
    }


    header,
    header.fixed
    {
        position: fixed;
        top: 0;
        right: 100%;
        left: auto;

        display: flex;
        flex-direction: column;

        width: 100%;
        height: 100%;
        min-height: -moz-available;
        min-height: -webkit-fill-available;
        min-height:         fill-available;
        margin: 0;
        padding: 92px 0 0;

        transition: transform .3s linear;
        -webkit-animation: none;
        animation: none;

        background: rgba(255, 255, 255, .98);
    }

    header.show
    {
        transform: translateX(100%);
    }


    header .scroll
    {
        display: flex;
        overflow: auto;

        padding: 48px 0;

        flex: 1 0 auto;
        justify-content: flex-start;
        align-items: flex-start;
        align-content: flex-start;
        flex-wrap: wrap;
        overscroll-behavior-y: contain;
    }

    header .scroll > *
    {
        width: 100%;
    }


    header .logo,
    header .logo + .sep
    {
        display: none;
    }


    header .sep
    {
        width: 100%;
        height: 1px !important;
        margin-top: 40px;
        margin-left: 0;

        order: 2;
    }


    header .menu
    {
        display: block;

        width: 100%;
        margin-left: 0;
    }


    header .menu_item + .menu_item
    {
        margin-top: 40px;
        margin-left: 0;
    }

    header .menu_item + .menu_item:before
    {
        display: none;
    }


    header .menu_item > a,
    header .menu_item > span
    {
        font-size: 18px;
        line-height: 24px;

        text-align: left;
    }


    header .langs
    {
        margin-top: 40px;
        margin-left: 0;

        order: 3;
    }


    header .butcher
    {
        margin-top: 40px;
        margin-left: auto;

        order: 3;
    }

    header .butcher img
    {
        height: 32px;
    }



    /*-----------------
        Mob. header
    -----------------*/
    .mob_header
    {
        display: block;
        position: fixed;
    }



    /*-----------------
        Main slider
    -----------------*/
    .main_slider .cont
    {
        height: 700px;
        padding-top: 85px;
        padding-bottom: 85px;
    }


    .main_slider .title
    {
        font-size: 48px;
        line-height: calc(100% + 18px);
    }

    .main_slider .title span
    {
        margin-top: 15px;
        margin-left: 300px;
        padding: 0 32px 14px;
    }



    /*-------------------
        Photo gallery
    -------------------*/
    .photo_gallery .row > *
    {
        width: calc(50% - 24px);
    }



    /*----------------
        About info
    ----------------*/
    .about_info .data,
    .about_info .image
    {
        width: 100%;
    }

    .about_info .image
    {
        margin-top: 50px;
    }


    .about_info .desc
    {
        margin-top: 50px;
    }



    /*------------------
        Action block
    ------------------*/
    .action_block
    {
        padding: 50px 0;
    }


    .action_block .text_block
    {
        font-size: 16px;
        line-height: calc(100% + 8px);

        width: 100%;
    }


    .action_block .logo
    {
        height: 140px;
    }



    /*----------------
        Categories
    ----------------*/
    .categories .row
    {
        margin-bottom: -48px;
        margin-left: -24px;
    }

    .categories .row > *
    {
        width: calc(50% - 24px);
        margin-bottom: 48px;
        margin-left: 24px;
    }


    .categories .category .thumb
    {
        margin-bottom: 20px;
        padding-bottom: 86.206%;
    }


    .categories .category .name
    {
        font-size: 22px;

        min-height: 60px;
        padding: 0 24px;
    }

    .categories .category .name .icon
    {
        width: 28px;
        height: 28px;
    }



    /*------------
        Events
    ------------*/
    .events .row
    {
        margin-left: 0;
    }

    .events .row > *,
    .events .row > *.big
    {
        width: 100%;
        margin-left: 0;
    }


    .events .event .name .icon
    {
        width: 32px;
        height: 32px;
    }


    .events .event .desc
    {
        font-size: 14px;

        width: calc(100% - 240px);
    }


    .events .event .date
    {
        width: 200px;
    }



    /*------------
        Places
    ------------*/
    .places .row
    {
        margin-left: 0;
    }

    .places .row > *
    {
        width: 100%;
        margin-left: 0;
    }



    /*----------------
        Add review
    ----------------*/
    .add_review .cont
    {
        flex-direction: column;
    }


    .add_review .form
    {
        margin-top: 40px;
        margin-left: 0;
    }



    /*----------------
        Event info
    ----------------*/
    .event_info .event_name
    {
        font-size: 24px;
    }


    .event_info .date
    {
        font-size: 14px;
    }



    /*------------
        Dishes
    ------------*/
    .dishes .row
    {
        margin-left: 0;
    }

    .dishes .row > *
    {
        width: 100%;
        margin-left: 0;
    }



    /*-------------------
        Photos slider
    -------------------*/
    .photos_slider
    {
        margin-top: -50px;
    }


    .photos_slider .cont
    {
        padding: 0;
    }


    .photos_slider .image
    {
        border-radius: 0;
    }



    /*------------
        Footer
    ------------*/
    footer
    {
        padding: 24px 0 30px;
    }

    footer:before
    {
        display: none;
    }


    footer .cont + .cont
    {
        margin-top: 30px;
    }


    footer .places .row
    {
        margin-bottom: -64px;
        margin-left: 0;
    }

    footer .places .row > *
    {
        width: 100%;
        margin-bottom: 64px;
        margin-left: 0;
    }


    footer .places .place
    {
        position: relative;
    }

    footer .places .place:before
    {
        position: absolute;
        z-index: 1;
        top: -24px;
        left: -24px;

        display: block;

        width: calc(100% + 48px);
        height: calc(100% + 48px);

        content: '';

        background: rgba(224, 227, 226, .4);
    }


    footer .places .place > *
    {
        position: relative;
        z-index: 3;
    }


    footer .main_logo
    {
        bottom: -91px;
    }

    footer .small-menu {
        margin-top: 50px;
        justify-content: center;
    }
    footer .small-menu .menu_item + .menu_item {
        margin-left: 0;
        margin-top: 30px;
    }

    header .book_btn {
        margin-left: 0;
        margin-top: 40px;
        font-size: 14px;
        line-height: 16px;
        padding: 10px 20px;
    }
    header .book_btn + .sep {
        display: none;
    }
}

@media print,
(max-width: 767px)
{
    body.padding {
        padding-top: 132px;
    }
    body.small_padding {
        padding-top: 92px;
    }

    .add_review .form {
        width: 100%;
    }

    /*-------------------
        Global styles
    -------------------*/
    :root
    {
        --font_size_title: 25px;
    }


    .swiper-button-next,
    .swiper-button-prev,
    .swiper-button-next .icon,
    .swiper-button-prev .icon
    {
        width: 32px;
        height: 32px;
    }



    /*--------------
        Fancybox
    --------------*/
    .fancybox__slide
    {
        padding: 20px;
    }



    /*-----------------
        Mob. header
    -----------------*/
    .mob_header .logo img
    {
        height: 68px;
    }


    .mob_header .mob_menu_btn
    {
        margin-left: 16px;
    }



    /*------------------
        Form elements
    ------------------*/
    .form .cols .col
    {
        width: 100%;
    }



    /*----------------
        Typography
    ----------------*/
    .text_block img
    {
        border-radius: 20px 0 0;
    }



    /*-----------------
        Main slider
    -----------------*/
    .main_slider .cont
    {
        height: 440px;
        padding-top: 64px;
        padding-bottom: 64px;
    }


    .main_slider .title
    {
        font-size: 36px;
        line-height: calc(100% + 12px);
    }

    .main_slider .title span
    {
        margin-left: 120px;
        padding: 0 24px 8px;
    }


    .main_slider .scroll_down
    {
        font-size: 10px;
        line-height: 14px;

        bottom: 20px;
    }

    .main_slider .scroll_down .icon
    {
        margin-left: 8px;
    }



    /*-------------------
        Photo gallery
    -------------------*/
    .photo_gallery .row
    {
        margin-bottom: -24px;
        margin-left: -12px;
    }

    .photo_gallery .row > *
    {
        width: calc(50% - 12px);
        margin-bottom: 24px;
        margin-left: 12px;
    }


    .photo_gallery .item
    {
        padding: 0;

        border: none;
        background: none;
    }



    /*------------------
        Action block
    ------------------*/
    .action_block .logo
    {
        height: 128px;
    }



    /*-------------------
        Working hours
    -------------------*/
    .working_hours .row > *
    {
        width: 100%;
    }

    .working_hours .row > * + *
    {
        margin-top: 40px;
    }



    /*----------------
        Categories
    ----------------*/
    .categories .row
    {
        margin-bottom: -24px;
        margin-left: 0;
    }

    .categories .row > *
    {
        width: 100%;
        margin-bottom: 24px;
        margin-left: 0;
    }


    .categories .category .thumb
    {
        margin-bottom: 20px;
        padding-bottom: 43.75%;

        border-radius: 20px 0 0 0;
    }


    .categories .category .name
    {
        min-height: 48px;
        padding: 0 20px;
    }

    .categories .category .name .icon
    {
        width: 28px;
        height: 28px;
    }



    /*------------
        Events
    ------------*/
    .events .event .thumb
    {
        margin-bottom: 20px;

        border-radius: 20px 0 0;
    }


    .events .event .name
    {
        font-size: 18px;
        line-height: calc(100% + 6px);
    }

    .events .event .name span
    {
        width: calc(100% - 80px);
    }

    .events .event .name .icon
    {
        width: 28px;
        height: 28px;
    }


    .events .event .desc
    {
        font-size: 13px;

        width: calc(100% - 180px);
    }


    .events .event .date
    {
        width: 160px;
    }



    /*------------
        Places
    ------------*/
    .places .place .thumb
    {
        border-radius: 20px 0 0;
    }



    /*----------------
        Event info
    ----------------*/
    .event_info .head > div
    {
        width: 100%;
    }


    .event_info .event_name
    {
        font-size: 22px;
    }


    .event_info .back_btn
    {
        display: flex;

        margin-top: 12px;
        padding: 0;
    }

    .event_info .back_btn a
    {
        margin-left: auto;
    }

    footer .small-menu .menu_item {
        max-width: 260px;
    }
    footer .small-menu {
        margin-top: 65px;
    }
}

@media (max-width: 479px)
{
    /*-------------------
        Global styles
    -------------------*/
    :root
    {
        --font_size_title: 22px;
    }


    .cont
    {
        padding: 0 20px;
    }


    .swiper-button-prev
    {
        left: 20px;
    }

    .swiper-button-next
    {
        right: 20px;
    }


    .swiper-button-next,
    .swiper-button-prev,
    .swiper-button-next .icon,
    .swiper-button-prev .icon
    {
        width: 28px;
        height: 28px;
    }



    /*--------------
        Fancybox
    --------------*/
    .fancybox__slide
    {
        padding: 16px;
    }



    /*-----------------
        Mob. header
    -----------------*/
    .mob_header.margin
    {
        margin-bottom: 40px;
    }



    /*----------------
        Block head
    ----------------*/
    .block_head
    {
        margin-bottom: 40px;
    }


    .block_head .title
    {
        line-height: calc(100% + 8px);
    }



    /*------------------
        Form elements
    ------------------*/
    .form .captcha .input
    {
        width: 100%;
        margin-top: 8px;
        margin-left: 0;
    }



    /*-----------------
        Main slider
    -----------------*/
    .main_slider .cont
    {
        height: 360px;
    }


    .main_slider .title
    {
        font-size: 28px;
    }

    .main_slider .title span
    {
        margin-left: 82px;
        padding: 0 24px 8px;

        border-radius: 0 0 20px 0;
    }



    /*-------------------
        Photo gallery
    -------------------*/
    .photo_gallery .row
    {
        margin-bottom: -20px;
        margin-left: -8px;
    }

    .photo_gallery .row
    {
        margin-bottom: -20px;
        margin-left: -8px;
    }


    .photo_gallery .item .thumb
    {
        border-radius: 20px 0 0 0;
    }



    /*--------------
        All link
    --------------*/
    .all_link
    {
        justify-content: center;
    }



    /*----------------
        About info
    ----------------*/
    .about_info .desc,
    .about_info .image
    {
        margin-top: 40px;
    }


    .about_info .image div
    {
        border-radius: 20px 0 0 0;
    }



    /*------------------
        Action block
    ------------------*/
    .action_block .logo
    {
        height: 100px;
    }



    /*------------
        Events
    ------------*/
    .events .event .name span
    {
        width: calc(100% - 52px);
    }


    .events .event .desc
    {
        width: 100%;
        min-height: 0;
    }


    .events .event .date
    {
        width: 100%;
        margin-top: 8px;
    }



    /*----------------
        Event info
    ----------------*/
    .event_info .event_name
    {
        font-size: 21px;
    }


    .event_info > .desc
    {
        padding: 40px 0;
    }



    /*-------------------
        Photos slider
    -------------------*/
    .photos_slider
    {
        margin-top: -40px;
    }


    .photos_slider .image
    {
        padding-bottom: 91.111%;
    }



    /*------------
        Footer
    ------------*/
    footer .cont + .cont
    {
        margin-top: 140px;
    }


    footer .main_logo
    {
        right: 0;
        bottom: -100px;

        width: 100%;
    }

    footer .main_logo img
    {
        height: 60px;
    }


    footer .copyright
    {
        text-align: center;
    }

    footer .copyright br
    {
        display: block;
    }
}

.spec_field {
    display: none;
}

.bg-alco-overlayer {
    position: fixed;
    left: 0;
    top:0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.5);
    z-index: 9999;
}
.wrap-alco-overlayer {
    position: fixed;
    left: 50%;
    top: 50%;
    width: 627px;
    margin: -185px 0 0 -313px;
    background-color: #fff;
    border: 1px solid #000;
    padding: 21px 55px;
    color: #000;
    z-index: 10000;
}
.alco-head {
    text-align: center;
}
.alco-title {
    display: inline-block;
    border-bottom: 1px solid #000;
    padding: 0 38px 16px;
    font-weight: bold;
    font-size: 23px;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 17px;
}
.alco-text {
    font-size: 13px;
    line-height: 20px;
    letter-spacing: 1px;
    text-align: justify;
}
.alco-question {
    font-size: 23px;
    line-height: 1;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 18px 0 20px;
}
.alco-btn {
    display: inline-block;
    border: 2px solid #286462;
    width: 228px;
    height: 47px;
    text-align: center;
    font-size: 17px;
    line-height: 42px;
    color: #286462;
    text-decoration: none;
    float: left;
    text-transform: uppercase;
    transition: all 0.3s;
}
.alco-btn:hover {
    color: #fff;
    background-color: #286462;
}
.alco-btn +.alco-btn {
    float: right;
}
@media all and (max-width: 1023px) {
    .wrap-alco-overlayer {
        width: 520px;
        margin: -131px 0 0 -260px;
        padding: 14px 25px;
    }
    .alco-text {
        font-size: 10px;
        line-height: 15px;
        letter-spacing: 0.5px;
    }
    .alco-title {
        font-size: 20px;
        letter-spacing: 1px;
        display: block;
        padding: 0 0 10px;
        margin-bottom: 12px;
    }
    .alco-question {
        font-size: 18px;
        line-height: 1.2;
        margin: 6px 0 10px;
    }
    .alco-btn {

    }
}
@media all and (max-width: 519px) {
    .wrap-alco-overlayer {
        width: 283px;
        margin: -221px 0 0 -141px;
    }
    .alco-btn {
        display: block;
        width: 100%;
        float: none !important;
    }
    .alco-btn + .alco-btn  {
        margin-top: 7px;
    }
}

/*------------
    Cookie
------------*/
.cookie
{
    position: fixed;
    z-index: 50;
    right: 0;
    bottom: 0;

    display: none;

    width: 520px;
    max-width: 100%;
    padding: 20px;

    text-align: left;

    background: #fff;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25);
}


.cookie .text
{
    font-size: 14px;

    color: #000;
}

.cookie .text a
{
    color: inherit;
    text-decoration: underline;
}

.cookie .buttons
{
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.cookie .buttons .btn,
.cookie .buttons a {
    line-height: 44px;
    font-weight: 700;
    font-size: 12px;
    color: #fff;
    width: 228px;
    letter-spacing: 0.2em;
    border: 1px solid #2B6461;
    border-radius: 10px;
    transition: all 0.3s;
    text-transform: uppercase;
    background: #2B6461;
    text-align: center;
}
.cookie .buttons .btn:hover {
    background: #ee2f26;
    border-color: #ee2f26;
    transform: scale(1.1, 1.1);
}

.cookie .buttons a {
    background: transparent;
    color: #2B6461;
    text-decoration: none;
}

.cookie .buttons a:hover
{
    border-color: #ee2f26;
    color: #ee2f26
}

@media (max-width: 768px) {
    .cookie .buttons
    {
        flex-direction: column;
    }
    .cookie .buttons a {
        margin-top: 16px;
    }
}