@charset "UTF-8";

:root {
    --brown-leather: #703d0c;
    --brown-velvet: #2e1308;
    --murrey: #4d060b;
    --deep-black: #000;
    --papyrus-white: #efe1c2;
    --scarlet: #910c1a;
    --add-grey-1: #b1b1b1;
    --add-grey-2: #f4f4f4;
    --add-grey-3: #d9d9d9;
    --light-biege-presentation: #f5efe3;
    --sienna: #7a3315;
    --color-black-solid: #000;
    --color-red-34: #911c1c;
    --color-red-38: #a22020;
    --color-grey-98: #fffaf6;
    --color-grey-92: #f2eae4;
    --color-white-solid: #fff;
    --color-grey-57: #93918f;
}

@font-face {
    font-family: "GTUltra";
    src: url("../fonts/GTUltra-Light.otf") format("opentype");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "GTUltra";
    src: url("../fonts/GTUltra-Regular.otf") format("opentype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

video {
     pointer-events: none !important;
  user-select: none !important;
  -webkit-user-select: none !important;
  -moz-user-select: none !important;
  -ms-user-select: none !important;
  -webkit-touch-callout: none !important;  
  -webkit-user-select: none !important;   
  user-select: none !important;
}

body {
    font-family: "GTUltra", sans-serif;
    background: var(--light-biege-presentation);
}

body * {
    font-family: "GTUltra", sans-serif;
}

.grid {
    margin: 0px auto;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-column-gap: 9px;
}

@media screen and (min-width: 768px) {
    .grid {
        grid-column-gap: 10px;
    }
}

@media screen and (min-width: 1280px) {
    .grid {
        grid-column-gap: 15px;
    }
}

.grid.three>div {
    grid-column: span 4;
    display: flex;
    align-items: center;
}

.grid.three>div:nth-child(2) {
    justify-content: center;
}

.grid.three>div:nth-child(3) {
    justify-content: flex-end;
}

.page-title {
    font-weight: 400;
    font-size: 45px;
    text-transform: uppercase;
    text-align: center;
    color: var(--light-biege-presentation);
    line-height: 110%;
}

@media(min-width: 996px) {
    .page-title {
        line-height: 81%;
        font-size: 95px;
    }
}

.navigation {
    position: absolute;
    z-index: 2;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 550px;
    max-width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.navigation-content-functionality,
.navigation-content {
    background: rgba(245, 239, 227, 0.9);
    width: 100%;
    flex: 0 0 100%;
    height: 0px;
    transition: all 0.5s ease;
    padding: 0px;
    overflow: hidden;
    padding: 0px 10px 0px 30px;
}

.navigation-content.contact {
    text-align: center;
    padding: 20px 20px 20px 20px !important;
}

.navigation-content.contact h3 {
    font-weight: 300;
    font-size: 20px;
    line-height: 89%;
    text-transform: uppercase;
    margin-top: 10px;
}

.navigation-content.contact p {
    font-weight: 300;
    font-size: 15px;
    line-height: 1.5;
    text-align: center;
    margin-bottom: 22px;
}

.navigation-content.contact .social {
    margin-top: 25px;
    display: flex;
    justify-content: center;
    gap: 10px;
    color: var(--brown-velvet);
}

.navigation-content.contact .social a {
    display: block;
}

.navigation-content.contact .social a img {
    width: 25px;
    height: 25px;
}

.navigation-content-functionality.active,
.navigation-content.active {
    padding: 30px 10px 10px 30px;
    height: calc(100vh - 325px);
}

.navigation-content-functionality.active.mini,
.navigation-content.active.mini {
    height: 250px;
}

.navigation-content-functionality.active.contact,
.navigation-content.active.contact {
    height: 275px;
}

.navigation-content-functionality h2,
.navigation-content h2 {
    text-align: center;
    font-weight: 300;
    font-size: 24px;
    margin-bottom: 25px;
    line-height: 110%;
    text-transform: uppercase;
    color: var(--brown-velvet);
    margin-top: 0px;
}

.navigation-content__wrapper {
    height: calc(100% - 50px);
    overflow-y: auto;
    padding-right: 20px;
}

.navigation-content__wrapper p {
    margin-top: 0px;
    font-weight: 300;
    font-size: 15px;
    line-height: 130%;
    padding-bottom: 5px;
    color: var(--brown-velvet);
}

.navigation-content__wrapper ul {
    margin-bottom: 10px;
    list-style: inside;
}

.navigation-content__wrapper ul li {
    margin-top: 0px;
    font-weight: 300;
    font-size: 15px;
    line-height: 130%;
    padding-bottom: 5px;
    color: var(--brown-velvet);
}

.navigation-item {
    background-color: var(--light-biege-presentation);
    flex: 0 0 calc(50% - 2px);
    font-weight: 300;
    font-size: 17px;
    line-height: 110%;
    text-transform: uppercase;
    text-align: center;
    color: var(--brown-velvet);
    padding: 15px 10px;
    background-repeat: no-repeat;
}

.navigation-item.max {
    flex: 0 0 100%;
}

.navigation-item.plass {
    padding-right: 15px;
    position: relative;
}

.navigation-item.plass:after {
    content: " ";
    display: block;
    width: 14px;
    height: 14px;
    position: absolute;
    background-image: url("/wp-content/uploads/2025/10/plass.svg");
    background-size: contain;
    background-repeat: no-repeat;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    transition: all 0.3s ease;
}

.navigation-item.plass.active:after {
    transform: translateY(-50%) rotate(45deg);
}

.navigation-item.arrow-left {
    background-image: url("/wp-content/uploads/2025/10/arrow-left.png");
    background-position: left 10px center;
    padding-left: 15px;
}

.navigation-item.arrow-right {
    background-image: url("/wp-content/uploads/2025/10/arrow-right.png");
    background-position: right 10px center;
    padding-right: 15px;
}

.link-grid {
    height: 100%;
    background-color: white;
    display: grid;
    overflow-x: auto;
    overflow-y: hidden;
    grid-auto-flow: column dense;
    grid-template-rows: repeat(auto-fill, minmax(40vmin, 1fr));
    grid-gap: 2px;
    grid-auto-columns: minmax(33.333333333333336vw, 1fr);
}

.link-grid__item {
    display: block;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-width: calc(33vw - 2px);
}

.link-grid__item-label {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    padding: 18px 10px;
    min-width: 400px;
    max-width: calc(100% - 20px);
    font-size: 18px;
    font-weight: 300;
    text-transform: uppercase;
    display: block;
    background-color: var(--light-biege-presentation);
    text-align: center;
}

.link-grid__item.two {
    grid-column: span 2;
}

.bread {
    font-weight: 300;
    font-size: 14px;
    line-height: 24px;
    text-transform: uppercase;
}

.bread span {
    color: #bd0f19;
}

/* Стилизация скроллбара для всего сайта */
::-webkit-scrollbar {
    background-color: #fff;
    width: 5px;
    height: 8px;
    /* высота горизонтального скролла */
    padding: 0px;
    border-radius: 20px;
}

/* background of the scrollbar except button or resizer */
::-webkit-scrollbar-track {
    background: rgba(46, 19, 8, 0.4);
    width: 100%;
    height: 100%;
    padding: 0px;
    border-radius: 20px;
}

/* scrollbar itself */
::-webkit-scrollbar-thumb {
    background: var(--brown-velvet);
    border-radius: 16px;
    padding: 0px;
    margin: 0px;
    width: 100%;
    height: 100%;
}

/* set button(top and bottom of the scrollbar) */
::-webkit-scrollbar-button {
    display: none;
}

.slider-arrow {
    position: absolute;
    height: 100%;
    top: 0;
    width: 50%;
    cursor: pointer;
}

.slider-arrow img {
    display: none;
    position: absolute;
    top: 50%;
    height: 50px;
    transform: translateY(-50%);
}

.slider-arrow:hover img {
    display: block;
}

.slider-arrow.left {
    left: 0;
}

.slider-arrow.left img {
    transform: translateY(-50%) rotate(180deg);
    left: 30px;
}

.slider-arrow.right {
    right: 0;
}

.slider-arrow.right img {
    right: 30px;
}

.gallery-button {
    position: absolute;
    top: 0px;
    width: 50%;
    height: 50px;
    cursor: pointer;
}

.gallery-button:before {
    content: " ";
    display: block;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
}

.gallery-button.left {
    left: 0px;
}

.gallery-button.left:before {
    background-image: url("/wp-content/uploads/2025/10/arrow-left.png");
    background-position: left 10px center;
}

.gallery-button.right {
    right: 0px;
}

.gallery-button.right:before {
    background-image: url("/wp-content/uploads/2025/10/arrow-right.png");
    background-position: right 10px center;
}

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

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

a {
    color: black;
}

body,
:where(blockquote, figure):where([class]) {
    margin: 0;
}

:where(h1,
    h2,
    h3,
    h4,
    h5,
    h6,
    p,
    ul,
    ol,
    dl):where([class]) {
    margin-block: 0;
}

:where(ul[class]) {
    list-style: none;
}

img {
    display: block;
    max-width: 100%;
}

a {
    text-decoration: none;
}

input,
textarea,
select,
button {
    font: inherit;
}

html {
    height: 100%;
    scroll-behavior: smooth;
}

body {
    min-height: 100%;
    line-height: 1.5;
}

.header {
    border-bottom: 1px solid var(--black);
    height: 45px;
}

.header-logo {
    text-align: center;
}

.header-logo img {
    margin: 0px auto;
}

.header .grid {
    height: 100%;
}

.header-menu {
    display: flex;
}

.header-menu li {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid var(--brown-velvet);
}

.header-menu li:last-child {
    margin-right: 0px;
    padding-right: 0px;
    border-right: none;
}

.header-menu li a {
    font-weight: 300;
    font-size: 15px;
    line-height: 110%;
    text-transform: uppercase;
    color: var(--brown-velvet);
}

.main {
    height: var(--vh);
    position: relative;
    overflow-x: hidden;
    overflow-y: auto;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.main-story {
    cursor: pointer;
    z-index: 2;
    background: none;
    border: none;
    position: absolute;
    top: 30px;
    right: 0px;
    text-align: center;
    color: white;
}

.main-story.p-right {
    right: 30px;
}

button.main-story.hidden {
    display: none;
}

.main-story div {
    color: black;
    background-color: var(--light-biege-presentation);
    border-radius: 50%;
    height: 42px;
    width: 42px;
    font-weight: 400;
    font-size: 24px;
    line-height: 110%;
    text-align: center;
    line-height: 42px;
    margin-bottom: 3px;
}

.main-story__description {
    position: absolute;
    background: rgba(245, 239, 227, 0.9);
    top: 30px;
    right: 0px;
    z-index: 3;
    width: 400px;
    max-width: calc(100%);
    padding: 15px 30px 30px 30px;
    display: none;
}

.main-story__description.active {
    display: block;
}

.main-story__description-close {
    text-align: right;
    margin-bottom: 10px;
    margin-right: -15px;
}

.main-story__description-close svg {
    cursor: pointer;
}

.main-story__description h2 {
    font-weight: 300;
    font-size: 24px;
    margin-bottom: 25px;
    line-height: 110%;
    text-transform: uppercase;
    color: var(--brown-velvet);
}

.main-story__description p {
    font-weight: 300;
    font-size: 15px;
    line-height: 130%;
    padding-bottom: 5px;
    color: var(--brown-velvet);
}

.main-label {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    font-weight: 300;
    font-size: 16px;
    line-height: 110%;
    text-align: center;
    color: var(--light-biege-presentation);
}

.main-video {
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    z-index: -1;
}

.main-wrapper {
    position: relative;
    z-index: 1;
    background-image: url("/wp-content/uploads/2025/10/top-shadow.png");
    background-position: top -40px center;
    background-size: contain;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
}

@media(min-width: 760px) {
    .main-wrapper {
        background-size: auto 300px;
    }
}

.main-content {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    padding: 0px 20px;
    transition: all 0.4s ease;
}

.bg-shadow {
    background-image: url("/wp-content/uploads/2025/10/mid-circle.png");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.top-shadow::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    left: 50%;
    transform: translateX(-50%);
    top: 0px;
    position: absolute;
    background-image: url(/wp-content/uploads/2025/10/top-shadow.png);
    background-size: 850px auto;
    background-position: center -50px;
    background-repeat: no-repeat;
}

.menu {
    position: absolute;
    overflow-x: hidden;
    overflow-y: auto;
    top: 45px;
    left: 0;
    z-index: 9;
    width: 100%;
    height: calc(100vh - 90px);
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    opacity: 0;
    transition: all 0.3s ease;
}

.menu.active {
    display: block;
    opacity: 1;
}

.menu.active .menu-list {
    transform: translate(-50%, -50%) scale(1);
}

.menu-list {
    transition: all 0.3s ease;
    position: absolute;
    width: 450px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    max-height: calc(100vh - 150px);
    max-width: calc(100% - 20px);
}

.menu-list ul li {
    margin-bottom: 5px;
}

.menu-list ul li a {
    padding: 18px 10px;
    font-size: 18px;
    font-weight: 300;
    text-transform: uppercase;
    display: block;
    background-color: var(--background-color);
    text-align: center;
    background: var(--light-biege-presentation);
}

.menu-underline {
    display: flex;
    flex-wrap: wrap;
}

.menu-underline div {
    flex: 0 0 33.3333333333%;
    margin-top: 3px;
}

.menu-underline div:nth-child(1) {
    text-align: left;
}

.menu-underline div:nth-child(2) {
    text-align: center;
}

.menu-underline div:nth-child(3) {
    text-align: right;
}

.menu-underline div a {
    color: white;
    font-weight: 400;
    font-size: 13px;
    line-height: 110%;
    text-transform: uppercase;
    text-align: center;
}

.doc {
    border-top: 1px solid var(--brown-velvet);
    border-bottom: 1px solid var(--brown-velvet);
}

.doc-grid {
    display: grid;
    height: 100%;
    grid-template-columns: repeat(2, 1fr);
}

.doc-grid>a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.doc-grid>a h2 {
    font-weight: 400;
    font-size: 42px;
    line-height: 110%;
    text-transform: uppercase;
    text-align: center;
    color: var(--brown-velvet);
}

.doc-grid>a:nth-child(2n-1) {
    border-right: 1px solid var(--brown-velvet);
}

.doc-item {
    width: 700px;
    max-width: 100%;
    margin: 0px auto;
    padding-top: 35px;
    padding-bottom: 35px;
    padding-left: 15px;
    padding-right: 15px;
    text-align: center;
}

.doc-item h1 {
    font-weight: 300;
    font-size: 34px;
    line-height: 110%;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 27px;
    color: var(--brown-velvet);
}

.doc-item p {
    font-weight: 300;
    font-size: 16px;
    line-height: 130%;
    color: var(--brown-velvet);
}

.doc-item h2 {
    margin-top: 50px;
    margin-bottom: 20px;
    font-weight: 400;
    font-size: 18px;
    line-height: 130%;
    text-transform: uppercase;
    text-align: center;
    color: var(--brown-velvet);
}

.resize-list {
    border-top: 1px solid var(--brown-velvet);
    border-bottom: 1px solid var(--brown-velvet);
    display: flex;
}

.resize-list__item {
    flex: 1;
    background-position: center;
    background-size: auto 100%;
    transition: all 0.7s ease-in-out;
    position: relative;
}

.resize-list__item-video {
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    opacity: 0;
    position: absolute;
    transition: all 0.85s ease-in-out;
}

.resize-list__item>div {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    transform: scale(1);
    background-image: url("/wp-content/uploads/2025/10/list-shadow.png");
    background-position: center;
    background-size: 300px;
    background-repeat: no-repeat;
}

.resize-list__item>div h2 {
    transition: all 0.7s ease-in-out;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 40px;
    line-height: 110%;
    text-transform: uppercase;
    text-align: center;
    color: var(--light-biege-presentation);
}

.resize-list__item:hover {
    flex: 10 !important;
    background: none !important;
}

.resize-list__item:hover video {
    opacity: 1;
}

.resize-list__item:hover>div h2 {
    font-size: 40px !important;
    opacity: 1 !important;
}

.resize-list:has(:hover) h2 {
    opacity: 0;
    font-size: 0px;
}

.merch-grid {
    border-top: 1px solid var(--brown-leather);
    border-bottom: 1px solid var(--brown-leather);
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.merch-grid__image {
    position: relative;
    top: 0;
    left: 0;
    z-index: 1;
}

.merch-grid__image img {
    width: 100%;
    position: sticky;
    top: 0;
}

.merch__product {
    border-bottom: 1px solid var(--brown-leather);
    padding: 22px 35px;
    text-align: center;
    position: relative;
}

.merch__product:last-child {
    border-bottom: none;
}

.merch__product p {
    margin-bottom: 0px;
    margin-top: 25px;
    font-weight: 400;
    font-size: 16px;
    line-height: 110%;
    text-transform: uppercase;
    color: var(--brown-velvet);
}

.merch__product-image {
    height: 250px;
}

.merch__product-image img {
    margin: 0px auto;
    max-height: 100%;
    max-width: 100%;
}

.merch__product:hover .merch__product-popup {
    display: block;
}

.merch__product-popup {
    position: absolute;
    display: none;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--light-biege-presentation);
    border: 1px solid var(--brown-leather);
    width: 400px;
    max-width: 100%;
}

.merch__product-popup__body {
    padding: 20px 15px;
}

.merch__product-popup__body h2 {
    text-align: left;
    margin-top: 0px;
    margin-bottom: 0px;
    font-weight: 400;
    font-size: 22px;
    text-transform: uppercase;
    color: var(--brown-velvet);
}

.merch__product-popup__body p {
    margin-top: 10px;
    text-align: left;
    font-weight: 400;
    font-size: 14px;
}

.merch__product-popup__body p span {
    float: right;
}

.merch__product-popup a {
    display: block;
    width: 100%;
    background: var(--brown-velvet);
    border: none;
    color: var(--light-biege-presentation);
    padding: 10px 8px;
    text-transform: uppercase;
}

.rooms {
    background: #4d070b;
    position: relative;
}

.rooms .sc {
    width: 675px;
    height: 675px;
    margin: 0px auto;
    /* margin-top: -50px; */
    position: relative;
    transform: rotate(-30deg) scale(1.1);
}

.rooms-wrapper {
    position: absolute;
    top: calc(50% - 100px);
    left: 50%;
    transform: translate(-50%, -50%);
}

.rooms .sc_main {
    width: 675px;
}

.rooms .sc_main-desc {
    position: relative;
    transform: rotate(30deg);
    position: absolute;
}

.rooms .sc_main-desc[item="1"] {
    right: -300px;
}

.rooms .sc_main-desc[item="2"] {
    top: 0px;
    left: -170px;
}

.rooms .sc_main-desc[item="3"] {
    bottom: -25px;
    right: 20px;
}

.rooms .sc_main-desc p,
.rooms .sc_main-desc h2 {
    font-weight: 500;
    font-size: 20px;
    line-height: 1.5;
    text-transform: uppercase;
    color: white;
    margin: 0px;
}

.rooms .sc_main-desc p {
    font-size: 16px;
}

.rooms .sc_01 {
    background-color: #a80f1e;
    opacity: 0;
    position: absolute;
    top: 327px;
    left: 517px;
    width: 158px;
    height: 195px;
}

.rooms .sc_01:hover {
    opacity: 0.5;
}

.rooms .sc_02 {
    background-color: #a80f1e;
    opacity: 0;
    position: absolute;
    top: 327px;
    left: 17px;
    width: 500px;
    height: 195px;
}

.rooms .sc_02:hover {
    opacity: 0.5;
}

.rooms .sc_03 {
    background-color: #a80f1e;
    opacity: 0;
    position: absolute;
    top: 1px;
    left: 0px;
    width: 98px;
    height: 135px;
}

.rooms .sc_03:hover {
    opacity: 0.5;
}

.room-info {
    background-color: var(--color-red-38);
    padding-bottom: 15px;
    padding-left: 15px;
    width: 300px;
}

.room-info p {
    margin: 0px;
    color: var(--color-white-solid);
    font-weight: 300;
    font-size: 16px;
    line-height: 120%;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.room-info p span {
    font-size: 12px;
    font-weight: 300;
}

.room-info p:last-child {
    margin-bottom: 0px;
}

.media-item {
    border-bottom: 1px solid var(--brown-velvet);
    border-top: 1px solid var(--brown-velvet);
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
}

.media-item__text {
    grid-column: span 2;
    padding: 70px 50px;
}

.media-item__paragraf {
    margin-top: 0px;
    font-weight: 300;
    font-size: 17px;
    line-height: 1.55;
    color: var(--brown-velvet);
}

.media-item__image {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    grid-column: span 3;
    min-height: calc(100vh - 90px);
}

.media-item__desc {
    grid-column: span 3;
}

.media-item__desc>div {
    width: 600px;
    max-width: 100%;
    padding: 50px 50px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: 100%;
}

.media-item__desc>div h1 {
    margin-top: 0px;
    margin-bottom: 15px;
    font-size: 36px;
    text-transform: uppercase;
    color: var(--brown-velvet);
}

.media-item__desc-under {
    margin-top: auto;
    font-style: italic;
    font-weight: 250;
    font-size: 14px;
    line-height: 130%;
    color: var(--brown-velvet);
}

.media-item__desc h1 {
    font-weight: 300;
    font-size: 42px;
    line-height: 110%;
    text-transform: uppercase;
}

.gallery {
    inset: 0;
    height: 100%;
    width: 100%;
    padding: 3rem 0;
    padding: calc(var(--safe-area-inset-top, 0) + 3rem) 0 calc(var(--safe-area-inset-bottom, 0) + 3rem);
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
}

.gallery__wrapper {
    grid-auto-flow: column dense;
    grid-template-columns: repeat(300, 7.5vh);
    grid-template-columns: repeat(300, calc((100vh - 6rem) / 12));
    grid-template-rows: repeat(12, 1fr);
    display: grid;
    height: 100%;
    grid-gap: 2px;
}

.gallery__wrapper>div {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.gallery__wrapper>div.b1_1 {
    grid-column: span 6;
    grid-row: span 6;
}

.gallery__wrapper>div.b2_1 {
    grid-column: span 4;
    grid-row: span 6;
}

.gallery__wrapper>div.b1_2 {
    grid-column: span 4;
    grid-row: span 6;
}

.gallery-desc {
    padding: 50px;
}

.gallery-desc h1 {
    font-weight: 300;
    font-size: 26px;
    line-height: 110%;
    text-transform: uppercase;
    color: var(--brown-velvet);
    margin-top: 0px;
    margin-bottom: 25px;
}

.gallery-desc p {
    font-family: var(--font-family);
    font-weight: 300;
    font-size: 15px;
    line-height: 130%;
    color: var(--brown-velvet);
    margin-top: 15px;
    margin-bottom: 0px;
}

.gallery__wrapper img,
.gallery__wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

footer {
    height: 45px;
    border-top: 1px solid var(--black);
}

footer .grid {
    height: 100%;
}

/*# sourceMappingURL=style.css.map */

.footer-middle {
    color: var(--color-red-34);
    text-transform: uppercase;
    display: flex;
    gap: 40px;
}

.footer-middle a:hover,
.footer-middle a.active {
    color: var(--color-red-34);
}

.breadcrumbs {
    display: flex;
}

.breadcrumbs-wrapper {
    margin-left: 15px;
    padding-left: 15px;
    border-left: 1px solid var(--brown-velvet);

    overflow-x: auto;
    overflow-y: hidden;
}

.breadcrumbs-wrapper::-webkit-scrollbar {
    display: none;
}

.breadcrumbs li {
    margin-right: 15px;
    padding-right: 15px;
    position: relative;
}

.breadcrumbs li::after {
    content: " ";
    background-image: url('/wp-content/uploads/2025/10/bread-arrow.svg');
    display: block;
    position: absolute;
    width: 7px;
    height: 12px;
    top: calc(50% - 6px);
    right: -3px;
}

.breadcrumbs>li:last-child::after {
    display: none;
}

.breadcrumbs li a {
    font-weight: 300;
    font-size: 13px;
    line-height: 110%;
    text-transform: uppercase;
}

.breadcrumbs>li:last-child a {
    color: #bd0f19;
}

.sticker-list {
    display: flex;
    gap: 5px;
    margin-top: -10px;
    margin-bottom: 20px;
}

.sticker-list div {
    padding: 5px 10px;
    border-radius: 20px;
    font-style: italic;
    font-weight: 300;
    font-size: 12px;
    line-height: 130%;
    text-align: center;
    color: var(--brown-velvet);
    border: 1px solid var(--brown-velvet);
}


.player-btn {
    text-transform: uppercase;
    position: relative;
}

.player-btn img {
    position: relative;
    width: auto;
    top: 5px;
    display: inline-block;
    height: 20px;
}

.player-btn span {
    border-left: 1px solid var(--brown-velvet);
    padding-left: 10px;
    margin-left: 5px;
}

.sticker {
    position: absolute;
    top: 20px;
    left: 0px;
}

@media(max-width: 1600px) {
    .rooms .sc {
        transform: rotate(-30deg) scale(0.8);
    }
}

@media(max-width: 1200px) {
    .link-grid__item {
        min-width: calc(66vw - 2px);
    }

    .link-grid {
        grid-auto-columns: minmax(66.66666666666667vw, 1fr);
    }

    .rooms .sc {
        transform: rotate(-30deg) scale(0.7);
    }

    /* 
    .gallery__wrapper{
        grid-template-columns: repeat(300, calc((100vh - 6rem) / 6));
        grid-template-rows: repeat(6, 1fr);
    } */
}

.mob {
    display: none;
}

.resize-list.video .resize-list__item {
    background-position: center;
    background-size: cover;
}

.wpcf7-response-output {
    display: none !important;
}

.popup-form {
    display: none;
}

.popup-form.active {
    display: block;
}

.wpcf7-not-valid-tip {
    font-size: 0px !important;
}

.wpcf7-form-control-wrap:has(.wpcf7-not-valid-tip[aria-hidden="true"]) input {
    border-color: #bd0f19 !important;
}

.popup-form {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.popup-form>div {
    max-height: 98%;
    overflow-y: auto;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 400px;
    max-width: calc(100% - 20px);
    margin: 0px auto;
}

.popup-form>div>div {
    margin-top: auto;
    margin-bottom: auto;
}

/*  */
.popup-form label {
    flex: 0 0 calc(50% - 3px);
}

.popup-form input[type="text"],
.popup-form input[type="email"] {
    width: 100%;
    border: 1px solid rgba(46, 19, 8, 0.4);
    background: rgba(0, 0, 0, 0);
    font-weight: 400;
    font-size: 16px;
    padding: 10px 10px;
    line-height: 110%;
    color: rgba(46, 19, 8, 0.4);
}

.popup-form__close {
    position: relative;
    text-align: center;
    font-weight: 400;
    font-size: 16px;
    line-height: 110%;
    text-transform: uppercase;
    color: var(--light-biege-presentation);
}

.popup-form__close svg {
    top: 5px;
    position: relative;
    width: 20px;
    height: 20px;
    margin-right: 5px;
}

.popup-form__content {
    margin-top: 10px;
    background: var(--light-biege-presentation);
}

.popup-form__content form {
    padding: 15px 10px 0px 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.popup-form__content form>p {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.popup-form br {
    display: none;
}

.popup-form__content form input[type="submit"] {
    width: calc(100% + 20px);
    margin-left: -10px;
    margin-right: -10px;
    background: #bd0f19;
    padding: 15px 10px;
    border: none;
    font-weight: 400;
    font-size: 18px;
    line-height: 110%;
    text-transform: uppercase;
    text-align: center;
    color: var(--light-biege-presentation);
}

.popup-form__content-image {
    position: relative;
}

.popup-form__content-image h2 {
    position: absolute;
    margin-bottom: 0px;
    bottom: 20px;
    font-weight: 400;
    left: 50%;
    width: 100%;
    transform: translateX(-50%);
    font-size: 42px;
    line-height: 110%;
    text-transform: uppercase;
    text-align: center;
    color: var(--light-biege-presentation);
}

.popup-form p {
    margin: 0px;
}

.wpcf7-spinner {
    display: none !important;
}

.popup-form label:has(input[type="checkbox"]) {
    flex: 0 0 100%;
    font-weight: 400;
    font-size: 14px;
    margin-bottom: 15px;
    margin-top: 10px;
    line-height: 110%;
    display: block;
    text-transform: lowercase;
    color: rgba(46, 19, 8, 0.4);
}

.wpcf7-list-item.first {
    margin-left: 0px !important;
}

video {
    z-index: -1;
}

@media(min-width: 760px) {
    header .grid-item {
        grid-column: span 5 !important;
    }

    header .header-logo {
        grid-column: span 2 !important;
    }
}

@media(max-width: 996px) {
    .gallery__wrapper {
        display: flex;
        flex-wrap: wrap;
        gap: 2px;
        overflow-x: hidden;
        overflow-y: auto;
        /* grid-template-columns: repeat(13, 1fr); */
        /* grid-template-rows: repeat(300, calc((100vh - 6rem) / 12));  */
        /* grid-auto-flow: dense; */
    }

    .gallery__wrapper>div {
        /* min-height: 300px; */
        min-width: calc(33.33333333333333% - 2px);
        flex: 0 0 calc(33.33333333333333% - 2px);
    }

    .gallery-desc {
        flex: 0 0 100% !important;
        min-width: 100% !important;
    }

    .rooms {
        background-image: url('/wp-content/uploads/2025/10/im_007.jpg');
        background-position: center;
        background-size: cover;
    }

    .mob {
        display: block;
    }

    .mob-hide {
        display: none;
    }

    .rooms .navigation {
        max-width: calc(100% - 20px) !important;
    }

    footer .grid.three>div {
        grid-column: span 6 !important;
    }

    .footer-middle {
        display: none !important;
    }

    .rooms .sc {
        display: none;
    }

    .media-item__desc>div {
        padding: 20px;
    }

    .media-item__image,
    .media-item__desc {
        grid-column: span 6;
    }

    .media-item__image {
        min-height: 300px;
    }

    .media-item {
        gap: 10px;
    }

    .media-item__text {
        grid-column: span 6;
        padding: 0px 20px;
    }

    .link-grid__item-label {
        max-width: calc(100% - 20px);
        min-width: 200px;
    }

    .navigation-item {
        font-size: 13px;
        padding: 15px 7px;
    }

    .breadcrumbs,
    .player-btn span {
        display: none;
    }

    .header>div>.grid-item:first-child li {
        border-right: none;
    }

    .header>div>.grid-item:first-child ul>li:nth-child(n+2) {
        display: none;
    }

    .header>div>.grid-item:last-child ul>li:first-child {
        display: none;
    }

    .main-story__description {
        max-height: 400px;
        overflow-y: auto;
    }

    .menu-underline {
        padding-bottom: 30px;
    }

    .merch-grid__image {
        display: none;
    }

    .merch-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .resize-list {
        flex-direction: column;
    }

    .resize-list__item:hover {
        flex: 1 !important;
    }

    .resize-list:has(:hover) h2 {
        opacity: 1;
        font-size: 40px;
    }

    .resize-list__item>div h2 {
        font-size: 26px;
    }
}

@media(max-width: 760px) {
    .gallery__wrapper {
        display: flex;
        flex-wrap: wrap;
        gap: 2px;
        overflow-x: hidden;
        overflow-y: auto;
        /* grid-template-columns: repeat(13, 1fr); */
        /* grid-template-rows: repeat(300, calc((100vh - 6rem) / 12));  */
        /* grid-auto-flow: dense; */
    }

    .gallery__wrapper>div {
        /* min-height: 300px; */
        min-width: calc(50% - 2px);
        flex: 0 0 calc(50% - 2px);
    }

    .link-grid {
        display: flex;
        flex-wrap: nowrap;
        flex-direction: column;
        gap: 2px;
        overflow-x: hidden;
        overflow-y: auto;
    }

    .link-grid a {
        min-height: 275px;
    }

    .link-grid__item-label {
        font-size: 14px;
        padding: 15px;
    }

    .link-grid__item-label span {
        display: none;
    }

    .doc-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .doc-grid>a:first-child {
        border-right: none;
        border-bottom: 1px solid var(--brown-velvet);
    }

    .navigation-content-functionality.active,
    .navigation-content.active {
        height: calc(100vh - 275px);
    }

    .doc {
        padding-left: 0px;
        padding-right: 0px;
    }

    .footer-middle a {
        display: none;
    }

    .contact-page .navigation {
        max-width: calc(100% - 20px);
        margin: 0px auto;
    }

}


.c-label {
    background-color: var(--light-biege-presentation);
    font-weight: 400;
    font-size: 15px;
    padding: 10px 35px;
    line-height: 110%;
    text-transform: uppercase;
    text-align: center;
    color: var(--brown-velvet);
}

.rooms-mob {
    height: 100%;
}

.rooms-navigation,
.rooms-pc {
    display: none;

}

@media(min-width: 996px) {
    .rooms-mob {
        display: none;
    }

    .rooms-navigation {
        display: flex;
    }

    .rooms-pc {
        display: block;
    }
}

@media(max-width: 760px) {
    .mb_order_1 {
        order: 1;
    }

    .mb_order_2 {
        order: 2;
    }

    .mb_order_3 {
        order: 3;
    }

    .mb_order_4 {
        order: 4;
    }

    .mb_order_5 {
        order: 5;
    }

    .mb_order_6 {
        order: 6;
    }

    .mb_order_7 {
        order: 7;
    }

    .mb_order_8 {
        order: 8;
    }

    .mb_order_9 {
        order: 9;
    }

    .mb_order_10 {
        order: 10;
    }

    .mb_order_11 {
        order: 11;
    }

    .mb_order_12 {
        order: 12;
    }

    .mb_order_13 {
        order: 13;
    }

    .mb_order_14 {
        order: 14;
    }

    .mb_order_15 {
        order: 15;
    }

    .mb_order_16 {
        order: 16;
    }

    .mb_order_17 {
        order: 17;
    }

    .mb_order_18 {
        order: 18;
    }

    .mb_order_19 {
        order: 19;
    }

    .mb_order_20 {
        order: 20;
    }
}