/*******************************************************************************

	CSS on Sails Framework
	Title: Secret Agent
	Author: XHTMLized (http://www.xhtmlized.com/)
	Date: June 2012 (Updates: November 2013)

********************************************************************************

	1. BASE
			1.1 CSS reset & normalize
			1.2 Clearfix
			1.3 Selection pseudo-elements
			1.4 Pseudo-class transitions
			1.5 Accessibility navigation & hide
			1.6 Image replacement
			1.7 Fonts
			1.8 Grid system
			1.9 Default styles

	2. COMMON
			2.1 Header
			2.2 Navigation
			2.3 Content
			2.4 Sidebar
			2.5 Footer

	3. PAGES
			3.1 Home
			3.2 Acquire
			3.3 News
			3.4 Thinking
			3.5 Projects
			3.6 FAQ
			3.7 Contact
			3.8 Team
			3.9 Create
			3.10 Property
			3.11 SFUND
            3.12 Stats
			3.13 Opportunity Register

	4. RESPONSIVE

	6. PRINT

*******************************************************************************/


/* 1. BASE
--------------------------------------------------------------------------------
==============================================================================*/


/* 1.1 CSS reset & normalize
------------------------------------------------------------------------------*/

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -ms-box-sizing: border-box;
}

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;
    outline: 0;
    border: 0;
    background: transparent;
    vertical-align: baseline;
    font-size: 100%;
}

article, aside, details, figcaption, figure, footer, header, hgroup,
nav, section, summary {
    display: block;
}

audio, canvas, video {
    display: inline-block;
    *display: inline;
    *zoom: 1;
}

audio:not([controls]) {
    display: none;
    height: 0;
}

[hidden] {
    display: none;
}

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

html, button, input, select, textarea {
    font-family: sans-serif;
}

body {
    hyphens: manual;
    line-height: 1;
}

a:focus {
    outline: thin dotted;
}

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

abbr[title] {
    border-bottom: 1px dotted;
    cursor: help;
}

b, strong {
    font-weight: bold;
}

dfn {
    font-style: italic;
}

mark {
    background: #ff0;
    color: #000;
}

pre, code, kbd, samp {
    font-size: 1em;
    font-family: monospace, serif;
    _font-family: 'courier new', monospace;
}

pre {
    white-space: pre;
    white-space: pre-wrap;
    word-wrap: break-word;
}

blockquote, q {
    quotes: none;
}

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

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

sup {
    top: -.5em;
}

sub {
    bottom: -.25em;
}

ol, ul {
    list-style: none;
    list-style-image: none;
}

img {
    max-width: 100%;
    height: auto !important;
    border: 0;
    vertical-align: middle;
    -ms-interpolation-mode: bicubic;
}

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

legend {
    white-space: normal;
    *margin-left: -7px;
}

button, input, select, textarea {
    margin: 0;
    vertical-align: baseline;
    font-size: 100%;
    *vertical-align: middle;
}

button, input {
    line-height: normal;
    *overflow: visible;
}

a[href], label[for], select, input[type="checkbox"], input[type="radio"] {
    cursor: pointer;
}

button, input[type="button"], input[type="reset"], input[type="submit"] {
    cursor: pointer;
    -webkit-appearance: button;
    *overflow: visible;
}

button[disabled], input[disabled] {
    cursor: default;
}

input[type="checkbox"], input[type="radio"] {
    padding: 0;
    *width: 13px;
    *height: 13px;
}

input[type="search"]::-webkit-search-decoration, input[type="search"]::-webkit-search-cancel-button {
    -webkit-appearance: none;
}

button::-moz-focus-inner, input::-moz-focus-inner {
    padding: 0;
    border: 0;
}

textarea {
    overflow: auto;
    vertical-align: top;
}

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

/* 1.2 Clearfix
------------------------------------------------------------------------------*/

.clearfix {
    *zoom: 1;
}

.clearfix:before, .clearfix:after {
    display: table;
    content: "";
}

.clearfix:after {
    clear: both;
}

/* 1.3 Selection pseudo-elements
------------------------------------------------------------------------------*/

::-moz-selection {
    background: #ef4849;
    color: #fff;
}

::selection {
    background: #ef4849;
    color: #fff;
}

/* 1.4 Pseudo-class transitions
------------------------------------------------------------------------------*/

/*a, a:hover, a:focus, a:active, button, button:hover, button:focus, button:active, input, input:hover, input:focus, input:active, textarea, textarea:hover, textarea:focus, textarea:active {*/
a,
a:hover, a:focus, a:active, button, button:hover, button:focus, button:active {
    -webkit-transition: opacity .25s ease-in-out, color .25s ease-in-out, background .25s ease-in-out;
    -moz-transition: opacity .25s ease-in-out, color .25s ease-in-out, background .25s ease-in-out;
    -ms-transition: opacity .25s ease-in-out, color .25s ease-in-out, background .25s ease-in-out;
    -o-transition: opacity .25s ease-in-out, color .25s ease-in-out, background .25s ease-in-out;
    transition: opacity .25s ease-in-out, color .25s ease-in-out, background .25s ease-in-out;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
}

/* 1.5 Accessibility navigation & hide
------------------------------------------------------------------------------*/

#accessibility-nav {
    position: absolute;
    top: 0;
    left: -9999em;
    z-index: 1000;
}

#accessibility-nav a {
    position: absolute;
    top: 0;
    white-space: nowrap;
}

#accessibility-nav a:active, #accessibility-nav a:focus {
    left: 9999em;
}

.hide {
    position: absolute !important;
    left: -9999em !important;
}

/* 1.6 Image replacement
------------------------------------------------------------------------------*/

.ir {
    position: relative;
    display: block;
    overflow: hidden;
}

.ir span {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
}

/* 1.7 Fonts
------------------------------------------------------------------------------*/

@font-face {
    font-weight: normal;
    font-style: normal;
    font-family: "as brown pro";
    src: url('../fonts/asbrownpro-bold-webfont.eot');
    src: url('../fonts/asbrownpro-bold-webfont.eot?') format('embedded-opentype'),
    url('../fonts/asbrownpro-bold-webfont.woff') format('woff'),
    url('../fonts/asbrownpro-bold-webfont.ttf') format('truetype'),
    url('../fonts/asbrownpro-bold-webfont.svg#') format('svg');
}

@font-face {
    font-weight: bold;
    font-style: normal;
    font-family: "cassannet";
    src: url('../fonts/cassannet-bold-webfont.eot');
    src: url('../fonts/cassannet-bold-webfont.eot?') format('embedded-opentype'),
    url('../fonts/cassannet-bold-webfont.woff') format('woff'),
    url('../fonts/cassannet-bold-webfont.ttf') format('truetype'),
    url('../fonts/cassannet-bold-webfont.svg#') format('svg');
}

@font-face {
    font-weight: normal;
    font-style: normal;
    font-family: "knockout htf26";
    src: url('../fonts/knockout-htf26-webfont.eot');
    src: url('../fonts/knockout-htf26-webfont.eot?') format('embedded-opentype'),
    url('../fonts/knockout-htf26-webfont.woff') format('woff'),
    url('../fonts/knockout-htf26-webfont.ttf') format('truetype'),
    url('../fonts/knockout-htf26-webfont.svg#') format('svg');
}

@font-face {
    font-weight: normal;
    font-style: normal;
    font-family: "knockout htf28";
    src: url('../fonts/knockout-htf28-webfont.eot');
    src: url('../fonts/knockout-htf28-webfont.eot?') format('embedded-opentype'),
    url('../fonts/knockout-htf28-webfont.woff') format('woff'),
    url('../fonts/knockout-htf28-webfont.ttf') format('truetype'),
    url('../fonts/knockout-htf28-webfont.svg#') format('svg');
}

@font-face {
    font-weight: normal;
    font-style: normal;
    font-family: "national-light";
    src: url('../fonts/national-light-webfont.eot');
    src: url('../fonts/national-light-webfont.eot?') format('embedded-opentype'),
    url('../fonts/national-light-webfont.woff') format('woff'),
    url('../fonts/national-light-webfont.ttf') format('truetype'),
    url('../fonts/national-light-webfont.svg#') format('svg');
}

@font-face {
    font-weight: normal;
    font-style: normal;
    font-family: "national";
    src: url('../fonts/national-regular-webfont.eot');
    src: url('../fonts/national-regular-webfont.eot?') format('embedded-opentype'),
    url('../fonts/national-regular-webfont.woff') format('woff'),
    url('../fonts/national-regular-webfont.ttf') format('truetype'),
    url('../fonts/national-regular-webfont.svg#') format('svg');
}

@font-face {
    font-weight: bold;
    font-style: normal;
    font-family: "national";
    src: url('../fonts/national-semibold-webfont.eot');
    src: url('../fonts/national-semibold-webfont.eot?') format('embedded-opentype'),
    url('../fonts/national-semibold-webfont.woff') format('woff'),
    url('../fonts/national-semibold-webfont.ttf') format('truetype'),
    url('../fonts/national-semibold-webfont.svg#') format('svg');
}

/* 1.8 Grid system
------------------------------------------------------------------------------*/

/*!
 * Bootstrap v3.0.2
 *
 * Copyright 2013 Twitter, Inc
 * Licensed under the Apache License v2.0
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Designed and built with all the love in the world @twitter by @mdo and @fat.
 */

.container {
    margin-right: auto;
    margin-left: auto;
    padding-right: 15px;
    padding-left: 15px;
}

.container:before,
.container:after {
    display: table;
    content: " ";
}

.container:after {
    clear: both;
}

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

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

.row:after {
    clear: both;
}

.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2,
.col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4,
.col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5,
.col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7,
.col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9,
.col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10,
.col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12,
.col-md-12, .col-lg-12 {
    position: relative;
    padding-right: 15px;
    padding-left: 15px;
    min-height: 1px;
}

.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6,
.col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11 {
    float: left;
}

.container {
    width: 970px;
}

.col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6,
.col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11 {
    float: left;
}

.col-md-12 {
    width: 100%;
}

.col-md-11 {
    width: 91.66666666666666%;
}

.col-md-10 {
    width: 83.33333333333334%;
}

.col-md-9 {
    width: 75%;
}

.col-md-8 {
    width: 66.66666666666666%;
}

.col-md-7 {
    width: 58.333333333333336%;
}

.col-md-6 {
    width: 50%;
}

.col-md-5 {
    width: 41.66666666666667%;
}

.col-md-4 {
    width: 33.33333333333333%;
}

.col-md-3 {
    width: 25%;
}

.col-md-2 {
    width: 16.666666666666664%;
}

.col-md-1 {
    width: 8.333333333333332%;
}

.col-md-pull-12 {
    right: 100%;
}

.col-md-pull-11 {
    right: 91.66666666666666%;
}

.col-md-pull-10 {
    right: 83.33333333333334%;
}

.col-md-pull-9 {
    right: 75%;
}

.col-md-pull-8 {
    right: 66.66666666666666%;
}

.col-md-pull-7 {
    right: 58.333333333333336%;
}

.col-md-pull-6 {
    right: 50%;
}

.col-md-pull-5 {
    right: 41.66666666666667%;
}

.col-md-pull-4 {
    right: 33.33333333333333%;
}

.col-md-pull-3 {
    right: 25%;
}

.col-md-pull-2 {
    right: 16.666666666666664%;
}

.col-md-pull-1 {
    right: 8.333333333333332%;
}

.col-md-pull-0 {
    right: 0%;
}

.col-md-push-12 {
    left: 100%;
}

.col-md-push-11 {
    left: 91.66666666666666%;
}

.col-md-push-10 {
    left: 83.33333333333334%;
}

.col-md-push-9 {
    left: 75%;
}

.col-md-push-8 {
    left: 66.66666666666666%;
}

.col-md-push-7 {
    left: 58.333333333333336%;
}

.col-md-push-6 {
    left: 50%;
}

.col-md-push-5 {
    left: 41.66666666666667%;
}

.col-md-push-4 {
    left: 33.33333333333333%;
}

.col-md-push-3 {
    left: 25%;
}

.col-md-push-2 {
    left: 16.666666666666664%;
}

.col-md-push-1 {
    left: 8.333333333333332%;
}

.col-md-push-0 {
    left: 0%;
}

.col-md-offset-12 {
    margin-left: 100%;
}

.col-md-offset-11 {
    margin-left: 91.66666666666666%;
}

.col-md-offset-10 {
    margin-left: 83.33333333333334%;
}

.col-md-offset-9 {
    margin-left: 75%;
}

.col-md-offset-8 {
    margin-left: 66.66666666666666%;
}

.col-md-offset-7 {
    margin-left: 58.333333333333336%;
}

.col-md-offset-6 {
    margin-left: 50%;
}

.col-md-offset-5 {
    margin-left: 41.66666666666667%;
}

.col-md-offset-4 {
    margin-left: 33.33333333333333%;
}

.col-md-offset-3 {
    margin-left: 25%;
}

.col-md-offset-2 {
    margin-left: 16.666666666666664%;
}

.col-md-offset-1 {
    margin-left: 8.333333333333332%;
}

.col-md-offset-0 {
    margin-left: 0%;
}

@media (max-width: 991px) {
    .container {
        width: 750px;
    }

    .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6,
    .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11 {
        float: left;
    }

    .col-sm-12 {
        width: 100%;
    }

    .col-sm-11 {
        width: 91.66666666666666%;
    }

    .col-sm-10 {
        width: 83.33333333333334%;
    }

    .col-sm-9 {
        width: 75%;
    }

    .col-sm-8 {
        width: 66.66666666666666%;
    }

    .col-sm-7 {
        width: 58.333333333333336%;
    }

    .col-sm-6 {
        width: 50%;
    }

    .col-sm-5 {
        width: 41.66666666666667%;
    }

    .col-sm-4 {
        width: 33.33333333333333%;
    }

    .col-sm-3 {
        width: 25%;
    }

    .col-sm-2 {
        width: 16.666666666666664%;
    }

    .col-sm-1 {
        width: 8.333333333333332%;
    }

    .col-sm-pull-12 {
        right: 100%;
    }

    .col-sm-pull-11 {
        right: 91.66666666666666%;
    }

    .col-sm-pull-10 {
        right: 83.33333333333334%;
    }

    .col-sm-pull-9 {
        right: 75%;
    }

    .col-sm-pull-8 {
        right: 66.66666666666666%;
    }

    .col-sm-pull-7 {
        right: 58.333333333333336%;
    }

    .col-sm-pull-6 {
        right: 50%;
    }

    .col-sm-pull-5 {
        right: 41.66666666666667%;
    }

    .col-sm-pull-4 {
        right: 33.33333333333333%;
    }

    .col-sm-pull-3 {
        right: 25%;
    }

    .col-sm-pull-2 {
        right: 16.666666666666664%;
    }

    .col-sm-pull-1 {
        right: 8.333333333333332%;
    }

    .col-sm-pull-0 {
        right: 0%;
    }

    .col-sm-push-12 {
        left: 100%;
    }

    .col-sm-push-11 {
        left: 91.66666666666666%;
    }

    .col-sm-push-10 {
        left: 83.33333333333334%;
    }

    .col-sm-push-9 {
        left: 75%;
    }

    .col-sm-push-8 {
        left: 66.66666666666666%;
    }

    .col-sm-push-7 {
        left: 58.333333333333336%;
    }

    .col-sm-push-6 {
        left: 50%;
    }

    .col-sm-push-5 {
        left: 41.66666666666667%;
    }

    .col-sm-push-4 {
        left: 33.33333333333333%;
    }

    .col-sm-push-3 {
        left: 25%;
    }

    .col-sm-push-2 {
        left: 16.666666666666664%;
    }

    .col-sm-push-1 {
        left: 8.333333333333332%;
    }

    .col-sm-push-0 {
        left: 0%;
    }

    .col-sm-offset-12 {
        margin-left: 100%;
    }

    .col-sm-offset-11 {
        margin-left: 91.66666666666666%;
    }

    .col-sm-offset-10 {
        margin-left: 83.33333333333334%;
    }

    .col-sm-offset-9 {
        margin-left: 75%;
    }

    .col-sm-offset-8 {
        margin-left: 66.66666666666666%;
    }

    .col-sm-offset-7 {
        margin-left: 58.333333333333336%;
    }

    .col-sm-offset-6 {
        margin-left: 50%;
    }

    .col-sm-offset-5 {
        margin-left: 41.66666666666667%;
    }

    .col-sm-offset-4 {
        margin-left: 33.33333333333333%;
    }

    .col-sm-offset-3 {
        margin-left: 25%;
    }

    .col-sm-offset-2 {
        margin-left: 16.666666666666664%;
    }

    .col-sm-offset-1 {
        margin-left: 8.333333333333332%;
    }

    .col-sm-offset-0 {
        margin-left: 0%;
    }
}

@media (max-width: 767px) {
    .container {
        width: auto;
    }

    .col-xs-12 {
        width: 100%;
    }

    .col-xs-11 {
        width: 91.66666666666666%;
    }

    .col-xs-10 {
        width: 83.33333333333334%;
    }

    .col-xs-9 {
        width: 75%;
    }

    .col-xs-8 {
        width: 66.66666666666666%;
    }

    .col-xs-7 {
        width: 58.333333333333336%;
    }

    .col-xs-6 {
        width: 50%;
    }

    .col-xs-5 {
        width: 41.66666666666667%;
    }

    .col-xs-4 {
        width: 33.33333333333333%;
    }

    .col-xs-3 {
        width: 25%;
    }

    .col-xs-2 {
        width: 16.666666666666664%;
    }

    .col-xs-1 {
        width: 8.333333333333332%;
    }

    .col-xs-pull-12 {
        right: 100%;
    }

    .col-xs-pull-11 {
        right: 91.66666666666666%;
    }

    .col-xs-pull-10 {
        right: 83.33333333333334%;
    }

    .col-xs-pull-9 {
        right: 75%;
    }

    .col-xs-pull-8 {
        right: 66.66666666666666%;
    }

    .col-xs-pull-7 {
        right: 58.333333333333336%;
    }

    .col-xs-pull-6 {
        right: 50%;
    }

    .col-xs-pull-5 {
        right: 41.66666666666667%;
    }

    .col-xs-pull-4 {
        right: 33.33333333333333%;
    }

    .col-xs-pull-3 {
        right: 25%;
    }

    .col-xs-pull-2 {
        right: 16.666666666666664%;
    }

    .col-xs-pull-1 {
        right: 8.333333333333332%;
    }

    .col-xs-pull-0 {
        right: 0%;
    }

    .col-xs-push-12 {
        left: 100%;
    }

    .col-xs-push-11 {
        left: 91.66666666666666%;
    }

    .col-xs-push-10 {
        left: 83.33333333333334%;
    }

    .col-xs-push-9 {
        left: 75%;
    }

    .col-xs-push-8 {
        left: 66.66666666666666%;
    }

    .col-xs-push-7 {
        left: 58.333333333333336%;
    }

    .col-xs-push-6 {
        left: 50%;
    }

    .col-xs-push-5 {
        left: 41.66666666666667%;
    }

    .col-xs-push-4 {
        left: 33.33333333333333%;
    }

    .col-xs-push-3 {
        left: 25%;
    }

    .col-xs-push-2 {
        left: 16.666666666666664%;
    }

    .col-xs-push-1 {
        left: 8.333333333333332%;
    }

    .col-xs-push-0 {
        left: 0%;
    }

    .col-xs-offset-12 {
        margin-left: 100%;
    }

    .col-xs-offset-11 {
        margin-left: 91.66666666666666%;
    }

    .col-xs-offset-10 {
        margin-left: 83.33333333333334%;
    }

    .col-xs-offset-9 {
        margin-left: 75%;
    }

    .col-xs-offset-8 {
        margin-left: 66.66666666666666%;
    }

    .col-xs-offset-7 {
        margin-left: 58.333333333333336%;
    }

    .col-xs-offset-6 {
        margin-left: 50%;
    }

    .col-xs-offset-5 {
        margin-left: 41.66666666666667%;
    }

    .col-xs-offset-4 {
        margin-left: 33.33333333333333%;
    }

    .col-xs-offset-3 {
        margin-left: 25%;
    }

    .col-xs-offset-2 {
        margin-left: 16.666666666666664%;
    }

    .col-xs-offset-1 {
        margin-left: 8.333333333333332%;
    }

    .col-xs-offset-0 {
        margin-left: 0%;
    }
}

/* 1.9 Default styles
------------------------------------------------------------------------------*/

html {
    background: #ebe5e0;
}

body {
    background: #fbf8f3;
    color: #5d413b;
    font: 16px/1.375 "national", arial, sans-serif;
}

a {
    color: #5d413b;
    text-decoration: none;
}

a:hover {
    color: #ef4849;
}

hr {
    display: none;
}

label {
    display: none;
}

input[type="text"],
input[type="search"],
input[type="number"],
input[type="email"],
textarea {
    padding: 7px 10px 5px;
    width: 100%;
    height: 30px;
    border: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    background: #D8D1C8;
    color: #5d413b;
    font: 14px/18px "national", arial, sans-serif;
    -webkit-appearance: none;
}

textarea {
    height: auto;
}

::-webkit-input-placeholder {
    color: #8f756f;
}

:-moz-placeholder {
    color: #8f756f;
}

::-moz-placeholder {
    color: #8f756f;
}

:-ms-input-placeholder {
    color: #8f756f;
}

/* 2. COMMON
--------------------------------------------------------------------------------
==============================================================================*/


/* 2.1 Header
------------------------------------------------------------------------------*/

#header {
    margin-bottom: 25px;
    padding: 35px 0 20px;
    border-bottom: 1px solid #cbc1bb;
}

#header .site-name {
    margin: 0 auto;
    width: 92px;
    height: 132px;
}

#header .site-name span {
    background: url("../images/logo-hr.png") no-repeat;
    background-size: 92px 132px;
}

/* 2.2 Navigation
------------------------------------------------------------------------------*/

#navigation {
    position: fixed;
    z-index: 99;
    width: 100%;
    overflow: hidden;
    background: #CBC1BB;
    text-align: center;
    text-transform: uppercase;
}

#navigation .mobile-menu {
    display: none;
}

#navigation ul {
    position: relative;
    text-align: left;
    font-size: 0;
}
#navigation ul ul {
    display: none;
}
#navigation ul li:hover > ul {
    display: block;
}

#navigation li {
    display: inline-block;
}

#navigation a {
    display: block;
    padding: 15px 11px 13px;
    font: 13px "as brown pro", arial, sans-serif;
}

#navigation #menu-top a {
    display: inline-block;
    padding: 15px 11px 13px;
    font: 13px "as brown pro", arial, sans-serif;
}

#navigation .current-menu-item a {
    color: #ef4849;
}

/* Logo */
#navigation .menu-logo-long img {
    padding-bottom: 4px;
    max-width: 142px;
}
#navigation .menu-logo-long a {
    padding-left: 0 !important;
}

/* Call */
#navigation .call-us {
    padding-top: 9px;
    float: right;
}

/* Underline */
#navigation .underline span {
    border-bottom: 2px solid #A99A94;
}

/* Jewel */
#navigation .jewel {
    position: relative;
}

#navigation .jewel span:before {
    position: absolute;
    top: 50%;
    left: -15px;
    margin-top: -6px;
    width: 13px;
    height: 13px;
    background: url("../images/ico-menu-jewel.png") 0 -12px no-repeat;
    content: "";
}

#navigation .jewel:hover span:before {
    background-position: 0 0;
}

.page-template-page-home-php #navigation .jewel span:before {
    display: none;
}

/* 2.3 Content
------------------------------------------------------------------------------*/

/* Titles, Subtitles */
.page-title {
    margin: 85px 0 15px;
}

.page-title,
.page-title * {
    text-align: left;
    text-transform: uppercase;
    font: 40px "knockout htf28", arial, sans-serif;
}

.page-subtitle {
    margin-bottom: 40px;
    text-align: left;
    font: 18px/24px "national", arial, sans-serif;
}

.page-subtitle a {
    color: #EC4A4E;
    text-decoration: underline;
}

.page-subtitle a:hover {
    color: #5C413C;
}

.section-title,
.widget-title {
    display: block;
    margin-bottom: 15px;
    padding: 6px 0 3px;
    border-bottom: 1px solid #CBC1BB;
    color: #5d413b;
    text-transform: uppercase;
    font: 12px/18px "as brown pro", arial, sans-serif;
}

.post-title {
    text-transform: uppercase;
    font: 23px/26px "knockout htf28", arial, sans-serif;
}

/* Buttons */
.button {
    display: inline-block;
    padding: 11px 25px 9px;
    border: 0;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font: 24px/18px "knockout htf28", arial, sans-serif;
}

.button:hover {
    color: #fff;
    opacity: .9;
    filter: opacity(.9);
}

.button-search,
.button-more,
.button-meet {
    background: #EC4B4E;
}

.button-meet {
    display: inline-block;
}

.button-submit {
    padding: 9px 20px 7px;
    padding-top: 9px;
    background: #EC4B4E;
}
.button-popupmaker {
    display: inline-block;
    padding: 9px 20px 7px;
    padding-top: 9px;
    background: #EC4B4E;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font: 24px/18px "knockout htf28", arial, sans-serif;
}

/* Box */
.box {
    margin-top: 20px;
    padding: 10px 20px 20px;
}

.box:first-child {
    margin-top: 0;
}

.box-dark {
    background: #EBE5E0;
}

.box-light {
    padding-top: 20px;
    background: #fff;
}

/* Separator */
.separator {
    display: block;
    clear: both;
    margin: 0 0 30px;
    padding: 0;
    height: 0;
    border: 0;
    border-bottom: 1px solid #CBC1BB;
}

.separator-mobile {
    display: none;
    margin-right: 15px;
    margin-left: 15px;
    padding-top: 20px;
}

/* Toggle */
.toggle {
    width: 15px;
    height: 20px;
    background: url("../images/ico-arrow-down.png") center center no-repeat;
}

.open .toggle {
    background-image: url("../images/ico-arrow-up.png");
}

/* Text */
.text {
    font-size: 16px;
}

.text > *,
.text blockquote > * {
    overflow: hidden;
    margin-top: 15px;
}

.text > :first-child,
.text blockquote > :first-child {
    margin-top: 0;
}

.text-big {
    font-size: 15px;
}

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

.text h1,
.text h2,
.text h3,
.text h4,
.text h5,
.text h6 {
    color: #F4464C;
    text-transform: uppercase;
    font: bold 15px/19px "national", arial, sans-serif;
}

.text h1 + *,
.text h2 + *,
.text h3 + *,
.text h4 + *,
.text h5 + *,
.text h6 + * {
    margin-top: 0;
}

.text a {
    color: #ef4849;
    text-decoration: underline;
}

.text a:hover {
    color: #5d413b;
}

.text blockquote {
    padding: 0 1em;
    border-left: 3px solid #EBE5E0;
    background: #fff;
    font-style: italic;
    font-family: Georgia, "Times New Roman", serif;
}

.text ol, .text ul {
    padding-left: 1.7em;
    overflow: visible;
}

.text ol li {
    list-style: decimal outside;
}

.text ul li {
    list-style: disc outside;
}

.text img {
    margin-bottom: 10px;
    height: auto !important;
}

.text .full-width {
    width: 100% !important;
}

.text .text .aligncenter {
    display: block;
    margin: 0 auto;
}

.text .alignright {
    float: right;
    margin-left: 20px;
}

.text .alignleft {
    float: left;
    margin-right: 10px;
}

/* Numbered */
.numbered-sections section {
    padding: 20px 0;
    border-bottom: 1px solid #CBC1BB;
}

.numbered-sections .number {
    text-transform: uppercase;
    font: 23px/18px "knockout htf28", arial, sans-serif;
}

.numbered-sections .title {
    color: #EC4A4E;
    text-transform: uppercase;
    font: bold 14px/19px "national", arial, sans-serif;
}

/* Subsection */
.subsection + .subsection {
    padding-top: 20px;
}

.subsection .title {
    color: #EC4A4E;
    text-transform: uppercase;
    font: bold 14px/19px "national", arial, sans-serif;
}

/* Contact Form 7 */
.wpcf7 form {
    position: relative;
}

.wpcf7 .field {
    position: relative;
    margin-bottom: 3px;
}

.wpcf7 .field-radio label {
    position: relative;
    display: block;
    margin: 7px 0;
    padding-left: 15px;
    font-weight: normal;
    font-size: 14px;
}

.wpcf7 input[type="radio"],
.wpcf7 input[type="checkbox"] {
    position: absolute;
    top: 1px;
    left: 0;
}

.wpcf7 input[type="checkbox"] {
    top: 2px;
}

.wpcf7 textarea {
    max-width: 100%;
    width: 100%;
}

.wpcf7 span.wpcf7-form-control-wrap,
.wpcf7 span.wpcf7-list-item {
    position: static;
    margin: 0;
}

.box-light .wpcf7 input[type="text"],
.box-light .wpcf7 input[type="search"],
.box-light .wpcf7 input[type="number"],
.box-light .wpcf7 input[type="email"],
.box-light .wpcf7 textarea {
    background: #EBE5E0;
}

.box-dark .wpcf7 input[type="text"],
.box-dark .wpcf7 input[type="search"],
.box-dark .wpcf7 input[type="number"],
.box-dark .wpcf7 input[type="email"],
.box-dark .wpcf7 textarea {
    background: #fff;
}

.wpcf7 .buttons {
    padding-top: 7px;
}

.wpcf7 .buttons .button {
    float: right;
}

.wpcf7 label input[type="text"] {
    display: inline;
    padding: 3px 5px 1px;
    width: auto;
    width: 150px;
    height: 22px;
}

.wpcf7 span.wpcf7-not-valid-tip {
    display: none;
    top: 5px;
    right: 5px;
    left: auto;
    padding: 0 5px;
    width: auto;
    border: 0;
    background: #EA4D52;
    color: #fff;
    font-size: 12px;
    line-height: 20px;
}

.wpcf7 .field-radio span.wpcf7-not-valid-tip {
    top: 0;
    right: 0;
}

.wpcf7 div.wpcf7-response-output {
    position: absolute;
    right: -19px;
    bottom: 40px;
    margin: 0;
    padding: 0;
    width: 116px;
    height: 54px;
    border: 0;
    background: url("../images/other-form-messages.png") no-repeat;
    text-indent: -999em;
}
#wpcf7-f8042-p8034-o1 div.wpcf7-response-output {
    background: url("../images/other-form-messages-chinese.png") no-repeat;
}


.wpcf7 div.wpcf7-validation-errors {
    height: 54px;
    background-position: 0 -54px;
}

#wpcf7-f8042-p8034-o1 div.wpcf7-validation-errors {
    background: url("../images/other-form-messages-chinese.png") no-repeat;
    height: 54px;
    background-position: 0 -54px;
}

/* Toggleable Note */
.note {
    cursor: pointer;
}

.note .rest {
    display: none;
}

.note .toggle {
    float: right;
    clear: both;
    margin: 0 15px -25px;
}

/* Flexslider */
.flex-control-nav {
    display: inline-block;
}

.flex-control-nav li {
    display: inline-block;
    margin-left: 5px;
}

.flex-control-nav a {
    display: inline-block;
    width: 28px;
    height: 28px;
    border: 1px solid #5C413C;
    -webkit-border-radius: 14px;
    -moz-border-radius: 14px;
    border-radius: 14px;
    background: #FBF8F3;
    color: #5C413C;
    text-align: center;
    line-height: 26px;
    cursor: pointer;
}

.flex-control-nav a:hover {
    opacity: .9;
    filter: opacity(.9);
}

.flex-control-nav .flex-active {
    background: #5C413C;
    color: #FBF8F3;
}

/* 2.4 Sidebar
------------------------------------------------------------------------------*/

#sidebar {
    font-size: 0;
    margin-top: 50px;
}

#sidebar .widget {
    margin-top: 30px;
    font-size: 15px;
}

#sidebar .widget:first-child {
    margin-top: 0;
}

#sidebar .button-search,
#sidebar .button-submit {
    padding: 5px 30px 3px;
    font-size: 17px;
}

/* Latest News Widget */
#latest-news-3 {
    padding-top: 30px;
}
.widget-latest-news li {
    padding: 15px 0;
    border-bottom: 1px solid #CBC1BB;
}

.widget-latest-news li:first-child {
    padding-top: 0;
}

.widget-latest-news .date {
    display: block;
    color: #5d413b;
    text-transform: uppercase;
    font: 14px/19px "national", arial, sans-serif;
}

/* Testimonials Widget */
.widget-testimonials {
    margin-top: -25px;
}

.widget-testimonials li {
    display: none;
}

.widget-testimonials li:first-child {
    display: block;
}

/* 2.5 Footer
------------------------------------------------------------------------------*/

#footer {
    margin-top: 50px;
    background: #ebe5e0;
}

#footer h6 {
    color: #ef4849;
    text-transform: none;
    font: 15px/1.375 "national", arial, sans-serif;
}

#footer .row {
    padding-bottom: 30px;
    font-size: 0;
}

#footer .row > * {
    display: inline-block;
    float: none;
    padding-top: 20px;
    vertical-align: top;
    font-size: 13px;
}

/* As Seen In Logos */
#footer .as-seen-in li {
    display: none;
}

#footer .as-seen-in li:first-child {
    display: block;
}

#footer .as-seen-in img {
    max-width: 100%;
}

/* Featured Testimonial */
#footer .featured-testimonial {
    padding: 10px 0 20px;
    border-top: 1px solid #C1B3AE;
}

#footer .featured-testimonial * {
    display: inline;
    font-style: normal;
}

/* 3. PAGES
--------------------------------------------------------------------------------
==============================================================================*/


/* 3.1 Home
------------------------------------------------------------------------------*/

/* Slider */
.home-slider {
    position: relative;
    margin-top: 50px;
}

.home-slider .slides {
    overflow: hidden;
}

.home-slider .slides > div {
    position: relative;
    display: none;
    width: auto;
    height: 350px;
}

.home-slider .slides > :first-child {
    display: block;
}

.home-slider .slides > div .body {
    z-index: 1;
    position: relative;
}

.home-slider .flex-control-nav {
    position: absolute;
    right: 20px;
    bottom: 20px;
}

.home-slider .layout-1 img {
    position: absolute;
    right: 0;
    bottom: 0;
    max-width: 100%;
}

.home-slider .layout-1 div {
    margin-top: 35px;
}

.home-slider .layout-1 h2 {
    color: #5d413b;
    text-transform: uppercase;
    font: 26px/24px "knockout htf28", arial, sans-serif;
}

.home-slider .layout-1 p {
    padding: 5px 0;
    text-transform: uppercase;
    font: 14px/16px "as brown pro", arial, sans-serif;
}

.home-slider .layout-2 img {
    position: absolute;
    right: left;
    bottom: 0;
    max-width: 100%;
}

.home-slider .layout-2 p {
    padding-top: 20px;
    text-transform: uppercase;
    font: 20px/24px "knockout htf28", arial, sans-serif;
}

.home-slider .layout-2 .button {
    position: absolute;
    top: 20px;
    right: 40px;
}

.home-slider .layout-3 a {
    position: absolute;
    text-align: center;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-position: center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-repeat: no-repeat;
}

.home-slider .layout-3 img {
    margin-top: 60px;
    max-width: 100%;
}

/* About, Report */
.home-about,
.home-report {
    margin-top: 25px;
}

/* Report */
.home-report {
    padding-bottom: 15px;
    border-bottom: 1px solid #CBC1BB;
}

.home-report .body {
    position: relative;
    padding-left: 155px;
}

.home-report .cover {
    position: absolute;
    left: 0;
    width: 135px;
}

.home-report .cover img {
    width: 100%;
}

.home-report h3 {
    margin-bottom: 5px;
    text-transform: uppercase;
    font: 23px "knockout htf28", arial, sans-serif;
}

.home-report .text {
    margin-bottom: 15px;
}
/* Stats */
#home-stats .view-more {
   font: 18px "knockout htf28", arial, sans-serif;
   color: #EC4B4E;
   text-decoration: underline;
   text-transform: uppercase;
   text-align: right;
   margin-top: 20px;
}
#home-stats .overall-stats {
  background: #fbf8f3;
  padding: 0;
}
#home-stats .overall-stats .tablesorter-bootstrap thead th {
  background: #fbf8f3;
}

/* 3.2 Acquire
------------------------------------------------------------------------------*/

/* Tabs */
.acquire-tabs {
    margin-bottom: 30px;
}

.acquire-tabs li {
    position: relative;
    float: left;
    width: 25%;
}

.acquire-tabs .tab-current a {
    color: #ef4849;
}

.acquire-tabs .tab-current span {
    position: absolute;
    bottom: -11px;
    left: 50%;
    margin-left: -12px;
    width: 25px;
    height: 11px;
    background: url("../images/ico-arrow-tab.png") no-repeat;
}

.aquire-title,
.acquire-tabs a {
    display: block;
    margin-left: 7px;
    padding: 12px 0 8px;
    background: #EBE5E0;
    text-align: center;
    text-transform: uppercase;
    font: 28px/30px "knockout htf28", arial, sans-serif;
}

.acquire-tabs :first-child a {
    margin-left: 0;
}

/* Form */
#hour_call_time {
    margin-left: .25em;
}

/* Panes */
.pane {
    display: none;
}

.pane-current {
    display: block;
}

/* Title */
.aquire-title {
    display: none;
    margin: 30px 0;
}

/* Why */
.acquire-why {
    text-align: center;
}

.acquire-meet {
    margin: 15px 0 30px;
    text-align: center;
}

/* Pull Right */
.pull-right {
    float: right;
}

.pull-right .create-image {
    float: none;
}

/* Testimonials */
.acquire-testimonials .column {
    float: right;
    width: 45%;
}

.acquire-testimonials .column:first-child {
    float: left;
}

.widget-testimonials blockquote,
.acquire-testimonials blockquote {
    margin-top: 30px;
    text-transform: uppercase;
    font: 23px/26px "knockout htf28", arial, sans-serif;
}

.acquire-testimonials blockquote:first-child {
    margin-top: 0;
}

.widget-testimonials cite,
.acquire-testimonials cite {
    color: #5d413b;
    text-transform: none;
    font: 15px/1.375 "national", arial, sans-serif;
}

/* 3.3 News
------------------------------------------------------------------------------*/

.wp-caption {
    max-width: 96% !important;
    width: auto !important;
}

.video-content {
    position: relative;
    margin-bottom: 34px;
    padding: 25px 0 56.25%;
    height: 0;
}

.video-content iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.news-story .entry-content {
    padding-right: 20px;
}

.entry-utility {
    margin-top: 20px;
    padding: 10px 15px 9px;
    background: #faf7f5;
}

.entry-utility h3 {
    float: left;
    margin-right: 8px;
    color: #ef4849;
    text-transform: uppercase;
    font: 13px "as brown pro", arial, sans-serif;
    line-height: 1.587;
}

.entry-utility ul {
    float: left;
}

.entry-utility li {
    float: left;
    margin-right: 4px;
}

/* Pagination */
.paginator {
    overflow: hidden;
    margin: 20px 20px 0;
}

.paginator .previous {
    float: left;
}

.paginator .next {
    float: right;
}

/* 3.4 Thinking
------------------------------------------------------------------------------*/

/* Added 18/04/2016 */
#reports-latest .widget-title {
    border-bottom: 0;
}
#reports-latest .thinking-report-details {
    border-bottom: 1px solid #CBC1BB;
    margin-bottom: 15px;
}

/* Section */
.thinking-section {
    margin-top: 35px;
}

.thinking-section:first-child {
    margin-top: 0;
}

/* Essays */
.thinking-essays article {
    margin-top: 15px;
}

.thinking-essays h3 a {
    color: #EC4A4E;
    text-decoration: underline;
    font: 600 14px/16px "national", arial, sans-serif;
}

.thinking-essays h3 a:hover {
    color: #5d413b;
}

/* Reports */
.thinking-reports .thinking-reports-articles {
    overflow: hidden;
    margin: 0 -4px;
}

.thinking-reports article {
    float: left;
    width: 33%;
    padding: 0 4px;
    margin-top: 12px;
}

.thinking-reports article:nth-child(3n+1) {
    clear: both;
}

.thinking-reports article img {
    display: block;
    width: 100%;
    filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale"); /* Firefox 10+ */
    filter: gray; /* IE6-9 */
    -webkit-filter: grayscale(100%); /* Chrome 19+ & Safari 6+ */
    -webkit-transition: all .6s ease; /* Fade to color for Chrome and Safari */
    -webkit-backface-visibility: hidden; /* Fix for transition flickering */
}

.thinking-reports article a:hover img {
    filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'1 0 0 0 0, 0 1 0 0 0, 0 0 1 0 0, 0 0 0 1 0\'/></filter></svg>#grayscale");
    -webkit-filter: grayscale(0%);
}

.thinking-reports .date {
    color: #EC4A4E;
    text-transform: uppercase;
    font: 13px/17px "as brown pro", arial, sans-serif;
}

/* Report Details */
.thinking-report-details {
    padding-top : 10px;
    padding-bottom: 10px;
}

.thinking-report-details .cover {
    float: left;
    width: 255px;
    margin: 0 15px 15px 0;
}

.thinking-report-details .cover:hover {
    opacity: .75;
    filter: opacity(.75);
}

/* Report Newsletter */
.thinking-report-newsletter .text {
    margin: 10px 0 15px;
}

/* 3.5 Projects
------------------------------------------------------------------------------*/

.projects-list {
    font-size: 0;
}

.projects-list article {
    display: inline-block;
    float: none;
    margin-bottom: 35px;
    vertical-align: top;
}

.projects-list .title {
    margin-bottom: 5px;
    text-transform: uppercase;
    font: 23px "knockout htf28", arial, sans-serif;
}

.projects-list img {
    width: 100%;
}

.projects-list .description {
    margin-top: 5px;
    text-align: right;
    font-size: 14px;
}

/* Can We Help Box */
.can-we-help .description,
.can-we-help .contact-call-us {
    margin-bottom: 25px;
}

.can-we-help .description .section-title {
    width: 40%;
}

.can-we-help textarea {
    height: 63px;
}

.can-we-help .contact-call-us {
    float: right;
}

/* Can We Help Narrow Box */
.can-we-help-narrow .description .section-title {
    width: auto;
}

.can-we-help textarea {
    height: 164px;
}

/* Back To Projects */
.button-back-to-projects {
    display: block;
    float: left;
    overflow: hidden;
    width: 70px;
    height: 34px;
    background: #EC4B4D url("../images/btn-back.png") no-repeat;
    text-indent: -999em;
}

/* 3.6 FAQ
------------------------------------------------------------------------------*/

.faq-questions section {
    padding: 5px 0;
    border-bottom: 1px solid #cbc1bb;
}

.faq-questions .question {
    padding: 10px 0;
    cursor: pointer;
}

.faq-questions .answer {
    display: none;
    margin-bottom: 10px;
    color: #EC4A4E;
}

.faq-questions .toggle {
    float: right;
    margin: 0 15px;
}

/* 3.7 Contact
------------------------------------------------------------------------------*/

/* Call Us Section */
.contact-call-us a {
    font-size: 24px;
}

/* Map Section */
.contact-map img {
    width: 100%;
}

/* 3.8 Team
------------------------------------------------------------------------------*/

/* Members */
.team-members .vcard {
    padding: 25px 0 25px 130px;
    border-bottom: 1px solid #CBC1BB;
}

.team-members .vcard:first-child {
    padding-top: 0;
}

.team-members .photo {
    position: relative;
    left: -130px;
    float: left;
    margin-right: -130px;
    max-width: 110px;
}

.team-members .fn {
    margin-bottom: 10px;
    color: #EC4A4E;
    text-transform: uppercase;
    font: bold 16px/19px "national", arial, sans-serif;
}

.team-members .email {
    display: inline-block;
    color: #EC4A4E;
    text-decoration: underline;
    font: 14px/19px "national", arial, sans-serif;
}

.team-members .email:hover {
    color: #5D413B;
}

/* 3.9 Create
------------------------------------------------------------------------------*/

/* Logo */
.create-logo {
    display: block;
    margin: 45px auto -15px;
}

/* Image */
.create-image {
    position: relative;
    float: right;
    text-align: center;
}

.create-image img {
    max-width: 100%;
    max-height: 100%;
}

.create-image .images {
    overflow: hidden;
    height: 430px;
}

.create-image .images div {
    display: none;
}

.create-image .images div:first-child {
    display: block;
}

.create-image .images .text {
    display: none;
}

.create-image .caption {
    display: block;
    margin-top: 15px;
    text-align: right;
}

.create-image .caption .text {
    display: inline-block;
    padding-top: 4px;
}

/* 3.10 Property
------------------------------------------------------------------------------*/

.property-photos {
    margin: 10px 0 20px;
}

.property-photos img {
    width: 100%;
}

.property-photos div {
    display: none;
}

.property-photos div:first-child {
    display: block;
}

/* 3.11 SFUND
------------------------------------------------------------------------------*/

/* Logo */
.sfund-logo {
    display: block;
    margin: 35px auto 55px;
}

/* Body */
.sfund-body {
    margin-bottom: 100px;
    padding: 20px 30px;
    text-align: center;
}

.sfund-body .info {
    padding: 20px 20px 0;
    font-size: 9px;
}

.sfund-body .text .intro {
    font-size: 18px;
}

.sfund-body .register {
    padding-top: 20px;
}

.sfund-body .wpcf7 .buttons {
    text-align: center;
}

.sfund-body .wpcf7 .buttons .button {
    display: inline-block;
    float: none;
}

.sfund-body .wpcf7 div.wpcf7-response-output {
    right: 50%;
    margin-right: -60px;
}

/* Background */
.page-template-page-sfund-php {
    background-position: center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-repeat: no-repeat;
}

.page-template-page-sfund-php.day {
    background-image: url("../images/bg-sfund-day.jpg");
}

.page-template-page-sfund-php.night {
    background-image: url("../images/bg-sfund-night.jpg");
}

.page-template-page-sfund-php #navigation {
    border-bottom: 2px solid #9F9694;
    border-bottom-color: rgba(0, 0, 0, .2);
}

.page-template-page-sfund-php #footer {
    border-top: 1px solid #F7F7F7;
}

/* 3.12 Stats
------------------------------------------------------------------------------*/

.positive-change, .change-up {
  color: #00a651;
}
.negative-change , .change-down {
  color: #ef4c36;
}
.right-align {
  text-align: right;
}
.change-indicator {
  width: 28px;
  display: inline-block;
}
.overall-stats {
  background: #fff;
  padding: 1em;
  margin-bottom: 2em;
}
.overall-stats h2 {
  text-transform: uppercase;
}
.overall-stats .tablesorter-bootstrap thead th {
  background: #FFF;
  border-bottom: 2px solid #CBC1BB;
}
.overall-stats td, #suburb-stats-table td {
  padding: 0.4em 1em;
  border-bottom: 1px solid #CBC1BB;
}
#suburb-stats-table td {
  background: #FFF;
}

#suburb-stats-table th {
  background: #fbf8f3;
  border-bottom: 2px solid #CBC1BB;
}
.stats-title {
	font-family: 'knockout htf28', arial, sans-serif;
	text-transform: uppercase;
	font-size: 30px;
	font-weight: normal;
	margin-bottom: 15px;
}
#suburb-stats-table .sorter-suburb {
	text-align: left;
	padding-left: 15px;
}
#stats-subscribe-form .wpcf7 div.wpcf7-response-output {
  right: 0;
}

/* 3.13 Opportunity Register
------------------------------------------------------------------------------*/

/* Top Banner */

.top-banner {
	background: #5d413b;
	color: #fbf8f3;
	padding: 6em 0 2em;
	margin-bottom: -2em;
	position: relative;
	overflow: hidden;
}

.top-banner .background-image {
	min-width: 600px;
	max-width: 100%;
	min-height: 400px;
	height: auto;
	width: 100%;
	position: absolute;
	left: 0;
	bottom: -10%;
	background: url(/wp-content/uploads/2018/11/Oslo_BG_Overlay.jpg);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}

.top-banner .container {
	z-index: 1;
	position: relative;
}

.top-banner h1 {
	font: 40px "knockout htf28", arial, sans-serif;
	text-transform: uppercase;
	margin-bottom: 0.5em;	
}

.top-banner p {
	margin-bottom: 1em;
	font-size: 18px;
}

.top-banner a {
	text-decoration: underline;
	color: #fbf8f3;
}

.top-banner form input {
	height: 34px;
}

/* Register Page */

.page-template-page-register {
	background: #5d413b;
}

.page-template-page-register #content {
	padding: 2em 0 1em;
	color: #fbf8f3;
}

.page-template-page-register #content h1.page-title {
	font-size: 52px;
	margin-bottom: 0.75em;
}

.page-template-page-register #content h3 {
	font-family: "as brown pro", arial, sans-serif;
	line-height: 1.35;
	font-size: 20px;
	margin-bottom: 1em;
}

.page-template-page-register #content h3:nth-child(4) {
	margin-bottom: 2em;
}

.page-template-page-register #content p {
	font-size: 18px;
}

.page-template-page-register #content h4 {
	font: 30px "knockout htf28", arial, sans-serif;
	text-transform: uppercase;
	margin-bottom: 0.5em;	
}

.page-template-page-register #content form {
	margin-top: 2em;
	margin-bottom: 2em;
}

.page-template-page-register #content img {
	margin-top: -5em;
}

.page-template-page-register #content ul {
	list-style: unset;
	padding-left: 15px;
}

.page-template-page-register #content form input {
	height: 34px;
	margin-bottom: 0.5em;
}

/* Form Popup */

.wpcf7 div.wpcf7-response-output {
    right: 106px;
    bottom: 53px;
}

@media screen and (max-width: 991px) {

.wpcf7 div.wpcf7-response-output {
    left: 0;
		bottom: 33px;
}
	
}

@media screen and (min-width: 767px) {

.top-banner form div.col-xs-12, .page-template-page-register #content form div.col-xs-12 {
	padding-right: 0;
}
	
}

@media screen and (max-width: 480px) {
	.top-banner {
		text-align: center;
	}
}

/* 4. RESPONSIVE
--------------------------------------------------------------------------------
==============================================================================*/


@media (max-width: 991px) {
    #navigation .call-us {
        display: none;
    }

    .desktop-only {
        display: none;
    }

    .separator {
        margin-bottom: 20px;
    }

    .separator-mobile {
        display: block;
    }

    .subsection,
    .numbered-sections {
        text-align: left;
    }

    .numbered-sections {
        margin-bottom: 30px;
    }

    .numbered-sections .number {
        color: #5d413b;
    }

    .page-title {
        margin: 85px 0 5px;
    }

    .page-subtitle {
        margin-bottom: 20px;
    }

    /* Page: Thinking */
    .thinking-essays {
        margin-bottom: 20px;
    }

    .thinking-reports {
        margin-top: 20px;
    }

    /* Page: FAQ */
    .faq-questions {
        margin-bottom: 20px;
    }

    /* Page: Contact */
    .page-template-page-contact-php .contact-call-us {
        margin-top: 20px;
    }

    /* Page: Projects */
    .can-we-help .description .section-title {
        width: auto;
    }

    /* Page: Create */
    .create-logo {
        margin: 35px auto -15px;
    }

    .create-image {
        margin-top: 30px;
    }

    .create-image .caption {
        text-align: center;
        padding-bottom: 20px;
    }

    .create-image .caption .text {
        display: block;
        padding: 0 0 10px;
    }

    .create-image .images {
        height: auto;
    }

    /* Page: Acquire */
    .aquire-title,
    .acquire-tabs a {
        font-size: 24px;
    }

    .contact-map,
    .contact-map:first-child {
        margin-top: 20px;
    }
}

@media (max-width: 767px) {
    #navigation .call-us {
        display: inline-block;
        padding-top: 0px;
    }

    #header .site-name {
        display: none;
    }

    #header {
        margin: 0;
        padding: 0;
        border: 0;
    }

    /* Navigation */
    #navigation {
        padding: 0;
        background: #FCFAF5;
    }
    #navigation ul {
       text-align: center;
    }
    #navigation .mobile-menu {
        display: block;
        text-align: left;
        padding: 15px 15px 5px 15px;
        border-bottom: 1px solid #CBC1BB;
    }

    #navigation .mobile-menu .toggle {
        float: right;
        margin-left: 5px;
        margin-top: -3px;
    }

    #navigation .mobile-logo {
        display: inline-block;
        width: 142px;
        padding-bottom: 7px;
    }
    #navigation .mobile-logo a{
        padding: 0;
    }

    #navigation .toggle-menu {
        display: inline-block;
        float: right;
    }

    #navigation #menu-top a {
        display: block;
    }

    #navigation .jewel span:before {
        display: none;
    }

    #navigation .menu-logo-long a{
    	display: none;
    }

    #navigation .menu-long {
    	display: none;
    }
    
    #navigation .menu-logo-long img{
    	display: none;
    }

    #navigation .menu {
        overflow: hidden;
        padding-bottom: 5px;
        height: 0;
        border-bottom: 1px solid #CBC1BB;
        opacity: 0;
        filter: opacity(0);
    }

    #navigation.open .menu {
        height: auto;
        opacity: 1;
        filter: opacity(1);
        -webkit-transition: opacity .25s ease-in-out, height .25s ease-in-out;
        -moz-transition: opacity .25s ease-in-out, height .25s ease-in-out;
        -ms-transition: opacity .25s ease-in-out, height .25s ease-in-out;
        -o-transition: opacity .25s ease-in-out, height .25s ease-in-out;
        transition: opacity .25s ease-in-out, height .25s ease-in-out;
        -webkit-backface-visibility: hidden;
        -moz-backface-visibility: hidden;
        -ms-backface-visibility: hidden;

    }

    #navigation li {
        float: right;
        width: 100%;
        text-align: right;
        padding-right: 20px;
    }

    #navigation a {
        padding-top: 9px;
        padding-bottom: 7px;
    }

    #navigation .underline span {
        border: none;
    }

    /* Page: Home */
    .home-banner div {
        position: relative;
        margin-bottom: -25px;
        width: 100%;
    }
    
    #sidebar {
        margin-top: 0;
    }

    #sidebar .widget,
    #sidebar .widget:first-child {
        display: block;
        width: 100%;
    }
    #latest-news-3 {
        padding-top: 0;
    }

    /* Page: SFUND */
    .sfund-body {
        margin-bottom: 0;
    }
    /* Page: News */
    #categories-4 {
        display: none !important;
    }

    /* Page: Thinking */
    .thinking-report-details {
        padding-left: 180px;
    }

    .thinking-report-details .cover {
        position: relative;
        left: -180px;
        margin-right: -180px;
        width: 155px;
    }

    /* Page: Acquire */
    .acquire-tabs li {
        font-size: 0;
    }

    .acquire-tabs li {
        float: left;
        margin-top: 5px;
        width: 49.5%;
    }

    .acquire-tabs li:nth-child(even) {
        float: right;
    }

    .acquire-tabs a {
        margin: 0;
    }

    .acquire-tabs .tab-current span {
        display: none;
    }

    .acquire-testimonials .column:first-child,
    .acquire-testimonials .column {
        float: none;
        padding-top: 30px;
        width: 100%;
    }

    .acquire-testimonials .column:first-child {
        margin-top: 0;
    }
    /* Page: Scorecard */
    .overall-stats td, #suburb-stats-table td {
  	padding: 0.4em 0.2em;
  	background: #fbf8f3;
  	font-size: 14px;
	}
	.overall-stats .tablesorter-bootstrap thead th {
	background: #fbf8f3;
	}
	.overall-stats {
 	padding: 0;
  	font-size: 14px;
  	background: none;
	}
	.overall-stats h2 {
  	background: #fbf8f3;
  	line-height: 33px;
	}
	.overall-stats-table {
	background: #fbf8f3;
	}
	.stats-title {
	margin-bottom: 0;
	}
	#suburb-stats-table .sorter-suburb {
	text-align: left;
	padding-left: 0;
	}
	.tablesorter-bootstrap .tablesorter-header i.tablesorter-icon {
	left: 19px !important;
	}
	
}

@media (max-width: 480px) {
    .home-slider .slides > div .body {
        text-align: center;
    }

    /* Page: Team */
    .team-members .vcard {
        padding-left: 100px;
    }

    .team-members .photo {
        left: -100px;
        margin-right: -100px;
        max-width: 80px;
    }

    /* Page: Thinking */
    .thinking-report-details {
        padding-left: 0;
    }

    .thinking-report-details .cover {
        position: static;
        margin: 0 0 15px 0;
        width: 100%;
    }

    /* Page: Home */
    .home-report .body {
        padding-left: 0;
    }

    .home-report .cover {
        position: static;
        margin-bottom: 15px;
        width: 100%;
    }

    .home-slider .slides > div {
        height: 300px;
    }

    .home-slider .layout-2 .button {
        position: static;
        margin-top: 5px;
    }

    /* Page: Acquire */
    .acquire-tabs li {
        float: none;
        margin-top: 5px;
        width: 100%;
    }

    .acquire-tabs li:nth-child(even) {
        float: none;
    }

    .text {
        clear: both;
    }

    /* Footer */
    #footer .actions,
    #footer .thoughts,
    #footer .social-links,
    #footer .vcard {
        width: 50%;
    }

    #footer .as-seen-in {
        float: none;
        clear: both;
        width: 100%;
    }
}

/* 6. PRINT
--------------------------------------------------------------------------------
==============================================================================*/


@media print {
    body {
        font: normal normal 12pt/1.5em "Times New Roman", Times, serif;
    }

    a[href]:after {
        content: " (" attr(href) ") ";
        font-size: 90%;
    }

    a[href^="/"]:after {
        content: " (http://domain.com" attr(href) ") ";
    }

    #accessibility-nav, .hide {
        display: none !important;
    }
}

/* Pagination */
.wp-paginate {
  margin-top: 15px;
}
.wp-paginate li {
  float: left;
  padding-left: 1em;
}