/*
Theme Name:   Web Bird Digital Business 
Theme URI:    http://web.bird.digital
Description:  Web Bird Digital Business Theme. A modern, simple yet elegant theme to showcase your business. 
License: 	  All Rights Reserved
Author:       Web Bird Digital
Author URI:   http://web.bird.digital
Version:      2.1.10
Tags:         responsive-layout, dark, light, one-column, two-columns, right-sidebar, responsive-layout, custom-colors, custom-menu, editor-style, featured-images, full-width-template, theme-options, threaded-comments
Text Domain:  web-bird-digital-business
*/

*,
*:before,
*:after{
	-webkit-hyphens: none;
	-moz-hyphens: none;
	-ms-hyphens: none;
	hyphens: none;
}

/*Accessibility focus states (applies only when on screen reader / keyboard)*/
a:focus{
    outline: 1px dotted #888;
    z-index: 9999;
}

/*Universal elements*/
body {
	font-family: 'san-serif';
	font-weight: 400;
	font-size: 100%;
	overflow: hidden;
	line-height:160%;
	position: relative;
}

hr{
	clear: both;
	background: none;
	border-bottom: dashed 1px #ccc;
	height: 1px;
	margin: 0px 0px 24px 0px;
	border: 0px;
}
hr:before,
hr:after{
	content: '';
	position: relative;
	display: block;
	height: 1px;
	width: 100%;
}
hr:before{
	border-bottom: dashed 1px #ccc;
	top: 1px;
}
hr:after{
	border-bottom: dashed 1px #ddd;
	top: 3px;
}

code,
kbd,
pre,
samp {
	font-family: monospace, serif;
	font-size: 100%;
	-webkit-hyphens: none;
	-moz-hyphens:    none;
	-ms-hyphens:     none;
	hyphens:         none;
	background: #eee;
	padding: 3px 7px;
}


.button,
a.button{
	padding: 7px 15px;
	display: inline-block; 
	-webkit-transition: all 350ms linear;
	-moz-transition: all 350ms linear;
	-ms-transition: all 350ms linear;
	-o-transition: all 350ms linear;
	transition: all 350ms linear;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
	border: 0px;
	cursor: pointer;
}
.button.regular{
	
}

.button.large{
	padding: 15px 30px;
	font-size: 110%;
}
.button.small{
	padding: 5px 8px;
	font-size: 90%;
}

/* CTA button */
.phone-feature {
    max-width: 450px;
    text-align: center;
    margin: auto;
}
.phone-feature h3 {
    margin-bottom: 0;
    padding-top: 10px;
}
.button.cta {
    padding: 0;
    margin: 15px;
    font-size: 150%;
    text-transform: uppercase;
    font-weight: bold;
    width: 90%;
}
.button.cta a {
    display: block;
    width: 100%;
    padding-top: 15px;
    padding-bottom: 15px;
}
.button.cta a:hover{
	background-color:inherit;
	color:inherit;
}


/*embeded elements*/
embed, iframe, object, video {
	width: 100%;
}

a:active,
a:hover {
	text-decoration: none;
}

.clear {
	clear: both;
	display: block;
}

.entry-meta .edit-link,
.edit-link {
	margin-top: 10px;
	display: inline-block;
}
.entry-meta .edit-link {
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
	border: 0px;
	-webkit-transition: all 300ms linear;
	-moz-transition: all 300ms linear;
	-ms-transition: all 300ms linear;
	-o-transition: all 300ms linear;
	transition: all 300ms linear;
}
.entry-meta .edit-link a,
.edit-link a.comment-edit-link {
	color: inherit!important;
	padding: 7px 12px;
	display: inline-block;
}


/*BLOCKQUOTES*/
.entry-content blockquote{
    margin: 15px 30px 30px 30px;
    line-height: 150%;
    background: #eee;
    padding: 18px 36px;
    font-size: 140%;
}
.entry-content blockquote p:last-child{
	margin-bottom: 0px;
}

/*MARK*/
mark{
    color: #333;
    background: #ddd;
    padding: 2px 3px;
}

/*ANIMATION ELEMENTS*/

/*Containers*/ 
.site{
	width: 100%;
	max-width: 100%;
	left: 0%;
	border-left: none;
	position: relative;
	border-right: none;
	z-index: 1;
	position: relative;
	-webkit-filter: blur(0px);
	filter: blur(0px);
	transition: filter 300ms ease-out;
	-webkit-transition: -webkit-filter 300ms ease-out;
}
/*when slideout menu active, apply fancy filters*/
.site.sideout-active{
	
	-webkit-filter: blur(3px);
	filter: blur(3px);
}


.inner{
	max-width: 1200px;
	margin: auto;
	padding: 30px 15px;
}
.home .inner{
	padding: 0px 15px;
}

.inner .inner{
	padding-left: 0px;
	padding-right: 0px;
}

/*Container wrapper for main blocks (used for jquery)*/
.container{	
	/*overflow: hidden;*/
	width: 100%;
	padding-top: 15px;
	padding-bottom: 20px;
}
/*inactive containers are invisible*/
.container.inactive{
	
}
/*active containers are visible*/
.container.active{
	
}


/*(TRANSITION) - Move from left*/
.cssanimations  .transition_item.slide_from_left{
	opacity: 0;
}
.cssanimations  .transition_item.slide_from_left.active{
	-webkit-animation: move_from_left 500ms ease 0ms 1 both;
	-moz-animation: move_from_left 500ms ease 0ms 1 both;
	-o-animation: move_from_left 500ms ease 0ms 1 both;
	animation: move_from_left 500ms ease 0ms 1 both;
}

@-webkit-keyframes move_from_left{
	0%{
		-webkit-transform: translate3d(-100px,0px,1px);
		opacity: 0;
	}
	100%{
		-webkit-transform: translate3d(0px,0px,1px);
		opacity: 1;
	}
}
@-moz-keyframes move_from_left{
		0%{
		-moz-transform: translate3d(-100px,0px,1px);
		opacity: 0;
	}
	100%{
		-moz-transform: translate3d(0px,0px,1px);
		opacity: 1;
	}
}
@-o-keyframes move_from_left{
	0%{
		-o-transform: translate(-100px,0px); /*old opera 12*/
		-o-transform: translate3d(-100px,0px,1px);
		opacity: 0;
	}
	100%{
		-o-transform: translate(0px,0px); /*old opera 12*/
		-o-transform: translate3d(0px,0px,1px);
		opacity: 1;
	}
}
@keyframes move_from_left{
	0%{
		transform: translate3d(-100px,0px,1px);
		opacity: 0;
	}
	100%{
		transform: translate3d(0px,0px,1px);
		opacity: 1;
	}
}

/*ANIMATION - Move from right*/
.cssanimations  .transition_item.slide_from_right{
	opacity: 0;
}
.cssanimations  .transition_item.slide_from_right.active{
	-webkit-animation: move_from_right 500ms ease 0ms 1 both;
	-moz-animation: move_from_right 500ms ease 0ms 1 both;
	-o-animation: move_from_right 500ms ease 0ms 1 both;
	animation: move_from_right 500ms ease 0ms 1 both;
}
@-webkit-keyframes move_from_right{	
	0%{
		-webkit-transform: translate3d(100px,0px,1px);
		opacity: 0;
	}
	100%{
		-webkit-transform: translate3d(0px,0px,1px);
		opacity: 1;
	}
}
@-moz-keyframes move_from_right{	
	0%{
		-moz-transform: translate3d(100px,0px,1px);
		opacity: 0;
	}
	100%{
		-moz-transform: translate3d(0px,0px,1px);
		opacity: 1;
	}
}
@-o-keyframes move_from_right{	
	0%{
		-o-transform: translate(100px,0px);/*Old Opera 12*/
		-o-transform: translate3d(100px,0px,1px);
		opacity: 0;
	}
	100%{
		-o-transform: translate(0px,0px);/*Old Opera 12*/
		-o-transform: translate3d(0px,0px,1px);
		opacity: 1;
	}
}
@keyframes move_from_right{	
	0%{
		transform: translate3d(100px,0px,1px);
		opacity: 0;
	}
	100%{
		transform: translate3d(0px,0px,1px);
		opacity: 1;
	}
}


/*(ANIMATION) - Move botton to top*/
/*move from bottom to top with a bounce*/
.cssanimations .transition_item.transition_move_to_top_bounce{
	opacity: 0;
}
.cssanimations .transition_item.transition_move_to_top_bounce.inactive{
}
.cssanimations .transition_item.transition_move_to_top_bounce.active{
	-webkit-animation: move_to_top_bounce 600ms ease-out 0ms 1 both;   
	-moz-animation: move_to_top_bounce 600ms ease-out 0ms 1 both;
	-o-animation: move_to_top_bounce 600ms ease-out 0ms 1 both;  
	animation: move_to_top_bounce 600ms ease-out 0ms 1 both; 
}
@-webkit-keyframes move_to_top_bounce {
	0% {
		-webkit-transform: translate3d(0px,0px,1px);
		transform: translate3d(0px,0px,1px);
		opacity: 0;
	}
	60% {
		-webkit-transform: translate3d(0px,-30px,1px);
		transform: translate3d(0px,-30px,1px);
	}
	100% {
		-webkit-transform: translate3d(0px,0px,1px);
		opacity: 1;
	}
}
@-moz-keyframes move_to_top_bounce {
	0% {
		-moz-transform: translate3d(0px,0px,1px);
		opacity: 0;
	}
	60% {
		-moz-transform: translate3d(0px,-30px,1px);
	}
	100% {	
		-moz-transform: translate3d(0px,0px,1px);
		opacity: 1;
	}
}
@-o-keyframes move_to_top_bounce {
	0% {
		-o-transform: translate(0px,0px); /*Old Opera 12*/
		-o-transform: translate3d(0px,0px,1px);
		opacity: 0;
	}
	60% {
		-o-transform: translate(0px,-30px); /*Old Opera 12*/
		-o-transform: translate3d(0px,-30px,1px);
	}
	100% {
		-o-transform: translate(0px,0px); /*Old Opera 12*/
		-o-transform: translate3d(0px,0px,1px);
		opacity: 1;
	}
}
@keyframes move_to_top_bounce {
	0% {
		transform: translate3d(0px,0px,1px);
		opacity: 0;
	}
	60% {
		transform: translate3d(0px,-30px,1px);
	}
	100% {
		transform: translate3d(0px,0px,1px);
		opacity: 1;
	}
}

/*(ANIMATION) - move top to bottom fade in */
.cssanimations .transition_item.transition_top_to_bottom_fade{
	opacity: 0;
}
.cssanimations  .transition_item.transition_top_to_bottom_fade.active{
	-webkit-animation: fade_top_to_bottom 500ms linear 0ms 1 both;
	-moz-animation: fade_top_to_bottom 500ms linear 0ms 1 both;
	-o-animation: fade_top_to_bottom 500ms linear 0ms 1 both;
	animation: fade_top_to_bottom 500ms linear 0ms 1 both;
}

@-webkit-keyframes fade_top_to_bottom {
	0% {
		-webkit-transform: translate3d(0px,-50px,1px);
		opacity: 0;
	}
	50% {
		opacity: 0.30;
	}
	100% {
		-webkit-transform: translate3d(0px,0px,1px);
		opacity: 1;
	}
}
@-moz-keyframes fade_top_to_bottom {
	0% {
		-moz-transform: translate3d(0px,-50px,1px);
		opacity: 0;
	}
	50% {
		opacity: 0.30;
	}
	100% {
		-moz-transform: translate3d(0px,0px,1px);
		opacity: 1;
	}
}
@-o-keyframes fade_top_to_bottom {
	0% {
		-o-transform: translate(0px,-50px); /*Old Opera 12*/
		-o-transform: translate3d(0px,-50px,1px);
		opacity: 0;
	}
	50% {
		opacity: 0.30;
	}
	100% {
		-o-transform: translate(0px,0px); /*Old Opera 12*/
		-o-transform: translate3d(0px,0px,1px);
		opacity: 1;
	}
}
@keyframes fade_top_to_bottom {
	0% {
		transform: translate3d(0px,-50px,1px);
		opacity: 0;
	}
	50% {
		opacity: 0.30;
	}
	100% {
		transform: translate3d(0px,0px,1px);
		opacity: 1;
	}
}

/*ANIMATION - Move from top to bottom*/
.cssanimations  .transition_item.move_from_top_to_bottom{
	opacity: 0;
}
.cssanimations  .transition_item.move_from_top_to_bottom.active{
	-webkit-animation: move_from_top_to_bottom 500ms linear 0ms 1 both;
	-moz-animation: move_from_top_to_bottom 500ms linear 0ms 1 both;
	-o-animation: move_from_top_to_bottom 500ms linear 0ms 1 both;
	animation: move_from_top_to_bottom 500ms linear 0ms 1 both;
}
@-webkit-keyframes move_from_top_to_bottom {
	0% {
		-webkit-transform: translate3d(0px,-50px,1px);
		opacity: 0;
	}
	100% {
		-webkit-transform: translate3d(0px,0px,1px);
		opacity: 1;
	}
}
@-moz-keyframes move_from_top_to_bottom {
	0% {
		-moz-transform: translate3d(0px,-50px,1px);
		opacity: 0;
	}
	100% {
		-moz-transform: translate3d(0px,0px,1px);
		opacity: 1;
	}
}
@-o-keyframes move_from_top_to_bottom {
	0% {
		-o-transform: translate(0px,-50px);/*Old Opera 12*/
		-o-transform: translate3d(0px,-50px,1px);
		opacity: 0;
	}
	100% {
		-o-transform: translate(0px,0px);/*Old Opera 12*/
		-o-transform: translate3d(0px,0px,1px);
		opacity: 1;
	}
}
@keyframes move_from_top_to_bottom {
	0% {
		transform: translate3d(0px,-50px,1px);
		opacity: 0;
	}
	100% {
		transform: translate3d(0px,0px,1px);
		opacity: 1;
	}
}


/*Move from bottom to top animation*/
.cssanimations  .transition_item.move_from_bottom_to_top{
	opacity: 0;
}
.cssanimations  .transition_item.move_from_bottom_to_top.active{
	-webkit-animation: move_from_bottom_to_top 500ms linear 0ms 1 both;
	-moz-animation: move_from_bottom_to_top 500ms linear 0ms 1 both;
	-o-animation: move_from_bottom_to_top 500ms linear 0ms 1 both;
	animation: move_from_bottom_to_top 500ms linear 0ms 1 both;
}
@-webkit-keyframes move_from_bottom_to_top {
	0% {
		-webkit-transform: translate3d(0px,50px,1px);
		opacity: 0;
	}
	100% {
		-webkit-transform: translate3d(0px,0px,1px);
		opacity: 1;
	}
}
@-moz-keyframes move_from_bottom_to_top {
	0% {
		-moz-transform: translate3d(0px,50px,1px);
		opacity: 0;
	}
	100% {
		-moz-transform: translate3d(0px,0px,1px);
		opacity: 1;
	}
}
@-o-keyframes move_from_bottom_to_top {
	0% {
		-o-transform: translate(0px,50px);/*Old Opera 12*/
		-o-transform: translate3d(0px,50px,1px);
		opacity: 0;
	}
	100% {
		-o-transform: translate(0px,0px);/*Old Opera 12*/
		-o-transform: translate3d(0px,0px,1px);
		opacity: 1;
	}
}
@keyframes move_from_bottom_to_top {
	0% {
		transform: translate3d(0px,50px,1px);
		opacity: 0;
	}
	100% {
		transform: translate3d(0px,0px,1px);
		opacity: 1;
	}
}


/*Fadein animation*/
.cssanimations  .transition_item.fade_in{
	opacity: 0;
}
.cssanimations  .transition_item.fade_in.active{
	-webkit-animation: fade_in 400ms linear 0ms 1 both;
	-moz-animation: fade_in 400ms linear 0ms 1 both;
	-o-animation: fade_in 400ms linear 0ms 1 both;
	animation: fade_in 400ms linear 0ms 1 both;
}
@-webkit-keyframes fade_in {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
@-moz-keyframes fade_in {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
@-o-keyframes fade_in {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
@keyframes fade_in {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}



/*Animation modifiers (speed, delay, timing functions etc)*/
/*Duration modifiers*/
.cssanimations .transition_item.active.duration_fast{
	-webkit-animation-duration: 250ms;
	-moz-animation-duration: 250ms;
	-o-animation-duration: 250ms;
	animation-duration: 250ms;
}
.cssanimations .transition_item.active.duration_slow{
	-webkit-animation-duration: 750ms;
	-moz-animation-duration: 750ms;
	-o-animation-duration: 750ms;
	animation-duration: 750ms;
}

/*easing modifiers*/
.cssanimations .transition_item.active.timing_ease{
	-webkit-animation-timing-function: ease;
	-moz-animation-timing-function: ease;
	-o-aanimation-timing-function: ease;
	animation-timing-function: ease;
}
.cssanimations .transition_item.active.timing_linear{
	-webkit-animation-timing-function: linear;
	-moz-animation-timing-function: linear;
	-o-aanimation-timing-function: linear;
	animation-timing-function: linear;
}
.cssanimations .transition_item.active.timing_ease_in{
	-webkit-animation-timing-function: ease-in;
	-moz-animation-timing-function: ease-in;
	-o-aanimation-timing-function: ease-in;
	animation-timing-function: ease-in;
}
.cssanimations .transition_item.active.timing_ease_out{
	-webkit-animation-timing-function: ease-out;
	-moz-animation-timing-function: ease-out;
	-o-aanimation-timing-function: ease-out;
	animation-timing-function: ease-out;
}
.cssanimations .transition_item.active.timing_ease_in_out{
	-webkit-animation-timing-function: ease-in-out;
	-moz-animation-timing-function: ease-in-out;
	-o-aanimation-timing-function: ease-in-out;
	animation-timing-function: ease-in-out;
}
/*delay modifiers*/
.cssanimations .transition_item.active.delay_short{
	-webkit-animation-delay: 300ms;
	-moz-animation-delay: 300ms;
	-o-animation-delay: 300ms;
	animation-delay: 300ms;
}
.cssanimations .transition_item.active.delay_large{
	-webkit-animation-delay: 700ms;
	-moz-animation-delay: 700ms;
	-o-animation-delay: 700ms;
	animation-delay: 700ms;
}

.site-header {

}

.site-main {
	
}


.site-footer {
	background-color: transparent;
	color: inherit;
}

/*content inside of the primary container*/
.entry-header, 
.entry-content, 
.entry-summary, 
.entry-meta{
	max-width: 1200px;
}


/*Form element styling*/
input[type="text"],
input[type="email"],
input[type="url"],
input[type="search"],
textarea,
select {
   -webkit-appearance: none;
   -moz-appearance:    none;
   appearance:         none;
}
select:after{
	content: '\f0d7'; 
}

button, input, textarea, select{
	border: solid 1px #ccc;
}
input:focus, 
textarea:focus,
select:focus{
	border: solid 1px #ccc;
}




/*Header*/
/*Header - top menu*/
.site-header .top-menu {
	width: 100%;
	position: relative;
	color: #fff;
}
.site-header .top-menu.sticky {
	height: 0px;
	z-index: 2;
}
.site-header .top-menu.sticky.active {
	height: 45px;
	position: fixed;
	top: 0px;
}

.site-header .inner {
	width: 100%;
	max-width: 1200px;
	margin: auto;
	height: 100%;
	padding: 10px 15px 0px 15px;
}

/*Header - social media*/
.top-menu .social-media {
	float: right;
	max-width: 27.5%;
}

/*Header - contact */
.top-menu .contact-information {
	float: left;
	max-width: 72.5%;
}
.top-menu .contact-information > div {
	display: inline-block;
	padding-left: 15px;
	padding-right: 15px;
	margin-bottom: 15px;
}
.top-menu .contact-information > div:last-child {
	padding-right: 0px;
}
.top-menu .contact-information > div:first-child{
	border-left: 0px;
	padding-left: 0px;
}

/*Search form in header*/
.site-header .search-form{
	position: relative;
	right: 0px;
	top: 0px;
	width: auto;
	float: right;
	text-align: right;
	margin-bottom: 10px;
}
	
.site-header .search-form.next-to-address{
	width: 27%;
	display: inline-block;
	float: none;
	vertical-align: middle;
}

.site-header .search-form .search-field{
	width: 75%;
    background: #fff;
    height: 36px;
    margin: 0px;
    padding: 3px 33px 3px 10px;
    border: solid 1px #eee;
    -webkit-transition: all 250ms ease-in;
    -moz-transition: all 250ms ease-in;
    -o-transition: all 250ms ease-in;
    transition: all 250ms ease-in;
}
.site-header .search-form .search-field:focus{
	border: solid 1px #ccc;
	width: 100%;
}
.site-header .search-form .search-submit{
	position: absolute;
    top: 0px;
    right: 0px;
    background: transparent;
    width: 33px;
    height: 100%;
    height: calc(100% - 2px);
    top: 1px;
    display: block;
    border-radius: 0px;
    padding: 0px;
    border: 0px;
}
.site-header .search-form .search-submit:after{
	font-family: 'fontawesome';
    content: '\f002';
    position: absolute;
    top: 0px;
    color: #666;
    width: 100%;
    background: transparent;
    height: 100%;
    left: 0px;
    line-height: 38px;
    -webkit-transition: all 250ms ease-in;
    -moz-transition: all 250ms ease-in;
    -o-transition: all 250ms ease-in;
    transition: all 250ms ease-in;
}
.site-header .search-form .search-submit:hover:after{
	background: #eee;
}

/*header - bottom menu*/
.site-header .bottom-menu {
	
}
.site-header .bottom-menu .address{
	float: left;
	width: 100%;
}
.site-header .bottom-menu .address.next-to-search {
	width: 72.5%;
	display: inline-block;
	vertical-align: middle;
	float: none;
}
.site-header .bottom-menu .address .address_element {
	display: inline-block;
	margin-right: 10px;
	margin-bottom: 10px;
}


/*Header - middle menu*/
.site-header .middle-menu {
	position: relative;
	width: 100%;
	z-index: 3;
	height: 90px;
	-webkit-transition: height 300ms linear;
	-moz-transition: height 300ms linear;
	-o-transition: height 300ms linear;
	-ms-transition: height 300ms linear;
	transition: height 300ms linear;
}
.site-header .middle-menu .inner {
	height: 100%;
	position: relative;
}
.site-header .middle-menu .inner .container-inner{
	height: 100%;
} 
/*Sticky menu*/
.site-header .middle-menu.sticky {
	position: fixed;
	top: 45px;
	height: 0px;
	-webkit-transition: all 300ms linear;
	-moz-transition: all 300ms linear;
	-o-transition: all 300ms linear;
	transition: all 300ms linear;
	box-shadow: 0px 1px 2px rgba(180, 180, 180, 0.5);
	z-index: 2;
}
.site-header .middle-menu.sticky.active {
	height: 80px;
	transition: all 180ms linear;
}



/*Header - logo*/
.middle-menu .logo {
	width: 35%;
	float: left;
	height: 100%;
}
.middle-menu .logo .image {
	max-width: 100%;
	max-height: 100%;
	height: auto;
	padding-bottom: 5px;
}

/*Header - navigation menu toggle*/
.middle-menu .menutoggle {
	display: none;
}


/*Nav stuff from twenty thirteen*/
.nav-menu .sub-menu,
.nav-menu .children {
	padding: 0;
	position: absolute;
	left: -2px;
	z-index: 99999;
	opacity: 0;
	visibility: hidden;
	display: block;
	-webkit-transition: visibility 0ms linear 350ms, opacity 250ms linear, transform 250ms ease-out;
	-moz-transition: visibility 0ms linear 350ms, opacity 250ms linear, transform 250ms ease-out;
	-o-transition: visibility 0ms linear 350ms, opacity 250ms linear, transform 250ms ease-out;
	transition: visibility 0ms linear 350ms, opacity 250ms linear, transform 250ms ease-out;
	-webkit-transform: translate(0px,10%);
    -webkit-transform: translate3d(0px,10%,0px);
    -moz-transform: translate(0px,10%);
    -moz-transform: translate3d(0px,10%,0px);
    -o-transform: translate(0px,10%);
    -o-transform: translate3d(0px,10%,0px);
    -ms-transform: translate(0px,10%);
    transform: translate(0px,10%);
    transform: translate3d(0px,10%,0px);
}

ul.nav-menu li:hover > ul,
.nav-menu ul li:hover > ul,
ul.nav-menu .focus > ul,
.nav-menu .focus > ul {
	height: inherit;
	width: inherit;
	opacity: 1;
	visibility: visible;
	/*allows for correct fadeout*/
	-webkit-transition-delay: 0ms;
	-moz-transition-delay: 0ms;
    transition-delay: 0ms;
    -webkit-transform: translate(0px,0px);
    -webkit-transform: translate3d(0px,0px,0px);
    -moz-transform: translate(0px,0px);
    -moz-transform: translate3d(0px,0px,0px);
    -o-transform: translate(0px,0px);
    -o-transform: translate3d(0px,0px,0px);
    -ms-transform: translate(0px,10%);
    transform: translate(0px,0px);
    transform: translate3d(0px,0px,0px);
}


/*Header - navigation menu*/
.middle-menu .navbar {
	width: 65%;
	float: left;
	background: transparent;
	height: 100%;
	position: relative;
}
.navbar .main-navigation {
	position: absolute;
	bottom: 0px;
	min-height: 0px;
	width: 100%;
}
/*Hide slideout menu if we have it*/
.navbar.slideout {
	display: none;
}
/*ul container*/
.navbar .main-navigation .nav-menu{
	padding: 0px;
	text-align: right;
}
/*li items*/
.navbar .main-navigation .nav-menu li{
	
}
/*li items with an a*/
.navbar .main-navigation .nav-menu li a{
	padding: 8px 12px;
	font-size: 110%;
	font-weight: 400;
	line-height: 150%;
	position: relative;
}
/*a items*/
.navbar .main-navigation .nav-menu a{
	
}
/*drop down carrot for menu items with children*/
.navbar .main-navigation .nav-menu li.menu-item-has-children > a:after,
.navbar .main-navigation .nav-menu .sub-menu li.menu-item-has-children > a:after{
	position: relative;
	margin-left: 7px;
	font-family: 'fontawesome'
}
.navbar .main-navigation .nav-menu li.menu-item-has-children > a:after{
	content: '\f107';
}
.navbar .main-navigation .nav-menu .sub-menu li.menu-item-has-children > a:after{
	content: '\f105';
	position: absolute;
	top: 8px;
	right: 10px;
}


/*Current ancestor a link*/
.navbar .main-navigation .nav-menu .current_page_item > a, 
.navbar .main-navigation .nav-menu .current_page_ancestor > a, 
.navbar .main-navigation .nav-menu .current-menu-item > a, 
.navbar .main-navigation .nav-menu .current-menu-ancestor > a {
	font-style: normal;
	font-weight: 400;
}

/*navigation sub menu ul */
.navbar .main-navigation .sub-menu {
	background-color: transparent;
	border: none;
	/*margin-left: 10px;*/
}
.navbar .main-navigation .sub-menu li {
	text-align: left;
	display: block;
}
.navbar .main-navigation .sub-menu li a{
}

/*Navigation sub-sub menus*/
.navbar .main-navigation .sub-menu .sub-menu:before{
	display: none;
}

.darkoverlay {
	display: none;
}

/*HOME PAGE BLOCKS*/
#home_blocks {
	width: 100%;
	float: left;
	position: relative;
	padding-top: 30px;
	padding-bottom: 0px;
}
/*boxed width boxes*/
#home_blocks.boxed .inner {
	max-width: 1200px;
}

#home_blocks .block {
	width: 30%;
	height: 100%;
	margin-right: 1.66%;
	margin-left: 1.66%;
	margin-bottom: 3.33%;
	float: left;
	position: relative;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	overflow: hidden;
}
#home_blocks .block:nth-child(3n-2){
	width: 31.5%;
	margin-left: 0%;
	margin-right: 1.375%;
	margin-bottom: 2.75%;
}
#home_blocks .block:nth-child(3n-1){
	width: 31.5%;
	margin-right: 1.375%;
	margin-left: 1.375%;
	margin-bottom: 2.75%;
}
#home_blocks .block:nth-child(3n){
	width: 31.5%;
	margin-right:0%;
	margin-left: 1.375%;	
	margin-bottom: 2.75%;
}


#home_blocks .block .block-name {
	font-size: 150%;
	text-align: left;
	padding: 12px 15px 12px 15px;
	text-transform: uppercase;
	color: #333;
	width: 100%;
	border: none;
	position: absolute;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	z-index: 3;
	margin: 0px;
	color: #fff;
	display: block;
}
#home_blocks .block .block-image-info {
	background: rgb(219, 219, 219);
	background: rgba(219, 219, 219, 0.8);
}

#home_blocks .block .block-image {
	width: 100%;
	height: 0px;
	padding-bottom: 100%;
	position: relative;
	-webkit-transition: all 500ms ease;
	-moz-transition: all 500ms ease;
	-ms-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	transition: all 500ms ease;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: top center;
}
#home_block .block .block-image.no-image{
	background-position: center top;
	background-size: contain; 
	background-repeat: no-repeat; 
}
#home_blocks .block .image-overlay {
	position: absolute;
	width: 100%;
	height: 100%;
	background: url('images/event-overlay-image.png');
	background: rgba(25,25,25,0.70);
	top: 0px;
	left: 0px;
	overflow: hidden;
	text-align: center;
	opacity: 0;
	z-index: 1;
	-webkit-transition: opacity 350ms linear;
	-moz-transition: opacity 350ms linear;
	-ms-transition: opacity 350ms linear;
	-o-transition: opacity 350ms linear;
	transition: opacity 350ms linear;
	padding: 15px;
}
#home_blocks .block .image-overlay .read-more{
	color: #fff;
	border: solid 1px #fff;
	padding: 7px 15px;
	display: inline-block;
}


#home_blocks .block .block-info {
	padding: 20% 15px 10px 25%; /*With offset at top and left to allow for slide effect*/
	position: absolute;
	left: -100%;
	top: 0%;
	width: 100%;
	height: 100%;
	-webkit-transition: all 500ms ease;
	-moz-transition: all 500ms ease;
	-ms-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	transition: all 500ms ease;
	z-index: 2;
}
#home_blocks .block .block-info .block-text {
	margin: 0px;
	color: #333;
	line-height: 150%;
	font-size: 100%;
	font-weight: 100;
	margin-bottom: 15px;
}
#home_blocks .block .block-info .read-more {
	background: #004278;
	padding: 7px 15px;
	color: #fff;
	display: inline-block;
	-webkit-transition: background 350ms linear;
	-moz-transition: background 350ms linear;
	-ms-transition: background 350ms linear;
	-o-transition: background 350ms linear;
	transition: background 350ms linear;
} 
#home_blocks .block .block-info .read-more:hover,
#home_blocks .block .block-info .read-more:active {
	background: #003764;
}


/*on hover, display inner overlay*/
#home_blocks .block:active .image-overlay,
#home_blocks .block:hover .image-overlay {
	opacity: 1;
}

/*On hover, push out the text container from left to cover screen*/
#home_blocks .block:hover .block-info,
#home_blocks .block:active .block-info{
	-webkit-transform: translate(80%,0px);
	-moz-transform: translate(80%,0px);
	-o-transform: translate(80%,0px);
	-ms-transform: translate(80%,0px);
	
	-webkit-transform: translate3d(80%,0px,0px);
	-moz-transform: translate3d(80%,0px,0px);
	-o-transform: translate3d(80%,0px,0px);
	
	transform: translate(80%,0px);
	transform: translate3d(80%,0px,0px);
}
/*on hover, push the image over from the left to out of view*/
#home_blocks .block:hover .block-image,
#home_blocks .block:active .block-image  {
	-webkit-transform: translate(80%,0px);
	-moz-transform: translate(80%,0px);
	-o-transform: translate(80%,0px);
	-ms-transform: translate(80%,0px);
	
	-webkit-transform: translate3d(80%,0px,0px);
	-moz-transform: translate3d(80%,0px,0px);
	-o-transform: translate3d(80%,0px,0px);
	
	transform: translate(80%,0px);
	transform: translate3d(80%,0px,0px);
}








/*MIDDLE PAGE CONTENT (Content + sidebar)*/
.site-main .content-area {
	float: left;
	width: 100%;
	position: relative;
}
/*container for sidebar*/
.site-main .sidebar-container{
	float: right;
	width: 32.5%;
	top: 0px;
	margin-top: 60px;
	position: relative;
	height: auto;
	overflow: hidden;
}
/*container for widgets*/
.sidebar-container .sidebar-inner{
	float: right;
	width: 100%;
}
/*toggle container for sidebar (on mobile)*/

.sidebar-container .sidebar-inner .expand-sidebar{
	padding: 15px;
	position: relative;
	display: none;
	cursor: pointer;
}
.sidebar-container .sidebar-inner .expand-sidebar h2,
.sidebar-container .sidebar-inner .expand-sidebar h3 {
	margin-bottom: 0px;
	position: relative;
	border-bottom: 0px;
	width: 100%;
	padding-right: 30px;
} 
.sidebar-container .sidebar-inner .expand-sidebar h2 span,
.sidebar-container .sidebar-inner .expand-sidebar h3 span {
	position: absolute;
	top: 0px;
	right: 0px;
	width: 30px;
	height: 30px;
}
.sidebar-container .sidebar-inner .expand-sidebar h2 span i,
.sidebar-container .sidebar-inner .expand-sidebar h3 span i {
	background: #FFF;
	width: 100%;
	height: 100%;
	text-align: center;
	line-height: 30px;
	font-size: 110%;
	color: #333;
}

/*each widget*/
.sidebar-container .widget-area{
	width: 100%;
	margin: 0px;
}
.sidebar-container .widget-area .widget{
	background: transparent;
	list-style-type: none;
	font-size: 100%;
	float: left;
	padding: 15px;
	margin: 0 0 24px;
	width: 100%;
}
.sidebar-container .widget-area .widget div {

}
.sidebar-container .widget-area .widget ul,
.sidebar-container .widget-area .widget ol {
	margin: 0px !important;
	padding-left: 20px;
	float: left;
	width: 100%;
}
.sidebar-container .widget-area .widget ul li {
	list-style-type: square;
}
.sidebar-container .widget-area .widget ul.children{
	padding-top: 10px;
}

/*any content area with a sidebar*/
.sidebar-container ~ .content-area {
	width: 65%;
	margin-right: 2.5%;
}

.site-content {
	width: 100%;
	float: left;
}

/*specific styling for visual form builder 3 widget*/
.widget-area .widget.widget_vfbp-widget{
	padding-left: 0px;
	padding-right: 0px;
}
.widget-area .widget.widget_vfbp-widget .widget_title{
	padding: 0px 15px;
}


/*Styling for widgets*/

/* Img Link */
.wb_img_link{
	max-width:100%;
}

.widget .widget_title{
	
}
.widget ul{
	padding-left: 20px;
}
.widget ul li {
	float: left;
	width: 100%;
	list-style-type: none!important;
	position: relative;
	padding-top: 0px;
	padding-bottom: 10px;
}
.widget ul li:before{
	content: '\f105';
	font-family: 'FontAwesome';
	vertical-align: baseline;
	position: absolute;
	top: 0px;
	left: -20px;
}


/*Latest news*/
.widget.widget_recent_entries ul li a{
	float: left;
	width: 100%;
}
.widget.widget_recent_entries ul li span{
	float: left;
	width: 100%;
	font-style: italic;
}
.widget.widget_recent_entries ul li span:before{
    vertical-align: baseline;
    font-family: 'FontAwesome';
    content: '\f133';
    margin-right: 7px;
    font-style: normal;
}

/*Latest comments*/
.widget.widget_recent_comments .recentcomments .comment-author-link a{
	display: inline-block!important;
}
.widget.widget_recent_comments .recentcomments > a{
	display: block!important;	
}
.widget.widget_recent_comments .recentcomments > a:before{
	content: "\f075";
	vertical-align: baseline;
    font-family: 'FontAwesome';
    margin-right: 7px;
}





/*SOCIAL MEDIA - GENERAL STYLING*/
.social-media {
	display: inline-block;
}
.social-media .icon {
	display: inline-block;
	font-size: 120%;
	width: 26px;
	height: 26px;
	text-align: center;
	line-height: 28px;
	margin-left: 4px;
	margin-bottom: 8px;
}
.social-media .icon a {
	display: block;
	width: 100%;
	height: 100%;
	-webkit-transition: color 300ms linear;
	-moz-transition: color 300ms linear;
	-ms-transition: color 300ms linear;
	-o-transition: color 300ms linear;
	transition: color 300ms linear;
}
.social-media .icon i {
	
}

/*CONTACT - GENERAL STYLING*/
.contact-information {
	display: inline-block;
}
.contact-information .phone-primary,
.contact-information .phone-secondary,
.contact-information .email{
	
}
.contact-information .phone-primary {
	
}
.contact-information .phone-secondary {
	
}
.contact-information .email {
	
}

/*----- H tags -----*/

h1,h2,h3,h4,h5,h6{
	font-family: sans-serif;
	font-weight: 600;
	margin-top: 0px;
}


h1{
	font-size: 190%;
	margin-bottom: 26px;
}

h2{
	font-size: 150%;
	margin-bottom: 20px;
}

h3{
	font-size: 130%;
	overflow: hidden;
	margin-bottom: 14px;
}
h4 {
	font-size: 115%;
	margin-bottom: 10px;
}
h5{
	font-size: 90%;
	margin-bottom: 10px;
}
h6{
	font-size: 80%;
	margin-bottom: 10px;
}

.inner h2 {
	margin-bottom: 20px;
	display: block
}



/*LATEST NEWS / TESTIMONIALS CONTAINER*/
#news_testimonials {
	width: 100%;
	float: left;
}
#news_testimonials .latest_news {
	width: 48.5%;
	margin-right: 1.5%;	
	float: left;
	position: relative;
}
#news_testimonials .testimonials{
	width: 48.5%;
	float: left;
	margin-left: 1.5%;
	position: relative;
}
#news_testimonials .list .news{
	width: 100%;
	margin: 0% 0% 15px 0%;
}
#news_testimonials .list .testimonial{
	width: 100%;
	margin: 0% 0% 15px 0%;
}



/*LATEST NEWS*/
#latest_news.on_home{
	float: left;
	width: 100%;
}
.latest_news{
	position: relative;
}

.latest_news h2 {
	
}
.latest_news .news {
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	backface-visibility:hidden;
}
.latest_news .list .news{
	width: 47.5%;
    margin: 0% 1.25% 2.5% 1.25%;
    float: left;
}
.latest_news .list .news:nth-of-type(odd){
	width: 48.75%;
    margin: 0% 1.25% 2.5% 0%;
    clear: left;
}
.latest_news .list .news:nth-of-type(even){
	width: 48.75%;
    margin: 0% 0% 2.5% 1.25%;
    clear: right;
}

.latest_news .news_image {
	width: 37.5%;
	margin-right: 2.5%; 
	float: left;
	height: 0px;
	padding-bottom: 37.5%;
	background-size: cover;
	background-position: top center;
	background-repeat: no-repeat;
}
.latest_news .news_information  {
	width: 100%;
	float: left;
}
.latest_news a ~ .news_information{
	width: 60%;
}

.latest_news .news_information h3 {
	
}
.latest_news .news_information .news_date{
	margin-bottom: 15px;
}
.latest_news .news_information .news_content {
	margin-bottom: 15px;
}
.latest_news .news_information .readmore {
	
}



/*TESTIMONIALS (Homepage)*/
#testimonials.on_home{
	float: left;
	width: 100%;
}
.testimonials {
	width: 100%;
	margin-left: 0%;	
	float: left;
	position: relative;
}

#testimonials .testimonials{
	width: 100%;
	margin: auto;
}

/*each testimonial*/
.testimonials .list > .testimonial {
	-moz-backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility:hidden;
	width: 47.5%;
	margin: 0% 1.25% 2.5% 1.25%;
	float: left;
}
.testimonials .list > .testimonial:nth-of-type(odd){
	width: 48.75%;
	margin: 0% 1.25% 2.5% 0%;
	clear: left;
}
.testimonials .list > .testimonial:nth-of-type(even){
	width: 48.75%;
	margin: 0% 0% 2.5% 1.25%;
	clear: right;
}

/*testimonial content*/
.testimonial .content_container{
	padding: 10px;
	background-color: #E0E0E0;
	width: 100%;
	float: left;
	margin-bottom: 15px;
	position: relative;
}

.testimonial .content_container:after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 110px;
	width: 0; 
	height: 0; 
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	border-top: 10px solid #E0E0E0;
}
.testimonial .content_container .content{
	font-style: italic;
}
/*Testimonial author*/
.testimonial .author_container{
	float: left;
	width: auto;
}
.testimonial .author_container .author_name{
	display: block;
}
.testimonial .author_container .author_position{
	display: block;
}
.testimonial .author_container .author_name.block,
.testimonial .author_container .author_position.block{
	display: block;
}

.testimonial .author_container .testimonial_company{
	display: block;
	margin-top: 10px;
}
.testimonial .author_container .readmore {
	margin-top: 10px;
}

/*Testimonial image*/
.testimonial .image_container{
	float: left;
	width: auto;
	margin-right: 30px;
	clear: left;
	
}
.testimonial .image_container .image{
	width: 100px;
	height: 100px;
	border-radius: 50px;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	background-color: #BDBDBD;
}
/*No photo icon, uses font-awesome */
.testimonial .image_container .image i {
	text-align: center;
	width: 100%;
	height: 100%;
	line-height: 100px;
	font-size: 270%;
	color: #EEE;
}
/*SINGLE TESTIMONIALS*/
.single-testimonial .testimonial {
	width: 100%;
}

.single-testimonial .entry-header-content {
	width: 100%;
	margin-right: 0%;
}
.single-testimonial .entry-header-content h2 {
	display: block;
	margin-bottom: 10px;
}
.single-testimonial .entry-content {
	width: 100%;
}



/*GALLERY LISTING */
.gallery{
	margin-left: 0px;	
}
.gallery-list {
	position: relative;
	float: left;
	width: 100%;
}
.gallery-list .gallery {
	width: 30%;
	margin: 0% 1.665% 3.33% 1.665%;
	float: left;
	position: relative;
}
.gallery-list .gallery:nth-of-type(3n-2){
	width: 32%;
	margin: 0% 1% 2% 0%;
}
.gallery-list .gallery:nth-of-type(3n-1){
	width: 32%;
	margin: 0% 1% 2% 1%;
}
.gallery-list .gallery:nth-of-type(3n-3){
	width: 32%;
	margin: 0% 0% 2% 1%;
}


.gallery-list .gallery:hover .gallery-image .gallery-overlay,
.gallery-list .gallery:active .gallery-image .gallery-overlay {
	opacity: 1;	
}

.gallery-list .gallery .gallery-title {
	margin-bottom: 15px;
	white-space: nowrap;
	text-overflow:ellipsis;
}
.gallery-list .gallery .gallery-image {
	height: 275px;
	position: relative;
	width: 100%;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center top;
	margin-bottom: 20px;
}
.gallery-list .gallery .gallery-image .gallery-overlay {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	opacity: 0;
	background: url('images/black_background.png');
	background: rgba(0, 0, 0, 0.75);
	color: #fff;
	-webkit-transition: all 350ms linear;
	-moz-transition: all 350ms linear;
	-ms-transition: all 350ms linear;
	-o-transition: all 350ms linear;
	transition: all 350ms linear;
}
.gallery-list .gallery .gallery-image .gallery-overlay .gallery-description{
	position: relative;
	padding: 15% 15px 15px 15px;
	text-align: center;
}
.gallery-list .gallery .gallery-image .gallery-overlay .gallery-description span {
	width: 100%;
	display: block;
	margin-bottom: 25px;
	text-align: center;
	font-size:140%;
}
.gallery-list .gallery .gallery-image .gallery-overlay .gallery-description span i {
	margin-left: 10px;
}
.gallery-list .gallery .gallery-image .gallery-overlay .gallery-description p {
	margin: 0px;
	font-size: 110%;
}
.gallery-list .gallery .gallery-readmore {
	display: inline-block;
}


/*SINGLE GALLERY*/
.single-gallery  .entry-title {
	width: 100%;
	float: left;	
}
.single-gallery  .gallery-links {
	width: 100%;
	float: left;	
	margin-top: 20px;
}
.single-gallery  .gallery-links .gallery-link {
	display: inline-block;
	margin-right: 10px;
}
.single-gallery  .gallery-links .gallery-link a{
	padding: 7px 15px;
	margin-bottom: 10px;
	display: block;
}

.single-gallery .gallery-image-container {
	float: left;
	width: 100%;
}
.single-gallery .gallery-image {
	width: 22.5%;
	margin: 0% 1.25% 2.5% 1.25%;
	float: left;
	position: relative;
}
.single-gallery .gallery-image:nth-of-type(4n-3){
	width: 23%;
	margin: 0% 1.33% 3.66% 0%;
}
.single-gallery .gallery-image:nth-of-type(4n-2){
	width: 23%;
	margin: 0% 1.33% 3.66% 1.33%;
}
.single-gallery .gallery-image:nth-of-type(4n-1){
	width: 23%;
	margin: 0% 1.33% 3.66% 1.33%;
}
.single-gallery .gallery-image:nth-of-type(4n-0){
	width: 23%;
	margin: 0% 0% 3.66% 1.33%;
}


.single-gallery .gallery-image:active .overlay,
.single-gallery .gallery-image:hover .overlay{
	opacity: 1;	
}
.single-gallery .gallery-image .image {
	width: 100%;
	position: relative;
	height: 100%;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}
.single-gallery .gallery-image .overlay {
	background: url('images/black_background.png');
	background: rgba(0, 0, 0, 0.75);
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0px;
	left: 0px;
	opacity: 0;	
	color: white;
	padding: 15px;
	-webkit-transition: all 350ms linear;
	-moz-transition: all 350ms linear;
	-ms-transition: all 350ms linear;
	-o-transition: all 350ms linear;
	transition: all 350ms linear;
}
.single-gallery .gallery-image .overlay span.text {
	display: block;
	width: 100%;
	margin-bottom: 15px;
	font-size: 140%;
	text-align: center;
	padding-top: 25%;
}
.single-gallery .gallery-image .overlay span.icon {
	display: block;
	width: 100%;
	text-align: center;
}
.single-gallery .gallery-image .overlay i {
	background: #555;
	background: rgba(85, 85, 85, 0.5);
	border-radius: 50%;
	padding: 7px;
	font-size: 120%;
	width: 40px;
	height: 40px;
	line-height: 27px;
	text-align: center;
}

/*SERVICES LISTING (homepage)*/
#services.on_home {
	width: 100%;
	float: left;
	position: relative;
}




/*STAFF MEMBERS / SERVICES */
#staff_members,
#services {
	width: 100%;
	float: left;
}

.staff_members,
.services {
	width: 100%;
	float: left;
}

.staff,
.service {
	width: 47.5%;
	margin-left: 1.25%;
	margin-right: 1.25%;
	float: left;
	margin-bottom: 20px;
	position: relative;
}
/*first items of two*/
.staff:nth-of-type(2n-1),
.service:nth-of-type(2n-1){
	margin: 0% 1.25% 2.5% 0%;
	width: 48.75%;
	clear: left;
}
/*second items of two*/
.staff:nth-of-type(2n-0),
.service:nth-of-type(2n-0){
	margin: 0% 0% 2.5% 1.25%;
	width: 48.75%;
	clear: right;
}
/*hovering over the staff / service*/
.staff:hover > .image_container .image,
.staff:active > .image_container .image,
.service:hover > .image_container .image,
.service:active > .image_container .image {	
	/*Scale the image using 2d and 3D transforms*/
	-webkit-transform: scale(1.2,1.2);
	-ms-transform: scale(1.2,1.2);
	-moz-transform: scale(1.2,1.2);
	-o-transform: scale(1.2,1.2);
	-webkit-transform: scale3d(1.2,1.2,1);
	-moz-transform: scale3d(1.2,1.2,1);
	-o-transform: scale3d(1.2,1.2,1);
	transform: scale(1.2,1.2);
	transform: scale3d(1.2,1.2,1); 
}
/*Hovering over the staff / service (alter its image)*/
.staff:hover > .image_container .image_interior,
.staff:active > .image_container .image_interior,
.service:hover > .image_container .image_interior,
.service:active > .image_container .image_interior {
	opacity: 1;
}
.staff:hover > .image_container .image_interior .readmore i,
.staff:active > .image_container .image_interior .readmore i,
.service:hover > .image_container .image_interior .readmore i,
.service:active > .image_container .image_interior .readmore i {
	height: 30px;
}

/*staff / service photo*/
.staff .image_container,
.service .image_container{
	width: 40%;
	margin-right: 2.5%;
	float: left;
	overflow: hidden;
	position: relative;
}
.staff .image_container .image,
.service .image_container .image{
	width: 100%;
	position: relative;
	height: 0px;
	padding-bottom: 100%;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	-webkit-transition: all 350ms ease;
	-moz-transition: all 350ms ease;
	-ms-transition: all 350ms ease;
	-o-transition: all 350ms ease;
	transition: all 350ms ease;
}
.staff .image_container .image_interior,
.service .image_container .image_interior{
	opacity: 0;
	width: 100%;
	height: 100%;
	top: 0px;
	left: 0px;
	position: absolute;
	background: url('images/black_background.png');
	background: rgba(0,0,0,0.70);
	-webkit-transition: all 350ms ease;
	-moz-transition: all 350ms ease;
	-ms-transition: all 350ms ease;
	-o-transition: all 350ms ease;
	transition: all 350ms ease;
}
.staff .image_container .image_interior .readmore,
.service .image_container .image_interior .readmore {
	color: #fff;
	margin: 0px 25% 0% 25%;
	top: 35%;
	width: 50%;
	position: absolute;
	text-align: center;
	overflow: hidden;
	-moz-backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

/*Staff / Servicer Info (witout image)*/
.staff .image_container ~ .content_container,
.service .image_container ~ .content_container {
	width: 57.5%;
}

/*Staff / Service info (without image)*/
.staff .content_container,
.service .content_container{
	width: 100%;
	float: left;
}
.staff .content_container .name,
.service .content_container .name{
	
}
.staff .content_container .position,
.service .content_container .position{
	text-transform: uppercase;
	margin-bottom: 10px;
}
.staff .content_container .description,
.service .content_container .description{
	margin-bottom: 10px;
}


/*Staff members displaying on homepage*/
#staff_members.on_home {
	/*background: #D3D1D1;*/
	background: #fff;
}


/*STAFF SINGLE / SERVICE SINGLE PAGE*/


.single-staff .entry-thumbnail,
.single-service .entry-thumbnail{
	max-width: 300px;
}


.single-staff .entry-header-content,
.single-service .entry-header-content  {
	width: 100%;
	margin-right: 0px;
}
.single-staff .entry-header h2,
.single-service .entry-header h2  {
	display: block;
	margin-bottom: 25px;
}
.single-staff .entry-content,
.single-service .entry-content{
	width: 100%;
	float: right;
}
.single-staff .entry-thumbnail ~ .entry-content,
.single-service .entry-thumbnail ~ .entry-content{
	width: 57.5%;
	margin-left: 2.5%;
}

.single-staff .entry-thumbnail,
.single-service .entry-thumbnail {
	float: left;
	margin-right: 15px;
	margin-bottom: 10px;
}

.single-staff article.staff,
.single-service article.service{
	width: 100%;
	margin: 0px;
}

/*PARTNERS*/
#partners.on_home {
	width: 100%;
	float: left;
	position: relative;
}
#partners.on_home .partners  h2{
	display: inline-block;
}

.partners {
	width: 100%;
}
#partners .inner h2 {
	display: none;
}
/*Each partner*/
.partners .partner {
	float: left;
	width: 20%;
	height: 140px;
	text-align: center;
	border: solid 1px #CCC;
	overflow: hidden;
	position: relative;

}
.partner > a {
	display: block;
	width: 100%;
	height: 100%;
}
.partner .partner-image {
	height: 100%;
	width: 100%;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
	background-color: #FFF;
	-webkit-transition: all 350ms ease;
	-moz-transition: all 350ms ease;
	-ms-transition: all 350ms ease;
	-o-transition: all 350ms ease;
	transition: all 350ms ease;
}
/*Inner container for hovering over partners*/
.partner .partner-inner{
	height: 100%;
	width: 100%;
	padding: 15px;
	position: absolute;
	top: 0px;
	left: 0px;
	opacity: 0;
	background: url('images/black_background.png');
	background: rgba(0, 0, 0, 0.5);
	-webkit-transition: all 350ms ease;
	-moz-transition: all 350ms ease;
	-ms-transition: all 350ms ease;
	-o-transition: all 350ms ease;
	transition: all 350ms ease;
}

/*Hovering over each partner, zoom its image*/
.partner:hover .partner-image {
	opacity: 1;
	-webkit-transform: scale(1.2,1.2);
	-ms-transform: scale(1.2,1.2);
	-moz-transform: scale(1.2,1.2);
	-o-transform: scale(1.2,1.2);
	-webkit-transform: scale3d(1.2,1.2,1);
	-moz-transform: scale3d(1.2,1.2,1);
	-o-transform: scale3d(1.2,1.2,1);
	transform: scale(1.2,1.2);
	transform: scale3d(1.2,1.2,1);
}
.partner:hover .partner-inner {
	opacity: 1;
}

.partner .partner-inner h3 {
	color: #fff;
}
.partner .partner-inner .readmore {
	color: #fff;
}


/*SINGLE PARTNER PAGE */

.single-partner .entry-header-content {
	width: 100%;
	float: left;
}
.single-partner .entry-content {
	width: 100%;
	float: left;
}
.single-partner .entry-thumbnail{
	margin-right: 15px;
	margin-bottom: 15px;
	float: left;
	border: solid 1px #eee;
	width: auto;
	height: auto;
}


/*FAQ*/
/*accordion*/
.wb_faq_accordion{
	clear: both;
}

.wb_faq_accordion .wb_faq {
	margin-bottom: 15px;
	border: none;;
	overflow: hidden;
	-webkit-transform: translate3d(0,0,0);
	-moz-transform:  translate3d(0,0,0);
	-o-transform: translate3d(0,0,0);
	-ms-transform:  translate3d(0,0,0);
	transform: translate3d(0,0,0);
	-webkit-transition: all 400ms cubic-bezier(0.4, 0, 1, 1);
	-moz-transition: all 400ms cubic-bezier(0.4, 0, 1, 1);
	-o-transition: all 400ms cubic-bezier(0.4, 0, 1, 1);
	transition: all 400ms cubic-bezier(0.4, 0, 1, 1);
}
.wb_faq_accordion .wb_faq .title{
	display: block;
	padding: 15px 30px 15px 15px;
	background: #eee;
	margin: 0px;
	cursor: pointer;
}

.wb_faq_accordion .wb_faq .title .icon{
	position: absolute;
	top: 15px;
	right: 15px;
	-webkit-transform: rotate(0deg) translate3d(0,0,0);
	-moz-transform: rotate(0deg) translate3d(0,0,0);
	-o-transform: rotate(0deg) translate3d(0,0,0);
	-ms-transform: rotate(0deg) translate3d(0,0,0);
	transform: rotate(0deg) translate3d(0,0,0);
	-webkit-transition: all 300ms linear;
	-moz-transition: all 300ms linear;
	-o-transition: all 300ms linear;
	transition: all 300ms linear;
}

.wb_faq_accordion .wb_faq .content{
	padding: 15px;
}
/*inactive state*/
.wb_faq_accordion .wb_faq.inactive .content{
	
}
/*active state*/
.wb_faq_accordion .wb_faq.active .title .icon{
	-webkit-transform: rotate(-180deg);
	-moz-transform: rotate(-180deg);
	-o-transform: rotate(-180deg);
	-ms-transform: rotate(-180deg);
	transform: rotate(-180deg);
}
.wb_faq_accordion .wb_faq.active .content{
}

/*ATTACHMENT PAGE (single image, document etc)*/
.attachment .hentry{
	background: transparent;
}
.attachment .entry-header{
	padding: 0px;
	max-width: 100%;
	margin-bottom: 15px;
}
.attachment .entry-title{
	display: block;
	width: 100%;
}
.attachment .entry-title:before{
	content: '\f1c5';
	font-family: 'FontAwesome';
	margin-right: 10px;
	position: relative;
	vertical-align: baseline;
}

.attachment .entry-meta{
	max-width: 100%;
	text-align: left;
	padding: 0px;
}
.attachment .entry-meta a{
	color: inherit;
}
.attachment-meta.full-size-link:before{
	display: none;
}
.attachment-meta:before{
	font-family: 'FontAwesome';
	content: '\f017';
	position: relative;
	margin-right: 8px;
	vertical-align: middle;
}
.full-size-link a:before{
	font-family: 'FontAwesome';
	content: '\f0c1';
	position: relative;
	margin-right: 8px;
	vertical-align: middle;
}

.attachment .entry-content{
	padding: 0px;
}
/*image nav*/
.attachment .image-navigation{
	float: left;
	width: 100%;
	margin-bottom: 15px;
}
.attachment .image-navigation .nav-previous{
	float: left;
	position: relative;
	top: 0px;
	margin-right: 10px;
}
.attachment .image-navigation .nav-next{
	float: left;
	position: relative;
	top: 0px;
}
.attachment .image-navigation .nav-previous a,
.attachment .image-navigation .nav-next a{
	padding: 7px 12px;
	display: inline-block;
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}

.attachment .entry-attachment{
	float: left;
	width: 100%;
	max-width: 100%;
	text-align: left;
}
.attachment .entry-description{
	float: left;
	width: 100%;
	max-width: 100%;
	margin: 15px 10px;
}
.attachment .entry-attachment .attachment{
	border: solid 1px #ddd;
}
.single-attachment .comments-area{
	display: none;
}


/*VISUAL FORM BUILDER*/
.site .sidebar .vfbp-form .vfb-form-group{
	margin-left: 15px;
	margin-right: 15px;
}
.site .sidebar .vfbp-form > div{
	padding: 0px;
}

.site-footer .widget.widget_vfbp-widget{
	background: #eee;
	padding: 15px 0px;
	color: #333;
}
.site-footer .widget.widget_vfbp-widget .widget_title,
.site-footer .widget.widget_vfbp-widget h1,
.site-footer .widget.widget_vfbp-widget h2,
.site-footer .widget.widget_vfbp-widget h3,
.site-footer .widget.widget_vfbp-widget h4,
.site-footer .widget.widget_vfbp-widget h5,
.site-footer .widget.widget_vfbp-widget h6{
	color: inherit;
}

/*Footer nav menu*/






/*INDEX PAGE (News page, category listing, tag listing)*/

/*header above listings (for tags and categories)*/
.archive-header {
	background-color: transparent;
	padding: 0px;
}
.archive-title {
	font-style: normal;
	max-width: 100%;
	margin: 0px 0px 20px 0px;;
	padding: 0px;
}
.archive-meta{
	font-size: 100%;
	margin: 0px;
	width: 100%;
	padding-bottom: 0px;
	max-width: 100%;
}

/*each article*/
.news .hentry,
.category .hentry,
.tag .hentry,
.author .hentry{
	padding: 15px;
	background: #EEE;
	margin-bottom: 25px;
	-webkit-transition: all 300ms linear;
	-moz-transition: all 300ms linear;
	-ms-transition: all 300ms linear;
	-o-transition: all 300ms linear;
	transition: all 300ms linear;
	float: left;
	width: 100%;
}



.news .hentry:active,
.news .hentry:hover,
.category .hentry:active,
.category .hentry:hover,
.tag .hentry:active,
.tag .hentry:hover,
.author .hentry:active,
.author .hentry:hover  {
	background: #E4E4E4;
}
/*header (title,image,meta) and content*/
.news .entry-header-content,
.category .entry-header-content,
.tag .entry-header-content,
.author .entry-header-content {
	float: left;
	width: 67.5%;
	margin-right: 2.5%;
}
.news .entry-header-content.full,
.category .entry-header-content.full,
.tag .entry-header-content.full,
.autrhor .entry-header-content.full {
	width: 100%;
	margin-right: 0%;
}

.news .entry-header-content .entry-header,
.category .entry-header-content .entry-header,
.tag .entry-header-content .entry-header,
.author .entry-header-content .entry-header  {
	float: left;
	width: 100%;
	/*margin-bottom: 15px;*/
}
.news .entry-header .entry-title,
.category .entry-header .entry-title,
.tag .entry-header .entry-title,
.author .entry-header .entry-title {
	margin-bottom: 15px;
}
.news .entry-header .entry-meta,
.category .entry-header .entry-meta,
.tag .entry-header .entry-meta,
.author .entry-header .entry-meta,
.news footer.entry-meta,
.category footer.entry-meta,
.tag footer.entry-meta,
.author footer.entry-meta{
	font-size: 100%;
}
/*icon font before meta info*/
.news .entry-header .entry-meta a:before,
.category .entry-header .entry-meta a:before,
.tag .entry-header .entry-meta a:before,
.author .entry-header .entry-meta a:before,
.news footer.entry-meta a:before,
.category footer.entry-meta a:before,
.tag footer.entry-meta a:before,
.author footer.entry-meta a:before,
.featured-post:before{
	font-size: 120%;
	vertical-align: baseline;
	font-family: 'FontAwesome';
}



.news .entry-content,
.category .entry-content,
.tag .entry-content,
.author .entry-content {
	float: left;
	width: 100%;
}

.news .entry-thumbnail,
.category .entry-thumbnail,
.tag .entry-thumbnail,
.author .entry-thumbnail {
	float: right;
	width: 30%;
	height: auto;
	border: none;
}
.news .readmore,
.category .readmore,
.tag .readmore,
.author .readmore  {
	margin-bottom: 10px;
}


.entry-footer {
    float: left;
    width: 100%;
}
.entry-footer .readmore a, 
.entry-footer .readmore a:active, 
.entry-footer .readmore a:hover,
.entry-footer .post-edit-link,
.entry-footer .post-edit-link:active,
.entry-footer .post-edit-link:hover{
	color: inherit;
}


/*Pagination*/
.navigation-wrap{
	
}
.paging-navigation {
	width: 100%;
	float: left;
	padding: 0px;
	margin-top: 20px;
	background: transparent;
	border: none;
}
.paging-navigation .nav-links{
	max-width: 100%;
	background-color: #333;
}

.paging-navigation .nav-links .nav-previous,
.paging-navigation .nav-links .nav-next {
	padding: 0px;
}
.paging-navigation .nav-links .nav-previous a,
.paging-navigation .nav-links .nav-next a {
	font-style: normal;
	font-size: 120%;
	display: block;
	color: #fff;
}
.paging-navigation .nav-links .nav-previous a span.meta-nav,
.paging-navigation .nav-links .nav-next a span.meta-nav{
	width: 40px;
	height: 65px;
	padding: 0px;
	margin: 0px;
	line-height: 60px;
	border-radius: 0%;
	background: #FFF;
	color: #333;
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}
.paging-navigation .nav-links .nav-next a span.meta-nav{
	margin-left: 15px;
}
.paging-navigation .nav-links .nav-previous a span.meta-nav {
	margin-right: 15px;
}
/*hovering over pagination next and prev*/
.paging-navigation .nav-links .nav-previous a:hover span.meta-nav,
.paging-navigation .nav-links .nav-next a:hover span.meta-nav{
 	width: 100px;
 	background: #eee;
}

/*Pagination (numbers e.g 1.2...5)*/
.navigation.pagination{
	width: 100%;
	float: left;
	text-align: center;
}
.navigation.pagination .nav-links{
	
}
.navigation.pagination .page-numbers{
	background: #eee;
    width: 30px;
    height: 30px;
    display: inline-block;
    line-height: 30px;
    color: #333;
}
.navigation.pagination .page-numbers.current{
	background: #ccc;
}

.navigation.pagination .page-numbers:active,
.navigation.pagination .page-numbers:hover{
	background: #ccc;
	
}

.navigation.pagination .page-numbers.next,
.navigation.pagination .page-numbers.prev{
	display: none;
}


/*UNIVERSAL SINGLE POSTS*/
.hentry {
	margin-bottom: 25px;
	float: left;
	width:100%;	
	padding-top: 0px;
}
.home .hentry:last-of-type{
	padding-bottom: 0px;
	margin-bottom: 0px;
}
.hentry .entry-meta{
	font-size: 100%;
	float: left;
	width: 100%;
	margin-bottom: 10px;
	font-weight: 400;
	margin-top: 0px;
}
.hentry .entry-meta .comments-link{
	margin-top: 10px;
}
.hentry .entry-meta > span{
	margin-right: 10px;
}
.hentry .entry-meta a{
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
	margin-right: 5px;
}
/*font awesome icons before meta information*/
.hentry .entry-meta a:before,
.hentry .entry-meta span:before{
	font-size: 120%;
	vertical-align: baseline;
	font-family: 'FontAwesome';
	margin-right: 7px;
}
.hentry .entry-meta .date a:before{
	content: '\f017';
}
.hentry .entry-meta .categories-links a:before{
	content: '\f07c';
}
.hentry .entry-meta .featured-post:before{
	content: '\f005';
}
.hentry .entry-meta .tags-links a:before{
	content: '\f02b';
}
.hentry .entry-meta .edit-link a:before{
	content: '\f040';
}
.hentry .entry-meta .author a:before{
	content: '\f007';
}
.hentry .entry-meta .comments-link a:before{
	content: '\f112';
}
/*edit link in comments*/
.edit-link a:before {
	content: '\f040';
	font-size: 120%;
	vertical-align: middle;
	font-family: 'FontAwesome';
	margin-right: 7px;
}

.entry-header-content {
	float: left;
	width: 100%
}
.entry-header-content.full {
	width: 100%;
	margin-right: 0%;
}
.entry-header {
	min-height: 60px;
	margin-bottom: 0px;
	float: left;
}
.entry-title {
	font-weight: bold;
	margin-bottom: 15px;
}
.hentry img {
	margin: 0px;
	max-height: 100%;
	border: solid 1px #eee;
	height: auto;
}
.entry-content {
	float: left;
	width: 100%;
}
/*forces ul bullets to wrap correctly around floated images*/
.entry-content ul,
.entry-content ol,
.entry-content dl{
	overflow: hidden; 
}
.entry-content ul li {
	margin-bottom: 6px;
}

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6{
	white-space: normal;
	clear: none;
}

.entry-thumbnail {
	width: 100%;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: top center;
	height: 300px;
	float: left;
	width: 50%;
}
.entry-thumbnail ~ .description ul{
	position: relative;
}

/*DL List items*/
.entry-content dl{
	
}
.entry-content dl dt{
	margin-bottom: 5px;
}
.entry-content dl dd{
	padding-left: 25px;
	border-left: solid 3px #ccc;
}

/*post navigation*/
.post-navigation {
	background-color: #E7E7E7;
	margin-bottom: 25px;
	margin-top: 10px;
	font-style: normal;
	padding: 15px;
	font-size: 100%;
	float: left;
	width: 100%;
}
.post-navigation .nav-links{
	max-width: 100%;
}

.post-navigation .nav-links a[rel="prev"] span,
.post-navigation .nav-links a[rel="next"] span{
	display: none;
}
.post-navigation .nav-links a[rel="prev"]:before{
	content: '\f100';
	font-family: 'FontAwesome';
	margin-right: 5px;
	font-size: 120%;
}
.post-navigation .nav-links a[rel="next"]:after{
	content: '\f101';
	font-family: 'FontAwesome';
	margin-left: 5px;
	font-size: 120%;
}

.post-navigation a,
.post-navigation a:hover,
.post-navigation a:active {
	color: #333;
}


/*SEARCH PAGE*/
.page-header {
	background: transparent;
}
.page-header .page-title {
	font-style: normal;
	max-width: 1200px;
}
.page-content {
	max-width: 100%;
	padding: 0px;
}
.search .hentry{
	width: 100%;
	margin-left:0%;
	margin-right: 0%;
	padding: 15px;
	background: #E7E7E7;
	margin-bottom: 30px;
	-webkit-transition: all 300ms linear;
	-moz-transition: all 300ms linear;
	-ms-transition: all 300ms linear;
	-o-transition: all 300ms linear;
	transition: all 300ms linear;
}


/*IMAGE ALIGNMENT (left,right,center etc)*/
.entry-content img.alignright, 
.entry-content .wp-caption.alignright {
	margin: 0px 0px 15px 15px;
}

.entry-content img.alignleft, 
.entry-content .wp-caption.alignleft{
	margin: 0px 15px 15px 0px;
}



/*COMMENTS CONTAINER*/
.comments-area {
	background: #E7E7E7;
	padding: 15px;
	float: left;
	width: 100%;
}
.comments-area .comments-title {
	display: block;
	max-width: 100%;
}
.comment-form textarea {
	height: 125px;
}
.comment-reply-title {
	font-style: normal;
}
.comments-area .comment-list{
	max-width: 100%;
	width: 57.5%;
	margin-right: 2.5%;
	float: left;
	border-right: solid 1px #CCC;
}
.comments-area .comment-list li {
	background: #eee;
	padding: 15px;
	border-top: 0px;
	padding: 0px;
}
.comments-area .comment-list li:nth-of-type(odd){
	background: #eee;
}
.comments-area .comment-list li:nth-of-type(even){
	background: #F1F1F1;
}
.comments-area .comment-list li:last-of-type{
	border-bottom: 0px;
}
.comments-area .comment-list li:after{
	display: none;
}
.comments-area .comment-list li .comment-author{
	display: none;
}
.comments-area .comment-list li .comment-meta{
	font-size: 100%;
}
.comments-area .comment-list li .comment-metadata{
	width: 100%;
}
.comments-area .comment-list li .comment-metadata a{
	font-size: 100%;
	color: #333;
}
.comments-area .comment-list li .comment-content{
	width: 100%;
}
.comments-area .comment-list li .reply{
	width: 100%;
}
.comments-area .comment-list li .reply a,
.comments-area .comment-list li .reply a:hover,
.comments-area .comment-list li .reply a:active{
	color: #333;
}
.comments-area .comment-list li .reply a:before {
	content: '\f112';
	font-family: 'FontAwesome';
	font-size: 120%;
	margin-right: 5px;
}
.comments-area .comment-reply-title a,
.comments-area .comment-reply-title small a{
	color: #333;
	height: auto;
	width: auto;
 	display: block;
  	float: left;
  	margin: 12px 0px 0px 0px;
  	width: 100%;
}
.comments-area .comment-reply-title small a:before{
	content: '\f00d';
	font-family: 'FontAwesome';
	font-size: 120%;
	margin-right: 5px;
}


.comment-respond .comment-reply-title,
.comment-respond .comment-form {
	max-width: 100%;
}

.comments-area .comment-list li .comment-body{
	padding: 15px;
}

/*sub-children*/
.comments-area .comment-list li {
	border-top: solid 1px #ccc;
}


/*reply section*/
.comment-respond {
	background: transparent;
	float: left;
	width: 40%;
}
.comment-form [for="author"], 
.comment-form [for="email"], 
.comment-form [for="url"], 
.comment-form [for="comment"] {
	width: 25%;
}
.comment-form input[type="text"], 
.comment-form input[type="email"], 
.comment-form input[type="url"] {
	width: 75%;
	max-width: 75%;
}
.comment-form textarea {
	resize: none;
}

/*reply section (when replying inline to comments)*/
.comment-list  .comment-respond {
	width: 100%;
	z-index: 999;
	position: relative;
	margin: 20px 0px;
}





/*404 Pages*/
.error404 .page-wrapper {
	background: #333;
}
.error404 .page-wrapper .page-content{
	padding: 15px;
	max-width: 100%;
}
.error404 .page-wrapper .page-content h2,
.error404 .page-wrapper .page-content p {
	color: #fff;
}






/*FOOTERS*/
.site-footer {
	font-size: 100%;
}
.site-footer a,
.site-footer .widget a,
.site-footer .attribution a{
	color: inherit;
}
.site-footer .inner {
	max-width: 1200px;
	margin: auto;
	padding: 0px 15px 15px 15px;
}
/*contains all widget zones*/
.site-footer .widget-area {
	max-width: 100%;
	padding: 0px;
}
/*each widget*/
.site-footer .widgets {
	width: 33.33%;
	color: inherit;
	padding: 20px 1.5% 0% 1.5%;
	float: left;
	font-size: 100%;
	margin: 0%;
}

.site-footer .widgets:nth-child(3n-1){
	
}
.site-footer .widgets:nth-child(3n-2){
	padding-left: 0%;
	clear: left;
}
.site-footer .widgets:nth-child(3n) {
	padding-right: 0%;
	clear: right;
}

.site-footer .widget{
	float: left;
	width: 100%;
	margin: 0% 0% 22px 0%;
	padding: 0px;
	font-size: 100%;
}

.site-footer .widget h2 {
	margin-bottom: 15px;
	display: block;
}

.site-footer .attribution-wrap{
	padding: 0px;
}
.site-footer .attribution {
	text-align: left;
	font-size: 90%;
	padding: 0px;
}

.site-footer .footer-menu-wrap{
	padding: 0px;
	margin-bottom: 10px;
	text-align: left;
}
.footer-menu-wrap .nav-menu{
	
}
.footer-menu-wrap .nav-menu li{
	position: relative;
}
.footer-menu-wrap .nav-menu li a{
    font-size: 90%;
    width: auto;
    padding: 10px 15px;
    display: inline-block;
}

.footer-menu-wrap .nav-menu li:first-of-type a:before{
	display: none;
}
.footer-menu-wrap .nav-menu li a:before{
	content: '|';
	position: absolute;
	left: 0px;
}
.footer-menu-wrap .nav-menu .sub-menu{
	    position: relative;
    transform: none;
    visibility: visible;
    opacity: 1;
    z-index: auto;
    display: inline-block;
	
}



/*FORM STYLING*/
/*Visual form builder pro + standard forms*/

.sidebar-container form {
	margin: 0px;
}

.sidebar-container form fieldset {
	background: transparent;
	border: none;
	margin: 0px 0px 15px 0px;
	background-color: rgba(0,0,0,0);
	padding: 0px;
}
.sidebar-container form fieldset:last-child{
	margin-bottom: 0px;
}

/*holds the actual form elements*/
.site .vfbp-form  {
	margin-top: 0px!important;
	float: left;
	width: 100%;
}

.site .vfbp-form  ul,
.site entry-content .vfbp-form  ul{
	font-size: 100%!important;
	margin: 0px!important;
}
/*wrapper for each form item*/
.site .vfbp-form ul li {
	padding-left: 0px!important;
	padding-right: 0px!important;
}

.site .vfbp-form fieldset {
	margin: 0px 0px 25px 0px;
	border: 0px;
	padding: 0px;
}

.site .vfbp-form .vfb-legend {
	margin:0px;
	border-bottom: 0px;
	padding: 0px;
	color: inherit;
}

.site .vfbp-form label {
	display: block;
	font-weight: normal;
	padding-bottom: 0px;
	margin-bottom: 5px;
	font-size: 90%;
	font-weight: bold;
}

.site .vfbp-form input[type]:focus,
.site .vfbp-form textarea:focus,
.site .vfbp-form select:focus{
	border: solid 1px #AAA;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
}

.site .vfbp-form .vfb-well{
	margin-left: 15px;
	margin-right: 15px;
	width: calc(100% - 30px);
}
.site .vfbp-form > div[class*="vfb-col"]{
	padding-left: 0px;
	padding-right: 0px;
}

.site .vfbp-form .vfb-form-group > *{
	padding-left: 15px;
	padding-right: 15px;
}

.site .vfbp-form > div[class*="vfb-col"] > button{
	margin-left: 15px;
	margin-right: 15px;
}
.site .vfbp-form > div[class*="vfb-col"]:last-child{
	margin-bottom: 15px;
}

.site .vfbp-form  input[type="text"],
.site .vfbp-form  input[type="password"],
.site .vfbp-form  input[type="email"],
.site .vfbp-form  input[type="tel"],
.site .vfbp-form  input[type="number"],
.site .vfbp-form  input[type="url"],
.site .vfbp-form  input[type="search"],
.site .vfbp-form  textarea,
.site .vfbp-form  select {
	-moz-border-radius: 0px;
	-webkit-border-radius: 0px;
	border-radius: 0px;
	box-shadow: none;
	font-size: 100%;
	border: solid 1px #ccc;
	height: 38px;
	color: #333;
	margin-bottom: 0px;
	padding: 5px 10px;
	max-width: none;
}

.site .vfbp-form input[type='submit'],
.site .vfbp-form input[type='reset'],
.site .vfbp-form button,
.site .vfbp-form .btn,
.site .vfbp-form .btn-primary{
	border: 0px;
	font-size: 100%;
	display:inline-block;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
	padding: 7px 15px; 
	-webkit-transition: all 350ms linear;
	-moz-transition: all 350ms linear;
	-ms-transition: all 350ms linear;
	-o-transition: all 350ms linear;
	transition: all 350ms linear;
}
.site .vfbp-form input[type='submit']:focus {
	border: 0px;
}


/*universal form styling*/
input[type="text"],
input[type="password"],
input[type="email"],
input[type="search"],
input[type="tel"],
input[type="url"],
html input[type="button"],
input[type="reset"], 
input[type="submit"],
button, 
textarea,
select {
	min-height: 36px;
    height: auto;
    padding: 5px 10px;
    -moz-border-radius: 0px;
    -webkit-border-radius: 0px;
    border-radius: 0px;
    box-shadow: none;
    font-family: inherit;
    width: 100%;
    background: #fff;
    color: #333;
    max-width: 400px;
}

html input[type="button"],
input[type="reset"], 
input[type="submit"],
button{
	width: auto;
	border: none;
}


.post-password-required input[type="submit"],
.post-password-required input[type="submit"]:active,
.post-password-required input[type="submit"]:hover{
	padding: 7px 15px;
}



/*UNDOOING STYLES*/
.entry-meta a {
	color: inherit;		
}

/*RESPONSIVE CONTAINERS*/
/*Majority of this is defined in responsive.css*/
.responsive-container{
    clear: both;
    float: left;
    position: relative;
    width: 100%;
    left: 0px;
    margin-bottom: 15px;
}
/*inside the entry content, adjust content*/
.entry-content .responsive-container{
	left: calc(-15px);
    width: calc(100% + 30px);
}
/*nested container, inside another container*/
.entry-content .responsive-container.nested{
	margin-bottom: 20px;
}

.responsive-container .column{
	float: left;
	width: 100%;
}

.responsive-container > .column,
.responsive-container > .column > .column
{
	padding-left: 15px;
	padding-right: 15px;
	padding-bottom: 15px;
}
.responsive-container > .column

.responsive-container > .column img{
	max-width: 100%;
}
.responsive-container > .column p:last-of-type{
	margin-bottom: 0px;
}

.responsive-container > .column img{
	max-width: 100%;
}

/*LEGACY - Older responsive containers, before responsive shortcode*/
.entry-content .multi-container {
	float: left;
	width: 102.5%; /*width to factor in left and right margin*/
	margin-left: -1.25%; /*negative left margin to push container over*/
	margin-bottom: 3%;
}
/*Half containers*/
.multi-container .half-container {
	float: left;
	width: 47.5%;
	margin-left: 1.25%;
	margin-right: 1.25%;
}
/*two third, one third container used in the content*/
.multi-container .two-third-container{
	width: 64.16%;
	margin-left: 1.25%;
	margin-right: 1.25%;
	float: left;
}
.multi-container .one-third-container{
	width: 30.83%;
	margin-left: 1.25%;
	margin-right: 1.25%;
	float: left;
}


/*----------------------------------WORDPRESS ADMIN BAR--------------------------*/
#wpadminbar .ab-top-menu li.parent-theme-version{
	
}
#wpadminbar .ab-top-menu li.parent-theme-version .ab-item{
	background: #666;
	color: #FFF;
}
#wpadminbar .ab-top-menu li.parent-theme-version:hover .ab-item,
#wpadminbar .ab-top-menu li.parent-theme-version:active .ab-item {
	background: #333;
	color: #2EA2CC;
}
#wpadminbar .ab-top-menu li.parent-theme-version .ab-item .ab-icon{
	margin-right: 6px;
	color: #444;
	font-family: 'FontAwesome'!important;
}
#wpadminbar .ab-top-menu li.parent-theme-version:hover .ab-item .icon,
#wpadminbar .ab-top-menu li.parent-theme-version:active .ab-item .icon{
	color: #2EA2CC;
}


/* --------------------------------- Extra CSS --------------------------------- */
.portfolio-slider{
	float: left;
	width: 100%;
	display: inline-block;
	overflow: visible;
    white-space: nowrap;   
}
.portfolio-slider .inner-wrap{
	transform: translate3d(-0px, 0px, 1px);
    transition: all 350ms ease-in;
    position: relative;
}

.slide-end{
	-webkit-animation: slideEnd 500ms linear;
}
@keyframes slideEnd{
	0%{
		left: 0px;
		opacity: 1;
	}
	50%{
		left: -50px;
	}
	100%{
		left: 0px;
		opacity: 1;
	}
}



.portfolio-slider .slide{
	display: inline-block;
	overflow: visible;
    white-space: nowrap;
    width: 100%;
}
.portfolio-slider .slide img{
	width: 100%;
	max-width: inherit;
	padding: 0px 5%;
}
.portfolio-slider .slider-controls{	
}

.slider-controls .next{
	width: 40px;
	height: 40px;
	background: red;
}
.slider-controls .prev{
	width: 40px;
	height: 40px;
	background: green;
}






