*,
*:after,
*:before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

:root {
	
--basic-white: #fff; /* фирменный белый */
--basic-black: #181d24; /* фирменный черный */
--basic-total-black: #000; /* черный */

--basic-gold: #ac835e; /* золотой */
--basic-gold-light: #ca9d75; /* светло-золотой */
--basic-gold-pale: #f9f0ec; /* бледно-золотой */

--basic-green-light: #7BA485; /* светло-зеленый */
--basic-green: #2B6D3C; /* зеленый */
--basic-green-dark: #265F34; /* тёмно-зеленый */

--basic-grey: #a2a4a7; /* фирменный серый */
--basic-grey-pale: #f4f3f5; /* бледно-серый */
--basic-grey-light: #eceaed; /* светло-серый */
--basic-grey-dark: #cecacf; /* тёмно-серый */

--transitionLong: all 1.2s cubic-bezier(.19,1,.22,1); /* transition долгий */
--transition: all .6s cubic-bezier(.19,1,.22,1); /* transition */

}

html,
input,
textarea {}

html,
input,
textarea,
select,
p,
.__p {
    position: relative;
    font-family: 'pt-root', 'mont', 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-gold-pale);
    -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-grey);
    background-color: var(--basic-black);
}

::-webkit-scrollbar {
    width: .25rem;
}

::-webkit-scrollbar-track {
    background: var(--basic-white);
}

::-webkit-scrollbar-thumb {
    background: var(--basic-black);
}

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 {
    content: '';
    display: block;
    clear: both;
    overflow: hidden;
}

/*** ------------ end.clear ------------ ***/



/*** ------------ headings, text ------------ ***/

h1,
h2,
h3,
h4,
h5,
.text__title,
.text__sub-title {
    position: relative;
    font-family: 'europe-ext';
    font-weight: 400;
    margin: 0 0 2rem;
}

* + h1,
* + h2,
* + h3,
* + h4,
* + h5,
* + .text__title {
    margin-top: 3rem;
}

.text__title + .text__title {
    margin-top: -1.5rem;
}

h1,
.__h1 {
    font-size: 4rem;
    line-height: 4.25rem;
}

h2,
.__h2 {
    font-size: 3.5rem;
    line-height: 3.75rem;
}

h3,
.__h3 {
    font-size: 3rem;
    line-height: 3.25rem;
}

h4,
.__h4 {
    font-size: 2.5rem;
    line-height: 2.75rem;
}

h5,
.__h5 {
    font-size: 2rem;
    line-height: 2.25rem;
}

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 {
    margin-top: 1.5rem;
}

ul.ul__list li + li {
    margin-top: .25rem;
}

.text__big {
    font-size: 1.25rem;
    line-height: 1.75rem;
}

.text__big + * {
    margin-top: 1.5rem;
}

.text__small {
    font-size: .875rem;
    line-height: 1.25rem;
}

.text__extra-small {
    font-weight: 500;
    font-size: .75rem;
    line-height: 1rem;
}

.text__uppercase {
    text-transform: uppercase;
}

.text__lowercase {
    text-transform: lowercase;
}

.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: 'europe-ext';
}

.text__indent {
    text-indent: 4rem;
}

.text__mt-025 {
    margin-top: .25rem !important;
}

.text__mt-05 {
    margin-top: .5rem !important;
}

.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__mt-auto {
    margin-top: auto !important;
}

.text__color-white {
    color: var(--basic-white);
}

.text__color-gold {
    color: var(--basic-gold);
}

.text__color-green {
    color: var(--basic-green);
}

.text__color-grey {
    color: var(--basic-grey);
}

.text__width-75 {
    max-width: 75%;
}

.text__width-66 {
    max-width: 66%;
}

.text__width-50 {
    max-width: 50%;
}

.text__bold,
b,
strong {
    font-weight: 500 !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 li:before {
    content: '';
    position: absolute;
    top: .675rem;
    left: 0;
    display: block;
    width: 1rem;
    height: 1.5px;
    background: var(--basic-gold-light);
    z-index: 12;
}

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;
}

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.02);
        transform: translateY(1.02);
    }   
    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.5rem;
    }

    h2,
    .__h2 {
        font-size: 2rem;
        line-height: 2rem;
    }

    h3,
    .__h3 {
        font-size: 1.75rem;
        line-height: 1.75rem;
    }

    h4,
    .__h4 {
        font-size: 1.5rem;
        line-height: 1.5rem;
    }

    h5,
    .__h5 {
        font-size: 1.25rem;
        line-height: 1.25rem;
    }

    .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: -112px;
}

	/*** ------------ link__border-bottom ------------ ***/
    
.link__border-bottom {
	display: inline-block;
    width: fit-content;
    color: var(--basic-black);
}

.link__border-bottom.text__color-white,
.text__color-white .link__border-bottom {
    color: var(--basic-white);
}

.text__color-grey .link__border-bottom {
    color: var(--basic-grey);
}

.link__border-bottom:hover {
    color: var(--basic-green);
}

.link__border-bottom.text__color-white:hover,
.text__color-white .link__border-bottom:hover {
    color: rgba(255,255,255,.64);
}

.link__border-bottom:before,
.link__border-bottom:after {
    content: '';
    position: absolute;
    top: 100%;
    display: block;
    height: 1.5px;
    transition: var(--transitionLong);
}

.link__border-bottom:before {
    width: 100%;
    background: rgba(24,29,36,.12);
    z-index: 1;
}

.link__border-bottom.text__color-white:before,
.text__color-white .link__border-bottom:before {
    background: rgba(255,255,255,.12);
}

.link__border-bottom:after {
    width: 0;
    background: var(--basic-green);
    z-index: 10;
}

.link__border-bottom.text__color-white:after,
.text__color-white .link__border-bottom:after {
    background: rgba(255,255,255,.64);
}

.link__border-bottom:hover:after {
    width: 100%;
    transition: var(--transitionLong);
}

	/*** ------------ link__rotate ------------ ***/

.link__rotate {
    position: relative;
    width: fit-content;
    cursor: pointer;
    padding: 1rem 1.5rem;
    color: var(--basic-white);
    background: var(--basic-gold);
    border-radius: 1.25rem;
}

.link__rotate:hover {
    box-shadow: 0 0 3rem rgba(202,157,117,.32);
}

.link__rotate.__dark,
.link__rotate:hover {
    background: var(--basic-gold-light);
}

* + .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;
}

.link__rotate:hover > div span,
.link__rotate:hover > div:before {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
}

	/*** ------------ links__wrap ------------ ***/

.links__wrap {
    position: relative;
    z-index: 10;
}

* + .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-right: 2rem;
}

.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 > .__p.text__color-white:not(:last-child):before {
    background: var(--basic-white);
}

@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.5px;
    }

}

/*** ------------ 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: var(--basic-black);background: transparent;}
::-moz-placeholder          {color: var(--basic-black);background: transparent;}
:-moz-placeholder           {color: var(--basic-black);background: transparent;}
:-ms-input-placeholder      {color: var(--basic-black);background: transparent;}

form + p {
    margin-top: 1.5rem;
}

/*** ------------ end.form ------------ ***/



/*** ------------ wrap ------------ ***/

.wrap {
    position: relative;
    display: block;
    width: 100%;
}

.container {
    position: relative;
    display: block;
    max-width: 1336px;
    width: calc(100% - 2rem);
    padding: 0 1rem;
    margin: auto;
}

.content__wrap {
    z-index: 123;
}

header + .content__wrap {
    padding-top: 6rem;
}

.__none {
    display: none !important;
}

.__sticky {
    position: sticky;
    top: 1rem;
}

@media (width < 56rem) {
			
	.container {
		width: 100%;
	}

    header + .content__wrap {
        padding-top: 4rem;
    }
    
}

/*** ------------ 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);
}

.bg__black {
    background: var(--basic-black);
}

.bg__grey {
    background: var(--basic-grey);
}

.bg__grey-light {
    background: var(--basic-grey-light);
}

.bg__grey-pale {
    background: var(--basic-grey-pale);
}

.bg__green-dark {
    background: var(--basic-green-dark);
}

.bg__green {
    background: var(--basic-green);
}

/*** ------------ 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;
}

.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 {
    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.333%;
}

.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%;
    }
    
    .item__grid > .__mobile-last {
        order: 99;
    }

}
    
/*** ------------ end.item-grid ------------ ***/



/*** ------------ content ------------ ***/

#wrapper {
    position: relative;
    width: 100%;
    min-height: 100%;
}

.content {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.__is-hidden {
    overflow: hidden;
}

body:not(.__header-transparent) .content__wrap {
    padding-top: 8.25rem /*6rem*/;
}

@media (width < 56rem) {
    
    .content__wrap {
        overflow-x: hidden;
    }

    body:not(.__header-transparent) .content__wrap {
        padding-top: 6.25rem /*4rem*/;
    }
    
}

/*** ------------ end.content ------------ ***/



/*** ------------ shadow-effect ------------ ***/

.shadow-effect:before {
    content:' ';
    position: absolute;
    inset: 0;
    opacity: .4;
    z-index: 34;
    transition: var(--transitionLong);
}

.shadow-effect.shadow-effect__white:before {
    background: var(--basic-white);
}

.shadow-effect__black:before {
    background: var(--basic-total-black);
}

/*** ------------ end.shadow-effect ------------ ***/



/*** ------------ header ------------ ***/

header {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    background: var(--basic-gold-pale);
    z-index: 800;
}

body.__open-menu header {
    padding-right: .25rem;
}

.__animation-on.home__page header {
    opacity: 0;
    top: -2rem;
    animation: showHeader 1.5s ease-in-out;
    animation-delay: 0.4s;
    animation-fill-mode: forwards;
}

@keyframes showHeader {   
    100% {
        opacity: 1;
        top: 0;
    }
}

    /*** ------------ header__wrap ------------ ***/

.header__wrap {
    padding: 1rem 2rem;
}

.header__wrap.__attention {
    padding: .5rem 1rem;
    background: #ff5157;
}

@media (width < 56rem) {
        
    .header__wrap {
        padding: .5rem 1rem;
    }
	
}

    /*** ------------ header__button ------------ ***/

.header__button {
    position: relative;
    display: none;
    z-index: 12;
}

@media (width < 56rem) {
        
    .header__button {
        display: block;
        width: fit-content;
    }

    * + .header__button {
        margin-left: 1.5rem;
    }

}
    /*** ------------ header-button__menu ------------ ***/

.header-button__menu > * {
    margin: auto;
}

.menu__button {
    position: relative;
    padding: 1rem 0;
    width: 2rem;
    cursor: pointer;
}

.menu__button > * {
    position: relative;
    display: block;
    width: 100%;
    height: 1.75px;
    transition: var(--transitionLong);
}

.menu__button > * {
    background: var(--basic-black);
}

.menu__button > * + * {
    margin-top: .25rem
}

.menu__button:hover > *:first-child {
    transform: translateY(.175rem) scaleX(1.5);
}

.menu__button:hover > *:last-child {
    transform: translateY(-.175rem) scaleX(1.5);
}

    /*** ------------ header__contact ------------ ***/

.header__contact {
    position: relative;
    z-index: 12;
}

* + .header__contact {
    margin-left: auto;
    z-index: 12;
}

    /*** ------------ header__booking ------------ ***/

.header__booking {
    position: relative;
    z-index: 12;
}

* + .header__booking {
    margin-left: 2rem;
    padding-left: 2rem;
}

.booking__button {
    position: relative;
    display: block;
    width: 4rem;
    height: 4rem;
    background: url('../images/icons/icons__all/icon__book-white.svg') center no-repeat var(--basic-gold);
    background-size: 50%;
    border-radius: 1.5rem;
    overflow: hidden;
    transition: var(--transitionLong);
}

.booking__button:hover {
    border-radius: 50%;
    background-color: var(--basic-gold-light);
    transition: var(--transitionLong);
}

@media (width < 56rem) {
        
    * + .header__booking {
        margin-left: .75rem;
        padding-left: .75rem;
    }

    .booking__button {
        width: 3rem;
        height: 3rem;
        border-radius: 1.25rem;
    }

}

/*** ------------ end.header ------------ ***/



/*** ------------ logo ------------ ***/

.logo {
    position: relative;
    width: fit-content;
    transition: var(--transitionLong);
    z-index: 10;
}

.logo__tamengont::before {
    content: '';
    position: relative;
    display: block;
    width: 4rem;
    height: 4rem;
    background: url('../images/logo/logo__tamengont-white.png') no-repeat center var(--basic-green);
    background-size: 60%;
    border-radius: 1.5rem;
    transition: var(--transitionLong);
    z-index: 1;
}

footer .logo__tamengont::before {
    background-color: var(--basic-gold);
}

.logo__tamengont:hover::before {
    border-radius: 50%;
    transition: var(--transitionLong);
}

.logo__tamengont > div {
    letter-spacing: 2px;
    margin-left: 1rem;
}

footer .logo__tamengont > div {
    color: var(--basic-white);
}

@media (width < 56rem) {
            
    .logo__tamengont::before {
        width: 3rem;
        height: 3rem;
        border-radius: 1.25rem;
    }

    header .logo__tamengont > div {
        display: none;
    }

}

/*** ------------ end.logo ------------ ***/



/*** ------------ main__menu ------------ ***/

.main__menu {
    position: relative;
    z-index: 23;
}

.main__menu li {
    position: relative;
}

.main__menu > li:nth-child(1),
.main-menu__hidden {
    display: none !important;
}

    /*** ------------ header main__menu ------------ ***/

header nav {
    position: relative;
    z-index: 123;
}

header .logo + nav {
    margin-left: 3rem;
    padding-left: 1rem;
    border-left: 1.5px solid rgba(24,29,36,.12);
}

header .main__menu > li {
    position: relative;
    margin-left: 2rem;
}

header .main__menu > li > a {
    display: block;
    font-weight: 500;
    font-size: .75rem;
    padding: .5rem 0;
    text-transform: uppercase;
}

header .main__menu > li.active > a {
    color: var(--basic-gold);
}

header .main__menu > li > a:hover {
    color: var(--basic-green);
}

header .main__menu > li > a.main-menu__dropdown {
    padding-right: 1rem;
}

header .main__menu > li > a.main-menu__dropdown:after {
    content: '';
    position: absolute;
    top: 47.5%;
    right: 0;
    -webkit-transform: translateY(-50%) scale(1,1);
    transform: translateY(-50%) scale(1,1);
    width: .75rem;
    height: .75rem;
    background: url('../images/icons/icons__all/icon__dropdown-black.svg') center no-repeat transparent;
    background-size: contain;
    z-index: 1;
    transition: var(--transition);
}

header .main__menu > li > a.main-menu__dropdown:hover:after {
    -webkit-transform: translateY(-50%) scale(1,-1);
    transform: translateY(-50%) scale(1,-1);
    transition: var(--transition);
}

header .main__menu > li > ul {
    position: absolute;
    top: calc(100% + 1rem);
    left: -2rem;
    display: block;
    max-width: 100%;
    min-width: 20rem;
    padding: 2rem;
	box-shadow: 0 0 2rem rgba(24,29,36,.16);
    background: rgba(249,240,236,.72);
    -webkit-backdrop-filter: blur(12px);
	backdrop-filter: blur(12px);
    border-radius: 2rem;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.__animation-on header .main__menu > li > ul {
    background: var(--basic-gold-pale);
    -webkit-backdrop-filter: none;
	backdrop-filter: none;
}

header .main__menu > li:hover > ul {
    top: 100%;
    opacity: 1;
    pointer-events: all;
    transition: var(--transition);
}

header .main__menu li > .main-menu__ul-flex + ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    min-width: 40rem;
}

header .main__menu li > ul > li {
    position: relative;
    display: block;
    margin: .25rem 0 0;
}

header .main__menu li > .main-menu__ul-flex + ul > li {
    width: 50%;
    margin: 1.5rem 0 0;
}

header .main__menu li > .main-menu__title-preview + ul:before {
    content: '';
    position: relative;
    display: block;
    width: 100%;
    padding-bottom: .5rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
    font-size: .75rem;
    color: var(--basic-gold);
    text-transform: uppercase;
    border-bottom: 1.5px solid rgba(24,29,36,.12);
    z-index: 1;
}

header .main__menu li > .main-menu__title-preview.main-menu__ul-flex + ul:before {
    margin-bottom: 0;
}

header .main__menu li > .main-menu__title-about + ul:before {  content: 'О комплексе';  }
header .main__menu li > .main-menu__title-cottages + ul:before {  content: 'Коттеджи';  }
header .main__menu li > .main-menu__title-service + ul:before {  content: 'Услуги';  }

header .main__menu li > ul > li > a {
    display: block;
    width: calc(100% + 1.5rem);
    padding: .75rem;
    margin: -.75rem;
    font-size: .875rem;
    border-radius: 1rem;
    z-index: 1;
}

header .main__menu .main-menu__icon-preview {
    border-radius: 2rem;
}

header .main__menu li > ul > li > a.main-menu__icon-preview {
    padding-left: 5.5rem;
}

header .main__menu li > ul > li > a:hover {
    color: var(--basic-green);
    background: var(--basic-white);
    z-index: 10;
}

header .main-menu__icon-preview:before {
    content: '';
    position: absolute;
    top: .75rem;
    left: .75rem;
    display: block;
    width: 4rem;
    height: 4rem;
    background: var(--basic-black);
    border-radius: 1.5rem;
    z-index: 1;
}

header .main-menu__icon-cottage-standart:before {
    background: url('../images/back/__menu/__cottage-standart.jpg') center no-repeat transparent;
    background-size: cover;
}

header .main-menu__icon-cottage-russian:before {
    background: url('../images/back/__menu/__cottage-russian.jpg') center no-repeat transparent;
    background-size: cover;
}

header .main-menu__icon-cottage-banquet:before {
    background: url('../images/back/__menu/__cottage-banquet.jpg') center no-repeat transparent;
    background-size: cover;
}

header .main-menu__icon-cottage-family:before {
    background: url('../images/back/__menu/__cottage-family.jpg') center no-repeat transparent;
    background-size: cover;
}

header .main-menu__icon-cottage-fairytale:before {
    background: url('../images/back/__menu/__cottage-fairytale.jpg') center no-repeat transparent;
    background-size: cover;
}

header .main-menu__icon-cottage-frame:before {
    background: url('../images/back/__menu/__cottage-frame.jpg') center no-repeat transparent;
    background-size: cover;
}

header .main-menu__icon-events:before {
    background: url('../images/back/__menu/__events.jpg') center no-repeat transparent;
    background-size: cover;
}

header .main-menu__text-preview:after {
    content: '';
    position: relative;
    display: block;
    width: 100%;
    padding: .5rem 1rem 0 0;
    font-weight: 500;
    font-size: .75rem;
    line-height: 1rem;
    color: var(--basic-black);
    opacity: .32;
    transition: var(--transition);
}

header .main__menu li > ul > li > a.main-menu__text-preview:hover:after {
    opacity: .64;
    transition: var(--transition);
}

header .main-menu__text-cottage-standart:after {  content: 'Классический домик для компании из 6 человек';  }
header .main-menu__text-cottage-russian:after {  content: 'Двухэтажный коттедж возле собственного пруда';  }
header .main-menu__text-cottage-banquet:after {  content: 'Двухэтажный коттедж с уютным банкетным залом';  }
header .main-menu__text-cottage-family:after {  content: 'Комфортабельный коттедж на 10 человек';  }
header .main-menu__text-cottage-fairytale:after {  content: 'Двухэтажный коттедж с собственной баней';  }
header .main-menu__text-cottage-frame:after {  content: 'Стильный современный коттедж на 6 человек';  }
header .main-menu__text-events:after {  content: 'Всесезонная банкетная площадка для вашего праздника';  }

@media (width < 56rem) {
	
	header nav {
        position: fixed;
        inset: 0;
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
        margin: 0 !important;
        padding: 4rem 0 2rem !important;
        border: 0 !important;
        background: var(--basic-green);
        -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);
        z-index: 234;
    }
    
	header nav.__show {
        -webkit-transform: translateY(0);
        transform: translateY(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);
    }
        
    header .main__menu > li:first-child {
        display: block !important;
    }

    header .main__menu {
        flex-direction: column;
    }
    
    header .main__menu > li {
        width: 100%;
        margin-left: 0;
    }

    header .main__menu > li > a {
        font-size: 1.5rem;
        line-height: 1.5rem;
        padding: 1rem 2rem !important;
        color: var(--basic-gold-pale);
        text-transform: uppercase;
    }

    header .main__menu > li.active > a {
        color: var(--basic-green-dark);
        background: var(--basic-gold-pale);
    }

    header .main__menu > li > a:hover {
        color: var(--basic-gold-pale);
        background: var(--basic-green-dark);
    }

    header .main__menu > li > a.main-menu__dropdown:after,
    header .main__menu > li > ul {
        display: none !important;
    }

    header nav .__close {
        position: absolute;
        top: 1rem;
        right: 1rem;
        display: block;
        width: 2rem;
        height: 2rem;
        background: url('../images/icons/icons__all/icon__close-white.svg') center no-repeat transparent;
        background-size: 50%;
        transition: var(--transitionLong);
        z-index: 100;
    }

    header nav .__close:hover {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
        transition: var(--transitionLong);
    }

}

/*** ------------ end.main__menu ------------ ***/



/*** ------------ title__wrap ------------ ***/

.title__wrap:not(:last-child) {
    margin-bottom: 3rem;
    padding-bottom: 1rem;
    border-bottom: 1.5px solid rgba(24,29,36,.12);
}

.title__wrap.text__color-white:not(:last-child),
.bg__black .title__wrap:not(:last-child) {
    border-color: rgba(255,255,255,.32);
}

.title-wrap__right {
    padding-left: 3rem;
}

.title-wrap__right > * {
    width: fit-content;
    margin-left: auto;
}

@media (width < 56rem) {
            
    .title-wrap__right {
        padding: 2rem 0 0;
    }
        
    .title-wrap__right > * {
        margin-left: 0;
    }

}

/*** ------------ end.title__wrap ------------ ***/



/*** ------------ hello__wrap ------------ ***/

.hello__wrap {
    height: auto;
    /*height: calc(100% - 6rem);
    max-height: 32rem;*/
    overflow: hidden;
    background: var(--basic-white);
    border-radius: 0 8rem 0 0;
    z-index: 11;
}

.hello__wrap.__half {
    min-height: auto;
    height: 80%;
}

.hello__block {
    /*height: 100%;*/
    padding-top: 6rem;
}

.hello__block > * {
    position: relative;
    z-index: 100;
}

.hello__block:not(.ai-center) > .container {
    margin-top: auto;
    margin-bottom: 0;
}

.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-pure);
}

.hello-block__content {
    padding-top: 8rem;
    padding-bottom: 4rem;
}

.hello__wrap.__next-booking .hello__block:not(.ai-center) .hello-block__content {
    padding-bottom: 6rem;
}

.hello-block__title {
    font-weight: 300;
}

.hello-block__title:not(:last-child) {
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1.5px solid rgba(255,255,255,.32);
}

/*** ------------ end.hello__wrap ------------ ***/



/*** ------------ book__wrap ------------ ***/

.hello__wrap + .book__wrap {
    margin-top: -2rem;
    z-index: 123;
}

.hello__wrap + .book__wrap:before {
    content: '';
    position: absolute;
    inset: 2rem 0 0;
    background: var(--basic-gold-pale);
    z-index: 1;
}

.book__block {
    width: calc(100% + 2rem);
    margin-left: -1rem;
    margin-right: -1rem;
    padding: 1rem;
    background: rgba(24,29,36,.64);
    -webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur(8px);
    border-radius: 1.5rem;
    z-index: 12;
}

.book__block > div {
    position: relative;
    display: block;
    width: calc(25% - 4px);
    height: 64px;
    cursor: pointer;
    border: 1.5px solid rgba(255,255,255,.48);
}

.book__block > div:first-child {
    border-radius: 1rem 0 0 1rem;
}

.book__block > div:last-child {
    background: var(--basic-gold);
    border-color: transparent;
    transition: var(--transitionLong);
    border-radius: 0 1rem 1rem 0;
}

#app, 
#hr-widget {
    height: fit-content !important;
}

@media screen and (max-width: 920px) {
        
    .book__block > div {
        width: 100%;
    }

    .book__block > div + div {
        margin-top: 4px;
    }
        
}

/*** ------------ end.book__wrap ------------ ***/



/*** ------------ about__wrap ------------ ***/

.about__wrap {
    z-index: 13;
}

* + .about__block {
    margin-top: 4rem;
}

.about-block__img {
    border-radius: 3rem;
    overflow: hidden;
}

.about-block__img.__next-absolute {
    width: calc(100% - 4rem);
    z-index: 1;
}

.about-block__img.__absolute {
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 16rem;
    height: 16rem;
    z-index: 2;
}

@media (width < 56rem) {
        
    * + .about__block {
        margin-top: 3rem;
    }
     
    .about-block__img.__next-absolute {
        width: 100%;
        height: 16rem;
    }

    .about-block__img.__absolute {
        display: none;
    }
        
}

/*** ------------ end.about__wrap ------------ ***/



/*** ------------ cottages__wrap ------------ ***/

.cottages__wrap {
    z-index: 14;
}

* + .cottages__block {
    margin-top: 4rem;
}

.cottages-block__item {
    height: 28rem;
    border-radius: 3rem;
    overflow: hidden;
}

.cottages-block__item:hover {
    box-shadow: 0 0 4rem rgba(43,109,60,.48);
}

.bg__black .cottages-block__item:hover {
    box-shadow: 0 0 3rem rgba(202,157,117,.16);
}

.cottages-block__img {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 1;
}

.cottages-block__img + * {
    z-index: 123;
}

.cottages-block__content,
.cottages-block__content > * {
    padding: 1.5rem;
}

.cottages-block__title:not(:last-child) {
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 1.5px solid rgba(255,255,255,.16);
}

.cottages-block__desc {
    background: rgba(255,255,255,.16);
    -webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur(8px);
    border-radius: 2rem;
}

* + .cottages-block__desc:last-child {
    margin-top: auto;
}

.cottages-block__img > img,
.cottages-block__item:hover .cottages-block__img > img {
    transition: var(--transitionLong);
}

.cottages-block__item:hover .cottages-block__img > img {
    -webkit-transform: scale(1.02);
    transform: scale(1.02);
}

@media (width < 56rem) {
        
    * + .cottages__block {
        margin-top: 3rem;
    }

}

/*** ------------ end.cottages__wrap ------------ ***/



/*** ------------ service__wrap ------------ ***/

.service__wrap {
    z-index: 15;
}

.service__content {
    padding: 0 16rem;
}

* + .service__block {
    margin-top: 4rem;
}

.service-block__img {
    border-radius: 3rem;
    background: var(--basic-grey-dark);
    overflow: hidden;
    z-index: 1;
}

.service-block__img > img,
.service-block__item:hover .service-block__img > img {
    transition: var(--transitionLong);
}

.service-block__item:hover .service-block__img > img {
    -webkit-transform: scale(1.02);
    transform: scale(1.02);
}

.service-block__item.fd-column .service-block__img {
    height: 16rem;
}

.service-block__item:not(.fd-column) .service-block__img {
    position: absolute;
    inset: 0;
}

.service-block__item:not(.fd-column) .service-block__img:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4rem;
    width: 100%;
    height: 4rem;
    background: url('../images/icons/icons__arrows/icon__arrow-more-white.svg') center no-repeat var(--basic-gold);
    background-size: 1.25rem;
    opacity: 0;
    transition: var(--transitionLong);
    z-index: 45;
}

.service-block__item:not(.fd-column):hover .service-block__img:after {
    bottom: 0;
    opacity: 1;
    transition: var(--transitionLong);
}

.service-block__content {
    padding: 3rem 3rem 0;
    z-index: 20;
}

.service-block__item:not(.fd-column) .service-block__content {
    padding: 3rem;
}

.service-block__item a:not(.service-block__img):hover {
    color: var(--basic-green);
}

@media (width < 56rem) {
        
    .service__content {
        padding: 0;
    }

    * + .service__block {
        margin-top: 3rem;
    }

    .service-block__item.fd-column .service-block__img {
        height: 12rem;
    }
        
    .service-block__content {
        padding: 1.5rem 3rem 0;
    }

    .service-block__item:not(.fd-column) .service-block__content > .text__title + * {
        margin-top: 3rem;
    }
    
}

/*** ------------ service__wrap ------------ ***/



/*** ------------ contact__wrap ------------ ***/

.contact__wrap {
    z-index: 16;
}

* + .contact__block {
    margin-top: 4rem;
}

.contact__map {
    height: 100%;
    border-radius: 3rem;
    background: var(--basic-sand);
    overflow: hidden;
}

.contact__map.__small {
    height: 20rem;
}

[class*="copyrights-pane"] {
    display: none !important;
}

[class*="ymaps-2"][class*="-ground-pane"] {
    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%);
}

@media (width < 56rem) {
            
    * + .contact__block {
        margin-top: 3rem;
    }

    .contact__map {
        height: 16rem;
    }

}

/*** ------------ end.contact__wrap ------------ ***/



/*** ------------ location__wrap ------------ ***/

.location__wrap {
    z-index: 17;
}

* + .location__block {
    margin-top: 3rem;
}

.location-block__img {
    height: 10rem;
    background: var(--basic-white);
    overflow: hidden;
    border-radius: 2rem;
}

* + .location-block__content {
    padding: 1.5rem 1.5rem 0;
}

.location-block__content > * + * {
    margin-top: 0 !important;
}

/*** ------------ end.location__wrap ------------ ***/



/*** ------------ sale__wrap ------------ ***/

.sale__wrap {
    z-index: 23;
}

* + .sale__block {
    margin-top: 4rem;
}

.sale-block__item {
    height: 24rem;
    padding: 1.5rem;
    overflow: hidden;
    border-radius: 3rem;
}

.sale-block__img {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 1;
}

.sale-block__img + * {
    z-index: 23;
}

.sale-block__content {
    padding: 1.5rem;
    margin-top: auto;
    background: rgba(255,255,255,.16);
    -webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur(8px);
    border-radius: 2rem;
}

.sale-block__title + * {
    margin-top: -1rem;
}

.sale-block__item.__is-ended:before {
    content: 'Акция завершена';
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    display: block;
    width: fit-content;
    padding: .5rem 1.25rem;
    font-size: .875rem;
    line-height: 1rem;
    color: var(--basic-white);
    background: var(--basic-gold);
    border-radius: .75rem;
    white-space: nowrap;
    z-index: 12;
}

@media (width < 56rem) {
        
    * + .sale__block {
        margin-top: 3rem;
    }

}

/*** ------------ end.sale__wrap ------------ ***/



/*** ------------ rules__list ------------ ***/

.rules__list {
    padding-right: 40%;
}

* + .rules__list {
    margin-top: 4rem;
}

.rules-list__item + .rules-list__item {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1.5px solid rgba(24,29,36,.12);
}

.rules-list__item > div {
    position: relative;
    display: block;
}

.rules-list__item > div:nth-child(1) {
    width: 16rem;
    color: var(--basic-green);
}

.rules-list__item > div:nth-child(2) {
    width: calc(100% - 16rem);
    padding-left: 2rem;
}

@media (width < 56rem) {
            
    * + .rules__list {
        margin-top: 3rem;
    }
 
    .rules__list {
        padding-right: 0;
    }

    .rules-list__item > div:nth-child(1) {
        width: 40%;
        color: var(--basic-green);
    }
    
    .rules-list__item > div:nth-child(2) {
        width: 60%;
        padding-left: 2rem;
    }
    
}

/*** ------------ end.rules__list ------------ ***/



/*** ------------ equipment__block ------------ ***/

* + .equipment__block {
    margin-top: 2rem;
}

.equipment__block + * {
    margin-top: 3rem;
}

.equipment-block__item {
    margin-top: 1rem;
}

.equipment-block__icon {
    position: relative;
    width: 1.5rem;
    height: 1.5rem;
    overflow: hidden;
}

.equipment-block__icon > * {
    max-width: 75%;
    max-height: 75%;
    margin: auto;
}

.equipment-block__content {
    position: relative;
    width: calc(100% - 1.5rem);
    padding-left: 1rem;
}

/*** ------------ end.equipment__block ------------ ***/



/*** ------------ gallery__img ------------ ***/

.gallery__img {
    margin: auto;
}

* + .gallery__img {
    margin-top: 4rem;
}

ul.gallery__img li {
    position: relative;
    width: 33.333%;
    height: 12rem;
    border-radius: 1rem;
    border: .125rem solid var(--basic-gold-pale);
    overflow: hidden;
    transition: var(--transitionLong);
}

.main__block > .item ul.gallery__img li {
    height: 8rem;
}

ul.gallery__img.__huge li {
    width: 50%;
}

ul.gallery__img.__small li {
    width: 25%;
}

ul.gallery__img li:hover {
    border-radius: 2.5rem;
    transition: var(--transitionLong);
}

ul.gallery__img li a {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
    cursor: zoom-in;
}

ul.gallery__img li a img {
    z-index: 1;
}

@media screen and (max-width: 920px) {
        
    * + .gallery__img {
        margin-top: 3rem;
    }

    ul.gallery__img li {
        height: 8rem;
    }

} 

body:after {
    content: '';
    display: none;
}

.lightboxOverlay {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9999;
    background-color: var(--basic-black);
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
    opacity: 0.8;
    display: none;
}

.lightbox {
    position: fixed !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    width: auto;
    z-index: 10000;
    text-align: center;
    line-height: 0;
    font-weight: normal;
}

.lightbox .lb-image {display:block;width:auto!important;height:100% !important;}
.lightbox a img {border:none;}

.lb-outerContainer {
    position: relative;
    background-color: var(--basic-white);
    zoom: 1;
    width: auto !important;
    height: calc(100vh - 4rem) !important;
    margin: 0 auto;
}

.lb-outerContainer:after {content:"";display:table;clear:both;}

.lb-container {
    width: 100%;
    height: 100%;
}

.lb-loader {
    position: absolute;
    top: 43%;
    left: 0;
    height: 25%;
    width: 100%;
    text-align: center;
    line-height: 0;
}

.lb-cancel {
    display: block;
    width: 2rem;
    height: 2rem;
    margin: 0 auto;
    background: transparent;
    border-bottom: 0;
}

.lb-nav {position:absolute;top:0;left:0;height:100%;width:100%;z-index:10;}
.lb-container > .nav {left:0;}
.lb-nav a {outline:none;background-image:url('data:image/gif;base64,R0lGODlhAQABAPAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==');}
.lb-prev, .lb-next {height:100%;cursor:pointer;display:block;}

.lb-nav a.lb-prev {
    width: 6rem;
    left: 0;
    float: left;
    background: url('../images/icons/icons__arrows/icon__arrow-left-white.svg') center no-repeat rgba(24,29,36,.48);
    background-size: 1.5rem;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    opacity: 0;
    -webkit-transition: opacity 0.6s;
    -moz-transition: opacity 0.6s;
    -o-transition: opacity 0.6s;
    transition: opacity 0.6s;
    border-bottom: 0;
}

.lb-nav a.lb-prev:hover {filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100);opacity:1;border-bottom:0;}

.lb-nav a.lb-next {
    width: 6rem;
    right: 0;
    float: right;
    background: url('../images/icons/icons__arrows/icon__arrow-right-white.svg') center no-repeat rgba(24,29,36,.48);
    background-size: 1.5rem;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    opacity: 0;
    -webkit-transition: opacity 0.6s;
    -moz-transition: opacity 0.6s;
    -o-transition: opacity 0.6s;
    transition: opacity 0.6s;
    border-bottom: 0;
}

.lb-nav a.lb-next:hover {filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100);opacity:1;border-bottom:0;}
.lb-dataContainer {margin:0 auto;padding-top:5px;zoom: 1;width:100%;}
.lb-dataContainer:after {content:"";display:table;clear:both;}
.lb-data {padding:0 4px;color:#ccc;}
.lb-data .lb-details {width:85%;float:left;text-align:left;line-height:1.1em;}
.lb-data .lb-caption {font-size:13px;font-weight:bold;line-height:1em;}
.lb-data .lb-number {display:none !important;clear:left;padding-bottom:1em;font-size:12px;color:#999;}

.lb-data .lb-close {
    display: block;
    float: right;
    width: 2rem;
    height: 2rem;
    margin-top: .25rem;
    text-align: right;
    outline: none;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
    opacity: 0.7;
    -webkit-transition: opacity 0.2s;
    -moz-transition: opacity 0.2s;
    -o-transition: opacity 0.2s;
    transition: opacity 0.2s;
    border-bottom: 0;
}

.lb-data .lb-close:hover {
    cursor: pointer;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    opacity: 1;
    border-bottom: 0;
}

@media (width < 56rem) {
	
    .lb-outerContainer {
        width: calc(100vw - 4rem) !important;
        height: auto !important;
    }

    .lightbox .lb-image {
        width: 100%!important;
        height: auto !important;
    }

}

/*** ------------ end.gallery__img ------------ ***/



/*** ------------ main__wrap ------------ ***/

.main__wrap {
    z-index: 25;
}

* + .main__block {
    margin-top: 4rem;
}

@media (width < 56rem) {
        
    * + .main__block {
        margin-top: 3rem;
    }

}

    /*** ------------ main__card ------------ ***/

.main__card {
    padding: 2rem;
    background: var(--basic-white);
    border-radius: 2rem;
}

.main__card::before {
    content: '';
    position: absolute;
    inset: .5rem;
    border: 1.5px solid var(--basic-gold-pale);
    border-radius: 1.75rem;
    z-index: 1;
    pointer-events: none;
}

* + .main__card,
.main__card + * {
    margin-top: 3rem;
}

.main-card__info {
    flex-wrap: nowrap;
    justify-content: space-between;
}

.main-card__info + .main-card__info {
    padding-top: 1rem;
    margin-top: 1rem;
    border-top: 1.5px solid var(--basic-gold-pale);
}

.main-card__info > div:first-child {
    padding-right: 1rem;
}

.main-card__info > div:last-child {
    padding-left: 1rem;
}

@media (width < 56rem) {
        
    .main-card__info {
        flex-wrap: wrap;
        flex-direction: column;
    }

    .main-card__info > div:first-child,
    .main-card__info > div:last-child {
        padding: 0;
    }

    .main-card__info > div + div {
        margin-top: .75rem;
        font-weight: 500;
    }
    
    .main-card__price-list {
        justify-content: start;
        font-weight: 400;
    }

    .main-card__price-list:first-child {
        margin-top: .5rem;
    }

    .main-card__price-list > div + div {
        margin-left: .25rem;
    }

}

/*** ------------ end.main__wrap ------------ ***/



/*** ------------ __show-content ------------ ***/

.__animation-on.home__page .__show-content {
    opacity: 0;
    -webkit-transform: translateY(2rem);
    transform: translateY(2rem);
    animation: showContent 1.5s ease-in-out;
    animation-delay: 1s;
    animation-fill-mode: forwards;
}

.__animation-on.home__page .__show-content + .__show-content {
    animation-delay: 1.5s;
}

.__animation-on.home__page .__show-content + .__show-content + .__show-content {
    animation-delay: 2s;
}

@keyframes showContent {   
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

/*** ------------ end.__show-content ------------ ***/



/*** ------------ footer ------------ ***/

footer {
    position: relative;
    display: block;
    overflow: hidden;
    background: var(--basic-green);
    z-index: 234;
}

footer > .wrap:nth-child(2) {
    padding: 2rem 0;
    background: var(--basic-green-dark);
}

    /*** ------------ footer__block ------------ ***/

.footer__block {
    z-index: 123;
}

.footer-block__title {
    padding-top: 1.25rem;
    line-height: 1.5rem;
}

.footer__block > .item.__item-wide {
    margin-top: auto;
}

@media (width < 56rem) {

	.footer-block__item.d-flex.jc-space-between {
        flex-direction: column;
        justify-content: start;
    }
    
	.footer-block__item.d-flex.jc-space-between > * + * {
        margin-top: .5rem;
    }

}

    /*** ------------ footer__menu ------------ ***/

* + .footer__menu {
    margin-top: 2rem;
}

.footer__menu li + li {
    margin-top: .5rem;
}

.footer__menu li a {
    color: var(--basic-white);
}

.footer__menu li a:hover {
    color: rgba(255,255,255,.64);
}

@media (width < 56rem) {
            
    * + .footer__menu {
        margin-top: 1.5rem;
    }

}

    /*** ------------ footer__contact ------------ ***/

* + .footer__contact {
    margin-top: 4rem;
}

.footer-contact__item + .footer-contact__item {
    margin-top: 2rem;
}

.footer-contact__item > .__p + .__p {
    margin-top: .25rem !important;
}

@media (width < 56rem) {
        
    * + .footer__contact {
        margin-top: 3rem;
    }

    .footer-contact__item + .footer-contact__item {
        margin-top: 1.5rem;
    }

}

/*** ------------ end.footer ------------ ***/