*,
*:after,
*:before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

:root {
	
--basic-white: #f5f2e8; /* С„РёСЂРјРµРЅРЅС‹Р№ СЃРІРµС‚Р»С‹Р№ */
--basic-white-pure: #fff; /* С‡РёСЃС‚С‹Р№ Р±РµР»С‹Р№ */
--basic-black: #111213; /* С„РёСЂРјРµРЅРЅС‹Р№ С‡РµСЂРЅС‹Р№ */
--basic-total-black: #000; /* С‡РµСЂРЅС‹Р№ */

--basic-blue: #253443; /* С„РёСЂРјРµРЅРЅС‹Р№ СЃРёРЅРёР№ */
--basic-red: #802f2d; /* С„РёСЂРјРµРЅРЅС‹Р№ РєСЂР°СЃРЅС‹Р№ */

--basic-gold: #e7b78a; /* С„РёСЂРјРµРЅРЅС‹Р№ Р·РѕР»РѕС‚РѕР№ */
--basic-gold-light: #dbc59b; /* СЃРІРµС‚Р»Рѕ-Р·РѕР»РѕС‚РѕР№ */
--basic-gold-pale: #f3ebdd; /* Р±Р»РµРґРЅРѕ-Р·РѕР»РѕС‚РѕР№ */

--transitionLong: all 0.7s cubic-bezier(.19,1,.22,1); /* transition РґРѕР»РіРёР№ */
--transition: all .4s cubic-bezier(.19,1,.22,1); /* transition */

}

html,
input,
textarea {}

html,
input,
textarea,
select,
p,
.__p {
    position: relative;
    font-family: 'tt-fors', Tahoma, Calibri;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.5rem;
}

html,
input,
textarea,
select,
p {
    color: var(--basic-black);
}

body {
    position: relative;
    text-align: left;
    margin: 0 auto;
    background: var(--basic-white);
    -webkit-font-smoothing: antialiased;
    min-width: 56rem;
    overflow-x: hidden;
}

body.__open-menu {
    padding-right: .25rem;
    overflow-y: hidden;
}

@media (width < 56rem) {
		
	body {
		min-width: 20rem;
	}	
	
}

body:before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    transition: var(--transitionLong);
    background: var(--basic-black);
    opacity: 0;
}

body.show-menu:before, 
body.__open-menu:before {
    opacity: .64;
    transition: var(--transitionLong);
    z-index: 600;
}

::selection {
    color: var(--basic-gold-pale);
    background-color: var(--basic-black);
}

::-webkit-scrollbar {
    width: .25rem;
}

::-webkit-scrollbar-track {
    background: var(--basic-white);
}

::-webkit-scrollbar-thumb {
    background: var(--basic-blue);
}

a,
input,
select,
textarea {
    outline: none;
}

img {
    vertical-align: top;
}

iframe {
    border: none;
    vertical-align: top;
}

ul,
ol {
    position: relative;
    padding: 0;
    margin: 0;
    list-style: none;
}

/*** ------------ clear ------------ ***/

header:after,
.wrap:not(.d-flex):after,
.container:not(.d-flex):after,
ul:not(.d-flex):after,
ol:after,
form:after,
ul:not(.slick-dots):after {
    content: '';
    display: block;
    clear: both;
    overflow: hidden;
}

/*** ------------ end.clear ------------ ***/

/*** ------------ cursor ------------ ***/

.cursor {
    position: absolute;
    background: var(--basic-red);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    user-select: none;
    pointer-events: none;
    z-index: 10000;
    opacity: 0;
    -webkit-transform: scale(.33); 
    -moz-transform: scale(.33);
    -ms-transform: scale(.33);
    -o-transform: scale(.33);
    transform: scale(.33); 
    -webkit-transition: 0.7s cubic-bezier(0.55, -1.27, 0.0, 1.33) transform, 0.6s cubic-bezier(0.55, -0.27, 0.0, 0.13) background-color;
    -moz-transition: 0.7s cubic-bezier(0.55, -1.27, 0.0, 1.33) transform, 0.6s cubic-bezier(0.55, -0.27, 0.0, 0.13) background-color;
    -o-transition: 0.7s cubic-bezier(0.55, -1.27, 0.0, 1.33) transform, 0.6s cubic-bezier(0.55, -0.27, 0.0, 0.13) background-color;
    transition: 0.7s cubic-bezier(0.55, -1.27, 0.0, 1.33) transform, 0.6s cubic-bezier(0.55, -0.27, 0.0, 0.13) background-color;
}

.cursor.__cursor-button-Left {
    opacity: 1;
    -webkit-transform: scale(4) rotate(360deg);
    -moz-transform: scale(4) rotate(360deg);
    -ms-transform: scale(4) rotate(360deg);
    -o-transform: scale(4) rotate(360deg);
    transform: scale(4) rotate(360deg);
    background: url('../images/icons/icons__arrows/icon__arrow-left-white.svg') no-repeat center var(--basic-red);
    background-size: 3px;
    opacity: 1;
}

.cursor.__cursor-button-Right {
    opacity: 1;
    -webkit-transform: scale(4) rotate(360deg);
    -moz-transform: scale(4) rotate(360deg);
    -ms-transform: scale(4) rotate(360deg);
    -o-transform: scale(4) rotate(360deg);
    transform: scale(4) rotate(360deg);
    background: url('../images/icons/icons__arrows/icon__arrow-right-white.svg') no-repeat center var(--basic-red);
    background-size: 3px;
    opacity: 1;
}

@media (width < 56rem) {
       	
	.cursor:not(.__cursor-button-Left),
	.cursor:not(.__cursor-button-Right) {
        display: none !important;
    }	
	
}

/*** ------------ end.cursor ------------ ***/



/*** ------------ headings, text ------------ ***/

h1,
h2,
h3,
h4,
h5,
.text__title,
.text__sub-title {
    position: relative;
    font-family: 'tt-ricordi';
    font-weight: 300;
    margin: 0 0 3rem;
}

* + h1,
* + h2,
* + h3,
* + h4,
* + h5,
* + .text__title {
    margin-top: 4.5rem;
}

.text__title + .text__title {
    margin-top: -1.5rem;
}

h1,
.__h1 {
    font-size: 4rem;
    line-height: 3.5rem;
}

h2,
.__h2 {
    font-size: 3.5rem;
    line-height: 3.25rem;
}

h3,
.__h3 {
    font-size: 3rem;
    line-height: 2.75rem;
}

h4,
.__h4 {
    font-size: 2.5rem;
    line-height: 2.25rem;
}

h5,
.__h5 {
    font-size: 2rem;
    line-height: 1.75rem;
}

p,
.__p {
    margin: 0;
}

p:not(.text__big) + p:not(.text__big),
.__p:not(.text__big) + .__p:not(.text__big),
ul.ul__list + p:not(.text__big),
* + ul.ul__list.__small-top  {
    margin-top: .75rem;
}

* + ul.ul__list,
ul.ul__list + * {
    margin-top: 1.5rem;
}

.text__sub-title + ul.ul__list.__small-top {
    margin-top: -1.5rem;
}

* + .text__sub-title {
    margin-top: 3rem !important;
}

ul.ul__list li + li {
    margin-top: .5rem;
}

ul.ul__list li > ul {
    margin-top: .5rem;
    padding-left: 2rem;
}

.text__big {
    font-size: 1.25rem;
    line-height: 1.75rem;
}

.text__big + * {
    margin-top: 1.5rem;
}

/*p,
.__p,
.text__normal {
    font-size: 1.0625rem;
    line-height: 1.5rem;
}*/

.text__small {
    font-size: .875rem;
    line-height: 1.25rem;
}

.text__extra-small {
    font-size: .75rem;
    line-height: 1rem;
}

.text__uppercase {
    text-transform: uppercase;
}



.text__center {
    text-align: center;
}

.text__nowrap {
    position: relative;
    white-space: nowrap;
    transition: var(--transitionLong);
}

.text__nowrap:hover {
    transition: var(--transitionLong);
    z-index: 100;
}

.text__font {
    font-family: 'tt-ricordi';
}

.text__indent {
    text-indent: 4rem;
}

.text__mt-1 {
    margin-top: 1rem !important;
}

.text__mt-2 {
    margin-top: 2rem !important;
}

.text__mt-3 {
    margin-top: 3rem !important;
}

.text__mt-4 {
    margin-top: 4rem !important;
}

.text__color-black {
    color: var(--basic-black);
}

.text__color-green {
    color: var(--basic-green);
}

.text__color-gold {
    color: var(--basic-gold);
}

.text__color-white {
    color: var(--basic-white);
}

.text__color-white-pure {
    color: var(--basic-white-pure);
}

.text__width-75 {
    max-width: 75%;
}

.text__width-66 {
    max-width: 66%;
}

.text__width-50 {
    max-width: 50%;
}

.text__bold,
b,
strong {
    font-weight: 600 !important;
}

.text__extra-bold {
    font-weight: 700;
}

.text__opacity,
.opacity {
    opacity: .64;
}

.text__italic,
i {
    font-style: italic;
}

ul,
ol {
    position: relative;
    padding: 0;
    margin: 0;
    list-style: none;
}

ul.ul__list li {
    position: relative;
    padding-left: 2rem;
}

ul.ul__list.__no-line li {
    padding-left: 0;
}

ul.ul__list.d-flex.__item-4 {
    width: 25%;
}

ul.ul__list li:before {
    content: '';
    position: absolute;
    top: .75rem;
    left: 0;
    display: block;
    width: 1rem;
    height: 1.5px;
    background: var(--basic-gold);
    z-index: 12;
}

ul.ul__list.__no-line li:before {
    display: none;
}

.text__color-white ul.ul__list li:before,
ul.ul__list.__white li:before {
    background: var(--basic-white);
}

ul.ul__list.text__small li:before {
    top: .5rem;
}

.text__title + ul.ul__list {
    margin-top: 4rem;
}
 
.afisha-block__content .text__title + ul.ul__list {
    margin-top: 0rem;
}

img.img__wrap, 
img.img__contain {
    height: 100%;
    -o-object-position: center;
    object-position: center;
}

img.img__wrap.__bottom,
img.img__contain.__bottom {
    -o-object-position: bottom center;
    object-position: bottom center;
}

img.img__wrap {
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

img.img__contain {
    width: auto;
    -o-object-fit: contain;
    object-fit: contain;
}

.__img-zoom {
    animation: imgZoom 6s infinite ease-in-out;
    animation-fill-mode: forwards;
}

@keyframes imgZoom {   
    50% {
        -webkit-transform: scale(1.04);
        transform: translateY(1.04);
    }   
    100% {
        -webkit-transform: scale(1);
        transform: translateY(1);
    }
}

*:first-child {
    margin-top: 0;
}

*:last-child {
    margin-bottom: 0;
}

@media (width < 56rem) {
        
    h1,
    .__h1 {
        font-size: 2.5rem;
        line-height: 2.75rem;
    }

    h2,
    .__h2 {
        font-size: 2.25rem;
        line-height: 2.5rem;
    }

    h3,
    .__h3 {
        font-size: 2rem;
        line-height: 2.25rem;
    }

    h4,
    .__h4 {
        font-size: 1.75rem;
        line-height: 2rem;
    }

    h5,
    .__h5 {
        font-size: 1.5rem;
        line-height: 1.75rem;
    }

    .text__width-75,
    .text__width-66,
    .text__width-50 {
        max-width: 100%;
    }
    
}

/*** ------------ end.headings, text ------------ ***/



/*** ------------ links ------------ ***/

a {
    position: relative;
    color: var(--basic-black);
}

a,
a:hover {
    text-decoration: none !important;
    outline: none !important;
    transition: var(--transition);
}

.link__scroll-location {
    position: absolute;
    top: .5rem;
}

	/*** ------------ link__border-bottom ------------ ***/
    
.link__border-bottom {
    position: relative;
	display: inline-block;
    width: fit-content;
    color: var(--basic-black);
    transition: var(--transition);
}

.link__border-bottom:hover {
    color: var(--basic-gold);
    transition: var(--transition);
}

.link__border-bottom.text__color-white {
    color: var(--basic-white);
}

.link__border-bottom.text__color-white:hover {
    color: var(--basic-white-pure);
}

.link__border-bottom:before,
.link__border-bottom:after {
    content: '';
    position: absolute;
    top: calc(100% - 1px);
    display: block;
    height: 1px;
    transition: var(--transitionLong);
}

.link__border-bottom:before {
    width: 100%;
    background: rgba(48,44,42,.16);
    z-index: 21;
}

.link__border-bottom.text__color-white:before {
    background: rgba(239,234,230,.32);
}

.link__border-bottom:after {
    width: 0;
    background: var(--basic-gold);
    z-index: 22;
}

.link__border-bottom.text__color-white:after {
    background: var(--basic-white-pure);
}

.link__border-bottom:hover:after {
    width: 100%;
    transition: var(--transitionLong);
}

	/*** ------------ link__with-bg ------------ ***/
    
.link__with-bg span:not(.__img) {
    position: relative;
    z-index: 23;
}

.link__with-bg span.__img {
    position: absolute;
    top: -50%;
    left: 25%;
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    display: block;
    width: 12rem;
    height: 16rem;
    background: var(--basic-white-pure);
    pointer-events: none;
    overflow: hidden;
    opacity: 0;
    box-shadow: 0px 16px 64px rgba(0,0,0,.16);
    border-radius: 1rem;
    z-index: 20;
    transition: var(--transition);

    display: none;
}

.link__with-bg:hover span.__img {
    top: 50%;
    opacity: 1;
    transition: var(--transition);
}

	/*** ------------ link__rotate ------------ ***/

.link__rotate {
    position: relative;
    width: fit-content;
    cursor: pointer;
    padding: 1rem 2rem;
    color: var(--basic-white);
    background: var(--basic-red);
    /*color: var(--basic-black);
    background: rgba(17,18,19,.08);*/
    border-radius: 1rem;
    transition: var(--transition);
}

.link__rotate:hover {
    background: var(--basic-gold-light);
    transition: var(--transition);
}

* + .link__rotate {
    margin-top: 2rem;
}

.text__center > .link__rotate {
    margin: auto;
}

.link__rotate > div,
.link__rotate > div span {
    position: relative;
    overflow: hidden;
    display: block;
}

.link__rotate > div:before,
.link__rotate:hover > div:before,
.link__rotate > div span,
.link__rotate:hover > div span {
    transition: var(--transitionLong);
    z-index: 10;
}

.link__rotate > div:before {
    content: attr(data-title);
    position: absolute;
    top: 100%;
    left: 0;
    color: var(--basic-black);
}

.link__rotate:hover > div span,
.link__rotate:hover > div:before {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
}

.link__rotate > div:nth-child(2) span,
.link__rotate > div:nth-child(2):before,
.link__rotate:hover > div:nth-child(2) span,
.link__rotate:hover > div:nth-child(2):before {
    transition-delay: .05s;
}

.link__rotate > div:nth-child(3) span,
.link__rotate > div:nth-child(3):before,
.link__rotate:hover > div:nth-child(3) span,
.link__rotate:hover > div:nth-child(3):before {
    transition-delay: .1s;
}

.link__rotate > div:nth-child(4) span,
.link__rotate > div:nth-child(4):before,
.link__rotate:hover > div:nth-child(4) span,
.link__rotate:hover > div:nth-child(4):before {
    transition-delay: .15s;
}

.link__rotate > div:nth-child(5) span,
.link__rotate > div:nth-child(5):before,
.link__rotate:hover > div:nth-child(5) span,
.link__rotate:hover > div:nth-child(5):before {
    transition-delay: .2s;
}

.link__rotate > div:nth-child(6) span,
.link__rotate > div:nth-child(6):before,
.link__rotate:hover > div:nth-child(6) span,
.link__rotate:hover > div:nth-child(6):before {
    transition-delay: .25s;
}

.link__rotate > div:nth-child(7) span,
.link__rotate > div:nth-child(7):before,
.link__rotate:hover > div:nth-child(7) span,
.link__rotate:hover > div:nth-child(7):before {
    transition-delay: .3s;
}

.link__rotate > div:nth-child(8) span,
.link__rotate > div:nth-child(8):before,
.link__rotate:hover > div:nth-child(8) span,
.link__rotate:hover > div:nth-child(8):before {
    transition-delay: .35s;
}

.link__rotate > div:nth-child(9) span,
.link__rotate > div:nth-child(9):before,
.link__rotate:hover > div:nth-child(9) span,
.link__rotate:hover > div:nth-child(9):before {
    transition-delay: .4s;
}

.link__rotate > div:nth-child(10) span,
.link__rotate > div:nth-child(10):before,
.link__rotate:hover > div:nth-child(10) span,
.link__rotate:hover > div:nth-child(10):before {
    transition-delay: .45s;
}

.link__rotate > div:nth-child(11) span,
.link__rotate > div:nth-child(11):before,
.link__rotate:hover > div:nth-child(11) span,
.link__rotate:hover > div:nth-child(11):before {
    transition-delay: .5s;
}

.link__rotate > div:nth-child(12) span,
.link__rotate > div:nth-child(12):before,
.link__rotate:hover > div:nth-child(12) span,
.link__rotate:hover > div:nth-child(12):before {
    transition-delay: .55s;
}

.link__rotate > div:nth-child(13) span,
.link__rotate > div:nth-child(13):before,
.link__rotate:hover > div:nth-child(13) span,
.link__rotate:hover > div:nth-child(13):before {
    transition-delay: .6s;
}

.link__rotate > div:nth-child(14) span,
.link__rotate > div:nth-child(14):before,
.link__rotate:hover > div:nth-child(14) span,
.link__rotate:hover > div:nth-child(14):before {
    transition-delay: .65s;
}

.link__rotate > div:nth-child(15) span,
.link__rotate > div:nth-child(15):before,
.link__rotate:hover > div:nth-child(15) span,
.link__rotate:hover > div:nth-child(15):before {
    transition-delay: .7s;
}

.link__rotate > div:nth-child(16) span,
.link__rotate > div:nth-child(16):before,
.link__rotate:hover > div:nth-child(16) span,
.link__rotate:hover > div:nth-child(16):before {
    transition-delay: .75s;
}

.link__rotate > div:nth-child(17) span,
.link__rotate > div:nth-child(17):before,
.link__rotate:hover > div:nth-child(17) span,
.link__rotate:hover > div:nth-child(17):before {
    transition-delay: .8s;
}

.link__rotate > div:nth-child(18) span,
.link__rotate > div:nth-child(18):before,
.link__rotate:hover > div:nth-child(18) span,
.link__rotate:hover > div:nth-child(18):before {
    transition-delay: .85s;
}

.link__rotate > div:nth-child(19) span,
.link__rotate > div:nth-child(19):before,
.link__rotate:hover > div:nth-child(19) span,
.link__rotate:hover > div:nth-child(19):before {
    transition-delay: .9s;
}

.link__rotate > div:nth-child(20) span,
.link__rotate > div:nth-child(20):before,
.link__rotate:hover > div:nth-child(20) span,
.link__rotate:hover > div:nth-child(20):before {
    transition-delay: .95s;
}

.link__rotate.__with-arrow:hover:after {
    -webkit-transform: translateY(-50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg);
    transition: var(--transition);
}

	/*** ------------ links__wrap ------------ ***/

.links__wrap {
    position: relative;
    z-index: 10;
}

* + .links__wrap {
    margin-top: 4rem;
}

p + .links__wrap,
.__p + .links__wrap {
    margin-top: 2rem;
}

.links__wrap > * + * {
    margin-top: 0;
    margin-left: 2rem;
}

.links__wrap.__center > *:first-child {
    margin-left: auto;
}

.links__wrap.__center > *:last-child {
    margin-right: auto;
}

.links__wrap > .__p:not(:last-child) {
    padding: .25rem 2rem .25rem 0;
}

.links__wrap > .__p:not(:last-child) {
    text-align: right;
}

.links__wrap > .__p:not(:last-child):before {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    display: block;
    width: 1.5px;
    height: 100%;
    background: var(--basic-black);
    opacity: .16;
    z-index: 1;
}

.links__wrap.text__color-white > .__p:not(:last-child):before {
    background: var(--basic-white);
}

.links__wrap.text__color-white-pure > .__p:not(:last-child):before {
    background: var(--basic-white-pure);
}

@media (width < 56rem) {
    
    .links__wrap.fw-nowrap {
        flex-wrap: wrap !important;
        flex-direction: column !important;
    }

    .links__wrap.__center > *:first-child,
    .links__wrap.__center > *:last-child {
        margin-left: auto;
        margin-right: auto;
    }

    .links__wrap > .__p:not(:last-child) {
        padding: 0 0 2rem;
    }
    
    .links__wrap > .__p:not(:last-child) {
        text-align: center;
    }
        
    .links__wrap > .__p:not(:last-child):before {
        top: calc(100% - 1.25rem);
        right: 0;
        -webkit-transform: none;
        transform: none;
        width: 100%;
        height: 1.25px;
    }

    .links__wrap > .__p + * {
        margin-left: 0;
    }
    
}

/*** ------------ end.links ------------ ***/



/*** ------------ form ------------ ***/

form,
button,
submit {}

input,
button,
submit,
textarea {
    -webkit-appearance: none;
    border-radius: 0;
}

::-webkit-datetime-edit-year-field:not([aria-valuenow]),
::-webkit-datetime-edit-month-field:not([aria-valuenow]),
::-webkit-datetime-edit-day-field:not([aria-valuenow]) {
    color: transparent;
}

input[type=date]:required:invalid::-webkit-datetime-edit {
    color: transparent;
}
input[type=date]:focus::-webkit-datetime-edit {
    color: black !important;
}

input[type="text"],
input[type="date"],
input[type="password"],
input[type="submit"],
textarea {
    position: relative;
    display: inline-block;
    color: var(--basic-black);
    font-weight: 400;
    border: 0;
}

textarea {
    width: 100%;
}

input[type="submit"] {
    width: auto;
    color: var(--basic-white);
    background: var(--basic-green);
    transition: var(--transition);
}

input[type="submit"]:hover {
    color: var(--basic-black);
    transition: var(--transition);
}

textarea {
    min-width: 100%;
    max-width: 100%;
    height: 8rem;
    min-height: 8rem;
    max-height: 8rem;
}

::-webkit-input-placeholder {color: rgba(17,18,19,.24);background: transparent;}
::-moz-placeholder          {color: rgba(17,18,19,.24);background: transparent;}
:-moz-placeholder           {color: rgba(17,18,19,.24);background: transparent;}
:-ms-input-placeholder      {color: rgba(17,18,19,.24);background: transparent;}

form + p {
    margin-top: 1.5rem;
}

/*** ------------ end.form ------------ ***/



/*** ------------ wrap ------------ ***/

.developer a {
    color: #fff !important;
}

.wrap {
    position: relative;
    display: block;
    width: 100%;
}
.developer {
    display: flex;

justify-content: end;}

.container {
    position: relative;
    display: block;
    max-width: 1336px;
    width: calc(100% - 4rem);
    padding: 0 1rem;
    margin: auto;
}

.__none {
    display: none !important;
}

.__sticky {
    position: sticky;
    top: 2rem;
}

@media (width < 56rem) {
			
	.container {
		width: 100%;
	}

    .__mobile-hide {
        display: none !important;
    }

}

/*** ------------ end.wrap ------------ ***/



/*** ------------ absolute-* ------------ ***/

.absolute-center,
.popup {
    position: absolute;
    left: 50%;
    z-index: 23;
}

.absolute-center,
.popup {
    top: 50%;
    transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
}

/*** ------------ end.absolute-* ------------ ***/



/*** ------------ bg ------------ ***/

.bg__white {
    background: var(--basic-white);
    transition: all 2s cubic-bezier(.19,1,.22,1);
}

.bg__white-pure {
    background: var(--basic-white-pure);
    transition: all 2s cubic-bezier(.19,1,.22,1);
}

.bg__black {
    background: var(--basic-black);
    transition: all 2s cubic-bezier(.19,1,.22,1);
}

.bg__gold-light {
    background: var(--basic-gold-light);
    transition: all 2s cubic-bezier(.19,1,.22,1);
}

.bg__gold-pale {
    background: #efe6d3/*var(--basic-gold-pale)*/;
    transition: all 2s cubic-bezier(.19,1,.22,1);
}

/*** ------------ end.bg ------------ ***/



/*** ------------ flex ------------ ***/

.d-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.fw-nowrap {
    flex-wrap: nowrap;
}

.fd-column {
    flex-direction: column;
}

.fd-row-reverse {
    flex-direction: row-reverse;
}

.fd-column-reverse {
    flex-direction: column-reverse;
}

.jc-space-between {
    justify-content: space-between;
}

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

.ai-center {
    align-items: center;
}

.ai-baseline {
    align-items: baseline;
}

.__auto-top {
    margin-top: auto;
}

.__auto-right {
    margin-right: auto;
}

.__auto-bottom {
    margin-bottom: auto;
}

.__auto-left {
    margin-left: auto;
}

.__h-100 {
    height: 100%;
}

/*** ------------ end.flex ------------ ***/



/*** ------------ item__grid ------------ ***/

.item__grid {
    position: relative;
}

.item__grid.__standart-gap {
    width: calc(100% + 2rem);
    gap: 2rem 0;
    margin-right: -1rem;
    margin-left: -1rem;
}

.item__grid.__standart-gap > .item {
    padding: 0 1rem;
    width: 100%;
}

.item__grid.__small-gap {
    width: calc(100% + 1rem);
    gap: 1rem 0;
    margin-right: -.5rem;
    margin-left: -.5rem;
}

.item__grid.__small-gap > .item {
    padding: 0 .5rem;
}

.item__grid.__no-gap {
    gap: 0;
}

.item__grid.__item-2 > .item {
    flex: 0 0 50%;
}

.item__grid.__item-2 > .item.__item-wide,
.item__grid.__item-3 > .item.__item-extra {
    flex: 0 0 100%;
}

.item__grid.__item-3 > .item {
    flex: 0 0 33.333%;
}

.item__grid.__item-3 > .item.__item-wide {
    flex: 0 0 66.666%;
}

.item__grid.__item-4 > .item {
    flex: 0 0 25%;
}

.item__grid.__item-4 > .item.__item-wide {
    flex: 0 0 50%;
}

.item__grid.__item-4 > .item.__item-extra {
    flex: 0 0 75%;
}

.item__grid.__item-5 > .item {
    flex: 0 0 20%;
}

.item__grid.__item-5 > .item.__item-wide {
    flex: 0 0 40%;
}

.item__grid.__item-5 > .item.__item-extra {
    flex: 0 0 60%;
}

    /*** ------------ __item-grow ------------ ***/

.item__grid.__item-grow {
    gap: 1rem;
}

.item__grid.__item-grow > .item {
    flex-grow: 1;
}

@media (width < 56rem) {
    
    .item__grid {
		width: 100%;
	}

    .item__grid.__item-2 > .item,
    .item__grid.__item-2 > .item.__item-wide,
    .item__grid.__item-3 > .item,
    .item__grid.__item-3 > .item.__item-wide,
    .item__grid.__item-4 > .item,
    .item__grid.__item-4 > .item.__item-wide,
    .item__grid.__item-4 > .item.__item-extra,
    .item__grid.__item-5 > .item,
    .item__grid.__item-5 > .item.__item-wide,
    .item__grid.__item-5 > .item.__item-extra {
        flex: 0 0 100%;
    }
    
    .__mobile-last {
        order: 99;
    }

}
    
/*** ------------ end.item-grid ------------ ***/



/*** ------------ content ------------ ***/

#wrapper {
    position: relative;
    width: 100%;
    min-height: 100%;
}

.content {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.__main-content > .content:first-child {
    padding-top: 10rem;
}

.__is-hidden {
    overflow: hidden;
}

.content__wrap {
    transition: all 2s cubic-bezier(.19,1,.22,1);
}

.content__wrap > * {
    z-index: 10;
}

.__border-top {
    border-top: 1.5px solid rgba(29,82,71,.12);
}

.__border-bottom {
    border-bottom: 1.5px solid rgba(29,82,71,.12);
}

@media (width < 56rem) {
    
    .content__wrap {
        overflow-x: hidden;
    }

    .content {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }

    .content + .content:not(.rooms__wrap) {
        padding-top: 0;
    }

    .__main-content > .content:first-child {
        padding-top: 8rem;
    }

}

/*** ------------ end.content ------------ ***/



/*** ------------ shadow-effect ------------ ***/

.shadow-effect:before {
    content:' ';
    position: absolute;
    inset: 0;
    opacity: .48;
    z-index: 34;
    transition: var(--transitionLong);
}

.shadow-effect.shadow-effect__white:before {
    background: var(--basic-white);
}

.shadow-effect__black:before {
    opacity: 1;
    background: radial-gradient(rgba(0,0,0,.56) 25%, rgba(0,0,0,.24) 75%);
}

/*** ------------ end.shadow-effect ------------ ***/



/*** ------------ header ------------ ***/

header {
    position: fixed;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    background: transparent;
    transition: var(--transition);
    z-index: 800;
}

.__animation-on header {
    opacity: 0;
    -webkit-transform: translateY(-2rem);
    transform: translateY(-2rem);
    animation: showHeader 1.2s ease-in-out;
    animation-fill-mode: forwards;
    animation-delay: 2.4s;
}

@keyframes showHeader {   
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

body.__open-menu header {
    padding-right: .25rem;
}

header.__scroll {
    transition: var(--transition);
    top: 6px;
}

    /*** ------------ header__wrap ------------ ***/

.header__wrap {
    padding: 2rem 0;
    transition: var(--transition);
}

header.__scroll .header__wrap {
    padding: 0;
    transition: var(--transition);
}

    /*** ------------ header__side ------------ ***/

.header__side {
    padding: .5rem;
    background: var(--basic-white);
    box-shadow: 0 1rem 4rem rgba(0,0,0,.16);
    border-radius: 1rem;
    transition: var(--transitionLong);
}

* + .header__side {
    margin-left: auto;
}

header.__scroll .header__side {
    border-radius: 0 0 1rem 1rem;
    transition: var(--transitionLong);
}

    /*** ------------ header__lang ------------ ***/

.header__lang {
    position: relative;
}

* + .header__lang {
    margin-left: 1rem;
}

.header__lang > .active {
    display: none;
}

.header__lang a {
    position: relative;
    display: block;
    padding: .75rem 0;
    text-transform: capitalize;
}

.header__lang a:before {
    content: '';
    position: absolute;
    bottom: .75rem;
    left: 0;
    display: block;
    width: 100%;
    height: 1.5px;
    background: var(--basic-black);
    transform: scalex(0);
    transform-origin: right;
    z-index: 12;
    transition: transform 1.2s cubic-bezier(.19,1,.22,1);
}

.header__lang a:hover:before {
    transform: scalex(1);
    transform-origin: left;
    transition: transform 1.2s cubic-bezier(.19,1,.22,1);
}

@media (width < 56rem) {
        
    * + .header__lang {
        margin-left: 1rem;
    }

}

    /*** ------------ header__button ------------ ***/

.header__button {
    position: relative;
    z-index: 12;
}

* + .header__button {
    margin-left: 2rem;
    padding-left: 2rem;
}

* + .header__button:before {
    content: '';
    position: absolute;
    top: 50%;
    left: -.25rem;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    display: block;
    width: .5rem;
    height: .5rem;
    background: rgba(219,197,155,.32);
    border-radius: .125rem;
    z-index: 1;
}

@media (width < 56rem) {
        
    * + .header__button {
        margin-left: 0;
        padding-left: 0;
    }

    * + .header__button:before {
        display: none;
    }
   
}

    /*** ------------ header-button__menu ------------ ***/

.header-button__menu > * {
    margin: auto;
}

.menu__button {
    position: relative;
    width: 3rem;
    height: 3rem;
    background: rgba(219,197,155,.32);
    border-radius: .75rem;
    cursor: pointer;
    transition: var(--transitionLong);
}

.menu__button:hover {
    background: rgba(219,197,155,.4);
    transition: var(--transitionLong);
}

.menu__button > * {
    position: relative;
    display: block;
    width: 50%;
    height: 1px;
    overflow: hidden;
    transition: var(--transitionLong);
}

.menu__button > * {
    margin-left: auto;
    margin-right: auto;
    background: var(--basic-black);
}

.menu__button > *:first-child {
    margin-top: auto;
}

.menu__button > *:last-child {
    margin-bottom: auto;
}

.menu__button:hover > * {
    background: var(--basic-gold);
}

.menu__button > *:before {
    content: '';
    position: absolute;
    top: 0;
    display: block;
    width: 25%;
    height: 100%;
    z-index: 1;
    background: var(--basic-gold-light);
    transition: var(--transitionLong);
}

.menu__button > *:nth-child(1):before {
    left: -25%;
}

.menu__button > *:nth-child(2):before {
    left: -50%;
}

.menu__button > *:nth-child(3):before {
    left: -75%;
}

.menu__button:hover > *:nth-child(1):before {
    left: 150%;
    transition: var(--transitionLong);
}

.menu__button:hover > *:nth-child(2):before {
    left: 125%;
    transition: var(--transitionLong);
}

.menu__button:hover > *:nth-child(3):before {
    left: 100%;
    transition: var(--transitionLong);
}

.menu__button > * + * {
    margin-top: .25rem
}

    /*** ------------ header__contact ------------ ***/

.header__contact {
    position: relative;
    z-index: 12;
}

* + .header__contact {
    margin-left: auto;
    padding-left: 4rem;
}

@media (width < 56rem) {
        
    .header__contact {
        display: none;
    }

}

    /*** ------------ header__booking ------------ ***/

.header__booking {
    position: relative;
    z-index: 12;
}

* + .header__booking {
    margin-left: .5rem;
}

.booking__button {
    display: block;
    width: 3rem;
    height: 3rem;
    background: url('/image.png') center no-repeat rgba(219,197,155,.32);
    background-size: 66%;
    border-radius: .75rem;
}

.booking__button:hover {
    background-color: rgba(219,197,155,.64);
}

    /*** ------------ header__hidden ------------ ***/

.header__hidden {
    position: absolute;
    top: 6rem;
    left: 0;
    padding: 2rem;
    border-radius: 1rem;
    opacity: 0;
    pointer-events: none;
    background: var(--basic-white);
    transition: var(--transitionLong);
    box-shadow: 0 1rem 4rem rgba(0,0,0,.16);
    z-index: 101;
}

.header__hidden.__active {
    top: 5.5rem;
    opacity: 1;
    pointer-events: auto;
    transition: var(--transitionLong);
}

    /*** ------------ __menu ------------ ***/

.header-hidden__menu {
    margin-top: -1.75rem;
}

.header-hidden__menu > li {
    width: 50%;
    padding-right: 1rem;
    margin-top: .75rem;
}

.header-hidden__menu > li .link__border-bottom:before {
    background: transparent;
}

.header-hidden__menu + * {
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1.5px solid rgba(17,18,19,.16);
}

    /*** ------------ __offers ------------ ***/

.header-hidden__offers .__item {
    position: relative;
    height: 24rem;
    border-radius: 1rem;
    overflow: hidden;
}

.header-hidden__offers .__kv {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.header-hidden__offers .__offers-content {
    width: calc(100% - 1rem);
    margin: auto auto .5rem;
    padding: 1.5rem;
    background: rgba(219,197,155,.4);
    -webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur(8px);
    border-radius: .75rem;
    z-index: 123;
}

.header-hidden__offers .__offers-content > .__p + .__p {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1.5px solid rgba(17,18,19,.16);
}

@media (width < 56rem) {
        
}

/*** ------------ end.header ------------ ***/



/*** ------------ section ------------ ***/

section {
    position: fixed;
    left: 50%;
    bottom: -3.75rem;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    display: block;
    width: fit-content;
    background: var(--basic-white);
    box-shadow: 0 1rem 4rem rgba(0,0,0,.16);
    border-radius: 1rem;
    transition: var(--transitionLong);
    z-index: 345;
}

section.__scroll {
    bottom: 2rem;
}

section:hover {
    background: var(--basic-gold-pale);
    box-shadow: 0 1rem 4rem rgba(0,0,0,.24);
    transition: var(--transitionLong);
}

section > * {
    padding: 1rem 2rem;
}

section .__icon {
    position: relative;
    width: 2rem;
    height: 2rem;
    margin: -.25rem .5rem -.25rem -.25rem;
    overflow: hidden;
}

section .__icon > * {
    max-width: 100%;
    max-height: 100%;
    margin: auto;
}

/*** ------------ end.section ------------ ***/



/*** ------------ breadcrumb__wrap ------------ ***/

.breadcrumb__wrap {
    position: absolute;
    top: 7.5rem;
    left: 0;
    padding: 0;
    z-index: 110;
}

.breadcrumb__wrap > .container.d-flex > ul.breadcrumb {
    width: fit-content;
    margin-left: auto;
}

ul.breadcrumb > li:first-child {
    display: none;
}

ul.breadcrumb li span.divider {
    margin: 0 .5rem;
}

ul.breadcrumb > li,
ul.breadcrumb > li a {
    color: rgba(17,18,19,.32);
}

ul.breadcrumb > li a:hover {
    color: var(--basic-black);
}

.__header-transparent ul.breadcrumb > li,
.__header-transparent ul.breadcrumb > li a {
    color: rgba(255,255,255,.48);
}

.__header-transparent ul.breadcrumb > li a:hover {
    color: var(--basic-white);
}

@media (width < 56rem) {
        
    .breadcrumb__wrap {
        display: none;
    }
 
}

/*** ------------ end.breadcrumb__wrap ------------ ***/



/*** ------------ logo ------------ ***/

.logo {
    position: relative;
    transition: var(--transitionLong);
    z-index: 10;
}

.logo.logo__63-hotel {
    width: 5rem;
    height: 5rem;
    border-radius: 10px;
}

.logo.logo__63-hotel,
.__logo-dark header.__scroll .logo.logo__63-hotel {
    background: url('/logod.webp') center no-repeat transparent;
    background-size: contain;
    transition: var(--transitionLong);

}

body.__ru .logo.logo__63-hotel,
body.__ru .__logo-dark header.__scroll .logo.logo__63-hotel {
    background: url('/logod.webp') center no-repeat transparent;
    background-size: contain;
    transition: var(--transitionLong);

}

.__logo-dark header .logo.logo__63-hotel {
    background: url('/logod.webp') center no-repeat transparent;
    background-size: contain;

}

body.__ru.__logo-dark header .logo.logo__63-hotel {
    background: url('/logod.webp') center no-repeat transparent;
    background-size: contain;
}

footer .logo.logo__63-hotel {
    width: 5rem;
    height: 5rem;
}

.home__page header .logo.logo__63-hotel,
header.__scroll .logo.logo__63-hotel {
    background: url('/logod.webp') center no-repeat transparent;
    background-size: contain;

    border-radius: 10px;
}

/*.home__page header .logo.logo__63-hotel {
    -webkit-transform: translateY(-5rem);
    transform: translateY(-5rem);
    opacity: 0;
}

.home__page header.__scroll .logo.logo__63-hotel {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
}*/

@media (width < 56rem) {
    
}

/*** ------------ end.logo ------------ ***/



/*** ------------ main__menu ------------ ***/

.main__menu {
    position: relative;
    z-index: 23;
}

.main__menu li {
    position: relative;
}

.main-menu__hidden {
    display: none !important;
}

    /*** ------------ header main__menu ------------ ***/

header nav {
    position: relative;
    z-index: 123;
}

header * + nav {
    margin-left: auto;
    padding-left: 2rem;
    transition: var(--transition);
}

header .main__menu > li:nth-child(1),
header .main__menu > li:nth-child(4),
/*header .main__menu > li:nth-child(5),
header .main__menu > li:nth-child(6),*/
header .main__menu > li:nth-child(7),
header .main__menu > li:nth-child(n+9),
header .main__menu > li > a.__no-list + ul {
    display: none;
}

@media (width < 56rem) {
            
    header nav {
        display: none;
    }

}

header .main__menu > li > a {
    position: relative;
    display: block;
    padding: .75rem 1rem;
    border-radius: .75rem;
}

header .main__menu > li:hover > a {
    background: rgba(219,197,155,.32);
}

header .main__menu > li.active > a {
    color: var(--basic-gold);
}

header .main__menu > li a.__no-ul + ul {
    display: none !important;
}

header .main__menu > li > ul {
    position: absolute;
    top: calc(100% - .25rem);
    left: -2rem;
    padding: .5rem 0 0;
    border-radius: 0 0 1rem 1rem;
    opacity: 0;
    pointer-events: none;
    background: var(--basic-white);
    opacity: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
    transition: var(--transitionLong);
}

header .main__menu > li:hover > ul {
    top: 100%;
    opacity: 1;
    pointer-events: all;
    transition: var(--transitionLong);
}

header .main__menu > li > ul li a {
    display: block;
    font-size: .875rem;
    line-height: 1rem;
    padding: 1.25rem 2rem;
    white-space: nowrap;
}

header .main__menu > li > ul li + li {
    border-top: 1px solid rgba(0,0,0,.12);
}

header .main__menu > li > ul li:not(.active) a:hover {
    color: var(--basic-gold);
}

header .main__menu > li > ul li.active a {
    background: rgba(219,197,155,.32);
}

    /*** ------------ hidden__menu ------------ ***/

.hidden__menu .main__menu {
    flex-direction: column;
}

.hidden__menu .main__menu > li {
    width: 100%;
}

.hidden__menu .main__menu > li:nth-child(9),
.hidden__menu .main__menu > li:nth-child(n+9) {
    display: none;
}

.hidden__menu .main__menu > li + li {
    margin-top: 1rem;
}

.hidden__menu .main__menu > li > a {
    display: block;
    font: 400 2rem/2rem 'tt-ricordi';
}

.hidden__menu .main__menu > li > a:hover {
    color: var(--basic-gold);
}

.hidden__menu .main__menu > li.active > a {
    color: var(--basic-red);
    transform: translateX(2rem);
}

.hidden__menu .main__menu > li.active > a:before {
    content: '';
    position: absolute;
    top: 50%;
    left: -1.875rem;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: .25rem;
    height: .25rem;
    background: var(--basic-red);
    border-radius: .125rem;
    z-index: 1;
}

.hidden__menu .main__menu > li > ul {
    display: none;
}

/*** ------------ end.main__menu ------------ ***/



/*** ------------ chapter__title ------------ ***/

.chapter__title {
    position: relative;
    z-index: 12;
}

.chapter__title.__center {
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 6rem;
}

.chapter__title:after {
    content: '';
    position: absolute;
    display: block;
    background: var(--basic-black);
    opacity: .32;
    z-index: 1;
}

.chapter__title.__white:after {
    background: var(--basic-white);
}

.chapter__title.fw-nowrap:after {
    width: calc(100% - 4rem);
    bottom: calc(50% - .25rem);
    left: 4rem;
    height: 1.25px;
}    

.chapter__title.fd-column + * {
    margin-top: 3rem;
}

.chapter__title.fd-column:after {
    bottom: 0;
    left: calc(50% - .75px);
    width: 1.5px;
    height: calc(100% - 3.5rem);
}

.chapter-title__num {
    position: relative;
    width: 3rem;
    height: 3rem;
    border: 1.5px solid rgba(29,82,71,.32);
    border-radius: 1rem;
}

.chapter__title.__white .chapter-title__num {
    color: var(--basic-white);
    border-color: rgba(239,234,230,.32);
}

.chapter-title__num > * {
    margin: auto;
    padding-top: 2px;
}

.chapter__title.fw-nowrap > * + * {
    margin-left: 2rem;
}

.chapter__title.fd-column > * + * {
    margin-top: 2rem;
    text-align: center;
}

@media (width < 56rem) {
        
}

/*** ------------ end.chapter__title ------------ ***/



/*** ------------ title__wrap ------------ ***/

.title__wrap:not(:last-child) {
    margin-bottom: 3rem;
    padding-bottom: 1rem;
    border-bottom: 1.5px solid rgba(29,82,71,.32);
}

.title__wrap.text__color-white:not(:last-child),
.bg__black .title__wrap:not(:last-child) {
    border-color: rgba(239,234,230,.32);
}

.title-wrap__right {
    padding-left: 3rem;
}

.title-wrap__right > * {
    width: fit-content;
    margin-left: auto;
}

/*** ------------ end.title__wrap ------------ ***/



/*** ------------ text__title ------------ ***/

.__animation-on .text__title.fd-column > div {
    opacity: 0;
    -webkit-transform: translateX(2rem);
    transform: translateX(2rem);
}

.__animation-on .__start-animation .text__title.fd-column > div {
    animation: showTitle .5s ease-in-out;
    animation-fill-mode: forwards;
}

.__animation-on .__start-animation .text__title.fd-column > div:nth-child(1) {
    animation-delay: .5s;
}

.__animation-on .__start-animation .text__title.fd-column > div:nth-child(2) {
    animation-delay: .5s;
}

.__animation-on .__start-animation .text__title.fd-column > div:nth-child(3) {
    animation-delay: .5s;
}

@keyframes showTitle {   
    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

/*** ------------ end.text__title ------------ ***/



/*** ------------ __start-animation ------------ ***/

.__animation-on {
    pointer-events: all;
}

    /*** ------------ __start-animation ------------ ***/

.__animation-on .__animation-top {
    opacity: 0;
    -webkit-transform: translateY(2rem);
    transform: translateY(2rem);
}

.__animation-on .__start-animation .__animation-top {
    animation: showTop .5s ease-in-out;
    animation-fill-mode: forwards;
}

.__animation-on .__start-animation .__animation-top {
    animation-delay: .5s;
}

.__animation-on .__start-animation .__animation-top + .__animation-top {
    animation-delay: .5s;
}

.__animation-on .__start-animation .__animation-top + .__animation-top + .__animation-top {
    animation-delay: .5s;
}

@keyframes showTop {   
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

/*** ------------ end.__start-animation ------------ ***/



/*** ------------ hello__wrap ------------ ***/

.hello__wrap {
    height: auto;
    min-height: 100vh;
    overflow: hidden;
    background: var(--basic-white);
    z-index: 100;
}

.hello__wrap.__half {
    height: auto;
    min-height: 80vh;
}

@media (width < 56rem) {
       
    .room__title + .hello__wrap {
        height: 60vh;
        min-height: 60vh;
    }

}

    /*** ------------ hello__block ------------ ***/

.hello__block:not(.d-flex) {
    height: 100%;
}

.hello__block > * {
    position: relative;
    z-index: 100;
}

.hello__block:not(.ai-center) > .container {
    margin-top: auto;
    margin-bottom: 0;
}

    /*** ------------ hello-block__content ------------ ***/

.hello-block__content {
    padding-top: 12rem;
    padding-bottom: 4rem;
}

.hello__wrap.__next-booking .hello__block:not(.ai-center) .hello-block__content {
    padding-bottom: 6rem;
}

.rooms__page .hello__wrap > .book__wrap + .hello__block .hello-block__content {
    padding-bottom: 12rem;
}

.hello-block__title {
    font-weight: 300;
    padding-right: 25%;
}

.hello-block__title > .__huge {
    font-size: 4rem;
    line-height: 4.25rem;
    color: #fff;
}

.hello-block__title:not(:last-child) {
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1.5px solid rgba(255,255,255,.32);
}

.hello-block__text {
    padding-right: 25%;
    color: #fff;
}

@media (width < 56rem) {
            
    .rooms__page .hello__wrap > .book__wrap + .hello__block .hello-block__content {
        padding-bottom: 4rem;
    }

    .hello-block__text {
        padding-right: 0;
    }
        
    .hello-block__title {
        padding-right: 0;
    }

    .hello-block__title > .__huge {
        font-size: 3rem;
        line-height: 3.25rem;
    }

}

    /*** ------------ hello-block__logo ------------ ***/



/*.__animation-on .hello-block__logo {
    opacity: 0;
    -webkit-transform: scale(1.25);
    transform: scale(1.25);
    animation: showLogo 1.2s ease-in-out;
    animation-fill-mode: forwards;
    animation-delay: 2.4s;
}*/

@keyframes showLogo {   
    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

.hello-block__logo > .logo.logo__63-hotel {
    
    width: 20rem;
    height: 5rem;
}

@media (width < 56rem) {
    
    .hello-block__logo > .logo.logo__63-hotel {    
        width: 18rem;
        height: 9rem;
    }
      
}

    /*** ------------ hello-block__kv ------------ ***/

.hello-block__kv {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 1;
}

.hello-block__kv.shadow-effect__black + * > .hello-block__content > * {
    color: var(--basic-white);
}

@media (width < 56rem) {
       
}

/*** ------------ end.hello__wrap ------------ ***/



/*** ------------ video ------------ ***/

video {
    width: auto;
    min-width: 100%;
    max-width: 100%;
    height: auto;
    min-height: 100%;
    z-index: 10;
    background-size: cover;
    object-fit: cover;
}
    
video source {
    min-width: 100%;
    height: auto;
    min-height: 100%;
}

video + img {
    z-index: 1;
    opacity: 1;
}

@media (width < 56rem) {
       
}    

/*** ------------ video ------------ ***/



/*** ------------ book__wrap ------------ ***/

.hello__wrap > .book__wrap {
    position: absolute;
    left: 50%;
    bottom: 2rem;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 121;
}

.home__page .hello__wrap > .book__wrap > .container > * {
    padding: 0 12%;
}

.rooms__page .hello__wrap > .book__wrap > .container > * {
    padding: 0 25% 0 0;
}

.hello__wrap .book__block {
    padding: 1rem;
    background: rgba(0,0,0,.4);
    -webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur(8px);
    border-radius: 1.5rem;
}

@media screen and (max-width: 920px) {
            
    .home__page .hello__wrap > .book__wrap > .container > * {
        padding: 0;
    }
    
    .hello__wrap + .book__wrap {
        margin-top: 0rem;
        z-index: 12;
    }
    
    body:not(.home__page) .hello__wrap > .book__wrap {
        display: none;
    }

}

/*** ------------ end.book__wrap ------------ ***/



/*** ------------ picture__wrap ------------ ***/

.picture__wrap {
    z-index: 10;
}

/*** ------------ end.picture__wrap ------------ ***/



/*** ------------ __picture ------------ ***/

.__picture {
    position: absolute;
    background: var(--basic-gold-light);
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
}

.__picture.__with-map {
    pointer-events: all;
}

.__picture.__sticky {
    height: calc(100vh - 2rem);
    top: 1rem; 
}

.__picture.__right {
    inset: 0 0 0 50%;
    border-radius: 2rem 0 0 2rem;
}

.__picture.__right.__1-4 {    
    inset: 0 0 0 75%;
}

.hello__wrap + * > .__picture.__right,
.__main-content > .content:first-of-type > .__picture.__right {
    border-top-left-radius: 0;
}

.content__wrap > .content:last-of-type > .__picture.__right,
.__main-content > .content:last-of-type > .__picture.__right {
    border-bottom-left-radius: 0;
}

.__picture.__left {
    inset: 0 50% 0 0;
    border-radius: 0 2rem 2rem 0;
}

.__picture.__left.__1-4 {
    inset: 0 75% 0 0;
}

.hello__wrap + * > .__picture.__left,
.content__wrap > .content:first-of-type > .__picture.__left,
.__main-content > .content:first-of-type > .__picture.__left {
    border-top-right-radius: 0;
}

.content__wrap > .content:last-of-type > .__picture.__left,
.__main-content > .content:last-of-type > .__picture.__left {
    border-bottom-right-radius: 0;
}

.__picture.__right + .container > .item__grid.__item-2 > .item > .wrap {
    padding-right: 3rem;
}

.__picture.__left + .container > .item__grid.__item-2 > .item > .wrap {
    padding-left: 3rem;
}

.__picture.__1-4 + .__picture.__1-4 + .container > .item__grid.__item-4 > .__item-wide {
    padding-left: 3rem;
    padding-right: 3rem;
}

@media (width < 56rem) {
         
    .__picture {
        position: relative;
        width: calc(100% - 2rem);
        height: 16rem;
        margin-left: auto;
        margin-right: auto;
        inset: 0 !important;
        border-radius: 1rem !important;
    }

    .content > .__picture {
        order: 99;
        margin-top: 4rem;
    }

    .__picture.__right + .container > .item__grid.__item-2 > .item > .wrap {
        padding-right: 0;
    }
    
    .__picture.__left + .container > .item__grid.__item-2 > .item > .wrap {
        padding-left: 0;
    }
        
    .__picture.__1-4 + .__picture.__1-4 + .container > .item__grid.__item-4 > .__item-wide {
        padding: 4rem 1rem 0;
    }

}

/*** ------------ end.__picture ------------ ***/



/*** ------------ about__wrap ------------ ***/

.about__wrap {
    z-index: 13;
}

.about__content {
    padding: 0 12%;
}

@media (width < 56rem) {
        
    .about__content {
        padding: 0;
    }

    .about__content.text__center {
        text-align: left;
    }

}

/*** ------------ end.about__wrap ------------ ***/



/*** ------------ location__wrap ------------ ***/

.location__wrap {
    z-index: 14;
}

@media (width < 56rem) {
     
}

/*** ------------ end.location__wrap ------------ ***/



/*** ------------ history__wrap ------------ ***/

.history__wrap {
    z-index: 14;
}

.about__wrap.content + .history__wrap {
    margin-top: -2rem;
}

@media (width < 56rem) {
     
    .history__wrap .__picture.__left {
        display: none;
    }

}

/*** ------------ end.history__wrap ------------ ***/



/*** ------------ rooms__wrap ------------ ***/

.rooms__wrap {
    z-index: 15;
}

.rooms__content {
    padding: 0 8%;
}

@media (width < 56rem) {
        
    .rooms__content {
        padding: 0;
    }

}

/*** ------------ end.rooms__wrap ------------ ***/



/*** ------------ rooms__filter ------------ ***/

.rooms__filter {
    box-shadow: inset 0 0 6rem 0 rgba(17,18,19,.24);
    overflow: hidden;
}

.rooms__filter.content {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

@media (width < 56rem) {
        
    .rooms__filter .item__grid > .item + .item {
        margin-top: 2rem;
    }

}

    /*** ------------ filter__block ------------ ***/

.filter__block {
    z-index: 23;
}

    /*** ------------ filter__settings ------------ ***/

* + .filter__settings {
    margin-top: 1rem;
}

#filter-settings li {
    position: relative;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
    font-size: 1.25rem;
    line-height: 2.5rem;
}

#filter-settings li:first-child {
    margin-left: -1px;
}

#filter-settings li:not(:last-child) {
    margin-right: 1.25rem;
    padding-right: 1.25rem;
    border-right: 1.25px solid rgba(17,18,19,.12);
}

#filter-settings li:hover {
    color: var(--basic-red);
} 

#filter-settings li.__is-active,
#filter-settings li.active {
    color: var(--basic-gold);
    transition: var(--transition);
}

    /*** ------------ filter__available ------------ ***/

.filter-available__result {
    position: absolute;
    top: 2rem;
    left: 0;
}

.filter-available__result > div {
    font-size: 7.8rem;
    line-height: 7.8rem;
}

@media (width < 56rem) {
        
    .filter-available__result > div {
        font-size: 4rem;
        line-height: 4rem;
    }

}

    /*** ------------ filter__block ------------ ***/

#filter-items .filter-result__item.hidden {
    display: none;
}

/*** ------------ end.rooms__filter ------------ ***/



/*** ------------ rooms__view ------------ ***/

.rooms__view {
    z-index: 12;
}

.rooms__view:first-child {
    margin-top: -2rem;
}

.rooms__view + * {
    margin-top: 2rem;
}

.rooms__view > *:first-of-type {
    margin-left: auto;
}

.rooms__view > *:last-of-type {
    margin-right: auto;
}

.rooms__view > * + * {
    margin-left: .25rem;
}

.rooms__view > * {
    position: relative;
    display: block;
    width: 2rem;
    height: 2rem;
    border-radius: .5rem;
    background: var(--basic-gold-pale);
    cursor: pointer;
    z-index: 1;
    transition: var(--transition);
    overflow: hidden;
}

.rooms__view > .rooms-view__table {
    background: url('../images/icons/icons__all/icon__rooms-table.svg') center no-repeat var(--basic-gold-pale);
    background-size: 50%;
}

.rooms__view > .rooms-view__tile {
    background: url('../images/icons/icons__all/icon__rooms-tile.svg') center no-repeat var(--basic-gold-pale);
    background-size: 50%;
}

.rooms__view > *.__active {
    background-color: var(--basic-gold-light);
    transition: var(--transition);
}

/*** ------------ end.rooms__view ------------ ***/



/*** ------------ rooms__block ------------ ***/

.rooms__block {
    z-index: 123;
}

.rooms__block + * {
    margin-top: 4rem;
}

.rooms-block__item,
.rooms-block__item:hover {
    transition: var(--transition);
}

.rooms-block__item:hover {
    box-shadow: 0 1rem 4rem rgba(0,0,0,.24);
}

.rooms__block.__tile .rooms-block__item {
    height: 32rem;
    background: var(--basic-gold-light);
    border-radius: 2rem;
    overflow: hidden;
}

.rooms__block.__table .rooms-block__item {
    flex-wrap: nowrap;
    background: var(--basic-gold-pale);
    border-radius: 2rem;
    overflow: hidden;
}

.booking__content .rooms__block .rooms-block__item {
    background: rgba(17,18,19,.06);
    border-radius: 1.5rem;
}

.rooms-block__img {
    overflow: hidden;
    z-index: 1;
}

.rooms__block.__tile .rooms-block__img {
    position: absolute;
    inset: 0;
}

.rooms__block.__table .rooms-block__img {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 12rem;
}

.rooms-block__content {
    position: relative;
    flex-direction: column;
    z-index: 23;
}

.rooms__block.__tile .rooms-block__content {
    width: 100%;
}

.rooms__block.__table .rooms-block__content {
    width: calc(100% - 12rem);
    padding: 2rem;
}

.rooms__block.__tile .rooms-block__content > * {
    padding: 2rem;
    color: var(--basic-white);
}

.rooms-block__content > *,
.rooms-block__content > * > * {
    position: relative;
    z-index: 23;
}

.rooms__block.__tile .rooms-block__content > *:before {
    content: '';
    position: absolute;
    inset: .5rem;
    background: rgba(0,0,0,.4);
    -webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur(8px);
    border-radius: 1.5rem;
    z-index: 1;
}

.rooms-block__info {
    padding-top: 1rem;
    margin-top: 1rem;
    border-top: 1.5px solid rgba(255,255,255,.12);
}

.rooms__block.__table .rooms-block__info {
    border-color: rgba(17,18,19,.12);
}

.rooms__block.__table .rooms-block__title > .text__font {
    color: var(--basic-red);
}

.rooms__block.__tile * + .rooms-block__text {
    margin-top: auto;
}

.rooms__block.__table * + .rooms-block__text {
    padding-top: 3rem;
    margin-top: auto;
}

.rooms-block__info > * + * {
    display: none;
}

.booking__content .rooms__block.__table * + .rooms-block__text {
    padding-top: 1.5rem;
}

.booking__content .rooms__block.__table * + .rooms-block__text > .__p {
    opacity: .4;
}

* + .rooms-block__pseudo {
    margin-top: 1.5rem;
}

@media (width < 56rem) {
        
    .rooms__block.__table .rooms-block__item {
        flex-direction: column;
    }

    .rooms__block.__table .rooms-block__img {
        width: 100%;
        height: 10rem;
    }

    .rooms__block.__table .rooms-block__content {
        width: 100%;
        padding: 2rem;
    }

    .rooms__block.__table * + .rooms-block__text {
        padding-top: 1.5rem;
    }

}

/*** ------------ end.rooms__block ------------ ***/



/*** ------------ rooms__slider ------------ ***/

.rooms__slider {
    height: 42rem;
}

    /*** ------------ rooms__bg ------------ ***/

.rooms__bg {
    z-index: 1;
}

.rooms__bg,
.rooms__bg > .slick-list,
.rooms__bg > .slick-list > .slick-track,
.rooms__bg > .slick-list > .slick-track > .slick-slide,
.rooms__bg > .slick-list > .slick-track > .slick-slide > * {
    height: 100% !important;
}

.rooms__bg .slick-slide {
    position: relative;
    display: block;
    width: 100vw;
    background: var(--basic-gold-light);
}

.rooms-bg__item {
    width: 100%;
    height: 100%;
}

.rooms-bg__nav {
    position: absolute;
    inset: 0;
    z-index: 10;
}
    
    /*** ------------ rooms__main ------------ ***/

.rooms__main,
.rooms__main > .slick-list,
.rooms__main > .slick-list > .slick-track,
.rooms__main > .slick-list > .slick-track > .slick-slide,
.rooms__main > .slick-list > .slick-track > .slick-slide > * {
    height: 100% !important;
}

.rooms__main .slick-slide {
    width: fit-content;
}

.rooms-main__about {
    height: 100%;
    padding: 0 6rem;
}

.rooms-main__about > .__content {
    margin: auto;
    min-width: 28rem;
}

.rooms-main__title {
    font-size: 4.5rem;
    line-height: 4rem;
    text-transform: lowercase;
    padding: 5rem 0;
    cursor: pointer;
}

.rooms-main__text  {
    position: absolute;
    top: -2rem;
    width: 100%;
    opacity: 0;
    transition: var(--transitionLong);
}

.slick-current .rooms-main__text  {
    top: 0;
    opacity: .64;
    transition: var(--transitionLong);
}

.rooms-main__gall {
    position: absolute;
    top: calc(100% + 1rem);
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    opacity: 0;
    transition: var(--transitionLong);
    z-index: 1;
}

.slick-current .rooms-main__gall {
    top: calc(100% - 2rem);
    opacity: 1;
    transition: var(--transitionLong);
}

.rooms-main__gall > div {
    position: relative;
    display: block;
    width: 9rem;
    height: 12rem;
    border-radius: 1rem;
    overflow: hidden;
    z-index: 12;
}

.rooms-main__gall > div:nth-child(2),
.rooms-main__gall > div:nth-child(3) {
    position: absolute;
    top: 0;
    z-index: 1;
    opacity: 0;
}

.slick-current .rooms-main__gall > div:nth-child(2) {
    left: -75%;
    /*-webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);*/
    animation: roomsGall__left .6s ease-in-out;
    animation-delay: .4s;
    animation-fill-mode: forwards;
}

@keyframes roomsGall__left {   
    100% {
        opacity: 1;
        left: calc(-100% - .5rem);
        /*-webkit-transform: rotate(-15deg);
        transform: rotate(-15deg);*/
    }
}

.slick-current .rooms-main__gall > div:nth-child(3) {
    right: -75%;
    /*-webkit-transform: rotate(10deg);
    transform: rotate(10deg);*/
    animation: roomsGall__right .6s ease-in-out;
    animation-delay: .4s;
    animation-fill-mode: forwards;
}

@keyframes roomsGall__right {   
    100% {
        opacity: 1;
        right: calc(-100% - .5rem);
        /*-webkit-transform: rotate(15deg);
        transform: rotate(15deg);*/
    }
}

@media (width < 56rem) {
        
    .rooms__main .slick-slide {
        width: 100vw;
    }

    .rooms-main__about {
        height: 100%;
        padding: 0;
    }
        
    .rooms-main__title {
        font-size: 4rem;
        line-height: 3.5rem;
    }
    
    .rooms-main__text  {
        padding: 0 .5rem;
    }
    
    .rooms-main__about > .__content {
        min-width: 12rem;
    }

}

    /*** ------------ rooms__main ------------ ***/

.rooms__main .slick-dots {
    position: absolute;
    top: 2rem;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    pointer-events: none;
    z-index: 123;
}

.rooms__main .slick-dots li {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: var(--transition);
}

.rooms__main .slick-dots li.slick-active {
    opacity: 1;
    transition: var(--transition);
}

.rooms__main .slick-dots li > button {
    position: relative;
    display: block;
    padding: 0;
    border: 0;
    background: transparent;
    font: 400 1rem/1.5rem 'tt-fors';
    color: var(--basic-white);
    width: .75rem;
    text-align: center;
}

.rooms__main .slick-dots:after {
    content: '6';
    position: relative;
    display: block;
    width: .75rem;
    margin-left: 6.5rem;
    font: 400 1rem/1.5rem 'tt-fors';
    color: var(--basic-white);
    text-align: center;
    opacity: .64;
}

.rooms__main .slick-dots:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    display: block;
    width: calc(100% - 3rem);
    height: 1.25px;
    background: var(--basic-white);
    opacity: .64;
    z-index: 1;
}

/*** ------------ end.rooms__slider ------------ ***/



/*** ------------ block__slider ------------ ***/

.slider__wrap {
    z-index: 80;
}

* + .slider__wrap,
* + .block__slider {
    margin-top: 4rem;
}

.block__slider .slick-slide {
    position: relative;
    display: block;
    width: 30vw;
    height: fit-content;
}

.block__slider .slick-slide > div, 
.block__slider .slick-slide > div > div {
	height: 100%
}

.block__slider .slick-slide + .slick-slide {
    margin-left: 2rem;
}

@media (width < 56rem) {
    
    .block__slider .slick-slide {
        width: calc(100vw - 3rem);
    }
        
    .block-slider__img + * {
        padding: .75rem .75rem 0 0;
    }

    .block__slider .slick-slide + .slick-slide {
        margin-left: .5rem;
    }

}

/*** ------------ end.block__slider ------------ ***/



/*** ------------ slider ------------ ***/

.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}
    
.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.block__slider .slick-list {
    padding-bottom: .75rem !important;
}
    
.slick-list:focus {
    outline: none;
}
    
.slick-list.dragging {
    cursor: pointer;
    cursor: hand;
}
    
.slick-slider .slick-track,
.slick-slider .slick-list {
    -webkit-transform: translate3d(0,0,0);
    -moz-transform: translate3d(0,0,0);
    -ms-transform: translate3d(0,0,0);
    -o-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
    height: auto;
}
    
.slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
    
.slick-track:before,
.slick-track:after {
    content: '';
    display: table;
}
    
.slick-track:after {
    clear: both;
}
    
.slick-loading .slick-track {
    visibility: hidden;
}
    
.slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}
    
[dir='rtl'] .slick-slide {
    float: right;
}
    
.slick-slide img {
    display: block;
}
    
.slick-slide.slick-loading img {
    display: none;
}
    
.slick-slide.dragging img {
    pointer-events: none;
}
    
.slick-initialized .slick-slide {
    display: block;
}
    
.slick-loading .slick-slide {
    visibility: hidden;
}
    
.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}
    
.slick-arrow.slick-hidden {
    display: none;
}
        
button.slick-next,
button.slick-prev {
    display: none !important;
}

.rooms__main button.slick-next,
.rooms__main button.slick-prev,
.block__slider button.slick-next,
.block__slider button.slick-prev {
    position: absolute;
    display: block !important;
    width: 6rem;
    height: 6rem;
    padding: 0;
    font: 300 0/0 'tt-fors', Tahoma, Calibri;
    background: transparent;
    border: 0 !important; 
    border-radius: 50%;
    z-index: 123;
    transition: var(--transitionLong);
}

.block__slider button.slick-next,
.block__slider button.slick-prev {
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.rooms__main button.slick-next,
.rooms__main button.slick-prev {
    bottom: 7rem;
}

.rooms__main button.slick-next,
.block__slider button.slick-next {
    background: url('https://hotel6-3.ru/images/icons/icons__arrows/icon__arrow-right-white.svg') no-repeat center var(--basic-red);
    background-size: 1rem;
    right: -1rem;
}

.rooms__main button.slick-next:hover,
.block__slider button.slick-next:hover {
    right: 1rem;
}

.rooms__main button.slick-prev,
.block__slider button.slick-prev {
    background: url('https://hotel6-3.ru/images/icons/icons__arrows/icon__arrow-left-white.svg') no-repeat center var(--basic-red);
    background-size: 1rem;
    left: -1rem;
}

.rooms__main button.slick-prev:hover,
.block__slider button.slick-prev:hover {
    left: 1rem;
}

.rooms__main button.slick-next:hover,
.rooms__main button.slick-prev:hover,
.block__slider button.slick-next,
.block__slider button.slick-prev {
    background-color: var(--basic-blue);
    transition: var(--transitionLong);
}

.block__slider button.slick-next:hover,
.block__slider button.slick-prev:hover {
    background-color: var(--basic-red);
    transition: var(--transitionLong);
}

.slick-disabled {
    opacity: 0 !important;
    pointer-events: none;
}

@media (width < 56rem) {
        
    .rooms__main button.slick-next,
    .rooms__main button.slick-prev {
        bottom: 5.5rem;
    }

}
 
/*** ------------ end.slider ------------ ***/



/*** ------------ room__title ------------ ***/

.room__title {
    z-index: 101;
}

.room-title__img {
    position: absolute;
    top: -2rem;
    left: 0;
    display: block;
    height: 500px !important;
    width: calc(100% - 2rem);
    height: calc(100% + 14rem);
    background: #fff;
    border-radius: 2rem;
    box-shadow: 0 1rem 4rem rgba(0,0,0,.24);
    overflow: hidden;
    z-index: 1;
}

@media (width < 56rem) {
            
    .room-title__img {
        position: relative;
        top: 0;
        width: 100%;
        height: 14rem;
    }

}
 
/*** ------------ end.room__title ------------ ***/



/*** ------------ room__info ------------ ***/

.room__info {
    background: rgba(219,197,155,.32);
    box-shadow: 0 1rem 6rem rgba(0,0,0,.24);
    border-radius: 1.5rem;
}

.room__info > .item + .item {
    border-left: 1.5px solid rgba(0,0,0,.06);
}

.room-info__item {
    padding: 1.5rem 2rem;
}

.room-info__item .__icon {
    position: relative;
    width: 3rem;
    height: 3rem;
    background: rgba(219,197,155,.4);
    border-radius: 50%;
    overflow: hidden;
    z-index: 1;
}

.room-info__item .__icon > * {
    margin: auto;
    width: 60%;
}

.room-info__item .__icon > *.__small {
}

.room-info__item .__icon + * {
    padding-left: 1rem;
}

@media (width < 56rem) {
            
    .room__info > .item + .item > .room-info__item {
        margin-top: -1rem;
        padding-top: 0;
    }

	.room__info > .item + .item {
		border-left: 0;
	}

}
 
/*** ------------ end.room__info ------------ ***/



/*** ------------ room__content ------------ ***/

.room__content {
    z-index: 20;
}

.room__content.content + .content {
    padding-top: 0;
}

* + .room-content__block {
    margin-top: 3rem;
}

.room-content__main-text + p,
.room-content__main-text + .__p {
    margin-top: 2rem !important;
    padding-top: 2rem;
    border-top: 1.5px solid rgba(219,197,155,.64);
}

.room-content__amenities {
    padding: 1.5rem 2rem;
    background: rgba(219,197,155,.32);
    box-shadow: 0 1rem 4rem rgba(0,0,0,.16);
    border-radius: 1.5rem;
}

.room-content__amenities-title {
    position: relative;
    display: inline-block;
    width: fit-content;
    padding: .5rem 1rem;
    background: rgba(219,197,155,.4);
    border-radius: 1rem;
}

.room-content__amenities-title + * {
    margin-top: 1.5rem;
}

* + .room-content__amenities-title {
    margin-top: 3rem;
}

.room-content__amenities ul > li {
    position: relative;
    width: calc(50% - 1rem);
    margin-top: 1rem;
}

.room-content__amenities ul > li:nth-child(1),
.room-content__amenities ul > li:nth-child(2) {
    margin-top: 0;
}

.room-content__amenities ul > li:nth-child(even) {
    margin-left: auto;
}

.room-content__amenities ul > li:nth-child(n+3) {
    padding-top: 1rem;
    border-top: 1.5px solid rgba(0,0,0,.08);
}

.room-content__amenities .__icon {
    position: relative;
    width: 2.4rem;
    height: 2.4rem;
    margin-top: .125rem;
    overflow: hidden;
}

.room-content__amenities .__icon > * {
    margin: auto;
    width: 70%;
}

.room-content__amenities .__icon + * {
    width: calc(100% - 1.25rem);
    padding-left: 1rem;
    display: flex;
    align-items: center;
}

@media (width < 56rem) {
        
    .room-content__amenities ul > li {
        width: 100%;
    }

    .room-content__amenities ul > li:nth-child(2) {
        margin-top: 1rem;
    }

    .room-content__amenities ul > li:nth-child(n+2) {
        padding-top: 1rem;
        border-top: 1.5px solid rgba(0,0,0,.08);
    }

}

/*** ------------ end.room__content ------------ ***/



/*** ------------ room__gall ------------ ***/

.room__gall {
    z-index: 21;
}

* + .room__gall {
    margin-top: 4rem;
}

.room__gall .__br-top-left {
    border-top-left-radius: 2rem;
}

.room__gall .__br-top-right {
    border-top-right-radius: 2rem;
}

.room__gall .__br-bottom-left {
    border-bottom-left-radius: 2rem;
}

.room__gall .__br-bottom-right {
    border-bottom-right-radius: 2rem;
}

.room-gall__item {
    height: 36rem;
}

.room-gall__item,
.room-gall__tile > div {
    position: relative;
    background: var(--basic-gold);
    overflow: hidden;
}

.room-gall__tile > div {
    width: calc(50% - .5rem);
    height: 17.5rem;
}

.room-gall__tile > div:nth-child(n+3) {
    margin-top: 1rem;
}

.room-gall__tile .__first-img-gall + *,
.room-gall__tile .__first-img-gall.__hide {
    display: none;
}

.room-gall__tile .__first-img-gall.__hide + * {
    display: block;
}

@media (width < 56rem) {
        
    .room__gall div {
        border-radius: 2rem !important;
    }

    .room-gall__item {
        height: 16rem;
    }

    .room-gall__item,
    .room-gall__tile > div {
        position: relative;
        background: var(--basic-gold);
        overflow: hidden;
    }

    .room-gall__tile > div {
        width: calc(50% - .5rem);
        height: 7.5rem;
    }

    .room-gall__tile > div:nth-child(n+3) {
        margin-top: 1rem;
    }

}

/*** ------------ end.room__gall ------------ ***/



/*** ------------ offers__wrap ------------ ***/

.offers__wrap {
    z-index: 16;
    padding-bottom: 10rem;
}

.offers__content {
    display: none;
    padding: 0 20%;
}

@media (width < 56rem) {
            
    .offers__content {
        padding: 0;
    }

}

    /*** ------------ offers__block ------------ ***/

* + .offers__block {
    margin-top: 2rem;
}

.offers__block:first-child {
    margin-top: -2rem;
}

.slider__wrap .offers__block:first-child {
    margin-top: 0;
}

.offers__block > .item {
    margin-top: 2rem;
}

.offers-block__item.__full {
    min-height: 28rem;
}

.offers-block__item.d-flex {
    flex-direction: column;
}

.offers-block__img {
    border-radius: 2rem;
    background: var(--basic-gold-light);
    overflow: hidden;
    transition: var(--transitionLong);
    z-index: 1;
}

.offers-block__item:hover .offers-block__img {
    box-shadow: 0 1rem 4rem rgba(0,0,0,.24);
    transition: var(--transitionLong);
}

.offers-block__img:not(.__full) {
    height: 16rem;
}

.offers-block__img:not(.__full) {
    height: 16rem;
}

.__item-2.offers__block .offers-block__img:not(.__full) {
    height: 20rem;
}

.offers-block__item.__full > .offers-block__img {
    position: absolute;
    inset: 0;
    min-height: 100%;
}

.offers-block__img > .__tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: .5rem .75rem;
    background: var(--basic-blue);
    color: var(--basic-white);
    border-radius: .5rem;
    z-index: 123;
}

.offers-block__content {
    padding: 2rem 2rem 0;
    z-index: 123;
}

.offers-block__item:not(.__full) .offers-block__content:first-child {
    padding: 0 2rem 2rem;
}

.offers-block__item.__full .offers-block__content:first-child,
.offers-block__item:not(.__full) .offers-block__content:nth-child(3) > .text__title:first-child {
    display: none;
}

.offers-block__item.__full > .offers-block__img + .offers-block__content {
    margin-top: auto;
    padding-bottom: 2rem;
}

a.offers-block__item:not(.__full):hover > .offers-block__content .text__title {
    color: var(--basic-gold);
}

a.offers-block__item > .offers-block__content .text__title,
a.offers-block__item:not(.__full):hover > .offers-block__content .text__title {
    transition: var(--transition);
}

.offers-block__item.__full > .offers-block__img + .offers-block__content:before {
    content: '';
    position: absolute;
    inset: .5rem;
    background: rgba(0,0,0,.4);
    -webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur(8px);
    border-radius: 1.5rem;
    z-index: 1;
}

.offers-block__item.__full > .offers-block__img + .offers-block__content > * {
    color: var(--basic-white);
    z-index: 12;
}

.offers-block__title:not(:last-child) {
    margin-bottom: 2rem;
}

.offers-block__content > .__p + .offers-block__pseudo-link:last-child {
    margin-top: 1.5rem;
}

.offers-block__item.__full > .offers-block__img + .offers-block__content > .__p + .offers-block__pseudo-link:last-child {
    display: none;
}

.__offer-hidden,
.__hide-offerButton {
    display: none;
}

@media (width < 56rem) {
    
}

/*** ------------ end.offers__wrap ------------ ***/



/*** ------------ mice__wrap ------------ ***/

.mice__wrap {
    z-index: 17;
}

* + .mice__gall {
    margin-top: 4rem;
}

.text__title + .mice__gall {
    margin-top: 0;
}

.mice__gall + .__p,
.mice__gall + p {
    margin-top: 2rem;
}

.mice-gall__item {
    height: 12rem /** 8rem **/;
    background: var(--basic-gold);
    border-radius: 1rem;
    overflow: hidden;
}

.mice-gall__item.__small {
    height: 8rem;
}

.mice-gall__item.__big {
    height: 16rem;
}

.mice-gall__item + .__p {
    padding: 1rem 0 0 1rem;
    opacity: .48;
}

@media (width < 56rem) {
    
    .home__page .mice__gall {
        display: none;
    }

    .home__page .mice__gall + .__p,
    .home__page .mice__gall + p {
        margin-top: 0;
    }

}

/*** ------------ end.mice__wrap ------------ ***/



/*** ------------ mice__info ------------ ***/

.mice__info {
    background: rgba(219,197,155,.32);
    box-shadow: 0 1rem 3rem rgba(0,0,0,.12);
    border-radius: 1rem;
}

.mice__info + * {
    margin-top: 2rem;
}

.mice__info > .item + .item {
    border-left: 1.5px solid rgba(0,0,0,.06);
}

.mice-info__item {
    padding: .75rem 1.5rem;
}

.mice-info__item .__icon {
    position: relative;
    width: 3rem;
    height: 3rem;
    background: rgba(219,197,155,.4);
    border-radius: 50%;
    overflow: hidden;
    z-index: 1;
}

.mice-info__item .__icon > * {
    margin: auto;
    width: 40%;
}

.mice-info__item .__icon > *.__small {
    width: 36%;
}

.mice-info__item .__icon + * {
    padding-left: 1rem;
}

@media (width < 56rem) {
            
    .mice__info > .item + .item > .mice-info__item {
        margin-top: -1rem;
        padding-top: 0;
    }

	.mice__info > .item + .item {
		border-left: 0;
	}

}
 
/*** ------------ end.mice__info ------------ ***/



/*** ------------ compare__table ------------ ***/

.compare__table {
	width: 60%;
	margin: auto;
	box-shadow: 0 1rem 8rem rgba(0,0,0,.2);
	border-radius: 2rem;
	overflow: hidden;
	z-index: 23;
}

.compare-table__header > div,
.compare-table__row > div {
	position: relative;
	z-index: 12;
}

.compare-table__header > div {
	padding: 2rem 1rem;
}

.compare-table__row > div {
	padding: .6rem 1rem .4rem;
}

.compare-table__header > div.ai-center > *,
.compare-table__row > div.ai-center > * {
	margin: auto;
}

.compare-table__header > div:nth-child(2),
.compare-table__row > div:nth-child(2) {
	width: 50%;
	background: rgba(219,197,155,.32);
	border-left: 1.5px solid rgba(0,0,0,.06);
	border-right: 1.5px solid rgba(0,0,0,.06);
}

.compare-table__row > div.__bg {
	background: rgba(219,197,155,.32) !important;
}

.compare-table__header > div:first-child,
.compare-table__header > div:last-child,
.compare-table__row > div:first-child,
.compare-table__row > div:last-child {
	width: 25%;
	background: rgba(219,197,155,.12);
}

* + .compare-table__row > div {
	border-top: 1.5px solid rgba(0,0,0,.06);
}

.compare-table__icon img {
	height: 1.25rem;
}

@media (width < 56rem) {
			 
	.compare__table {
		width: 100%;
	}

	.compare-table__header > div:not(:nth-child(2)) {
		padding: 2rem .25rem;
	}

}

/*** ------------ end.compare__table ------------ ***/



/*** ------------ resto__wrap ------------ ***/

.resto__wrap {
    z-index: 16;
}

.resto__content {
    padding: 0 8%;
}

.home__page .resto-block__item {
    padding: 2rem 0;
}

.home__page .resto-block__item > *:not(.text__title) {
    padding: 0 4rem;
}

.home__page .resto-block__item > .text__title + *:before {
    content: '';
    position: absolute;
    top: calc(.75rem - .75px);
    left: -2rem;
    display: block;
    width: 4rem;
    height: 1.25px;
    background: var(--basic-gold);
    z-index: 1;
}

.resto-block__gall:before {
    content: '';
    position: absolute;
    inset: 2rem;
    border: .25rem solid var(--basic-gold-light);
    border-radius: 2rem;
    z-index: 1;
}

.resto-block__gall > div {
    max-width: calc(100% - 8rem);
    background: var(--basic-gold-light);
    border-radius: 2rem;
    overflow: hidden;
}

.resto-block__gall > div {
    margin-left: auto;
    z-index: 11;
}

.resto-block__gall > div:nth-child(2) {
    position: absolute;
    inset: 50% 8rem -2rem 0;
    box-shadow: 0 1rem 4rem rgba(0,0,0,.16);
    z-index: 12;
}

.resto__title:not(:last-child) {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1.5px solid rgba(0,0,0,.08);
}

.resto__info {
    position: relative;
}

.resto-info__attention {
    padding: 2rem;
    background: rgba(219,197,155,.32);
    border-radius: 1.5rem;
}

.resto-info__icon + .resto-info__icon {
    margin-top: 2rem;
}

.resto-info__icon > .__icon {
    position: relative;
    width: 4rem;
    height: 4rem;
    background: rgba(219,197,155,.32);
    border-radius: 1.5rem;
    overflow: hidden;
}

.resto-info__icon > .__icon > * {
    width: 28%;
    margin: auto;
}

.resto-info__icon > .__icon > *.__big {
    width: 34%;
}

.resto-info__icon > .__icon + * {
    position: relative;
    width: calc(100% - 4rem);
    padding-left: 1.5rem;
}

@media (width < 56rem) {
            
    .resto__content {
        padding: 0;
    }

    .home__page .resto-block__item {
        padding: 0;
    }
    
    .home__page .resto-block__item > *:not(.text__title) {
        padding: 0 0 0 4rem;
    }
        
    .resto-block__gall {
        margin-top: 3rem;
    }
        
}

/*** ------------ end.resto__wrap ------------ ***/



/*** ------------ tabs__wrap ------------ ***/

.tabs__wrap {
    z-index: 17;
}

* + .tabs__block {
    margin-top: 4rem;
}

.tabs__caption {
    padding: 0;
    margin: 0 0 4rem;
    z-index: 10;
}

.tabs__caption li {
    position: relative;
    display: block;
    cursor: pointer;
    color: var(--basic-gold);
    transition: var(--transition);
}

.tabs__caption li:not(.active) {
    color: var(--basic-black);
    transition: var(--transition);
}

.tabs__caption.__center li:first-child {
    margin-left: auto;
}

.tabs__caption.__center li:last-child {
    margin-right: auto;
}

.tabs__caption li + li {
    margin-left: 2rem;
    padding-left: 2rem;
}

.tabs__caption li + li:before {
    content: '';
    position: absolute;
    top: 50%;
    left: -1rem;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    display: block;
    width: 2rem;
    height: 1.25px;
    background: var(--basic-gold-light);
    z-index: 1;
}

.tabs__content {
    display: none;
    z-index: 100;
}

.tabs__content.active {
    display: block;
}

.tabs__content > * {
    opacity: 0;
    transform: translateY(1rem);
    -webkit-transform: translateY(1rem);
    animation: showTabContent 1.2s ease-in-out;
    animation-fill-mode: forwards;
}

@keyframes showTabContent {   
    100% {
        opacity: 1;
        transform: translateY(0);
        -webkit-transform: translateY(0);
    }
}

@media (width < 56rem) {
        
    .tabs__caption li + li {
        margin-left: 1.5rem;
        padding-left: 1.5rem;
    }

    .tabs__caption li + li:before {
        left: -.75rem;
        width: 1.5rem;
    }
    
}

/*** ------------ end.tabs__wrap ------------ ***/



/*** ------------ dots__wrap ------------ ***/

.dots__wrap {
    z-index: 19;
}

* + .dots__block {
    margin-top: 4rem;
}

.offers__block + .dots__block {
    padding-top: 3rem;
    margin-top: 3rem;
}

.offers__block + .dots__block:before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    display: block;
    width: calc(100% - 2rem);
    height: 1.5px;
    background: rgba(17,18,19,.12);
    z-index: 1;
}

.dots__block > .item {
    position: relative;
}

.dots__block > .item:before {
    content: '';
    position: absolute;
    inset: -1rem 3rem 3rem 0;
    background: var(--basic-white-pure);
    border-radius: 2rem;
    opacity: 0;
    transition: var(--transition);
    z-index: 1;
}

.dots__block > .item:hover:before {
    inset: -1rem 0;
    opacity: 1;
    transition: var(--transition);
}

.dots-block__item {
    padding: 0 1rem 0 2rem;
    z-index: 12;
}

.dots-block__title:before {
    content: '';
    position: absolute;
    top: .5rem;
    left: -2rem;
    display: block;
    width: .5rem;
    height: .5rem;
    background: var(--basic-red);
    border-radius: 50%;
}

.dots-block__title + * {
    opacity: .48;
}

/*** ------------ end.dots__wrap ------------ ***/



/*** ------------ afisha__wrap ------------ ***/

.afisha__wrap {
    z-index: 17;
}

.afisha__content {
    padding: 0 8%;
}

@media (width < 56rem) {
        
    .afisha__content {
        padding: 0;
    }

}

    /*** ------------ afisha__block ------------ ***/

* + .afisha__block {
    margin-top: 4rem;
}

.afisha__block:before {
	content: '';
	position: absolute;
	inset: 1rem -2rem;
	border: 2px solid var(--basic-gold-light);
	border-radius: 2rem;
    pointer-events: none;
	z-index: 12;
}

.afisha-block__img {
    min-height: 20rem;
    background: var(--basic-white-pure);
    border-radius: 2rem;
    overflow: hidden;
}

.afisha-block__img.__blur:before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(245,242,232,.48);
    -webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur(8px);
    z-index: 10;
}

.afisha-block__img > * {
    z-index: 5;
}

.afisha-block__content {
    padding: 4rem 0;
}

.afisha-block__title:not(:last-child) {
    margin-bottom: 2rem;
}

.afisha-block__date + .afisha-block__title {
    margin-top: 1rem;
}

@media (width < 56rem) {
            
    .afisha__block:before {
        inset: 1rem 2rem;
        border-radius: 1.5rem;
    }

    .afisha-block__img {
        min-height: 1rem;
        height: 16rem;
    }

    .afisha-block__content {
        padding: 0 3rem 3rem;
    }

}

/*** ------------ end.afisha__wrap ------------ ***/



/*** ------------ contact__wrap ------------ ***/

.contact__wrap {
    z-index: 18;
}

body:not(.__with-contact) .contact__wrap {
    display: none;
}

.contact-list__title:not(:last-child) {
    margin-bottom: .5rem;
    padding-bottom: .5rem;
    color: var(--basic-gold);
    font-family: 'tt-ricordi';
    font-weight: 500;
    text-transform: uppercase;
    border-bottom: 1.5px solid var(--basic-gold-light);
} 

.contact__list.__item-2.__standart-gap > .item:nth-child(n+3) {
    margin-top: 1rem;
}

* + .contact__list.__small-gap {
    margin-top: -1.5rem;
}

.__p + .contact__list {
    margin-top: 2.5rem;
}

.contact__list.__small-gap > .item {
    margin-top: 1.5rem;
}

.map__wrap {
    height: 100%;
    min-height: 20rem;
    overflow: hidden;
}

[class*="copyrights-pane"] {
    display: none !important;
}

[class*="ymaps-2"][class*="-ground-pane"] {
    -webkit-filter: saturate(35%);
    filter: saturate(35%);
    /*filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale");
    -webkit-filter: grayscale(100%);*/
}

/*** ------------ contact__wrap ------------ ***/



/*** ------------ feedback__wrap ------------ ***/

.feedback__wrap {
    z-index: 19;
}

.contact__list + .feedback__wrap {
    margin-top: 7rem;
}

.feedback__wrap.__bg-gold:before {
    content: '';
    position: absolute;
    top: -4rem;
    left: -4rem;
    width: 100vw;
    height: calc(100% + 10rem);
    background: var(--basic-gold-pale);
    z-index: 1;
}

.popup .feedback__wrap.__bg-gold:before {
    display: none;
}

.feedback__wrap.__bg-gold > * {
    z-index: 123;
}

.feedback__wrap.__center {
    margin-left: auto;
    margin-right: auto;
    padding: 0 16%;
}

.feedback__wrap:first-child,
.feedback__block > .item {
    margin-top: -.75rem;
}

.feedback-form__group {
    margin-top: .75rem;
}

.feedback-form__group:not(.wrap) {
    width: calc(50% - 6px);
}

.feedback-form__label + * {
    margin-top: .75rem;
}

.feedback__form input[type="text"],
.feedback__form input[type="date"],
.feedback__form input[type="number"],
.feedback__form textarea,
.feedback__form input[type="submit"] {
    position: relative;
    display: block;
    width: 100%;
    padding: 1rem;
    background: rgba(17,18,19,.06);
    border: 0 /*1.5px solid rgba(17,18,19,.12)*/;
    border-radius: .75rem;
}

.feedback__form input[type="text"],
.feedback__form input[type="date"],
.feedback__form input[type="number"],
.feedback__form input[type="submit"] {
    max-height: 3.5rem;
}

.feedback__form input[type="text"]:focus,
.feedback__form input[type="date"]:focus,
.feedback__form input[type="number"]:focus,
.feedback__form textarea:focus {
    background: rgba(255,255,255,.32);
    /*border: 1.5px solid rgba(17,18,19,.12);*/
}

.feedback__form input[type="submit"] {
    max-width: 16rem;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    color: var(--basic-white);
    border-color: transparent;
    background: var(--basic-gold);
    transition: var(--transitionLong);
}

.feedback__wrap.__center .feedback__form input[type="submit"] {
    margin-left: auto;
    margin-right: auto;
}

.feedback__form input[type="submit"]:hover {
    color: var(--basic-white);
    background: var(--basic-blue);
    transition: var(--transitionLong);
}

.feedback-form__group.d-flex > .__p {
    max-width: calc(100% - 12rem);
    margin-top: auto;
}

.feedback__wrap.__center .__p {
    text-align: center;
}

.feedback__block textarea {
    height: 100%;
    max-height: 12rem;
}

@media (width < 56rem) {
          
    .feedback__wrap.__center {
        padding: 0;
    }
        
    .feedback__wrap.__bg-gold:before {
        left: -1rem;
        height: calc(100% + 6rem);
    }

}

/*** ------------ end.feedback__wrap ------------ ***/



/*** ------------ popup ------------ ***/

.popup {
    position: fixed;
    display: none;
    z-index: 1003;
}

#overlay {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    background: var(--basic-blue);
    opacity: .8;
    z-index: 1002;
}

.popup__wrap {
    width: 90%;
    max-width: 54rem;
    flex-wrap: nowrap;
    border-radius: 2rem;
    overflow: hidden;
}

.popup-wrap__main {
    position: relative;
    display: block;
    width: 66%;
    padding: 3rem;
    background: var(--basic-white);
}

.popup-wrap__image {
    position: relative;
    display: block;
    width: 34%;
    background: var(--basic-gold);
    overflow: hidden;
}

.popup__wrap.popup__city iframe {
    width: 100%;
    height: 80vh;
}

@media (width < 56rem) {
        
    .popup-wrap__main {
        width: 100%;
        padding: 2rem;
    }

    .popup-wrap__image {
        display: none;
    }

}

/*** ------------ end.popup ------------ ***/



/*** ------------ docs__wrap ------------ ***/

.docs__wrap {
    z-index: 12;
}

* + .docs__block {
    margin-top: 2rem;
}

.docs-block__item {
    padding: 1.5rem 2rem;
    border-radius: 1.5rem;
    border: 1.5px solid rgba(219,197,155,.32);
}

.docs-block__item:hover {
    box-shadow: 0 1rem 4rem rgba(0,0,0,.16);
    border-color: transparent;
}

.docs-block__item > .__icon {
    position: relative;
    width: 1.5rem;
    height: 1.5rem;
    overflow: hidden;
}

.docs-block__item > .__icon > * {
    width: 100%;
    margin: auto;
}

.docs-block__item > .__icon + * {
    position: relative;
    width: calc(100% - 1.5rem);
    padding-left: 1.5rem;
}

/*** ------------ end.docs__wrap ------------ ***/



/*** ------------ fixed__nav ------------ ***/

.fixed__nav {
    position: fixed;
    top: 50%;
    left: 0;
    -webkit-transform: translate(-92%,-50%);
    transform: translate(-92%,-50%);
    display: block;
    border-radius: 0 1rem 1rem 0;
    box-shadow: 0 1rem 4rem rgba(0,0,0,.16);
    transition: var(--transitionLong);
    z-index: 234;

    display: none;
}

.fixed__nav.__active {
    -webkit-transform: translate(0,-50%);
    transform: translate(0,-50%);
    transition: var(--transitionLong);
}

.fixed-nav__button {
    position: absolute;
    top: 50%;
    left: calc(100% - .5rem);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 2rem;
    height: 4rem;
    cursor: pointer;
    background: var(--basic-gold);
    border-radius: .75rem;
    transition: var(--transitionLong);
    z-index: 1;
}

.fixed-nav__button:hover,
.fixed-nav__button.__clicked {
    background: var(--basic-red);
    transition: var(--transitionLong);
}

.fixed-nav__button:before {
    content: '';
    position: relative;
    display: block;
    width: .75rem;
    height: .75rem;
    margin: auto;
    background: url('../images/icons/icons__arrows/icon__arrow-fixed-nav.svg') 45% center no-repeat transparent;
    background-size: cover;
    transition: var(--transitionLong);
    z-index: 1;
}

.fixed-nav__button.__clicked:before {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    background: url('../images/icons/icons__all/icon__close-white.svg') 45% center no-repeat transparent;
    background-size: cover;
    transition: var(--transitionLong);
}

.fixed-nav__wrap {
    padding: 1rem 1rem 1rem 0;
    background: var(--basic-white);
    border-radius: 0 1rem 1rem 0;
}

.fixed-nav__wrap > * + * {
    margin-top: .5rem;
}

.fixed-nav__wrap a {
    display: block;
    padding: 0 1.5rem;
    color: var(--basic-black);
}

.fixed-nav__wrap a:hover {
    transform: translateX(1rem);
    color: var(--basic-gold);
}

/*** ------------ end.fixed__nav ------------ ***/



/*** ------------ footer ------------ ***/

footer {
    position: relative;
    display: block;
    overflow: hidden;
    color: var(--basic-white);
    background: #090c1e; /* Темно-синий фон как на макете (или var(--basic-blue)) */
    z-index: 234;
}
footer .content {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.contact__page footer {
    display: none;
}

/* Контейнер сетки футера (4 колонки) */
footer .footer__grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
    gap: 2.5rem;
    padding-bottom: 3.5rem;
}

/* Нижняя полоса с копирайтом */
footer > .wrap:last-child {
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
}

@media (width < 56rem) {
    .contact__page footer {
        display: block;
    }

    footer .footer__grid {
        grid-template-columns: repeat(2, 1fr); /* 2 колонки на планшетах */
        gap: 2rem;
    }
}

@media (width < 36rem) {
    footer .footer__grid {
        grid-template-columns: 1fr; /* 1 колонка на мобильных */
    }
}

    /*** ------------ footer__contact ------------ ***/

.footer__contact {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-contact__item {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
}

.footer-contact__item a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-contact__item a:hover {
    color: var(--basic-gold, #c9a227);
}

.footer-contact__item .link__border-bottom:before {
    display: none;
}

    /*** ------------ footer__block ------------ ***/

.footer-block__title {
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--basic-white);
    margin-bottom: 1.5rem;
}

/* Описание бренда в первой колонке */
.footer-info__text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.55);
    margin-top: 1rem;
}

    /*** ------------ footer__menu ------------ ***/

.footer__menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.footer__menu > li a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.footer__menu > li a:hover {
    color: var(--basic-white);
}

/*** ------------ end.footer ------------ ***/



/*** ------------ close__button ------------ ***/

.close__button {
    position: absolute;
    width: 3rem;
    height: 3rem;
    font-size: 0;
    padding: 0;
    border: 0;
    background: url('https://hotel6-3.ru/images/icons/icons__all/icon__close-black.svg') center no-repeat transparent;
    background-size: 1rem;
    cursor: pointer;
    transition: var(--transitionLong);
    z-index: 100;  
}

.close__button:hover {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    transition: var(--transitionLong); 
}

.popup .close__button {
    top: 1rem;
    right: 1rem;
}

.menu__wrap .close__button {
    right: 0;
}

@media (width < 56rem) {
    
}

/*** ------------ end.close__button ------------ ***/



/*** ------------ menu__wrap ------------ ***/

.menu__wrap {	
    position: fixed;
    display: block;
    top: 0;
    right: 0;
    z-index: 1001;
    width: 66%;
    height: 100%;
    min-height: auto;
    background: var(--basic-white);
    -webkit-transform: translate3d(100%,0,0);
    transform: translate3d(100%,0,0);
    -webkit-transition: -webkit-transform 1s;
    transition: transform 1s;
    -webkit-transition-timing-function: cubic-bezier(0.7,0,0.3,1);
    transition-timing-function: cubic-bezier(0.7,0,0.3,1);
    /*overflow: hidden;*/
}

.menu__wrap::-webkit-scrollbar {width: 0;}
.menu__wrap::-webkit-scrollbar-thumb {}
.menu__wrap::-webkit-scrollbar-thumb:hover {}
.menu__wrap::-webkit-scrollbar-track {}
.menu__wrap::-webkit-scrollbar-track:hover {}

.menu__wrap.__show {
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
    -webkit-transition: -webkit-transform 1s;
    transition: transform 1s;
    -webkit-transition-timing-function: cubic-bezier(0.7,0,0.3,1);
    transition-timing-function: cubic-bezier(0.7,0,0.3,1);
}

.menu-wrap__block {
    height: 100%;
}

.menu-wrap__gall {
    background: var(--basic-black);
    overflow: hidden;
}

.menu-wrap__gall > img {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.menu-wrap__main {
    padding: 4rem;
}

* + .menu-wrap__contact {
    margin-top: 1rem;
}

* + .menu-wrap__links {
    margin-top: auto;
    padding-top: 2rem;
    border-top: 1.5px solid rgba(17,18,19,.12);
}

.menu-wrap__weather + .menu-wrap__links {
    border-color: transparent;
}

.menu-wrap__contact > * + *,
.menu-wrap__links > * + * {
    margin-top: .5rem;
}

    /*** ------------ menu-wrap__weather ------------ ***/

.menu-wrap__weather {
    padding: 1rem 2rem;
    background: rgba(219,197,155,.24);
    box-shadow: 0 1rem 4rem rgba(0,0,0,.16);
    border-radius: 1.5rem;
}

* + .menu-wrap__weather {
    margin-top: 2rem;
}

.menu-wrap__weather a {
    pointer-events: none;
}

.menu-wrap__weather > .__p + * {
    margin-top: .5rem;
}

.rus-widget-line_block {
    position: relative;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
}

.rus-widget-line_block > *:first-child {
    margin-left: auto;
    color: var(--basic-red);
}

.rus-widget-line_block > *:last-child {
    margin-right: auto;
}

.rus-widget-line_block > * + * {
    margin-left: .5rem;
}

.rus-block-img {
    position: relative;
    width: 1.5rem;
    height: 1.5rem;
    overflow: hidden;
}

@media (width < 56rem) {
    
    .menu__wrap {
        width: 100%;
    }

    .menu-wrap__block > .item:first-child {
        display: none;
    }

    .menu-wrap__main {
        padding: 4rem 5%;
    }
        
    .menu-wrap__links {
        flex-wrap: wrap;
        flex-direction: column;
    }

    .menu-wrap__links > * + * {
        margin: 1rem 0 0;
    }

}

/*** ------------ end.menu__wrap ------------ ***/



/*** ------------ social__link ------------ ***/

.social__link {
    width: fit-content;
    z-index: 12;
}

.menu-wrap__links .social__link {
    margin-top: -.75rem;
}

.__absolute-social.social__link {
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 100;
}

.social__link a {
    display: block;
    width: 3rem;
    height: 3rem;
    border-radius: .75rem;
    box-shadow: 0 1rem 4rem rgba(0,0,0,.24);
}

.social__link a + a {
    margin-left: .75rem;
}

.social__link a.__tg {
    background: url('../images/icons/icons__soc/icon__tg-black.svg') center no-repeat rgba(219,197,155,.32);
    background-size: 40%;
}

.social__link a.__vk {
    background: url('../images/icons/icons__soc/icon__vk-black.svg') center no-repeat rgba(219,197,155,.32);
    background-size: 40%;
}

.social__link a:hover {
    background-color: rgba(219,197,155,.48);
    box-shadow: 0 1rem 4rem rgba(0,0,0,.48);
}

@media (width < 56rem) {
        
    .menu-wrap__links .social__link {
        margin-top: 1rem;
    }

}    
    
/*** ------------ end.social__link ------------ ***/



/*** ------------ loader__area ------------ ***/

.loader__area {
    position: fixed;
    inset: 0;
    display: block;
    background: #f5f2e8;
    z-index: 888;
    -webkit-clip-path: inset(0);
    clip-path: inset(0);
    animation: loaderHide .8s ease-in-out;
    animation-fill-mode: forwards;
    animation-delay: 2s;
}

@keyframes loaderHide {   
    100% {
        -webkit-clip-path: inset(0 0 100% 0);
        clip-path: inset(0 0 100% 0);
        pointer-events: none;
    }
}

    /*** ------------ loader__logo ------------ ***/

.loader__logo {
    position: absolute;
    inset: 0;
    -webkit-transform: scale(.8);
    transform: scale(.8);
    opacity: 0;
    animation: loaderLogo .8s ease-in-out;
    animation-fill-mode: forwards;
    transition: var(--transitionLong);
}

@keyframes loaderLogo {  
    20% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
}

.loader__logo:nth-child(1) {
    animation-delay: .2s;
}

.loader__logo:nth-child(2) {
    animation-delay: .4s;
}

.loader__logo:nth-child(3) {
    animation-delay: .6s;
}

.loader__logo:nth-child(4) {
    animation-delay: .8s;
}

.loader__logo > * {
    margin: auto;
    width: 24rem;
}

@media (width < 56rem) {
        
    .loader__logo > * {
        width: 18rem;
    }
    
}
        
    /*** ------------ loader-area__wrap ------------ ***/

.loader-area__wrap {
    position: relative;
    width: 30%;
    height: calc(100% - 8rem);
    margin: 4rem auto;
    z-index: 1;
}

@media (width < 56rem) {
        
    .loader-area__wrap {
        width: 80vw;
        height: calc(100% - 12rem);
        margin: 6rem auto;
    }
   
}

.loader-area__wrap > .__item {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.loader-area__wrap > .__item > div {
    height: 100%;
    overflow: hidden;
    inset: 0;
    -webkit-clip-path: inset(0 0 100% 0);
    clip-path: inset(0 0 100% 0);
    animation: imgShow .5s ease-in-out;
    animation-fill-mode: forwards;
}

.loader-area__wrap > .__item:nth-child(1) > div {
    animation-delay: .4s;
}

.loader-area__wrap > .__item:nth-child(2) > div {
    animation-delay: .8s;
}

.loader-area__wrap > .__item:nth-child(3) > div {
    animation-delay: 1.2s;
}

/*.loader-area__wrap > .__item:nth-child(4) > div {
    animation-delay: 4s;
}

.loader-area__wrap > .__item:nth-child(5) > div {
    animation-delay: 5s;
}*/

@keyframes imgShow {   
    100% {
        -webkit-clip-path: inset(0);
        clip-path: inset(0);
    }
}

/*** ------------ end.loader__area ------------ ***/



/*** ------------ __pseudo-divider ------------ ***/

.__pseudo-divider {
    position: absolute;
    top: -75vh;
    display: block;
    width: 100%;
    height: 1px;
    background: transparent;
    pointer-events: none;
    z-index: 600;
}

/*** ------------ end.__pseudo-divider ------------ ***/



/*** ------------ booking__wrap ------------ ***/

.booking__wrap {
    padding: 2rem;
    background: var(--basic-gold-pale);
    border-radius: 2rem;
    z-index: 12;
}

* + .booking__wrap {
    margin-top: 3rem;
}

.booking__caption {
    padding: 0;
    margin: 0 0 4rem;
    z-index: 10;
}

.booking__caption li {
    position: relative;
    display: block;
    cursor: pointer;
    color: var(--basic-gold);
    transition: var(--transition);
}

.booking__caption li:not(.__active) {
    color: var(--basic-black);
    transition: var(--transition);
}

.booking__caption.__center li:first-child {
    margin-left: auto;
}

.booking__caption.__center li:last-child {
    margin-right: auto;
}

.booking__caption li + li {
    margin-left: 2rem;
    padding-left: 2rem;
}

.booking__caption li + li:before {
    content: '';
    position: absolute;
    top: 50%;
    left: -1rem;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    display: block;
    width: 2rem;
    height: 1.25px;
    background: var(--basic-gold-light);
    z-index: 1;
}

.booking__caption li.__disabled {
    color: rgba(17,18,19,.4);
    pointer-events: none;
}

.booking__content {
    display: none;
    z-index: 100;
}

.booking__content.__active {
    display: block;
}

.booking__content .feedback__block {
    padding: 0 16%;
}

.booking-content__title:not(:last-child) {
    padding-bottom: 3rem;
    border-bottom: 1.5px solid rgba(17,18,19,.12);
}

.booking__content > * {
    opacity: 0;
    transform: translateY(1rem);
    -webkit-transform: translateY(1rem);
    animation: showBookingContent 1.2s ease-in-out;
    animation-fill-mode: forwards;
}

@keyframes showBookingContent {   
    100% {
        opacity: 1;
        transform: translateY(0);
        -webkit-transform: translateY(0);
    }
}

@media (width < 56rem) {
            
    .booking__content .feedback__block {
        padding: 0;
    }

}

/*** ------------ end.booking__wrap ------------ ***/



/*** ------------ cookie ------------ ***/

#cookie_note {
    display: none;
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    max-width: 36rem;
    padding: 1rem;
    background: var(--basic-white);
    box-shadow: 0 1rem 4rem rgba(0,0,0,.16);
    border-radius: 1rem;
    z-index: 600;
}

#cookie_note.show {
    display: flex;
    align-items: start;
}

#cookie_note .__p {
    margin: 0;
}

#cookie_note button {
    display: inline-block;
	font-weight: 700;
    padding: .5rem 1rem;
    background: var(--basic-red);
    color: var(--basic-white);
    white-space: nowrap;
    text-transform: uppercase;
    border: 0;
    border-radius: .5rem;
    margin: 0 0 0 1rem;
    transition: var(--transition); 
}

#cookie_note button:hover {
    background: var(--basic-blue);
    transition: var(--transition); 
}

@media (width < 56rem) {
         
    #cookie_note.show {
        width: calc(100% - 2rem);
        max-width: 98%;
        display: block;
    }
        
    #cookie_note button {
        margin: 1rem 0 0;
    }

}

/*** ------------ end.cookie ------------ ***/


@media (max-width: 768px) {
.rooms__main button.slick-next,
.block__slider button.slick-next {
    display: none !important;
}

.rooms__main button.slick-next:hover,
.block__slider button.slick-next:hover {
    right: 1rem;
}

.rooms__main button.slick-prev,
.block__slider button.slick-prev {
    display: none !important;
}

.room-title__img {
    width: 100% !important;
    height: 400px !important;
}
			.item__grid.ffffffffff > .item {
				flex: 0 0 100%;
			}
}