/*
Theme Name: techinsaconf
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: techinsaconf
Tags:

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.

techinsaconf is based on Underscores http://underscores.me/, (C) 2012-2016 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal http://necolas.github.io/normalize.css/
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Normalize
# Typography
# Elements
# Forms
# Navigation
	## Links
	## Menus
# Accessibility
# Alignments
# Clearings
# Widgets
# Content
	## Posts and pages
	## Comments
# Infinite scroll
# Media
	## Captions
	## Galleries
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/
html {
	font-family: sans-serif;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust:     100%;
}

body {
	margin: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
	display: block;
}

audio,
canvas,
progress,
video {
	display: inline-block;
	vertical-align: baseline;
}

audio:not([controls]) {
	display: none;
	height: 0;
}

[hidden],
template {
	display: none;
}

a {
	background-color: transparent;
    text-decoration: none;
}

a:active,
a:hover {
	outline: 0;
}

abbr[title] {
	border-bottom: 1px dotted;
}

b,
strong {
	font-weight: bold;
}

dfn {
	font-style: italic;
}

h1 {
	font-size: 2em;
	margin: 0.67em 0;
}

mark {
	background: #ff0;
	color: #000;
}

small {
	font-size: 80%;
}

sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sup {
	top: -0.5em;
}

sub {
	bottom: -0.25em;
}

img {
	border: 0;
}

svg:not(:root) {
	overflow: hidden;
}

figure {
	margin: 1em 40px;
}

hr {
	box-sizing: content-box;
	height: 0;
}

pre {
	overflow: auto;
}

code,
kbd,
pre,
samp {
	font-family: monospace, monospace;
	font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
	color: inherit;
	font: inherit;
	margin: 0;
}

button {
	overflow: visible;
}

button,
select {
	text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
	-webkit-appearance: button;
	cursor: pointer;
}

button[disabled],
html input[disabled] {
	cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
	border: 0;
	padding: 0;
}

input {
	line-height: normal;
}

input[type="checkbox"],
input[type="radio"] {
	box-sizing: border-box;
	padding: 0;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
	height: auto;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

fieldset {
	border: 1px solid #c0c0c0;
	margin: 0 2px;
	padding: 0.35em 0.625em 0.75em;
}

legend {
	border: 0;
	padding: 0;
}

textarea {
	overflow: auto;
}

optgroup {
	font-weight: bold;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

td,
th {
	padding: 0;
}

/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
body,
button,
input,
select,
textarea {
	color: #373642;
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 16px;
	font-size: 1rem;
	line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	clear: both;
}

p {
	margin-bottom: 1.5em;
}

dfn,
cite,
em,
i {
	font-style: italic;
}

blockquote {
	margin: 0 1.5em;
}

address {
	margin: 0 0 1.5em;
}

pre {
	background: #eee;
	font-family: "Courier 10 Pitch", Courier, monospace;
	font-size: 15px;
	font-size: 0.9375rem;
	line-height: 1.6;
	margin-bottom: 1.6em;
	max-width: 100%;
	overflow: auto;
	padding: 1.6em;
}

code,
kbd,
tt,
var {
	font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
	font-size: 15px;
	font-size: 0.9375rem;
}

abbr,
acronym {
	border-bottom: 1px dotted #666;
	cursor: help;
}

mark,
ins {
	background: #fff9c0;
	text-decoration: none;
}

big {
	font-size: 125%;
}

/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/
html {
	box-sizing: border-box;
}

*,
*:before,
*:after { /* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
	box-sizing: inherit;
}

body {
	background: #fff; /* Fallback for when there is no custom background color defined. */
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: "";
}

blockquote,
q {
	quotes: "" "";
}

hr {
	background-color: #ccc;
	border: 0;
	height: 1px;
	margin-bottom: 1.5em;
}

ul,
ol {
	margin: 0 0 1.5em 3em;
}

ul {
	list-style: disc;
}

ol {
	list-style: decimal;
}

li > ul,
li > ol {
	margin-bottom: 0;
	margin-left: 1.5em;
}

dt {
	font-weight: bold;
}

dd {
	margin: 0 1.5em 1.5em;
}

img {
	height: auto; /* Make sure images are scaled correctly. */
	max-width: 100%; /* Adhere to container width. */
}

figure {
	margin: 1em 0; /* Extra wide images within figure tags don't overflow the content area. */
}

table {
	margin: 0 0 1.5em;
	width: 100%;
}

/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	border: 1px solid;
	border-color: #ccc #ccc #bbb;
	border-radius: 3px;
	background: #e6e6e6;
	color: rgba(0, 0, 0, .8);
	font-size: 12px;
	font-size: 0.75rem;
	line-height: 1;
	padding: .6em 1em .4em;
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
	border-color: #ccc #bbb #aaa;
}

button:focus,
input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus,
button:active,
input[type="button"]:active,
input[type="reset"]:active,
input[type="submit"]:active {
	border-color: #aaa #bbb #bbb;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
	color: #666;
	border: 1px solid #ccc;
	border-radius: 3px;
	padding: 3px;
}

select {
	border: 1px solid #ccc;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
	color: #111;
}

input[type="search"] {
    width: 80%;
	color: #333;
	background: #EEE;
	border: 1px solid #ccc;
	border-radius: 0;
	padding: 3px;
}

input[type="search"]:focus {
	background: #FFF;
}

input[type="submit"] {
    width: 15%;
	color: #333;
	background: #F3C64F;
	border: 1px solid #F3C64F;
	border-radius: 0;
	padding: 9px;
    vertical-align: top;
    font-weight: 700;
}

input[type="submit"]:focus,
input[type="submit"]:hover {
	background: #FFF;
	border: 1px solid #F3C64F;
}

textarea {
	width: 100%;
}

/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/
a {
	color: #373642;
    transition: color 0.5s ease;
}

a:visited {
	color: #373642;
}

a:hover,
a:focus,
a:active {
	color: #979798;
}

a:focus {
	outline: none;
}

a:hover,
a:active {
	outline: 0;
}

/*--------------------------------------------------------------
## Menus
--------------------------------------------------------------*/
.main-navigation {
	clear: both;
	display: block;
	float: left;
	width: 100%;
}

.main-navigation ul {
	display: none;
	list-style: none;
	margin: 0;
	padding-left: 0;
}

.main-navigation li {
	float: left;
	position: relative;
}

.main-navigation a {
	display: block;
	text-decoration: none;
}

.main-navigation ul ul {
	box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
	float: left;
	position: absolute;
	top: 1.5em;
	left: -999em;
	z-index: 1000;
}

.main-navigation ul ul ul {
	left: -999em;
	top: 0;
}

.main-navigation ul ul a {
	width: 200px;
}

.main-navigation ul ul li {

}

.main-navigation li:hover > a,
.main-navigation li.focus > a {
}

.main-navigation ul ul :hover > a,
.main-navigation ul ul .focus > a {
}

.main-navigation ul ul a:hover,
.main-navigation ul ul a.focus {
}

.main-navigation ul li:hover > ul,
.main-navigation ul li.focus > ul {
	left: auto;
}

.main-navigation ul ul li:hover > ul,
.main-navigation ul ul li.focus > ul {
	left: 100%;
}

.main-navigation .current_page_item > a,
.main-navigation .current-menu-item > a,
.main-navigation .current_page_ancestor > a,
.main-navigation .current-menu-ancestor > a {
}

/************ Mobile Menu. ************/
.menu-toggle,
.main-navigation.toggled ul {
    display: block;
    background: #FFF;
}

.menu-toggle {
    background: transparent;
    border: none;
    box-shadow: none;
    float: right;
    height: 20px;
    position: absolute;
    z-index: 1006;
    right: 20px;
    top: 42px;
    transition: all 0.5s ease;
}

.menu-toggle:after {
    border-bottom: 0.7em double #373642;
    border-top: 0.7em double #373642;
    content: "";
    height: 1.5em;
    position: absolute;
    right: 0;
    top: 0;
    width: 1.8em;
}

.menu-toggle:hover {
    opacity: 0.6;
}

.menu-toggle:after {
    border-bottom: 0.7em double #373642;
    border-top: 0.7em double #373642;
    content: "";
    height: 1.5em;
    position: absolute;
    right: 0;
    top: 0;
    width: 1.8em;
}

@media screen and (min-width: 800px) {
    .menu-toggle {
        display: none;
    }
    .main-navigation ul {
        display: block;
    }
}
/************ End Mobile Menu. ************/

.site-main .posts-navigation,
.site-main .post-navigation {
	margin: 0 0 1.5em;
	overflow: hidden;
}

.posts-navigation .nav-previous,
.post-navigation .nav-previous {
	float: left;
	width: 50%;
}

.posts-navigation .nav-next,
.post-navigation .nav-next {
	float: right;
	text-align: right;
	width: 50%;
}

/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	height: 1px;
	width: 1px;
	overflow: hidden;
	word-wrap: normal !important; /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	color: #21759b;
	display: block;
	font-size: 14px;
	font-size: 0.875rem;
	font-weight: bold;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000; /* Above WP toolbar. */
}

/* Do not show the outline on the skip link target. */
#content[tabindex="-1"]:focus {
	outline: 0;
}

/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/
.alignleft {
	display: inline;
	float: left;
	margin-right: 1.5em;
}

.alignright {
	display: inline;
	float: right;
	margin-left: 1.5em;
}

.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
	content: "";
	display: table;
	table-layout: fixed;
}

.clear:after,
.entry-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
	clear: both;
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widget {
	margin: 0 0 1.5em;
}

/* Make sure select elements fit in widgets. */
.widget select {
	max-width: 100%;
}

/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Posts and pages
--------------------------------------------------------------*/
.sticky {
	display: block;
}

.hentry {
	margin: 0 0 1.5em;
}

.byline,
.updated:not(.published) {
	display: none;
}

.single .byline,
.group-blog .byline {
	display: inline;
}

.page-content,
.entry-content,
.entry-summary {
	margin: 1.5em 0 0;
}

.page-links {
	clear: both;
	margin: 0 0 1.5em;
}

/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/
.page-content .wp-smiley,
.entry-content .wp-smiley {
	border: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
	max-width: 100%;
}

/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/
.wp-caption {
	margin-bottom: 1.5em;
	max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.wp-caption .wp-caption-text {
	margin: 0.8075em 0;
}

.wp-caption-text {
	text-align: center;
}

/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/
.gallery {
	margin-bottom: 1.5em;
}

.gallery-item {
	display: inline-block;
	text-align: center;
	vertical-align: top;
	width: 100%;
}

.gallery-columns-2 .gallery-item {
	max-width: 50%;
}

.gallery-columns-3 .gallery-item {
	max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
	max-width: 25%;
}

.gallery-columns-5 .gallery-item {
	max-width: 20%;
}

.gallery-columns-6 .gallery-item {
	max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
	max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
	max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
	max-width: 11.11%;
}

.gallery-caption {
	display: block;
}

/*--------------------------------------------------------------
## New Code
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Frame Work
--------------------------------------------------------------*/
.f-content {background-color: white;}
.f-footer {background-color: white;}

.f-content, .f-footer {
    margin: 0;
    padding: 0;
    width: 100%;
}

.single-content, .site-header, .site-content, .site-footer {
    margin: 0 auto;
    max-width: 1500px;
    padding: 0 15px;
}

.fixed-head {
    position: fixed;
    z-index: 1005;
    top: 0;
    background-color: #FFF!important;
    height: 85px;
    width: 100%;
}

.site-header {
    position: relative;
}


.site-footer {
    padding: 30px 15px;
}

.single-content {
    max-width: 900px;
    padding: 30px 0;
}

.pretty-link {
    background: #F3C64F;
    border-radius: 3px;
    padding: 5px 10px;
    transition: all 0.5s ease;
}

.pretty-link:hover {
    background: #333;
    color: #FFF;
}

/*  GO FULL WIDTH BELOW 1500 PIXELS */
@media only screen and (max-width: 1500px) {
    .site-archive {
        padding: 15px 15px 30px;
    }
}

/*  GO FULL WIDTH BELOW 800 PIXELS */
@media only screen and (max-width: 800px) {
    .single-content,
    .site-footer {
        padding: 15px 15px 30px;
    }
    .site-header {
        padding: 0;
        position: relative;
    }
    .fixed-head {
        height: 77px;
    }
}

/*  GO FULL WIDTH BELOW 80 PIXELS */
@media only screen and (max-width: 480px) {
    .fixed-head {
        height: 66px;
    }
}

/*--------------------------------------------------------------
## SITE HEADER
--------------------------------------------------------------*/
.site-branding {
    clear: left;
    display: block;
    float: left;
    padding: 12px 0;
    width: 30%;
}
.site-branding img {
    max-width: 350px
}

#site-navigation {
    clear: right;
    display: block;
    float: left;
    font-size: 15px;
    font-weight: bold;
    padding: 12px 0 0;
    width: 70%;
}

#site-navigation li {
    padding: 28px 15px 0;
}

#site-navigation li a{
    line-height: 1.2em;
}

.nav-menu {
    float: right;
}

@media screen and (max-width: 1000px) {
    #site-navigation li {
        padding: 28px 7.5px 0;
    }
}

@media screen and (max-width: 800px) {
    #site-navigation {
        padding: 0;
        width: 100%;
    }
    .site-branding {
        padding-left: 20px;
        width: 100%;
    }
    .site-branding img {
        max-width: 300px;
    }
    #primary-menu {
        width: 100%;
    }
    #site-navigation li {
        float: none;
        padding: 0;
        width: 100%;
        border-top: 1px solid #eee;
        border-left: 10px solid #FFF;
    }

    #site-navigation li:hover {
        border-left: 10px solid #F3C64F;
    }
    
    #site-navigation li a {
        padding: 20px 20px;
    }
    
    #site-navigation li a br {
        display: none;
    }
}

@media screen and (max-width: 480px) {
    .site-branding img {
        max-width: 250px
    }
    .menu-toggle {
        top: 34px;
    }
}

/*--------------------------------------------------------------
## Home
--------------------------------------------------------------*/
.home-image {
    background: no-repeat center center fixed;
    display: table;
    height: 100%;
    /*---- TBC ----*/
    height: 700px;
    position: relative;
    width: 100%;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.home-text {
    background-color: #fff;
    font-size: 20px;
    padding: 6% 0px;
    text-align: center;
    width:100%;
}

.search article,
.error-404,
.home-content {
    max-width: 900px;
    padding: 0 15px;
    margin: 0 auto;
}

.search article .entry-header {
    margin-bottom: 0;
}

.search article {
    border-bottom: 2px solid #EEE;
}

.search article:last-child {
    margin-bottom: 100px;
}

.home-break {
    background-color: #F3C64F;
    height: 4px;
    margin:0 auto;
    width: 100px;
}

.home-image-text {
    clear: right;
    display: block;
    height: 30%;
    left: 0;
    margin: 15% auto;
    max-width: 1500px;
    padding: 0 20px;
    position: relative;
    top: 50%;
}

.page .home-image-text {
    clear: right;
    display: block;
    height: 30%;
    left: 0;
    margin: 7.5% auto;
    max-width: 1500px;
    padding: 0 20px;
    position: relative;
    top: 50%;
}

.home-image-text h2 {
    color: #fff;
    line-height: 65px;
    font-size: 50px;
    font-weight: 500;
    margin-bottom: 50px;
}

.home-image-text a {
    border: 2.5px solid #FFF;
    color: #FFF;
    font-size: 24px;
    margin-right: 20px;
    margin-top: 40px;
    padding: 7.5px 11.5px;
}

.home-image-text a:hover {
    border: 2.5px solid #F3C64F;
    color: #F3C64F;
    transition: all 0.5s ease;
}

.home-image-text p {
    color: #fff;
    font-size: 50px;
    font-weight: 500;
    margin: 0 auto;
    max-width: 800px;
    line-height: 65px;
    text-align: center;
}

#badge-ribbon {
    background: #373642;
    height: 100px;
    margin: 0 auto;
    position: relative;
    width: 400px;
}

#badge-ribbon:before {
    border-right: 200px solid transparent;
    border-top: 20px solid #373642;
    content: '';
    height: 0;
    left: 0;
    position: absolute;
    top: 100px;
    width: 0;
}

#badge-ribbon:after {
    border-left: 200px solid transparent;
    border-top: 20px solid #373642;
    content: '';
    height: 0;
    right: 0;
    position: absolute;
    top: 100px;
    width: 0;
}

.home-image #badge-ribbon:hover {
    background: #F3C64F;
    transition: background-color 0.35s ease;
}

.home-image #badge-ribbon:hover:before, .home-image #badge-ribbon:hover:after{
    border-top: 20px solid #F3C64F;
    transition: all 0.35s ease;
}


.page-id-21 #badge-ribbon {
    background: #373642;
    height: 100px;
    margin: 0 auto;
    position: relative;
    width: 600px;
}

.page-id-21 #badge-ribbon:before {
    border-right: 300px solid transparent;
    border-top: 20px solid #373642;
    content: '';
    height: 0;
    left: 0;
    position: absolute;
    top: 100px;
    width: 0;
}

.page-id-21 #badge-ribbon:after {
    border-left: 300px solid transparent;
    border-top: 20px solid #373642;
    content: '';
    height: 0;
    right: 0;
    position: absolute;
    top: 100px;
    width: 0;
}


#badge-ribbon h1,
#badge-ribbon p {
    color: #fff;
    text-align: center;
    margin: 0;
    padding-top: 20px;
    font-size: 40px;
    font-weight: 500;
}

.page .entry-header {
    margin-bottom: 100px;
}

@media screen and (max-width: 800px) {
    #badge-ribbon {
        height: 75px;
        width: 300px;
    }

    #badge-ribbon:before {
        top: 75px;
        border-top: 15px solid #373642;
        border-right: 150px solid transparent;
    }

    #badge-ribbon:after {
        top: 75px;
        border-top: 15px solid #373642;
        border-left: 150px solid transparent;
    }

    #badge-ribbon p {
        padding-top: 20px;
        font-size: 24px;
    }


    .page-id-21 #badge-ribbon {
        height: 75px;
        width: 330px;
    }

    .page-id-21 #badge-ribbon:before {
        top: 75px;
        border-top: 15px solid #373642;
        border-right: 165px solid transparent;
    }

    .page-id-21 #badge-ribbon:after {
        top: 75px;
        border-top: 15px solid #373642;
        border-left: 165px solid transparent;
    }

    .page-id-21 #badge-ribbon h1 {
        padding-top: 20px;
        font-size: 24px;
    }

    .home-image-text h2,
    .home-image-text p {
        font-size: 26px;
        line-height: 35px;
    }

    .home-image-text a {
        font-size: 16px;
        margin-right: 0;
        padding: 4px 7px;
    }

    .home-image {
        height: 450px;
    }

    .home-text {
        font-size: 16px;
    }
}

/*--------------------------------------------------------------
## Footer
--------------------------------------------------------------*/
.footer-dl {
    margin: 0;
    padding: 10px 0;
    width: 100%;
    background: url(images/granite.jpg) center no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.footer-dl a {
    color: #373642;
    background-color: #fff;
    border-radius: 3px;
    font-size: 18px;
    font-weight: 600;
    margin-left: 10px;
    padding: 7.5px 11.5px;
    transition: background-color 0.5s ease;
}

.footer-dl a:hover {
    background-color: #F3C64F;
}

.footer-dl p {
    color: #fff;
    text-align: center;
    font-size: 18px;
}

.f-footer {
    color: #373642;
    padding: 0;
}

.f-footer p {
    font-size: 12px;
    margin: 5px 0;
}

.f-footer H6 {
    font-size: 20px;
    margin: 0;
}

.f-footer .col:nth-child(3) img {
    float: right;
}

#disclaimer {
    font-size: 10px;
    color: #999;
    border-top: 1px solid #999;
    margin-top: 20px;
}

#disclaimer .col:nth-child(2) ul {
    float: right;
    margin-top: 5px;
}

#disclaimer .col:nth-child(2) ul li {
    display: inline;
    list-style: none;
    font-size: 12px;
    color: #999;
    margin-left: 10px;
}

#disclaimer .col:nth-child(2) ul li:after {
    content: "/";
    margin-left: 10px;
}

#disclaimer .col:nth-child(2) ul li:last-child:after {
    content: "";
}

#disclaimer .col:nth-child(2) ul li a {
    color: #999;
    transition: color 1s ease;
}

#disclaimer .col:nth-child(2) ul li a:hover {
    color: #333;
}


.mobile-only {
    display: none;
}


/*  GO FULL WIDTH BELOW 800 PIXELS */

@media only screen and (max-width: 800px) {
    .span_1_of_4,
    .span_2_of_4,
    .span_3_of_4,
    .span_4_of_4 {
        width: 100%;
    }
    .col {
        margin: 0;
    }
    .f-footer .col:nth-child(3) img {
        float: left;
        padding: 20px 0;
    }
    #disclaimer .col:nth-child(1) p {
        text-align: center;
    }
    
    #disclaimer .col:nth-child(2) ul {
        float: none;
        margin: 0 auto;
        display: block;
        padding: 0;
        text-align: center;
    }

    .footer-dl a {
        display: block;
        margin: 15px auto 0;
        text-align: center;
        width: 200px;
    }
    
    .mobile-only {
        display: inline;
    }
}

/*--------------------------------------------------------------
## Parallax Images
--------------------------------------------------------------*/

/* background setup */
.background {
    background: no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    display: table;
    height: 100%;
    width: 100%;
}

/* fullscreen setup */
html, body {
    /* give this to all tags from html to .fullscreen */
    height:100%;
}
.fullscreen,
.content-a {
    width:100%;
    height:100%;
    overflow:hidden;
}
/* content centering styles */
.content-a {
    display:table;
}
.content-b {
	display:table-cell;
    position:relative;
	vertical-align:middle;
}

.content-b p {
	padding: 0 30px;
}

/*--------------------------------------------------------------
## Pages
--------------------------------------------------------------*/
.p-head-img {
    background: #F3C64F;
    background: no-repeat center center fixed #F3C64F;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    display: table;
    height: 500px;
    width: 100%;
    margin-top: 55px;
}

.p-head-img p {
    color: #fff;
    font-size: 50px;
    font-weight: 500;
    line-height: 65px;
    margin: 0 auto;
    max-width: 900px;
    text-align: center;
}

.page-id-19 .p-head-img p, .page-id-17 .p-head-img p {
    color: #fff;
    font-size: 50px;
    font-weight: 500;
    line-height: 65px;
    margin: 0 auto;
	padding-right: 40%;
    max-width: 1500px;
    text-align: left;
}

@media screen and (max-width: 1700px) {
.page-id-19 .p-head-img p, .page-id-17 .p-head-img p {
    color: #fff;
    font-size: 50px;
    font-weight: 500;
    line-height: 65px;
    margin: 0 auto;
	padding-right: 55%;
    max-width: 1500px;
    text-align: left;
}

}

@media screen and (max-width: 1200px) {
    .page-id-19 .p-head-img p,
	.page-id-17 .p-head-img p,
	.p-head-img p {
        font-size: 40px;
        line-height: 47px;
    }

}


.page article {
    background-color: #fff;
    font-size: 20px;
    padding: 0 0px 6%;
    text-align: center;
    width:100%;
    max-width: 900px;
    margin: 0 auto;
}

.page-id-13 article {
    background-color: #fff;
    font-size: 20px;
    padding: 0 0px 6%;
    text-align: left;
    width:100%;
    max-width: 1000px;
    margin: 0 auto;
}


.page-id-162 article,
.page-id-158 article,
.page-id-15 article {
    text-align: left;
}

.page .entry-content {
    padding: 0 20px;
    position: relative;
}

.page .entry-content:before,
.page .entry-content:after {
    content: '';
    border-bottom: solid 4px #F3C64F;
    left: 35%;
    position: absolute;
    width: 30%;
    z-index: 1;
}

.page .entry-content:before {
    top: -1.5em;
}
.page .entry-content:after {
    bottom: -1.5em;
}

.p-full-img {
    background: #333;
    background: no-repeat center center fixed;
    display: table;
    height: 100%;
    height: 450px;
    width: 100%;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

#agm-canvas { border: 0!important; }

@media screen and (max-width: 800px) {
    #badge-ribbon {
        height: 75px;
        width: 300px;
    }

    #badge-ribbon:before {
        top: 75px;
        border-top: 15px solid #373642;
        border-right: 150px solid transparent;
    }

    #badge-ribbon:after {
        top: 75px;
        border-top: 15px solid #373642;
        border-left: 150px solid transparent;
    }

    #badge-ribbon h1 {
        padding-top: 20px;
        font-size: 24px;
    }

    .page-id-19 .p-head-img p,
	.page-id-17 .p-head-img p,
	.p-head-img p {
        font-size: 30px;
        line-height: 35px;
    }

	.page-id-19 .p-head-img p,
	.page-id-17 .p-head-img p {	
		padding-right: 0;
	}

    .home-image-text a {
        font-size: 16px;
        margin-right: 0;
        padding: 4px 7px;
    }

    .home-image {
        height: 450px;
    }

    .page article {
        font-size: 16px;
    }
}

/*--------------------------------------------------------------
## Catering
--------------------------------------------------------------*/

.f-cater .col { margin: 0; }
.f-cater .span_1_of_4 { width: 25%; }
.f-cater p { 
    color: #FFF;
    font-size: 24px;
    font-weight: 500;
    text-align: center;
    text-shadow: 0px 0px 5px rgba(50, 50, 50, 1);
}
.f-cater img { 
    display: block;
}

.f-cater h3 { 
    color: #FFF;
    display: block;
    margin: 30px 0;
    text-align: center;
}

.f-cater .col {
    background: no-repeat;
    display: table;
    height: 400px;
    padding: 3%;
    position: relative;
    width: 25%;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.f-cater .col:after {
    background: #000;
    content: "";
    height: 100%;
    left: 0;
    opacity: 0.35;
    position: absolute;
    top: 0;
    width : 100%;
    z-index: -1;   
}

.f-cater .col:hover {
    z-index: 1;   
}

/*  GO FULL WIDTH BELOW 480 PIXELS */
@media only screen and (max-width: 800px) {
    .f-cater .col { margin: 0; }
    .f-cater .span_1_of_4 { width: 100%; }
    .f-cater p { 
        width: 100%;
    }
}

/*--------------------------------------------------------------
## Testimonials
--------------------------------------------------------------*/

.content-testimonial {
    font-size:20px;
    line-height: 1.35;
    margin: 10px auto 40px;
    max-width: 900px;
    padding: 0 20px;
    text-align: center;
}

.content-testimonial h3 {
    text-transform: uppercase;
}

.testimonial-name {
    font-weight: 700;
}

.testimonial-content {
    position: relative;
    margin: 70px 0;
}

.testimonial-content:before,
.testimonial-content:after {
    content: '';
    border-bottom: solid 4px #F3C64F;
    left: 35%;
    position: absolute;
    width: 30%;
    z-index: 1;
}

.testimonial-content:before {
    top: -1.5em;
}

.testimonial-content:after {
    bottom: -1.5em;
}

@media screen and (max-width: 800px) {
    .content-testimonial {
        font-size: 16px;
    }
}
/*--------------------------------------------------------------
## Grid
--------------------------------------------------------------*/
/*  SECTIONS  */
.section { clear: both; margin: 0px; padding: 0px; }

/*  COLUMN SETUP  */
.col { display: block; float:left; margin: 1% 0 1% 1.6%; }
.col:first-child { margin-left: 0; }

/*  GROUPING  */
.group:before,
.group:after { content:""; display:table; }
.group:after { clear:both;}
.group { zoom:1; /* For IE 6/7 */ }

/*  GRID OF FOUR  */
.span_4_of_4 { width: 100%; }
.span_3_of_4 { width: 74.6%; }
.span_2_of_4 { width: 49.2%; }
.span_1_of_4 { width: 23.8%; }

/*  GO FULL WIDTH BELOW 480 PIXELS */
@media only screen and (max-width: 800px) {
	.col {  margin: 1% 0 1% 0%; }
	.span_1_of_4, .span_2_of_4, .span_3_of_4, .span_4_of_4 { width: 100%; }
}

/*--------------------------------------------------------------
## TABBY
--------------------------------------------------------------*/

.responsive-tabs .responsive-tabs__heading {
	display: none;
}

.responsive-tabs .responsive-tabs__list__item {
	display: inline;
	cursor: pointer;
}

.responsive-tabs-wrapper {
	clear: both;
	margin-bottom: 20px;
	zoom: 1;
}

.responsive-tabs-wrapper:before,
.responsive-tabs-wrapper:after {
	content: "";
	display: table;
}

.responsive-tabs-wrapper:after {
	clear: both;
}

.responsive-tabs .responsive-tabs__heading:focus,
.responsive-tabs .responsive-tabs__list__item:focus {
	outline: 1px solid transparent;
}

.responsive-tabs .responsive-tabs__heading--active:focus,
.responsive-tabs .responsive-tabs__list__item--active:focus {
	outline: none;
}

.responsive-tabs ul.responsive-tabs__list {
	font-size: 18px;
	line-height: 18px;
	margin: 20px 0 0 0;
	padding: 0;
}

.responsive-tabs .responsive-tabs__list__item {
	background: transparent;
	border: 1px solid transparent;
	border-bottom: none;
	-webkit-border-top-left-radius: 0px;
	-webkit-border-top-right-radius: 0px;
	-moz-border-radius-topleft: 0px;
	-moz-border-radius-topright: 0px;
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
	color: #373642;
	font-size: 15px;
	line-height: 19px;
	text-transform: inherit;
	padding: 6px 8px;
	margin: 0px 4px;
	white-space: nowrap;
	float: left;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.responsive-tabs .responsive-tabs__list__item .fa {
	margin-right: 8px;
	line-height: 0.8;
}

.responsive-tabs .responsive-tabs__list__item:hover {
	color: #333;
	background: #F3C64F;
}

.responsive-tabs .responsive-tabs__list__item--active,
.responsive-tabs .responsive-tabs__list__item--active:hover {
	background: #F3C64F;
	border-color: transparent;
	color: #FFF;
	padding: 6px 8px;
	margin: 0px 4px;
	position: relative;
	top: 0;
}

.responsive-tabs .responsive-tabs__panel {
	background: #FFF;
	border: 0 solid #ddd;
	border-top: 1px solid #ddd;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
	-webkit-border-top-left-radius: 0px;
	-moz-border-radius-topleft: 0px;
	border-top-left-radius: 0px;
	clear: left;
	margin-bottom: 0;
	padding: 20px 20px 0;
	word-wrap: break-word;
}

.responsive-tabs .responsive-tabs__panel:after {
	content: "";
	display: block;
	height: 0;
	clear: both;
}

.responsive-tabs .responsive-tabs__panel:after {
	content: "";
	display: block;
	height: 0;
	clear: both;
}

@media (min-width: 768px) {

	.responsive-tabs .responsive-tabs__panel--closed-accordion-only {
		display: block;
	}
}

@media (max-width: 767px) {

	.responsive-tabs .responsive-tabs__list {
		display: none;
	}

	.responsive-tabs .responsive-tabs__heading {
		display: block;
		cursor: pointer;
	}

	.responsive-tabs-wrapper {
		border-top: 1px solid #ccc;
	}

	.responsive-tabs .responsive-tabs__heading {
		background: #fff;
		border: 1px solid #ccc;
		border-top: none;
		color: #777;
		font-size: 18px;
		font-weight: normal;
		text-transform: inherit;
		margin: 0;
		padding: 10px 0;
		padding-left: 20px;
		position: relative;
	}

	.responsive-tabs .responsive-tabs__heading .fa {
		margin-right: 8px;
		display:none;
    }

	.responsive-tabs .responsive-tabs__heading:after {
		border-left: 6px solid transparent;
		border-right: 6px solid transparent;
		border-top: 6px solid #777;
		content:"";
		display: block;
		position: absolute;
		right: 20px;
		top: 20px;
		height: 0;
		width: 0;
	}

	.responsive-tabs .responsive-tabs__heading:hover {
		background: #eee;
		color: #777;
	}

	.responsive-tabs .responsive-tabs__heading:hover:after {
		border-top: 6px solid #777;
	}

	.responsive-tabs .responsive-tabs__heading--active,
	.responsive-tabs .responsive-tabs__heading--active:hover {
		background: #ccc;
		color: #fff;
	}

	.responsive-tabs .responsive-tabs__heading--active:after,
	.responsive-tabs .responsive-tabs__heading--active:hover:after {
		border-bottom: 6px solid #fff;
		border-top: 0;
		top: 18px;
	}

	.responsive-tabs .responsive-tabs__panel {
		background: #fff;
		border: 1px solid #ccc;
		-webkit-border-radius: 0;
		-moz-border-radius: 0;
		border-radius: 0;
		border-top: none;
		margin: 0;
		padding: 0 20px;
		padding-top: 20px;
	}
}

/*--------------------------------------------------------------
## Table Press
--------------------------------------------------------------*/

.tablepress thead .row-1,
.tablepress thead .row-1 th,
.tablepress tbody .row-1,
.tablepress tbody .row-1 td,
.tablepress-id-1 tbody .row-12 td {
    background-color: #FCF6E3;
    font-weight: 700;
}

.tablepress  {
    font-size: 90%;
}

.tablepress thead th,
.tablepress tfoot th {
  text-align: center;
}

.tablepress-id-1 {
	width: 100% !important ;
}

.tablepress-id-1 thead tr th { height: 0 !important; padding: 0 !important;}

.tablepress-id-1 thead tr th { height: 0 !important; padding: 0 !important;}

.tablepress-id-1 thead .row-1,
.tablepress-id-1 thead .row-1 th {
	background-color: #FFF;
}

#tablepress-1_wrapper .dataTables_scrollBody table thead .row-1,
#tablepress-1_wrapper .dataTables_scrollBody table thead .row-1 th {
	background-color: #FCF6E3 !important;
}


/*--------------------------------------------------------------
## Gravity Forms
--------------------------------------------------------------*/

.gform_wrapper {
    background-color: #FCF6E3;
    padding: 20px 20px;
}

.gform_wrapper .gform_fields .gfield { margin-top: 0; }
.gform_wrapper .gform_fields .gfield .gfield_label { margin-top: 30px; }
.gform_wrapper .gform_fields .gf_right_half { margin-top: 20px; }

.gform_wrapper .gform_fields .gfield .has_first_name .name_first label { display: none; }

.gform_wrapper input,
.gform_wrapper select {
    border: 1px solid transparent;
    border-radius: 0;
}

.gform_wrapper select option:checked {
   box-shadow: 0 0 10px 100px #333 inset;
}

.gform_wrapper select {
    /* reset */
    margin: 0;      
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-appearance: none;
    -moz-appearance: none;

    background-image:
    linear-gradient(45deg, transparent 50%, #000 50%),
    linear-gradient(135deg, #000 50%, transparent 50%),
    linear-gradient(to right, #000, #000);
    background-position:
    calc(100% - 20px) calc(0.75em + 2px),
    calc(100% - 15px) calc(0.75em + 2px),
    calc(100% - 2.5em) 0.5em;
    background-size:
    5px 5px,
    5px 5px,
    1px 1em;
    background-repeat: no-repeat;
    color: #b9b9b9;
}

.gform_wrapper select:focus {
  	background-image:
    linear-gradient(45deg, #000 50%, transparent 50%),
    linear-gradient(135deg, transparent 50%, #000 50%),
    linear-gradient(to right, #000, #000);
  	background-position:
    calc(100% - 15px) 0.75em,
    calc(100% - 20px) 0.75em,
    calc(100% - 2.5em) 0.5em;
  	background-size:
    5px 5px,
    5px 5px,
    1px 1em;
  	background-repeat: no-repeat;
  	outline: 0;
}

@media screen and (min-width:481px) {
    .hidden_desktop {
        display:none;
    }
    .hidden_mobile {
        display:block;
    }
}

@media screen and (max-width:480px) {
    .hidden_mobile {
        display:none;
    }
    .hidden_desktop {
        display:block;
    }
}

@media screen and (max-width: 800px) {
    .home-image, .p-full-img, .background, .home-image, .p-head-img { 
        background-attachment: scroll;
    }
}


