/* colors */
html,
body {
    background-color: #000;
    font-family: 'SST-Light', 'SST-Roman', Arial, sans-serif;
    position: relative;
    color: #fff;
}

header {
    height: auto;
    background-color: black;
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
}

header .brand {
    padding: 10px 0;
}

@media (max-width: 479px) {
    header {
        height: auto;
    }

    header .brand {
        text-align: center;
    }

    header .brand img {
        width: 20%;
    }
}

h1,
h2 {
    font-family: 'SST-Light', 'SST-Roman', Arial, sans-serif;
}

h1 {
    font-weight: normal;
}

/*
h2 {
    font-size: 2.25em;
}
*/

h3 {
    color: #fff;
}

p {
    color: #fff;
    line-height: 1.5em;
    font-family: 'SST-Light', 'SST-Roman', Arial, sans-serif;
}

a {
    text-decoration: none;
}

a.button {
    color: #fff;
    background-color: transparent;
    display: inline-block;
    padding: 1em 1.5em;
    transition: all 0.3s ease;
    margin-top: 1em;
    border: solid 1px #fff;
}

a.button:hover {
    background-color: #4279B8;
    color: #fff;
}

a.button.blue {
    color: #ffffff;
    background-color: #4279B8;
    display: inline-block;
    padding: 1em 1.5em;
    transition: all 0.3s ease;
    margin-top: 1em;
    border: 0;
    border-radius: 5px;
}

a.button.blue:hover,
a.button.blue:focus {
    background-color: #37659A;
    transition: all 0.3s ease;
}

a.button.orange {
    color: #ffffff;
    background-color: #dc3a1a;
    display: inline-block;
    padding: 1em 1.5em;
    transition: all 0.3s ease;
    border: none;
    border-radius: 3px;
}

a.button.orange:hover {
    background-color: #be3216;
    transition: all 0.3s ease;
}

.sr-only {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.videoWrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 */
    height: 0;
}

.videoWrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

#backtotop {
    text-align: right;
    width: 100%;
    bottom: 2em;
    z-index: 12;
    position: fixed;
    display: none;
}

#backtotop.sticky {
    position: relative;
}

#backtotop .container {
    overflow: visible;
}

#backtotop a {
    display: inline-block;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.3);
    padding: 0 12px;
    border-radius: 3px;
    transition: all 0.3s ease;
}

#backtotop a:hover {
    background-color: rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

@media (min-width: 768px) {
    #backtotop a {
        margin-right: -32px;
    }
}

/* banner styles */
#banner {
    position: relative;
}

#banner .banner-inner {
    position: relative;
    min-height: 120px;
    overflow: hidden;
    background: url(https://image.marketing.sony.com.au/lib/fe881373776d0d7f72/m/1/c03cc3b1-7f54-483b-b067-7513e455fa6a.jpg) center center no-repeat;
    background-size: contain;
    margin-top: 0;
}

#banner .caption {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
}

#banner .caption h1 {
    color: #fff;
    font-size: 2em;
}

#banner .caption .caption-inner {
    position: relative;
    width: 100%;
    float: none;
    text-align: center;
    background: transparent;
}

#banner .caption .caption-inner .button {
    display: none;
}

@media (min-width: 1000px) {
    #banner .banner-inner {
        position: relative;
        overflow: hidden;
        height: 40vh;
        background: url("https://image.marketing.sony.com.au/lib/fe881373776d0d7f72/m/1/c03cc3b1-7f54-483b-b067-7513e455fa6a.jpg") center center no-repeat;
        background-size: cover;
        margin-top: 0;
    }

    #banner .caption {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
    }

    #banner .caption h1,
    #banner .caption p,
    #banner .caption a {
        color: #fff;
    }

    #banner .caption .caption-inner {
        position: relative;
        width: 100%;
        float: none;
        text-align: center;
        max-width: none;
    }

    #banner .caption .caption-inner .button {
        display: inline-block;
    }
}

/* main section styles */
main {
    margin-bottom: 0;
}

main section {
    text-align: center;
}

main section .container h2 {
    margin-bottom: 0.5em;
}

main section .container > p {
    font-size: 1.5em;
    margin-top: 0;
    margin-bottom: 1.5em;
}

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

main .col-wrapper {
    position: relative;
    overflow: hidden;
}

main .col {
    text-align: left;
    float: left;
}

main .col5 {
    width: 20%;
    float: left;
}

@media (max-width: 768px) {
    main .col5 {
        width: 100%;
        clear: both;
        margin: 0 auto;
        float: none;
    }

    main .col5 img {
        width: 100%;
    }
}

main .col4 {
    width: 25%;
    float: left;
}

@media (max-width: 768px) {
    main .col4 {
        width: 100%;
        clear: both;
        margin: 0 auto;
        float: none;
    }

    main .col4 img {
        width: 100%;
    }
}

main .col3 {
    width: 33.33%;
    float: left;
}

@media (max-width: 768px) and (orientation: portrait) {
    main .col3 {
        width: 100%;
    }
}

@media (max-width: 576px) and (orientation: portrait) {
    main .col3 {
        width: 100%;
    }
}

main .col3.span2 {
    width: 66.66%;
    float: left;
}

@media (max-width: 768px) and (orientation: portrait) {
    main .col3.span2 {
        width: 100%;
    }
}

@media (max-width: 576px) and (orientation: portrait) {
    main .col3.span2 {
        width: 100%;
    }
}

main .col2 {
    width: 50%;
    float: left;
}

@media (max-width: 768px) {
    main .col2 {
        width: 100%;
    }
}

main .col1 {
    width: 100%;
}

/* SECTION STYLES */
#form {
    padding: 0 0 3em 0;
}

#form .form-outer-wrapper {
    width: 100%;
}

#form .form-row {
    padding: 1em 0;
}

#form .intro {
    padding-bottom: 2em;
    border-bottom: solid 1px #fff;
}

#form h2 {
    margin-top: 2em;
}

@media (min-width: 768px) {
    #form .form-outer-wrapper {
        max-width: 70%;
        margin: 0 auto;
    }
}

@media(min-width: 1000px) {
    #form {
        padding:0 0 3em;
    }
}

button {
    background-color: #dc3a1a !important;
    font-size: 1.1em;
    border-radius: 3px;
    margin-top: 0 !important;
}

button:hover {
    background-color: #be3216 !important;
}

/* FOOTER STYLES */
/*
footer h1 {
    font-family: 'SST-Roman', Arial, sans-serif;
    color: #878792;
    font-weight: 400;
    font-size: 1.25em;
}

footer #site-links {
    padding-top: 0.5em;
}

footer #copyright-links {
    border-top: solid 1px #3c3c42;
    border-top: solid 1px #3c3c42;
    padding-top: 1em;
}

footer #copyright-links p {
    color: #878792;
}
*/

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