@font-face {
    font-family: Heebo;
    src: url("../fonts/heebo-cufonfonts/Heebo-Regular.57e52979339e.ttf");
    font-display: swap;
}

@font-face {
    font-family: Heebo-Black;
    src: url("../fonts/heebo-cufonfonts/Heebo-Black.3fac2fa6bdc5.ttf");
    font-display: swap;
}

@font-face {
    font-family: Heebo-Bold;
    src: url("../fonts/heebo-cufonfonts/Heebo-Bold.8d467d4cdfe4.ttf");
    font-display: swap;
}

@font-face {
    font-family: Heebo-ExtraBold;
    src: url("../fonts/heebo-cufonfonts/Heebo-ExtraBold.e82cca14c906.ttf");
    font-display: swap;
}

@font-face {
    font-family: Heebo-Light;
    src: url("../fonts/heebo-cufonfonts/Heebo-Light.5d6174ee92fb.ttf");
    font-display: swap;
}

@font-face {
    font-family: Heebo-Medium;
    src: url("../fonts/heebo-cufonfonts/Heebo-Medium.f3248d331043.ttf");
    font-display: swap;
}

@font-face {
    font-family: Heebo-Thin;
    src: url("../fonts/heebo-cufonfonts/Heebo-Thin.40a34712470b.ttf");
    font-display: swap;
}

@font-face {
    font-family: trump-gothic-pro;
    src: url("../fonts/TrumpGothicPro/TrumpGothicPro.0c9fd5e48262.ttf");
    font-display: swap;
}

@font-face {
    font-family: triplex-cond-sans;
    src: url("../fonts/Triplex-Cond/Triplex-Cond.c58371d02186.ttf");
    font-display: swap;
}

@font-face {
    font-family: calluna-sans;
    src: url("../fonts/calluna-sans/calluna-sans.51eb84930095.otf");
    font-display: swap;
}

@font-face {
    font-family: bebas-neue;
    src: url("../fonts/bebas_neue/BebasNeue-Regular.afeaf6797b62.woff");
    font-display: swap;
}

@font-face {
    font-family: libre-franklin-black;
    src: url("../fonts/Libre_Franklin/static/LibreFranklin-Black.934c3c4fa546.ttf");
    font-display: swap;
}

:root {
    --brand-primary-rgb: 242, 25, 25;
    --brand-primary: rgb(var(--brand-primary-rgb));
    --brand-secondary: white;
    --brand-primary-focus: rgba(var(--brand-primary-rgb), 0.5);

    --bg: black;
    --bg-dark: #1A1C1C;
    --fg-primary: white;
    --fg-secondary: #adadad;
    --fg-dark: black;
    --fg-emphasis: var(--brand-primary);
    --primary: var(--brand-primary);
    --primary-outline: #df372c;
    --bg-secondary: rgba(0, 0, 0, .1);
    --bg-danger: rgba(var(--brand-primary-rgb), 0.9);;
    --border-danger: color-mix(in srgb, var(--bg-danger) 95%, black);
    --bg-info: rgba(255, 239, 92, 0.9);;
    --border-info: color-mix(in srgb, var(--bg-info) 95%, black);

    --font-fallback: Arial;
    --font-fallback-second: Helvetica;
    --font-title: trump-gothic-pro;
    --font-body: calluna-sans;
    --font-subtitle: bebas-neue;
}

html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

body {
    background-color: var(--bg);
    color: var(--fg-primary);
    font-size: 24px;
    font-family: var(--font-body);
}

.no-wrap {
    white-space: nowrap;
}

.header--overlay {
    box-sizing: border-box;
    background: transparent;
}

.header-inner {
    padding: 15px 0;
}

.header-branding img {
    object-fit: contain;
}

.header-branding-logo {
    width: 140px;
}

.header-nav-item {
    margin: 0 1.5em;
    padding: .618em 0;
    color: var(--fg-primary);
    display: inline-block;
    vertical-align: middle;
}

.header-nav-item:hover {
    text-decoration: none;
    color: var(--fg-primary);
}

.header-nav-inner {
    font-weight: 500;
    font-style: normal;
    font-size: 13px;
    letter-spacing: .2em;
    text-transform: uppercase;
    line-height: 1em;
    text-align: center;
}

.header-nav-inner:hover .header-nav-item {
    opacity: 0.6;
}

.header-nav-inner:hover .header-nav-item:hover {
    opacity: 1;
}

.header-mobile-navbar {
    height: 76px;
    background: var(--bg);
    padding: 15px;
}

.mobile-bar-menu {
    height: 100%;
    display: flex;
    align-items: center;
}

.clickable-menu {
    color: var(--fg-primary) !important;
    cursor: pointer;
}

.mobile-bar-menu .fa-bars {
    font-size: 25px;
}

.mobile-overlay {
    position: fixed;
    top: 0;
    /* Excuse me ?? I guess */
    left: -99999px;
    bottom: 0;
    z-index: 1010;
    width: 100%;
    min-height: 100vh;
}

.is-mobile-overlay-active {
    left: 0;
    background-color: var(--bg);
    transition: left 0.1s, background-color 350ms cubic-bezier(.55\, 0, .1, 1);
    display: flex;
}

.close-mobile-menu-container {
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.close-mobile-menu-container .fa {
    font-size: 22px;
    color: var(--fg-primary);
}

.mobile-menu-container {
    padding: 30px 20px;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    /*width: 80%;*/
    width: calc(100% - 60px);
    overflow: hidden;
    background-color: #000;
    -webkit-font-smoothing: antialiased;
    transition: transform 350ms cubic-bezier(.55, 0, .1, 1);
}

.mobile-overlay-nav-item {
    font-family: Heebo-Bold;
    font-weight: 500;
    font-style: normal;
    font-size: 13px;
    letter-spacing: .25em;
    line-height: 1.8em;
    text-transform: uppercase;
    color: #fff;
    box-sizing: border-box;
    display: block;
    position: relative;
    padding-bottom: .618em;
    text-align: left;
}

.mobile-dropdown-arrow {
    margin-top: -7px;
    z-index: 2;
}

.dropdown-menu {
    padding: 0;
}

#revealDropdown {
    color: red;
}

.dropdown-menu .dropdown-item {
    cursor: pointer;
    letter-spacing: 0;
    font-size: 14px !important;
    padding: 10px 15px !important;
}

.dropdown-menu .dropdown-item:not(:last-child) {
    border-bottom: 1px solid #EDEDED;
}

.more-shows {
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #5a5a5a;
}

.more-shows a {
    color: #fff;
    font-size: 20px;
}

.more-shows a span {
    color: rgb(207, 26, 26);
}

a.header-nav-item {
    height: 100%;
}

/* end header styles */

.subscribe-nav-item {
    float: right;
    box-shadow: none;
    border: 2px solid #fff;
    color: #fff;
    border-radius: 300px;
    padding: 12px 18px;
    font-weight: 500;
    font-style: normal;
    font-size: 10px;
    letter-spacing: .2em;
    text-transform: uppercase;
}

.subscribe-nav-item:hover {
    background: #fff;
    color: red;
    text-decoration: none;
}

/*footer styles */

footer {
    padding: 75px 17px;
    background-color: #000;
    margin-top: -1px;
}

footer .social-links {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
}

footer .social-links ul {
    list-style: none;
    display: flex;
    margin: auto;
    padding-left: 0;
}

footer .social-links ul > li a {
    width: 44px;
    height: 44px;
    border: 2px solid #fff;
    border-radius: 50%;
    margin: 0 5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}

footer .social-links a {
    transition: all 0.25s ease;
}

footer .social-links a:hover {
    background-color: rgba(255, 255, 255, .15);
}

.footer-nav-group {
    justify-content: center;
}

.footer-nav-item {
    color: #fff;
    text-decoration: none;
    padding: 0 5px;
    transition: color .15s ease-out;
    font-family: 'Heebo-Bold';
    font-weight: 500;
    font-size: 10px;
    letter-spacing: .2em;
    line-height: 1.5em;
    text-transform: uppercase;
}

.footer-nav-item:hover {
    color: rgba(255, 255, 255, .5);
    text-decoration: none;
}

.horizontal-light-divider {
    background-color: #ddd;
}

hr {
    border-color: #adadad;
}

#footer-subscribe-email {
    transition: width 0.5s ease;
}

#footer-subscribe-city {
    display: none;
    height: 0;
    opacity: 0;
    overflow: hidden;
    transition: height 0.5s ease, opacity 0.5s ease;
}

#footer-subscribe-city.slide-in {
    display: block;
    height: auto;
    opacity: 1;
}

/* Global font defaults */
body, html {
    font-family: calluna-sans, Arial, Helvetica, sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: trump-gothic-pro, Arial, Helvetica, sans-serif;
    letter-spacing: 4px;
}

button, .btn {
    font-family: Heebo-Bold, Arial, Helvetica, sans-serif;
    letter-spacing: 1px;
}

a {
    color: var(--brand-primary);
    transition: all 0.25s ease;
}

a:hover {
    color: var(--fg-primary);
}

/* General Helpers */
.absolute-fill {
    width: 100%;
    height: 100%;
    position: absolute;
}

.pe-none {
    pointer-events: none;
}

.shade-bg {
    background-color: rgba(0, 0, 0, .2);
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex-column-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

@media (min-width: 576px) {
    .border-sm-top {
        border-top: 1px solid #adadad !important;
    }

    .border-sm-right {
        border-right: 1px solid #adadad !important;
    }

    .border-sm-bottom {
        border-bottom: 1px solid #adadad !important;
    }

    .border-sm-left {
        border-left: 1px solid #adadad !important;
    }

    .border-sm-top-0 {
        border-top: 0 !important;
    }

    .border-sm-right-0 {
        border-right: 0 !important;
    }

    .border-sm-bottom-0 {
        border-bottom: 0 !important;
    }

    .border-sm-left-0 {
        border-left: 0 !important;
    }

    .border-sm-x {
        border-left: 1px solid #adadad !important;
        border-right: 1px solid #adadad !important;
    }

    .border-sm-y {
        border-top: 1px solid #adadad !important;
        border-bottom: 1px solid #adadad !important;
    }

    .border-sm {
        border-top: 1px solid #adadad !important;
        border-bottom: 1px solid #adadad !important;
        border-left: 1px solid #adadad !important;
        border-right: 1px solid #adadad !important;
    }

    .border-sm-0 {
        border-top: 0 !important;
        border-bottom: 0 !important;
        border-left: 0 !important;
        border-right: 0 !important;
    }
}

@media (min-width: 768px) {
    .border-md-top {
        border-top: 1px solid #adadad !important;
    }

    .border-md-right {
        border-right: 1px solid #adadad !important;
    }

    .border-md-bottom {
        border-bottom: 1px solid #adadad !important;
    }

    .border-md-left {
        border-left: 1px solid #adadad !important;
    }

    .border-md-top-0 {
        border-top: 0 !important;
    }

    .border-md-right-0 {
        border-right: 0 !important;
    }

    .border-md-bottom-0 {
        border-bottom: 0 !important;
    }

    .border-md-left-0 {
        border-left: 0 !important;
    }

    .border-md-x {
        border-left: 1px solid #adadad !important;
        border-right: 1px solid #adadad !important;
    }

    .border-md-y {
        border-top: 1px solid #adadad !important;
        border-bottom: 1px solid #adadad !important;
    }

    .border-md {
        border-top: 1px solid #adadad !important;
        border-bottom: 1px solid #adadad !important;
        border-left: 1px solid #adadad !important;
        border-right: 1px solid #adadad !important;
    }

    .border-md-0 {
        border-top: 0 !important;
        border-bottom: 0 !important;
        border-left: 0 !important;
        border-right: 0 !important;
    }
}

@media (min-width: 992px) {
    .border-lg-top {
        border-top: 1px solid #adadad !important;
    }

    .border-lg-right {
        border-right: 1px solid #adadad !important;
    }

    .border-lg-bottom {
        border-bottom: 1px solid #adadad !important;
    }

    .border-lg-left {
        border-left: 1px solid #adadad !important;
    }

    .border-lg-top-0 {
        border-top: 0 !important;
    }

    .border-lg-right-0 {
        border-right: 0 !important;
    }

    .border-lg-bottom-0 {
        border-bottom: 0 !important;
    }

    .border-lg-left-0 {
        border-left: 0 !important;
    }

    .border-lg-x {
        border-left: 1px solid #adadad !important;
        border-right: 1px solid #adadad !important;
    }

    .border-lg-y {
        border-top: 1px solid #adadad !important;
        border-bottom: 1px solid #adadad !important;
    }

    .border-lg {
        border-top: 1px solid #adadad !important;
        border-bottom: 1px solid #adadad !important;
        border-left: 1px solid #adadad !important;
        border-right: 1px solid #adadad !important;
    }

    .border-lg-0 {
        border-top: 0 !important;
        border-bottom: 0 !important;
        border-left: 0 !important;
        border-right: 0 !important;
    }
}

@media (min-width: 1200px) {
    .border-xl-top {
        border-top: 1px solid #adadad !important;
    }

    .border-xl-right {
        border-right: 1px solid #adadad !important;
    }

    .border-xl-bottom {
        border-bottom: 1px solid #adadad !important;
    }

    .border-xl-left {
        border-left: 1px solid #adadad !important;
    }

    .border-xl-top-0 {
        border-top: 0 !important;
    }

    .border-xl-right-0 {
        border-right: 0 !important;
    }

    .border-xl-bottom-0 {
        border-bottom: 0 !important;
    }

    .border-xl-left-0 {
        border-left: 0 !important;
    }

    .border-xl-x {
        border-left: 1px solid #adadad !important;
        border-right: 1px solid #adadad !important;
    }

    .border-xl-y {
        border-top: 1px solid #adadad !important;
        border-bottom: 1px solid #adadad !important;
    }

    .border-xl {
        border-top: 1px solid #adadad !important;
        border-bottom: 1px solid #adadad !important;
        border-left: 1px solid #adadad !important;
        border-right: 1px solid #adadad !important;
    }

    .border-xl-0 {
        border-top: 0 !important;
        border-bottom: 0 !important;
        border-left: 0 !important;
        border-right: 0 !important;
    }
}

.gap-2 {
    gap: 0.5rem;
}

.gap-3 {
    gap: 1rem;
}

@media (min-width: 768px) {
    .gap-md-0 {
        gap: 0;
    }
}

/* Bootstrap override */
.btn-primary {
    background-color: var(--brand-primary);
    border-color: var(--brand-primary);
    transition: all 0.35s ease;
    border-radius: 0;
}

.btn-primary.rounded {
    border-radius: 75px !important;
}

.btn-primary.transparent {
    background-color: transparent;
    color: var(--brand-primary);
    border-width: 2px;
}

.btn-primary.transparent:hover {
    color: var(--fg-primary);
}

.btn-primary:hover {
    background-color: rgb(207, 26, 26);
    border-color: rgb(207, 26, 26);
}

.btn-primary.focus, .btn-primary:focus {
    background-color: rgb(207, 26, 26);
    border-color: rgb(207, 26, 26);
    box-shadow: 0 0 0 .2rem var(--brand-primary-focus)
}

.btn-large {
    min-width: 250px;
    padding-top: 15px;
    padding-bottom: 15px;
}

input.form-control,
input.form-control:focus,
textarea.form-control,
select.form-control,
select.form-control:focus {
    border-radius: 0;
    border: 0;
    transition: all 0.2s ease;
    border: 1px solid #adadad;
    background-color: var(--bg-dark);
    color: var(--fg-primary);
    box-shadow: none;
}

input.form-control {
    padding-top: 20px;
    padding-bottom: 20px;
}

input[type=file].form-control {
    padding-top: 3px;
}

input.form-control:focus,
textarea.form-control:focus,
select.custom-select:focus {
    box-shadow: none;
    border: 1px solid var(--brand-primary);
    color: var(--fg-primary);
    background-color: var(--bg-dark);
}

.form-control:disabled, .form-control[readonly] {
    background: inherit;
    opacity: 0.5;
    cursor: not-allowed;
}

.card-img {
    max-height: 300px;
    object-fit: cover;
}

.custom-select {
    display: block;
    width: 100%;
    height: calc(1.5em + .75rem + 6px);
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--fg-primary);
    background-color: var(--bg-dark);
    background-clip: padding-box;
    border: 1px solid #adadad;
    border-radius: 0;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out
}

.bg-black {
    background-color: #000 !important;
}

input[type="checkbox"].checkbox-lg {
    height: 2rem;
    width: 2rem;
}

.alert {
    padding: 0.5rem 1rem;
}

.alert.rounded-top {
    border-radius: 0.25rem 0.25rem 0 0;
}

.alert-warning {
    color: var(--fg-primary);
    background-color: var(--bg-danger);
    border-color: var(--border-danger);
}

.alert-info {
    color: var(--fg-dark);
    background-color: var(--bg-info);
    border-color: var(--border-info);
}

.badge {
    font-size: 0.8rem;
    border-radius: 0;
    font-weight: normal;
    padding: 5px 25px;
    line-height: inherit;
}

.badge-secondary {
    background-color: var(--bg-secondary);
    color: var(--fg-dark)
}


/* Global font sizes and heights*/
.heading-title {
    font-weight: 700;
    font-size: 4.5rem;
}

.text-small {
    font-size: 14px;
}

.text-regular {
    font-size: 16px;
}

.text-regular-alt {
    font-size: 18px;
}

.text-large {
    font-size: 22px;
}

.text-brand-primary {
    color: var(--brand-primary);
}

.text-light-grey {
    color: var(--fg-secondary);
}

.text-dark {
    color: var(--bg);
}

.lh-regular {
    line-height: 1.15 !important;
}

.cursor-pointer {
    cursor: pointer;
}

.block-title {
    font-family: var(--font-subtitle), sans-serif;
    font-weight: 400;
    font-size: 60px;
    letter-spacing: .03em;
    line-height: 1.2em;
    text-transform: uppercase;
    color: var(--fg-primary);
}

.block-subtitle {
    font-family: var(--font-subtitle), sans-serif;
    font-weight: 400;
    font-size: 36px;
    letter-spacing: .03em;
    line-height: 1.2em;
    text-transform: uppercase;
    color: var(--fg-emphasis);
}

.block-text {
    text-align: center;
    font-weight: 400;
    font-style: normal;
    font-size: 24px;
    letter-spacing: .03em;
    line-height: 1em;
    text-transform: none;
    color: var(--fg-secondary);
}

.responsive-h1 {
    font-size: 2em !important;
}

@media (max-width: 576px) {
    .responsive-h1 {
        font-size: 1.25em !important;
    }

    .more-shows a {
        color: #fff;
        font-size: 15px;
    }
}

.responsive-h2 {
    font-size: 1.5em !important;
}

@media (max-width: 576px) {
    .responsive-h2 {
        font-size: 1.15em !important;
    }
}

.scrollFix {
    color: black;
    background-color: var(--fg-primary);
}

.contact-submit {
    margin-top: 3em;
    line-height: 0.75em;
}

.form-group {
    margin-bottom: 1rem;
}

.form-label-hint {
    font-size: 1rem;
}

.urgency-alert {
    position: absolute;
    left: 0;
    right: 0;
    top: 2rem;
    margin-inline: auto;
    width: fit-content;
}

.show-urgency-alert {
    position: absolute;
    right: 0;
    top: 0.5rem;
}

.new_events_bar {
    top: 0;
    height: 2rem;
    font-size: 1rem;
    background: var(--bg-danger);
    z-index: 100;
}

.new_events_bar a {
    color: var(--fg-primary);
}

.new_events_bar a:hover {
    text-decoration: none;
}

.new_events_bar a span {
    text-decoration: underline;
}

@media (max-width: 404px) {
    .new_events_bar {
        font-size: 0.75rem;
    }
}
