/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger {
    padding: 15px 15px;
    display: inline-block;
    cursor: pointer;
    transition-property: opacity, filter;
    transition-duration: 0.15s;
    transition-timing-function: linear;
    font: inherit;
    color: inherit;
    text-transform: none;
    background-color: transparent;
    border: 0;
    margin: 0;
    overflow: visible;
}
.hamburger:hover {
    opacity: 0.7;
}
.hamburger.is-active:hover {
    opacity: 0.7;
}
.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
    background-color: #000;
}

.hamburger-box {
    width: 40px;
    height: 24px;
    display: inline-block;
    position: relative;
}

.hamburger-inner {
    display: block;
    top: 50%;
    margin-top: -2px;
}
.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
    width: 40px;
    height: 4px;
    background-color: #000;
    border-radius: 4px;
    position: absolute;
    transition-property: transform;
    transition-duration: 0.15s;
    transition-timing-function: ease;
}
.hamburger-inner::before, .hamburger-inner::after {
    content: "";
    display: block;
}
.hamburger-inner::before {
    top: -10px;
}
.hamburger-inner::after {
    bottom: -10px;
}

/*
 * 3DX
 */
.hamburger--3dx .hamburger-box {
    perspective: 80px;
}
.hamburger--3dx .hamburger-inner {
    transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dx .hamburger-inner::before, .hamburger--3dx .hamburger-inner::after {
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dx.is-active .hamburger-inner {
    background-color: transparent !important;
    transform: rotateY(180deg);
}
.hamburger--3dx.is-active .hamburger-inner::before {
    transform: translate3d(0, 10px, 0) rotate(45deg);
}
.hamburger--3dx.is-active .hamburger-inner::after {
    transform: translate3d(0, -10px, 0) rotate(-45deg);
}

/*
 * 3DX Reverse
 */
.hamburger--3dx-r .hamburger-box {
    perspective: 80px;
}
.hamburger--3dx-r .hamburger-inner {
    transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dx-r .hamburger-inner::before, .hamburger--3dx-r .hamburger-inner::after {
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dx-r.is-active .hamburger-inner {
    background-color: transparent !important;
    transform: rotateY(-180deg);
}
.hamburger--3dx-r.is-active .hamburger-inner::before {
    transform: translate3d(0, 10px, 0) rotate(45deg);
}
.hamburger--3dx-r.is-active .hamburger-inner::after {
    transform: translate3d(0, -10px, 0) rotate(-45deg);
}

/*
 * 3DY
 */
.hamburger--3dy .hamburger-box {
    perspective: 80px;
}
.hamburger--3dy .hamburger-inner {
    transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dy .hamburger-inner::before, .hamburger--3dy .hamburger-inner::after {
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dy.is-active .hamburger-inner {
    background-color: transparent !important;
    transform: rotateX(-180deg);
}
.hamburger--3dy.is-active .hamburger-inner::before {
    transform: translate3d(0, 10px, 0) rotate(45deg);
}
.hamburger--3dy.is-active .hamburger-inner::after {
    transform: translate3d(0, -10px, 0) rotate(-45deg);
}

/*
 * 3DY Reverse
 */
.hamburger--3dy-r .hamburger-box {
    perspective: 80px;
}
.hamburger--3dy-r .hamburger-inner {
    transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dy-r .hamburger-inner::before, .hamburger--3dy-r .hamburger-inner::after {
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dy-r.is-active .hamburger-inner {
    background-color: transparent !important;
    transform: rotateX(180deg);
}
.hamburger--3dy-r.is-active .hamburger-inner::before {
    transform: translate3d(0, 10px, 0) rotate(45deg);
}
.hamburger--3dy-r.is-active .hamburger-inner::after {
    transform: translate3d(0, -10px, 0) rotate(-45deg);
}

/*
 * 3DXY
 */
.hamburger--3dxy .hamburger-box {
    perspective: 80px;
}
.hamburger--3dxy .hamburger-inner {
    transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dxy .hamburger-inner::before, .hamburger--3dxy .hamburger-inner::after {
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dxy.is-active .hamburger-inner {
    background-color: transparent !important;
    transform: rotateX(180deg) rotateY(180deg);
}
.hamburger--3dxy.is-active .hamburger-inner::before {
    transform: translate3d(0, 10px, 0) rotate(45deg);
}
.hamburger--3dxy.is-active .hamburger-inner::after {
    transform: translate3d(0, -10px, 0) rotate(-45deg);
}

/*
 * 3DXY Reverse
 */
.hamburger--3dxy-r .hamburger-box {
    perspective: 80px;
}
.hamburger--3dxy-r .hamburger-inner {
    transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dxy-r .hamburger-inner::before, .hamburger--3dxy-r .hamburger-inner::after {
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dxy-r.is-active .hamburger-inner {
    background-color: transparent !important;
    transform: rotateX(180deg) rotateY(180deg) rotateZ(-180deg);
}
.hamburger--3dxy-r.is-active .hamburger-inner::before {
    transform: translate3d(0, 10px, 0) rotate(45deg);
}
.hamburger--3dxy-r.is-active .hamburger-inner::after {
    transform: translate3d(0, -10px, 0) rotate(-45deg);
}

/*
 * Arrow
 */
.hamburger--arrow.is-active .hamburger-inner::before {
    transform: translate3d(-8px, 0, 0) rotate(-45deg) scale(0.7, 1);
}
.hamburger--arrow.is-active .hamburger-inner::after {
    transform: translate3d(-8px, 0, 0) rotate(45deg) scale(0.7, 1);
}

/*
 * Arrow Right
 */
.hamburger--arrow-r.is-active .hamburger-inner::before {
    transform: translate3d(8px, 0, 0) rotate(45deg) scale(0.7, 1);
}
.hamburger--arrow-r.is-active .hamburger-inner::after {
    transform: translate3d(8px, 0, 0) rotate(-45deg) scale(0.7, 1);
}

/*
 * Arrow Alt
 */
.hamburger--arrowalt .hamburger-inner::before {
    transition: top 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.hamburger--arrowalt .hamburger-inner::after {
    transition: bottom 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.hamburger--arrowalt.is-active .hamburger-inner::before {
    top: 0;
    transform: translate3d(-8px, -10px, 0) rotate(-45deg) scale(0.7, 1);
    transition: top 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}
.hamburger--arrowalt.is-active .hamburger-inner::after {
    bottom: 0;
    transform: translate3d(-8px, 10px, 0) rotate(45deg) scale(0.7, 1);
    transition: bottom 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

/*
 * Arrow Alt Right
 */
.hamburger--arrowalt-r .hamburger-inner::before {
    transition: top 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.hamburger--arrowalt-r .hamburger-inner::after {
    transition: bottom 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.hamburger--arrowalt-r.is-active .hamburger-inner::before {
    top: 0;
    transform: translate3d(8px, -10px, 0) rotate(45deg) scale(0.7, 1);
    transition: top 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}
.hamburger--arrowalt-r.is-active .hamburger-inner::after {
    bottom: 0;
    transform: translate3d(8px, 10px, 0) rotate(-45deg) scale(0.7, 1);
    transition: bottom 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

/*
 * Arrow Turn
 */
.hamburger--arrowturn.is-active .hamburger-inner {
    transform: rotate(-180deg);
}
.hamburger--arrowturn.is-active .hamburger-inner::before {
    transform: translate3d(8px, 0, 0) rotate(45deg) scale(0.7, 1);
}
.hamburger--arrowturn.is-active .hamburger-inner::after {
    transform: translate3d(8px, 0, 0) rotate(-45deg) scale(0.7, 1);
}

/*
 * Arrow Turn Right
 */
.hamburger--arrowturn-r.is-active .hamburger-inner {
    transform: rotate(-180deg);
}
.hamburger--arrowturn-r.is-active .hamburger-inner::before {
    transform: translate3d(-8px, 0, 0) rotate(-45deg) scale(0.7, 1);
}
.hamburger--arrowturn-r.is-active .hamburger-inner::after {
    transform: translate3d(-8px, 0, 0) rotate(45deg) scale(0.7, 1);
}

/*
 * Boring
 */
.hamburger--boring .hamburger-inner, .hamburger--boring .hamburger-inner::before, .hamburger--boring .hamburger-inner::after {
    transition-property: none;
}
.hamburger--boring.is-active .hamburger-inner {
    transform: rotate(45deg);
}
.hamburger--boring.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
}
.hamburger--boring.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg);
}

/*
 * Collapse
 */
.hamburger--collapse .hamburger-inner {
    top: auto;
    bottom: 0;
    transition-duration: 0.13s;
    transition-delay: 0.13s;
    transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--collapse .hamburger-inner::after {
    top: -20px;
    transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;
}
.hamburger--collapse .hamburger-inner::before {
    transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--collapse.is-active .hamburger-inner {
    transform: translate3d(0, -10px, 0) rotate(-45deg);
    transition-delay: 0.22s;
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--collapse.is-active .hamburger-inner::after {
    top: 0;
    opacity: 0;
    transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear;
}
.hamburger--collapse.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(-90deg);
    transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Collapse Reverse
 */
.hamburger--collapse-r .hamburger-inner {
    top: auto;
    bottom: 0;
    transition-duration: 0.13s;
    transition-delay: 0.13s;
    transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--collapse-r .hamburger-inner::after {
    top: -20px;
    transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;
}
.hamburger--collapse-r .hamburger-inner::before {
    transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--collapse-r.is-active .hamburger-inner {
    transform: translate3d(0, -10px, 0) rotate(45deg);
    transition-delay: 0.22s;
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--collapse-r.is-active .hamburger-inner::after {
    top: 0;
    opacity: 0;
    transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear;
}
.hamburger--collapse-r.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(90deg);
    transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Elastic
 */
.hamburger--elastic .hamburger-inner {
    top: 2px;
    transition-duration: 0.275s;
    transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.hamburger--elastic .hamburger-inner::before {
    top: 10px;
    transition: opacity 0.125s 0.275s ease;
}
.hamburger--elastic .hamburger-inner::after {
    top: 20px;
    transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.hamburger--elastic.is-active .hamburger-inner {
    transform: translate3d(0, 10px, 0) rotate(135deg);
    transition-delay: 0.075s;
}
.hamburger--elastic.is-active .hamburger-inner::before {
    transition-delay: 0s;
    opacity: 0;
}
.hamburger--elastic.is-active .hamburger-inner::after {
    transform: translate3d(0, -20px, 0) rotate(-270deg);
    transition-delay: 0.075s;
}

/*
 * Elastic Reverse
 */
.hamburger--elastic-r .hamburger-inner {
    top: 2px;
    transition-duration: 0.275s;
    transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.hamburger--elastic-r .hamburger-inner::before {
    top: 10px;
    transition: opacity 0.125s 0.275s ease;
}
.hamburger--elastic-r .hamburger-inner::after {
    top: 20px;
    transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.hamburger--elastic-r.is-active .hamburger-inner {
    transform: translate3d(0, 10px, 0) rotate(-135deg);
    transition-delay: 0.075s;
}
.hamburger--elastic-r.is-active .hamburger-inner::before {
    transition-delay: 0s;
    opacity: 0;
}
.hamburger--elastic-r.is-active .hamburger-inner::after {
    transform: translate3d(0, -20px, 0) rotate(270deg);
    transition-delay: 0.075s;
}

/*
 * Emphatic
 */
.hamburger--emphatic {
    overflow: hidden;
}
.hamburger--emphatic .hamburger-inner {
    transition: background-color 0.125s 0.175s ease-in;
}
.hamburger--emphatic .hamburger-inner::before {
    left: 0;
    transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, left 0.125s 0.175s ease-in;
}
.hamburger--emphatic .hamburger-inner::after {
    top: 10px;
    right: 0;
    transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, right 0.125s 0.175s ease-in;
}
.hamburger--emphatic.is-active .hamburger-inner {
    transition-delay: 0s;
    transition-timing-function: ease-out;
    background-color: transparent !important;
}
.hamburger--emphatic.is-active .hamburger-inner::before {
    left: -80px;
    top: -80px;
    transform: translate3d(80px, 80px, 0) rotate(45deg);
    transition: left 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.hamburger--emphatic.is-active .hamburger-inner::after {
    right: -80px;
    top: -80px;
    transform: translate3d(-80px, 80px, 0) rotate(-45deg);
    transition: right 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}

/*
 * Emphatic Reverse
 */
.hamburger--emphatic-r {
    overflow: hidden;
}
.hamburger--emphatic-r .hamburger-inner {
    transition: background-color 0.125s 0.175s ease-in;
}
.hamburger--emphatic-r .hamburger-inner::before {
    left: 0;
    transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, left 0.125s 0.175s ease-in;
}
.hamburger--emphatic-r .hamburger-inner::after {
    top: 10px;
    right: 0;
    transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, right 0.125s 0.175s ease-in;
}
.hamburger--emphatic-r.is-active .hamburger-inner {
    transition-delay: 0s;
    transition-timing-function: ease-out;
    background-color: transparent !important;
}
.hamburger--emphatic-r.is-active .hamburger-inner::before {
    left: -80px;
    top: 80px;
    transform: translate3d(80px, -80px, 0) rotate(-45deg);
    transition: left 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.hamburger--emphatic-r.is-active .hamburger-inner::after {
    right: -80px;
    top: 80px;
    transform: translate3d(-80px, -80px, 0) rotate(45deg);
    transition: right 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}

/*
 * Minus
 */
.hamburger--minus .hamburger-inner::before, .hamburger--minus .hamburger-inner::after {
    transition: bottom 0.08s 0s ease-out, top 0.08s 0s ease-out, opacity 0s linear;
}
.hamburger--minus.is-active .hamburger-inner::before, .hamburger--minus.is-active .hamburger-inner::after {
    opacity: 0;
    transition: bottom 0.08s ease-out, top 0.08s ease-out, opacity 0s 0.08s linear;
}
.hamburger--minus.is-active .hamburger-inner::before {
    top: 0;
}
.hamburger--minus.is-active .hamburger-inner::after {
    bottom: 0;
}

/*
 * Slider
 */
.hamburger--slider .hamburger-inner {
    top: 2px;
}
.hamburger--slider .hamburger-inner::before {
    top: 10px;
    transition-property: transform, opacity;
    transition-timing-function: ease;
    transition-duration: 0.15s;
}
.hamburger--slider .hamburger-inner::after {
    top: 20px;
}
.hamburger--slider.is-active .hamburger-inner {
    transform: translate3d(0, 10px, 0) rotate(45deg);
}
.hamburger--slider.is-active .hamburger-inner::before {
    transform: rotate(-45deg) translate3d(-5.7142857143px, -6px, 0);
    opacity: 0;
}
.hamburger--slider.is-active .hamburger-inner::after {
    transform: translate3d(0, -20px, 0) rotate(-90deg);
}

/*
 * Slider Reverse
 */
.hamburger--slider-r .hamburger-inner {
    top: 2px;
}
.hamburger--slider-r .hamburger-inner::before {
    top: 10px;
    transition-property: transform, opacity;
    transition-timing-function: ease;
    transition-duration: 0.15s;
}
.hamburger--slider-r .hamburger-inner::after {
    top: 20px;
}
.hamburger--slider-r.is-active .hamburger-inner {
    transform: translate3d(0, 10px, 0) rotate(-45deg);
}
.hamburger--slider-r.is-active .hamburger-inner::before {
    transform: rotate(45deg) translate3d(5.7142857143px, -6px, 0);
    opacity: 0;
}
.hamburger--slider-r.is-active .hamburger-inner::after {
    transform: translate3d(0, -20px, 0) rotate(90deg);
}

/*
 * Spin
 */
.hamburger--spin .hamburger-inner {
    transition-duration: 0.22s;
    transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin .hamburger-inner::before {
    transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
}
.hamburger--spin .hamburger-inner::after {
    transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin.is-active .hamburger-inner {
    transform: rotate(225deg);
    transition-delay: 0.12s;
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--spin.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
    transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
}
.hamburger--spin.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg);
    transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Spin Reverse
 */
.hamburger--spin-r .hamburger-inner {
    transition-duration: 0.22s;
    transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin-r .hamburger-inner::before {
    transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
}
.hamburger--spin-r .hamburger-inner::after {
    transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin-r.is-active .hamburger-inner {
    transform: rotate(-225deg);
    transition-delay: 0.12s;
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--spin-r.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
    transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
}
.hamburger--spin-r.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(90deg);
    transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Spring
 */
.hamburger--spring .hamburger-inner {
    top: 2px;
    transition: background-color 0s 0.13s linear;
}
.hamburger--spring .hamburger-inner::before {
    top: 10px;
    transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spring .hamburger-inner::after {
    top: 20px;
    transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spring.is-active .hamburger-inner {
    transition-delay: 0.22s;
    background-color: transparent !important;
}
.hamburger--spring.is-active .hamburger-inner::before {
    top: 0;
    transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 10px, 0) rotate(45deg);
}
.hamburger--spring.is-active .hamburger-inner::after {
    top: 0;
    transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 10px, 0) rotate(-45deg);
}

/*
 * Spring Reverse
 */
.hamburger--spring-r .hamburger-inner {
    top: auto;
    bottom: 0;
    transition-duration: 0.13s;
    transition-delay: 0s;
    transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spring-r .hamburger-inner::after {
    top: -20px;
    transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0s linear;
}
.hamburger--spring-r .hamburger-inner::before {
    transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spring-r.is-active .hamburger-inner {
    transform: translate3d(0, -10px, 0) rotate(-45deg);
    transition-delay: 0.22s;
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--spring-r.is-active .hamburger-inner::after {
    top: 0;
    opacity: 0;
    transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0s 0.22s linear;
}
.hamburger--spring-r.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(90deg);
    transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Stand
 */
.hamburger--stand .hamburger-inner {
    transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.075s linear;
}
.hamburger--stand .hamburger-inner::before {
    transition: top 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--stand .hamburger-inner::after {
    transition: bottom 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--stand.is-active .hamburger-inner {
    transform: rotate(90deg);
    background-color: transparent !important;
    transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.15s linear;
}
.hamburger--stand.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(-45deg);
    transition: top 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--stand.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(45deg);
    transition: bottom 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Stand Reverse
 */
.hamburger--stand-r .hamburger-inner {
    transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.075s linear;
}
.hamburger--stand-r .hamburger-inner::before {
    transition: top 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--stand-r .hamburger-inner::after {
    transition: bottom 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--stand-r.is-active .hamburger-inner {
    transform: rotate(-90deg);
    background-color: transparent !important;
    transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.15s linear;
}
.hamburger--stand-r.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(-45deg);
    transition: top 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--stand-r.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(45deg);
    transition: bottom 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Squeeze
 */
.hamburger--squeeze .hamburger-inner {
    transition-duration: 0.075s;
    transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--squeeze .hamburger-inner::before {
    transition: top 0.075s 0.12s ease, opacity 0.075s ease;
}
.hamburger--squeeze .hamburger-inner::after {
    transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--squeeze.is-active .hamburger-inner {
    transform: rotate(45deg);
    transition-delay: 0.12s;
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--squeeze.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
    transition: top 0.075s ease, opacity 0.075s 0.12s ease;
}
.hamburger--squeeze.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg);
    transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Vortex
 */
.hamburger--vortex .hamburger-inner {
    transition-duration: 0.2s;
    transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.hamburger--vortex .hamburger-inner::before, .hamburger--vortex .hamburger-inner::after {
    transition-duration: 0s;
    transition-delay: 0.1s;
    transition-timing-function: linear;
}
.hamburger--vortex .hamburger-inner::before {
    transition-property: top, opacity;
}
.hamburger--vortex .hamburger-inner::after {
    transition-property: bottom, transform;
}
.hamburger--vortex.is-active .hamburger-inner {
    transform: rotate(765deg);
    transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.hamburger--vortex.is-active .hamburger-inner::before, .hamburger--vortex.is-active .hamburger-inner::after {
    transition-delay: 0s;
}
.hamburger--vortex.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
}
.hamburger--vortex.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(90deg);
}

/*
 * Vortex Reverse
 */
.hamburger--vortex-r .hamburger-inner {
    transition-duration: 0.2s;
    transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.hamburger--vortex-r .hamburger-inner::before, .hamburger--vortex-r .hamburger-inner::after {
    transition-duration: 0s;
    transition-delay: 0.1s;
    transition-timing-function: linear;
}
.hamburger--vortex-r .hamburger-inner::before {
    transition-property: top, opacity;
}
.hamburger--vortex-r .hamburger-inner::after {
    transition-property: bottom, transform;
}
.hamburger--vortex-r.is-active .hamburger-inner {
    transform: rotate(-765deg);
    transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.hamburger--vortex-r.is-active .hamburger-inner::before, .hamburger--vortex-r.is-active .hamburger-inner::after {
    transition-delay: 0s;
}
.hamburger--vortex-r.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
}
.hamburger--vortex-r.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: subpixel-antialiased;
    outline: none !important;
}

body,
html {
    scroll-behavior: smooth;
}
body em,
html em {
    font-family: Inter;
}

body {
    overflow-x: hidden;
    width: 100%;
    max-width: 1720px;
    margin-left: auto;
    margin-right: auto;
    background: #FCF8F4;
}

@media (max-width: 849px) {
    body.open {
        overflow: hidden;
    }
}

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

svg {
    transition: 0.34s;
}

a, a:before, a:after, input, select, textarea, button {
    transition: color 0.4s cubic-bezier(0.215, 0.61, 0.355, 1), background 0.4s cubic-bezier(0.215, 0.61, 0.355, 1), border 0.4s cubic-bezier(0.215, 0.61, 0.355, 1), opacity 0.4s cubic-bezier(0.215, 0.61, 0.355, 1), transform 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}

html, body {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

ul, ol {
    list-style-position: outside;
}

ul {
    list-style: none;
}

ol {
    list-style: decimal;
}

a {
    text-decoration: none;
}

* {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-touch-callout: none;
}

a img {
    border: none;
}

img, video {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
}

video {
    outline: none;
}

header, footer, section, article, aside, main, nav, svg {
    display: block;
}

svg {
    transition: 0.34s cubic-bezier(0.215, 0.61, 0.355, 1);
}
svg path {
    transition: 0.34s cubic-bezier(0.215, 0.61, 0.355, 1);
}

table {
    border-collapse: collapse;
}

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

input[type=text], input[type=email], textarea, select {
    width: 100%;
}

input[type=submit] {
    cursor: pointer;
}

select, button {
    cursor: pointer;
}

textarea {
    display: block;
    overflow: auto;
    resize: vertical;
}

button {
    background: none;
    border: none;
    cursor: pointer;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 50px white inset !important;
}

input[type=checkbox]:focus {
    outline: 0;
}

.msp-header {
    width: 100%;
    position: relative;
}
.msp-header .shadow {
    position: absolute;
    top: 0;
    width: 100vh;
    height: 100vh;
    z-index: 0;
    display: none;
}
@media (max-width: 849px) {
    .msp-header .shadow.open {
        display: block;
        background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 20%, #000 100%);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center center;
        z-index: 4;
    }
}
.msp-header .container.shadowed {
    box-shadow: inset 0 200px 218px black;
}
@media (max-width: 849px) {
    .msp-header.open:not(.simple) {
        background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 20%, #000 100%);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center center;
        height: 100dvh;
    }
    .msp-header.open .header-content-text {
        padding-bottom: 190px;
    }
    .msp-header.open a, .msp-header.open a:hover, .msp-header.open a:active, .msp-header.open a:visited {
        color: white;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }
    .msp-header.open .header-text-open {
        position: fixed;
        bottom: 0px;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        display: flex;
        color: white;
        flex-direction: column;
        text-align: center;
        justify-content: center;
        font-size: 12px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        font-family: Inter;
        z-index: 6;
    }
    .msp-header.open .header-text-open img {
        display: inline-block;
        margin-right: 10px;
    }
    .msp-header.open .header-text-open p {
        margin-left: auto;
        margin-right: auto;
        text-align: center;
        display: inline-block;
        margin-bottom: 8px;
    }
    .msp-header.open .header-text-open .artistic-director-text {
        margin-bottom: 16px;
    }
    .msp-header.open .header-text-open .artistic-director-text .text-italic {
        font-style: italic;
    }
}
.msp-header .header-text-open {
    display: none;
}
.msp-header .header-image {
    position: absolute;
    display: block;
    z-index: -1;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}
.msp-header .header-text {
    text-align: center;
    color: white;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    height: 17px;
    padding-top: 24px;
}
.msp-header .header-text.black {
    color: black;
}
.msp-header .header-text .column {
    width: 33%;
}
@media (max-width: 849px) {
    .msp-header .header-text .column {
        width: auto;
    }
}
.msp-header .header-text a, .msp-header .header-text a:hover, .msp-header .header-text a:active, .msp-header .header-text a:visited {
    color: white;
    margin-left: auto;
    margin-right: auto;
    padding: 10px;
    text-align: center;
}
.msp-header .header-text a.black, .msp-header .header-text a:hover.black, .msp-header .header-text a:active.black, .msp-header .header-text a:visited.black {
    color: black;
}
.msp-header .header-text .text-normal {
    font-family: Inter;
    font-size: 14px;
    font-weight: 400;
}
@media (max-width: 849px) {
    .msp-header .header-text .text-normal {
        display: none;
    }
}
.msp-header .header-text .text-italic {
    font-family: Inter;
    font-style: italic;
    font-size: 14px;
    font-weight: 400;
}
@media (max-width: 849px) {
    .msp-header .header-text .text-italic {
        display: none;
    }
}
.msp-header .header-text .text-header-red {
    font-family: Inter;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: #CE2121;
}
@media (max-width: 849px) {
    .msp-header .header-text .text-header-red {
        padding-top: 20px;
        font-size: 12px;
    }
}
.msp-header .header-content-text {
    color: white;
    margin-left: auto;
    margin-right: auto;
    margin-top: 333px;
    padding-bottom: 250px;
    text-align: center;
    max-width: 861px;
}
@media (max-width: 849px) {
    .msp-header .header-content-text {
        font-size: 22px;
        margin-left: 33px;
        margin-right: 33px;
        margin-top: 165px;
    }
}
.msp-header .header-content-text .main {
    font-family: Besley;
    font-style: italic;
    font-size: 24px;
    font-weight: 400;
    line-height: 34px;
    margin-bottom: 34px;
}
@media (max-width: 849px) {
    .msp-header .header-content-text .main {
        font-size: 22px;
    }
}
.msp-header .header-content-text .secondary {
    font-family: Besley;
    font-style: normal;
    font-size: 14px;
    font-weight: 500;
}
.msp-header .header-content-text .main mark, .msp-header .header-content-text .secondary mark {
    background-color: black;
    color: white;
    padding: 10px;
}
.msp-header .menu-logo {
    margin-top: 25px;
    position: relative;
}
.msp-header .menu-logo a {
    display: contents;
}
@media (max-width: 849px) {
    .msp-header .menu-logo {
        margin-top: 30px;
    }
}
.msp-header .menu-logo .side-menu {
    background-image: url("../img/menu_closed.png");
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    right: 5%;
    top: 65px;
    width: 84px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}
.msp-header .menu-logo .side-menu.open {
    width: 365px;
    height: 665px;
    background-image: url("../img/side-menu-expanded.png");
    top: 25px;
    right: 3%;
    align-items: flex-end;
    justify-content: right;
    flex-direction: column;
}
.msp-header .menu-logo .side-menu .hamburger-button {
    background-image: url("../svg/menu_closed.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 25px;
    height: 23px;
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 10px;
    padding-bottom: 10px;
}
.msp-header .menu-logo .side-menu .hamburger-button.open {
    margin-top: 56px;
    margin-right: 47px;
    background-image: url("../svg/hamburger-x.svg");
}
.msp-header .menu-logo .side-menu .msp-primary-menu {
    margin-top: 90px;
    margin-right: 50px;
    text-align: right;
    display: none;
}
.msp-header .menu-logo .side-menu .msp-primary-menu a, .msp-header .menu-logo .side-menu .msp-primary-menu a:hover, .msp-header .menu-logo .side-menu .msp-primary-menu a:active, .msp-header .menu-logo .side-menu .msp-primary-menu a:visited {
    color: white;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
.msp-header .menu-logo .side-menu .msp-primary-menu .current-menu-item {
    position: relative;
}
.msp-header .menu-logo .side-menu .msp-primary-menu li {
    color: #FFF;
    text-align: right;
    font-family: Inter;
    font-size: 23px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 25px;
}
.msp-header .menu-logo .side-menu .msp-primary-menu li [aria-current]:is([aria-current=page]) {
    font-weight: 700;
}
.msp-header .menu-logo .side-menu .msp-primary-menu .menu-item {
    position: relative;
    margin-bottom: 20px;
    color: #333;
    text-decoration: none;
}
.msp-header .menu-logo .side-menu .msp-primary-menu .menu-item svg {
    position: absolute;
    left: 0;
    top: -50%;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    pointer-events: none;
}
.msp-header .menu-logo .side-menu .msp-primary-menu .menu-item path {
    transition: stroke-dashoffset 300ms linear;
    stroke-width: 1;
    stroke: black;
    fill: none;
    stroke-linecap: round;
}
.msp-header .menu-logo .side-menu .msp-primary-menu .menu-item:hover path {
    stroke-dashoffset: 0;
}
.msp-header .menu-logo .side-menu .msp-primary-menu.open {
    display: inline-block;
}
@media (max-width: 849px) {
    .msp-header .menu-logo .side-menu {
        width: 60px;
        height: 38px;
        top: 0px;
    }
    .msp-header .menu-logo .side-menu.open {
        width: 383px;
        height: 697px;
        right: 0px;
        top: -50px;
    }
    .msp-header .menu-logo .side-menu .hamburger-button {
        width: 18px;
        height: 14px;
    }
    .msp-header .menu-logo .side-menu .hamburger-button.open {
        margin-right: 22px;
    }
    .msp-header .menu-logo .side-menu .msp-primary-menu {
        margin-top: 40px;
    }
    .msp-header .menu-logo .side-menu .msp-primary-menu li {
        color: #FFF;
        text-align: right;
        font-family: Inter;
        font-size: 22px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
    }
}
.msp-header .menu-logo .msp-logo {
    width: 210px;
    height: 184px;
    margin-left: auto;
    margin-right: auto;
}
@media (max-width: 849px) {
    .msp-header .menu-logo .msp-logo {
        width: 100px;
        height: 87px;
    }
}

.msp-footer {
    position: relative;
}
.msp-footer a, .msp-footer a:hover, .msp-footer a:active, .msp-footer a:visited {
    color: white;
}
.msp-footer .scroll {
    cursor: pointer;
    display: none;
    position: absolute;
    right: 10%;
    top: -80px;
    margin-top: 20px;
    margin-bottom: 20px;
}
@media (min-width: 851px) {
    .msp-footer .scroll:hover {
        content: url("../../src/svg/scroll_up_hover.svg");
    }
}
@media (max-width: 849px) {
    .msp-footer .scroll {
        display: block;
        position: absolute;
        right: 33px;
        top: -80px;
        margin-top: 20px;
        margin-bottom: 20px;
    }
}
.msp-footer .reviews-title {
    font-family: Besley;
    font-size: 48px;
    font-weight: 900;
    text-align: center;
    color: #592406;
    margin-top: 40px;
}
@media (max-width: 849px) {
    .msp-footer .reviews-title {
        font-size: 28px;
    }
}
.msp-footer .reviews-container {
    margin-bottom: 42px;
    text-align: center;
}
.msp-footer .review-cards {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    height: 362px;
    justify-content: center;
    padding-top: 25px;
    padding-bottom: 425px;
}
@media (max-width: 849px) {
    .msp-footer .review-cards {
        width: 90%;
    }
}
.msp-footer .review-cards .review-card {
    margin: auto;
    width: 322px;
    height: 332px;
    background-image: url("../../src/img/card_1.jpg");
    text-align: left;
    border-radius: 15px;
    position: relative;
    bottom: 0;
    transition: bottom 0.5s linear;
}
.msp-footer .review-cards .review-card .card-text-title {
    color: #4A4A4A;
    font-family: Besley;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 30px;
    padding-top: 30px;
    margin-left: 21px;
    margin-right: 21px;
}
.msp-footer .review-cards .review-card .card-text-content {
    color: #4A4A4A;
    font-family: inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    margin-top: 20px;
    margin-left: 21px;
    margin-right: 21px;
}
.msp-footer .review-cards .review-card .card-text-author {
    color: #A0A1A1;
    font-family: inter;
    font-size: 14px;
    font-style: italic;
    font-weight: 700;
    line-height: normal;
    margin-top: 20px;
    margin-left: 21px;
    margin-right: 21px;
}
.msp-footer .review-cards .review-card:hover {
    background-image: url("../../src/img/card_1_hover.jpg");
    bottom: 18px;
}
.msp-footer .review-cards .review-card:hover .card-text-title {
    color: #D23F1F;
}
.msp-footer .review-cards .review-card:hover .card-text-content {
    color: #000;
}
.msp-footer .review-cards .review-card:hover .card-text-author {
    color: #545454;
}
.msp-footer .footer-menu {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-around;
    align-items: center;
    align-content: center;
    margin-top: -254px;
    padding-top: 250px;
    padding-bottom: 43px;
    background-image: url("../../src/svg/footer_image.svg");
    background-size: cover;
    color: #FFF;
    font-family: inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.msp-footer .footer-menu .menu-section {
    display: flex;
    align-content: center;
    flex-direction: column;
    flex-wrap: wrap;
    width: 40%;
    gap: 12px 35%;
    height: 50px;
}
.msp-footer .footer-menu .menu-section li a {
    color: white;
}
.msp-footer .footer-menu .menu-section li a:hover {
    text-shadow: -1px 0 0 white;
    transition: all 0.5s;
}
.msp-footer .footer-menu .menu-section [aria-current]:is([aria-current=page]) {
    font-weight: bold;
}
.msp-footer .footer-menu .logo-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 12px;
    gap: 10px;
    width: 20%;
}
.msp-footer .footer-menu .logo-section .socials-logo {
    display: inline-block;
    margin-left: 2.5px;
    margin-right: 2.5px;
    transition: 0.4s;
}
.msp-footer .footer-menu .logo-section .facebook:hover {
    content: url("../../src/svg/facebook on hover.svg");
}
.msp-footer .footer-menu .logo-section .instagram:hover {
    content: url("../../src/svg/instagram on hover.svg");
}
.msp-footer .footer-menu .logo-section .text-bold {
    font-weight: 700;
}
.msp-footer .footer-menu .logo-section .underlined:hover {
    text-decoration: underline;
}
@media (max-width: 849px) {
    .msp-footer .footer-menu {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    .msp-footer .footer-menu .home-section {
        order: 2;
        width: 45%;
        text-align: left;
        height: 150px;
    }
    .msp-footer .footer-menu .menu-section {
        width: 45%;
        text-align: left;
        height: 150px;
        margin-bottom: 25px;
    }
    .msp-footer .footer-menu .menu-section.first {
        order: 2;
    }
    .msp-footer .footer-menu .menu-section.second {
        order: 3;
    }
    .msp-footer .footer-menu .logo-section {
        width: 100%;
        order: 1;
        margin-bottom: 60px;
    }
    .msp-footer .footer-menu .logo-section .msp-logo {
        width: 114px;
        height: 100px;
    }
}

html.pum-open.pum-open-overlay.pum-open-scrollable body > :not([aria-modal=true]) {
    padding-right: 0 !important;
}

.popmake {
    border: none !important;
    background: white !important;
    border-radius: 20px !important;
    padding: 20px 40px 40px 40px !important;
}
@media (max-width: 599px) {
    .popmake {
        left: 5.75px !important;
    }
}
.popmake .pum-title {
    color: #592406 !important;
    font-family: Besley !important;
    font-size: 30px !important;
    font-style: normal !important;
    font-weight: 900 !important;
    line-height: normal !important;
}
.popmake .pum-close {
    width: 40px !important;
    height: 40px !important;
    background-color: #D23F1F !important;
    border: none !important;
}
.popmake h6 {
    color: #A0A1A1 !important;
    font-family: Inter !important;
    font-size: 14px !important;
    font-style: italic !important;
    font-weight: 700 !important;
    line-height: normal !important;
    margin-bottom: 10px;
}
.popmake h2 {
    color: #4A4A4A !important;
    font-family: Besley !important;
    font-size: 21px !important;
    font-style: normal !important;
    font-weight: 600 !important;
    line-height: 30px !important; /* 142.857% */
    margin-bottom: 20px;
}
.popmake p {
    color: #4A4A4A !important;
    font-family: Inter !important;
    font-size: 16px !important;
    font-style: normal !important;
    font-weight: 400 !important;
    line-height: 24px !important; /* 150% */
}
.popmake hr {
    border: 1px solid #D9D9D9 !important;
    margin-top: 30px;
    margin-bottom: 30px;
}

.error404 h1 {
    font-size: 100px;
    font-style: normal;
    font-weight: 900;
    font-family: Besley;
}
@media (max-width: 849px) {
    .error404 h1 {
        font-size: 70px;
    }
}
.error404 .header-content-text {
    margin-top: 55px;
}
.error404 .header-content-text .main {
    margin-top: 20px;
}
.error404 .header-content-text .main mark {
    color: black !important;
    background-color: white !important;
    font-family: Besley;
    font-size: 24px;
}
@media (max-width: 849px) {
    .error404 .header-content-text .main mark {
        font-size: 18px;
    }
}
.error404 .header-content-text p {
    margin-top: 15px;
}
.error404 .header-content-text a, .error404 .header-content-text a:visited, .error404 .header-content-text a:hover {
    margin-top: 40px;
    color: #FFF;
    text-align: center;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    background-color: #D23F1F;
    padding: 12px 30px;
    border-radius: 20px;
    display: inline-block;
}
.error404 .footer-menu {
    padding-top: 100px;
    margin-top: -100px;
}

.homepage {
    padding-top: 79px;
}
@media (max-width: 849px) {
    .homepage {
        padding-top: 50px;
    }
}
.homepage h1 {
    color: #592406;
    text-align: center;
    font-family: Besley;
    font-size: 48px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
}
@media (max-width: 849px) {
    .homepage h1 {
        font-size: 28px;
    }
}
.homepage .play-cards {
    width: 80%;
    height: 560px;
    justify-content: center;
    gap: 40px;
    margin-top: 35px;
    padding-top: 25px;
    padding-bottom: 25px;
    position: relative;
}
.homepage .play-cards .play-card {
    margin-left: auto;
    margin-right: auto;
    width: 320px;
    height: 520px;
    border-radius: 20px;
    border: 1px solid #DDD;
    background: #FFF;
    border-collapse: separate;
    position: relative;
    bottom: 0;
    overflow: hidden;
    transition: bottom 0.5s linear;
}
.homepage .play-cards .play-card .card-image {
    width: 320px;
    height: 240px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    position: relative;
}
.homepage .play-cards .play-card .card-image .background {
    position: absolute;
    width: 320px;
    height: 240px;
    -o-object-fit: cover;
       object-fit: cover;
    z-index: 1;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}
.homepage .play-cards .play-card .card-image .spikes {
    position: absolute;
    bottom: 0px;
    z-index: 3;
}
.homepage .play-cards .play-card .card-image .spikes-hover {
    position: absolute;
    bottom: 0px;
    z-index: 3;
    display: none;
}
.homepage .play-cards .play-card .card-image .show-date-text {
    position: relative;
    z-index: 2;
    border-radius: 20px;
    background: #FEC10E;
    display: inline-flex;
    height: 30px;
    padding: 10px 15px;
    margin-top: 10px;
    margin-left: 10px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    color: #000;
    text-align: center;
    font-family: inter;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 14px;
    text-transform: uppercase;
}
.homepage .play-cards .play-card .card-content {
    width: 320px;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 120px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    background-size: cover;
}
.homepage .play-cards .play-card .card-content .card-title {
    color: #4A4A4A;
    font-family: Besley;
    font-size: 26px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    padding-top: 15px;
}
.homepage .play-cards .play-card .card-content .card-date {
    margin-top: 15px;
    margin-bottom: 15px;
    color: #A0A1A1;
    font-family: Inter;
    font-size: 14px;
    font-style: italic;
    font-weight: 700;
    line-height: normal;
}
.homepage .play-cards .play-card .card-content .card-description {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    max-width: 280px;
    height: 70px;
    text-align: left;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #4A4A4A;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}
.homepage .play-cards .play-card .buy-ticket {
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 320px;
    height: 50px;
    flex-shrink: 0;
}
.homepage .play-cards .play-card .buy-ticket p {
    padding-top: 18px;
    padding-bottom: 18px;
    margin-left: 20px;
    color: #D23F1F;
    font-family: Inter;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 14px;
    text-transform: uppercase;
}
.homepage .play-cards .play-card:hover {
    bottom: 18px;
}
.homepage .play-cards .play-card:hover .card-image .spikes {
    content: url("../../src/svg/show_spike_hover.svg");
    margin-bottom: -3px;
}
.homepage .play-cards .play-card:hover .card-content {
    background: #FAF6E1;
}
.homepage .play-cards .play-card:hover .buy-ticket {
    background: #D23F1F;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}
.homepage .play-cards .play-card:hover .buy-ticket p {
    color: #FFF;
}
@media (max-width: 849px) {
    .homepage .play-cards {
        height: auto;
        width: 320px;
        justify-content: center;
    }
    .homepage .play-cards .swiper-wrapper {
        display: block;
    }
    .homepage .play-cards .swiper-wrapper .play-card {
        margin-bottom: 20px;
    }
}
.homepage .navigation-buttons {
    width: 100%;
    height: 50px;
    position: relative;
}
.homepage .navigation-buttons .swiper-button-prev {
    width: 50px;
    height: 50px;
    position: absolute;
    left: 50px;
    bottom: 300px;
}
.homepage .navigation-buttons .swiper-button-prev.swiper-button-disabled {
    filter: grayscale(100%);
}
.homepage .navigation-buttons .swiper-button-prev .left-arrow {
    content: url("../svg/back button.svg");
    height: 50px;
    width: 50px;
    border: 0;
    margin: 10px;
}
.homepage .navigation-buttons .swiper-button-prev .left-arrow:hover {
    content: url("../svg/back button on hover.svg");
}
.homepage .navigation-buttons .swiper-button-next {
    width: 50px;
    height: 50px;
    position: absolute;
    right: 50px;
    bottom: 300px;
}
.homepage .navigation-buttons .swiper-button-next.swiper-button-disabled {
    filter: grayscale(100%);
}
.homepage .navigation-buttons .swiper-button-next .right-arrow {
    content: url("../svg/next button.svg");
    height: 50px;
    width: 50px;
    border: 0;
    margin: 10px;
}
.homepage .navigation-buttons .swiper-button-next .right-arrow:hover {
    content: url("../svg/next button on hover.svg");
}
@media (max-width: 849px) {
    .homepage .navigation-buttons {
        display: none;
    }
}
.homepage .see-previous-link {
    margin-bottom: 100px;
    width: 100%;
    display: flex;
    justify-content: center;
    text-align: center;
}
.homepage .see-previous-link a {
    display: flex;
    max-width: 135px;
    color: #D23F1F;
    font-family: Inter;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 14px;
    text-transform: uppercase;
    position: relative;
}
.homepage .see-previous-link a img {
    width: 145px;
    -o-object-fit: contain;
       object-fit: contain;
    height: 40px;
    display: none;
    position: absolute;
    top: 5px;
}
@media (max-width: 849px) {
    .homepage .see-previous-link a img {
        display: block;
    }
}
.homepage .see-previous-link :hover img {
    display: block;
}
.homepage .gallery-cards {
    margin: auto;
    max-width: 1400px;
    margin-top: 40px;
    margin-bottom: 90px;
    overflow: visible;
}
.homepage .gallery-cards .swiper-pagination {
    bottom: -40px;
    --swiper-theme-color: #000;
}
.homepage .gallery-cards .swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    border: 1px solid black;
    --swiper-pagination-bullet-inactive-color: #fff;
}
.homepage .gallery-cards .gallery-card {
    margin: auto;
    max-width: 1400px;
    height: 800px;
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000 98.96%);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    border-radius: 40px;
    text-align: center;
    display: flex;
    flex-direction: column-reverse;
    position: relative;
    overflow: visible;
}
.homepage .gallery-cards .gallery-card .background-image {
    position: absolute;
    width: 100%;
    height: 800px;
    -o-object-fit: cover;
       object-fit: cover;
    z-index: -1;
    border-radius: 40px;
}
.homepage .gallery-cards .gallery-card .underline {
    width: 190px;
    height: 10px;
    position: relative;
    margin: auto;
    margin-bottom: 40px;
}
.homepage .gallery-cards .gallery-card .view-album {
    color: #D23F1F;
    text-align: center;
    font-family: Inter;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 15px;
    text-transform: uppercase;
}
.homepage .gallery-cards .gallery-card .gallery-description {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    max-width: 650px;
    height: 80px;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #FFF;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
}
.homepage .gallery-cards .gallery-card .gallery-title {
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
    color: #FFF;
    text-align: center;
    font-family: Besley;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.homepage .gallery-cards .gallery-card .photos-videos {
    margin-bottom: 20px;
}
.homepage .gallery-cards .gallery-card .photos-videos .photos {
    z-index: 4;
    border-radius: 20px;
    background: #D23F1F;
    display: inline-flex;
    height: 30px;
    padding: 10px 15px;
    margin-top: 10px;
    margin-left: 10px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    color: #FFFFFF;
    text-align: center;
    font-family: inter;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 14px;
    text-transform: uppercase;
}
.homepage .gallery-cards .gallery-card .photos-videos .videos {
    z-index: 4;
    border-radius: 20px;
    background: #FAF6E1;
    display: inline-flex;
    height: 30px;
    padding: 10px 15px;
    margin-top: 10px;
    margin-left: 10px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    color: #000000;
    text-align: center;
    font-family: inter;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 14px;
    text-transform: uppercase;
}
.homepage .gallery-cards .gallery-card .upper-image {
    position: absolute;
    top: -20px;
    right: -20px;
}
.homepage .gallery-cards .gallery-card .lower-image {
    position: absolute;
    bottom: -40px;
    left: -40px;
}
@media (max-width: 849px) {
    .homepage .gallery-cards .gallery-card {
        height: 440px;
        width: 320px;
        border-radius: 20px;
    }
    .homepage .gallery-cards .gallery-card .background-image {
        height: 440px;
        border-radius: 20px;
    }
    .homepage .gallery-cards .gallery-card .upper-image {
        display: none;
    }
    .homepage .gallery-cards .gallery-card .lower-image {
        display: none;
    }
    .homepage .gallery-cards .gallery-card .photos-videos {
        position: absolute;
        top: 0px;
        left: 0px;
    }
    .homepage .gallery-cards .gallery-card .gallery-title {
        font-size: 20px;
        font-weight: 700;
        line-height: 26px;
        margin-bottom: 15px;
    }
    .homepage .gallery-cards .gallery-card .gallery-description {
        height: 54px;
        margin-left: 20px;
        margin-right: 20px;
        font-size: 14px;
        font-weight: 400;
        line-height: 18px;
    }
}

.our-story {
    margin-bottom: 100px;
}
@media (max-width: 849px) {
    .our-story {
        margin-bottom: 0px;
    }
}
.our-story h1 {
    color: #592406;
    text-align: center;
    font-family: Besley;
    font-size: 48px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    margin-top: 64px;
}
@media (max-width: 849px) {
    .our-story h1 {
        font-size: 28px;
    }
}
.our-story .main-text {
    margin-left: auto;
    margin-right: auto;
    margin-top: 36px;
    margin-bottom: 80px;
    max-width: 1340px;
    width: 80%;
    display: flex;
    flex-direction: column;
    gap: 34px;
}
.our-story .main-text p {
    width: 100%;
    color: #000;
    text-align: center;
    font-family: Inter;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 34px;
}
@media (max-width: 849px) {
    .our-story .main-text p {
        font-size: 16px;
        line-height: 22px;
    }
}
@media (max-width: 849px) {
    .our-story .main-text {
        max-width: 320px;
        gap: 22px;
    }
}
.our-story .gallery {
    margin-left: auto;
    margin-right: auto;
    max-width: 1340px;
    width: 80%;
}
@media (max-width: 849px) {
    .our-story .gallery {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        max-width: 320px;
    }
}
.our-story .gallery img {
    border-radius: 20px;
}
@media (max-width: 849px) {
    .our-story .gallery img {
        width: 100%;
    }
}
.our-story .wp-block-image img {
    margin-left: auto;
    margin-right: auto;
    border-radius: 20px;
    max-width: 1340px;
    width: 80%;
}
@media (max-width: 849px) {
    .our-story .wp-block-image img {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        max-width: 320px;
    }
}

.get-involved {
    text-align: center;
}
.get-involved h1 {
    color: #592406;
    text-align: center;
    font-family: Besley;
    font-size: 48px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    margin-bottom: 36px;
    margin-top: 60px;
}
@media (max-width: 849px) {
    .get-involved h1 {
        font-size: 28px;
        margin-bottom: 20px;
    }
}
.get-involved a, .get-involved a:hover, .get-involved a:active, .get-involved a:visited {
    color: #D23F1F;
    font-family: Inter;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 34px;
    text-decoration-line: underline;
}
@media (max-width: 849px) {
    .get-involved a, .get-involved a:hover, .get-involved a:active, .get-involved a:visited {
        font-size: 16px;
        font-weight: 400;
        line-height: 22px;
    }
}
.get-involved h2 {
    color: #592406;
    text-align: center;
    font-family: Besley;
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 40px;
}
@media (max-width: 849px) {
    .get-involved h2 {
        font-size: 18px;
        margin-bottom: 20px;
    }
}
.get-involved p {
    color: #000;
    text-align: center;
    font-family: Inter;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 34px; /* 141.667% */
}
@media (max-width: 849px) {
    .get-involved p {
        font-size: 16px;
        line-height: 22px; /* 137.5% */
    }
}
.get-involved .first-section {
    margin-top: 60px;
    margin-bottom: 81px;
    width: 50%;
    margin-left: auto;
    margin-right: auto;
}
@media (max-width: 849px) {
    .get-involved .first-section {
        margin-bottom: 40px;
        width: 85%;
    }
}
.get-involved .second-section {
    margin-top: 80px;
    margin-bottom: 110px;
    width: 50%;
    margin-left: auto;
    margin-right: auto;
}
@media (max-width: 849px) {
    .get-involved .second-section {
        margin-top: 40px;
        margin-bottom: 60px;
        width: 85%;
    }
}
.get-involved .gallery-section {
    position: relative;
}
.get-involved .get-involved-gallery {
    max-width: 860px;
    height: 560px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 20px;
}
@media (max-width: 849px) {
    .get-involved .get-involved-gallery {
        max-width: 85%;
        height: auto;
    }
}
.get-involved .navigation-buttons {
    z-index: 3;
    width: 54%;
    height: 50px;
    position: absolute;
    left: 23%;
    bottom: 50%;
    display: flex;
    justify-content: space-between;
}
@media (max-width: 849px) {
    .get-involved .navigation-buttons {
        height: 30px;
        width: 102%;
        left: 0;
    }
}
.get-involved .navigation-buttons .swiper-button-prev {
    width: 50px;
    height: 50px;
}
.get-involved .navigation-buttons .swiper-button-prev.swiper-button-disabled {
    filter: grayscale(100%);
}
.get-involved .navigation-buttons .swiper-button-prev .left-arrow {
    content: url("../svg/back button.svg");
    height: 50px;
    width: 50px;
    border: 0;
    margin: 10px;
}
.get-involved .navigation-buttons .swiper-button-prev .left-arrow:hover {
    content: url("../svg/back button on hover.svg");
}
@media (max-width: 849px) {
    .get-involved .navigation-buttons .swiper-button-prev .left-arrow {
        height: 30px;
        width: 30px;
        margin-right: 0px;
    }
}
.get-involved .navigation-buttons .swiper-button-next {
    width: 50px;
    height: 50px;
    margin-right: 15px;
}
.get-involved .navigation-buttons .swiper-button-next.swiper-button-disabled {
    filter: grayscale(100%);
}
.get-involved .navigation-buttons .swiper-button-next .right-arrow {
    content: url("../svg/next button.svg");
    height: 50px;
    width: 50px;
    border: 0;
    margin: 10px;
}
.get-involved .navigation-buttons .swiper-button-next .right-arrow:hover {
    content: url("../svg/next button on hover.svg");
}
@media (max-width: 849px) {
    .get-involved .navigation-buttons .swiper-button-next .right-arrow {
        height: 30px;
        width: 30px;
        margin-left: 0px;
    }
}
@media (max-width: 849px) {
    .get-involved .navigation-buttons {
        height: 30px;
    }
}

.shows {
    margin-bottom: 100px;
}
@media (max-width: 849px) {
    .shows {
        margin-bottom: 0px;
    }
}
.shows h1 {
    color: #592406;
    text-align: center;
    font-family: Besley;
    font-size: 48px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    margin-top: 64px;
    margin-bottom: 50px;
}
@media (max-width: 849px) {
    .shows h1 {
        font-size: 28px;
    }
}
.shows .current-events {
    width: 1400px;
    margin-left: auto;
    margin-right: auto;
    max-height: 1080px;
    display: flex;
    gap: 25px;
    flex-direction: column;
    flex-wrap: wrap;
}
@media (max-width: 1399px) {
    .shows .current-events {
        width: 680px;
        max-height: 2160px;
        flex-direction: row;
    }
}
@media (max-width: 850px) {
    .shows .current-events {
        width: 320px;
        max-height: -moz-fit-content;
        max-height: fit-content;
        flex-direction: row;
    }
}
.shows .current-events .left-div {
    width: 50%;
}
@media (max-width: 1399px) {
    .shows .current-events .left-div {
        width: 100%;
    }
}
.shows .current-events .right-div {
    width: 50%;
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}
@media (max-width: 1399px) {
    .shows .current-events .right-div {
        width: 100%;
    }
}
.shows .current-events .play-card {
    width: 320px;
    height: 520px;
    margin: auto;
    border-radius: 20px;
    border: 1px solid #DDD;
    background: #FFF;
    border-collapse: separate;
    position: relative;
    bottom: 0;
    overflow: hidden;
    transition: bottom 0.5s linear;
}
.shows .current-events .play-card.current .performed-by {
    display: none;
}
.shows .current-events .play-card.current .directed-by {
    display: none;
}
.shows .current-events .play-card.current .spikes {
    content: url("../../src/svg/show_spikes.svg");
}
@media (min-width: 851px) {
    .shows .current-events .play-card.current {
        width: 680px;
        height: 1065px;
    }
    .shows .current-events .play-card.current .spikes {
        content: url("../../src/svg/red_spikes_event.svg");
    }
    .shows .current-events .play-card.current .card-image {
        width: 680px;
        height: 507px;
    }
    .shows .current-events .play-card.current .card-image .background {
        position: absolute;
        width: 680px;
        height: 507px;
        -o-object-fit: fill;
           object-fit: fill;
        z-index: 1;
        border-top-left-radius: 20px;
        border-top-right-radius: 20px;
    }
    .shows .current-events .play-card.current .card-content {
        padding-left: 40px;
        width: 100%;
        height: 100%;
        background: #D23F1F;
    }
    .shows .current-events .play-card.current .card-content .card-title {
        color: #FFF;
        font-family: Besley;
        font-size: 48px;
        font-style: normal;
        font-weight: 600;
        line-height: normal;
        margin-bottom: 20px;
    }
    .shows .current-events .play-card.current .card-content .card-date {
        color: #FAF7EB;
        font-family: Inter;
        font-size: 22px;
        font-style: italic;
        font-weight: 700;
        line-height: normal;
        margin-bottom: 40px;
    }
    .shows .current-events .play-card.current .card-content .card-description {
        color: #FFF;
        font-family: Inter;
        font-size: 24px;
        font-style: normal;
        font-weight: 400;
        line-height: 34px;
        max-width: 100%;
        height: 140px;
        display: -webkit-box;
        -webkit-line-clamp: 4;
        -webkit-box-orient: vertical;
    }
    .shows .current-events .play-card.current .card-content .directed-by {
        margin-top: 40px;
        display: block;
        color: #FFF;
        font-family: Inter;
        font-size: 20px;
        font-style: normal;
        font-weight: 400;
        line-height: 32px;
    }
    .shows .current-events .play-card.current .card-content .directed-by span {
        font-style: italic;
        font-weight: 300;
    }
    .shows .current-events .play-card.current .card-content .performed-by {
        display: block;
        color: #FFF;
        font-family: Inter;
        font-size: 20px;
        font-style: normal;
        font-weight: 400;
        line-height: 32px;
    }
    .shows .current-events .play-card.current .card-content .performed-by span {
        font-style: italic;
        font-weight: 300;
    }
    .shows .current-events .play-card.current .card-content .buy-ticket {
        width: 100%;
        background: #D23F1F;
    }
    .shows .current-events .play-card.current .card-content .buy-ticket p {
        margin-left: 40px;
        color: white;
    }
    .shows .current-events .play-card.current:hover .buy-ticket {
        background: #000;
    }
}
.shows .current-events .play-card .card-image {
    width: 320px;
    height: 240px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    position: relative;
}
.shows .current-events .play-card .card-image .background {
    position: absolute;
    width: 320px;
    height: 240px;
    -o-object-fit: fill;
       object-fit: fill;
    z-index: 1;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}
.shows .current-events .play-card .card-image .spikes {
    position: absolute;
    bottom: 0px;
    z-index: 3;
}
.shows .current-events .play-card .card-image .spikes-hover {
    position: absolute;
    bottom: 0px;
    z-index: 3;
    display: none;
}
.shows .current-events .play-card .card-image .show-date-text {
    position: relative;
    z-index: 2;
    border-radius: 20px;
    background: #FEC10E;
    display: inline-flex;
    height: 30px;
    padding: 10px 15px;
    margin-top: 10px;
    margin-left: 10px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    color: #000;
    text-align: center;
    font-family: inter;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 14px;
    text-transform: uppercase;
}
.shows .current-events .play-card .card-content {
    width: 320px;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 120px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    background-size: cover;
}
.shows .current-events .play-card .card-content .card-title {
    color: #4A4A4A;
    font-family: Besley;
    font-size: 26px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    padding-top: 15px;
}
.shows .current-events .play-card .card-content .card-date {
    margin-top: 15px;
    margin-bottom: 15px;
    color: #A0A1A1;
    font-family: Inter;
    font-size: 14px;
    font-style: italic;
    font-weight: 700;
    line-height: normal;
}
.shows .current-events .play-card .card-content .card-description {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    max-width: 280px;
    height: 70px;
    text-align: left;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #4A4A4A;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}
.shows .current-events .play-card .buy-ticket {
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 320px;
    height: 50px;
    flex-shrink: 0;
}
.shows .current-events .play-card .buy-ticket p {
    padding-top: 18px;
    padding-bottom: 18px;
    margin-left: 20px;
    color: #D23F1F;
    font-family: Inter;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 14px;
    text-transform: uppercase;
}
.shows .current-events .play-card:not(.current):hover {
    bottom: 18px;
}
.shows .current-events .play-card:not(.current):hover .card-image .spikes {
    content: url("../../src/svg/show_spike_hover.svg");
    margin-bottom: -3px;
}
.shows .current-events .play-card:not(.current):hover .card-content {
    background: #FAF6E1;
}
.shows .current-events .play-card:not(.current):hover .buy-ticket {
    background: #D23F1F;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}
.shows .current-events .play-card:not(.current):hover .buy-ticket p {
    color: #FFF;
}
.shows .past-events {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    row-gap: 40px;
    height: 520px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 50px;
    flex-wrap: wrap;
    overflow: hidden;
}
@media (max-width: 849px) {
    .shows .past-events {
        height: auto;
        margin-left: auto;
        margin-right: auto;
    }
}
.shows .past-events .play-card {
    width: 320px;
    height: 520px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 20px;
    border: 1px solid #DDD;
    background: #FFF;
    border-collapse: separate;
    position: relative;
    bottom: 0;
    overflow: hidden;
    display: block;
    flex: 0 0 23%;
}
@media (max-width: 1399px) {
    .shows .past-events .play-card {
        flex-basis: 30%;
    }
}
@media (max-width: 1099px) {
    .shows .past-events .play-card {
        flex-basis: 40%;
    }
}
@media (max-width: 849px) {
    .shows .past-events .play-card {
        flex-basis: 100%;
        max-width: 320px;
    }
}
.shows .past-events .play-card .card-image {
    width: 100%;
    height: 240px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    position: relative;
}
.shows .past-events .play-card .card-image .background {
    position: absolute;
    width: 100%;
    height: 240px;
    -o-object-fit: fill;
       object-fit: fill;
    z-index: 1;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}
.shows .past-events .play-card .card-image .spikes {
    position: absolute;
    bottom: 0px;
    z-index: 3;
}
.shows .past-events .play-card .card-image .show-date-text {
    position: relative;
    z-index: 2;
    border-radius: 20px;
    background: #FEC10E;
    display: inline-flex;
    height: 30px;
    padding: 10px 15px;
    margin-top: 10px;
    margin-left: 10px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    color: #000;
    text-align: center;
    font-family: inter;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 14px;
    text-transform: uppercase;
}
.shows .past-events .play-card .card-content {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 120px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    background-size: cover;
}
.shows .past-events .play-card .card-content .card-title {
    color: #4A4A4A;
    font-family: Besley;
    font-size: 26px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    padding-top: 15px;
}
.shows .past-events .play-card .card-content .card-date {
    margin-top: 15px;
    margin-bottom: 15px;
    color: #A0A1A1;
    font-family: Inter;
    font-size: 14px;
    font-style: italic;
    font-weight: 700;
    line-height: normal;
}
.shows .past-events .play-card .card-content .card-description {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    max-width: 280px;
    height: 70px;
    text-align: left;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #4A4A4A;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}
.shows .past-events .play-card .buy-ticket {
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 320px;
    height: 50px;
    flex-shrink: 0;
}
.shows .past-events .play-card .buy-ticket p {
    padding-top: 18px;
    padding-bottom: 18px;
    margin-left: 20px;
    color: #D23F1F;
    font-family: Inter;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 14px;
    text-transform: uppercase;
}
.shows .see-more-link {
    margin-bottom: 100px;
    width: 100%;
    display: flex;
    justify-content: center;
    text-align: center;
}
.shows .see-more-link a {
    display: flex;
    max-width: 135px;
    color: #D23F1F;
    font-family: Inter;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 14px;
    text-transform: uppercase;
    position: relative;
}
.shows .see-more-link a img {
    width: 145px;
    -o-object-fit: contain;
       object-fit: contain;
    height: 40px;
    display: none;
    position: absolute;
    top: 5px;
}
@media (max-width: 849px) {
    .shows .see-more-link a img {
        display: block;
    }
}
.shows .see-more-link :hover img {
    display: block;
}

.gallery h1 {
    margin-top: 60px;
    color: #592406;
    text-align: center;
    font-family: Besley;
    font-size: 48px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
}
.gallery .gallery-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    overflow: hidden;
    width: 80%;
    height: 1440px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 60px;
    padding-top: 40px;
    gap: 40px;
}
@media (max-width: 849px) {
    .gallery .gallery-cards {
        width: 90%;
        height: 1920px;
    }
}
.gallery .upper-image, .gallery .lower-image {
    display: none;
}
.gallery .gallery-card {
    flex-basis: 25%;
    bottom: 0px;
    transition: bottom 0.5s linear;
    margin: auto;
    max-width: 320px;
    height: 440px;
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000 98.96%);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    border-radius: 20px;
    text-align: center;
    display: flex;
    flex-direction: column-reverse;
    position: relative;
    overflow: visible;
}
@media (max-width: 849px) {
    .gallery .gallery-card {
        flex-basis: 100%;
    }
}
.gallery .gallery-card:hover {
    bottom: 20px;
    box-shadow: 0px 15px 0px -7px #AAA, 0px 30px 0px -14px #DEDEDE;
}
.gallery .gallery-card .background-image {
    position: absolute;
    width: 100%;
    height: 440px;
    -o-object-fit: cover;
       object-fit: cover;
    z-index: -1;
    border-radius: 20px;
}
.gallery .gallery-card .underline {
    width: 190px;
    height: 10px;
    position: relative;
    margin: auto;
    margin-bottom: 40px;
}
.gallery .gallery-card .view-album {
    color: #D23F1F;
    text-align: center;
    font-family: Inter;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 15px;
    text-transform: uppercase;
}
.gallery .gallery-card .gallery-description {
    display: none;
}
.gallery .gallery-card .gallery-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 26px;
    margin-bottom: 15px;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    color: #FFF;
    text-align: center;
    font-family: Besley;
    font-style: normal;
    line-height: normal;
}
.gallery .gallery-card .photos-videos {
    margin-bottom: 20px;
    position: absolute;
    top: 10px;
    left: 10px;
}
.gallery .gallery-card .photos-videos .photos {
    z-index: 4;
    border-radius: 20px;
    background: #D23F1F;
    display: inline-flex;
    height: 30px;
    padding: 10px 15px;
    margin-top: 10px;
    margin-left: 10px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    color: #FFFFFF;
    text-align: center;
    font-family: inter;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 14px;
    text-transform: uppercase;
}
.gallery .gallery-card .photos-videos .videos {
    z-index: 4;
    border-radius: 20px;
    background: #FAF6E1;
    display: inline-flex;
    height: 30px;
    padding: 10px 15px;
    margin-top: 10px;
    margin-left: 10px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    color: #000000;
    text-align: center;
    font-family: inter;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 14px;
    text-transform: uppercase;
}
.gallery .see-more-link {
    margin-top: 60px;
    margin-bottom: 100px;
    width: 100%;
    display: flex;
    justify-content: center;
    text-align: center;
}
@media (max-width: 849px) {
    .gallery .see-more-link {
        margin-top: 40px;
    }
}
.gallery .see-more-link a {
    display: flex;
    max-width: 135px;
    color: #D23F1F;
    font-family: Inter;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 14px;
    text-transform: uppercase;
    position: relative;
}
.gallery .see-more-link a img {
    width: 145px;
    -o-object-fit: contain;
       object-fit: contain;
    height: 40px;
    display: none;
    position: absolute;
    top: 5px;
}
@media (max-width: 849px) {
    .gallery .see-more-link a img {
        display: block;
    }
}
.gallery .see-more-link :hover img {
    display: block;
}

.event-page .page-selector {
    width: 490px;
    height: 50px;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid;
    border-color: #DDD;
    border-radius: 40px;
    display: flex;
    justify-content: space-around;
    align-items: center;
}
@media (max-width: 849px) {
    .event-page .page-selector {
        width: 320px;
    }
}
.event-page .page-selector span {
    padding-left: 50px;
    padding-right: 50px;
    padding-top: 13px;
    padding-bottom: 13px;
    border-radius: 40px;
    font-family: Inter;
    font-size: 16px;
    font-weight: 400;
    font-style: normal;
    line-height: normal;
    cursor: pointer;
}
@media (max-width: 849px) {
    .event-page .page-selector span {
        padding-left: 20px;
        padding-right: 20px;
        padding-top: 12px;
        padding-bottom: 12px;
    }
}
.event-page .page-selector span.active {
    color: #FFF;
    background-color: #D23F1F;
    font-weight: 500;
}
.event-page .not-found {
    color: #000;
    text-align: center;
    font-family: Inter;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 34px;
}
.event-page .description-div {
    margin-top: 45px;
    margin-bottom: 50px;
    display: none;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    max-width: 50%;
}
@media (max-width: 849px) {
    .event-page .description-div {
        max-width: 80%;
        margin-left: auto;
        margin-right: auto;
    }
}
.event-page .description-div.active {
    display: block;
}
.event-page .cast-div {
    margin-top: 45px;
    display: none;
    margin-left: auto;
    margin-right: auto;
    max-width: 80%;
    margin-bottom: 50px;
}
.event-page .cast-div.active {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}
@media (max-width: 849px) {
    .event-page .cast-div.active {
        gap: 20px;
    }
}
.event-page .cast-div .cast-member {
    position: relative;
    width: 440px;
    height: 120px;
    border-radius: 20px;
    background: #FFF;
    display: inline-flex;
    align-items: center;
    gap: 40px;
}
@media (max-width: 849px) {
    .event-page .cast-div .cast-member {
        width: 320px;
        height: 80px;
    }
}
.event-page .cast-div .cast-member .cast-image {
    width: 120px;
    height: 120px;
    border-radius: 20px;
    -o-object-fit: cover;
       object-fit: cover;
    display: block;
}
@media (max-width: 849px) {
    .event-page .cast-div .cast-member .cast-image {
        width: 80px;
        height: 80px;
    }
}
.event-page .cast-div .cast-member .cast-details p {
    color: #000;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}
@media (max-width: 849px) {
    .event-page .cast-div .cast-member .cast-details p {
        font-size: 12px;
    }
}
.event-page .cast-div .cast-member .cast-details .cast-name {
    font-weight: 900;
    margin-bottom: 10px;
}
.event-page .program-div {
    display: none;
    margin-top: 45px;
    margin-bottom: 50px;
    width: 50%;
    margin-left: auto;
    margin-right: auto;
    border-radius: 40px;
    overflow: hidden;
}
@media (max-width: 849px) {
    .event-page .program-div {
        width: 80%;
    }
}
.event-page .program-div img {
    -o-object-fit: contain;
       object-fit: contain;
    margin: auto;
    border-radius: 20px;
}
.event-page .program-div.active {
    display: block;
}
.event-page .ticket-information {
    width: 100%;
    background: #fff;
    box-shadow: 0px 330px 0px 0px white;
    padding-bottom: 80px;
    position: relative;
    text-align: center;
}
.event-page .ticket-information .spikes {
    background-image: url("../../src/svg/white-spikes-event-page.svg");
    width: 100%;
    height: 10px;
    background-repeat: repeat;
    position: absolute;
    top: -10px;
}
.event-page .ticket-information h1, .event-page .ticket-information h2 {
    color: #592406;
    text-align: center;
    font-family: Besley;
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    padding-top: 95px;
    margin-bottom: 20px;
}
@media (max-width: 849px) {
    .event-page .ticket-information h1, .event-page .ticket-information h2 {
        font-size: 18px;
        padding-top: 55px;
    }
}
.event-page .ticket-information p {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    color: #000;
    text-align: center;
    font-family: Inter;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 34px;
}
@media (max-width: 849px) {
    .event-page .ticket-information p {
        font-size: 16px;
        line-height: 22px;
    }
}
.event-page .ticket-information .tables {
    margin-top: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 60px;
}
.event-page .ticket-information .tables .table-holder {
    width: 410px;
    height: auto;
}
.event-page .ticket-information .tables h3 {
    color: #4A4A4A;
    text-align: center;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    display: inline-block;
    margin-bottom: 20px;
}
@media (max-width: 849px) {
    .event-page .ticket-information .tables h3 {
        font-size: 16px;
    }
}
.event-page .ticket-information .tables table {
    display: inline-table;
    border-collapse: collapse;
    border-radius: 20px;
    border-style: hidden;
    box-shadow: 0 0 0 1px #DDD;
    width: 410px;
    height: 200px;
    table-layout: fixed;
    text-align: left;
}
@media (max-width: 849px) {
    .event-page .ticket-information .tables table {
        width: 80%;
    }
}
.event-page .ticket-information .tables table tr {
    border: 1px solid #DDD;
    border-radius: 20px;
}
.event-page .ticket-information .tables table tr:first-child th:first-child {
    border-top-left-radius: 20px;
}
.event-page .ticket-information .tables table tr:first-child th:last-child {
    border-top-right-radius: 20px;
}
.event-page .ticket-information .tables table th {
    background-color: #FCF8F4;
    color: #A0A1A1;
    text-align: center;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}
.event-page .ticket-information .tables table th:first-child {
    text-align: left;
    padding-left: 50px;
}
.event-page .ticket-information .tables table td:first-child {
    text-align: left;
    padding-left: 50px;
}
.event-page .ticket-information .tables table th:last-child {
    text-align: right;
    padding-right: 50px;
}
.event-page .ticket-information .tables table td:last-child {
    text-align: right;
    padding-right: 50px;
}
.event-page .ticket-information .tables table td {
    color: #000;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}
.event-page .ticket-information .prices-mentions p {
    color: #4A4A4A;
    text-align: center;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px; /* 155.556% */
}
.event-page .ticket-information .contact {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 60px;
    margin-bottom: 100px;
}
@media (max-width: 849px) {
    .event-page .ticket-information .contact .icon-div {
        padding-bottom: 20px;
    }
}
@media (max-width: 849px) {
    .event-page .ticket-information .contact a {
        width: 80%;
        align-items: center;
        gap: 10px;
    }
}
.event-page .ticket-information .contact img {
    display: inline-block;
    margin-right: 10px;
    width: 20px;
    height: 20px;
    margin-left: 20px;
}
.event-page .ticket-information .contact p {
    color: #000;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 34px; /* 212.5% */
    margin-top: 13px;
    margin-bottom: 13px;
    margin-right: 20px;
}
@media (max-width: 849px) {
    .event-page .ticket-information .contact p {
        width: -moz-fit-content;
        width: fit-content;
        font-size: 14px;
        line-height: 20px;
        margin-left: -10px;
        display: inline-block;
    }
}
.event-page .ticket-information .contact a, .event-page .ticket-information .contact a:hover, .event-page .ticket-information .contact a:active, .event-page .ticket-information .contact a:visited {
    color: white;
    border-radius: 20px;
    background: #FCF8F4;
    text-align: center;
    align-items: center;
    justify-content: center;
    display: flex;
    height: 60px;
}
.event-page .ticket-information .season-tickets {
    width: 50%;
    margin-left: auto;
    margin-right: auto;
}
@media (max-width: 849px) {
    .event-page .ticket-information .season-tickets {
        width: 90%;
    }
}
.event-page .ticket-information .season-tickets h1 {
    color: #592406;
    text-align: center;
    font-family: Besley;
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    padding-top: 0px;
    margin-bottom: 40px;
}
@media (max-width: 849px) {
    .event-page .ticket-information .season-tickets h1 {
        line-height: 28px;
        font-size: 18px;
    }
}
.event-page .ticket-information .season-tickets p {
    color: #000;
    text-align: center;
    font-family: Inter;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 34px; /* 141.667% */
}
@media (max-width: 849px) {
    .event-page .ticket-information .season-tickets p {
        line-height: 22px;
        font-size: 16px;
    }
}
.event-page .ticket-information .instructions {
    margin-top: 40px;
    text-align: left;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    gap: 20px;
    margin-left: auto;
    margin-right: auto;
    width: 80%;
    margin-bottom: 100px;
}
.event-page .ticket-information .instructions div {
    width: 100%;
    display: flex;
    gap: 20px;
    align-items: center;
}
.event-page .ticket-information .instructions span {
    height: 34px;
    color: #D23F1F;
    text-align: center;
    font-family: Besley;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    border-radius: 40px;
    background: #FCF8F4;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 2px;
    padding-bottom: 2px;
}
.event-page .ticket-information .instructions p {
    color: #4A4A4A;
    display: block;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 34px; /* 188.889% */
    align-self: left;
    text-align: left;
    min-width: 80%;
}
@media (max-width: 849px) {
    .event-page .ticket-information .instructions p {
        font-size: 14px;
    }
}
@media (max-width: 849px) {
    .event-page .ticket-information .seating-chart {
        display: none;
    }
}
.event-page .ticket-information .seating-information {
    display: none;
}
@media (max-width: 849px) {
    .event-page .ticket-information .seating-information {
        display: block;
        color: #4A4A4A;
        text-align: center;
        font-family: Inter;
        font-size: 16px;
        font-style: normal;
        font-weight: 500;
        line-height: 24px; /* 150% */
        margin-bottom: 20px;
    }
}
.event-page .ticket-information .seating-chart-button {
    display: none;
}
@media (max-width: 849px) {
    .event-page .ticket-information .seating-chart-button {
        display: block;
        color: #000;
        text-align: center;
        font-family: Inter;
        font-size: 24px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
        background-color: #F4E4D3;
        border-radius: 20px;
        width: -moz-fit-content;
        width: fit-content;
        margin-left: auto;
        margin-right: auto;
        padding-left: 50px;
        padding-right: 50px;
        padding-top: 12px;
        padding-bottom: 12px;
    }
}

.event-header .container {
    position: relative;
    width: 95%;
    height: 620px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 200px;
}
@media (max-width: 849px) {
    .event-header .container {
        width: 100%;
        height: 320px;
    }
}
.event-header .header-image {
    -o-object-fit: cover;
       object-fit: cover;
    display: block;
    width: 100%;
    height: 100%;
}
@media (max-width: 849px) {
    .event-header .header-image {
        width: 100%;
    }
}
.event-header .menu-logo {
    margin-bottom: 240px;
}
.event-header .menu-logo a {
    display: contents;
}
@media (max-width: 849px) {
    .event-header .menu-logo {
        margin-bottom: 95px;
    }
}
.event-header .menu-logo .back-button {
    width: 50px;
    height: 50px;
    position: absolute;
    top: 50px;
    left: 30px;
}
@media (max-width: 849px) {
    .event-header .menu-logo .back-button {
        top: -10px;
    }
}
.event-header .menu-logo .back-button .left-arrow {
    content: url("../svg/back button.svg");
    height: 50px;
    width: 50px;
    border: 0;
    margin: 10px;
}
@media (min-width: 851px) {
    .event-header .menu-logo .back-button .left-arrow:hover {
        content: url("../svg/back button on hover.svg");
    }
}
@media (max-width: 849px) {
    .event-header .menu-logo .back-button .left-arrow {
        height: 38px;
        width: 38px;
        margin-right: 0px;
    }
}
.event-header .header-spikes {
    position: absolute;
    width: 100%;
    bottom: 0px;
}
@media (max-width: 849px) {
    .event-header .header-spikes {
        display: none;
    }
}
.event-header .show-date-div {
    margin-left: auto;
    margin-right: auto;
    width: -moz-max-content;
    width: max-content;
}
.event-header .show-date-text {
    position: relative;
    z-index: 2;
    border-radius: 20px;
    background: #FEC10E;
    display: inline-flex;
    height: 30px;
    padding: 20px 30px;
    margin-top: 10px;
    margin-left: auto;
    margin-right: auto;
    vertical-align: middle;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    color: #000;
    text-align: center;
    font-family: inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 14px;
    text-transform: uppercase;
}
@media (max-width: 849px) {
    .event-header .show-date-text {
        font-size: 12px;
    }
}
.event-header .event-title {
    position: relative;
    margin-left: auto;
    margin-right: auto;
    width: -moz-fit-content;
    width: fit-content;
    text-align: center;
    background-image: url("../img/title_image.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    min-width: 700px;
    min-height: 200px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    align-content: center;
}
@media (max-width: 849px) {
    .event-header .event-title {
        min-width: 350px;
        min-height: 95px;
    }
}
.event-header .title-text {
    position: relative;
    margin-top: 55px;
    margin-left: 40px;
    margin-right: 40px;
    color: #592406;
    text-align: center;
    font-family: Besley;
    font-size: 38px;
    font-style: normal;
    font-weight: 600;
    line-height: 54px;
}
@media (max-width: 849px) {
    .event-header .title-text {
        margin-top: 25px;
        font-size: 20px;
        line-height: 26px;
        margin-left: 20px;
        margin-right: 20px;
    }
}
.event-header .title-date {
    margin-top: 10px;
    color: #545454;
    text-align: center;
    font-family: Inter;
    font-size: 24px;
    font-style: italic;
    font-weight: 500;
    line-height: normal;
}
@media (max-width: 849px) {
    .event-header .title-date {
        font-size: 12px;
        line-height: nromal;
    }
}
.event-header .buy-ticket-link {
    margin-top: 30px;
    margin-bottom: 100px;
    width: 100%;
    display: flex;
    justify-content: center;
    text-align: center;
    position: relative;
}
.event-header .buy-ticket-link .buy-ticket-arrow {
    position: absolute;
    left: 45%;
    top: -60px;
    margin-left: -50px;
}
@media (max-width: 849px) {
    .event-header .buy-ticket-link .buy-ticket-arrow {
        width: 30px;
        height: 50px;
        top: -40px;
        margin-left: -60px;
    }
}
.event-header .buy-ticket-link a {
    position: relative;
    display: flex;
    color: #D23F1F;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 14.625px;
    text-transform: uppercase;
}
@media (max-width: 849px) {
    .event-header .buy-ticket-link a {
        font-size: 12px;
    }
}
.event-header .buy-ticket-link a img {
    width: 100%;
    -o-object-fit: fill;
       object-fit: fill;
    height: 40px;
    display: none;
    position: absolute;
    top: 10px;
}
@media (max-width: 849px) {
    .event-header .buy-ticket-link a img {
        display: block;
    }
}
.event-header .buy-ticket-link a:hover img {
    display: block;
}

.album-page h1 {
    margin-top: 60px;
    margin-bottom: 35px;
    color: #592406;
    text-align: center;
    font-family: Besley;
    font-size: 48px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
}
.album-page p {
    width: 50%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 60px;
    color: #000;
    text-align: center;
    font-family: Inter;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 34px;
}
.album-page a {
    max-width: 600px;
    max-height: 640px;
    border-radius: 20px;
    margin-bottom: 40px;
    display: inline-block;
    overflow: hidden;
}
@media (max-width: 849px) {
    .album-page a {
        flex-basis: 100%;
        width: 100%;
        max-width: 100%;
        height: 100%;
        max-height: 100%;
    }
}
.album-page img {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    -o-object-fit: cover;
       object-fit: cover;
}
.album-page .wpvl_playbutton {
    content: url("../svg/play-button.svg");
    border-radius: 0px;
}
.album-page .wpvl_auto_thumb_box {
    position: relative;
    width: 400px;
    height: 300px;
}
@media (max-width: 849px) {
    .album-page .wpvl_auto_thumb_box {
        width: 100%;
        height: auto;
    }
}
.album-page .wpvl_auto_thumb_box .wpvl_auto_thumb_play {
    left: 50%;
    top: 50%;
    margin-left: -22px;
    margin-top: -25px;
}
.album-page .video_lightbox_auto_anchor_image {
    width: 100%;
    height: 100%;
}
.album-page .page-selector {
    width: 490px;
    height: 50px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 60px;
    border: 1px solid;
    border-color: #DDD;
    border-radius: 40px;
    display: flex;
    justify-content: space-around;
    align-items: center;
}
@media (max-width: 849px) {
    .album-page .page-selector {
        width: 320px;
    }
}
.album-page .page-selector span {
    padding-left: 60px;
    padding-right: 60px;
    padding-top: 13px;
    padding-bottom: 13px;
    border-radius: 40px;
    font-family: Inter;
    font-size: 16px;
    font-weight: 400;
    font-style: normal;
    line-height: normal;
    cursor: pointer;
}
@media (max-width: 849px) {
    .album-page .page-selector span {
        padding-left: 32px;
        padding-right: 32px;
        padding-top: 12px;
        padding-bottom: 12px;
    }
}
.album-page .page-selector span.active {
    color: #FFF;
    background-color: #D23F1F;
    font-weight: 500;
}
.album-page .description-div {
    margin-top: 45px;
    margin-bottom: 50px;
    display: none;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    max-width: 90%;
}
@media (max-width: 849px) {
    .album-page .description-div {
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
    }
}
.album-page .description-div p {
    color: #000;
    text-align: center;
    font-family: Inter;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 34px;
}
.album-page .description-div.active {
    display: block;
    -moz-columns: 6 400px;
         columns: 6 400px;
    -moz-column-gap: 40px;
         column-gap: 40px;
}
.album-page .cast-div {
    margin-top: 45px;
    display: none;
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
    margin-bottom: 50px;
}
.album-page .cast-div.active {
    display: block;
    -moz-columns: 6 400px;
         columns: 6 400px;
    -moz-column-gap: 40px;
         column-gap: 40px;
}
@media (max-width: 849px) {
    .album-page .cast-div.active {
        max-width: 90%;
    }
}
.album-page .program-div {
    margin-top: 45px;
    display: none;
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
    margin-bottom: 50px;
}
.album-page .program-div.active {
    display: block;
    -moz-columns: 6 400px;
         columns: 6 400px;
    -moz-column-gap: 40px;
         column-gap: 40px;
}
@media (max-width: 849px) {
    .album-page .program-div {
        max-width: 90%;
    }
}

.pp_top {
    display: none;
}

.pp_left {
    background: transparent !important;
}
.pp_left .pp_right {
    background: transparent !important;
}
.pp_left .pp_content {
    background-color: transparent !important;
}

.pp_loaderIcon {
    display: none !important;
}

.pp_bottom {
    display: none;
}

.pp_details {
    display: none;
}

.supporters h1 {
    color: #592406;
    text-align: center;
    font-family: Besley;
    font-size: 48px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    margin-top: 60px;
}
@media (max-width: 849px) {
    .supporters h1 {
        font-size: 28px;
        width: 80%;
        margin-left: auto;
        margin-right: auto;
    }
}
.supporters h2 {
    color: #D23F1F;
    text-align: center;
    font-family: Besley;
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    position: relative;
}
@media (max-width: 849px) {
    .supporters h2 {
        font-size: 16px;
    }
}
.supporters h2 img {
    position: absolute;
    left: 50%;
    top: 30px;
    margin-left: -192px;
}
@media (max-width: 849px) {
    .supporters h2 img {
        width: 242px;
        height: 30px;
        top: 20px;
        margin-left: -121px;
    }
}
.supporters p {
    color: #000;
    text-align: center;
    font-family: Inter;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 34px; /* 141.667% */
}
@media (max-width: 849px) {
    .supporters p {
        font-size: 16px;
        line-height: 22px;
    }
}
.supporters .first-section {
    width: 50%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 36px;
    margin-bottom: 90px;
}
@media (max-width: 849px) {
    .supporters .first-section {
        width: 85%;
        margin-top: 20px;
        margin-bottom: 40px;
    }
}
.supporters .supporters-cards {
    margin-top: 90px;
    margin-bottom: 120px;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}
@media (max-width: 849px) {
    .supporters .supporters-cards {
        margin-top: 40px;
        margin-bottom: 60px;
        gap: 20px;
    }
}
.supporters .supporters-cards .supporter-card {
    width: 440px;
    height: 120px;
    background-color: #FFF;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
@media (max-width: 849px) {
    .supporters .supporters-cards .supporter-card {
        width: 320px;
        height: 80px;
        gap: 20px;
    }
}
.supporters .supporters-cards .supporter-card .logo {
    max-width: 60%;
    max-height: 60%;
    -o-object-fit: cover;
       object-fit: cover;
}
.supporters .supporters-cards .supporter-card p {
    display: none;
    color: #FFF;
    font-family: Inter;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.supporters .supporters-cards .supporter-card .icon {
    margin-right: 15px;
    float: left;
    display: none;
}
.supporters .supporters-cards .supporter-card .hover-link {
    display: none;
}
.supporters .supporters-cards .supporter-card:hover {
    background-color: #D23F1F;
}
.supporters .supporters-cards .supporter-card:hover .hover-link {
    display: block;
}
.supporters .supporters-cards .supporter-card:hover .logo {
    display: none;
}
.supporters .supporters-cards .supporter-card:hover .icon {
    display: block;
}
.supporters .supporters-cards .supporter-card:hover p {
    display: none;
}
.supporters .supporters-file {
    max-width: 80%;
    width: -moz-fit-content;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 60px;
    border-radius: 20px;
    overflow: hidden;
}
@media (min-width: 1301px) {
    .supporters .supporters-file img {
        width: 920px;
    }
}

.msp-board {
    text-align: center;
}
.msp-board h1 {
    color: #592406;
    text-align: center;
    font-family: Besley;
    font-size: 48px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    margin-top: 60px;
}
@media (max-width: 849px) {
    .msp-board h1 {
        font-size: 28px;
        width: 80%;
        margin-left: auto;
        margin-right: auto;
    }
}
.msp-board h2 {
    color: #D23F1F;
    text-align: center;
    font-family: Besley;
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    position: relative;
}
@media (max-width: 849px) {
    .msp-board h2 {
        font-size: 16px;
    }
}
.msp-board h2 img {
    position: absolute;
    left: 50%;
    top: 30px;
    margin-left: -192px;
}
@media (max-width: 849px) {
    .msp-board h2 img {
        width: 242px;
        height: 30px;
        top: 20px;
        margin-left: -121px;
    }
}
.msp-board p {
    color: #000;
    text-align: center;
    font-family: Inter;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 34px; /* 141.667% */
}
@media (max-width: 849px) {
    .msp-board p {
        font-size: 16px;
        line-height: 22px;
    }
}
.msp-board .first-section {
    width: 50%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 36px;
    margin-bottom: 90px;
}
@media (max-width: 849px) {
    .msp-board .first-section {
        width: 85%;
        margin-top: 20px;
        margin-bottom: 40px;
    }
}
.msp-board .executive-committee {
    margin-top: 90px;
    margin-bottom: 120px;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}
@media (max-width: 849px) {
    .msp-board .executive-committee {
        margin-top: 40px;
        margin-bottom: 60px;
        gap: 20px;
    }
}
.msp-board .executive-committee .committee-card {
    width: 440px;
    height: 120px;
    background-color: #FFF;
    border-radius: 20px;
    display: flex;
    align-items: center;
}
@media (max-width: 849px) {
    .msp-board .executive-committee .committee-card {
        width: 320px;
        height: 80px;
        gap: 20px;
    }
}
.msp-board .executive-committee .committee-card .image-section {
    width: 120px;
    height: 120px;
    display: inline-block;
}
@media (max-width: 849px) {
    .msp-board .executive-committee .committee-card .image-section {
        width: 80px;
        height: 80px;
    }
}
.msp-board .executive-committee .committee-card .image-section img {
    border-radius: 20px;
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 20px;
}
.msp-board .executive-committee .committee-card .text-section {
    width: 227px;
    height: 80px;
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 5px;
}
@media (max-width: 849px) {
    .msp-board .executive-committee .committee-card .text-section {
        height: 60px;
    }
}
.msp-board .executive-committee .committee-card .text-section p {
    color: #000;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px; /* 125% */
    text-align: left;
}
@media (max-width: 849px) {
    .msp-board .executive-committee .committee-card .text-section p {
        font-size: 12px;
        line-height: 16px;
    }
}
.msp-board .executive-committee .committee-card .text-section .position {
    font-weight: 900;
}
.msp-board .board-of-directors {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 90px;
    margin-bottom: 120px;
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}
@media (max-width: 849px) {
    .msp-board .board-of-directors {
        margin-top: 40px;
        margin-bottom: 60px;
        gap: 20px;
    }
}
.msp-board .board-of-directors .directors-card {
    width: 440px;
    height: 120px;
    background-color: #FFF;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}
@media (max-width: 849px) {
    .msp-board .board-of-directors .directors-card {
        width: 320px;
        height: 80px;
    }
}
.msp-board .board-of-directors .directors-card p {
    color: #000;
    text-align: center;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px; /* 137.5% */
}
@media (max-width: 849px) {
    .msp-board .board-of-directors .directors-card p {
        font-size: 12px;
        line-height: 16px;
    }
}
.msp-board .publicity {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 90px;
    margin-bottom: 140px;
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}
@media (max-width: 849px) {
    .msp-board .publicity {
        margin-top: 40px;
        margin-bottom: 60px;
        gap: 20px;
    }
}
.msp-board .publicity .publicity-card {
    width: 440px;
    height: 120px;
    background-color: #FFF;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}
@media (max-width: 849px) {
    .msp-board .publicity .publicity-card {
        width: 320px;
        height: 80px;
    }
}
.msp-board .publicity .publicity-card p {
    color: #000;
    text-align: center;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px; /* 137.5% */
}
@media (max-width: 849px) {
    .msp-board .publicity .publicity-card p {
        font-size: 12px;
        line-height: 16px;
    }
}

.contact-page h1 {
    margin-top: 60px;
    color: #592406;
    text-align: center;
    font-family: Besley;
    font-size: 48px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
}
@media (max-width: 849px) {
    .contact-page h1 {
        font-size: 28px;
    }
}
.contact-page h2 {
    padding-top: 80px;
    color: #592406;
    text-align: center;
    font-family: Besley;
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
@media (max-width: 849px) {
    .contact-page h2 {
        font-size: 18px;
        width: 80%;
        margin-left: auto;
        margin-right: auto;
    }
}
.contact-page .contact-cards {
    margin-top: 80px;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1080px;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
}
@media (max-width: 849px) {
    .contact-page .contact-cards {
        margin-top: 40px;
        gap: 20px;
        width: 80%;
    }
}
.contact-page .contact-cards a, .contact-page .contact-cards a:hover, .contact-page .contact-cards a:active, .contact-page .contact-cards a:visited {
    color: black;
    display: flex;
    gap: 0px;
    align-items: center;
    justify-content: center;
}
@media (max-width: 849px) {
    .contact-page .contact-cards a, .contact-page .contact-cards a:hover, .contact-page .contact-cards a:active, .contact-page .contact-cards a:visited {
        width: 100%;
    }
}
.contact-page .contact-cards .card {
    height: 60px;
    background-color: #FFF;
    border-radius: 20px;
    display: flex;
}
@media (max-width: 849px) {
    .contact-page .contact-cards .card {
        width: 100%;
    }
}
.contact-page .contact-cards img {
    padding-top: 10px;
    padding-left: 20px;
    padding-right: 10px;
    width: 50px;
    height: 28px;
    float: left;
}
@media (max-width: 849px) {
    .contact-page .contact-cards img {
        padding-top: 5px;
        padding-right: 5px;
        width: 44px;
        height: 18px;
    }
}
.contact-page .contact-cards p {
    display: inline-block;
    text-align: center;
    margin-right: 30px;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 34px; /* 212.5% */
    padding: 10px;
}
@media (max-width: 849px) {
    .contact-page .contact-cards p {
        line-height: 24px;
        padding: 0px;
    }
}
.contact-page .map {
    max-width: 1080px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 30px;
    margin-bottom: 100px;
    border-radius: 20px;
}
@media (max-width: 849px) {
    .contact-page .map {
        width: 80%;
        content: url("../img/map_small.png");
        margin-bottom: 50px;
    }
}
.contact-page .form-section {
    width: 100%;
    background: #fff;
    box-shadow: 0px 330px 0px 0px white;
    padding-bottom: 80px;
    position: relative;
    text-align: center;
}
@media (max-width: 849px) {
    .contact-page .form-section {
        padding-bottom: 40px;
    }
}
.contact-page .form-section .spikes {
    background-image: url("../../src/svg/white-spikes-event-page.svg");
    width: 100%;
    height: 10px;
    background-repeat: repeat;
    position: absolute;
    top: -10px;
}
.contact-page .form-section .image-form {
    margin-top: 53px;
    max-width: 1040px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 40px;
}
@media (max-width: 849px) {
    .contact-page .form-section .image-form {
        width: 80%;
        flex-wrap: wrap;
        gap: 15px;
    }
}
.contact-page .form-section .image-form .image-holder, .contact-page .form-section .image-form img {
    border-radius: 20px;
}
.contact-page .form-section .image-form .form-holder h2 {
    padding-top: 0px;
}
.contact-page .form-section .image-form .form-holder .gform_validation_errors {
    display: none;
}
.contact-page .form-section .image-form .form-holder .gform_confirmation_message {
    text-align: center;
    color: black;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px; /* 150% */
}
.contact-page .form-section .image-form .form-holder .contact-form .gform_fields {
    grid-row-gap: 40px;
}
@media (max-width: 849px) {
    .contact-page .form-section .image-form .form-holder .contact-form .gform_fields {
        grid-row-gap: 20px;
    }
}
.contact-page .form-section .image-form .form-holder .contact-form .gform-wrapper {
    border: 1px solid #DDD;
    border-radius: 20px;
}
.contact-page .form-section .image-form .form-holder .contact-form .contact-form-textbox input {
    padding-left: 30px;
    color: black;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px; /* 150% */
    border: 1px solid #ddd;
    border-radius: 20px;
}
.contact-page .form-section .image-form .form-holder .contact-form .contact-form-textbox input ::-moz-placeholder {
    color: #636363;
}
.contact-page .form-section .image-form .form-holder .contact-form .contact-form-textbox input ::placeholder {
    color: #636363;
}
.contact-page .form-section .image-form .form-holder .contact-form .contact-form-message textarea {
    padding-left: 30px;
    color: black;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px; /* 150% */
    border: 1px solid #ddd;
    border-radius: 20px;
    resize: none;
    height: 340px;
}
.contact-page .form-section .image-form .form-holder .contact-form .contact-form-message textarea ::-moz-placeholder {
    color: #636363;
}
.contact-page .form-section .image-form .form-holder .contact-form .contact-form-message textarea ::placeholder {
    color: #636363;
}
.contact-page .form-section .image-form .form-holder .contact-form .validation_message {
    padding: 5px;
    border-radius: 20px;
}
.contact-page .form-section .image-form .form-holder .contact-form .button {
    height: 44px;
    background-color: #D23F1F;
    border: 0px;
    border-radius: 20px;
    color: #FFF;
    text-align: center;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.contact-page .form-section .image-form .form-holder p {
    margin-top: 40px;
    color: #000;
    text-align: center;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px; /* 137.5% */
}
@media (max-width: 849px) {
    .contact-page .form-section .image-form .form-holder p {
        margin-top: 30px;
    }
}
.contact-page .form-section .image-form .form-holder p a, .contact-page .form-section .image-form .form-holder p a:hover, .contact-page .form-section .image-form .form-holder p a:active, .contact-page .form-section .image-form .form-holder p a:visited {
    color: #D23F1F;
    font-family: Inter;
    font-size: 16px;
    font-weight: 500;
    line-height: 22px; /* 137.5% */
    text-decoration-line: underline;
}

.dimbox-container {
    position: fixed;
    inset: 0 0 0 0;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    padding: 56px;
    opacity: 0;
    transition: opacity 0.5s;
    z-index: 99999;
}

.dimbox-container.dimbox-light {
    color: #000;
}

.dimbox-container.show {
    opacity: 1;
}

.dimbox-container.close-on-overlay-click,
.dimbox-container.close-on-overlay-click .dimbox-figure,
.dimbox-container.close-on-overlay-click .dimbox-video-container,
.dimbox-container.close-on-overlay-click .dimbox-iframe-container,
.dimbox-container.close-on-overlay-click .dimbox-ajax-container,
.dimbox-container.close-on-overlay-click:not(.dimbox-loaded) .dimbox-image {
    cursor: pointer;
}

.dimbox-container * {
    box-sizing: border-box;
}

.dimbox-container::before {
    content: "";
    display: block;
    position: absolute;
    inset: 0 0 0 0;
    background-color: black;
    opacity: 0.9;
}

.dimbox-container.dimbox-light::before {
    background-color: black;
}

.dimbox-container *:active,
.dimbox-container *:focus,
.dimbox-container *:focus-visible {
    outline-style: dotted;
    outline-offset: 4px;
}

.dimbox-loader {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 32px;
    height: 32px;
    margin-top: -16px;
    margin-left: -16px;
    border: 4px solid #fff;
    border-right-color: transparent;
    border-radius: 50%;
    opacity: 0.5;
    animation: spin 1s linear infinite;
}

.dimbox-container.dimbox-light .dimbox-loader {
    border-color: #000;
    border-right-color: transparent;
}

.dimbox-container.dimbox-loaded .dimbox-loader {
    display: none;
}

[class^=dimbox-btn] {
    position: absolute;
    width: 32px;
    height: 32px;
    display: inline-block;
    background-color: transparent;
    color: #fff;
    padding: 0;
    border: none;
    opacity: 0.5;
    cursor: pointer;
}

.dimbox-container.dimbox-light [class^=dimbox-btn] {
    color: #000;
}

.dimbox-btn-close {
    top: 16px;
    right: 16px;
}

.dimbox-btn-download {
    top: 16px;
    right: 64px;
}

[class^=dimbox-btn]:hover,
[class^=dimbox-btn]:active,
[class^=dimbox-btn]:focus {
    color: #fff;
    opacity: 1;
}

.dimbox-container.dimbox-light [class^=dimbox-btn]:hover,
.dimbox-container.dimbox-light [class^=dimbox-btn]:active,
.dimbox-container.dimbox-light [class^=dimbox-btn]:focus {
    color: #000;
}

.dimbox-btn-prev,
.dimbox-btn-next {
    top: 50%;
}

.dimbox-btn-prev {
    left: 8px;
    transform: rotate(180deg) translateY(50%);
}

.dimbox-btn-next {
    right: 8px;
    transform: translateY(-50%);
}

[class^=dimbox-btn] svg {
    width: 32px;
    height: 32px;
}

.dimbox-sequence {
    position: absolute;
    top: 16px;
    left: 16px;
}

.dimbox-content {
    position: relative;
    max-height: 100%;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.5s;
    cursor: default;
}

.dimbox-container.show .dimbox-content {
    opacity: 1;
}

.dimbox-container.dimbox-gallery .dimbox-content.dimbox-transition-left {
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.5s, transform 0.5s;
}

.dimbox-container.dimbox-gallery .dimbox-content.dimbox-transition-right {
    transform: translateX(50%);
    opacity: 0;
    transition: opacity 0.5s, transform 0.5s;
}

.dimbox-figure,
.dimbox-video-container,
.dimbox-iframe-container {
    margin: 0;
    opacity: 0;
    transition: opacity 0.5s;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-height: calc(100vh - 88px);
    transition: width 0.5s, height 0.5s;
}

.dimbox-iframe-container {
    width: calc(100vw - 112px);
    height: calc(100vh - 88px);
}

.dimbox-ajax-container {
    display: flex;
    flex-direction: column;
}

.dimbox-container.dimbox-loaded .dimbox-figure,
.dimbox-container.dimbox-loaded .dimbox-video-container,
.dimbox-container.dimbox-loaded .dimbox-iframe-container {
    opacity: 1;
}

.dimbox-ajax-content,
.dimbox-inline-content {
    background-color: #fff;
    color: #000;
    max-width: 768px;
    max-height: calc(100vh - 88px);
    padding: 16px;
    overflow: auto;
}

.dimbox-image,
.dimbox-video,
.dimbox-iframe {
    display: block;
    min-width: 0;
    min-height: 0;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: 100%;
    cursor: default;
    transition: width 0.5s, height 0.5s;
}

.dimbox-image,
.dimbox-video {
    -o-object-fit: contain;
       object-fit: contain;
}

.dimbox-caption {
    color: #fff;
    font-size: 0.85rem;
    text-align: center;
    margin: 8px auto 0 auto;
    cursor: default;
}

.dimbox-container.dimbox-light .dimbox-caption {
    color: #000;
}

.dimbox-iframe {
    border: none;
}

.dimbox-iframe.ratio-16x9 {
    aspect-ratio: 16/9;
}

.dimbox-iframe.ratio-4x3 {
    aspect-ratio: 4/3;
}

.dimbox-iframe.ratio-1x1 {
    aspect-ratio: 1/1;
}

.dimbox-iframe.ratio-9x16 {
    aspect-ratio: 9/16;
}

.dimbox-noscroll {
    overflow: hidden !important;
}

@media (orientation: portrait) {
    .dimbox-container {
        padding: 56px 16px;
    }
    .dimbox-figure,
    .dimbox-video-container {
        max-width: 100%;
        height: 100%;
    }
    .dimbox-iframe-container,
    .dimbox-ajax-container {
        width: 100%;
        height: calc(100vh - 112px);
    }
    .dimbox-inline-content {
        max-height: calc(100vh - 112px);
    }
    .dimbox-image,
    .dimbox-video {
        width: 100%;
        height: auto;
    }
    .dimbox-btn-prev,
    .dimbox-btn-next {
        top: auto;
        bottom: 0;
    }
}
@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
.dimbox-btn-prev, .dimbox-btn-next {
    background-image: url("../svg/next button.svg");
    background-position: center;
    width: 50px;
    height: 50px;
    opacity: 1;
}
.dimbox-btn-prev:hover, .dimbox-btn-next:hover {
    background-image: url("../svg/next button on hover.svg");
}
.dimbox-btn-prev svg, .dimbox-btn-next svg {
    display: none;
}

@font-face {
    font-family: "Raleway";
    src: url("../../fonts/Raleway-Bold.woff2") format("woff2"), url("../../fonts/Raleway-Bold.woff") format("woff");
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Raleway";
    src: url("../../fonts/Raleway-BoldItalic.woff2") format("woff2"), url("../../fonts/Raleway-BoldItalic.woff") format("woff");
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: "Raleway";
    src: url("../../fonts/Raleway-Italic.woff2") format("woff2"), url("../../fonts/Raleway-Italic.woff") format("woff");
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: "Raleway";
    src: url("../../fonts/Raleway-Medium.woff2") format("woff2"), url("../../fonts/Raleway-Medium.woff") format("woff");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Raleway";
    src: url("../../fonts/Raleway-MediumItalic.woff2") format("woff2"), url("../../fonts/Raleway-MediumItalic.woff") format("woff");
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: "Raleway";
    src: url("../../fonts/Raleway-Regular.woff2") format("woff2"), url("../../fonts/Raleway-Regular.woff") format("woff");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Raleway";
    src: url("../../fonts/Raleway-SemiBold.woff2") format("woff2"), url("../../fonts/Raleway-SemiBold.woff") format("woff");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Besley";
    src: url("../../fonts/Besley-ExtraBoldItalic.woff2") format("woff2"), url("../../fonts/Besley-ExtraBoldItalic.woff") format("woff");
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: "Besley";
    src: url("../../fonts/Besley-BlackItalic.woff2") format("woff2"), url("../../fonts/Besley-BlackItalic.woff") format("woff");
    font-weight: 900;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: "Besley";
    src: url("../../fonts/Besley-Bold.woff2") format("woff2"), url("../../fonts/Besley-Bold.woff") format("woff");
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Besley";
    src: url("../../fonts/Besley-Medium.woff2") format("woff2"), url("../../fonts/Besley-Medium.woff") format("woff");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Besley";
    src: url("../../fonts/Besley-SemiBoldItalic.woff2") format("woff2"), url("../../fonts/Besley-SemiBoldItalic.woff") format("woff");
    font-weight: 600;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: "Besley";
    src: url("../../fonts/Besley-ExtraBold.woff2") format("woff2"), url("../../fonts/Besley-ExtraBold.woff") format("woff");
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Besley";
    src: url("../../fonts/Besley-SemiBold.woff2") format("woff2"), url("../../fonts/Besley-SemiBold.woff") format("woff");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Besley";
    src: url("../../fonts/Besley-Regular.woff2") format("woff2"), url("../../fonts/Besley-Regular.woff") format("woff");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Besley";
    src: url("../../fonts/Besley-MediumItalic.woff2") format("woff2"), url("../../fonts/Besley-MediumItalic.woff") format("woff");
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: "Besley";
    src: url("../../fonts/Besley-BoldItalic.woff2") format("woff2"), url("../../fonts/Besley-BoldItalic.woff") format("woff");
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: "Besley";
    src: url("../../fonts/Besley-Italic.woff2") format("woff2"), url("../../fonts/Besley-Italic.woff") format("woff");
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: "Besley";
    src: url("../../fonts/Besley-Black.woff2") format("woff2"), url("../../fonts/Besley-Black.woff") format("woff");
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
    -webkit-font-smoothing: subpixel-antialiased;
}

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

html, body {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

ul, ol {
    list-style-position: outside;
}

ul {
    list-style: none;
}

ol {
    list-style: decimal;
}

a {
    text-decoration: none;
}

a img {
    border: none;
}

img, video {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
}

video {
    outline: none;
}

header, footer, section, article, aside, main, nav, svg {
    display: block;
}

table {
    border-collapse: collapse;
}

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

input[type=text], input[type=email], textarea, select {
    width: 100%;
}

input[type=submit] {
    cursor: pointer;
}

select, button {
    cursor: pointer;
}

textarea {
    display: block;
    overflow: auto;
    resize: vertical;
}

button {
    background: none;
    border: none;
    cursor: pointer;
}
