@import url("reset.css");

* {
    box-sizing: border-box;
}

:root {
    --brand-color: #ee0022;
    --brand-color-alt: #8A1A9B;
    --brand-font: proxima-nova, sans-serif;
}

.red {
    color: #ee0022;
    color: var(--brand-color);
}

html {
    font-size: 16px;
}

@media (max-width:1023px) and (min-width:769px) {
    html {
        font-size: 1.5vw;
    }
}

@media (min-width:1024px) {
    html {
        font-size: 18px;
    }
}

body {
    font-family: proxima-nova, sans-serif;
    font-family: var(--brand-font);
    font-size: 1rem;
    font-weight: 400;
    font-style: normal;
    line-height: 1.3;
    text-align: center;
    letter-spacing: .05rem;
}

@media (min-width:1024px) {
    body {
        font-size: .75rem;
    }
}

.left {
    text-align: left;
}

@media (max-width:768px) {
    footer.left {
        text-align: center;
    }
}

a {
    color: #000;
}

img {
    width: 100%;
    height: auto;
    display: block;
}

main {
    padding: 2rem;
}

/* CONTAINER */

.container {
    position: relative;
    max-width: 1040px;
    margin: auto;
}

main .container {
    padding: 2rem 0;
}

@media (max-width: 768px) {
    .container {
        padding: 2rem 3rem;
    }

    .no-padding {
        padding: 0 !important;
    }
}

/* HEADER + FOOTER */

header:before,
header:after,
footer:before,
footer:after {
    content: "";
    display: block;
    clear: both;
}

/* HEADER */


header,
header>div {
    position: relative;
}

header .colstructure>div {
    height: 40vh;
    position: relative;
}

header .colstructure.gallery>div:first-child {
    /* width: 25%; */
}

header .colstructure.gallery>div:last-child {
    height: auto;
}

header .colstructure>div .links {
    position: absolute;
}

header .tagline h2 {
    color: #fff;
    padding: 2rem;
}

@media (max-width: 320px) {
    header .tagline h2 {
        font-size: 1rem;
    }
}

@media (min-width: 769px) {
    header .tagline h2 {
        padding: 2rem 10rem 2rem 2rem;
    }
}

.branding {
    position: relative;
    z-index: 1;
    padding: 2rem;
    height: 40vh;
}

/* @media (min-width: 769px) {
    .branding {
        height: 50vh;
    }   
}     */
.branding img {
    height: 10rem;
    width: auto;
}

.branding svg {
    height: 10rem;
    width: auto;
    margin-left: -2rem;
}

@media (max-width: 768px) {
    .branding svg {
        height: 10rem;
    }
}

.thing {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.thing>div {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: linear-gradient(to right, #ee0022, #a400ef 100%);
    background: linear-gradient(to right, var(--brand-color), #a400ef 100%);
}

.thing>div:nth-child(2) {
    background: linear-gradient(to right, #a400ef, #ee0022 100%);
    background: linear-gradient(to right, #a400ef, var(--brand-color) 100%);
    -webkit-animation-name: animationOne;
            animation-name: animationOne;
    -webkit-animation-duration: 4s;
            animation-duration: 4s;
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
    -webkit-animation-timing-function: ease;
            animation-timing-function: ease;
    -webkit-animation-iteration-count: infinite;
            animation-iteration-count: infinite;
}

.thing>div:nth-child(3) {
    background: linear-gradient(to top, transparent, #a400ef 100%);
    -webkit-animation-name: animationTwo;
            animation-name: animationTwo;
    -webkit-animation-duration: 8s;
            animation-duration: 8s;
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
    -webkit-animation-timing-function: ease;
            animation-timing-function: ease;
    -webkit-animation-iteration-count: infinite;
            animation-iteration-count: infinite;
}

.header-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
}

.colstructure nav.links {
    display: none;
}

@media (min-width: 769px) {
    .colstructure nav.links {
        display: block;
    }
}

@-webkit-keyframes animationOne {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes animationOne {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@-webkit-keyframes animationTwo {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes animationTwo {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

/* NAV */

nav {
    padding: 2rem;
}

.exhibitor-nav,
.gallery-nav {
    padding: 0;
}

nav a,
.exhibitor-nav a,
.gallery-nav a {
    font-family: proxima-nova, sans-serif;
    font-family: var(--brand-font);
    font-weight: 400;
    font-style: normal;
    text-transform: uppercase;
    display: block;
    text-decoration: none;
    padding: 0 0 .5rem;
}

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


/* GRIDS */

@media (min-width: 769px) {
    div[class*="col-"] {
        margin: 0;
        position: relative;
    }

    div[class*="col-"]>div {
        float: left;
    }

    div[class*="col-"] div[class*="col-"] {
        margin: 0;
    }

    div[class*="col-"]:after {
        content: "";
        display: block;
        clear: both;
    }

    .col-4>div {
        width: 25%;
    }

    .col-3>div {
        width: 33.33%;
        padding-bottom: 2rem;
    }

    .col-2>div {
        width: 50%
    }

    .col-2>div:nth-child(2n+1) {
        clear: left;
    }

    .col-25-75>div:first-child {
        float: left;
        width: 25%
    }

    .col-25-75>div:last-child {
        float: right;
        width: 75%
    }

}

@media (min-width: 1025px) {
    .col-66-33>div:first-child {
        float: left;
        width: 66%;
        padding-right: 2rem;
    }

    .col-66-33>div:last-child {
        float: right;
        width: 33%
    }
}

/* HEADING */

.heading {
    margin: 1rem 0 2rem;
    border-top: #ee0022 solid 3px;
    border-top: var(--brand-color) solid 3px;
}

/* BUTTONS */

.button:before {
    content: " ";
    display: block;
    clear: both;
}

.button:after {
    /* content: "›";
    margin: 0 0 0 .5rem;
    font-size: 1.5rem; */
}

.button {
    position: relative;
    display: inline-block;
    margin: 1rem 0;
    padding: 1.5rem;
    color: #fff;
    background: #ee0022;
    background: var(--brand-color);
    text-decoration: none;
    text-transform: uppercase;
    /* border: 10px var(--brand-color) solid; */
    font-size: 1rem;
    line-height: 0;
    z-index: 1;
}

.button .thing {
    z-index: -1;
}

/* SOCIAL LINKS */

.social-links {
    padding-bottom: 2rem;
}

.social-links img {
    width: auto;
    height: auto;
    margin: 0 .5rem;
}

@media (min-width: 321px) {
    .social-links img {
        margin: 0 1rem;
    }
}

.social-links span {
    display: none;
}

/* FOOTER */

footer {
    padding: 2rem;
    background: #f1f1f1;
}

footer .links {
    padding: 0 1rem;
    display: inline-block;
    vertical-align: middle;
}

footer .copyright {
    margin-top: .5rem;
}

footer .copyright a {
    text-transform: none;
    text-transform: initial;
    margin: 0 .5rem;
    padding: 0;
    text-decoration: underline;
}

@media (min-width: 769px) {
    footer .links {
        display: inline-block;
    }

    footer .links a {
        display: inline-block;
    }

    footer .col-2>div:first-child {
        white-space: no-wrap;
    }
}

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

.logo-square img {
    height: 5rem;
    width: auto;
    margin: auto;
}

/* SOCIAL */



@media (min-width: 769px) {
    .social {
        display: inline-block;
        text-align: right;
        float: right;
    }

    .social a {
        height: 5rem;
        display: inline-block;
    }

    .logo-square {
        display: inline-block;
        vertical-align: middle;
    }
}


.social a span {
    display: none;
    font-size: 1.5rem;
}

.social a span[class*="icon-"] {
    display: inline-block;
    padding: 1.5rem .5rem 0 0;
    vertical-align: middle;
    color: #333;
}

.social a span.icon-artsy {
    font-size: 1.35rem
}



/* TYPOGRAPHY */

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4 {
    font-family: proxima-nova, sans-serif;
    font-family: var(--brand-font);
    font-weight: 300;
    font-style: normal;
    margin: 0 0 1rem 0;
    line-height: 1.2;
}

h1 {
    display: none;
}

.h1 {
    font-size: 4rem;
    color: #ee0022;
    color: var(--brand-color);
}

@media (max-width: 767px) {
    .h1 {
        font-size: 3rem;
    }
}

h2,
.h2 {
    font-size: 1.75rem;
}

h3,
.h3 {
    text-transform: uppercase;
}

h4 {
    font-weight: 700;
}

p {
    margin: 0 0 1rem;
    line-height: 1.5;
}

strong {
    font-weight: 700;
}

/* VERTICAL CENTER */

@media (max-width: 767px) {
    .vertical-center {
        padding: 2rem 2rem 1rem;
    }
}

@media (min-width: 768px) {
    .vertical-center {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
    }
}

/* BILLBOARD */

.billboard {
    background-size: 100%;
    background-size: cover;
}

.billboard .content {
    padding: 2rem;
}

@media (min-width: 768px) {
    .billboard .content {
        padding: 8rem 4rem;
    }
}

.billboard .h1 {}

.billboard .button {}

/* MAP */

#map {
    height: 30rem;
}

.locations-list h2 {
    padding: 2rem;
}

.locations-list .col-3>div {
    padding-bottom: 2rem;
}

/* MODAL */

#modal_screen {
    background: #fff;
}

#modal_content {
    background: #ee0022;
    background: var(--brand-color);
    color: #fff;
}

#modal_content h3 {
    color: #fff;
}

#modal_content img {
    display: inline-block;
    height: 100px;
    width: auto;
}

#modal_content p {
    padding: 0 2rem;
}


header .hamburger {
    width: 4rem;
    float: right;
    padding: 2rem 4rem;
    z-index: 3;
}

@media (min-width: 769px) {
    header .hamburger {
        display: none;
    }
}

.mobile-hamburger a {
    display: block;
}

.mobile-hamburger a span {
    display: block;
    width: 2rem;
    height: 2px;
    background: #fff;
    margin: 0 0 .59rem;
    opacity: 1;
    transition: .5s;
}

.mobile-menu-active .mobile-hamburger a span {
    background: #000;
}

.mobile-menu-active .mobile-hamburger a span:nth-child(1) {
    transform: rotate(45deg);
    transform-origin: top left;
    -ms-transform: rotate(45deg);
    -ms-transform-origin: top left;

}

.mobile-menu-active .mobile-hamburger a span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-active .mobile-hamburger a span:nth-child(3) {
    transform: rotate(-45deg);
    transform-origin: bottom left;
    -ms-transform: rotate(-45deg);
    -ms-transform-origin: bottom left;
}

.mobile-menu {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: #f1f1f1;
    z-index: 2;
    opacity: 0;
    transition: opacity 200ms;
    z-index: -1;
    text-align: center;

}

.mobile-menu-active .mobile-menu {
    opacity: 1;
}

.mobile-menu-active.z .mobile-menu {
    z-index: 2;
}

.mobile-branding {
    height: auto;
}

.pipe {
    display: block;
}

@media (min-width:769px) {
    .pipe {
        display: inline;
    }

    .pipe:before {
        content: "|"
    }

}

.image-grid>a {
    padding: 0 0 2rem 0;
    display: block;
}

@media (min-width: 769px) {
    .image-grid {
        padding: 5px;
    }

    .image-grid>a {
        padding: 0 5px 5px 0;
        float: left;
        width: 33%;
    }
}

.image-grid:after {
    content: "";
    display: block;
    clear: both;
    height: 2rem;
}


.programming main ul {
    padding-top: .5rem;
    margin-bottom: 1rem;
    /* border-top: #e9e9e9 solid 1px; */
}

.programming main ul li {
    /* border-bottom: #e9e9e9 solid 1px; */
    /* padding: .5rem  0; */
    /* margin-left: 1rem; */
    /* list-style-type: disc; */
    line-height: 1.5;
}

.programming main ul li:first-child {
    padding-top: 0;
}

.programming main ul li p {
    margin: 0;
    padding: 0;
}

.programming main .archive h4,
.programming main .program-day,
.features h3 {
    margin-top: 2rem;
    font-weight: bold;
    color: #8A1A9B;
    color: var(--brand-color-alt);
    font-size: 1.2rem;
    text-transform: uppercase;
}

.programming main .expand-wrapper {
    padding-bottom: 2rem;
}

.programming main .expand-wrapper .expanded,
.programming main .expand-wrapper .less-information {
    display: none;
}

.programming main .expand-wrapper .expanded {
    padding-bottom: 1rem;
}

.programming main .programming-item:nth-child(2n) article {
    /* background: #f1f1f1; */
}

.programming main .programming-item .program-day {
    display: none;
}

.sunday:not(.sunday ~ .sunday) .program-day {
    display: block
}

.saturday:not(.saturday ~ .saturday) .program-day {
    display: block
}

.friday:not(.friday ~ .friday) .program-day {
    display: block
}

.thursday:not(.thursday ~ .thursday) .program-day {
    display: block
}




.programming main .archive .programming-item .program-day,
.programming main .archive .programming-item .program-time,
.programming main .archive .programming-item .facebook-event-link,
.programming main .archive .programming-item .more-information,
.programming main .archive .programming-item .less-information {
    display: none;
}

/* .programming-item h4 {
    font-weight: normal;
}

.programming-item .program-time {
    font-weight: bold;
    margin-right: .5rem;
} */

.programming main .archive .programming-item .expanded {
    display: block;
}

.programming main article {
    background: #ffffff;
    /* padding: 1rem; */
    /* margin-left: -1rem; */
}

.presented-by p {
    margin: -1rem 0 1rem 0;
    font-style: italic;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
}

.video-wrapper iframe,
.video-wrapper object,
.video-wrapper embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.press-listing .col-2>div {
    padding: 2rem 0;
}

.press-listing .date {
    display: block;
}

@media (min-width: 769px) {
    .press-listing .col-2>div {
        padding: 0 3rem 0 0;
        height: 12rem;
    }

}

.byline {
    padding: 1rem 0 1rem 0;
    font-style: italic;
    letter-spacing: .03rem;
}

.press-listing a {
    text-decoration: none;
}

.press-listing a:hover strong {
    text-decoration: underline;
}

.ticket-links a {
    display: block;
}

@media (min-width: 769px) {
    .ticket-links a {
        display: inline-block;
        /* width: 40%; */
        margin-bottom: 0;
        margin-top: 5px;
        padding-right: .65rem;
        padding-left: .65rem;
    }
}

@media (min-width: 1180px) {
    .ticket-links a {
        padding-right: 1rem;
        padding-left: 1rem;
    }
}

.custom-artists p {
    margin-bottom: 0;
}

.custom-artists {
    margin-bottom: 1rem;
}

em {
    font-style: italic;
}

.features main ul {
    line-height: 1.5;
    margin-left: 1rem;
}

.features main ul li {
    padding-bottom: 1.5rem
}

.form-item {
    padding: .5rem 0 1rem;
}

@media (min-width: 769px) {
    .form-item {
        display: inline-block;
        width: 49.5%;
        padding-right: 1rem;
        vertical-align: top;
    }

    .form-item.wide {
        display: block;
        width: 100%;
    }

}

.form-item input[type="text"],
.form-item input[type="email"],
.form-item textarea {
    width: 100%;
    padding: .5rem;
    font: inherit;
}

.form-item textarea {
    height: 7.65rem;
}

@media (min-width: 1024px) {
    .form-item textarea {
        height: 6.25rem;
    }
}

.form-item label {
    display: block;
    padding: 0;
    margin-bottom: .25rem;
    font-weight: 400;
}

.form-item label span {
    font-weight: normal;
    text-transform: none;
    letter-spacing: normal;
}

.form-item br {
    height: 0 !important;
}

.cover {
    top: 0;
    left: 0;
    position: fixed;
    overflow-y: scroll;
    overflow-x: hidden;
    width: 100vw;
    height: 100vh;
    background: #8A1A9B;
    background: var(--brand-color-alt);
    z-index: 3;
    align-items: center;
    padding: 1rem;
}

@media (min-width: 769px) {
    .cover {
        display: flex;
    }
}

.cover .app-logo {
    position: fixed;
    top: 2rem;
    left: 2rem;
    width: 4rem;
}

@media (min-width: 769px) {
    .cover .app-logo {
        top: 4rem;
        left: 4rem;
        width: 4rem;
    }
}

.cover .application-container {
    padding: 2rem;
    background: #fff;
    margin: 19rem auto;
    max-width: 760px;
    position: relative;
    border-radius: 1rem;
    box-shadow: rgba(0, 0, 0, .5) 0 .5rem 1rem;
}

@media (min-width: 769px) {
    .cover .application-container {
        margin: auto;
    }
}

.cover .thing {
    position: fixed;
}

.coverx .thing,
.coverx .app-logo {
    display: none;
}

.confirm {
    /* color: #fff; */
    padding: 1rem;
    border: #8A1A9B 1px solid;
    border: var(--brand-color-alt) 1px solid;
    margin-bottom: 1rem;
    /* border-radius: 1rem; */
}

.exhibitor-terms ol {
    list-style-type: decimal;
    padding-left: 1rem;
}

@media (min-width: 769px) {
    .exhibitor-terms ol {
        -moz-column-count: 2;
             column-count: 2;
    }

    .exhibitor-terms ol li {
        padding-right: 2rem;
    }
}

.zoox-mini {
    height: 1rem;
    width: auto;
    vertical-align: middle;
    margin: .5rem;
    display: inline-block;
}