@charset "utf-8";

@font-face {
    font-family: "DINPro";
    src: url("../fonts/DINPro.eot");
    src: url("../fonts/DINPro.eot?#iefix") format("embedded-opentype"),
        url("../fonts/DINPro.ttf") format("truetype"),
        url('../fonts/DINPro.woff') format('woff');
}

@font-face {
    font-family: "DIN-light";
    src: url("../fonts/DINPro-Light.eot");
    src: url("../fonts/DINPro-Light.eot?#iefix") format("embedded-opentype"),
        url("../fonts/DINPro-Light.ttf") format("truetype"),
        url('../fonts/DINPro-Light.woff') format('woff');
}

@font-face {
    font-family: "OpenSans";
    font-weight: 400;
    src: url("../fonts/OpenSans-Regular.eot");
    src: url("../fonts/OpenSans-Regular.eot?#iefix") format("embedded-opentype"),
        url("../fonts/OpenSans-Regular.ttf") format("truetype"),
        url('../fonts/OpenSans-Regular.woff') format('woff');
}

@font-face {
    font-family: "OpenSans";
    font-weight: 300;
    src: url("../fonts/OpenSans-Light.eot");
    src: url("../fonts/OpenSans-Light.eot?#iefix") format("embedded-opentype"),
        url("../fonts/OpenSans-Light.ttf") format("truetype"),
        url('../fonts/OpenSans-Light.woff') format('woff');
}

@font-face {
    font-family: "OpenSans";
    font-weight: 600;
    src: url("../fonts/OpenSans-Semibold.eot");
    src: url("../fonts/OpenSans-Semibold.eot?#iefix") format("embedded-opentype"),
        url("../fonts/OpenSans-Semibold.ttf") format("truetype"),
        url('../fonts/OpenSans-Semibold.woff') format('woff');
}

@font-face {
    font-family: "OpenSans";
    font-style: italic;
    src: url("../fonts/OpenSans-Italic.eot");
    src: url("../fonts/OpenSans-Italic.eot?#iefix") format("embedded-opentype"),
        url("../fonts/OpenSans-Italic.ttf") format("truetype"),
        url('../fonts/OpenSans-Italic.woff') format('woff');
}

@font-face {
    font-family: "Times-New";
    font-weight: 400;
    src: url("../fonts/TimesNewRomanPSMT.eot");
    src: url("../fonts/TimesNewRomanPSMT.eot?#iefix") format("embedded-opentype"),
        url("../fonts/TimesNewRomanPSMT.ttf") format("truetype"),
        url('../fonts/TimesNewRomanPSMT.woff') format('woff');
}

@font-face {
    font-family: "Times-New";
    font-style: italic;
    src: url("../fonts/TimesNewRomanPS-ItalicMT.eot");
    src: url("../fonts/TimesNewRomanPS-ItalicMT.eot?#iefix") format("embedded-opentype"),
        url("../fonts/TimesNewRomanPS-ItalicMT.ttf") format("truetype"),
        url('../fonts/TimesNewRomanPS-ItalicMT.woff') format('woff');
}

:root {
    --main-bg: #fff;
    --black-bg: #000;
    --main-font-color: #282828;
    --white-color-text: #ffffff;
    --light-color-text: #f2f0ec;
    --contrast-color-text: #282828;
    --main-link-color: #282828;
    --opacity-but: rgba(53, 53, 56, 0.5);
    --opacity-link-color: rgba(255, 255, 255, 0.5);
    --opacity-link-color-20: rgba(255, 255, 255, 0.2);
    --gold: #a17142;
    --light_gold: #a17142a6;
    --dropdown-arrow: #fff;
    --dropdown-bg: #fff;
    --menu_line: #282828;
    --menu_hover: rgba(255, 255, 255, 0.11);
    --tile_desc_bg: rgba(18, 18, 19, 0.7);
    --opacity_black_30: rgba(0, 0, 0, 0.3);
    --opacity_black_50: rgba(0, 0, 0, 0.5);
    --opacity_black_70: rgba(0, 0, 0, 0.7);
    --opacity_black_90: rgba(0, 0, 0, 0.9);
    --arrow_bg: #0a0a0b;
    --input_border: #dddddd;
    --footer_bg: #1d1c1c;
    --error_color: #8a3341;
    --brown_light: #a17142;
}

BODY,
HTML {
    font-family: "OpenSans", Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    color: var(--main-font-color);
    background: var(--main-bg);
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}

A img {
    border: 0px solid;
    outline: none;
}

A {
    cursor: pointer;
    outline: none;
    text-decoration: none;
    color: var(--main-link-color);
    transition: .3s;
}

A:active,
A:focus Figure:focus {
    outline: none;
}

Figure {
    margin: 0;
}

Img {
    vertical-align: top;
}

* {
    outline: none;
    box-sizing: border-box;
}

H1,
H2,
H3,
H4,
H5,
H6 {
    padding: 0;
    margin: 0;
}

Input,
Textarea {
    padding: 0 10px 0 20px;
    background: none;
    border: none;
    color: var(--main-font-color);
    font-size: 13px;
    line-height: 16px;
    height: 40px;
    width: 100%;
    border-bottom: 1px solid var(--input_border);
    margin: 0 0 35px 0;
    letter-spacing: 0.5px;
    transition: .3s;
}

Input::-webkit-input-placeholder,
Textarea::-webkit-input-placeholder {
    color: var(--main-font-color);
    opacity: 1;
}

Input::-moz-placeholder,
Textarea::-moz-placeholder {
    color: var(--main-font-color);
    opacity: 1;
}

Textarea::placeholder {
    font-family: "OpenSans";
    color: var(--main-font-color);
    font-size: 13px;
    line-height: 16px;
}

Input.error,
Textarea.error {
    border-bottom: 1px solid var(--error_color);
    color: var(--error_color);
    transition: .3s;
}

Input:focus,
Textarea:focus {
    border-color: var(--main-font-color);
}

Textarea {
    resize: none;
    overflow: auto;
    margin: 0;
}

Table {
    border-collapse: collapse;
}

ADDRESS {
    font-style: normal;
}

UL {
    list-style: none;
    padding: 0;
    margin: 0;
}

P {
    margin: 0;
    padding: 0;
}

.container {
    width: 100%;
    margin: 0 auto;
    padding: 0 10px;
    z-index: 2;
    position: relative;
}

.long {
    display: flex;
    width: 100%;
    align-items: flex-start;
    justify-content: space-between;
}

.black {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9;
    background: rgba(53, 53, 53, .9);
    visibility: visible;
    transition: .3s;
}

.long.col {
    flex-direction: column;
}

.long.center {
    justify-content: center;
}

.hidden {
    display: none;
}

.opacity {
    opacity: 0;
    visibility: hidden;
    transition: .3s;
}

.title {
    text-transform: lowercase;
    font-family: "Times-New";
    font-style: italic;
    width: 100%;
    display: flex;
    justify-content: center;
    color: var(--main-font-color);
    font-size: 36px;
    line-height: 50px;
    margin: 0 0 68px 0;
}

.bg_titile {
    text-align: center;
    font-family: "Times-New";
    text-transform: lowercase;
    font-style: italic;
    font-size: 82px;
    line-height: 90px;
    color: var(--light-color-text);
    margin-bottom: 40px;
}

.description {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white-color-text);
    text-align: center;
    margin: 0 0 26px 0;
}

Button {
    border: none;
    background: none;
    cursor: pointer;
    color: var(--main_link_color);
}

A.but,
Button.but {
    font-size: 13px;
    font-weight: 500;
    line-height: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 12px 25px;
    transition: .3s;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 2px solid var(--brown_light);
    transition: 0.3s;
}

A.but:hover,
Button.but:hover {
    background-color: var(--brown_light);
    color: #fff;
}

A.but .element_1,
Button.but .element_1 {
    fill: #fff;
    position: absolute;
    bottom: -76px;
    right: -60px;
    opacity: 1;
    width: 160px;
    height: 160px;
    transition: .3s;
}

A.but .element_2,
Button.but .element_2 {
    fill: #fff;
    position: absolute;
    bottom: -76px;
    right: -60px;
    transform: rotate(0deg);
    width: 160px;
    height: 160px;
    transition: .3s ease-out .5s;
}

A.but.style_2,
Button.but.style_2 {
    padding-left: 35px;
    padding-right: 60px;
}

A.but.style_2:hover,
Button.but.style_2:hover {
    box-shadow: none;
    background: var(--gold);
}

A.but.style_2::before,
Button.but.style_2::before {
    content: '';
    position: absolute;
    top: 17px;
    right: 38px;
    width: 8px;
    height: 8px;
    border: 2px solid var(--dropdown-arrow);
    border-left: none;
    border-bottom: none;
    transform: rotate(45deg);
    transition: .3s;
}

A.but.style_2::after,
Button.but.style_2::after {
    content: '';
    position: absolute;
    top: 21px;
    right: 38px;
    width: 10px;
    height: 2px;
    background: var(--dropdown-arrow);
    transition: .3s;
}

A.but.style_2:hover::before,
Button.but.style_2:hover::before {
    right: 38px;
    transition: .3s;
}


.but_arrow {
    width: 12px;
    height: 12px;
    position: relative;
    margin-left: 12px;
}

A.but.bg_fill,
Button.but.bg_fill {
    background-color: var(--brown_light);
    border-color: var(--brown_light);
    color: #fff;
}

A.but.bg_fill:hover,
Button.but.bg_fill:hover {
    background-color: #fff;
    color: var(--brown_light);
}

A.but.bg_fill:hover::after,
Button.but.bg_fill:hover::after {
    background-color: var(--brown_light);
}


A.but.bg_fill:hover::before,
Button.but.bg_fill:hover::before {
    border-color: var(--brown_light);
}

A.but.white_but,
Button.but.white_but {
    color: var(--white-color-text);
    border-color: var(--white-color-text)
}

A.but.white_but:hover,
Button.but.white_but:hover {
    background-color: var(--white-color-text);
    color: var(--gold);
}

A.back::before,
.general_menu Nav UL LI UL A.back::before {
    content: '';
    position: absolute;
    top: 13px;
    left: 10px;
    width: 6px;
    height: 6px;
    border: 1px solid var(--dropdown-arrow);
    border-left: none;
    border-bottom: none;
    transform: rotate(-135deg);
    transition: .3s;
    background: none;
}

A.back::after,
.general_menu Nav UL LI UL A.back::after {
    content: '';
    position: absolute;
    top: 16px;
    left: 10px;
    width: 10px;
    height: 1px;
    background: var(--menu_line);
    transition: .3s;
    opacity: 1;
}

A.back:hover::before,
.general_menu Nav UL LI UL A.back:hover::before {
    left: 0;
    width: 6px;
    background: none;
    transition: .3s;
}

A.back:hover::after,
.general_menu Nav UL LI UL A.back:hover::after {
    width: 20px;
    top: 16px;
    left: 0;
    background: var(--menu_line);
    transform: none;
    transition: .3s;
}

A.close {
    width: 24px;
    height: 24px;
    position: absolute;
    top: 30px;
    right: 32px;
    z-index: 9;
}

A.close::before,
A.close::after,
A.close Span::before {
    content: '';
    position: absolute;
    top: 10px;
    right: -3px;
    width: 30px;
    height: 3px;
    background: var(--gold);
    border-radius: 4px;
    transition: .3s;
}

A.close::before {
    transform: rotate(45deg);
}

A.close::after {
    transform: rotate(-45deg);
}

A.close:hover::before,
A.close:hover::after {
    width: 15px;
    top: 6px;
    right: 10px;
    transition: .3s;
}

A.close:hover::before {
    top: 14px;
}

A.close Span::before {
    opacity: 0;
    width: 21px;
    top: 10px;
    right: 0;
    height: 2px;
}

A.close:hover Span::before {
    opacity: 1;
    transition: .3s;
}

.slick-arrow {
    width: 44px;
    height: 44px;
    background: none;
    border-radius: 50%;
    border: 1px solid var(--gold);
    background-color: #fff;
    cursor: pointer;
    font-size: 0;
    position: relative;
    transition: .3s;
}


.slick-arrow::before {
    content: '';
    position: absolute;
    top: 16px;
    right: 16px;
    width: 8px;
    height: 8px;
    border: 2px solid var(--gold);
    border-left: none;
    border-bottom: none;
    transform: rotate(45deg);
    transition: .3s;
}

.slick-arrow:hover::before {
    right: 10px;
    transition: .3s;
}

.slick-arrow:hover::after {
    width: 18px;
    right: 10px;
    transition: .3s;
}

.slick-arrow.slick-prev {
    transform: rotate(-180deg);
}

.slick-arrow.slick-prev:hover::before {
    right: 18px;
}

.slick-arrow.slick-prev:hover::after {
    right: 14px;
}

.last_news .control_next.slick-arrow:hover::before {
    right: 18px;
}

/* dropdown меню
---------------------------------*/
.dropdown {
    width: 190px;
    height: 16px;
    font: 18px/16px "OpenSans";
    letter-spacing: 2px;
    position: relative;
}

.dropdown .overflow {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.dropdown Span {
    cursor: pointer;
    color: var(--main-font-color);
    width: max-content;
    height: inherit;
    padding: 0 0 0 30px;
    overflow: hidden;
    z-index: 2;
}

.dropdown UL {
    position: absolute;
    max-width: 270px;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    top: 24px;
    left: 0;
    margin: 0;
    padding: 0 0 0 20px;
    transition: .3s;
}

.dropdown.dropdown-open UL {
    max-height: 500px;
    overflow: auto;
    transition: .3s;
}

.dropdown UL LI {
    list-style: none;
}

.dropdown UL LI A.selected {
    display: none;
}

.dropdown UL LI A {
    display: block;
    padding: 6px 10px;
    transition: .3s;
}

.dropdown UL LI A:hover {
    color: var(--gold);
    transition: .3s;
}

.dropdown.room {
    width: 100%;
    height: 42px;
    border-bottom: 1px solid var(--dropdown-arrow);
    margin: 0;
    text-transform: uppercase;
    font-size: 16px;
    line-height: 42px;
    color: var(--white-color-text);
    transition: .3s;
}

.header .dropdown.room:not(.phones) .overflow::after,
.header .dropdown.room:not(.phones) .overflow::before {
    top: 20px;
    right: 12px;
}

.header .dropdown.room:not(.phones) .overflow::after {
    right: 15px;
}

.dropdown.room Span {
    padding: 0 0 0 12px;
    font-size: 13px;
    color: var(--main-font-color);
    opacity: 0.6;
    text-transform: none;
    letter-spacing: 0.5px;
}

.select_room .dropdown.room Span {
    color: var(--white-color-text);
    text-transform: uppercase;
    opacity: 1;
}

.dropdown.room UL {
    width: 100%;
    max-width: none;
    padding: 0;
    top: auto;
    bottom: 41px;
    background: var(--dropdown-bg);
}

.dropdown.room UL LI A {
    padding: 0 12px;
    color: var(--gold);
}

.dropdown.room UL LI A:hover {
    color: var(--white-color-text);
    background: var(--gold);
}

.select_room .dropdown Input {
    color: var(--white-color-text);
    font-size: 13px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.select_room .dropdown Input::placeholder {
    color: var(--white-color-text);
}

.header .dropdown .arrow {
    width: 20px;
    height: 20px;
    cursor: pointer;
    position: relative;
}


.header .dropdown.phones .arrow::after,
.header .dropdown.phones .arrow::before,
.header .dropdown:not(.phones) .overflow::after,
.header .dropdown:not(.phones) .overflow::before,
.book_here .dropdown .overflow::after,
.book_here .dropdown .overflow::before {
    content: '';
    position: absolute;
    top: 9px;
    right: 0;
    width: 5px;
    height: 1px;
    background: var(--dropdown-arrow);
    transition: .3s;
}
.header .dropdown.phones .arrow::after,
.header .dropdown.phones .arrow::before {
    background-color: #282828;
}

.header .dropdown:not(.phones) .overflow::after,
.book_here .dropdown .overflow::after {
    transform: rotate(45deg);
    right: 3px;
}

.header .dropdown:not(.phones) .overflow::before,
.book_here .dropdown .overflow::before {
    transform: rotate(-45deg);
    right: 0;
}

.header .dropdown-open:not(.phones) .overflow::after,
.book_here .dropdown-open .overflow::after {
    transform: rotate(-45deg);
    right: 3px;
    transition: .3s;
}

.header .dropdown-open:not(.phones) .overflow::before,
.book_here .dropdown-open .overflow::before {
    transform: rotate(45deg);
    right: 0;
    transition: .3s;
}

.header .dropdown.phones .arrow::after {
    left: 50%;
    top: 50%;
    transform: rotate(-45deg);
    transform-origin: left;
}

.header .dropdown.phones .arrow::before {
    right: 50%;
    top: 50%;
    transform: rotate(45deg);
    transform-origin: right;
}

.dropdown:hover .overflow::after,
.dropdown:hover .overflow::before {
    background: var(--light_gold);
    transition: .3s;
}

/*--------------------------------------------------------------------     основні CSS стилі сайту     --------------------------------------------------------------------*/
/* шапка сайту
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
Header.header {
    width: 100%;
    height: calc(var(--vh, 1vh) * 100);
    min-height: max-content;
    position: relative;
    overflow: hidden;
}

Header .picture_box Div::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(24, 23, 26, 0.5);
}

Header.header.short {
    height: auto;
    overflow: inherit;
}

.header.short .long:nth-child(1) {
    margin: 0;
}

Header.header.short::after {
    display: none;
}

Header.header .container {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    height: max-content;
    justify-content: space-between;
}

/* місце під фото
	---------------------------------*/
.picture_box,
.picture_box.header_bg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    margin: 0;
}

.picture_box.short {
    display: none;
}

.picture_box Div {
    top: 0;
    left: 0;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: cover;
    margin: 0;
}

@keyframes zoom {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

/* місце під відео
	---------------------------------*/
.video_box {
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
}

.video_box Iframe {
    width: 100%;
    height: 100vh;
}

/* верхній рядок
	---------------------------------*/
.header .long:nth-child(1) {
    align-items: center;
    min-height: 65px;
    padding: 5px 0;
    background-color: #fff;
    position: relative;
}

.header .long:nth-child(1)::after,
.header .long:nth-child(1)::before {
    content: "";
    width: 10px;
    height: 100%;
    background-color: #fff;
    position: absolute;
    top: 0;
}

.header .long:nth-child(1)::before {
    left: 100%;
}

.header .long:nth-child(1)::after {
    right: 100%;
}

.header.short .long:nth-child(1)::after,
.header.short .long:nth-child(1)::before  {
    display: none;
}

.header .dropdown.lang,
.header A.but,
.header .dropdown.phones,
.select_room {
    display: none;
}


.header A.but.main {
    display: flex;
    margin: 0 auto 70px auto;
    justify-content: center;
}

.header A.but.main.en {
    width: 84px;
    margin: 0 0 0 -42px;
}

.header A.menu {
    display: flex;
    align-items: center;
    font-size: 0px;
    line-height: 0;
    padding: 0;
    position: relative;
    padding: 10px 10px 10px 0;
}

A.menu .menu_icon {
    position: relative;
    width: 24px;
    height: 10px;
    transition: .3s;
}

.menu_icon Span {
    position: absolute;
    top: 0;
    left: 0;
    background: var(--gold);
    width: 24px;
    height: 2px;
    transition: .3s;
}

.menu_icon Span:nth-child(2) {
    top: auto;
    bottom: 0;
    width: 70%;
}

.menu_icon Span:nth-child(3) {
    display: none;
}

A.menu:hover .menu_icon Span {
    background: var(--light_gold);
    transition: .3s;
}

.header_logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
}

.header .logo {
    width: 55px;
    height: 55px;
    display: block;
    object-fit: contain;
    fill: #a17142;
}

.logo_text {
    display: none;
    flex-direction: column;
    color: var(--brown_light)
}

.logo_title {
    text-transform: uppercase;
    font-size: 26px;
    letter-spacing: 1px;
}

.logo_subtitle {
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1.5px;
}

A.phone {
    display: flex;
    padding: 10px 0 10px 10px;
}

A.phone .svg {
    width: 16px;
    height: 16px;
    fill: var(--gold);
    transition: .3s;
}

A.phone:hover .svg {
    fill: var(--light_gold);
    transition: .3s;
}

.header .long.by_center A.but {
    display: flex;
}

.header .title {
    font-size: 58px;
    margin-bottom: 30px;
    color: var(--white-color-text);
}

.subtitile.main {
    /* margin-bottom: 175px; */
    margin-bottom: 35px;
    max-width: 700px;
    letter-spacing: 1px;
    color: var(--white-color-text);
    text-align: center;
}

/* .subtitile_btn {
    transform: translateY(-130px);
} */

.order_btn {
    width: calc(100% - 20px);
}

.trips {
    display: flex;
    position: absolute;
    width: calc(100% - 70px);
    top: 50%;
    transform: translateY(-50%);
    left: 44px;
    font-size: 18px;
    line-height: 22px;
    font-weight: 600;
}

.trips Span {
    padding: 0 10px 0 21px;
    position: relative;
    display: none;
}

.trips Span.trip {
    position: absolute;
    right: 0;
}

.trips Span .svg {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 17px;
    height: 17px;
    fill: var(--gold);
}

/* головне меню сайту
	---------------------------------*/
.general_menu {
    background: var(--white-color-text);
    max-width: 500px;
    width: 86%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    padding: 54px 20px 0 30px;
    overflow: auto;
    transition: .3s;
}

.general_menu::before {
    content: "";
    width: 200px;
    height: 200px;
    background-image: url(../images/logo.svg);
    opacity: 0.3;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    right: 0;
    top: 100px;
}

.general_menu * {
    color: var(--black-bg);
}

.general_menu .lang {
    display: flex;
    font-size: 13px;
    line-height: 18px;
}

.general_menu .lang .svg {
    fill: var(--main-font-color);
    position: relative;
    margin: 0 10px 0 0;
    width: 16px;
    height: 16px;
}

.general_menu .lang A {
    margin: 0 20px 0 0;
}

.minus_left {
    left: -100%;
    transition: .8s;
}

.general_menu Nav {
    width: 100%;
    padding: 10px 0 0 0;
}

.general_menu Nav UL {
    padding: 0 0 14px 0;
}

.general_menu Nav LI {
    margin: 0 0 14px 0;
}

.general_menu Nav A,
.general_menu Nav UL LI UL Span {
    font-size: 20px;
    line-height: 30px;
    text-transform: uppercase;
    position: relative;
}

.general_menu Nav A::after {
    content: '';
    opacity: 0;
    position: absolute;
    width: calc(100% + 40px);
    height: 20px;
    left: -20px;
    top: 0;
    background: var(--menu_hover);
    transition: .3s;
}

.general_menu Nav A:hover::after,
.general_menu Nav A.active::after {
    opacity: 1;
    top: 40%;
}

.general_menu Nav A:hover {
    color: var(--gold);
}

.general_menu Nav UL LI UL {
    position: absolute;
    opacity: 0;
    visibility: hidden;
    top: 0;
    left: 0;
    background: #fff;
    z-index: 1;
    width: 100%;
    height: 100%;
    padding: 54px 20px 0 30px;
    transition: .5s;
}

.general_menu Nav UL LI UL.active {
    opacity: 1;
    visibility: visible;
    transition: .5s;
}

.general_menu Nav A.back {
    font-size: 16px;
    line-height: 32px;
    font-weight: 500;
    color: var(--menu_line);
    padding: 0 0 0 22px;
    left: -22px;
}

.general_menu Nav UL LI UL A {
    color: var(--menu_line);
    font-size: 16px;
    line-height: 24px;
    padding: 0 0 0 24px;
    display: inline-block;
    transition: .3s;
}

.general_menu Nav UL LI UL A:hover,
.general_menu Nav UL LI UL A.active {
    color: var(--gold);
    transition: .3s;
}

.general_menu Nav UL LI UL A::after {
    content: '';
    position: absolute;
    opacity: 1;
    width: 7px;
    height: 1px;
    left: 0;
    top: 12px;
    background: var(--menu_line);
}

.general_menu Nav UL LI UL A.back::before,
.general_menu Nav UL LI UL A.back::after {
    border-color: #282828;
}

.general_menu Nav UL LI UL A:hover::after,
.general_menu Nav UL LI UL A.active::after {
    transform: rotate(90deg);
    top: 12px;
    left: 4px;
    width: 8px;
    background: var(--dropdown-arrow);
}

.general_menu Nav UL LI UL A:hover::before,
.general_menu Nav UL LI UL A.active::before {
    width: 8px;
    left: 4px;
    background: var(--dropdown-arrow);
    transition: 0s
}

/* адреси та телефони в меню
        ---------------------------------*/
.address {
    width: 100%;
    margin: 28px 0 0 0;
    font-size: 16px;
    line-height: 26px;
    z-index: 2;
}

.address .long {
    margin: 0 0 28px 0;
    position: relative;
}

.address Address,
.address .long A,
.address .long Span,
.address .long.socials {
    padding: 0 0 0 40px;
}

.address Address .svg,
.address .long .svg {
    width: 16px;
    height: 16px;
    margin: 6px 0 0 0;
    fill: var(--gold);
    position: absolute;
    top: 0;
    left: 0;
    transition: .3s;
}

.address .long A {
    font-size: 18px;
}

.address .long A {
    transition: 0.3s;
}

.address .long A:hover {
    color: var(--gold);
}

.address .long Span {
    text-transform: uppercase;
}

.address .long.socials {
    justify-content: flex-start;
}

.address .long.socials .svg {
    position: relative;
    width: 24px;
    height: 24px;
}

.address .long.socials A {
    padding: 0;
    margin: 0 24px 0 0;
}

.address .long.socials A:hover svg {
    fill: var(--main-link-color);
}

/* шапка в детальному номера
        ---------------------------------*/
.description Span {
    padding: 0 13px;
    position: relative;
}

.description Span::after {
    content: '';
    position: absolute;
    top: 9px;
    right: -4px;
    width: 5px;
    height: 5px;
    background: #fff;
    border-radius: 50%;
    display: none;
}

.description Span:nth-last-child(1)::after {
    display: none;
}

.header.details .title {
    margin: 0 0 18px 0;
}

.header .title Span {
    max-width: 990px;
    text-align: center;
}

.by_center {
    align-items: center;
}

.header .by_center {
    /* padding-top: 65px; */
}

.header.details .select_table {
    display: flex;
    width: max-content;
    margin: 0 auto;
    margin: 0 auto 70px auto;
}

/* контент
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
Main.content {
    width: 100%;
    overflow: hidden;
}

/* компонент плитка
    ---------------------------------*/
.tile {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    margin-bottom: 50px;
    z-index: 1;
}

.one_tile {
    width: 100%;
    position: relative;
}

.one_tile Figure {
    position: relative;
}

.scale_image {
    overflow: hidden;
}

.scale_image Img {
    animation: zoom 20s ease-in infinite;
}

.one_tile Img {
    width: 100%;
    height: auto;
}

.catalog.news .one_tile Img {
    margin-bottom: 12px;
    min-height: 290px;
}

.one_tile Figure::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--opacity_black_30);
    transition: .6s;
}

.one_tile:hover Figure::after {
    opacity: 0;
    transition: .6s;
}

.tile_desc {
    width: 280px;
    background: var(--tile_desc_bg);
    margin: -40px auto 0 auto;
    position: relative;
    padding: 20px 30px;
}

.tile_desc Span {
    font-size: 36px;
    line-height: 52px;
    color: var(--gold);
    text-transform: uppercase;
    display: inline-block;
    width: 100%;
    transition: .3s;
}

.tile_desc A.but {
    color: var(--white-color-text);
}

.tile_desc A.but .element_1,
.tile_desc A.but .element_2 {
    fill: var(--opacity-link-color);
}

/*.tile_desc A.but.style_2 {padding:0 30px 0 0; color:var(--opacity-link-color); font:18px/26px DIN-medium-cond; background:none;}*/
/*.tile_desc A.but.style_2::after {top:11px; right:11px; background:var(--opacity-link-color);}*/
/*.tile_desc A.but.style_2::before {top:8px; right:10px; border-color:var(--opacity-link-color);}*/
/*.tile_desc A.but.style_2:hover::before {right:0;}*/
/*.tile_desc A.but.style_2:hover::after {width:20px; right:1px;}*/
/* компонент відео
    ---------------------------------*/
.video {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin: 60px 0 70px;
    position: relative;
}

.video::before {
    content: "";
    width: 200px;
    height: 200px;
    background-image: url("../images/logo.svg");
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0.1;
    position: absolute;
    left: 0;
    top: 0;
    transform: translate(-25%, -50%);
}

.video.video_bottom {
    margin-bottom: 0;
}

.video.video_bottom .video_place {
    padding-bottom: 0;
}

.video .sup_title {
    text-align: center;
}

.video_desc {
    padding: 0 10px;
    margin: 0 0 45px 0;
}

.container .video_desc {
    padding: 0;
}

.sup_title {
    font-family: "Times-New";
    font-size: 24px;
    line-height: 36px;
    text-transform: uppercase;
    color: var(--main-font-color);
    display: inline-block;
    width: 100%;
    font-style: italic;
    text-transform: none;
}

.video_desc .title {
    font-size: 40px;
    line-height: 43px;
    font-style: italic;
    color: var(--gold);
    letter-spacing: 1px;
    margin: 0 0 28px;
    text-align: center;
}

.short_desc .video_desc .title {
    text-align: left;
}

.short_text {
    text-align: center;
    line-height: 26px;
}

.short_text P {
    margin: 0 0 14px;
}

.video_place {
    width: 100%;
    z-index: 2;
}

.video_here {
    position: relative;
}

.video_here::after {
    content: '';
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--opacity_black_30);
    transition: .6s;
}

.video_here.active::after {
    display: flex;
}

.video_here .play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    fill: var(--dropdown-arrow);
    z-index: 1;
    transition: .3s;
}

.video_here:hover .play {
    fill: var(--gold);
    transition: .3s;
}

.video_here Img {
    width: 100%;
    height: auto;
}

.video_here Iframe {
    width: 100%;
    max-height: 200px;
}

.restaurant .video_desc .sup_title {
    color: var(--gold);
}

.restaurant .short_desc .video_desc .title {
    justify-content: flex-start;
    font-size: 38px;
    font-style: italic;
    margin-bottom: 20px;
    color: var(--main-font-color);
}

.restaurant .short_desc .short_text {
    text-align: start;
    line-height: 30px;
    font-size: 16px;
}

/* компонент плитка 2 (лінки)
    ---------------------------------*/
.tile_2 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    z-index: 2;
    position: relative
}

.tile_2 .one_tile {
    margin: 0;
    overflow: hidden;
}

.tile_2 .one_tile A::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--opacity_black_50);
    transition: .6s;
}

.tile_2 .one_tile A:hover::after {
    opacity: 0;
    transition: .6s;
}

.tile_2 Figcaption {
    text-transform: uppercase;
    font-size: 36px;
    line-height: 48px;
    position: absolute;
    bottom: 10px;
    right: 20px;
    z-index: 1;
    color: var(--gold)
}

.tile_2 .one_tile:nth-child(even) Figcaption {
    left: 20px;
    right: auto;
}

/* компонент останні новини
    ---------------------------------*/
.last_news {
    width: 100%;
    padding-top: 50px;
    display: flex;
    flex-direction: column;
    margin: 0 0 90px 0;
    background-color: #eae6e1;
    position: relative;
    z-index: 3;
}

.last_news::before {
    content: "";
    width: 200px;
    height: 200px;
    background-image: url("../images/logo.svg");
    opacity: 0.2;
    background-size: contain;
    position: absolute;
    left: 20px;
    bottom: 20px;
}

.last_news .container {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-start;
    margin-bottom: -20px;
    margin-left: 10px;
    padding: 0;
    min-width: max-content;
    transform-origin: left;
    transform: rotate(-90deg) translate(-100%, 50%);
}

.control_wrap {
    display: flex;
}

.last_news .title {
    font-family: "Times-New";
    font-style: italic;
    font-weight: 400;
    color: #fff;
    text-transform: lowercase;
    width: max-content;
    font-size: 30px;
    line-height: 30px;
    margin: 0 0 0 30px;
    justify-content: flex-start;
}

.last_news .slick-arrow {
    position: absolute;
    top: -108px;
    right: 10px;
}

.last_news .slick-arrow.slick-prev {
    right: 68px;
}

.slick-slide.one_slide {
    margin: 0 10px;
    position: relative;
}

.slick-slide.one_slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--opacity_black_30);
    transition: .6s;
}

.slick-slide.one_slide:hover::after {
    opacity: 0;
    transition: .6s;
}

.slick-slide.one_slide Img {
    width: 100%;
}

.last_news .control_prev,
.last_news .control_next {
    transform: rotate(90deg);
    background-color: transparent;
}

.one_slide Figcaption {
    text-transform: uppercase;
    font-size: 16px;
    line-height: 28px;
    position: absolute;
    bottom: 30px;
    left: 16px;
    z-index: 1;
    padding: 0 16px 0 0;
}

.one_slide Figcaption A {
    display: block;
}

/* підписатись на новини
    ---------------------------------*/

.subscribe_news {
    margin: -91px 0 45px 0;
}

.subscribe_news .news_inner{
    padding: 75px 35px 30px 30px;
    border: 2px solid #eae6e1;
}

.subscribe_titile {
    display: inline-flex;
    flex-direction: column;
    font-size: 30px;
    font-family: "OpenSans";
    font-weight: 200;
    font-style: normal;
    margin-bottom: 20px;
}

.subscribe_titile span {
    font-family: "Times-New";
    font-style: italic;
    color: var(--gold);
    margin-bottom: 7px;
}

.subscribe_news input[type=text] {
    border-bottom: 2px solid #dcc8ad;
    margin-bottom: 25px;
    padding-left: 15px;
    letter-spacing: 0.5px;
    text-transform: none;
}

.subscribe_news input[type=text]::placeholder {
    font-size: 12px;
    line-height: 12px;
    color: 717171;
    text-transform: uppercase;
}

.subscribe_news button[type=submit] {
    width: 100%;

}

/* компонент підписка
    ---------------------------------*/
.subscriber {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin: 0 0 80px 0;
    background: var(--black-bg);
    position: relative;
    padding: 18px 0;
}

.subscriber::after {
    background: url(../images/subscribe.png) repeat left top;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.subscriber .sup_title {
    font: 16px/24px DIN-bold-cond;
    color: var(--gold);
}

.subscriber .title {
    font-size: 28px;
    line-height: 36px;
    justify-content: flex-start;
    margin: 0 0 20px 0;
}

.subscriber A.but {
    display: inline-block;
    width: 210px;
}

/* компонент компонент галерея
    ---------------------------------*/
.gallery {
    width: 100%;
    display: flex;
    margin: 0 0 50px 0;
}

.gallery .container {
    padding: 0;
}

.gallery .bg_titile {
    text-align: center;
}

.gallery_slider {
    padding: 0 0 15px 0;
}

.gallery .slick-arrow {
    z-index: 1;
}

.gallery .slick-arrow.slick-next {
    left: auto;
    right: 10px;
}

.gallery_btn {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 1530px;
    margin: 0 auto 0 0;
    padding: 0 10px;
}

.gallery_btn .prev{
    transform: rotate(180deg);
}

.gallery .slick-track {
    display: flex;
    align-items: center;
}

.gallery .slick-slide.one_slide:nth-child(2n+1) {
    margin: 0 10px;
}

/* компонент компонент номери - каталог
    ---------------------------------*/
.catalog {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin: 0 0 100px 0;
    padding-top: 70px;
}

.catalog .bg_titile {
    margin-bottom: 40px;
    text-align: center;
    padding: 0 10px;
}

.rooms_name {
    display: flex;
    flex-direction: row;
    margin: 0 0 60px 0;
    padding: 0 10px;
}


.rooms_name A {
    font-size: 13px;
    line-height: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    margin: 0 30px 0 0;
    padding: 5px 15px;
    transition: .3s;
    border: 1px solid transparent;
}

.rooms_name A.active {
    border-color: var(--gold);
}

.catalog .tile_desc {
    padding: 22px;
}

.catalog .tile_desc .title {
    justify-content: flex-start;
    font-size: 24px;
    line-height: 30px;
    color: var(--gold);
    margin: 0 0 16px 0;
    background: none;
    transition: .3s;
}

.catalog .one_tile:hover .title {
    color: var(--light_gold);
    transition: .3s;
}

.catalog .col_1 {
    display: flex;
    flex-direction: row;
}

.catalog .col_1 .col {
    width: 50%;
    display: flex;
    flex-direction: column;
    margin: 0 0 16px 0;
}

.catalog .tile_desc Span {
    font: 14px/18px DIN-medium-cond;
    color: var(--opacity-link-color);
}

.catalog .tile_desc Span:nth-child(2) {
    font-size: 20px;
    line-height: 28px;
    color: var(--main-link-color);
}

.catalog .col Sup {
    font-size: 11px;
    line-height: 12px;
}

.catalog .col_2 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.catalog .tile_desc A.but:last-child {
    margin: 3px 0 0 0;
    font: 16px/24px DIN-light-cond;
    width: 140px;
}

.catalog .tile_desc A.but.style_2 {
    background: var(--opacity-but);
    padding: 12px;
    font-family: DIN-light-cond;
    color: var(--main-link-color);
    margin: 0 0 8px 0;
    width: 100%;
}

.catalog A.but.style_2:hover {
    background: var(--light_gold);
}

.catalog .tile_desc A.but.style_2::after,
.catalog .tile_desc A.but.style_2::before {
    display: none;
}

.catalog .tile_desc A.but {
    display: inline-block;
    text-align: center;
}

.catalog .one_tile Figure::after {
    display: none;
}

.catalog

/* компонент іконки
        ---------------------------------*/
.icons {
    width: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    margin: 0 0 40px 0;
    padding: 40px 0 0 0;
}

.icons .container {
    display: grid;
    grid-template-columns: 1fr;
    justify-content: center;
}

.icons .one_tile {
    display: flex;
    flex-direction: column;
    align-items: center;
}


.icons .one_tile Img {
    width: 60px;
    margin: 0 0 10px 0;
}

.icons Figcaption {
    display: flex;
    flex-direction: column;
    font-size: 16px;
    line-height: 20px;
    text-align: center;
    padding: 0 20px;
    width: 100%;
}

.restaurant .icons,
.icons.icons.template_2 {
    padding: 0;
    background: none;
}

.restaurant .icons .container,
.icons.template_2 .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto 20px;
}

.restaurant .icons Figcaption,
.icons.template_2 Figcaption {
    padding: 0;
    text-align: left;
}

.restaurant .icons Figcaption .name,
.icons.template_2 Figcaption .name {
    display: flex;
    flex-direction: column;
    font-family: "Times-New";
    font-style: italic;
    font-size: 36px;
    line-height: 38px;
    color: var(--gold);
    text-transform: lowercase;
}

.restaurant .icons Figcaption .sub_name,
.icons.template_2 Figcaption .sub_name {
    font-family: "OpenSans";
    font-weight: 200;
    font-size: 24px;
    line-height: 28px;
    font-style: normal;
    color: var(--main-font-color);
    text-transform: uppercase;
}

.restaurant .icons .one_tile,
.icons.template_2 .one_tile {
    margin: 0;
    flex-direction: row;
    transition: .3s;
    position: relative;
    max-width: 362px;
    margin: 0 auto;
}


.restaurant .icons .one_tile A,
.icons.template_2 .one_tile A {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 40px 15px 40px 35px;
    width: 100%;
}

.restaurant .icons .one_tile Img,
.icons.template_2 .one_tile Img {
    width: 48px;
    margin: 0 24px 0 0;
}

.restaurant .icons .one_tile + .one_tile::before,
.icons.template_2 .one_tile + .one_tile::before {
    content: "";
    width: 100px;
    height: 1px;
    background-color: #f0e8e0;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%)
}

.icons.details_icon .one_tile {
    padding: 40px 20px;
    margin: 0;
    position: relative;
}

.icons.details_icon .one_tile Img {
    margin-bottom:  35px;
}

.icons.details_icon .one_tile:first-child::after {
    content: "";
    width: 135px;
    height: 1px;
    background-color: #e3d4c6;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.icons.details_icon .one_tile::before {
    content: "";
    width: 135px;
    height: 1px;
    background-color: #e3d4c6;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

/* компонент короткий опис
        ---------------------------------*/
.short_desc {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 65px 0 45px 0;
    position: relative;
}

.short_desc::after {
    content: '';
    position: absolute;
    bottom: 130px;
    right: 0;
    background: var(--tile_desc_bg);
    width: 80%;
    height: 38%;
    display: none;
}

.short_desc .sup_title {
    font-size: 40px;
}

.short_desc .but {
    width: max-content;
}
.photo_place .one_photo {
    position: relative;
    margin: 0 0 34px 0;
}

.photo_place .one_photo::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--opacity_black_30);
    transition: .6s;
}

.photo_place .one_photo:hover::after {
    opacity: 0;
    transition: .6s;
}

.photo_place .one_photo Img {
    width: 100%;
}

.short_desc .short_text {
    text-align: left;
}

.short_desc.left_text {
    padding: 78px 0 110px 0;
}

.short_desc.left_text .sup_title {
    font-family: "OpenSans";
    font-style: normal;
    text-transform: uppercase;
    font-size: 28px;
    margin-bottom: 10px;
}

.short_desc.left_text .title {
    font-size: 28px;
    line-height: 32px;
    font-style: italic;
    justify-content: flex-start;
}

.short_desc.left_text .short_text {
    line-height: 30px;
}

.short_desc.left_text {
    position: relative;
}

.short_desc.left_text::before {
    content: "";
    width: 250px;
    height: 250px;
    background-image: url("../images/figure_bg.jpg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    position: absolute;
    top: 250px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.1;
}

.short_desc.right_text.two_images .one_photo:last-child {
    display: none;
}

/* компонент інші номери
        ---------------------------------*/
.other_rooms {
    width: 100%;
    display: flex;
    margin: 0 0 90px 0;
    position: relative;
}

.other_rooms .container {
    padding: 0;
}

.other_rooms .container > .title,
.slider_product-title {
    font-family: "OpenSans";
    font-style: normal;
    text-transform: lowercase;
    margin-bottom: 40px;
}

.other_rooms_slider {
    padding: 0 0 72px 0;
}


.other_rooms .slick-slide.one_slide:nth-child(2n+1),
.other_rooms .slick-slide.one_slide {
    margin: 0;
}

.other_rooms .slick-slide.one_slide::after {
    background: var(--opacity_black_70);
}

.other_rooms .slick-slide.one_slide:hover::after {
    background: var(--opacity_black_50);
    opacity: 1;
}

.other_rooms .slick-arrow {
    position: absolute;
    bottom: 0;
    left: 10px;
    z-index: 1;
}

.other_rooms .slick-arrow.slick-next {
    left: auto;
    right: 10px;
}

.other_rooms .slick-track {
    display: flex;
    align-items: center;
}

.other_rooms .tile_desc {
    padding: 0 10px 30px 40px;
    width: 100%;
    background: none;
    bottom: 0;
    top: auto;
    left: 0;
    transform: none;
    position: absolute;
}

.other_rooms .tile_desc .title {
    font-style: italic;
    justify-content: flex-start;
    font-size: 24px;
    line-height: 30px;
    color: var(--white-color-text);
    margin: 0 0 16px 0;
    transition: .3s;
}

.other_rooms .one_tile:hover .title {
    color: var(--light_gold);
    transition: .3s;
}

.other_rooms .col_1 {
    display: grid;
    grid-row-gap: 17px;
}

.other_rooms .col_1 .col {
    width: 50%;
    display: flex;
    flex-direction: column;
    margin: 0;
}

.other_rooms .tile_desc Span {
    font-size: 14px;
    line-height: 18px;
    font-family: "OpenSans";
    color: var(--white-color-text);
}

.other_rooms .tile_desc Span:nth-child(2) {
    font-size: 20px;
    line-height: 28px;
    color: var(--white-color-text);
}

.other_rooms .one_slide A {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.other_rooms .slick-slide.one_slide {
    height:460px;
}

.other_rooms .slick-slide.one_slide Img {
    height: 100%;
    object-fit: cover;
}

/* компонент компонент новини - каталог
        ---------------------------------*/
.news {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin: 0 0 100px 0;
}

.news.catalog {
    padding-top: 30px;
}

.news_row {
    position: relative;
    margin-bottom: 150px;
}

.news_row .one_tile {
    z-index: 1;
}

.catalog.news .news_row .one_tile {
    margin: 0 auto 60px auto;
    max-width: 400px;
}

.catalog.news Figcaption {
    transition: 0.3s;
}

.catalog.news Figcaption:hover {
    color: var(--gold);
}

.news_row::after {
    content: '';
    position: absolute;
    top: 5%;
    left: 20%;
    background: var(--tile_desc_bg);
    width: 60%;
    height: 76%;
}

.catalog .news_row::after {
    display: none;
}

.news Figure {
    z-index: 1;
}

.news Figcaption {
    text-transform: uppercase;
    font-size: 18px;
    line-height: 28px;
    position: absolute;
    bottom: 30px;
    left: 16px;
    z-index: 1;
    padding: 0 16px 0 0;
}


.news.catalog Figcaption {
    position: relative;
    bottom: auto;
    text-transform: uppercase;
    left: auto;
    font-size: 15px;
    line-height: 22px;
}

.news Figure A {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

.news Figure A::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--opacity_black_30);
    transition: .6s;
}

.news.catalog Figure A::after {
    display: none;
}

.news Figure A:hover::after {
    opacity: 0;
    transition: .6s;
}

.news .long {
    justify-content: center;
}

.news_slider {
    margin-left: auto;
    width: 76%;
    transform: translateY(40px);
}

.news_slider .one_slide {
    margin: 0 5px;
}

.last_news .slick-arrow.control_prev,
.last_news .slick-arrow.control_next {
    position: relative;
    top: auto;
    left: auto;
    bottom: auto;
    right: auto;
    display: block;
}

.last_news .slick-arrow.control_next {
    margin-left: 12px;
    transform: rotate(-90deg);
}

.news_slider .one_slide Figcaption a {
    color: var(--white-color-text);
    font-family: "Times-New";
    transition: 0.3s;
}

.news_slider .one_slide Figcaption a:hover {
    animation: blink_text 0.6s;
}

@keyframes blink_text {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    90% { opacity: 1; }
}

/* стаття
        -----------------------------------------*/
.for_article {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin: 0 0 80px 0;
    padding-top: 50px;
    position: relative;
}

.for_article .news_but {
    text-transform: none;
    width: max-content;
    padding: 7px 22px;
    margin: 0 auto 32px auto;
    padding-left: 30px;
    letter-spacing: 0px;
    font-size: 15px;
    color: #a0a0a0;
    border: 1px solid var(--brown_light);
}

.for_article .news_but::before,
.for_article .news_but::after {
    content: "";
    width: 8px;
    height: 1px;
    background-color: #a0a0a0;
    position: absolute;
    left: 15px;
    top: 50%;
    transform-origin: left;
    transition: 0.3s;
}

.for_article .news_but::before {
    transform: translateY(-50%) rotate(-45deg); 
}

.for_article .news_but::after {
    transform: translateY(-50%) rotate(45deg); 
}


.for_article .news_but:hover::before,
.for_article .news_but:hover::after {
    background-color: #fff;
}

.for_article .container {
    padding: 0;
}

.for_article A.but.style_2 {
    background: none;
    border: 1px solid var(--opacity-link-color);
    max-width: 146px;
    padding: 8px 20px 8px 32px;
    color: var(--opacity-link-color);
    margin: 12px 0 34px 10px;
    display: inline-block;
}

.for_article A.but.style_2::before {
    transform: rotate(-135deg);
    right: auto;
    left: 14px;
    top: 17px;
    border-color: var(--opacity-link-color);
}

.for_article A.but.style_2::after {
    right: auto;
    left: 15px;
    top: 20px;
    width: 8px;
    background: var(--opacity-link-color);
}

.for_article A.but.style_2:hover::before {
    right: auto;
    left: 10px;
}

.for_article A.but.style_2:hover::after {
    right: auto;
    left: 11px;
    width: 12px;
}

.for_article H1,
Article H1,
Article H2,
Article H3 {
    font-size: 30px;
    line-height: 42px;
    padding: 0 10px 28px;
    text-transform: uppercase;
    font-weight: 400;
    font-family: 'Times-New';
}

.for_article.news_article h1{
    text-align: center;
}

Article H2 {
    font-size: 26px;
    line-height: 34px;
    padding: 0 10px 22px;
    font-family: "OpenSans";
}

Article H3 {
    font-size: 22px;
    line-height: 28px;
    padding: 0 10px 14px;
}

Article {
    font-size: 14px;
    line-height: 30px;
    overflow-x: hidden;
}

Article P,
Article em,
Article blockquote {
    padding: 0 10px 26px;
}

Article IMG {
    margin: 10px 0 30px;
    height: 374px !important;
    width: calc(100% + 20px) !important;
    object-fit: cover;
    position: relative;
    left: -10px;
}

Article A {
    text-decoration: underline;
    color: var(--gold);
    transition: .3s;
}

Article A:hover {
    color: var(--light_gold);
    transition: .3s;
}

Article blockquote {
    font-style: italic;
    position: relative;
    margin: 0 10px 60px 10px;
    padding: 30px 10px 0 35px;
    margin: 0;
    border: 3px solid #dcc8ad;
    position: relative;
}

Blockquote::after {
    content: "";
    width: 50px;
    height: 50px;
    background-color: #fff;
    background-image: url("../images/right-quotes.svg");
    background-size: 50%;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 20px;
    left: -10px;
}

Article UL {
    padding: 0 10px 26px;
    margin: 0;
    list-style: none;
}

Article UL LI {
    padding: 0 0 10px 25px;
    position: relative;
}

Article UL LI::before {
    content: "•";
    color: var(--gold);
    position: absolute;
    top: 0;
    left: 0;
    font-size: 30px;
    line-height: 30px;
}

Article OL {
    padding: 0 10px 26px;
    margin: 0;
}

Article Footer {
    width: 100%;
    display: flex;
    flex-direction: row;
    margin: 10px 0 0 0;
    color: var(--opacity-link-color);
    padding: 0 10px;
}

Article Footer .svg {
    width: 18px;
    height: 18px;
    margin: 6px 0 0 20px;
    transition: .3s;
}

Article Footer .svg:hover {
    fill: var(--main-link-color);
    transition: .3s;
}

.new_social {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
}

.new_social.bottom_social {
    max-width: 1010px;
    margin: 0 auto;
    justify-content: flex-start;
}

.new_social span {
    font-size: 13px;
    letter-spacing: 0.5px;
    color: #a1a1a1;
    margin-right: 25px;
}

.new_social a {
    width: 20px;
    height: 20px;
    margin-right: 15px;
}

.new_social svg {
    fill: #c8b39e;
    width: 100%;
    height: 100%;
    transition: 0.3s;
}

.new_social a:hover svg {
    opacity: 0.7;
}

/* компонент контакти
        -----------------------------------------*/
.contacts {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin: 0;
    position: relative;
    margin: 0 0 20px 0;
}

.contacts .container {
    padding: 0;
}

.contacts .address {
    padding: 42px 10px;
    margin: 0 0 40px;
    position: relative;
}

.contacts .long {
    z-index: 1;
}

.contacts .long.socials {
    margin: 0;
}

.contacts .address .svg {
    fill: var(--gold);
    transition: .3s;
}

.contacts .long:hover .svg,
.contacts .long.socials A:hover .svg {
    fill: var(--light_gold);
    transition: .3s;
}

.contacts .long.socials:hover .svg,
.contacts .long.socials A .svg,
.contacts .address.gold .long .svg,
.contacts .gold .long.socials A .svg {
    fill: var(--main-link-color);
}

.contacts .address .long Span {
    color: var(--opacity-link-color);
}

/* компонент фідбек + зв.зв
        -----------------------------------------*/
.feedback_map {
    display: flex;
    padding-top: 38px;
    width: 100%;
    flex-direction: column;
    position: relative;
    background-color: #fff;
}

.contacts_map-titile {
    font-family: "Times-New";
    text-transform: uppercase;
    text-align: center;
    font-size: 30px;
    line-height: 36px;
    z-index: 2;
}

.addres-title {
    display: inline-block;
    letter-spacing: 1px;
    line-height: 30px;
    margin-bottom: 55px;
}

.feedback_map .map_place {
    margin-bottom: 0;
}
.feedback_map .map_place .map_here {
    height: 525px;
}
.map_place {
    margin: 0 0 50px 0;
    color: #000;
}

.gm-style .gm-style-iw {
    font-size: 14px !important;
}

.map_here Iframe {
    width: 100% !important;
    height: 538px !important;
}

.feedback_map Input,
.feedback_map Textarea {
    margin: 0 0 34px 0;
}

.feedback_map .but {
    width: 100%;
}

.feedback_map Input::-webkit-input-placeholder,
.feedback_map Textarea::-webkit-input-placeholder,
.book_here Input::-webkit-input-placeholder,
.book_here Textarea::-webkit-input-placeholder {
    color: var(--main-font-color);
    opacity: 0.5;
}

.feedback_map Input::-moz-placeholder,
.feedback_map Textarea::-moz-placeholder,
.book_here Input::-moz-placeholder,
.book_here Textarea::-moz-placeholder {
    color: var(--main-font-color);
    opacity: 0.5;
}

.feedback_map .if_right Form::after {
    display: none;
}

.feedback_map .if_right Form {
    padding: 0 20px 50px 20px;
    background-color: #fff;
    z-index: 2;
}

.contacts_map-inner {
    width: 100%;
    max-width: 1290px;
    margin: 0 auto 90px auto;
    padding: 0 10px;
}

.feedback_map .address .long {
    margin-bottom: 40px;
}

.feedback_map .address .long A {
    font-weight: 700;
}

.feedback_map .address .long.socials {
    padding-left: 0;
}

.feedback_map .if_right {
    border: 1px solid var(--gold);
    padding-top: 32px;
    max-width: 490px;
    width: 100%;
    margin: 0 auto;
    z-index: 2;
}

.feedback_map .title {
    font-size: 30px;
    line-height: 40px;
    opacity: 0.1;
    letter-spacing: 1px;
    margin-bottom: 35px;
}

/* компонент послуги
        -----------------------------------------*/
.services {
    width: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    margin: 0 0 15px 0;
    padding-top: 40px;
}

.services Figure {
    z-index: 1;
    margin-bottom: 28px;
}

.services.details Figure {
    margin-bottom: 37px;
}

.services .tile_desc {
    background: none;
    width: 100%;
    padding: 0;
    margin: 20px 0 0 0;
    z-index: 1;
}

.services Figure::after {
    display: none;
}

.services Figure A::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--opacity_black_50);
    transition: .6s;
}

.services Figure A:hover::after {
    background: var(--opacity_black_30);
    transition: .6s;
}

.service_inner {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 490px; 
}

.service_title {
    display: inline-flex;
    flex-direction: column;
    font-family: "Times-New";
    font-size: 30px;
    font-style: italic;
    color: var(--gold);
    margin-bottom: 30px;
}

.service_title > span {
    font-family: "OpenSans";
    font-size: 22px;
    font-weight: 400;
    font-style: normal;
    color: var(--main-font-color);
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.service_subtitile {
    font-size: 15px;
    line-height: 27px;
    letter-spacing: 0.2px;
    margin-bottom: 32px;
}

.service_inner .but {
    max-width: 230px;
}

/* компонент послуги - детальне
        -----------------------------------------*/
.services .container {
    max-width: 1300px;
}

.services .title {
    padding: 0 10px;
    font-style: normal;
    font-size: 30px;
    line-height: 34px;
    text-transform: uppercase;
}


.services.details .one_tile::after {
    top: 37%;
    width: 32%;
    height: 55%;
}

.services.details .one_tile:nth-child(even)::after {
    left: auto;
    right: 20%;
}

.services .one_tile {
    margin-bottom: 60px;
}

/* компонент лінки (плитка #2)
        -----------------------------------------*/
.links {
    width: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    margin: 0 0 50px 0;
}

.links .js_links_slider {
    padding-bottom: 75px;
}

.links .js_links_slider .slick-arrow {
    position: absolute;
    bottom: 0;
}

.links .js_links_slider .slick-prev {
    left: 15px;
}

.links .js_links_slider .slick-next {
    right: 15px;
}


.links .js_links_slider .slick-track {
    display: flex;
}
.links .one_tile {
    width: max-content;
    margin-right: 10px;
}

.links .one_tile Figcaption {
    font-size: 24px;
    line-height: 28px;
    color: var(--white-color-text);
    padding: 0 10px 36px 40px;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    text-transform: uppercase;
    z-index: 1;
}

.links .one_tile A {
    display: inline-block;
    position: relative;
    z-index: 1;
    width: 285px;
    height: 525px;
}

.links .js_links_slider .one_tile img {
    height: 100%;
    object-fit: cover;
}

.links .one_tile A::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--opacity_black_50);
    transition: .6s;
}

.links .one_tile A:hover::after {
    background: var(--opacity_black_30);
    transition: .6s;
}

/* компонент бронювання
        -----------------------------------------*/
.booking {
    width: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    margin: 0 0 70px 0;
}

.booking .contacts,
.booking .address {
    margin: 0;
}

.book_here {
    position: relative;
}


.book_here::after {
    content: "";
    width: 150px;
    height: 150px;
    background-image: url("../images/logo.svg");
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.1;
    position: absolute;
    top: 60px;
    right: 20px;
}

.book_here .title{
    justify-content: flex-start;
    color: var(--gold);
    font-size: 48px;
    line-height: 52px;
}

.book_here Button {
    width: 100%;
    margin: 34px 0 0 0;
}

.book_here .dropdown {
    width: 100%;
    border-bottom: 1px solid var(--input_border);
    margin: -2px 0 20px 0;
    color: #717171;
    text-align: left;
}

.book_here .dropdown-open {
    color: var(--main-font-color);
    border-color: var(--main-font-color);
    transition: .3s;
}

.book_here .dropdown Span {
    padding: 0 0 0 8px;
}

.book_here .dropdown .overflow::after {
    right: 11px;
    top: 19px;
    background: var(--menu_line);
}

.book_here .dropdown .overflow::before {
    right: 8px;
    top: 19px;
    background: var(--menu_line);
}

.book_here .dropdown:hover .overflow::after,
.book_here .dropdown-open .overflow::after {
    background: var(--main-font-color);
}

.book_here .dropdown:hover .overflow::before,
.book_here .dropdown-open .overflow::before {
    background: var(--main-font-color);
}

.book_here .dropdown UL {
    width: 100%;
    z-index: 1;
    max-width: none;
}

.book_here .dropdown.error {
    border-color: var(--error_color);
    color: var(--error_color);
    transition: .3s;
}

.book_here .long {
    grid-gap: 24px;
}

.if_right Form {
    padding: 45px 0;
    width: 100%;
    background-color: #f9f8f6;
}

.if_right Form::before,
.if_right Form::after {
    content: "";
    height: 100%;
    width: 10px;
    background-color: inherit;
    position: absolute;
    top: 0;
}

.if_right Form::before {
    right: 100%;
}

.if_right Form::after {
    left: 100%;
}

.if_right Form input[type=time]::-webkit-calendar-picker-indicator {
    background: url("../images/arrow-down.svg");
    background-size: 7px;
    background-repeat: no-repeat;
    background-position: center;
    width: 20px;
}


/* підвал сайту
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
Footer.footer {
    width: 100%;
    background: var(--footer_bg);
    color: var(--white-color-text);
    padding: 40px 0 30px 0;
}

.footer A.but.mob {
    display: none;
}

.footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.footer .col_1,
.footer .col_2,
.footer .col_3 {
    margin: 0 0 35px 0;
}

.footer .col_3 {
    display: flex;
    flex-direction: column;
}

.location_footer {
    display: none;
}

.footer .logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
    margin: 0 0 28px 0;
}

.footer .logo svg {
    margin-right: 18px;
    width: 60px;
    height: 60px;
    fill: #a17142;
}

.footer .logo_text {
    display: flex;
}

.footer .logo svg {
    display: none;
}

.footer .logo_title {
    font-size: 18px;
    line-height: 20px;
}

.footer .logo_subtitle {
    font-size: 8px;
    line-height: 8px;
}

.footer .phones {
    position: relative;
    margin: 0 auto 22px auto;
    width: max-content;
    display: flex;
}

.footer .phones .svg {
    width: 16px;
    height: 16px;
    fill: var(--white-color-text);
    opacity: 0.8;    
    position: absolute;
    top: 6px;
    left: 0;
    transition: .3s;
}

.footer .phones:hover .svg {
    fill: var(--light_gold);
    transition: .3s;
}

.footer .phones A,
.footer .col_3 .phones A {
    font-size: 18px;
    line-height: 26px;
    font-weight: 300;
    color: var(--white-color-text);
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 0 0 0 26px;
}

.footer .col_3 .phones A:hover {
    color: var(--gold);
}

.footer A.but {
    display: inline-block;
    font-size: 15px;
    text-align: center;
    color: #fff;
    margin: 0 auto;
}

.footer .phones .socials {
    float: right;
    position: relative;
    display: flex;
    flex-direction: row;
    margin: 0 0 0 30px;
}

.footer .phones.mob {
    display: none;
}

.footer .phones .socials A {
    display: flex;
    position: relative;
    margin: 0 0 6px 0;
}

.footer .phones:hover .socials .svg {
    fill: var(--gold);
}

.footer .phones:hover .socials A:hover .svg {
    fill: var(--light_gold);
}

.footer .phones .socials .svg {
    width: 20px;
    height: 20px;
    top: 3px;
}

.dif {
    display: flex;
}

.vm {
    display: inline-block;
    margin: 0 0 0 16px;
}

.vm Img {
    width: 50px;
    margin: 4px 0 0 6px;
}

.footer .col_2 {
    text-align: center;
    display: grid;
    grid-gap: 20px;
    margin: 0 0 16px 0;
    width: 100%;
    max-width: 750px;
}

.footer .col_2 .title {
    font-family: "Times-New";
    text-transform: uppercase;
    margin: 0 0 13px 0;
    font-size: 20px;
    line-height: 26px;
    color: var(--white-color-text);
    font-style: inherit;
}

.footer .col_2 A {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--opacity-link-color);
    font-size: 15px;
    line-height: 22px;
    transition: .3s;
    margin-bottom: 15px;
}

.footer .col_2 A:hover,
.footer .col_2 A.active {
    color: var(--white-color-text);
    transition: .3s;
}

.footer .col_2 svg {
    display: none;
    margin-right: 15px;
    width: 24px;
    height: 24px;
    fill: #fff;
}

.footer .col_3 {
    margin-bottom: 0;
}

.footer .col_3,
.footer .col_3 A {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 13px;
    line-height: 18px;
    color: var(--opacity-link-color-20);
}

.footer .col_3 A {
    transition: .3s;
}

.footer .col_3 A:hover {
    color: var(--opacity-link-color);
    transition: .3s;
}
.footer .copy Span {
    text-align: center;
    display: block;
    margin: 0 auto;
}

.footer_bottom * {
    color: var(--opacity-link-color-20);
    font-size: 13px;
    line-height: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer_bottom a {
    transition: 0.3s;
}

.footer_bottom a:hover {
    color: #fff;
}

/*--------------------------------------------------------------------     Стандартні стилі сайтів     --------------------------------------------------------------------*/
/* Google мапа
-----------------------------------------*/
.map_area {
    width: 100%;
    height: 400px;
}

/* 404 сторінка
-----------------------------------------*/
.page_404 {
    width: 100%;
    padding: 200px 0;
}

.page_404 .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page_404 .code {
    font-size: 46px;
    line-height: 70px;
}

.page_404 A {
    color: var(--gold);
    text-decoration: underline;
}

/* pop-up
-----------------------------------------*/
.popup {
    background: #fff;
    padding: 30px 40px;
    width: 100%;
    height: auto;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}


.popup .message_title {
    font-size: 36px;
    line-height: 46px;
}

.popup .message_subtitle {
    font-size: 16px;
    line-height: 24px;
    color: var(--gold);
}

/* екран логування
-----------------------------------------*/
.admin_component.login {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin: 100px 0;
    align-items: center;
}

.admin_component.login Form {
    display: flex;
    flex-direction: column;
    max-width: 300px;
}

.admin_component.login .for_sucsess Input {
    font: 16px/24px DIN-light-cond;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 2px solid var(--gold);
    cursor: pointer;
    background: none;
    transition: .3s;
    position: relative;
    display: inline-block;
}


.admin_component.login .for_sucsess Input:hover {
    border-color: var(--light_gold);
    box-shadow: 0 0 6px var(--gold);
    transition: .3s;
}

.admin_component.login .evry_title.wrong Input {
    border-bottom: 1px solid var(--error_color);
    color: var(--error_color);
    transition: .3s;
}

.admin_component.login .evry_title.wrong Input:focus {
    border-bottom: 1px solid var(--dropdown-arrow);
    transition: .3s;
}


/* слайдер повару
-----------------------------------------*/

.slider_product {
    margin-bottom: 35px;
    position: relative;
}

.slider_product::before {
    content: "";
    width: 200px;
    height: 200px;
    position: absolute;
    bottom: 0;
    right: 0;
    transform: translate(50%, 0);
    background-image: url("../images/logo.svg");
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.1;
}

.catalog .slider_product:nth-child(even)::before {
    width: 100px;
    height: 100px;
    bottom: 0;
    right: auto;

    transform: none;
}

.slider_product .container {
    max-width: 1040px;
    height: 510px;
    padding-bottom: 85px;
    position: relative;
}

.slider_product .container .slick-list,
.slider_product .container .slick-track {
    height: 100%;
}

.slider_product .slick-arrow {
    position: absolute;
    bottom: 0;
    background-color: transparent;
}

.slider_product .slick-prev {
    left: 20px;
}

.slider_product .slick-next {
    right: 20px;
}

.slider_product-title {
    display: none;
}

.slider_product .one_product {
    width: 100%;
    position: relative
}

.slider_product .one_product {
    position: relative;
}

.slider_product .one_product::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--opacity_black_50);
    z-index: 1;
}

.slider_product figcaption,
.slider_product .fig_element {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 0 12px 20px 12px;
    width: 100%;
    color: var(--white-color-text);
    z-index: 2;
}

.slider_product .fig_element {
    bottom: 85px;
}

.slider_product .one_product img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider_product .product_text  {
    display: flex;
    flex-direction: column
}

.one_product-title {
    text-transform: uppercase;
    font-size: 24px;
    margin-bottom: 20px;
}

.one_product-subtitle {
    font-size: 13px;
    text-transform: lowercase;
    line-height: 20px;
    margin-bottom: 20px;
}

.product_buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 15px;
    margin-top: 15px;
    width: 100%;
    max-width: 300px;
}

.product_buttons .but {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}

.catalog .fig_element {
    width: calc(100% - 20px);
    max-width: 1010px;
    padding-bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.catalog .slider_product .slick-arrow {
    bottom: 20px;
}

.services.details {
    text-align: center;
}

.services.details .scale_image {
    display: none;
    height: 375px;
}

.services.details .scale_image:first-child {
    display: block;
}

.services.details .scale_image img {
    height: 100%;
    object-fit: cover;
}

.services.details .title {
    margin-bottom: 40px;
    max-width: 1010px;
    margin: 0 auto 40px auto;
}

.services.details .tile_desc Span {
    color: var(--main_font_color);
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 11px;
}

.services.details .tile_desc Span .color {
    font-family: "Times-New";
    font-style: italic;
    text-transform: none;
    color: var(--gold);
    font-size: 48px;
    line-height: 54px;
}

.services.details .short_text {
    margin:  0 0 22px 0;
    display: inline-block;
}

.services.details .short_text P {
    padding: 0 10px;
    font-size: 15px;
    letter-spacing: 0.5px;
    line-height: 30px;
}

.services.details .but {
    width: max-content;
    margin: 0 auto;
}

.services.details .one_tile {
    margin-bottom: 90px;
}

.services.details .one_tile:not(:first-child) .tile_desc Span  {
    font-size: 20px;
    line-height: 24px;
    text-align: left;
}

.services.details .one_tile:not(:first-child) .tile_desc Span .color {
    font-size: 36px;
    line-height: 44px;
}

.services.details .one_tile:not(:first-child) .short_text {
    text-align: left;
}

.services.details .one_tile:not(:first-child) .short_text p {
    padding-left: 0;
}

.services.details .one_tile:not(:first-child) .but {
    margin: 0;
}

.services.details .tile_desc A.but {
    color: var(--contrast-color-text);
}
.services.details .tile_desc A.but:hover {
    color: #fff;
}

.payment_systems {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.payment_systems svg {
    width: 50px;
    height: 50px;
    margin-right: 20px;
}