/**
Theme Name: Silk City
Theme Description: Silk City wp-theme
*/


/****************************************************************************************************
        FONTS       |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
****************************************************************************************************/
@font-face {
    font-family: "Bree";
    font-style: normal;
    font-display: swap;
    font-weight: 400;
    src: url("./fonts/BreeSerif-Regular.woff2") format("woff2"),
        url("./fonts/BreeSerif-Regular.woff2") format("woff");
}
@font-face {
    font-family: "OpenSans";
    font-style: normal;
    font-display: swap;
    font-weight: 400 600 700;
    src: url("./fonts/OpenSans-Variable.woff2") format("woff2"),
        url("./fonts/OpenSans-Variable.woff") format("woff");
}



/****************************************************************************************************
        VARIABLES       |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
****************************************************************************************************/
:root {
    /* colors */
    --white: #fff;
    --black: #000;
    --dark: rgba(56, 41, 28, 1);
    --beige: rgba(226, 219, 209, 1);
    --light: rgba(249, 248, 246, 1);
    --blue: rgba(4, 201, 253, 1);
    --red: rgba(248, 3, 0, 1);

    /* fonts */
    --font-primary: "Opens", sans-serif;
    --font-secondary: "Bree", sans-serif;

    /* text */
    --text-black: var(--black);
    --text-dark: var(--dark);
    --text-beige: var(--beige);
    --text-light: var(--light);
    --text-white: var(--white);
    --text-blue: var(--blue);
    --text-red: var(--red);

    /* backgrond */
    --background-black: var(--black);
    --background-dark: var(--dark);
    --background-beige: var(--beige);
    --background-light: var(--light);
    --background-white: var(--white);
    --background-blue: var(--blue);
    --background-red: var(--red);
   
    --text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.7);
}



/****************************************************************************************************
        BASIC       |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
****************************************************************************************************/
body {
    min-height: 100vh;
    padding: 0;
    margin: 0;
    font-size: 15px;
    font-weight: 700;
    color: var(--text-white);
    font-family: var(--font-primary);
    background-color: #000;
    line-height: 24px;
}
body * {
    box-sizing: border-box;
    outline: 0;
    max-width: 100%;
}
body.menu--on {
    overflow: hidden;
}
select {
    -webkit-appearance: none;
}
a {
    text-decoration: none;
    transition: all .2s ease;
}
p {
    margin: 0;
    margin-bottom: 15px;
}
img {
    max-width: 100%;
    height: auto;
}
h1, .heading--h1 {
    font-family: var(--font-primary);
    font-size: 45px;
    line-height: 54px;
    font-weight: 700;
    margin: 35px 0;
}
h2, .heading--h2 {
    font-family: var(--font-secondary);
    font-size: 50px;
    line-height: 60px;
    font-weight: 400;
    margin: 30px 0;
}
h3, .heading--h3 {
    font-family: var(--font-secondary);
    font-size: 30px;
    line-height: 36px;
    font-weight: 400;
    margin: 25px 0;
}
h4, .heading--h4 {
    font-family: var(--font-primary);
    font-size: 20px;
    line-height: 32px;
    font-weight: 700;
    margin: 20px 0;
}
h5, .heading--h5 {
    font-family: var(--font-secondary);
    font-size: 22px;
    line-height: 34px;
    font-weight: 400;
    margin: 20px 0;
}
h6, .heading--h6 {
    font-family: var(--font-primary);
    font-size: 18px;
    line-height: 24px;
    font-weight: 800;
    margin: 15px 0;
}
ul, ol {
    margin: 20px 0;
}
ul, ol {
    padding: 0;
}
ul li {
    list-style: none;
}
ul:first-child,
ol:first-child,
h1:first-child, 
h2:first-child, 
h3:first-child, 
h4:first-child, 
h5:first-child, 
h6:first-child {
    margin-top: 0 !important;
}
ul:last-child,
ol:last-child,
ul li:last-child,
p.zero-margin,
p:last-child,
h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child {
    margin-bottom: 0 !important;
}

/* BODY OVERLAY */
.gradient {
    background: linear-gradient(90deg, var(--c1), var(--c2));
    background-size: 100vw 100vh;
    background-position: center top;
    animation: gradientMorph 8s linear infinite alternate;
}
.body__overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}
.body__overlay::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('./images/body-bg.svg');
    background-position: center;
    background-repeat: repeat;
    z-index: 0;
}

@property --c1 {
    syntax: "<color>";
    inherits: false;
    initial-value: #ec008c;
}
@property --c2 {
    syntax: "<color>";
    inherits: false;
    initial-value: #fff200;
}

@keyframes gradientMorph {
    0% {
        --c1: #ec008c;
        --c2: #fff200;
    }
    20% {
        --c1: #41e549;
        --c2: #00d6ff;
    }
    40% {
        --c1: #fff200;
        --c2: #ff6400;
    }
    60% {
        --c1: #ff6400;
        --c2: #41e549;
    }
    80% {
        --c1: #ff0000;
        --c2: #00d6ff;
    }
    100% {
        --c1: #41e549;
        --c2: #ff0000;
    }
}

/* BASIC RESPONSIVE */
@media (max-width: 575px) {
    h1, .heading--h1 {
        font-size: 32px;
        line-height: 44px;
        margin: 35px 0;
    }
    h2, .heading--h2 {
        font-size: 26px;
        line-height: 44px;
        font-weight: 900;
        margin: 30px 0;
    }
    h3, .heading--h3 {
        font-size: 24px;
        line-height: 36px;
        font-weight: 400;
        margin: 25px 0;
    }
    h4, .heading--h4 {
        font-size: 20px;
        line-height: 28px;
        margin: 20px 0;
    }
    h5, .heading--h5 {
        font-size: 16px;
        line-height: 28px;
        margin: 15px 0;
    }
    h6, .heading--h6 {
        font-size: 12px;
        line-height: 20px;
        margin: 10px 0;
    }
}

/* COMMON CLASSES ********************************************************************************/
.body__inner {
    position: relative;
    overflow: hidden;
    z-index: 10;
}
body.is-loading .body__inner {
    opacity: 0.2;
}
.cover {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.color--light {
    color:  var(--text-light);
}
.color--dark {
    color: var(--text-dark);
}
.has--bg {
    padding: 70px 0;
}
.bg--beige {
    background-color: var(--background-beige);
}
.wp-block-image {
    margin: 30px 0;
}
.wp-block-image:first-child {
    margin-top: 0;
}
.wp-block-image:last-child {
    margin-bottom: 0;
}
.disable-margin--top {
    margin-top: 0 !important;
}
.disable-margin--bottom {
    margin-bottom: 0 !important;
}
.disable-margin--top-and-bottom {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}
.visibility--hidden {
    display: none !important;
}
.ajax,
.ajax-url {
    display: none;
}

/* COMMON CLASSES RESPONSIVE */
@media (max-width: 575px) {
    .has--bg {
        padding: 50px 0;
    }
}

/* GRID ********************************************************************************/
.grid {
    display: grid;
    gap: 25px;
}
.grid--2 {
    grid-template-columns: 1fr 1fr;
}
.grid--3 {
    grid-template-columns: 1fr 1fr 1fr;
}
.grid--1-2 {
    grid-template-columns: 1fr 2fr;
}
.grid--2-1 {
    grid-template-columns: 2fr 1fr;
}
.grid--4 {
    grid-template-columns: 1fr 1fr 1fr 1fr;
}

/* GRID RESPONSIVE */
@media only screen and (max-width: 991px) {
    .grid--4 {
        grid-template-columns: 1fr 1fr;
    }
}
@media only screen and (max-width: 767px) {
    .grid--2,
    .grid--3,
    .grid--1-2,
    .grid--2-1,
    .grid--4 {
        grid-template-columns: 1fr;
    }
}
@media only screen and (max-width: 575px) {
    .grid {
        grid-template-columns: 1fr !important;
    }
}

/* DIVIDERS */
.divider {
    display: block;
    position: relative;
    width: 100%;
    height: 16px;
    left: 50%;
    transform: translateX(-50%);
    overflow: hidden;
    z-index: 1;
}
.divider img {
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1157px;
    max-width: 1157px;
    height: 100%;
    z-index: 1;
}
.divider.divider--bottom img {
    transform: translateX(-50%) rotate(180deg);
}


/* LOADING ********************************************************************************/
@keyframes loading {
    from {
      transform: scale(0);
      opacity: 1;
    }
  
    to {
      transform: scale(1);
      opacity: 0;
    }
}
.loading {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 42px;
    height: 42px;
    z-index: 555;
}
body.is-loading .loading {
    display: block;
}
.loading div {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 0.3rem solid #000;
    animation: 1.5s loading infinite;
}
.loading div:nth-child(2) {
    animation-delay: 0.5s;
}

/* BUTTON ********************************************************************************/
.btns {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.btns:not(:first-child) {
    margin-top: 30px;
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    font-size: 22px;
    font-weight: 400;
    line-height: 1;
    font-family: var(--font-secondary);
    text-transform: uppercase;
    color: var(--text-blue);
    background-color: var(--background-black);
    border:  2px solid var(--red);
    border-radius: 8px;
    padding: 2px 15px 5px 15px;
    text-decoration: none;
    text-shadow: var(--text-blue) 1px 0 10px;
    box-shadow: 0px 0px 10px 0px var(--red);
    box-shadow: inset 0px 0px 10px 0px var(--red);
}
.btn:hover {
	border-color: var(--blue);
    color: var(--text-white);
    text-shadow: var(--text-white) 1px 0 10px;
    box-shadow: 0px 0px 10px 0px var(--blue);
    box-shadow: inset 0px 0px 10px 0px var(--blue);
}
.btn:active {
    border-color: var(--white);
    color: var(--text-white);
    text-shadow: var(--text-white) 1px 0 10px;
    box-shadow: 0px 0px 10px 0px var(--white);
    box-shadow: inset 0px 0px 10px 0px var(--white);
}

/* BTN RESPONSIVE */
@media (max-width: 575px) {
    .btn {
        font-size: 20px;
    }
}

/* LINK ********************************************************************************/
.link {
    display: inline-block;
    text-transform: uppercase;
    text-decoration: underline;
    font-size: 11px;
    line-height: 24px;
    font-weight: 600;
    color: var(--text-dark);
    text-decoration-color: var(--text-dark);
    text-decoration-thickness: 1x;
    text-underline-offset: 4px;
    transition: all .2s ease;
}
.link:hover {
    color: var(--text-dark);
    text-underline-offset: 3px;
}

/* CLOSE ********************************************************************************/
.close {
    position: relative;
    width: 40px;
    height: 40px;
    background-image: url('./images/x-nav-mobile.svg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
    z-index: 1;
}

/* ACCORDION ********************************************************************************/
.js-accordion-title {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    cursor: pointer;
    margin: 0;
    padding-right: 30px;
    z-index: 1;
}
.js-accordion-title-status {
    position: absolute;
    right: 2px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    pointer-events: none;
    z-index: 1;
}
.js-accordion-title-status:before,
.js-accordion-title-status:after {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    width: 2px;
    height: 100%;
    background-color: var(--background-dark);
    z-index: 1;
}
.js-accordion-title-status:before {
    transform: translate(-50%, -50%) rotate(90deg);
}
.js-accordion-title-status:after {
    transform: translate(-50%, -50%);
}
.js-accordion.is-expanded .js-accordion-title-status:after {
    opacity: 0;
}
.js-accordion-text {
    display: none;
}
.js-accordion.is-expanded .js-accordion-text {
    display: block;
}

/* SECTION ********************************************************************************/
section {
    position: relative;
    margin: 70px 0;
    z-index: 1;
}
.section__background {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.section__background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.section__background .gradient {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.7;
    z-index: 10;
}
section.text--white {
    color: #fff ;
}
.section__container {
    width: 1200px;
    max-width: 100%;
    padding: 0 50px;
    background-color: #000;
    margin: 0 auto;
}
.section__container.section__container--stretched {
    width: 100%;
    padding: 0 50px;
}
.section__container.section__container--lg {
    width: 1400px;
    padding: 0 50px;
}
.section__title {
    margin-bottom: 50px;
}
.section__title * {
    margin: 0;
}
.section__title *:not(:last-child) {
    margin-bottom: 10px;
}
.section__text a:not(.btn) {
    color: var(--text-red);
    text-decoration: underline;
    text-underline-offset: 2px;
    text-decoration-color: var(--blue);
}
.section__text ul li {
    list-style: disc;
}
.section__text ul li,
.section__text ol li {
    list-style-position: inside;
    padding-left: 2ch;
}

/* SECTION RESPONSIVE */
@media (max-width: 1199px) {
    .section__container {
        width: 992px;
    }
}
@media (max-width: 991px) {
    .section__container {
        width: 768px;
    }
}
@media (max-width: 767px) {
    .section__container,
    .section__container.section__container--stretched,
    .section__container.section__container--lg {
        padding: 0 30px;
    }
}
@media (max-width: 575px) {
    section {
        margin: 50px 0;
    }
    .section__container,
    .section__container.section__container--stretched,
    .section__container.section__container--lg {
        padding: 0 15px;
    }
}

/* SLICK SLIDER ********************************************************************************/
.slick-slider {
    max-width: 100%;
}
.slick-track {
    max-width: unset;
    margin: 0;
}
.slick-dots {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 15px;
    bottom: 40px;
    left: 0;
    width: 100%;
    margin: 0;
    z-index: 1;
}
.slick-dots li {
    position: relative;
    display: block;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: rgba(244, 244, 244, 1);
    border: 2px solid rgba(244, 244, 244, 1);
    cursor: pointer;
    opacity: 1;
    z-index: 1;
}
.slick-dots li.slick-active {
    border-color: #000;
} 
.slick-dots li button {
    display: none;
}
.slick-dots li:only-child {
    display: none;
}
.slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--background-white);
    border: 2px solid var(--black);
    transition: all .2s ease;
    cursor: pointer;
    z-index: 1;
}
.slick-prev {
    left: 30px;
}
.slick-next {
    right: 30px;
}
.slick-arrow:before {
    position: absolute;
    content: "";
    top: 14px;
    width: 0; 
    height: 0; 
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-left: 17px solid var(--black);
    z-index: 1;
}
.slick-prev:before {
    right: 14px;
    transform: rotate(180deg);
}
.slick-next:before {
    transform: rotate(0);
     left: 14px;
}

/* SLICK SLIDER RESPONSIVE */
@media (max-width: 575px) {
    .slick-prev {
        left: 15px;
    }
    .slick-next {
        right: 15px;
    }
}

/* MODAL ********************************************************************************/
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 200;
}
.modal.is-visible {
    display: block;
}
.modal .close {
    position: absolute;
    top: 68px;
    right: 15px;
}
.modal .inner {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 90px;
}
.modal iframe {
    width: 900px;
    max-width: 100%;
    height: 500px;
    max-height: 100%;
}
.modal video {
    width: 900px;
    max-width: 100%;
    height: auto;
    max-height: 100%;
}



/****************************************************************************************************
        HEADER       ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
****************************************************************************************************/
.header {
    position: relative;
	margin-top: -4px;
    z-index: 100;
}
.header__inner {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 201px;
    width: calc(100% + 100px);
    max-width: calc(100% + 100px);
    padding: 0 50px 20px 50px;
    gap: 0 60px;
    z-index: 1;
}
.header__inner:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('./images/navigation/navigation-artwork-transparent.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}
.header__logo {
    position: absolute;
    top: 68px;
    left: 533px;
    display: flex;
    align-items: center;
    width: auto;
    height: 80px;
    flex-shrink: 0;
    z-index: 1;
}
.header__logo img {
    max-width: 100%;
    max-height: 100%;
    height: 100%;
}
.header__logo img:nth-child(2) {
	display: none;
}

/* HEADER RESPONSIVE */

/* min width */
@media (min-width: 992px) {
	.header__logo:hover img:nth-child(1):not(:last-child) {
		display: none;
	}
	.header__logo:hover img:nth-child(2) {
		display: block;
	}
    .header__nav-link {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        z-index: 1;
    }
    .header__nav-link img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
	.header__nav-link img:nth-child(2) {
		display: none;
	}
	.header__nav-link:hover img:nth-child(1):not(:last-child) {
		display: none;
	}
	.header__nav-link:hover img:nth-child(2) {
		display: block;
	}
    .header__nav-link.header__nav-link--menus {
        top: 68px;
        left: 58px;
        width: 94px;
        height: 34px;
    }
    .header__nav-link.header__nav-link--events {
        top: 67px;
        left: 185px;
        width: 95px;
        height: 33px;
    }
    .header__nav-link.header__nav-link--about {
        top: 67px;
        left: 313px;
        width: 74px;
        height: 32px;
    }
    .header__nav-link.header__nav-link--private-parties {
        top: 66px;
        right: 197px;
        width: 192px;
        height: 35px;
    }
    .header__nav-link.header__nav-link--contact {
        top: 68px;
        right: 50px;
        width: 108px;
        height: 31px;
    }
}
@media (min-width: 1200px) {
    .header__nav-link.header__nav-link--menus {
        top: 80px;
        left: 70px;
        width: 113px;
        height: 42px;
    }
    .header__nav-link.header__nav-link--events {
        top: 80px;
        left: 220px;
        width: 121px;
        height: 42px;
    }
    .header__nav-link.header__nav-link--about {
        top: 80px;
        left: 374px;
        width: 91px;
        height: 39px;
    }
    .header__nav-link.header__nav-link--private-parties {
        top: 80px;
        right: 240px;
        width: 230px;
        height: 42px;
    }
    .header__nav-link.header__nav-link--contact {
        top: 80px;
        right: 64px;
        width: 128px;
        height: 37px;
    }
}
/* max width */
@media (max-width: 1199px) {
    .header__inner {
        height: 166px;
    }
    .header__logo {
        top: 59px;
        left: 443px;
        height: 62px;
    }
}
@media (max-width: 991px) {
    .header .section__container {
        background-color: #000;
		padding-bottom: 20px
    }
    .header__inner {
        left: auto;
        transform: none;
        flex-wrap: wrap;
        justify-content: center;
        height: auto;
        padding: 0;
        width: 100%;
        max-width: 100%;
    }
    .header__inner:before {
        background-image: none;
    }
    .header__inner:after {
        position: absolute;
        content: "";
        top: 16px;
        bottom: 16px;
        left: 0;
        right: 0;
        background-color: #000;
        z-index: 0;
    }
    .header__logo {
        position: relative;
        top: auto;
        left: auto;
        transform: translate(0, 0);
        width: 130px;
        height: auto;
		margin: 10px 0;
        z-index: 1;
    }
    .header__menu {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100vh;
        transform: translateY(-100%);
        transition: all .4s ease;
        padding: 100px 15px 15px 15px;
        background-color: var(--background-black);
        z-index: 222;
    }
    body.menu--on .header__menu {
        transform: translateY(0);
    }
    .header__menu .close {
        position: absolute;
        top: 30px;
        right: 50px;
    }
    .header__menu__scroller {
        overflow: hidden;
        overflow-y: auto;
        max-height: 100%;
    }
    .header__menu nav {}
    .header__menu nav ul {
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px 16px;
    }
    .header__menu nav ul > img {
        width: 20px;
        height: auto;
    }
    .header__menu nav ul li {
        display: inline-block;
        max-width: 100%;
    }
    
    .header__menu nav ul li .header__nav-link {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .header__menu nav ul li .header__nav-link img {
        height: 12.7vw;
        width: auto;
        max-width: 100%;
        max-height: 100%;
    }
    .header__nav-link.header__nav-link--private-parties img {
        height: 48px;
    }
}
@media (max-width: 767px) {
   
}

/* HAMBURGER ********************************************************************************/
.hamburger {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    width: 40px;
    height: 28px;
    cursor: pointer;
    z-index: 1;
}
.hamburger::before {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: calc(100% - 8px);
    border-top: 5px solid var(--white);
    border-bottom: 5px solid var(--white);
    pointer-events: none;
    z-index: 1;
}
.hamburger::after {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 5px;
    background-color: var(--white);
    pointer-events: none;
    z-index: 1;
}



/****************************************************************************************************
        PAGEBUILDER       |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
****************************************************************************************************/


/* SECTION TITLE ********************************************************************************/
.section_title .section__container {
    padding-top: 20px;
    padding-bottom: 20px;
    background-color: var(--background-black);
}
.section_title .section__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--background-black);
    padding: 30px 0;
}
.section_title__text {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0 30px;
}
.section_title__text img {
    width: auto;
    height: 38px;
}
.section_title__text h1 {
    position: relative;
    display: inline-block;
    font-family: var(--font-secondary);
    font-size: 40px;
    line-height: 1;
    color: var(--text-white);
    margin: 0;
    margin-bottom: 4px;
    z-index: 1;
}
.section_title__text h1::before,
.section_title__text h1::after {
    position: absolute;
    content: "";
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}
.section_title__text h1::before {
    left: 0;
}
.section_title__text h1::after {
    right: 0;
}
.section_title__image {
    height: 56px;
    width: auto;
    max-height: 100%;
    max-width: 100%;
}

/* PAGE TITLE RESPONSIVE */
@media (max-width: 767px) {

}

@media (max-width: 575px) {
    
}


/* HERO ********************************************************************************/
.hero .section__inner {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% + 100px);
    max-width: calc(100% + 100px);
    z-index: 1;
}
.hero__item {
    min-height: 600px;
}

/* HERO RESPONSIVE */
@media (max-width: 1199px) {
    .hero__item {
        min-height: 500px;
    }
}
@media (max-width: 991px) {
    .hero__item {
        min-height: 400px;
    }
}
@media (max-width: 767px) {
    .hero .section__inner {
        width: calc(100% + 60px);
        max-width: calc(100% + 60px);
    }
}
@media (max-width: 575px) {
    .hero .section__inner {
        width: calc(100% + 30px);
        max-width: calc(100% + 30px);
    }
}


/* BANNER ********************************************************************************/
.banner .section__inner {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% + 100px);
    max-width: calc(100% + 100px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}
.banner .section__content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 820px;
    min-height: 600px;
    color: var(--text-white);
    padding: 60px 15px;
    z-index: 1;
}
.banner .section__content h2 {
    font-size: 45px;
    line-height: 54px;
    font-weight: 700;
    font-family: var(--font-primary);
    text-transform: uppercase;
}

/* BANNER RESPONSIVE */
@media (max-width: 767px) {
    .banner .section__inner {
        width: calc(100% + 60px);
        max-width: calc(100% + 60px);
    }
}
@media (max-width: 575px) {
    .banner .section__inner {
        width: calc(100% + 30px);
        max-width: calc(100% + 30px);
    }
    .banner .section__content {
        min-height: 500px;
    }
}
@media (max-width: 359px) {
    .banner .section__content h2 {
        font-size: 36px;
        line-height: 40px;
    }
    .banner .section__content {
        min-height: 400px;
    }
}


/* ANNOTATION ********************************************************************************/
.annotation {
    background-color: var(--background-beige);
    padding: 90px 0;
}
.annotation .section__inner {
    position: relative;
    display: flex;
    justify-content: flex-end;
    z-index: 1;
}
.annotation .section__inner::before {
    position: absolute;
    content: "";
    left: 0;
    bottom: 60px;
    transform: translateY(100%);
    width: 143px;
    height: 184px;
    background-image: url('./images/partum-interiors-logo-monogram-footer-desktop.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    z-index: 1;
}
.annotation .section__content {
    width: 66.6666%;
}
.annotation .section__content h6 {
    position: relative;
    display: block;
    margin-bottom: 20px;
    z-index: 1;
}
.annotation .section__content small {
    display: block;
}
.annotation .section__content small:not(:last-child) {
    margin-bottom: 25px;
}
.annotation .section__text {
    font-size: 20px;
    line-height: 34px;
    font-weight: 700;
}
.annotation .btn:not(:first-child) {
    margin-top: 40px;
}

/* ANNOTATION RESPONSIVE */
@media (max-width: 767px) {
    .annotation .section__content {
        width: 100%;
    }
    .annotation .section__inner::before {
        left: auto;
        right: 0;
        width: 90px;
        height: 114px;
        bottom: 0;
    }
}
@media (max-width: 575px) {
    .annotation {
        padding: 50px 0;
    }
    .annotation .section__inner::before {
        width: 54px;
        height: 70px;
    }
}


/* CTA ********************************************************************************/
.page-section--cta {
    z-index: 0;
}
.cta .divider {
    background-color: var(--background-white);
}
.cta .divider--top {
    margin-bottom: 60px;
}
.cta .divider--bottom {
    margin-top: 60px;
}
.cta.has--bg {
    padding: 0;
}
.cta .section__container {
    background-color: transparent;
}
.cta .section__inner {
    position: relative;
    z-index: 1;
}
.cta .section__background {
    background-color: var(--background-black);
}
.cta .section__background img {
    opacity: 0.4;
}
.cta .section__inner:before {
    position: absolute;
    content: "";
    width: 25%;
    height: 100%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.9);
    box-shadow: 0 0 120px 140px rgba(0, 0, 0, 0.9);
    z-index: -1;
}
.cta .section__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 820px;
    gap: 40px 0;
    margin: 0 auto;
}
.cta.has--bg .section__content {
    min-height: 550px;
}
.cta__prefix {
    position: relative;
    display: block;
    color: var(--text-red);
    padding: 0 20px;
    margin: 0;
    z-index: 1;
}
.cta__prefix::before,
.cta__prefix::after {
    position: absolute;
    content: "";
    top: 50%;
    transform: translateY(-50%);
    width: 7px;
    height: 7px;
    border-radius: 7px;
    background-color: #00d6ff;
    z-index: 1;
}
.cta__prefix::before {
    left: 0;
}
.cta__prefix::after {
    right: 0;
}
.cta__title {
    color: var(--text-blue);
    text-align: center;
    margin: 0;
}
.cta__image {
    height: 84px;
    width: auto;
    max-height: 100%;
    max-width: 100%;
}
.cta .section__text {
    display: block;
    color: var(--text-white);
    text-align: center;
    font-size: 20px;
    line-height: 30px;
    font-weight: 700;
}
.cta .section__content .btn {
    margin: 0;
}

/* CTA RESPONSIVE */
@media (max-width: 575px) {
    .cta__title {
        font-size: 40px;
        line-height: 48px;
    }
}


/* CTA CARDS ********************************************************************************/
.cta_cards .section__container {
    padding-top: 20px;
    padding-bottom: 20px;
    background-color: var(--background-black);
}
.cta_cards__items {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    border-top: 6px solid var(--background-black);
    border-bottom: 6px solid var(--background-black);
    z-index: 1;
}
.cta_cards__items:before {
    position: absolute;
    content: "";
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    background-image: url('./images/dividers/divider-vertical-desktop-part.svg');
    background-size: contain;
    background-position: center top;
    background-repeat: repeat-y;
    z-index: 1;
}
.cta_cards__item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 280px;
    background-color: var(--background-black);
    text-align: center;
    padding: 30px;
}
.cta_cards__item h3 {
    position: relative;
    display: inline-block;
    color: var(--text-red);
	transition: all .4s ease;
    padding: 0 20px;
    z-index: 1;
}
.cta_cards__item h3:before,
.cta_cards__item h3:after {
    position: absolute;
    content: "";
    top: 50%;
    transform: translateY(-50%);
    width: 7px;
    height: 7px;
    border-radius: 7px;
    background-color: var(--background-blue);
    z-index: 1;
}
.cta_cards__item h3:before {
    left: 0;
}
.cta_cards__item h3:after {
    right: 0;
}
.cta_cards__item__icon {
	position: relative;
    width: 400px;
    height: 0;
	padding-bottom: 20%;
	z-index: 1;
}
.cta_cards__item__icon img {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: inline-flex;
	width: 100%;
	height: 100%;
	object-fit: contain;
	opacity: 0;
	transition: all .2s ease;
	z-index: 1;
}
.cta_cards__item__icon img:nth-child(1) {
	opacity: 1;
}
.cta_cards__item:hover .cta_cards__item__icon img:nth-child(1) {
	opacity: 0;
}
.cta_cards__item:hover .cta_cards__item__icon img:nth-child(2) {
	opacity: 1;
}

/* CTA CARDS RESPONSIVE */
@media (max-width: 991px) {
    .cta_cards__item h3 {
        font-size: 24px;
        line-height: 30px;
    }
	.cta_cards__item__icon {
		width: 269px;
	}
}
@media (max-width: 767px) {
    .cta_cards__items {
        grid-template-columns: 1fr;
    }
    .cta_cards__items::before {
        transform: translateX(-50%) rotate(-90deg);
    }
    .cta_cards__item h3 {
        font-size: 24px;
    }
}


/* GALLERY ********************************************************************************/
.gallery__items {
    display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.gallery__item {
    position: relative;
    z-index: 1;
}
.gallery__item img {
    display: block;
    width: 100%;
}

/* GALLERY RESPONSIVE */
@media (max-width: 1199px) {}
@media (max-width: 767px) {
    .gallery__item {
        width: 100% !important;
    }
}
@media (max-width: 575px) {}


/* TEXT ********************************************************************************/
.page-section--text {
    z-index: 0;
}
.text .section__container {
    background-color: transparent;
}
.text .section__inner {
    position: relative;
    z-index: 1;
}
.text .section__inner:before {
    position: absolute;
    content: "";
    width: 25%;
    height: 100%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.9);
    box-shadow: 0 0 120px 140px rgba(0, 0, 0, 0.9);
    z-index: -1;
}
.text .section__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
}
.text:not(.is--stretched) .section__content {
	width: 820px;
}
.text .section__content .section__text iframe {
	width: 100%;
	filter: invert(1) hue-rotate(180deg);
}
.text .section__content .section__text {
	width: 100%;
}
.text h3 {
    position: relative;
    display: block;
    color: var(--text-red);
    text-align: center;
    padding: 0 20px;
    z-index: 1;
}
.text h3::before,
.text h3::after {
    position: absolute;
    content: "";
    top: 50%;
    transform: translateY(-50%);
    width: 7px;
    height: 7px;
    border-radius: 7px;
    background-color: #00d6ff;
    z-index: 1;
}
.text h3::before {
    left: 0;
}
.text h3::after {
    right: 0;
}
.text h3:not(:last-child) {
    margin-bottom: 35px;
}
.text .section__text {
    display: block;
    color: var(--text-white);
    font-size: 20px;
    line-height: 30px;
    font-weight: 700;
}
.text .section__content .btn:not(:first-child) {
    margin-top: 25px;
}

@media (max-width: 767px) {
	.text .section__text {
		font-size: 17px;
  		line-height: 27px;
	}
}


/* IMAGE ********************************************************************************/
.image .section__content {
    display: flex;
}

/* TEXT AND IMAGE ********************************************************************************/
.text_and_image .section__container {
    padding-top: 50px;
    padding-bottom: 50px;
    background-color: var(--background-black);
}
.text_and_image .section__inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 60px;
}
.text_and_image.order--reversed .section__inner {
    flex-direction: row-reverse;
}
.text_and_image__image  {
    width: 500px;
    flex-shrink: 0;
}
.text_and_image .section__content {
    flex-grow: 1;
}
.text_and_image__title {
    font-size: 22px;
    line-height: 34px;
    color: var(--text-blue);
}
.text_and_image__text {
    font-size: 15px;
    line-height: 24px;
    font-weight: 700;
}

/* TEXT AND IMAGE RESPONSIVE */
@media (max-width: 1199px) {
    .text_and_image__image {
        width: 430px;
    }
}
@media (max-width: 991px) {
    .text_and_image .section__inner,
    .text_and_image.order--reversed .section__inner {
        flex-direction: column;
        align-items: center;
    }
    .text_and_image__image {
        width: 100%;
    }
}
@media (max-width: 575px) {
    .text_and_image .section__inner {
        gap: 30px;
    }
}


/* RESERVATIONS ********************************************************************************/
.reservations .section__inner {
    background-color: var(--background-black);
}
.reservations__title {
	position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--background-red);
    padding: 40px;
	z-index: 1;
}
.reservations__title img {
    width: 400px;
    height: auto;
}
.reservations__title a {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 10
}
.reservations__links {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 10px;
    border-top: 6px solid var(--background-black);
    border-bottom: 6px solid var(--background-black);
    z-index: 1;
}
.reservations__links:before {
    position: absolute;
    content: "";
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    background-image: url('./images/dividers/divider-vertical-desktop-part.svg');
    background-size: contain;
    background-position: center top;
    background-repeat: repeat-y;
    z-index: 1;
}
.reservations__links a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    font-size: 50px;
    line-height: 1;
    font-weight: 400;
    font-family: var(--font-secondary);
    color: var(--text-blue);
    text-align: center;
    text-transform: uppercase;
    background-color: var(--background-black);
    padding: 50px 25px;
}
.reservations__links a:hover {
	color: var(--text-white);
}
.reservations__links a img {
    width: 15px;
    height: auto;
}

/* RESERVATIONS RESPONSIVE */
@media (max-width: 991px) {
    .reservations__links a {
        font-size: 40px;
    }
    .reservations__links a img {
        display: none;
    }
    .header__menu .reservations:not(:first-child) {
        margin-top: 40px;
    }
    .header__menu .reservations__title {
        padding: 20px 40px;
    }
    .header__menu .reservations__links a {
        font-size: 7vw;
        padding: 16px 25px;
    }
    .header__menu .reservations__links .divider {
        grid-column: 1 / -1;
    }
}
@media (max-width: 767px) {
    .header__menu .close {
        right: 30px;
    }
}
@media (max-width: 575px) {
    .header__menu .close {
        right: 15px;
    }
    .reservations__title {
        padding: 20px 40px;
    }
    .reservations__links a {
        font-size: 24px;
        padding: 16px 25px;
    }
	.header__menu .reservations__links a {
        font-size: 24px;
    }
}
@media (max-width: 359px) {
    .reservations__links a, 
    .header__menu .reservations__links a {
        padding: 15px;
    }
}

/* CONTACTS ********************************************************************************/
.contacts .section__container {
    padding-top: 20px;
    background-color: var(--background-black);
}
.contacts__items {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0 10px;
    border-top: 6px solid var(--background-black);
    border-bottom: 6px solid var(--background-black);
    z-index: 1;
}
.contacts__item {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: center;
    background-color: #000;
    padding: 23px 0;
    z-index: 1;
}
.contacts__item:not(:first-child):before {
    position: absolute;
    content: "";
    top: 0;
    bottom: 0;
    left: 0;
    transform: translateX(-100%);
    width: 10px;
    background-image: url('./images/dividers/divider-vertical-desktop-part.svg');
    background-size: contain;
    background-position: center top;
    background-repeat: repeat-y;
    z-index: 1;
}
.contacts__item h6:not(:last-child) {
    position: relative;
    padding-bottom: 12px;
    margin: 0;
    z-index: 1;
}
.contacts__item h6:not(:last-child):before {
    position: absolute;
    content: "";
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 12px;
    height: 1px;
    background-color: rgba(153, 153, 153, 1);
    z-index: 1;
}
.contacts__item a {
    color: var(--text-red);
    font-weight: 700;
    text-decoration: underline;
}

/* CONTACTS RESPONSIVE */
@media (max-width: 991px) {
    .contacts__items {
        grid-template-columns: 1fr;
    }
}

/* PRESS ********************************************************************************/
.press__items {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    background-color: var(--background-black);
    padding: 40px 0;
}
.press__item {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(153, 153, 153, 1);
}
.press__item:hover {
    border-color: var(--blue);
}
.press__item__poster {
    border: 1px solid rgba(153, 153, 153, 1);
}
.press__item__poster__image {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    z-index: 1;
}
.press__item__poster__image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: unset;
    object-fit: cover;
}
.press__item__title {
    font-size: 18px;
    font-weight: 800;
    line-height: 24px;
    font-family: var(--font-primary);
    text-transform: uppercase;
    color: var(--text-red);
    margin: 0;
    padding: 0 15px;
}
.press__item:hover .press__item__title {
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 5px;
}

/* PRESS RESPONSIVE */
@media (max-width: 991px) {
    .press__items {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .press__item__title {
        font-size: 24px;
        line-height: 32px;
    }
}
@media (max-width: 575px) {
    .press__item__title {
        font-size: 20px;
        line-height: 26px;
        padding: 0;
    }
}


/* EVENTS ********************************************************************************/
.events .section__container {
    padding-top: 30px;
    padding-bottom: 30px;
    background-color: var(--background-black);
}
.events__items {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px 20px;
}
.events__item {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(153, 153, 153, 1);
}
.events__item:hover {
    border-color: var(--blue);
}
.events__item__poster {
    border: 1px solid rgba(153, 153, 153, 1);
}
.events__item__poster__image {
    position: relative;
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
    z-index: 1;
}
.events__item__poster__image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: unset;
    object-fit: cover;
}
.events__item__data {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: 1px solid rgba(153, 153, 153, 1);
    border-bottom: none;
}
.events__item__data__item {
    display: flex;
    align-items: center;
    gap: 4px;
    min-height: 44px;
    text-transform: uppercase;
}
.events__item__data__item:nth-child(2n + 2) {
    border-left: 1px solid rgba(153, 153, 153, 1);
}
.events__item__date {
    font-size: 18px;
    line-height: 1;
    font-weight: 800;
    color: var(--text-white);
    padding: 12px 20px;
}
.events__item__type {
    text-align: center;
    justify-content: center;
    font-size: 22px;
    line-height: 1;
    font-weight: 400;
    font-family: var(--font-secondary);
    color: var(--background-blue);
    padding: 9px 20px;
}
.events__item__title {
    font-size: 18px;
    font-weight: 800;
    line-height: 24px;
    font-family: var(--font-primary);
    text-transform: uppercase;
    color: var(--text-red);
    margin: 0;
    padding: 0 15px;
}
.events__item:hover .events__item__title {
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 5px;
}

/* EVENTS RESPONSIVE */
@media (max-width: 1199px) {
    .events__item__title {
        font-size: 16px;
    }
    .events__item__date {
        font-size: 14px;
    }
}
@media (max-width: 991px) {
    .events__items {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 767px) {
    .events__item__title {
        padding: 0;
    }
}
@media (max-width: 575px) {
    .events__items {
        grid-template-columns: 1fr;
    }
}


/* MENUS ********************************************************************************/
.page-section--menus {
    z-index: 0;
}
.menus .section__container {
    background-color: transparent;
}
.menus .section__inner {
    position: relative;
    z-index: 1;
}
.menus .section__inner:before {
    position: absolute;
    content: "";
    width: 25%;
    height: 100%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.9);
    box-shadow: 0 0 120px 140px rgba(0, 0, 0, 0.9);
    z-index: -1;
}
.menus__items {
    display: grid;
    grid-template-columns:  1fr 1fr 1fr 1fr;
    gap: 20px;
}
.menus__item {
    border-bottom: 1px solid rgba(153, 153, 153, 1);
    background-color: var(--background-black);
}
.menus__item:hover {
    border-color: var(--blue);
}
.menus__item__logo {
    position: relative;
    width: 100%;
    height: 200px;
    border: 1px solid rgba(153, 153, 153, 1);
    border-bottom: none;
    z-index: 1;
}
.menus__item:hover .menus__item__logo {
    border-color: var(--blue);
}
.menus__item__logo img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 190px;
    height: auto;
    opacity: 1;
    transition: all .4s ease;
    z-index: 1;
}
.menus__item__logo img:nth-child(2) {
    opacity: 0;
}
.menus__item:hover .menus__item__logo img:not(:only-child) {
    opacity: 0;
}
.menus__item:hover .menus__item__logo img:nth-child(2) {
    opacity: 1;
}
.menus__item__text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 98px;
    color: var(--text-white);
    text-align: center;
    font-weight: 700;
    font-size: 15px;
    line-height: 24px;
    padding: 15px;
    border-top: 1px solid rgba(153, 153, 153, 1);
}
.menus__item:hover .menus__item__text {
    border-color: var(--blue);
}
.menus__item__text p {
    margin: 0;
}

/* MENUS RESPONSIVE */
@media (max-width: 1199px) {
    .menus__item__logo img {
        width: 166px;
    }
}
@media (max-width: 991px) {
    .menus__items {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 575px) {
    .menus__items {
        grid-template-columns: 1fr;
    }
}


/* HOURS ********************************************************************************/
.hours .section__container {
    background-color: var(--background-black);
    padding-top: 20px;
    padding-bottom: 20px;
}
.hours .section__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.hours .section_title__text {
    background-color: var(--background-black);
    padding: 30px 0;
}
.hours .section_title__text h1 {
    font-size: 30px;
    line-height: 36px;
    color: var(--text-red);
    padding: 0 20px;
}
.hours .section_title__text h1:before,
.hours .section_title__text h1:after {
    background-image: none;
    width: 7px;
    height: 7px;
    border-radius: 7px;
    background-color: #00d6ff;
}
.hours__columns {
    display: flex;
    gap: 0 10px;
    border-top: 6px solid var(--background-black);
    border-bottom: 6px solid var(--background-black);
}
.hours__column {
    position: relative;
    flex-grow: 1;
    flex-basis: 1;
    text-align: center;
    padding: 35px 0;
    background-color: var(--background-black);
    z-index: 1;
}
.hours__column:not(:first-child):before {
    position: absolute;
    content: "";
    top: 0;
    bottom: 0;
    left: 0;
    transform: translateX(-100%);
    width: 10px;
    background-image: url('./images/dividers/divider-vertical-desktop-part.svg');
    background-size: contain;
    background-position: center top;
    background-repeat: repeat-y;
    z-index: 1;
}
.hours__column__title {
    color: var(--text-blue);
    font-size: 22px;
    line-height: 34px;
    margin: 0;
}
.hours__column__item:first-child:not(:only-child) {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 15px;
    z-index: 1;
}
.hours__column__item:first-child:not(:only-child):before {
    position: absolute;
    content: "";
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 14px;
    height: 1px;
    background-color: rgba(153, 153, 153, 1);
    z-index: 1;
}
.hours__column__text {
    color: rgba(153, 153, 153, 1);
    font-size: 15px;
    line-height: 24px;
    font-weight: 700;
}
.hours__column__text p {
    margin: 0;
}
.hours__column__item:only-child .hours__column__text {
    position: relative;
    padding: 15px 0;
    margin-top: 15px;
    z-index: 1;
}
.hours__column__item:only-child .hours__column__text:before,
.hours__column__item:only-child .hours__column__text:after {
    position: absolute;
    content: "";
    left: 50%;
    transform: translateX(-50%);
    width: 14px;
    height: 1px;
    background-color: rgba(153, 153, 153, 1);
    z-index: 1;
}
.hours__column__item:only-child .hours__column__text:before {
    top: 0;
}
.hours__column__item:only-child .hours__column__text:after {
    bottom: 0;
}

/* HOURS RESPONSIVE */
@media (max-width: 767px) {
    .hours__column__title {
        font-size: 20px;
    }
}
@media (max-width: 575px) {
    .hours__columns {
        flex-direction: column;
        gap: 10px;
    }
    .hours__column:not(:first-child)::before {
        top: 0;
        left: 0;
        transform: translate(0, 0) rotate(-90deg);
        transform-origin: top left;
        height: 900px;
        background-repeat: repeat;
    }
}

/* SPACES ********************************************************************************/
.spaces .section__container {
    padding-top: 20px;
    padding-bottom: 20px;
    background-color: var(--background-black);
}
.spaces .section__inner {
    background-color: var(--background-black);
}
.spaces__items {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}
.spaces__item {
    display: flex;
    flex-direction: column;
}
.spaces__item__image {
    width: 100%;
    height: 430px;
    border: 1px solid rgba(153, 153, 153, 1);
}
a.spaces__item:hover .spaces__item__image {
    border-color: var(--blue);
}
.spaces__item__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.spaces__item__title {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-transform: uppercase;
    color: var(--text-red);
    font-size: 30px;
    line-height: 36px;
    padding: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(153, 153, 153, 1);
    margin: 0;
}
a.spaces__item:hover .spaces__item__title {
    border-color: var(--blue);
}
.spaces__item__title span {
    display: inline-block;
    position: relative;
    padding: 0 20px;
    z-index: 1;
}
.spaces__item__title span:before,
.spaces__item__title span:after {
    position: absolute;
    content: "";
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--background-blue);
    z-index: 1;
}
.spaces__item__title span:before {
    left: 0;
}
.spaces__item__title span:after {
    right: 0;
}

/* SPACES RESPONSIVE */
@media (max-width: 991px) {
    .spaces__items {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}


/* SIGN-UP CTA ********************************************************************************/
.sign-up_cta .section__container {
    padding-top: 20px;
    padding-bottom: 20px;
    background-color: var(--background-black);
}
.sign-up_cta .section__content {
    display: flex;
    align-items: center;
    background-color: var(--background-black);
}
.sign-up_cta .gradient .section__content {
    padding-top: 20px;
}
.sign-up_cta__column {
    width: 100%;
    text-align: center;
}
.sign-up_cta__column:nth-child(2):not(:first-child):not(:last-child) {
    position: relative;
    padding: 0 20px;
    z-index: 1;
}
.sign-up_cta__column:nth-child(2):not(:first-child):not(:last-child):before,
.sign-up_cta__column:nth-child(2):not(:first-child):not(:last-child):after {
    position: absolute;
    content: "";
    top: 50%;
    width: 30px;
    height: 30px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}
.sign-up_cta__column:nth-child(2):not(:first-child):not(:last-child):before {
    background-image: url('./images/stars/star-left-mailing-list.svg');
    left: 0;
    transform: translate(-50%, -50%);
}
.sign-up_cta__column:nth-child(2):not(:first-child):not(:last-child):after {
    background-image: url('./images/stars/star-right-mailing-list.svg');
    right: 0;
    transform: translate(50%, -50%);
}

/* SIGN UP CTA RESPONSIVE */
@media (max-width: 1199px) {
    .sign-up_cta__column h4 {
        font-size: 18px;
        line-height: 24px;
    }
}
@media (max-width: 991px) {
    .sign-up_cta__column:nth-child(2):not(:first-child):not(:last-child)::before, .sign-up_cta__column:nth-child(2):not(:first-child):not(:last-child)::after {
        display: none;
    }
}
@media (max-width: 767px) {
    .sign-up_cta .section__content {
        flex-direction: column;
        gap: 20px;
    }
}


/* CONTACT ********************************************************************************/
.page-section--text {
    z-index: 0;
}
.form .section__container {
    background-color: transparent;
}
.form .section__inner {
    position: relative;
    z-index: 1;
}
.form .section__inner:before {
    position: absolute;
    content: "";
    width: 45%;
    height: 100%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.9);
    box-shadow: 0 0 120px 140px rgba(0, 0, 0, 0.9);
    z-index: -1;
}
.form .section__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 540px;
    margin: 0 auto;
}
.form h3 {
    position: relative;
    display: block;
    color: var(--text-red);
    text-align: center;
    padding: 0 20px;
    z-index: 1;
}
.form h3::before,
.form h3::after {
    position: absolute;
    content: "";
    top: 50%;
    transform: translateY(-50%);
    width: 7px;
    height: 7px;
    border-radius: 7px;
    background-color: #00d6ff;
    z-index: 1;
}
.form h3::before {
    left: 0;
}
.form h3::after {
    right: 0;
}
.form h3:not(:last-child) {
    margin-bottom: 35px;
}
.form .section__text {
    display: block;
    color: var(--text-white);
    font-size: 20px;
    line-height: 30px;
    font-weight: 700;
}
.form .section__content .btn:not(:first-child) {
    margin-top: 25px;
}

/* NF FORM ********************************************************************************/
.nf-form-cont:not(:first-child) {
    margin-top: 50px;
}
.nf-form-wrap form {
    font-size: 15px;
    line-height: 24px;
    font-weight: 700;
    color: var(--text-white) !important;
	font-family: var(--font-basic) !important;
}
.nf-form-wrap form .nf-before-form-content {
    display: none;
}
.nf-form-wrap form label,
.nf-form-wrap form nf-field .nf-field-label {
    text-transform: uppercase;
    color: var(--text-white);
}
.nf-form-wrap form nf-fields-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 15px 20px;
}
.nf-form-wrap form nf-fields-wrap nf-field {
    width: 100%;
}
.nf-form-wrap form nf-fields-wrap nf-field .nf-field-container {
    margin: 0;
}
.nf-form-wrap form nf-fields-wrap nf-field .ninja-forms-req-symbol {
    display: inline-block;
    width: 8px;
    height: 8px;
    color: transparent;
    background-image: url('./images/stars/star-right-blue-subhead.svg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
.nf-form-wrap form nf-fields-wrap nf-field:has(.half) {
    width: calc(50% - 10px);
}
.nf-form-wrap form nf-fields-wrap nf-field input,
.nf-form-wrap form nf-fields-wrap nf-field select {
    height: 40px;
    border-radius: 8px;
    border: 2px solid rgba(153, 153, 153, 1);
    padding: 0 10px;
    font-size: 15px;
    font-weight: 700;
    color: var(--text-white);
	font-family: var(--font-basic) !important;
    background-color: var(--background-black);
}
.nf-form-wrap form nf-fields-wrap nf-field select option {
    color: #fff;
}
.nf-form-wrap form nf-fields-wrap nf-field input[type="submit"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    font-size: 22px;
    font-weight: 400;
    line-height: 1;
    font-family: var(--font-secondary) !important;
    text-transform: uppercase;
    color: var(--text-blue);
    background-color: var(--background-black);
    border:  2px solid var(--red);
    border-radius: 8px;
    padding: 2px 15px 5px 15px;
    text-decoration: none;
    cursor: pointer;
    transition: all .3s ease;
    text-shadow: var(--text-blue) 1px 0 10px;
    box-shadow: 0px 0px 10px 0px var(--red);
    box-shadow: inset 0px 0px 10px 0px var(--red);
}
.nf-form-wrap form nf-fields-wrap nf-field input[type="submit"]:hover {
	border-color: var(--blue);
    color: var(--text-white);
    text-shadow: var(--text-white) 1px 0 10px;
    box-shadow: 0px 0px 10px 0px var(--blue);
    box-shadow: inset 0px 0px 10px 0px var(--blue);
}
.nf-form-wrap form nf-fields-wrap nf-field input[type="submit"]:active {
    border-color: var(--white);
    color: var(--text-white);
    text-shadow: var(--text-white) 1px 0 10px;
    box-shadow: 0px 0px 10px 0px var(--white);
    box-shadow: inset 0px 0px 10px 0px var(--white);
}
.nf-form-wrap form nf-fields-wrap nf-field textarea {
    padding: 10px;
    border-radius: 8px;
    border: 2px solid rgba(153, 153, 153, 1);
    font-size: 15px;
	color: var(--text-white);
	line-height: 1.4;
    font-weight: 700;
	font-family: var(--font-basic) !important;
    background-color: var(--background-black);
}
.nf-form-wrap form nf-fields-wrap nf-field ::-webkit-input-placeholder {
  font-size: 11px;
  font-weight: 700;
	font-family: var(--font-basic) !important;
}
.nf-form-wrap form nf-fields-wrap nf-field :-ms-input-placeholder {
  font-size: 11px;
  font-weight: 700;
	font-family: var(--font-basic) !important;
}
.nf-form-wrap form nf-fields-wrap nf-field ::-moz-placeholder {
  font-size: 12px;
  font-weight: 700;
	font-family: var(--font-basic) !important;
  opacity: 1;
}
.nf-form-wrap form nf-fields-wrap nf-field :-moz-placeholder {
  font-size: 11px;
  font-weight: 700;
	font-family: var(--font-basic) !important;
  opacity: 1;
}
.nf-form-wrap form nf-fields-wrap nf-field .nf-field-element ul {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.nf-form-wrap form nf-fields-wrap nf-field .nf-field-element ul li {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 0 !important;
    cursor: pointer;
}
.nf-form-wrap form nf-fields-wrap nf-field .nf-field-element ul li input {
    margin: 0;
    cursor: pointer;
}
.nf-form-wrap form nf-fields-wrap nf-field .nf-field-element ul li label {
    margin: 0;
    font-size: 15px;
    cursor: pointer;
}
.nf-form-wrap form nf-fields-wrap nf-field .nf-field-element ul li input[type="radio"] {
    display: block;
    accent-color: var(--dark);
    border: 0px !important;
    width: 18px !important;
    height: 18px !important;
}
.nf-form-wrap form nf-fields-wrap nf-field .nf-fu-progress {
	height: 2px;
	margin-bottom: 5px;
	background-color: transparent;
}
.nf-quill-wrapper {
	border: 2px solid rgba(153, 153, 153, 1) !important;
	border-radius: 8px;
}
.nf-form-wrap form nf-fields-wrap nf-field .ql-snow .ql-picker.ql-header {
	width: 150px;
}
.nf-form-wrap form nf-fields-wrap nf-field .ql-snow .ql-picker.ql-expanded .ql-picker-label {
	color: #444;
}
.nf-form-wrap form nf-fields-wrap nf-field .nf-form-wrap .ql-editor,
.nf-form-wrap form nf-fields-wrap nf-field .ql-container.ql-snow,
.nf-form-wrap form nf-fields-wrap nf-field .ql-toolbar.ql-snow,
.nf-form-wrap form nf-fields-wrap nf-field .ql-editor {
	background-color: transparent !important;
}
.nf-form-wrap form nf-fields-wrap nf-field .ql-toolbar {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 0;
	border: none !important;
	border-bottom: 2px solid rgba(153, 153, 153, 1) !important;
}
.nf-form-wrap form nf-fields-wrap nf-field .ql-container {
	border: none !important;
}
/* .nf-form-wrap form nf-fields-wrap nf-field .nf-fu-button-cancel {
	display: none !important;
} */

/* NF FORM RESPONSIVE */
@media (max-width: 575px) {
    .nf-form-wrap form {
        font-size: 13px;
    }
    .nf-form-wrap form nf-fields-wrap nf-field input[type="submit"] {
        font-size: 20px;
    }
}
@media (max-width: 359px) {
	.nf-form-wrap form nf-fields-wrap {
    	flex-direction: column;
	}
	.nf-form-wrap form nf-fields-wrap nf-field:has(.half) {
		width: 100%;
	}
}


/****************************************************************************************************
        POST TMPL       |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
****************************************************************************************************/
.page-section--post {
    z-index: 0;
}
.post .section__container {
    background-color: transparent;
    padding-top: 40px;
}
.post .section__inner {
    width: 540px;
    margin: 0 auto;
}
.post .section__inner:before {
    position: absolute;
    content: "";
    width: 35%;
    height: 100%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.9);
    box-shadow: 0 0 120px 140px rgba(0, 0, 0, 0.9);
    z-index: -1;
}
.post .section__content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding-bottom: 40px;
}
.post__title {
    border-top: 1px solid rgba(153, 153, 153, 1);
    padding-top: 20px;
    color: var(--text-red);
    text-transform: uppercase;
    margin: 0;
}
.post .divider {
    background-color: #fff;
}
.post__poster,
.post__poster img {
    width: 100%;
    height: auto;
}



/****************************************************************************************************
        EVENT TMPL       ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
****************************************************************************************************/
.page-section--event {
    z-index: 0;
}
.event .section__container {
    background-color: transparent;
    padding-top: 40px;
}
.event .section__inner {
    width: 540px;
    margin: 0 auto;
}
.event .section__inner:before {
    position: absolute;
    content: "";
    width: 35%;
    height: 100%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.9);
    box-shadow: 0 0 120px 140px rgba(0, 0, 0, 0.9);
    z-index: -1;
}
.event .section__content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding-bottom: 40px;
}
.event__title {
    border-top: 1px solid rgba(153, 153, 153, 1);
    padding-top: 20px;
    color: var(--text-red);
    text-transform: uppercase;
    margin: 0;
}
.event .divider {
    background-color: #fff;
}
.event__poster,
.event__poster img {
    width: 100%;
    height: auto;
}
.event__data {
    display: flex;
    align-items: center;
    border: 1px solid rgba(153, 153, 153, 1);
}
.event__data__item {
    display: flex;
    align-items: center;
    min-width: 130px;
    min-height: 66px;
    text-transform: uppercase;
}
.event__data__item:nth-child(2n + 2) {
    border-left: 1px solid rgba(153, 153, 153, 1);
}
.event__date {
    gap: 6px;
    flex-grow: 1;
    font-size: 20px;
    line-height: 1;
    font-weight: 700;
    color: var(--text-white);
    padding: 12px 20px 8px 20px;
}
.event__type {
    justify-content: center;
    text-align: center;
    font-size: 22px;
    line-height: 1;
    font-weight: 400;
    font-family: var(--font-secondary);
    color: var(--background-blue);
    padding: 9px 20px 11px 20px;
}
.event__cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
}
.event__cta .btn {
    position: relative;
    font-size: 30px;
    min-height: 70px;
    color: var(--text-white);
	background-color: var(--background-black);
    padding: 0 70px;
    z-index: 1;
}
.event__cta .btn:before,
.event__cta .btn:after {
    display: block;
    position: absolute;
    content: "";
    top: 50%;
    width: 30px;
    height: 100%;
    transform: translateY(-50%);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 1;
}
.event__cta .btn:before {
    left: 20px;
    background-image: url('./images/stars/star-left-blue-subhead.svg');
}
.event__cta .btn:after {
    right: 20px;
    background-image: url('./images/stars/star-right-blue-subhead.svg');
}

/* EVENT RESPONSIVE */
@media (max-width: 575px) {
    .event__data {
        flex-direction: column;
    }
    .event__date {
        font-size: 17px;
        padding: 12px 15px;
    }
    .event__data__item {
        width: 100%;
        justify-content: center;
    }
    .event__data__item:nth-child(2n+2) {
        border-left: none;
        border-top: 1px solid rgba(153, 153, 153, 1);
    }
    .event__cta .btn {
        font-size: 24px;
        padding: 0 56px;
    }
    .event__cta .btn::before, .event__cta .btn::after {
        width: 22px;
    }
}
@media (max-width: 359px) {
    .event__date {
        font-size: 14px;
    }
}



/****************************************************************************************************
        FOOTER       ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
****************************************************************************************************/
.footer {
    position: relative;
    color: var(--text-white);
    z-index: 1;
}
.footer__inner {
    position: relative;
    display: flex;
    flex-direction: column;
    z-index: 1;
}

/* FOOTER RESPONSIVE */
@media (max-width: 1199px) {
    
}
@media (max-width: 767px) {
    
}
@media (max-width: 575px) {
    
}
@media (max-width: 359px) {
  
}

/* FOOTER LINKS */
.footer__links {
    position: relative;
    z-index: 1;
}
.footer__links__items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    background-color: var(--background-black);
    padding: 20px 0;
    gap: 15px;
}
.footer__links__items a {
    color: inherit;
    font-size: 22px;
    text-transform: uppercase;
    font-family: var(--font-secondary);
    line-height: 34px;
    font-weight: 400;
}
.footer__links__items a:not(:first-child) {
    position: relative;
    padding-left: 18px;
    z-index: 1;
}
.footer__links__items a:not(:first-child):before {
    position: absolute;
    content: "";
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: var(--background-blue);
    z-index: 1;
}
.footer__links__items a:hover {
    color: var(--text-blue);
}

/* FOOTER LINKS RESPONSIVE */
@media (max-width: 1199px) {
    .footer__links__items a {
        font-size: 20px;
    }
}
@media (max-width: 991px) {
    .footer__links__items a {
        font-size: 26px;
    }
}
@media (max-width: 575px) {
    .footer__links__items {
        gap: 12px;
    }
    .footer__links__items a {
        font-size: 20px;
    }
    .footer__links__items a:not(:first-child) {
        padding-left: 14px;
    }
}


/* FOOTER CONTACTS */
.footer__contacts__inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
    background-color: var(--background-black);
    padding: 20px 0;
}
.footer__contacts__inner p {
    margin: 0;
    font-size: 22px;
    text-transform: uppercase;
    font-family: var(--font-secondary);
    line-height: 34px;
    font-weight: 400;
}
.footer__contacts__inner p a {
	color: inherit;
}
.footer__contacts__inner p a:hover {
	color: var(--text-blue);
}

/* FOOTER CONTACTS RESPONSIVE */
@media (min-width: 992px) {
	.footer__contacts__address br {
		display: none;
	}
}
@media (max-width: 1199px) {
    .footer__contacts__inner p {
        font-size: 20px;
    }
}
@media (max-width: 991px) {
    .footer__contacts__inner {
        text-align: center;
		flex-direction: column;
    }
    .footer__contacts__inner p {
        font-size: 24px;
    }
}
@media (max-width: 575px) {
    .footer__contacts__inner p {
        font-size: 20px;
    }
}


/* FOOTER SOCIALS */
.footer__socials {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% + 100px);
    max-width: calc(100% + 100px);
    height: 230px;
    background-image: url('./images/footer/footer-artwork-transparent.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 1;
}
.footer__socials__items {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 107px;
    margin-left: 22px;
    gap: 30px;
}
.footer__socials__items a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: auto;
}
.footer__socials__items a img {
    max-width: 100%;
    max-height: 100%;
}
.footer__socials__items a img:nth-child(2) {
	display: none;
}
.footer__socials__items a:hover img:nth-child(1) {
	display: none;
}
.footer__socials__items a:hover img:nth-child(2) {
	display: block;
}

/* FOOTER SOCIALS RESPONSIVE */
@media (max-width: 1199px) {
    .footer__socials {
        height: 190px;
    }
    .footer__socials__items {
        margin-top: 88px;
        margin-left: 18px;
    }
    .footer__socials__items a {
        width: 33px;
    }
}
@media (max-width: 991px) {
    .footer__socials {
        height: 147px;
    }
    .footer__socials__items {
        margin-top: 69px;
        margin-left: 15px;
        gap: 20px;
    }
    .footer__socials__items a {
        width: 26px;
    }
}
@media (max-width:767px) {
    .footer__socials {
        width: calc(100% + 60px);
        max-width: calc(100% + 60px);
        background-size: 930px auto;
    }
}
@media (max-width:575px) {
    .footer__socials {
        width: calc(100% + 30px);
        max-width: calc(100% + 30px);
    }
}



/****************************************************************************************************
        404       |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
****************************************************************************************************/
.lost .content {
	position: relative;
    width: 520px;
    text-align: center;
    margin: 0 auto;
	z-index: 1;
}
.lost .content:before {
    position: absolute;
    content: "";
    width: 45%;
    height: 100%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.9);
    box-shadow: 0 0 120px 140px rgba(0, 0, 0, 0.9);
    z-index: -1;
}
.lost__icon {
    max-width: 156px;
    max-height: 156px;
}
.lost__icon:not(:last-child) {
    margin-bottom: 30px;
}
.lost__title {
    font-size: 66px;
    line-height: 1;
    margin: 0 0 30px 0;
}
.lost__subtitle {
    text-transform: uppercase;
}
.lost .content .btns {
    justify-content: center;
}



/****************************************************************************************************
        RESPONSIVE       ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
****************************************************************************************************/
.show--lg,
.show--md,
.show--sm,
.show--xs,
.visibility--mobile_only {
    display: none;
}

@media only screen and (max-width: 1199px) {
    .hide--lg {
        display: none !important;
    }
    .show--lg {
        display: block;
    }
}
@media only screen and (max-width: 991px) {
    .hide--md {
        display: none !important;
    }
    .show--md {
        display: block;
    }
}
@media only screen and (max-width: 767px) {
    .hide--sm,
    .visibility--desktop_only {
        display: none !important;
    }
    .show--sm,
    .visibility--mobile_only {
        display: block;
    }
}
@media only screen and (max-width: 575px) {
    .hide--xs {
        display: none !important;
    }
    .show--xs {
        display: block;
    }
    .slick-dots {
        gap: 8px;
    }
    .slick-dots li {
        width: 12px;
        height: 12px;
    }
}
@media only screen and (max-width: 359px) {}