/* Theme Name: Straight Out Digital Starter Theme
* Theme URI: http://straightoutdigital.com.au/
* Author: Straight Out Digital
* Author URI: http://straightoutdigital.com.au/
* Description: Description
* Version: 1.0.0
* License: GNU General Public License v2 or later
* License URI: http://www.gnu.org/licenses/gpl-2.0.html
* Text Domain: Straightoutdigital
* Tags: */
/*--------------------------------------------------------------

       / /\         /\ \         /\ \
      / /  \       /  \ \       /  \ \____
     / / /\ \__   / /\ \ \     / /\ \_____\
    / / /\ \___\ / / /\ \ \   / / /\/___  /
    \ \ \ \/___// / /  \ \_\ / / /   / / /
     \ \ \     / / /   / / // / /   / / /
 _    \ \ \   / / /   / / // / /   / / /
/_/\__/ / /  / / /___/ / / \ \ \__/ / /
\ \/___/ /  / / /____\/ /   \ \___\/ /
 \_____\/   \/_________/     \/_____/


---------------------------------------------------------------*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Fonts
# Normalize/Clearings/Box-sizing
# Typography
# Page wrappers/Containers
# Navigation
    ## Navigation Main
    ## Navigation Account
# Footer
    ## Footer Main
    ## Sub Footer
# Components
    ## Page Header
# Page preloader
# Media Queries
--------------------------------------------------------------*/
@import url('css/plugin.css');

/*--------------------------------------------------------------
# Fonts
--------------------------------------------------------------*/
@font-face {
    font-family: 'Tungsten-Semibold';
    src: url('fonts/Tungsten-Semibold.eot?#iefix') format('embedded-opentype'),
    url('fonts/Tungsten-Semibold.otf') format('opentype'),
    url('fonts/Tungsten-Semibold.woff') format('woff'),
    url('fonts/Tungsten-Semibold.ttf') format('truetype'),
    url('fonts/Tungsten-Semibold.svg#Tungsten-Semibold') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Tungsten-Medium';
    src: url('fonts/Tungsten-Medium.eot?#iefix') format('embedded-opentype'),
    url('fonts/Tungsten-Medium.otf') format('opentype'),
    url('fonts/Tungsten-Medium.woff') format('woff'),
    url('fonts/Tungsten-Medium.ttf') format('truetype'),
    url('fonts/Tungsten-Medium.svg#Tungsten-Medium') format('svg');
    font-weight: normal;
    font-style: normal;
}

/*--------------------------------------------------------------
# Normalize/Clearings/Box-sizing
--------------------------------------------------------------*/

/* http://meyerweb.com/eric/tools/css/reset/
* v2.0 | 20110126
* License: none (public domain) */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, main {
    display: block;
}

html, body {
    min-height: 100%;
}

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

body {
    line-height: 1;
    background-color: #FFFBF6;
    position: relative;
    padding: 0;
    font-family: "Courier New", "Consolas", "Andale Mono", monospace;
    color: #000;
    height: 100%;
    font-weight: 300;
    color: #231f20;
    font-weight: normal;
}

blockquote, q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before, q:after {
    content: "";
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

*,
*:before,
*:after {
    box-sizing: border-box;
}

/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Heading
--------------------------------------------------------------*/
h1,
h2,
h3,
h4,
h5,
h6 {
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    font-weight: normal;
    color: inherit;
}

h1 {
    font-size: 50px;
    line-height: 1.1;
    font-family: 'Tungsten-Semibold', sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
}

h2 {
    font-size: 40px;
    font-family: 'Tungsten-Semibold', sans-serif;
    line-height: 1.1;
}

h3 {
    font-family: "Courier New", "Consolas", "Andale Mono", monospace;
    font-size: 28px;
    line-height: 1.1;
}

h4 {
    font-size: 24px;
    line-height: 1.1;

}

h5 {
    font-size: 21px;
    line-height: 1.1;
}

h6 {
    font-size: 18px;
    line-height: 1.1;
}

h1 + p {
    margin-top: 45px;
}

h2 + p {
    margin-top: 45px;
}

h3 + p {
    margin-top: 45px;
}

/*--------------------------------------------------------------
# Links
--------------------------------------------------------------*/
a {
    text-decoration: none;
    color: inherit;
    background-color: transparent;
}

a:active,
a:hover {
    outline: 0;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
p,
ul,
ol,
li {
    font-size: 15px;
    line-height: 1.6;
    font-weight: 300;
    color: #231f20;
    text-rendering: optimizeLegibility;
}

p,
ul,
ol {
    margin-bottom: 20px;
}

p:last-child,
ol:last-child,
ul:last-child {
    margin-bottom: 0;
}

ul,
ol {
    padding-left: 20px;
}

ul li {
    list-style: outside disc;
    padding-bottom: 10px;
}

b,
strong {
    font-weight: bold;
}

em,
i {
    font-style: italic;
    line-height: inherit;
}

blockquote {
    padding-left: 45px;
    position: relative;
    display: block;
}

img {
    display: block;
    border: 0; /* Remove border when inside a tag in IE 8/9/10. */
    max-width: 100%;
    height: auto;
}

svg:not(:root) {
    overflow: hidden;
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sup {
    top: -0.5em;
}

sub {
    bottom: -0.25em;
}

code,
kbd,
pre,
samp {
    font-family: monospace, monospace;
    font-size: 1em;
}

/*--------------------------------------------------------------
# Form Elements
--------------------------------------------------------------*/
button,
input,
optgroup,
select,
textarea {
    color: inherit;
    font: inherit;
    margin: 0;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
select {
    background-color: #ffffff;
    padding: 0 10px;
    width: 100%;
    height: 50px;
    line-height: 48px;
    color: #999;
    border-color: #e6e4e4;
    -webkit-appearance: none;
    border-radius: 0;
    font-size: 15px;
}

select {
    background-image: url(images/arrow-select.jpg);
    background-repeat: no-repeat;
    background-position: 95% center;
}

*:focus {
    outline: none;
    border: none;
}

select:focus {
    border: 1px solid #e6e4e4;
}

input:focus {
    border: 1px solid #e6e4e4;
}

button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
    cursor: pointer;
    -webkit-appearance: none;
    border-radius: 0;
}

input[type="submit"]:hover {
    background-color: rgba(247, 183, 107, 0.99);
}

textarea {
    -webkit-appearance: none;
    padding: 10px;
    color: #999;
    border: 1px solid #e6e4e4;
    width: 100%;
}

input[type="submit"] {
    height: 55px;
    line-height: 55px;
    border: 1px solid #e6e4e4;
    background-color: #f7941e;
    color: #fff;
    font-size: 15px;
    padding: 0 55px;
    font-size: 15px;
    text-transform: uppercase;
    border-radius: 3px;
    display: inline-block;
    text-align: center;
}

.ginput_container_time {
    float: left;
    width: 30%;
    margin-right: 5%;
}

.ginput_container_time:last-child {
    margin-right: 0;
}

.ginput_container_time i {
    display: none;
}

.ginput_container_time label {
    display: none;
}

.gfield_radio:after {
    clear: both;
}

.gfield_radio li {
    list-style: none;
    float: left;
    width: 50%;
    padding: 15px 0;
}

.gfield_radio li input {
    float: left;
    margin-right: 10px;
    width: 15px;
    margin-top: 5px;
}

.gfield_radio li label {
    float: left;
    display: block;
}

.gfield_date_day,
.gfield_date_month,
.gfield_date_year,
.gfield_time_hour,
.gfield_time_minute,
.gfield_time_ampm {
    width: 30% !important;
    float: left;
    margin-right: 5% !important;
}

.gfield_date_year,
.gfield_time_ampm {
    margin-right: 0 !important;
}

.gfield_time_ampm select {
    background-position: 85% center;
}

.gfield_time_hour i {
    display: none;
}

.gfield {
    float: left;
    width: 100%;
}

.gform_wrapper .top_label .gfield_label {
    font-weight: 600;
}

.gform_wrapper .gfield_required {
    color: #000;
}

span.customSelect {
    width: 100%;
    height: 45px;
    line-height: 43px;
    color: #999;
    padding: 0 15px;
    background-color: #fff;
    border: 1px solid #e6e4e4;
    color: #000;
    -webkit-appearance: none;
    border-radius: 0;
    font-size: 15px;
}

.customSelectInner {
    background-image: url(images/arrow-select.jpg);
    background-repeat: no-repeat;
    background-position: 100% center;
}

.gfield input[type=text],
.gfield textarea,
.gfield input[type=email],
.gfield input[type=password],
.gfield input[type=tel],
.gfield input[type=url],
.gfield input[type=search],
.gfield input[type=date],
.ginput_container select {
    border: 1px solid #e6e4e4;
}

/*--------------------------------------------------------------
# Page wrappers/Containers/Col
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Page wrappers/Containers
--------------------------------------------------------------*/
main:after {
    content: '';
    display: table;
    clear: both;
}

/*--------------------------------------------------------------
# Row
--------------------------------------------------------------*/
.wrapper {
    max-width: 1170px;
    width: 100%;
    margin: 0 auto;
    padding-left: 45px;
    padding-right: 45px;
}

.wrapper:after {
    content: '';
    display: table;
    clear: both;
}

.row {
    margin-left: -45px;
    margin-right: -45px;
}

.row:after {
    content: "";
    display: table;
    clear: both;
}

.row::before,
.row::after {
    content: ' ';
    display: table;
}

.row::after {
    clear: both;
}

.centered-row {
    max-width: 1020px;
    margin: 0px auto !important;
    padding-left: 45px;
    padding-right: 45px;
}

.centered-row-small {
    max-width: 550px;
    margin: 0px auto !important;
    padding-left: 45px;
    padding-right: 45px;
}

/*--------------------------------------------------------------
# Column
--------------------------------------------------------------*/
.column,
.columns {
    width: 100%;
    float: left;
    padding-left: 45px;
    padding-right: 45px
}

.column:last-child:not(:first-child),
.columns:last-child:not(:first-child) {
    float: right;
}

.column.end:last-child:last-child,
.end.columns:last-child:last-child {
    float: left;
}

.column.row.row,
.row.row.columns {
    float: none;
}

/*--------------------------------------------------------------
# Smal;
--------------------------------------------------------------*/
.small-1 {
    width: 8.33333%;
}

.small-2 {
    width: 16.66667%;
}

.small-3 {
    width: 25%;
}

.small-4 {
    width: 33.33333%;
}

.small-5 {
    width: 41.66667%;
}

.small-6 {
    width: 50%;
}

.small-7 {
    width: 58.33333%;
}

.small-8 {
    width: 66.66667%;
}

.small-9 {
    width: 75%;
}

.small-10 {
    width: 83.33333%;
}

.small-11 {
    width: 91.66667%;
}

.small-12 {
    width: 100%;
}

/*--------------------------------------------------------------
# Medium
--------------------------------------------------------------*/
@media screen and (min-width: 767px) {
    .medium-1 {
        width: 8.33333%;
    }

    .medium-2 {
        width: 16.66667%;
    }

    .medium-3 {
        width: 25%;
    }

    .medium-4 {
        width: 33.33333%;
    }

    .medium-5 {
        width: 41.66667%;
    }

    .medium-6 {
        width: 50%;
    }

    .medium-7 {
        width: 58.33333%;
    }

    .medium-8 {
        width: 66.66667%;
    }

    .medium-9 {
        width: 75%;
    }

    .medium-10 {
        width: 83.33333%;
    }

    .medium-11 {
        width: 91.66667%;
    }

    .medium-12 {
        width: 100%;
    }
}

/*--------------------------------------------------------------
# Large
--------------------------------------------------------------*/
@media screen and (min-width: 1024px) {
    .large-1 {
        width: 8.33333%;
    }

    .large-2 {
        width: 16.66667%;
    }

    .large-3 {
        width: 25%;
    }

    .large-4 {
        width: 33.33333%;
    }

    .large-5 {
        width: 41.66667%;
    }

    .large-6 {
        width: 50%;
    }

    .large-7 {
        width: 58.33333%;
    }

    .large-8 {
        width: 66.66667%;
    }

    .large-9 {
        width: 75%;
    }

    .large-10 {
        width: 83.33333%;
    }

    .large-11 {
        width: 91.66667%;
    }

    .large-12 {
        width: 100%;
    }
}

/*--------------------------------------------------------------
# Global Classes
--------------------------------------------------------------*/
.padding-medium {
    padding-top: 45px;
    padding-bottom: 45px;
}

.padding-large {
    padding-top: 90px;
    padding-bottom: 90px;
}

.padding-xtra-large {
    padding-top: 180px;
    padding-bottom: 180px;
}

.padding-bottom-small {
    padding-bottom: 25px;
}

.padding-bottom-medium {
    padding-bottom: 45px;
}

.padding-bottom-large {
    padding-bottom: 90px;
}

.font-dark h1,
.font-dark h2,
.font-dark h3,
.font-dark h4,
.font-dark h5,
.font-dark h6,
.font-dark p,
.font-dark a {
    color: #666;
}

.font-light h1,
.font-light h2,
.font-light h3,
.font-light h4,
.font-light h5,
.font-light h6,
.font-light p,
.font-light li,
.font-light a {
    color: #ffffff;
}

/*--------------------------------------------------------------
# Alignment
--------------------------------------------------------------*/
.valign {
    position: absolute;
    z-index: 99;
    text-align: center;
    top: 50%;
    left: 50%;
    right: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    width: 100%;
    padding: 0 25px;
}

.valign-horizontal {
    position: absolute;
    z-index: 99;
    text-align: left;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 100%;
    padding: 0 25px;
}

/*--------------------------------------------------------------
# Button
--------------------------------------------------------------*/
.button {
    height: 55px;
    line-height: 55px;
    border: 1px solid #f58220;
    color: #f58220;
    font-size: 15px;
    padding: 0 35px;
    color: #333333;
    border-radius: 0px;
    display: inline-block;
    text-align: center;
}

.button.orange {
    border: 2px solid #f7941e;
    color: #f7941e;
    border-radius: 4px;
}

.button.orange.flat {
    border: 2px solid #f7941e;
    background-color: #f7941e;
    color: #fff;
    border-radius: 4px;
}

.button i {
    margin-right: 10px;
}

/*--------------------------------------------------------------
# Chevron
--------------------------------------------------------------*/
.chevron {
    display: inline-block;
    color: #f7941e;
    font-weight: 500;
}

.chevron:after {
    content: '';
    display: inline-block;
    background-image: url(images/icon-chevron.svg);
    background-repeat: no-repeat;
    width: 40px;
    height: 10px;
    margin-left: 15px;
}

/*--------------------------------------------------------------
# Title
--------------------------------------------------------------*/
.title {
    text-transform: uppercase;
}

.title:after {
    content: '';
    display: block;
    margin-top: 25px;
    height: 15px;
    width: 70px;
    background-image: url(images/bk-pattern-repeat.svg);
    background-repeat: no-repeat;
}

.title.centered {
    text-align: center;
}

.title.centered.title:after {
    margin: 25px auto 0;
}

/*--------------------------------------------------------------
# Mobile
--------------------------------------------------------------*/

.mobile {
    display: none;
}

/*--------------------------------------------------------------
# Mobile menu
--------------------------------------------------------------*/

.mobile-menu {
    display: none;
}

/*--------------------------------------------------------------
# Page preloader
--------------------------------------------------------------*/
.pace {
    -webkit-pointer-events: none;
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

.pace-inactive {
    display: none;
}

.admin-bar .pace .pace-progress {
    top: 32px;
}

.pace .pace-progress {
    background: #f7941e;
    position: fixed;
    z-index: 2000;
    top: 0;
    right: 100%;
    width: 100%;
    height: 4px;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#site-header {
    background-color: #231f20;
    height: 100px;
    position: relative;
    width: 100%;
}

#site-header:after {
    content: '';
    display: table;
    clear: both;
}

.home #site-header {
    background-color: transparent;
    position: absolute;
    top: 0;
    z-index: 999;
}

#nav-icon {
    display: none;
}

/*--------------------------------------------------------------
# Logo
--------------------------------------------------------------*/
#logo a {
    display: block;
    cursor: pointer;
}

#logo img {
    height: auto;
    position: absolute;
    font-size: 0;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 240px;
    text-align: center;
    z-index: 9999;
    margin: 0 auto;
}

.home #logo {
    display: none;
}

/*--------------------------------------------------------------
# Navigation General
--------------------------------------------------------------*/
.main-navigation {
    position: relative;
}

.main-navigation .navigation {
    min-height: 100px;
    width: 100%;
    margin: 0 auto;
    text-align: right;
    font-family: 'Tungsten-Semibold', sans-serif;
    -webkit-font-smoothing: antialiased;
    z-index: 99;
    position: relative;
}

.main-navigation .navigation ul {
    float: left;
    width: 50%;
    margin-bottom: 0;
    padding: 0;
}

.main-navigation .navigation #nav-left {
    padding-right: 145px;
    padding-left: 25px;
}

.main-navigation .navigation #nav-right {
    text-align: left;
    padding-left: 145px;
    width: 50%;
    padding-right: 105px;
}

.main-navigation .navigation #social {
    position: absolute;
    top: 0;
    right: 0;
    background-color: #f7941e;
    width: 130px;
    height: 100px;
    padding-right: 15px;
    font-size: 0;
}

.main-navigation .navigation #social:before {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-top: 100px solid transparent;
    border-bottom: 0px solid transparent;
    border-right: 50px solid #f7941e;
    margin-left: -50px;
    position: absolute;
}

.main-navigation .navigation #social li a {
    font-size: 30px;
    padding: 36px 6px 36px;
}

.home .main-navigation .navigation #social {
    background-color: transparent;
}

.home .main-navigation .navigation #social:before {
    border: none;
}

.home .main-navigation .navigation #nav-left,
.home .main-navigation .navigation #nav-right {
    padding-left: 0;
    padding-right: 0;
}

.main-navigation .navigation ul > li {
    display: inline-block;
    vertical-align: top;
    list-style: none;
    padding-bottom: 0;
    position: relative;
    font-size: 20px;
    color: #fff;
    line-height: 1;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.main-navigation .navigation ul > li > a {
    display: inline-block;
    line-height: 1;
    padding: 42px 15px 38px;
}

.main-navigation .navigation .menu-item-has-children {
    position: relative;
}

.main-navigation .navigation .menu-item-has-children:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.4s ease-in-out;
    -webkit-transition: opacity 0.4s ease-in-out;
}

.main-navigation .navigation .menu-item-has-children .sub-menu {
    position: absolute;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease-in-out;
    -webkit-transition: opacity 0.4s ease-in-out;
    background-color: #262626;
    margin: 0;
    font-family: "Courier New", "Consolas", "Andale Mono", monospace;
    width: 220px;
    height: auto !important;
    top: 100px;
    left: 50%;
    z-index: 9998;
    padding: 0px;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
}

.main-navigation .navigation .menu-item-has-children .sub-menu:before {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-right: 20px solid transparent;
    border-left: 20px solid transparent;
    border-bottom: 20px solid #262626;
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.main-navigation .navigation .menu-item-has-children .sub-menu li {
    display: block;
    text-align: left;
    margin: 0;
}

.main-navigation .navigation .sub-menu li.current-menu-item:before {
    content: '';
}

.main-navigation .navigation .menu-item-has-children .sub-menu li:last-child {
    padding-bottom: 0;
}

.main-navigation .navigation .menu-item-has-children .sub-menu li a {
    display: block;
    cursor: pointer;
    text-transform: none;
    padding: 0;
    font-size: 15px;
    letter-spacing: 0px;
    padding: 15px 20px;
    -webkit-transition: background-color 0.2s ease-in-out;
    transition: background-color 0.2s ease-in-out;
}

.main-navigation .navigation .menu-item-has-children .sub-menu li a:hover {
    background-color: #333333;
}

@media screen and (min-width: 1025px) {
    .main-navigation .navigation .navigation-wrapper > ul#nav-left > li > a:hover:before,
    .main-navigation .navigation .navigation-wrapper > ul#nav-right > li > a:hover:before {
        content: '//';
        display: inline-block;
        position: absolute;
        top: 15px;
        text-align: center;
        left: 0;
        right: 0;
        color: #f7941e;
        font-size: 18px;
        font-weight: 700;
    }

    .main-navigation .navigation ul > li.current-menu-item:before {
        content: '//';
        display: inline-block;
        position: absolute;
        top: 15px;
        text-align: center;
        left: 0;
        right: 0;
        color: #f7941e;
        font-size: 18px;
        font-weight: 700;
    }
}

@media screen and (min-width: 1025px) {
    .main-navigation .navigation .navigation-wrapper > ul#nav-left > li > a:hover:before,
    .main-navigation .navigation .navigation-wrapper > ul#nav-right > li > a:hover:before {
        content: '//';
        display: inline-block;
        position: absolute;
        top: 15px;
        text-align: center;
        left: 0;
        right: 0;
        color: #f7941e;
        font-size: 18px;
        font-weight: 700;
    }

    .main-navigation .navigation ul > li.current-menu-item:before {
        content: '//';
        display: inline-block;
        position: absolute;
        top: 15px;
        text-align: center;
        left: 0;
        right: 0;
        color: #f7941e;
        font-size: 18px;
        font-weight: 700;
    }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Footer Main
--------------------------------------------------------------*/
#site-footer {
    clear: both;
    position: relative;
    text-align: center;
    margin-top: 15px;
}

#site-footer:before {
    content: '';
    display: block;
    background-image: url(images/bk-pattern-repeat.png);
    background-repeat: repeat-x;
    background-size: contain;
    width: 100%;
    height: 15px;
    position: absolute;
    top: -15px;
}

#site-footer:after {
    content: '';
    display: table;
    clear: both;
}

#site-footer .footer-logo {
    width: 100%;
    padding: 65px 0 45px;
    text-align: center;
    margin: 0 auto;
    background-color: #f7941e;
}

#site-footer .footer-logo img {
    max-width: 300px;
    margin: 0 auto;
}

#site-footer #social {
    text-align: center;
    margin-top: 25px;
    margin-left: 0;
    padding: 0;
}

#site-footer #social li {
    list-style: none;
    display: inline-block;
    color: #fff;
    padding: 0 10px;
    font-size: 30px;
}

/*--------------------------------------------------------------
# Footer Contact
--------------------------------------------------------------*/
#site-footer .contact {
    background-color: #231f20;
    padding: 10px;
}

#site-footer .contact li {
    color: #fff;
    font-size: 13px;
    display: inline-block;
    padding: 10px 14px;
}

#site-footer .contact ul {
    padding-left: 0px;
    list-style: none;
}

#site-footer .contact:after {
    content: '';
    display: table;
    clear: both;
}

#site-footer .contact .column {
    padding: 0 10px;
}

#site-footer .contact i {
    margin-right: 15px;
    font-size: 15px;
}

#site-footer .contact span {
    margin-right: 15px;
    display: inline-block;
}

/*--------------------------------------------------------------
# Copyright
--------------------------------------------------------------*/
.copyright {
    padding: 20px 0;
    background-color: #000;
    text-align: center;
}

.copyright p {
    color: #bbbdc1;
    font-size: 13px;
}

/*--------------------------------------------------------------
# Homepage
--------------------------------------------------------------*/
#main {
    background-image: url(images/bk-header.png);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: 100%;
    width: 100%;
    height: 100%;
    margin-bottom: -30px;
}

.home #main {
    background-image: none;
    padding: 0;
}

.home #main.page-content {
    padding-top: 0;
}

.home .mobile.button {
    margin: 45px 35px;
}

body.home.page.page-id-73 {
    background-color: #FFF8EE;
}

/*--------------------------------------------------------------
# Page header
--------------------------------------------------------------*/
#page-header {
    height: 650px;
    background-size: cover;
    position: relative;
}

#page-header img {
    max-width: 400px;
    margin: 0 auto;
}

#page-header:before {
    content: '';
    display: block;
    background-color: rgba(0, 0, 0, 0.4);
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 9;
}

/*--------------------------------------------------------------
# Find us
--------------------------------------------------------------*/
#find-us {
    background-color: #262626;
    position: relative;
    padding-bottom: 300px;
}

#find-us:after {
    content: '';
    display: block;
    background-image: url(images/bk-pattern-home.svg);
    height: 100%;
    position: absolute;
    bottom: -2px;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom center;
    left: 0;
    right: 0;
}

#find-us h2 {
    color: #f7941e;
    font-size: 45px;
    margin-bottom: 25px;
    text-transform: uppercase;
    text-align: center;
}

#find-us .shape {
    width: 100%;
    height: 0;
    padding-left: 50%;
    padding-bottom: 16%;
    overflow: hidden;
    position: absolute;
    top: -100px;
    z-index: 11;
}

#find-us .shape:before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    margin-left: -1200px;
    border-left: 1200px solid transparent;
    border-right: 1200px solid transparent;
    border-bottom: 100px solid #262626;
}

#find-us .shape:after {
    content: '';
    display: table;
    clear: both;
}

#find-us .info {
    color: #fff;
    font-size: 15px;
    line-height: 18px;
    font-weight: 300;
    position: relative;
    z-index: 99;
    max-width: 600px;
    margin: 0 auto;
    padding-left: 45px;
}

#find-us .info:after {
    content: '';
    display: table;
    clear: both;
}

#find-us .info .column {
    padding: 0 20px;
}

#find-us .info span {
    display: block;
    position: relative;
    line-height: 1.6;
    padding-left: 25px;
    margin-bottom: 15px;
}

#find-us .info a i {
    font-size: 15px;
}

#find-us .info i {
    position: absolute;
    top: 4px;
    font-size: 18px;
    left: 0;
}

#find-us .info a {
    position: relative;
    z-index: 9999;
    display: block;
}

/*--------------------------------------------------------------
# Latest event
--------------------------------------------------------------*/
#latest-event .row {
    position: relative;
}

#latest-event .latest-event-wrapper {
    position: relative;
}

#latest-event .latest-event-wrapper:after {
    content: '';
    display: table;
    clear: both;
}

#latest-event .image {
    float: right;
}

#latest-event .image img {
    width: 100%;
    height: auto;
}

#latest-event .content {
    position: absolute;
    top: 50%;
    padding: 45px 45px 90px;
    color: #fff;
    webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 45px;
    background-color: #262626;
}

#latest-event .content h3 {
    font-family: "Courier New", "Consolas", "Andale Mono", monospace;
    font-size: 17px;
    text-transform: uppercase;
    font-weight: bold;
    margin-top: 20px;
    margin-bottom: 10px;
}

#latest-event .content .date {
    font-size: 13px;
    margin-bottom: 20px;
}

#latest-event .content p {
    color: #fff;
}

#latest-event .all-events {
    position: absolute;
    bottom: 0;
    height: 55px;
    line-height: 55px;
    background-color: #f7941e;
    width: 100%;
    left: 0;
    color: #fff;
    text-align: center;
    font-size: 14px;
}

/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/
.function {
    padding-top: 0;
}

.function .row {
    display: flex;
    align-items: center;
}

@media screen and (max-width: 1024px) {
    .function .row {
        display: block;
    }
}

.function__image-wrapper {
    padding-right: 0;
}

@media screen and (max-width: 1024px) {
    .function__content {
        margin-top: 35px;
    }
}

.function__link {
    margin-top: 25px;
}
/*--------------------------------------------------------------
# Event list
--------------------------------------------------------------*/
.event-list {
    background-color: #FFFBF6;
}

.event-list-item {
    margin-bottom: 90px;
    margin-left: 45px;
    margin-right: 45px;
}

.event-list-item:last-child {
    margin-bottom: 0;
}

.event-list-item:after {
    content: '';
    display: table;
    clear: both;
}

.event-list-item .image {
    width: 60%;
    background-size: cover;
    background-position: center;
    float: left;
    background-color: #231f20;
}

.event-list-item .image img {
    width: 100%;
    height: auto;
}

.event-list-item .content {
    width: 40%;
    float: left;
    background-color: #fff;
}

.event-list-item h2 {
    padding: 25px 45px 20px;
    border-bottom: 2px solid #f7f7f7;
    text-transform: uppercase;
    line-height: 1;
}

.event-list-item .description {
    padding: 45px;
}

.event-list-item .date {
    margin-bottom: 25px;
    color: #999999;
    font-weight: 500;
}

.event-list-item .date span {
    color: #f7941e;
}

.image.equal,
.event-list-item .content {
    height: 450px !important;
}

/*--------------------------------------------------------------
# Single-event-post
--------------------------------------------------------------*/
.event-post:last-child {
    border-bottom: none;
}

.event-post-meta,
.event-post-image,
.event-post-text {
    margin-top: 90px;
}

.event-post-image img {
    width: 100%;
    height: auto;
}

.event-post-meta > div {
    margin-bottom: 45px;
    line-height: 1.6;
    font-size: 16px;
    font-weight: 700;
}

.event-post-meta .ticket {
    margin-bottom: 0px;
}

.event-post-meta > div i {
    width: 15px;
    margin-right: 20px;
}

.event-post-meta a {
    margin-top: 90px;
}

.event-post .link {
    font-size: 21px;
    text-align: center;
    color: #f7941e;
    margin-top: 45px;
}

.event-post.padding-large {
    margin-bottom: 50px;
}

/*--------------------------------------------------------------
# Function Nav
--------------------------------------------------------------*/
#function-nav {
    border-bottom: 1px solid rgba(247, 148, 30, 0.15);
    width: 100%;
    background-color: #FFFBF6;
    position: relative;
    z-index: 15;
}

#function-nav:after {
    content: '';
    display: table;
    clear: both;
}

#function-nav.is-active {
    position: fixed;
    top: 0;
    left: 0;
}

#function-nav ul {
    padding: 0;
    margin: 0;
    text-align: center;
}

#function-nav ul li {
    padding: 0;
    display: inline-block;
    padding: 0px 45px;
    color: #000000;
    font-weight: bold;
}

#function-nav ul li a {
    padding: 15px 0px;
    display: block;
    position: relative;
}

#function-nav ul li a:hover {
    color: #F7941E;
}

#function-nav ul li a:after {
    content: "";
    background: #F7941E;
    display: block;
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 1px;
    opacity: 0;
}

#function-nav ul li a:hover:after {
    opacity: 1;
}

#function-nav ul li a:after {
    content: "";
    background: #F7941E;
    display: block;
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 1px;
    opacity: 0;
}

#function-nav ul li a:hover:after {
    opacity: 1;
}

/*--------------------------------------------------------------
# Function Enquiry
--------------------------------------------------------------*/
#function-enquiry .content {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
    -moz-column-fill: auto;
    column-fill: auto;
    -webkit-column-gap: 45px;
    -moz-column-gap: 45px;
    column-gap: 45px
}

#function-enquiry .content p {
    -webkit-column-break-inside: avoid;
    page-break-inside: avoid;
    -moz-column-break-inside: avoid;
    column-break-inside: avoid;
    break-inside: avoid;
    break-inside: avoid-column;
    display: inline-block;
}

#function-enquiry .content strong {
    color: #f7941e
}

#function-enquiry .button {
    margin-top: 25px;
}

#function-enquiry .button:hover {
    background-color: #f7941e;
    color: #fff;
    cursor: pointer;
    border: 2px solid #f7941e;
}

/*--------------------------------------------------------------
# Function Enquiry
--------------------------------------------------------------*/
#function-form .button {
    float: right;
}

/*--------------------------------------------------------------
# Function Map
--------------------------------------------------------------*/
#function-map {
    background-color: #f7941e;
}

#function-map img {
    width: 100%;
    height: auto;
}

#function-map .function-space-links {
    border: 1px solid #fff;
    max-width: 270px;
}

#function-map .function-space-links h3 {
    font-family: 'Tungsten-Semibold';
    text-transform: uppercase;
    text-align: center;
    padding: 25px 45px 20px;
    font-size: 40px;
    color: #fff;
    line-height: 1;
    border-bottom: 1px solid #fff;
}

#function-map .function-space-links .list {
    padding: 45px;
}

#function-map .function-space-links a {
    display: block;
    color: #fff;
    padding: 10px 0px;
}

#function-map:after {
    content: '';
    display: table;
    clear: both;
}

.swiper-pagination-fraction {
    font-size: 11px;
    letter-spacing: -1px;
}

/*--------------------------------------------------------------
# Function space
--------------------------------------------------------------*/
.page-function {
    padding-bottom: 0 !important;
    padding-top: 0 !important;
    background: none !important;
}

/*--------------------------------------------------------------
# Function advert
--------------------------------------------------------------*/
.function-advert {
    background-color: #ffecd1;
    padding: 25px 0;
}

@media screen and (max-width: 767px) {
    .function-advert {
        padding: 0;
    }

    .function-advert .wrapper {
        padding: 0;
    }
}

/*--------------------------------------------------------------
# main event page
--------------------------------------------------------------*/
body.page-template-page-event div.column h1.lp__heading,
body.page-template-page-event h2.lp__subheading,
body.page-template-page-event div.column p {
    color: #0071BB;
}

.logo {
    background-color: #FDEBD3;
}

img.logo {
    max-width: 650px;
    padding: 60px 0 70px;
    margin: auto;
}

@media screen and (max-width: 767px) {
    img.logo {
        max-width: 320px;
        padding: 30px 25px;
    }
}

@media screen and (min-width: 767px) and (max-width: 1024px) {
    img.logo {
        max-width: 500px;
    }
}

.image-banner {
    position: relative;
}

div.image-banner a.lp__button.button {
    position: absolute;
    width: 280px;
    top: -20px;
    left: 0;
    right: 0;
    margin: auto;
    background-color: #FDEBD3;
    height: 60px;
    line-height: 60px;
    font-size: 18px;
}

@media screen and (max-width: 450px) {
    div.image-banner a.lp__button.button {
        position: relative;
        top: 0;
        width: 100%;
        background-color: #f7941e;
        color: #FFFBF6;
    }

    div.image-banner .button {
        height: 75px;
        line-height: 75px;
    }

    .lp-intro a.lp__button.button {
        display: none;
    }

    div.large-6 .lp__heading {
        margin-bottom: 0;
    }
}

.landing-page .wrapper {
    max-width: 1150px;
}

.page-template-page-event .landing-page {
    background-color: #FFFBF6;
}

.lp-banner__image {
    width: 600px;
    margin: 90px auto 180px;
}

.lp__button.button {
    border: 2px solid #f7941e;
    color: #f7941e;
}

.page-template-page-event a.lp__button.button:hover {
    background-color: #f7941e;
    color: #FDEBD3;
}

@media screen and (max-width: 767px) {
    .lp-banner__image {
        margin: 45px auto;
    }
}

.lp-intro {
    margin-top: 90px;
    margin-bottom: 90px;
}

@media screen and (max-width: 767px) {
    .lp-intro {
        margin-top: 45px;
        margin-bottom: 45px;
    }
}

.lp__heading {
    max-width: 300px;
    margin-bottom: 45px;
}

.lp__subheading {
    margin-bottom: 45px;
    text-transform: uppercase;
}

.lp__description strong {
    font-size: 20px;
}

@media screen and (max-width: 767px) {
    .lp__description strong {
        font-size: 14px;
    }
}

@media screen and (max-width: 1024px) {
    .lp__description {
        margin-top: 45px;
    }
}

.lp-video {
    margin: 0 auto;
}

.lp-video__player {
    height: 0;
    padding-bottom: 56.25%;
    position: relative;
}

.lp-video__player iframe {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.lp-gallery {
    margin-top: 90px;
    margin-bottom: 90px;
}

@media screen and (max-width: 767px) {
    .lp-gallery {
        margin-top: 0;
        margin-bottom: 45px;
    }
}

.lp-gallery:after {
    content: '';
    display: table;
    clear: both;
}

.lp-gallery-item {
    float: left;
    width: 50%;
    padding: 25px 0;
}

@media screen and (max-width: 767px) {
    .lp-gallery-item {
        width: 100%;
        padding: 10px 0;
    }
}

.lp-gallery-item:nth-child(even) {
    padding-left: 25px;
    -webkit-transform: translateY(-10rem);
    transform: translateY(-10rem);
}

@media screen and (max-width: 767px) {
    .lp-gallery-item:nth-child(even) {
        padding-left: 0;
        -webkit-transform: none;
        transform: none;
    }
}

.lp-gallery-item:nth-child(odd) {
    padding-right: 25px;
}

@media screen and (max-width: 767px) {
    .lp-gallery-item:nth-child(odd) {
        padding-right: 0;
    }
}

.lp-gallery-item__image {
    width: 100%;
    height: auto;
    display: block;
}

/*--------------------------------------------------------------
# Function space
--------------------------------------------------------------*/
#function-space {
    background-color: #f7f7f7;
}

#function-space .function-space-item {
    background-color: #fff;
    margin-bottom: 90px;
    position: relative;
}

#function-space .function-space-item:last-child {
    margin-bottom: 0;
}

#function-space .function-space-item:after {
    content: '';
    display: table;
    clear: both;
}

#function-space .function-space-item h2 {
    text-align: center;
    text-transform: uppercase;
    padding: 45px 0 30px;
    font-size: 45px;
    margin-bottom: 0;
}

#function-space .map {
    width: 45%;
    float: left;
    position: relative;
}

#function-space .map-image:before {
    content: '';
    display: table;
    clear: both;
}

#function-space .map-image {
    margin-bottom: 70px;
    padding: 45px;
    position: absolute;
    top: 55%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
}

#function-space .map-image img {
    width: 100%;
    height: auto;
}

#function-space .details {
    width: 55%;
    float: left;
}

#function-space .gallery {
    position: relative;
}

#function-space .gallery:after {
    content: '';
    display: table;
    clear: both;
}

#function-space .take-virtual-tour {
    background-color: #f7941e;
    height: 50px;
    padding: 0 45px;
    color: #fff;
    display: block;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 11;
    line-height: 50px;
}

#function-space .take-virtual-tour i {
    margin-right: 10px;
}

#function-space .gallery-carousel {
    overflow: hidden;
}

#function-space .gallery-carousel img {
    width: 100%;
    height: auto;
}

#function-space .description {
    padding: 45px 75px;
    border-left: 2px solid #f7f7f7;
}

#function-space .description h3 {
    font-size: 18px;
    font-weight: bold;
}

#function-space .description h3 + p {
    margin-top: 15px;
}

#function-space .description a {
    color: #f7941e;
    font-size: 15px;
    display: inline-block;
    margin-right: 25px;
    margin-top: 45px;
}

#function-space .description a i {
    margin-right: 10px;
}

#function-space .meta:after {
    content: '';
    display: table;
    clear: both;
}

#function-space .meta {
    color: #666666;
    font-size: 13px;
    line-height: 1.2;
    text-align: center;
    border-top: 2px solid #F7F7F7;
}

#function-space .meta span {
    display: inline-block;
    margin-top: 3px;
    margin-left: 45px;
}

#function-space .meta > div {
    padding: 15px;
    height: 50px;
    position: relative;
    border-bottom: 2px solid #f7f7f7;
}

#function-space .meta > div:last-child {
    border-right: none;
}

#function-space .area {
    border-right: 2px solid #f7f7f7;
}

#function-space .meta > div:before {
    content: '';
    display: inline-block;
    width: 35px;
    height: 35px;
    top: 8px;
    position: absolute;
    background-size: cover;
    background-repeat: no-repeat;
}

#function-space .venue-meta {
    position: absolute;
    bottom: 0;
    left: 0;
    border-top: 2px solid #f7f7f7;
    display: table;
    height: auto;
    font-size: 12px;
    width: 100%;
    padding: 10px 0;
}

#function-space .venue-meta > div {
    height: 40px;
    position: relative;
    text-align: left;
    padding: 0 10px;
}

#function-space .venue-meta > div:before {
    content: '';
    display: inline-block;
    background-repeat: no-repeat;
    width: 40px;
    height: 40px;
    background-size: cover
}

#function-space .venue-meta > div span {
    position: absolute;
    top: 53%;
    left: 55px;
    transform: translateY(-50%);
}

#function-space .area:before {
    background-image: url(images/icon-area.png);
}

#function-space .capacity:before {
    background-image: url(images/icon-cocktail.png);
}

#function-space .powerpoint:before {
    background-image: url(images/icon-powerpoint.png);
}

#function-space .umbrella:before {
    background-image: url(images/icon-umbrella.jpg);
}

#function-space .cover:before {
    background-image: url(images/icon-cover.png);
}

#function-space .high-tables:before {
    background-image: url(images/icon-high-tables.png);
}

#function-space .fixed-tables:before {
    background-image: url(images/icon-fixed-tables.png);
}

#function-space .barrier:before {
    background-image: url(images/icon-barrier.png);
}

.virtual-tour {
    position: absolute;
    top: 0;
    z-index: -1;
    opacity: 0;
    width: 100%;
    height: 100%;
    transition: all 0.3s ease-in-out;
}

.close-virtual-tour {
    position: absolute;
    top: 10px;
    background-color: #f7941e;
    width: 30px;
    line-height: 30px;
    text-align: center;
    color: #fff;
    right: 12px;
    z-index: 25;
    height: 30px;
}

#function-space .details.is-active .virtual-tour {
    opacity: 1;
    z-index: 12;
    transition: all 0.3s ease-in-out;
}

.virtual-tour-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.function-list ul {
    padding: 0;
    margin: 0;
}

.function-list li {
    list-style: none;
    font-weight: 600;
}

.function-list li:before {
    content: '//';
    display: inline-block;
    color: #f7941e;
    margin-right: 20px;
}

.map-image img {
    margin: auto;
}

/*--------------------------------------------------------------
# Menu page
--------------------------------------------------------------*/
.menu-pdf {
    padding: 45px 0 25px;
    border-bottom: 1px solid #f2f2f2;
    border-top: 1px solid #f2f2f2;
}

.menu-pdf::after {
    content: "";
    display: table;
    clear: both;
}

.menu-pdf-items {
    margin: 0;
    padding: 0;
    text-align: center;
}

.menu-pdf-item {
    list-style: none;
    display: inline-block;
    font-family: 'Tungsten-Semibold', sans-serif;
    font-size: 30px;
    line-height: 40px;
    text-transform: uppercase;
    padding: 0 5% 20px;
    letter-spacing: 1px;
    position: relative;
}

.menu-pdf-item:hover .menu-pdf-item__label::before {
    content: '//';
    display: inline-block;
    position: absolute;
    top: -25px;
    text-align: center;
    letter-spacing: 0;
    left: 0;
    right: 0;
    color: #f7941e;
    font-size: 18px;
    font-weight: 700;
}

.menu-pdf-item__label {
    display: block;
    color: #f7941e;
    font-family: "Courier New", "Consolas", "Andale Mono", monospace;
    display: block;
    margin-bottom: 0;
    font-size: 17px;
    line-height: 17px;
    font-weight: 500;
    text-transform: none;
}

.menu-gallery {
    padding-top: 90px;
    padding-bottom: 90px;
}

.menu-gallery::after {
    content: "";
    display: table;
    clear: both;
}

.menu-gallery-inner {
    margin-left: -30px;
    margin-right: -30px;
}

.menu-gallery-item {
    width: 63.85%;
    float: left;
    padding: 0 1% 2%;
}

.menu-gallery-item.one-third {
    width: 36.05%;
}

.menu-gallery-item:nth-child(3) {
    float: right;
}

.menu-gallery-item__image {
    width: 100%;
    height: auto;
    display: block;
}

@media screen and (max-width: 767px) {
    .menu-gallery {
        padding: 45px 25px;
    }

    .menu-gallery-inner {
        margin: 0;
    }

    .menu-gallery-item {
        float: none;
        width: 100%;
        padding-left: 0;
        padding-right: 0;
        padding-bottom: 20px;
    }

    .menu-gallery-item.one-third {
        width: 100%;
    }
}

/*--------------------------------------------------------------
# Contact Page
--------------------------------------------------------------*/
.page-contact {
    padding-top: 90px
}

.page-contact a {
    border-bottom: 1px solid #000;
}

.contact-details {
    border-top: 1px solid #f7f7f7;
    border-bottom: 1px solid #f7f7f7;
    padding-top: 45px;
    padding-bottom: 45px;
    margin-top: 45px;
}

.contact-details > div:after {
    content: '';
    display: table;
    clear: both;
}

.contact-details a {
    color: #000;
    border-bottom: none;
}

.contact-details > div {
    margin-bottom: 25px;
    line-height: 1.5;
    font-size: 15px;
    word-break: break-word;
}

.contact-details > div:last-child {
    margin-bottom: 0;
}

.contact-details span {
    display: block;
    width: 90%;
    float: left;
}

.contact-details i {
    display: inline-block;
    float: left;
    width: 10%;
    margin-top: 5px;
}

.contact-details > div:last-child i {
    margin-bottom: 20px;
}

.contact-details span {
    display: block;
}

.page-contact input[type="submit"] {
    float: right;
    margin-top: 45px;
}

#location {
    background-color: #262626;
}

#location:after {
    content: '';
    display: table;
    clear: both;
}

#location .column {
    padding: 0;
}

#location .column:last-child {
    padding: 75px 90px 0px 130px;
}

#location h2 {
    color: #f7941e;
    text-transform: uppercase;
    width: 80%;
    margin: 0 auto 45px;
    max-width: 360px;
}

#location ul {
    margin: 0;
    padding: 0;
    width: 80%;
    margin: 0 auto;
    max-width: 360px;
}

#location li {
    list-style: none;
    color: #fff;
    position: relative;
}

#location .google-map {
    width: 100%;
    height: 550px;
}

#location .google-map img {
    max-width: inherit !important;
}

#location .tram:before {
    content: '';
    display: inline-block;
    background-image: url(images/icon-train.svg);
    background-repeat: no-repeat;
    width: 70px;
    height: 70px;
    position: absolute;
    top: -15px;
    left: -70px;
}

#location .train:before {
    content: '';
    display: inline-block;
    background-image: url(images/icon-tram.svg);
    background-repeat: no-repeat;
    width: 70px;
    height: 70px;
    position: absolute;
    top: -15px;
    left: -70px;
}

#location .car:before {
    content: '';
    display: inline-block;
    background-image: url(images/icon-car.svg);
    background-repeat: no-repeat;
    width: 70px;
    height: 70px;
    position: absolute;
    top: -15px;
    left: -70px;
}

#location li {
    padding-bottom: 20px;
}

/*--------------------------------------------------------------
# Basic page
--------------------------------------------------------------*/
.page-content {
    padding-top: 90px;
}

.page-content--no-background {
    background-image: none !important;
    padding-top: 0;
}

.page-content .content {
    -webkit-columns: 2;
    -moz-columns: 2;
    columns: 2;
    -webkit-column-gap: 45px;
    -moz-column-gap: 45px;
    column-gap: 45px;
}

.page-id-262 .page-content .content {
    -webkit-columns: 1;
    -moz-columns: 1;
    columns: 1;
}

.page-content .content p {
    -webkit-column-break-inside: avoid; /* Chrome, Safari, Opera */
    page-break-inside: avoid; /* Deprecated Firefox */
    -moz-column-break-inside: avoid; /* Current Firefox */
    column-break-inside: avoid;
    break-inside: avoid; /* IE 10+ */
    break-inside: avoid-column;
    overflow: hidden;
    display: inline-block; /* Fixes enpty space at top*/
}

.page-content .button {
    margin-top: 45px;
}

.page-content .content strong {
    color: #f7941e;
}

.page-content input[type="submit"] {
    float: right;
}

.gallery:after {
    content: '';
    display: table;
    clear: both;
}

.gallery-item {
    float: left;
}

.gallery-item img {
    width: 100%;
    height: auto;
}

.gallery-count-2 {
    width: 50%;
}

.gallery-count-3 {
    width: 33.33%;
}

.gallery-count-4 {
    width: 25%;
}

.menu-content {
    padding-bottom: 0;
}

.menu-heading {
    border-top: 1px solid #f7f7f7;
    border-bottom: 1px solid #f7f7f7;
    text-transform: uppercase;
    line-height: 1;
}

.menu-heading:after {
    content: '';
    display: table;
    clear: both;
}

.menu-heading span {
    display: block;
    line-height: 40px;
}

.menu-heading span:first-child {
    font-size: 40px;
    width: 40%;
    float: left;
}

.menu-heading span.subtitle {
    color: #f7941e;
    font-size: 30px;
    text-align: right;
    width: 60%;
    float: left;
}

/*--------------------------------------------------------------
# Menu page
--------------------------------------------------------------*/
.menu-content.drink .menu-item h3 {
    width: 70%;
}

.menu-content.drink .menu-item .price {
    width: 30%;
}

.food-drink-menu .menu-item {
    font-size: 15px;
    position: relative;
    margin-bottom: 15px;
}

.food-drink-menu .menu-item:before {
    content: '//';
    display: block;
    width: 23px;
    position: absolute;
    left: -23px;
    height: 30px;
    color: #f7941e;
    top: 2px;
}

.food-drink-menu .menu-item:after {
    content: '';
    display: table;
    clear: both;
}

.food-drink-menu .menu-item h3 {
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 15px;
    width: 78%;
    float: left;
}

.food-drink-menu .menu-item .price {
    width: 22%;
    float: right;
    text-align: right;
}

.food-drink-menu .menu-item .description {
    text-transform: none;
    font-weight: 300;
    width: 100%;
    padding-right: 15%;
    margin-bottom: 15px;
}

.food-drink-menu .menu-item .description:before {
    content: '';
    display: table;
    clear: both;
}

.food-drink-menu .menu-item .description p {
    margin-bottom: 0;
    line-height: 1.4;
}

.food-drink-menu .menu-item .extras {
    font-weight: 700;
    text-transform: none;
    display: inline-block;
    margin-top: 5px;
    -webkit-font-smoothing: antialiased;
}

.food-drink-menu .column .menu-item:last-child .description {
    margin-bottom: 0;
}

.food-drink-menu .menu-title {
    margin-bottom: 45px;
    margin-top: 45px;
    font-size: 32px;
    text-transform: uppercase;
}

.food-drink-menu .menu-title.orange {
    color: #f7941e;
}

.food-drink-menu .menu-title.black {
    color: #000;
}

/*--------------------------------------------------------------
# 404 page
--------------------------------------------------------------*/
.error-404 {
    text-align: center;
}

@media screen and (min-width: 1024px) and (max-width: 1250px) {
    .main-navigation .navigation ul > li {
        font-size: 18px;
    }

    .main-navigation .navigation ul > li > a {
        padding-left: 8px;
        padding-right: 8px;
    }

    #logo img {
        width: 190px;
    }

    .main-navigation .navigation #nav-right {
        padding-left: 112px;
    }

    .main-navigation .navigation #nav-left {
        padding-right: 112px;
    }

}

@media screen and (max-width: 1024px) {
    .padding-large {
        padding-top: 45px;
        padding-bottom: 45px;
    }

    .centered-row {
        padding: 0 45px;
    }

    .wrapper {
        padding-left: 35px;
        padding-right: 35px;
    }

    .row {
        margin-left: -35px;
        margin-right: -35px;
    }

    .column, .columns {
        padding-left: 35px;
        padding-right: 35px;
    }

    .column.no-padding {
        padding-left: 0px;
        padding-right: 0px;
    }

    /*--------------------------------------------------------------
    # Navigation
    --------------------------------------------------------------*/
    .main-navigation .navigation {
        display: none;
    }

    /*--------------------------------------------------------------
    # Page wrap
    --------------------------------------------------------------*/
    .page-wrap {
        -webkit-transform: translateX(0px);
        -moz-transform: translateX(0px);
        -ms-transform: translateX(0px);
        -o-transform: translateX(0px);
        transform: translateX(0px);
        -webkit-transition: transform .5s ease;
        -o-transition: transform .5s ease;
        transition: transform .5s ease;
        overflow: hidden;
        position: relative;
        z-index: 999;
        background: #FFFBF6;
    }

    .page-wrap.is-active::before {
        content: '';
        display: block;
        position: fixed;
        z-index: 999;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        opacity: 1;
        visibility: visible;
        background: rgba(0, 0, 0, .5);
        -webkit-transition: opacity 0.2s, visibility 0s 0.2s;
        -o-transition: opacity 0.2s, visibility 0s 0.2s;
        transition: opacity 0.2s, visibility 0s 0.2s;
        width: 100%;
        height: 100%;
    }

    .page-wrap.is-active {
        overflow: visible;
        -webkit-transform: translateX(-270px);
        -moz-transform: translateX(-270px);
        -ms-transform: translateX(-270px);
        -o-transform: translateX(-270px);
        transform: translateX(-270px);
        -webkit-transition: transform .5s ease;
        -o-transition: transform .5s ease;
        transition: transform .5s ease;
    }

    /*--------------------------------------------------------------
    # Mobile menu
    --------------------------------------------------------------*/
    .mobile-menu {
        display: block;
        position: fixed;
        z-index: 1;
        top: 0;
        bottom: 0;
        right: 0;
        width: 270px;
        background-color: #000000;
        height: 100vh;
        padding: 35px 0;
    }

    .mobile-menu ul {
        width: 100%;
        text-align: left !important;
        padding: 0;
        margin: 0;
        border: none;
        display: block;
        height: auto;
    }

    .mobile-menu ul > li {
        margin: 0 !important;
        padding: 0;
        line-height: 1;
        color: #002B5C;
        display: block;
        float: none;
        clear: both;
    }

    .mobile-menu ul > li > a {
        display: block;
        color: #ffffff;
        padding: 15px 30px;
        margin: 0;
        line-height: 1;
        text-transform: uppercase;
        font-family: 'Tungsten-Semibold', sans-serif;
        font-size: 18px;
        letter-spacing: 1.8px;
    }

    .mobile-menu .sub-menu {
        background-color: #262626;
        margin: 0;
        padding: 0;
        width: 100%;
    }

    .mobile-menu #social {
        position: static;
        width: 100%;
        background-color: transparent;
        padding: 20px 30px;
    }

    .mobile-menu #social li {
        display: inline-block;
        padding: 0 10px 0 0;
    }

    .mobile-menu #social li a {
        padding: 0;
    }

    /*--------------------------------------------------------------
    # Navicon
    --------------------------------------------------------------*/
    #nav-icon {
        display: block;
        overflow: visible;
        cursor: pointer;
        transition-timing-function: linear;
        transition-duration: .15s;
        transition-property: opacity, -webkit-filter;
        transition-property: opacity, filter;
        transition-property: opacity, filter, -webkit-filter;
        text-transform: none;
        color: inherit;
        border: 0;
        background-color: transparent;
        position: absolute;
        top: 22px;
        right: 25px;
        z-index: 9999;
    }

    #nav-icon.is-active {
        position: fixed;
    }

    #nav-icon:hover {
        opacity: .7;
    }

    .nav-icon-box {
        position: relative;
        display: inline-block;
        width: 35px;
        height: 24px;
    }

    .nav-icon-inner {
        top: 50%;
        display: block;
        margin-top: -2px;
        transition-timing-function: cubic-bezier(.55, .055, .675, .19);
        transition-duration: .1s;
    }

    .nav-icon-inner:before {
        top: -8px;
    }

    .nav-icon-inner:after {
        bottom: -8px;
    }

    .nav-icon-inner,
    .nav-icon-inner:after,
    .nav-icon-inner:before {
        position: absolute;
        width: 35px;
        height: 2px;
        transition-timing-function: ease;
        transition-duration: .15s;
        transition-property: -webkit-transform;
        transition-property: transform;
        transition-property: transform, -webkit-transform;
        border-radius: 2px;
        background-color: #fff;
        display: block;
        content: '';
    }

    #nav-icon.is-active .nav-icon-inner {
        transition-delay: .14s;
        transition-timing-function: cubic-bezier(.215, .61, .355, 1);
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
        background-color: #fff;
    }

    #nav-icon.is-active .nav-icon-inner:before {
        top: 0;
        transition: top .1s ease, opacity .1s .14s ease;
        opacity: 0;
        background-color: #fff;
    }

    #nav-icon.is-active .nav-icon-inner:after {
        bottom: 0;
        transition: bottom .1s ease, -webkit-transform .1s .14s cubic-bezier(.215, .61, .355, 1);
        transition: bottom .1s ease, transform .1s .14s cubic-bezier(.215, .61, .355, 1);
        transition: bottom .1s ease, transform .1s .14s cubic-bezier(.215, .61, .355, 1), -webkit-transform .1s .14s cubic-bezier(.215, .61, .355, 1);
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg);
        background-color: #fff;
    }

    /*--------------------------------------------------------------
    # Nav icon
    --------------------------------------------------------------*/
    #site-header {
        height: 70px;
        overflow: hidden;
    }

    /*--------------------------------------------------------------
    # logo
    --------------------------------------------------------------*/
    #logo {
        position: static;
        margin: 0;
        transform: none;
        max-width: 190px;
        padding: 12px 0;
        margin-left: 25px;
    }

    #logo img {
        position: static;
        transform: none;
    }

    /*--------------------------------------------------------------
    # Footer
    --------------------------------------------------------------*/
    #site-footer .contact .column:first-child {
        padding: 0 10px 15px;
    }

    #site-footer .contact .column:nth-child(2) {
        padding: 0 10px 15px;
    }

    #site-footer .footer-logo {
        padding: 45px 0;
    }

    /*--------------------------------------------------------------
    # Event List
    --------------------------------------------------------------*/
    .event-list {
        padding-bottom: 65px !important;
    }

    .event-list-item {
        margin-left: 35px;
        margin-right: 35px;
    }

    .event-list-item .image {
        width: 100%;
        float: none;
        height: 250px !important;
    }

    .event-list-item .content {
        width: 100%;
        float: none;
        height: auto !important
    }

    .event-list-item .chevron {
        font-size: 18px;
        margin-top: 25px;
    }

    .event-list-item .chevron:after {
        background-image: none;
    }

    .event-list-item h2,
    .event-list-item .description {
        padding: 30px;
    }

    /*--------------------------------------------------------------
    # Event Single
    --------------------------------------------------------------*/
    .event-post-image {
        margin-top: 40px;
        margin-left: -45px;
        margin-right: -45px;
        overflow: hidden;
    }

    .event-post-meta {
        margin-top: 45px;
    }

    .event-post-text {
        margin-top: 25px;
        word-break: break-word;
    }

    .event-post-meta > div {
        margin-bottom: 25px;
    }

    /*--------------------------------------------------------------
    # Contact Page
    --------------------------------------------------------------*/
    #location .column {
        width: 100%;
    }

    #location .column:last-child {
        padding: 75px 90px 60px 130px;
    }

    #function-space .venue-meta {
        padding: 10px 0px;
    }

    /*--------------------------------------------------------------
    # Functions Page
    --------------------------------------------------------------*/
    #function-space .function-space-item h2 {
        font-size: 40px;
        padding: 35px 0 20px;
    }

    #function-space .map {
        width: 100%;
        float: none;
        height: auto !important;
    }

    #function-space .map-image {
        padding: 45px 45px 110px 45px;
        position: static;
        transform: none;
        margin-bottom: 0;
    }

    #function-space .details {
        border-top: none;
        width: 100%;
        float: none;
        height: auto;
    }

    #function-enquiry {
        position: relative;
    }

    #function-enquiry .title {
        margin-bottom: 0px;
    }

    #function-enquiry .content {
        -webkit-column-count: 2;
        -moz-column-count: 2;
        column-count: 2;
        margin-top: 45px;
    }

    /*--------------------------------------------------------------
    # Functions Nav
    --------------------------------------------------------------*/
    #function-nav ul {
        display: table;
        width: 100%;
    }

    #function-nav ul li {
        width: 33.33%;
        padding: 0;
        display: table-cell;
        vertical-align: middle;
    }

    #function-nav ul li a {
        padding: 20px 14px;
        font-size: 13px;
        border-right: 1px solid #EBEBEB;
    }

    #function-nav ul li:last-child a {
        border-right: none;
    }

    /*--------------------------------------------------------------
    # Functions Form
    --------------------------------------------------------------*/
    #function-form {
        margin-top: 45px;
    }

    #function-form .button {
        width: 100%;
        float: none;
    }

    #function-map {
        display: none;
    }

    /*--------------------------------------------------------------
    # Functions Page
    --------------------------------------------------------------*/
    #function-space .map,
    #function-space .details {
        width: 100%;
    }

    #function-space .gallery-slide.gallery-slide-active {
        width: 100% !important;
    }

    #function-enquiry .row.padding-bottom-large {
        padding-bottom: 30px;
    }

    #function-space .meta.bottom {
        position: static;
        bottom: auto;
        left: auto;
        border-top: 2px solid #f7f7f7;
        display: table;
        height: auto;
        font-size: 12px;
        width: 100%;
        padding: 15px;
    }

    #function-enquiry > .padding-large {
        padding-bottom: 25px;
    }

    #function-nav ul {
        display: table;
        width: 100%;
    }

    #function-nav ul li {
        width: 33.33%;
        padding: 0;
        display: table-cell;
        vertical-align: middle;
    }

    #function-nav ul li a {
        padding: 20px 14px;
        font-size: 13px;
        border-right: 1px solid #EBEBEB;
    }

    #function-nav ul li:last-child a {
        border-right: none;
    }

    /*--------------------------------------------------------------
    # Basic page
    --------------------------------------------------------------*/
    #main.page-content {
        padding-top: 70px;
    }

    .page-content .title {
        margin-bottom: 45px;
    }

    /*--------------------------------------------------------------
    # Homepage
    --------------------------------------------------------------*/
    /*--------------------------------------------------------------
    # Homepage Gallery
    --------------------------------------------------------------*/
    #function-gallery {
        padding-bottom: 0;
    }

    #function-gallery #gallery {
        width: 100%;
        float: none;
        margin: 0;
        overflow: hidden;
    }

    #function-gallery #gallery:after {
        content: '';
        display: table;
        clear: both;
    }

    #function-gallery #gallery .gallery-pagination {
        display: block;
    }

    #function-gallery .content {
        position: static;
        transform: none;
        width: 100%;
        clear: both;
        padding-left: 35px;
        padding-right: 35px;
    }

    #function-gallery .content .title {
        text-align: left;
    }

    #function-gallery .content .title:after {
        margin: 15px 0px 0px 0px
    }

    /*--------------------------------------------------------------
    # Homepage Latest Event
    --------------------------------------------------------------*/
    #latest-event {
        padding-top: 0;
        padding-bottom: 90px
    }

    #latest-event .image {
        width: 100%;
        float: none;
        margin: 0;
    }

    #latest-event .content {
        position: relative;
        transform: none;
        width: 100%;
        width: 90%; /* fallback if needed */
        width: calc(100% - 70px);
        left: 0;
        right: 0;
        clear: both;
        padding: 45px 35px 120px;
        margin-left: 35px;
        margin-right: 35px;
        float: none;
    }

    #latest-event .title {
        text-align: left;
    }

    #latest-event .title:after {
        margin: 15px 0px 0px 0px
    }

    #latest-event .all-events {
        background-color: #333;
        height: 75px;
        line-height: 75px;
    }

    .food-drink-menu .menu-item:before {
        content: '';
    }

    .food-drink-menu .column .menu-item:last-child .description {
        margin-bottom: 30px;
    }

}

@media screen and (max-width: 767px) {
    .title {
        font-size: 40px;
        text-align: center;
    }

    .title:after {
        margin: 15px auto 0px;
    }

    .title.centered.title:after {
        margin: 15px auto 0;
    }

    body .gform_body .gfield.g-field-half {
        width: 100%;
        float: none;
        margin-right: 0;
        clear: both;
    }

    .gfield_radio li {
        width: 50%;
    }

    .gform_footer input[type="submit"] {
        display: block;
        width: 100%;
    }

    /*--------------------------------------------------------------
   # Basic page
   --------------------------------------------------------------*/
    .padding-large {
        padding-top: 45px;
        padding-bottom: 45px;
    }

    .padding-bottom-large {
        padding-bottom: 45px;
    }

    .mobile {
        display: block;
    }

    /*--------------------------------------------------------------
    # Basic page
    --------------------------------------------------------------*/
    #main {
        background-image: none;
        padding-top: 0;
    }

    #main.page-content {
        padding-top: 0;
    }

    .page-content .content {
        -webkit-columns: 1;
        -moz-columns: 1;
        columns: 1;
        -webkit-column-gap: 0px;
        -moz-column-gap: 0px;
        column-gap: 0px;
    }

    .page-content .content p {
        display: block;
    }

    .page-content .title {
        text-align: center;
        font-size: 40px;
    }

    .page-content .gallery-item {
        width: 100% !important;
    }

    /*--------------------------------------------------------------
    # Home page
    --------------------------------------------------------------*/
    #page-header {
        height: 450px;
    }

    #page-header img {
        padding: 0 35px;
        width: 100%;
        height: auto;
    }

    #find-us {
        padding: 45px;
    }

    #find-us h2 {
        margin-bottom: 45px;
    }

    #find-us .shape:before {
        border: 0;
        padding: 0;
        margin: 0;
    }

    #find-us:after {
        background-image: none;
        position: static;
    }

    #find-us .info {
        padding: 0;
        max-width: 300px;
    }

    #find-us .info .large-6:first-child span {
        margin-bottom: 25px;
    }

    #function-gallery .carousel {
        margin-top: 45px;
    }

    /*--------------------------------------------------------------
    # Functions Page
    --------------------------------------------------------------*/
    .page-function {
        padding-bottom: 15px;
    }

    #function-space .wrapper {
        padding-left: 25px;
        padding-right: 25px;
    }

    #function-space .meta > div:last-child span {
        margin-top: -5px;
        width: 60%;
    }

    #function-space .map-image {
        margin-bottom: 0px;
    }

    #function-space .take-virtual-tour {
        position: static;
        width: 100%;
        text-align: center;
        height: 60px;
        line-height: 60px
    }

    .meta.bottom .column {
        width: 25%;
        float: left;
    }

    #function-nav ul li a {
        padding: 14px 5px;
        font-size: 13px;
        border-right: 1px solid #EBEBEB;
    }

    /*--------------------------------------------------------------
    # Function Enquire
    --------------------------------------------------------------*/
    #function-enquiry .content {
        -webkit-column-count: 1;
        -moz-column-count: 1;
        column-count: 1;
        -moz-column-fill: auto;
        column-fill: auto;
        -webkit-column-gap: 0px;
        -moz-column-gap: 0px;
        column-gap: 0px;
    }

    #function-enquiry .title {
        text-align: left;
        margin: 0 0 35px 0;
    }

    #function-enquiry .title:after {
        margin: 25px 0;
    }

    #function-enquiry a.button {
        margin-top: 0;
    }

    #function-enquiry .function-list {
        display: none;
    }

    #function-space .map,
    #function-space .details {
        width: 100%;
        float: none;
        height: auto !important;
    }

    #function-space .description {
        display: none;
    }

    #function-space .function-space-item {
        margin-bottom: 45px;
    }

    #function-map {
        display: none;
    }

    /*--------------------------------------------------------------
    # Function Form
    --------------------------------------------------------------*/
    #function-enquiry #show-form {
        cursor: pointer;
        margin-top: 0;
        background-color: #f7941e;
        color: #fff;
        cursor: pointer;
        border: 2px solid #f7941e;
        border-radius: 3px;
    }

    #function-form {
        display: none;
    }

    #function-form.not-active {
        display: none;
    }

    #function-form.is-active {
        display: block;
    }

    /*--------------------------------------------------------------
    # Menu food and Drink
    --------------------------------------------------------------*/
    .menu-content .gallery {
        margin-bottom: -30px
    }

    .menu-content .gallery .gallery-item {
        width: 100%;
        float: none;
    }

    .menu-content.drink .menu-item h3 {
        width: 60%;
    }

    .menu-content.drink .menu-item .price {
        width: 40%;
    }

    /*--------------------------------------------------------------
    # All Events
    --------------------------------------------------------------*/
    /*--------------------------------------------------------------
    # Event single
    --------------------------------------------------------------*/
    .menu-heading span:first-child {
        float: none;
        width: 100%;
    }

    .menu-heading span:last-child {
        float: none;
        width: 100%;
        text-align: left;
        margin-top: 10px;
    }

    /*--------------------------------------------------------------
    # Contact Page
    --------------------------------------------------------------*/
    .page-contact .form {
        margin-top: 45px;
    }

    .page-contact .form .gfield.g-field-half {
        width: 100%;
        float: none;
        margin-right: 0;
        clear: both;
    }

    .page-contact input[type="submit"] {
        width: 100%;
        float: none;
        margin-top: 25px;
    }

    #location ul {
        margin: 60px auto;
    }

    #location .column:last-child {
        padding: 40px 20px 0px 60px;
    }

    /*--------------------------------------------------------------
    # Footer
    --------------------------------------------------------------*/
    #site-footer .contact {
        display: none;
    }
}
