/*
Theme Name: sfc2015
Theme URI: http://sydneyfloatcentre.com.au/
Author: Verve Digital
Author URI: http://vervedigital.com.au/
Description: 
Version: 1.0.0
Text Domain: sfc2015
Tags:

sfc2015 is based on Underscores http://underscores.me/, (C) 2012-2015 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.com/normalize.css/
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Normalize
# Typography
# Elements
# Forms
# Navigation
	## Links
	## Menus
# Accessibility
# Alignments
# Clearings
# Widgets
# Content
    ## Posts and pages
	## Asides
	## 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;
}

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-appearance: textfield;
	box-sizing: content-box;
}

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
--------------------------------------------------------------*/
html,
body,
button,
input,
select,
textarea {
	color: #404040;
	font-size: 16px;
	font-size: 1rem;
	line-height: 1.5;
	font-family: 'Lato', sans-serif;
}

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. */
}

table {
	margin: 0 0 1.5em;
	width: 100%;
}

/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
button,
input[type="button"],
input[type="reset"],
input[type="submit"]:not('.wpcf7-submit'),
input[type="submit"]:not('.wysija-submit-field') {
	border: 1px solid;
	border-color: #ccc #ccc #bbb;
	border-radius: 3px;
	background: #e6e6e6;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), inset 0 15px 17px rgba(255, 255, 255, 0.5), inset 0 -5px 12px rgba(0, 0, 0, 0.05);
	color: rgba(0, 0, 0, .8);
	font-size: 12px;
	font-size: 0.75rem;
	line-height: 1;
	padding: .6em 1em .4em;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover:not('.wpcf7-submit'),
input[type="submit"]:not('.wysija-submit-field') {
	border-color: #ccc #bbb #aaa;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), inset 0 15px 17px rgba(255, 255, 255, 0.8), inset 0 -5px 12px rgba(0, 0, 0, 0.02);
}

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;
	box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.5), inset 0 2px 5px rgba(0, 0, 0, 0.15);
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
textarea {
	color: #666;
	border: 1px solid #ccc;
	border-radius: 3px;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
textarea:focus {
	color: #111;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"] {
	padding: 3px;
}

textarea {
	padding-left: 3px;
	width: 100%;
}

/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/
a {
	color: #0089b6;
	font-weight: bold;
}

a:visited {
	color: #75aabb;
}

a:hover,
a:focus,
a:active {
	color: midnightblue;
	text-decoration: none;
}

a:focus {
	outline: thin dotted;
}

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

/*--------------------------------------------------------------
## Sticky Promo Bar 
--------------------------------------------------------------*/

#promoBar{
	width:100%;
	height:40px;
	background-color:#2b9ece;
	display:none;
	text-align: center;
	font-family:'Lato', sans-serif;
	-webkit-transition: 0.6s;
	-moz-transition: 0.6s;
	transition: 0.6s;
}

#promoBar #promoWrap{
	width:100%;
}

#promoBar .text{
	font-size:15px;
	/*margin:7px 0px 0px;*/
	line-height:40px;
	display: inline-block;
	font-weight:300;
	color:#ffffff;
	letter-spacing: 0.5;
	margin: 0 5px;
}

#promoBar .promoButton{
	background-color:#156685;
	display: inline-block;
	border-radius:3px;
	padding:0px 12px; 
	font-size:14px;
	font-weight: 400;
	color:#FFFFFF;
	border-color: transparent !important;
	height: 30px;
	line-height:30px;
	margin: 5px 9px;
	-webkit-transition: 0.4s;
	-moz-transition: 0.4s;
	transition: 0.4s;
}

#promoBar:hover{
	cursor: pointer;
	background-color:#026d9a;
}

#promoBar:hover > #promoWrap > .promoButton{
	background-color:#FFFFFF;
	color:#026d9a;
}

#promoBar .close-btn{
	top:0;
	right:10px;
	position: absolute;
	cursor: pointer;
	width:30px;
	height:40px;
	opacity: .5;
	z-index: 3;	
	font-size:21px;
	text-align: center;
	line-height: 40px;
	color:#FFFFFF;
	-webkit-transition: 0.4s;
	-moz-transition: 0.4s;
	transition: 0.4s;
}

.promoLink{
	border: 0;
	text-decoration: none;
	width: 100%;
}

#showBar{
	width:100%;
	height:5px;
	background-color:#2b9ece;
	position: absolute;
	top:-30px;
	cursor: pointer;
	-webkit-transition: background 0.4s linear;
    -moz-transition: background 0.4s linear;
    -ms-transition: background 0.4s linear;
    -o-transition: background 0.4s linear;
    transition: background 0.4s linear;
}

#showBar:hover,
#showBar:hover > .show-btn{
		background-color:#026d9a;
}

#showBar .show-btn{
	position: absolute;
	right:20px;
	width:20px;
	height:20px;
	top:5px;
	cursor: pointer;
	text-align:center;
	font-size:12px;
	color:#FFFFFF;
	border-radius:0px 0px 3px 3px;
	background-color:#2b9ece;
	-webkit-transition: background 0.5s linear;
    -moz-transition: background 0.5s linear;
    -ms-transition: background 0.5s linear;
    -o-transition: background 0.5s linear;
    transition: background 0.5s linear;
}

@media only screen and (min-width: 320px) and (max-width: 374px){
	#promoBar{
		height:50px;	
	}
	#promoBar .text{
		display: none;
	}
	#promoBar a.promoButton{
		font-size:13px;
		padding:2px 16px;
		line-height:34px;
		height:40px;
		position: absolute;
		top:0px;
		left:0px;
		width:80%;
	}
	#promoBar .close-btn{
		top:5px;
		right:5px;
	}
	}
@media only screen and (min-width: 375px) and (max-width: 405px){
		#promoBar .close-btn{
			right:5px !important;
		}
	}

@media only screen and (min-width: 375px) and (max-width: 805px){
	#promoBar{
		height:50px;
	}
	#promoBar .text{
		display: none;
	}
	#promoBar a.promoButton{
		font-size:15px;
		padding:5px 20px;
		line-height:28px;
		height:40px;
	}
	#promoBar .close-btn{
		top:5px;
		right:10px;
	}
}

/*--------------------------------------------------------------
## Menus
--------------------------------------------------------------*/

#quickiebar.qb .bar-text,
#quickiebar.qb .bar-button{
	font-family:'Lato', sans-serif !important;
}

#quickiebar.qb .bar-text{
	font-weight:300 !important;
}

#quickiebar.qb .bar-button{
	padding:0 10px !important;
}

.admin-bar #ha-header {
	/*padding-top: 70px;*/
}
body:not(.home) #content {
	margin-top: 165px;
}
#ha-header {
	padding: 0px 0px 18px 0px;
	box-shadow: 0px 10px 15px rgba(40,94,111,0.55);
	position: fixed;
	z-index: 9999;
	top: 0;
	background: #ffffff;
	width: 100%;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.admin-bar #ha-header.small-header {
	padding: 40px 0 20px;
	background: rgba(255,255,255, .9);
}
#ha-header.small-header {
	padding: 0 0 11px;
	background: rgba(255,255,255, .9);
}
#ha-header.small-header .main-navigation {
	padding-top: 20px;
}

.ha-header-front{
	padding-top:18px;
}

.ha-header-front.small-header-front{
	padding-top:0px !important;
}

.site-logo {
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.site-logo.small {
	width: 41%;
	margin-top: 10px;
}
#site-navigation {
	float: right;
}
.main-navigation {
	padding-top: 40px;
}

.main-navigation ul {
	display: none;
	list-style: none;
	margin: 0;
	padding-left: 0;
}

.main-navigation li {
	float: left;
	position: relative;
	margin: 0 10px;
}

.main-navigation a {
	font-size: 0.9em;
	font-weight: 300;
	display: block;
	text-decoration: none;
	text-transform: uppercase;
	padding: 5px 10px 3px;
	color: #009ed2;
}

.main-navigation li.menu-item-has-children > a {
	padding-right: 28px;
	background: url('img/hassub.png') no-repeat 92% -21px;
}
.main-navigation li.menu-item-has-children:hover > a {
	background: url('img/hassub.png') no-repeat 92% 12px #009ed2 !important;
}
.main-navigation .current-menu-item > a {
  border: 0px !important;
}
.main-navigation ul ul {
	box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
	display: none;
	float: left;
	left: 0;
	position: absolute;
	top: 35px;
	z-index: 99999;
	background: #009ed2;
	border-radius: 5px;
}
.main-navigation li.menu-item-has-children:hover > a, .current_page_item.menu-item-has-children > a, .current-menu-item.menu-item-has-children > a {
  padding-right: 28px;
  background: url('img/hassub.png') no-repeat 92% 12px #009ed2 !important;
}
.main-navigation .current_page_item > a,
.main-navigation .current-menu-item > a,
.main-navigation .current_page_ancestor > a {
	background-color: #009ed2 !important;
 	color: #FFFFFF;
	border-radius: 5px;
	border-bottom: 2px solid #218eb7;
}
.main-navigation ul ul ul {
	left: -999em;
	top: 0;
}

.main-navigation ul ul a {
	width: 200px;
	color: #FFFFFF;
	padding: 10px;
	font-size: 0.864em;
	text-transform: capitalize;
	border-bottom: 0 !important;
}

.main-navigation ul ul li {
	margin: 0;
	border-bottom: 1px solid #0095c2 !important;
	border-top: 1px solid #03a5da; 
}

.main-navigation ul ul li:first-child {
	border-top: 0;
}

.main-navigation ul ul li:last-child {
	border-bottom: 0 !important;
}

.main-navigation ul ul li:hover a {
	background: #fff !important;
	color: #009ed2;
	border-radius: 0;
}

.main-navigation ul ul li:last-child:hover,
.main-navigation ul ul li:last-child:hover a {
	border-radius: 0 0 5px 5px !important;
}

.main-navigation li:hover > a,
.main-navigation li.focus > a {
	background: #009ed2;
	color: #FFFFFF;
	border-radius: 5px;
	border-bottom: 2px solid #218eb7;
}

.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%;
}

/* Small menu. */
.menu-toggle,
.main-navigation.toggled ul {
	display: block;
}

@media screen and (min-width: 37.5em) {
	.menu-toggle {
		display: none;
	}
	.main-navigation ul {
		display: block;
	}
}

.site-main .comment-navigation,
.site-main .posts-navigation,
.site-main .post-navigation {
	margin: 0 0 1.5em;
	overflow: hidden;
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
	float: left;
	width: 50%;
}

.comment-navigation .nav-next,
.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;
}

.screen-reader-text:hover,
.screen-reader-text:active,
.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. */
}

/*--------------------------------------------------------------
# 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,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
	content: "";
	display: table;
}

.clear:after,
.entry-content:after,
.comment-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%;
}

/* Search widget. */
.widget_search .search-submit {
	display: none;
}

/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/
.site-content{
	padding-top:30px;
}
#parallax-hero, #parallax-hero2 {
	min-height: 755px;
	padding-top: 165px;
	position: relative;
}
#bg1, #bg2, #bg3, #bg4, #bg5 {
	z-index:50;
	position: absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	background:url(img/layer1.jpg) repeat 0 0;
	background-attachment: fixed;
}
#bg2 {
	background-image:url(img/layer2.png);
}
#bg3 {
	background-image:url(img/layer3.png);
}
#bg4 {
	background-image:url(img/layer4.png);
}
#bg5 {
	background-image:url(img/layer5.png);
}
#waves {
    position: absolute;
    top: -20px;
    display: block;
    width: 100%;
    height: 130px;
    z-index:1000;
    background: url('img/waves-tile.png') repeat-x center top;
}

#girl {
  position: relative;
  top: -725px;
  left: 35px;
  z-index: 1000;
}

#fancy-heading { 
    position: relative;
    overflow: visible;
    background: #044a62;
}

#fancy-heading h1 {
  padding: 130px 0 20px;
  font-size: 2em;
  font-weight: 200;
  text-transform: uppercase;
  color: #FFFFFF;
  text-align: center;
}

.arrows-text {
  display: inline-block;
  width: 50px;
  height: 22px;
  background: url('img/aroow-down.png') center center no-repeat;
  -webkit-animation: slide 3s ease-out infinite;
}

.info-box {
  padding: 45px 0 25px;
}

.info-box .icon {
  text-align: center;
}

.info-box h2 {
  color: #FFFFFF;
  font-size: 2em;
  font-weight: 100;
  margin-bottom: 12px;
  margin-top: 0;
}

.info-box p {
  color: #FFFFFF;
  font-size: 1em;
  font-weight: 300;
}

#info-1 {
    background: #045773;
    transition: all 0.3s ease; 
    z-index:9000;
    position: relative;
}

#info-2 {
    background: #0e6687;
    transition: all 0.3s ease; 
    z-index:9000;
    position: relative;
}
#info-3 {
    background: #0f7095;
    transition: all 0.3s ease;
    z-index:9000;
    position: relative;
}
a.what-is-floating:hover > #info-1,
a.why-float:hover > #info-2, 
a.new-to-floating:hover > #info-3{
	background:#053e52;
	z-index:9000;
}
#why-float {
	margin-bottom: 60px;
}
#fth-section {
  padding-top: 50px;
  padding-bottom: 50px;
}

#fth-section .box:first-child {
  border-right: 1px solid #cdecf6;
  z-index: 9000;
}

#fth-section h1 {
  color: #0f7095;
  font-size: 2em;
  font-weight: 300;
  margin-bottom: 30px;
}

#fth-section .button {
  width: 130px;
  height: 30px;
  font-size: 0.8em;
  font-weight: 400;
  line-height: 220%;
  text-indent: 6px;
  transition: all 0.2s ease;
}

#fth-section .button span {
  width: 30px;
  height: 30px;
  margin-right: 8px;
  background: url('img/sparkles2.png') no-repeat center #018cba;
}
#fth-section article.one-element
{
    margin-bottom: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid #cdecf6;
    padding-bottom:28px;
}
#fth-section article.one-element h2 {
	margin-top: 0;
}
#info-1.click .row,#info-2.click .row,#info-3.click .row{
    cursor: pointer;
}

.button {
  display: block;
  background: #009ed2;
  color: #FFFFFF;
  font-weight: 400;
  cursor: pointer;
  border-bottom: 3px solid #0a8ebc;
  border-radius: 3px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.button span {
  border-bottom: 3px solid #097fa8;
  border-radius: 3px 0px 0px 3px;
  background-color: #018cba;
  padding: 0;
  margin: 0;
  display: block;
  float: left;
  transition: all 0.2s ease;
}

.button-float-right{
    float: right;
}

.button-right a {
  float: right;
}

.button-studies{
    top: 5px;
}

.button:hover {
  color: #fff;
  text-decoration: none;
  background: #0a8ebc;
}
.button-news, 
.button-studies {
  background: #ededed;
  padding: 7px 10px;
  border-radius: 5px;
  color: #a5a5a5;
  font-size: 11px;
  font-weight: normal;
  text-align: center;
  position: relative;
  transition: all 0.2s ease;
  margin-top: 20px;
}

.button-news:hover,
.button-studies:hover {
    text-decoration: none;
    background: #d0d0d0;
    color:#ffffff !important;
}

.button-news:visited,
.button-studies:visited {
    color: #a5a5a5;
}

.button-news {
    right: -15px;
    top: 5px;
}
#medical {
  padding-right: 50px;
  margin-bottom: 0px;
}
#medical article:last-child, #latest article:last-child {
  background: none;
  margin-bottom: 30px;
  padding-bottom: 0px;
}
#latest {
  padding-left: 50px;
  margin-bottom: 0px;
}
#medical article, #latest article {
  min-height: 146px;
  background: url('img/line.png') no-repeat bottom center;
  padding-bottom: 35px;
  margin-bottom: 25px !important;
}

a.medical-studies-title {
  text-decoration: none !important;
  font-size: 18px;
  font-weight: 300;
}

#fth-section .post {
  margin-bottom: 30px;
}

#fth-section .box {
  padding-top: 0px;
  padding-bottom: 0px;
}

#fth-section .post p {
  color: #676767;
  font-size: 0.95em !important;
  font-weight: 300 !important;
  margin-bottom: 1em;
}
.alpha {
  margin-left: 0;
  padding-left: 0;
}
.omega {
  margin-right: 0;
  padding-right: 0;
}
.date-date {
  background: url('img/date-background.png') no-repeat;
  width: 107px;
  height: 130px;
  margin-left: 30%;
  text-align: center;
}
.date-date.small {
  padding-top: 9px;
  font-size: 25px;
}
.date-date.small span.day {
  font-size: 36px;
  position: relative;
  top: -7px;
}
.date-date.small {
  background: url('img/d-background.png') no-repeat;
  width: 78px;
  height: 94px;
  margin-left: 0%;
  text-align: center;
}

.date-date span {
  display: block;
}

.date-date span.day {
  font-size: 50px;
  font-weight: 300;
  color: #fff;
  margin-bottom: -22px;
}

.date-date span.month {
  font-size: 22px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: -11px;
}

.date-date.small span.month {
  font-size: 18px;
  position: relative;
  top: 0px;
}

.date-date span.year {
  font-size: 17px;
  font-weight: 300;
  color: #41627e;
}

#testmonials {
  background: #bcd3e4;
  padding: 0 0 30px;
}

#testmonials h2 {
  font-size: 2em;
  font-weight: 300;
  margin-bottom: 20px;
  color: #0f7095;
}

.test-thumbnail .circle {
  position: absolute;
  left: -2px;
  top: 0;
  width: 100%;
  text-align: center;
}
.bxslider {
	margin: 0;
	padding: 0;
}
.bx-wrapper .bx-viewport {
	background: none;
	border: 0;
	border-radius: 10px 10px 10px 10px;

}
.bxslider .item {
	background: #FFFFFF;
    -webkit-border-radius: 10px 10px 10px 10px;
    border-radius: 10px 10px 10px 10px;
    width: 100%;
    padding: 30px 0; 
    background: #ffffff; /* Old browsers */
    background: -moz-linear-gradient(top,  #ffffff 0%, #f7f7f7 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(100%,#f7f7f7)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top,  #ffffff 0%,#f7f7f7 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top,  #ffffff 0%,#f7f7f7 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top,  #ffffff 0%,#f7f7f7 100%); /* IE10+ */
    background: linear-gradient(to bottom,  #ffffff 0%,#f7f7f7 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#f7f7f7',GradientType=0 ); /* IE6-9 */
}
.test-thumbnail {
  text-align: center;
  height: 178px;
  position: relative;
}
.test-thumbnail img {
	-webkit-border-radius: 50%;
    border-radius: 50%;
	display: inline-block;
	border: 10px solid #bcd3e4;
}
.test-text p {
  color: #617a8b;
  font-size: 1em;
  font-weight: 300;
}
.test-text p:last-child {
  margin-bottom: 0;
}
.test-text .author {
  font-weight: 600;
}
.bx-wrapper .bx-pager.bx-default-pager a:hover, 
.bx-wrapper .bx-pager.bx-default-pager a.active {
  border-radius: 0;
  background: #a2bbcd;
  border-color: #a2bbcd;
}
.bx-wrapper .bx-pager.bx-default-pager a
{
  border-radius: 0;
  background: #afc7d8;
  border-color: #afc7d8;
}
.bx-wrapper .bx-pager, .bx-wrapper .bx-controls-auto {
	bottom: -40px;
}
.bx-wrapper .bx-controls-direction a {
  height: 139px;
  width: 43px;
  margin-top: -65px;
  opacity: 0.6;
  z-index: 9998;
}
.bx-wrapper .bx-prev {
  left: -60px;
  background: url(img/left.png) no-repeat top center;
}
.bx-wrapper .bx-next {
  right: -50px;
  background: url(img/right.png) no-repeat top center;
}
.bx-wrapper .bx-next:hover, .bx-wrapper .bx-prev:hover {
	background-position: top center;
	opacity: 1;
}
#contact {
    background: url('img/bg-cont.jpg')  no-repeat center top;
    padding-top: 30px;
    background-size: cover;
    background-attachment: fixed;
    padding-bottom: 30px;
}
#contact h2 {
  font-size: 2em;
  font-weight: 300;
  margin-bottom: 20px;
  color: #FFFFFF;
}
#form {
    padding-right: 30px;
}
#contact p {
    color: #FFFFFF;
    font-weight: 300;
}
#form-wrap {
    padding: 0 10px;
}
#contact input[type="text"], #contact input[type="tel"], #contact input[type="email"] {
    width: 95%;
    height: 40px;
    border-radius: 3px;
    border: none;
    padding: 0 10px;
}
#contact .wpcf7-submit, #wids-1 .wysija-submit {
    height: 40px;
    display: inline-block;
    background: url('img/button-bg-cont.png') no-repeat left 0px #009ed2;
    float: right;
    clear: both;
} 
.wysija-submit, .wpcf7-submit {
  background: url('img/button-bg.png') no-repeat left 0px #009ed2;
  display: inline-block !important;
  color: #FFFFFF;
  font-weight: 300;
  font-size: 0.9em;
  cursor: pointer;
  border-bottom: 0px solid #0a8ebc;
  border-top: 0;
  border-left: 0;
  border-right: 0;
  border-radius: 3px;
  text-decoration: none;
  text-transform: uppercase;
  height: 50px;
  box-shadow: none;
  padding-left: 58px;
  padding-top: 2px;
  padding-right: 13px;
  margin-top: 0 !important;
}
#contact .wpcf7-submit:hover, #wids-1 .wysija-submit:hover{
    background: url('img/button-bg-cont-hover.png') no-repeat left -1px #0a8ebc;
}

.wpcf7-response-output {
    background: #ffffff;
}
#wids-1 .wysija-submit {
    height: 30px;
    display: inline-block;
    background: url('img/button-bg-cont-2.png') no-repeat left 0px #009ed2;
    clear: both;
    padding-left: 40px;
    border: 0;
    color: #fff;
    text-transform: uppercase;
    font-weight: 300;
    font-size: 0.813em;
}

.wpcf7-mail-sent-ok
{
    display: block;
    position: absolute;
    bottom: -8px;
    left: 7px;
    border: 0 !important;
    background: rgba(41, 171, 134, 0.7);
    border-radius: 5px;
    color: #FFF;
    padding: 8px 12px!important;
    width: 65%;
}
#cont-desc span {
  font-weight: 600;
}
#cont-desc {
  color: #ffffff;
  font-weight: 300;
  padding: 60px 35px 110px;
  margin-top: 35px;
  /* border-left: 1px solid #81acb8; */
  border-left: 1px solid rgba(255,255,255,0.5);
}
#wids-1 {
  position: relative;
  background: #FFFFFF;
  padding-top: 110px;
}
#waves-2 {
    position: absolute;
    top: -20px;
    display: block;
    width: 100%;
    z-index:11;
    height: 130px;
    background: url('img/waves-tile.png') repeat-x center top;
}
#wids-1 .wid {
  padding: 0 25px;
  margin-top: 25px;
  margin-bottom: 25px;
  height: 232px;
  border-right: 1px solid #cdecf6;
}
#wids-1 .wid:last-child {
    border-right: none;
}
#wids-1 .wid p {
    font-size: 0.813em;
    color: #777777;
    margin-bottom: 5px;
}
#wids-1 .wid address {
    font-size: 0.813em;
    margin-top: 10px;
    color: #777777;
}
#wids-1 .wid h3 {
    font-size: 1.125em;
    color: #0f7095;
    margin-bottom: 20px;
    font-weight: 300;
}
#wids-1 .wid label {
    color: #009ed3;
}
#wids-1 #socials {
    list-style: none;
    margin: 0;
    display: inline-block;
    margin: 0 auto; 
}
#wids-1 #socials a {
    display: block;
    width: 31px;
    height: 31px;
}
#wids-1 #socials li {
    float: left;
    margin-right: 15px;
}
#wids-1 #socials li:last-child {
    margin-right: 0px;
}
#wids-1 #socials #facebook a {
    background: url('img/socials.png') left top;
}
#wids-1 #socials #twitter a {
    background: url('img/socials.png') -50px top;
}
#wids-1 #socials #instagram a {
    background: url('img/socials.png') -100px top;
}
#wids-1 #socials #googleplus a {
    background: url('img/socials.png') -150px top;
}
#book-it, #book-it-2 {
  width: 190px;
  height: 50px;
  font-size: 1.2em;
  line-height: 270%;
  margin-bottom: 25px;
  transition: all 0.2s ease;
  text-decoration: none !important;
}
#book-it span, #book-it-2 span {
  width: 50px;
  height: 50px;
  background: url('img/sparkles.png') no-repeat center #018cba;
  margin-right: 15px;
  transition: all 0.2s ease;
}
.button span {
  border-bottom: 3px solid #097fa8;
  border-radius: 3px 0px 0px 3px;
  background-color: #018cba;
  padding: 0;
  margin: 0;
  display: block;
  float: left;
  transition: all 0.2s ease;
}
a.button:visited {
	color: #ffffff;
}
#wids-1 #socials {
  list-style: none;
  margin: 0;
  display: inline-block;
  margin: 0 auto;
  padding: 0;
}
#wids-1 .wysija-submit:hover
{
    background: url('img/button-bg-cont-2-hover.png') no-repeat left -1px #0a8ebc;
}
.wysija-input {
    background: #046d92;
    border-radius: 3px;
    height: 35px;
    width: 100%;
    font-weight: 300 !important;
}
.button:hover {
  color: #fff;
  text-decoration: none;
  background: #0a8ebc;
}
#book-it:hover span, #book-it-2:hover span {
  background-color: #097fa8;
}
#cont-desc {
    color: #ffffff;
    font-weight: 300;
    padding: 35px 35px 110px;
    margin-top: 35px;
    /*border-left: 1px solid #81acb8;*/
    border-left: 1px solid rgba(255,255,255,0.5);
}
#cont-desc span {
    font-weight: 600;
}
#cont-desc address {
    margin-top: 37px;
} 
#wids-2 {
    padding: 35px 0;
    background: #0e6687;
}
#wids-2 .widget-title {
    color: #ffffff;
    font-size: 1.125em;
    font-weight: 300;
    text-transform: uppercase;
}
#wids-2 .widget {
    margin: 0;
    padding-left: 30px;
    border-right: 1px solid #107499;
    border-left: 1px solid #0c5a78;
    min-height: 140px;
}
#wids-2 .widget:last-child {
    border-right: none;
}
#wids-2 .widget:first-child {
    border-left: none;
}
#wids-2 li a {
    color: #ffffff;
    font-size: 0.875em;
    font-weight: 300;
}
#wids-2 ul {
    list-style-image: url('img/bullet.png');
    margin: 10px;
}
.site-info {
    background: #115c73; /* Old browsers */
    background: -moz-linear-gradient(top,  #115c73 0%, #186885 11%, #186885 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#115c73), color-stop(11%,#186885), color-stop(100%,#186885)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top,  #115c73 0%,#186885 11%,#186885 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top,  #115c73 0%,#186885 11%,#186885 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top,  #115c73 0%,#186885 11%,#186885 100%); /* IE10+ */
    background: linear-gradient(to bottom,  #115c73 0%,#186885 11%,#186885 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#115c73', endColorstr='#186885',GradientType=0 ); /* IE6-9 */

    color: #67a3b8;
    font-weight: 300;
    font-size: 0.813em;
    padding-top: 40px;
    padding-bottom:10px;
}

#footer-itself
{
    background: #094c5e;
    height:70px;
    /*line-height:70px;*/
    color: #67a3b8;
    padding-top:25px;
    font-size:13px;
}

.site-info span {
    font-weight: 600;
}
.site-info .right {
    text-align: right;
}

.madeby {
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 0.875em;
}

.madeby p {
  margin-bottom: 0;
}

.madeby a {
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
}

.madeby img {
    margin-left: 5px;
}

#footer-menus h5 {
  color: #fff;
  font-size: 16px;
  margin-bottom: 20px;
}
#footer-menus ul {
  padding-left: 0;
  margin: 0;
  margin-left: 00px;
  margin-top: 10px;
  color: #f9fcf7;
  list-style: none;
}
#footer-menus ul li {
  padding-left: 15px;
}
#footer-menus ul a {
  color: #f9fcf7;
}
.site-info ul li {
  background: url('img/bullet_bottom.png') no-repeat 3px center;
}
#footer-menus .left.col-md-4 {
  border-right: 1px solid #1a7799;
  margin-bottom: 30px;
  padding-right: 25px;
  padding-left: 25px;
}
#footer-menus .left.col-md-4:nth-child(3) {
  border-right: 0;
}
body + object, body + object + object { display: none; }
.formErrorContent {
	position: absolute;
	left: -155px;
}
#mid-sec-info {
	padding-bottom: 30px;
}
#mid-sec-info h1 {
  color: #FFFFFF;
  font-size: 2.6em;
  font-weight: 100;
  margin-bottom: 20px;
}
#mid-sec-info p {
  color: #FFFFFF;
  font-size: 1em;
  font-weight: 300;
  text-align: justify;
}
#mid-sec-info .wysija-paragraph {
  display: inline-block;
  width: 64.5%;
  margin-right: 10px;
}
#mid-sec-info .wysija-input {
  color: #888888;
  background: #FFFFFF;
  height: 50px;
  font-size: 0.8em;
  width: 100%;
  padding-left: 10px;
}
.formError .formErrorContent,
.wpcf7-not-valid-tip
{
    background: #e64457;
    border: 0;
    padding: 10px;
    border-radius: 5px;
    top: -5px;
}
.formError
{
    opacity: 1 !important;
}

#mid-sec-info .formErrorContent
{
    min-height: 52px;
}
.wpcf7-validation-errors
{
    display: none !important;
}
.use-floating-validation-tip span.wpcf7-not-valid-tip {
  background: #e64457 !important;
  left: calc(100% - -5px);
  color: #FFF;
  font-family: tahoma;
  font-size: 11px;
  padding: 4px 10px;
  position: relative;
  width: 150px;
  z-index: 5001;
}
span.wpcf7-form-control-wrap {
  position: relative;
}
span.wpcf7-not-valid-tip {
  color: #f00;
  font-size: 1em;
  display: block;
}
.use-floating-validation-tip span.wpcf7-not-valid-tip {
  position: absolute;
  top: -40%;
  z-index: 100;
  border: 1px solid #ff0000;
  background: #fff;
  padding: .2em .8em;
}
.arrow-error {
  position: absolute;
  top: 9px;
  left: -5px;
  width: 5px;
  height: 8px;
  background: url('img/msg_arrow.png') no-repeat;
}
#parallax-hero .widget_wysija .arrow-error {
	left: -160px;
}
.pagination
{
    padding-bottom:60px;
}

#fth-section article.one-element:last-child
{

}

.pagination
{
    text-align:center;
    margin:auto;
    display:block;
}

a.page-numbers
{
    color: #676767;
    line-height:29px;
    margin: 0 5px;
    display: inline-block;
    height:29px;
}

.pagination a:hover
{
    text-decoration: none;
}

.pagination a:not(.page-numbers)
{
    color: #fff;
    background: #7fcee8;
    display: inline-block;
    height: 29px;
    line-height: 29px;
    padding: 0 13px;
    border-radius: 3px;
}

.pagination a:not(.page-numbers):last-child
{
    position:relative;
    left: 40px;
}

.pagination a:not(.page-numbers):first-child
{
    position:relative;
    left: -40px;
}

span.page-numbers
{
    display: inline-block;
    color: #fff;
    width: 29px;
    line-height:29px;
    height: 29px;
    background: #969696;
    border-radius: 3px;
    margin: 0 5px;
}

/*--------------------------------------------------------------
## 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;
}
.entry-header {
  background: url('img/layer1.jpg') center;
  background-size: cover;
  min-height: 200px;
  position: relative;
  overflow: hidden;
}
.different, .entry-content .text .about-us-bottom h2 {
  font-size: 24px;
  color: #149fd4;
  margin-bottom: 15px;
  font-weight: 300;
}
.entry-content {
  position: relative;
  padding-top: 120px;
  min-height: 500px;
}
.entry-content .text {
  padding: 50px 15px 60px 15px;
  color: #676767;
  font-weight: 300 !important;
  font-size: 1em;
}
.entry-header h1 {
  color: #FFFFFF;
  font-size: 2.0em;
  font-weight: 100;
  padding: 50px 30px 60px 0px;
}
#waves-3 {
    position: absolute;
    top: -50px;
    display: block;
    width: 100%;
    z-index: 60;
    height: 130px;
    background: url('img/waves-tile.png') repeat-x center top;
}
.entry-content .text h2, h2.title-header {
  font-size: 2em;
  color: #0f7095;
  font-weight: 100;
  margin-bottom: 10px;
}
.entry-content .jcarousel ul:not(.nav-tabs)
{
    margin-left: 0px !important;
}

.jcarousel ul
{
    list-style: none !important;
    margin-left: 0px !important;
}

.jcarousel ul li
{
    text-indent: 0 !important;
}

.jcarousel ul li:before
{
    content: initial!important;
}

.jcarousel-wrapper {
    position: relative;
    height: 356px;
}

.jcarousel-wrapper .photo-credits {
    position: absolute;
    right: 15px;
    bottom: 0;
    font-size: 13px;
    color: #fff;
    text-shadow: 0 0 1px rgba(0, 0, 0, 0.85);
    opacity: .66;
}

.jcarousel-wrapper .photo-credits a {
    color: #fff;
}

/** Carousel **/

.jcarousel {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.jcarousel ul {
    width: 20000em;
    position: relative;
    list-style: none;
    margin: 0;
    padding: 0;
}

.jcarousel li {
    float: left;
}

/** Carousel Controls **/

a.button:visited{
    color: #fff;
}

.jcarousel-control-prev,
.jcarousel-control-next,#next-button,#prev-button {
    position: absolute;
    top: 135px;
    width: 70px;
    height: 80px;
}

.jcarousel-control-prev,#prev-button{
    background: url('img/arrow-left-slider.png') no-repeat;
}

.jcarousel-control-next,#next-button{
    background: url('img/arrow-right-slider.png') no-repeat;
}

.jcarousel-control-prev,.jcarousel-control-next{
    zoom: 0.8;
    top: 160px;
}

.jcarousel-control-prev:hover,#prev-button:hover{
    background: url('img/arrow-left-slider.png') 0 -81px no-repeat;
    cursor: pointer;
}

.jcarousel-control-next:hover,#next-button:hover{
    background: url('img/arrow-right-slider.png') 0 -81px no-repeat;
    cursor: pointer;
}

.jcarousel-control-prev,#prev-button {
    left: 0px;
}

.jcarousel-control-next,#next-button {
    right: 0px;
}



.jcarousel-control-prev.inactive,
.jcarousel-control-next.inactive {
    /*opacity: .5;
    cursor: default;*/
}

/** Carousel Pagination **/

.carousel-indicators,.jcarousel-pagination {
    bottom: 30px;
}
.carousel-indicators li,.jcarousel-pagination a {
    border-radius: 2px;
    background: #afc7d8;
    border-color: #afc7d8;

}
.carousel-indicators li.active,.jcarousel-pagination a.active {
    border-radius: 2px;
    background: #a2bbcd;
    border-color: #a2bbcd;

}

.jcarousel-pagination {
	position: relative;
    text-align:center;
}

.jcarousel-pagination a {
    font-size: 0px !important;
    display:inline-block;
    width:11px;
    height:11px;
    margin: 4px 2px;
}

.jcarousel-pagination a.active {
    margin-top:0px;
    position:relative;
}
.blue_cover_left,.blue_cover_right
{    

    background: rgba(39,120,141,0.8);
    position: absolute;
    top:0;
}

.gallery-item
{
    position:relative;

}

.blue_cover_left
{
    left:0;
}

.blue_cover_right
{
    right:0;
}
.fac-1 .container, 
.fac-2 .container, 
.fac-3 .container
{
    padding-left: 133px;
    min-height:100px;

}

.fac-1,
.fac-2,
.fac-3
{
    padding: 50px 0;
}

.fac-1
{
    background: #e8f0f6;
}

.fac-2
{
    background: #eef4f8;
}

.fac-3
{
    background: #f5f8fb;
}

.fac-1 p,
.fac-2 p,
.fac-3 p
{
    margin-bottom:0;
    line-height:21px;
    font-weight: 300;
}
.fac-1 h3,
.fac-2 h3,
.fac-3 h3
{
	margin-top: 0;
}

.fac-1 .container {
    background: url('img/fac-1.jpg') no-repeat 15px 0px;
}
.fac-2 .container {
    background: url('img/fac-2.jpg') no-repeat 15px 0px;
}

.fac-3 .container {
    background: url('img/fac-3.jpg') no-repeat 15px 0px;
}

.about-us-bottom
{
    text-align:center;
    padding-top: 100px !important;
}

.aus1
{
    background: url('img/about-us-bottom-1.jpg') no-repeat center top;
}
.aus2
{
    background: url('img/about-us-bottom-2.jpg') no-repeat center top;
}

.fac-1 h3, .fac-2 h3, .fac-3 h3
{
    font-size: 24px;
    color: #0f7095;
    margin-bottom:12px;
    font-weight:300;
}

.different,.entry-content .text .about-us-bottom h2
{
    font-size: 24px;
    color: #149fd4;
    margin-bottom:15px;
    font-weight:300;
}

.aus3
{
    background: url('img/about-us-bottom-3.jpg') no-repeat center top;
}

.entry-content .container-fluid {
  max-width: 1170px;
}

.page-template-template-floatation-php .entry-content, .page-template-template-floatation-php #info-1 {
  background: #e8f0f6;
  border-top: 0;
}
.page-template-template-floatation-php #content {
  background: #f5f8fb;
}
.page-template-template-floatation-php #info-2 {
  background: #eef4f8;
}
.page-template-template-floatation-php #info-3 {
  background: #f5f8fb;
}
.page-template-template-floatation-php .entry-content h3 {
  color: #0f7095;
  font-size: 1.75em;
  font-weight: 300;
  margin-bottom: 30px;
}
.page-template-template-floatation-php .entry-content h2 {
  color: #0f7095;
  margin-bottom: 30px;
}
.no-padding-cells div:first-child {
  padding-left: 0;
}
.icon-pain {
  background: url('img/bolt.png') no-repeat center center;
  height: 83px;
  margin: auto;
  width: 83px;
  margin-bottom: 20px;
}
.icon-healing {
  background: url('img/cross.png') no-repeat center center;
  height: 83px;
  margin: auto;
  width: 83px;
  margin-bottom: 20px;
}
.icon-brain {
  background: url('img/brain.png') no-repeat center center;
  height: 83px;
  margin: auto;
  width: 83px;
  margin-bottom: 20px;
}
.icon-cortisol {
  background: url('img/cortisol.png') no-repeat center center;
  height: 83px;
  margin: auto;
  width: 83px;
  margin-bottom: 20px;
}
.icon-dopamine {
  background: url('img/smily.png') no-repeat center center;
  height: 83px;
  margin: auto;
  width: 83px;
  margin-bottom: 20px;
}
.icon-magnesium {
  background: url('img/mg.png') no-repeat center center;
  height: 83px;
  margin: auto;
  width: 83px;
  margin-bottom: 20px;
}
.page-template-template-floatation-php .question .row {
  border-top: 1px solid #d6e3ed;
}
.light-background
{
    background: #e4edf4;
    padding-top:50px;
}

.light-background h2
{
    margin-bottom:35px !important;
}


.one-pricing .button
{
    padding: 7px 20px;
    display: inline-block;
}

.blue-background
{
	position: relative;
    background: #009ed2;
    height: 103px;
}

.blue-background p{
	padding-top:0px;
	margin-top: 0px;
	margin-bottom: 5px;
	font-size: 72px;
	letter-spacing: -3px;
	color: #ffffff !important;
    font-weight: 600;
    font-family: 'Open Sans', sans-serif;
    text-align: center;
    line-height: 70px;
}

.blue-background p span{
	color: #9ad5e8;
    font-size: 40px;
    display:inline-block;
    vertical-align: super;
    position:relative;
    line-height: 40px;
	top:2px;
	margin-left: -20px;
}

.blue-background p.session-qty{
	margin-top:0px;
	padding-top:0px;
	margin-bottom:0px;
	font-size:1.2em;
	letter-spacing: normal !important;	
	line-height: 0.8em;
	font-weight: 300;
}

.one-pricing.bigger .blue-background p.session-qty{
	padding-top: 0px !important;
}

.one-pricing p
{
    color: #868686;
    padding:8px 0;
    margin:0;
}

.one-pricing-header
{
    color: #046d92;
    font-size: 18px;
    font-weight:bold;
}

.one-pricing-left,.one-pricing-right
{
    width: 7px;
    height: 110px;
    position: absolute;
    top: 0;
}

.one-pricing-right
{
    right: -7px;
    background: url('img/one-pricing-right.png');
}

.one-pricing-left
{
    left: -7px;
    background: url('img/one-pricing-left.png');
}

.bigger-font
{
    font-size:22px;
}

.bigger-font.prices{
	font-size: 22px;
	padding-top:5px;
}

.smaller-font
{
	font-size:18px;
}

.smaller-font.prices{
	font-size:18px;
	padding-top:5px;
}

.smaller-font.total{
	font-size:18px;
	margin-top:0px;
	padding-top:0px;
}

.one-pricing.bigger .smaller-font.total{
	padding-top:0px !important;
	margin-top:0px !important;
}

.gray-background
{
    background: #96b7c2;
    color: #fff;
    padding: 8px 0;
    border-radius: 0 0 8px 8px;
}

.one-pricing
{
    background: #fff;
    border-radius: 8px;
    text-align:center;
    width: 90%;
    box-shadow: 1px 1px 3px rgba(64,64,64,0.5);
}

.one-pricing.bigger .blue-background
{
    background: #0383af;
    height: 115px;
    line-height:90px;
}

.one-pricing.bigger .blue-background p{
	padding-top: 9px;
}

.one-pricing.bigger p
{
    padding: 10px 0;
}

.one-pricing.bigger .one-pricing-header
{
    padding: 8px 0;
}

.one-pricing.bigger .one-pricing-right
{
    height: 121px;
    background: url('img/one-pricing-big-right.png');
}

.one-pricing.bigger .one-pricing-left
{
    height: 121px;
    background: url('img/one-pricing-big-left.png');
}

.bigger
{
    position:relative;
    top:-16px;
}

.one-pricing
{
    max-width: 330px;
}

.larger-margin
{
    margin: 30px 0;
    margin-top:55px;
}

.margin-bottom-for-waves
{
    margin-bottom:-30px;

}
.light-background .one-pricing p:nth-child(3) {
  margin-bottom: 0;
  padding-bottom: 0;
}
.entry-content .text ul:not(.nav-tabs) {
  margin-left: 13px !important;
  list-style: none !important;
}
.entry-content .text ul:not(.nav-tabs) li {
  text-indent: -.7em;
}
.larger-margin {
  margin: 30px 0;
  margin-top: 55px;
}
.entry-content .text ul:not(.nav-tabs) li:before {
  content: "• ";
  font-size: 1.2em;
  color: #046d92;
}
/*--------------------------------------------------------------
## Asides
--------------------------------------------------------------*/
.blog .format-aside .entry-title,
.archive .format-aside .entry-title {
	display: none;
}

/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/
.comment-content a {
	word-wrap: break-word;
}

.bypostauthor {
	display: block;
}

/*--------------------------------------------------------------
# Infinite scroll
--------------------------------------------------------------*/
/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .posts-navigation, /* Older / Newer Posts Navigation (always hidden) */
.infinite-scroll.neverending .site-footer { /* Theme Footer (when set to scrolling) */
	display: none;
}

/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before. */
.infinity-end.neverending .site-footer {
	display: block;
}

/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-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: 0 auto;
}

.wp-caption-text {
	text-align: center;
}

.wp-caption .wp-caption-text {
	margin: 0.8075em 0;
}

/*--------------------------------------------------------------
## 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;
}

/* Slider
--------------------------------------------------------------*/
#wrapper {
	width: 100%;
	height: 356px;
	overflow: hidden;
	position: relative;
	left: 0;
	top: 50%;
}
#carousel div {
	width: 534px;
	height: 356px;
	float: left;
	display: block;
}
#carousel div.selected {
	box-shadow: 0 0 10px rgba(0,0,0,0.5);
}
#carousel div img {
	display: block;
	position: relative;
	top: 0;
	left: 0;
	z-index: 10;
}
#carousel div span {
	background-color: #fff;
	color: #999;
	font-size: 24px;
	font-weight: bold;
	line-height: 50px;
	text-align: center;
	display: block;
	width: 100%;
	height: 50px;
	overflow: hidden;
	position: absolute;
	bottom: 0;
	z-index: 8;
}
 
.prev, .next
{
	display: block;
	height: 475px;
	top: 0;
	position: absolute;
	text-indent: -9999px;
	z-index: 50;
}
.prev div, .next div {
	position: relative;
}
.prev
{
	left: 0;
	background: rgba(58, 134, 165, 0.7);
}
.next
{
	right: 0;
	background: rgba(58, 134, 165, 0.7);
}
#next, #prev {
	display: block;
	height: 81px;
	width: 71px;
	position: absolute;
	cursor: pointer;
	top: 135px;
}
#next {
	background: url('img/arrow-right-slider.png') center top;
	right: 0;
}
#prev {
	background: url('img/arrow-left-slider.png') center top;
	left: 0;
}
#next:hover {
	background: url('img/arrow-right-slider.png') center bottom;
}
#prev:hover {
	background: url('img/arrow-left-slider.png') center bottom;
}

#page {
	position: relative;
}

#ha-header.menu-open {
	padding-bottom: 0;
}
.error-404 {
	padding: 100px 15px 150px 15px;
}
.error-404 h1 {
	color: #0f7095;
}
.all-msgs > div:not(.updated), .widget_wysija_cont .allmsgs li {
	font-family: lato !important; 
    font-weight:300 !important; 
    color:#FFFFFF !important; 
    font-size:1.1em !important;
    list-style-type: none;
    padding: 14px 14px 13px 52px;
    line-height: 1.1em !important; 
}
.widget_wysija_cont .updated, .widget_wysija_cont .login .message {
    background-color: rgba(10, 55, 83, 0.6);
    background-image: url('img/subscribe-icon.png');
    background-repeat: no-repeat;
    background-position: 11px 9px;
}

.all-msgs > div:not(.updated) {
	background-color: rgba(10, 55, 83, 0.6) !important;
    background-image: url('img/loading.gif') !important;
    background-repeat: no-repeat !important;
    background-position: 16px 13px !important;
	margin:30px 0px 15px 0px !important;
    padding-left: 0!important;
    position:relative!important;
    top:-10px!important;
    -webkit-border-radius: 8px 8px 8px 8px !important;
	border-radius: 8px 8px 8px 8px !important;
    margin: 4px 0 !important;
    height: 50px !important;
    font-size:1.2em !important;
	font-weight:300 !important;
	width:90% !important;
}

.widget_wysija_cont div {
	color: #fff !important;
	font-weight: 300 !important;
}
#subscribe-footer .widget_wysija_cont div {
	color: #707070 !important;
	font-weight: 300 !important;
}
#subscribe-footer .widget_wysija input {
	color: #fff !important;
}
.widget_wysija_cont.updated {
    margin-bottom: 20px;
}
.widget_wysija_cont .allmsgs .updated, .all-msgs > div:not(.updated)  {
    border: 0 !important;
    border-radius: 10px !important;
    width: 62%;
}
.widget_wysija_cont .allmsgs ul {
    padding: 0;
}
.widget_wysija_cont .allmsgs li {
	font-family: lato !important; 
    font-weight:300 !important; 
    color:#FFFFFF !important; 
    font-size:1.1em !important;
    list-style-type: none;
    padding: 14px 14px 13px 52px;
    line-height: 1.1em !important; 
}
.allmsgs {
	margin-bottom: 20px !important;
}
#subscribe-footer > .widget_wysija_cont .updated, .widget_wysija_cont .error, .widget_wysija_cont .xdetailed-errors {
    font-size: 0.8em !important;
    line-height: 0.95em !important;
    height:100% !important;
}
#subscribe-footer > .widget_wysija_cont .allmsgs .updated ul{
	margin-left:0px !important;
}
#subscribe-footer > .widget_wysija_cont .allmsgs .loading-msg ul{
	margin-left:30px !important;
}
#subscribe-footer > .widget_wysija_cont .allmsgs .updated li {
	padding:9px 0px 13px 40px !important;
	color:#707070 !important;
}

#subscribe-footer > .widget_wysija_cont .allmsgs .loading-msg li{
	padding:13px 0px 13px 0px !important;
	color:#707070 !important;
}
#subscribe-footer > .widget_wysija_cont .updated, .widget_wysija_cont .login .message {
	background-color:#FFFFFF !important;
	background-position: 0px 9px !important;
}
.archive .date-date span.year {
    	font-size: 21px;
    }
@media only screen and (max-width: 768px) and (min-width: 450px) {
		.menu-toggle{
			margin:45px 10px 0 10px !important;
		}
	}    

@media only screen and (max-width: 991px) and (min-width: 320px) {
	#ha-header {
		padding: 0px 0px 20px;
	}
	.menu-toggle {
	  display: block;
	  width: 28px;
	  height: 30px;
	  margin: 35px 10px 0 10px;
	  float: right;
	  z-index: 9999;
	}

	.menu-toggle span:after,
	.menu-toggle span:before {
	  content: "";
	  position: absolute;
	  left: 0;
	  top: -9px;
	}
	.menu-toggle span:after{
	  top: 9px;
	}
	.menu-toggle span {
	  position: relative;
	  display: block;
	}

	.menu-toggle span,
	.menu-toggle span:after,
	.menu-toggle span:before {
	  width: 100%;
	  height: 5px;
	  background-color: #176483;
	  transition: all 0.3s;
	  backface-visibility: hidden;
	  border-radius: 2px;
	}

	/* on activation */
	.menu-toggle.on span {
	  background-color: transparent;
	}
	.menu-toggle.on span:before {
	  transform: rotate(45deg) translate(5px, 5px);
	}
	.menu-toggle.on span:after {
	  transform: rotate(-45deg) translate(7px, -8px);
	}
	.menu-toggle.on + #menu {
	  opacity: 1;
	}
	#mobile-navigation {
		display: none;
		z-index: 9999;
		width: 100%;
		margin-top: 25px;
	}
	.mobile-navigation .menu {
		margin-left: 0;
		margin-bottom: 0;
		padding: 0;
	}
	.mobile-navigation li {
		list-style: none;
		margin: 0;
	}
	.mobile-navigation li > a {
		text-transform: uppercase;
	}
	.mobile-navigation li a {
		background: #176483;
		color: #ffffff;
		font-weight: 300;
		width: 100%;
		display: block;
		padding: 10px;
		border-bottom: 1px solid #1882aa;
	}
	.mobile-navigation li.menu-item-has-children > a {
		background: url('img/hassub.png') no-repeat 92% 18px #176483;
	}
	.mobile-navigation li ul {
		margin-left: 0px;
		padding: 0;
	}
	.mobile-navigation ul ul {
		display: none;
	}
	.mobile-navigation li ul li a {
		padding-left: 20px;
		background: #124e67;
		text-transform: capitalize;
	}
	#mobile-navigation {
		padding: 0;
	}
	#parallax-hero {
		padding-top: 100px;
	}
	.menu-anchor {
        width: 40px;
        height: 32px;
        display: inline-block;
        vertical-align: middle;
        position: relative;
        text-indent: -9999px;
        overflow: hidden;
        cursor: pointer;
        z-index: 1;
    }
    .menu-anchor:before {
        content: "";
        display: block;
        margin: 7px auto;
        width: 70%;
        height: 0.25em;
        background: #fff;
        box-shadow: 0 .45em 0 0 #fff, 0 .9em 0 0 #fff;
    }
    .menu-anchor-wrapper {
        display: block;
        margin-left: 35.33333333%;
        margin-top: 38px;
        z-index: 10;
    }
	}

@media only screen and (max-width: 768px) and (min-width: 320px) {
    #mid-sec-info {
    	padding-bottom: 50px;
    }
    #mid-sec-info h1, #mid-video {
    	text-align: center;
    }
    #mid-sec-info .wysija-paragraph {
    	width: 100%;
    	margin-bottom: 15px;
    }
    #mid-sec-info .widget_wysija_cont {
    	text-align: center;
    }
    #mid-sec-info .wysija-submit {
    	width: 60%;
    	margin-bottom: 30px;
    }
    #mid-video #book-it {
    	margin: 15px auto 0;
    }
    #thd-section {
    	text-align: center;
    }
    #thd-section a:hover {
    	text-decoration: none;
    }

    #thd-section .info-box .icon {
    	margin-bottom: 10px;
    }
    #fth-section h1 {
    	text-align: center;
    }
    #fth-section h1 span {
    	display: block;
	  	margin-bottom: 10px;
    }
    #fth-section .button span {
    	position: absolute;
    }
    .alpha {
    	margin-left: auto;
    	padding-left: inherit;
    }
    .omega {
    	margin-right: auto;
    	padding-right: inherit;
    }
    .button-studies, .button-news {
    	float: none;
    	width: 100%;
    	display: inline-block;
    	margin-top: 0;
    	margin-bottom: 40px;
    	right: auto;
    	top: auto;
    }
    #medical {
    	padding-right: 15px;
    	border: 0;
    }
    #medical .post a.button, #latest .post a.button {
    	text-align: center;
    	width: 100%;
    }
    #latest {
    	padding-left: 0;
    }
    .date-date.small {
    	margin: 0 auto;
    	margin-bottom: 30px;
    }
    #testmonials h2 {
    	text-align: center;
    }
    .bx-controls-direction {
    	display: none;
    }
    .bx-wrapper .bx-pager.bx-default-pager a {
    	width: 20px;
    	height: 20px;
    }
    #contact h2 {
    	text-align: center;
    }
    div.wpcf7 {
    	text-align: center;
    }
    #contact .wpcf7-submit {
    	width: 100%;
    	text-align: center;
    	padding-left: 32px;
    }
    #cont-desc {
    	border-left: 0;
    	border-top: 1px solid #81acb8;
    	text-align: center;
    	padding-bottom: 10px; 
    }
    #wids-1 .wid {
    	text-align: center;
    	height: auto;
    	border-right: 0;
    	border-bottom: 1px solid #cdecf6;
    	padding-bottom: 40px;
    }
    #wids-1 .wid:last-child {
    	border-bottom: 0;
    	padding-bottom: 50px;
    }
    #book-it {
    	position: relative;
    	padding-left: 50px;
    }
    #book-it span {
    	position: absolute;
    	left: 0;
    }
    #book-it-2 {
    	margin-bottom: 0;
    	width: 100%;
    	position: relative;
    	text-align: center;
    	padding-left: 45px;
    }
    #book-it-2 span {
    	position: absolute;
    	left: 0;
    }
    #wids-1 .wysija-submit {
    	width: 100%;
    	margin-top: 15px !important;
    	padding-left: 30px;
    }
    #footer-menus h5 {
    	text-transform: uppercase;
    }
    .site-info {
    	text-align: center;
    	padding-top: 20px;
    }
    .site-info .menu {
    	width: 35%;
    	display: inline-block;
    }
    #footer-menus .left.col-md-4 div {
    	border-right: 0;
    	border-bottom: 1px solid #1a7799;
    	padding-bottom: 30px;
    }
    #footer-menus .left.col-md-4:last-child div {
    	border-bottom: 0;	
    }
    #footer-itself {
    	height: auto;
    	text-align: center;
    }
    .madeby {
    	text-align: center;
    }
    .site-logo.small {
	  transform: scale(0.7);
	  margin-top: 10px;
	}
	.madeby img {
	  display: block;
	  margin: 0 auto 5px;
	}
	#footer-menus .left.col-md-4:nth-child(3) {
	  border-right: 0;
	  margin-bottom: 0;
	}
	body:not(.home) #content {
	  margin-top: 100px;
	}
	.entry-header {
		min-height: 0;
	}
	.entry-header h1 {
		padding: 10px 30px 30px 0px;
	}
	.entry-content {
		padding-top: 55px;
	}
	.one_half {
		text-align: justify;
		width: 100% !important;
	}
	.text .last {
		padding-top: 0;
	}
	.bx-wrapper .bx-viewport {
		left: 0;
	}
	.fac-1 .container, .fac-2 .container, .fac-3 .container {
		background-position: center 0px !important; 
		padding-left: 15px;
		text-align: center;
		padding-top: 95px;
	}
	.fac-1, .fac-2, .fac-3 {
		padding: 50px 0;
	}
	.page-template-template-floatation-php .entry-content {
		padding-top: 75px;
	}
	.page-template-template-floatation-php #info-1 {
		padding-top: 0;
	}
	.page-template-template-floatation-php .entry-content h2 {
		text-align: center;
	}
	.page-template-template-floatation-php .entry-content h2 img {
		display: block;
		margin: 0 auto 10px;
	}
	.page-template-template-floatation-php #info-2.info-box {
		padding: 0;
	}
	.no-padding-cells div:first-child {
		padding-left: 15px;
		padding-bottom: 10px;
	}
	.page-template-template-floatation-php .entry-content .text {
		padding: 20px 15px 0px 15px;
	}
	.page-template-template-floatation-php .question {
		margin-top: 40px;
		margin-bottom: 40px;
	}
	.page-template-pricing .entry-content {
		padding-top: 100px;
	}
	.page-template-pricing .light-background {
		padding-top: 0;
	}
	.page-template-pricing .entry-content .text h2 {
		text-align: center;
	}
	.one-pricing {
		width: 100%;
		margin: 0 auto 40px;
	}
	.one-pricing.bigger {
		top: auto;
	}
	.page-template-pricing .text {
		padding: 30px 15px 30px 15px;
	}
	p.larger-margin {
		display: none;
	}
	.light-background.padding-bottom .one-pricing {
		margin-bottom: 0;
	}
	.archive #fth-section {
		padding-right: 15px;
		padding-left: 15px;
		text-align: center;
	}
	.archive .date-date {
		margin-bottom: 10px;
	}
	.archive #fth-section .button {
		width: 100%;
	}
	    .arrows-text {
    	width: 21px;
    }
    .col-xs-2.arroww {
	  margin-top: 178px;
	}
	#fancy-heading h1 {
		font-size: 1.625em;
	}
	#fancy-heading .col-xs-8 {
		padding: 0;
	}
	.row.icons .col-md-4 {
		margin-bottom: 60px;
	}
}

@media only screen and (max-width: 768px) and (min-width: 320px) and (orientation: landscape) {
	#ha-header {
		padding: 0;
	}
	.site-logo {
		width: 40%
	}
	.site-branding {
		margin-top: 7px;
	}
	#parallax-hero {
		padding-top: 50px;
	}
	.mobile-navigation .menu {
		margin-top: 60px;
	}
	body:not(.home) #content {
		margin-top: 80px;
	}
}

@media only screen and (max-width: 768px) and (min-width: 320px) and (orientation: portrait) {
	#parallax-hero {
		padding-top: 140px;
	}

}

@media only screen and (min-device-width : 603px) and (max-device-width : 966px) {
	#ha-header {
		padding: 0px 0px 20px;
	}
	.menu-toggle {
	  display: block;
	  width: 28px;
	  height: 30px;
	  margin: 30px 10px 0 10px;
	  float: right;
	  z-index: 9999;
	}

	.menu-toggle span:after,
	.menu-toggle span:before {
	  content: "";
	  position: absolute;
	  left: 0;
	  top: -9px;
	}
	.menu-toggle span:after{
	  top: 9px;
	}
	.menu-toggle span {
	  position: relative;
	  display: block;
	}

	.menu-toggle span,
	.menu-toggle span:after,
	.menu-toggle span:before {
	  width: 100%;
	  height: 5px;
	  background-color: #176483;
	  transition: all 0.3s;
	  backface-visibility: hidden;
	  border-radius: 2px;
	}

	/* on activation */
	.menu-toggle.on span {
	  background-color: transparent;
	}
	.menu-toggle.on span:before {
	  transform: rotate(45deg) translate(5px, 5px);
	}
	.menu-toggle.on span:after {
	  transform: rotate(-45deg) translate(7px, -8px);
	}
	.menu-toggle.on + #menu {
	  opacity: 1;
	}
	#mobile-navigation {
		display: none;
		z-index: 9999;
		width: 100%;
		margin-top: 25px;
	}
	.mobile-navigation .menu {
		margin-left: 0;
		margin-bottom: 0;
		padding: 0;
	}
	.mobile-navigation li {
		list-style: none;
		margin: 0;
	}
	.mobile-navigation li > a {
		text-transform: uppercase;
	}
	.mobile-navigation li a {
		background: #176483;
		color: #ffffff;
		font-weight: 300;
		width: 100%;
		display: block;
		padding: 10px;
		border-bottom: 1px solid #1882aa;
	}
	.mobile-navigation li.menu-item-has-children > a {
		background: url('img/hassub.png') no-repeat 92% 18px #176483;
	}
	.mobile-navigation li ul {
		margin-left: 0px;
		padding: 0;
	}
	.mobile-navigation ul ul {
		display: none;
	}
	.mobile-navigation li ul li a {
		padding-left: 20px;
		background: #124e67;
		text-transform: capitalize;
	}
	#mobile-navigation {
		padding: 0;
	}
	#parallax-hero {
		padding-top: 100px;
	}
	.menu-anchor {
        width: 40px;
        height: 32px;
        display: inline-block;
        vertical-align: middle;
        position: relative;
        text-indent: -9999px;
        overflow: hidden;
        cursor: pointer;
        z-index: 1;
    }
    .menu-anchor:before {
        content: "";
        display: block;
        margin: 7px auto;
        width: 70%;
        height: 0.25em;
        background: #fff;
        box-shadow: 0 .45em 0 0 #fff, 0 .9em 0 0 #fff;
    }
    .menu-anchor-wrapper {
        display: block;
        margin-left: 35.33333333%;
        margin-top: 38px;
        z-index: 10;
    }
}

/* IPHONE 6 */
@media only screen 
    and (min-device-width : 375px) 
    and (max-device-width : 667px) 
    and (orientation : landscape) 
    and (-webkit-min-device-pixel-ratio : 2)
{ 
#ha-header {
  padding: 10px 0;
}
.site-branding {
  margin-top: 5px;
}
#parallax-hero {
  padding-top: 70px;
}
#what-is-floating {
	margin: 40px 0 50px;  
}
}

@media only screen 
    and (min-device-width : 375px) 
    and (max-device-width : 667px) 
    and (orientation : portrait) 
    and (-webkit-min-device-pixel-ratio : 2)
{ 
.one-pricing {
	margin-left: 
}
#what-is-floating {
	margin: 40px 0 50px;  
}
}

/*IPhone 6*/
@media only screen 
    and (min-device-width : 414px) 
    and (max-device-width : 736px) 
    and (orientation : landscape) 
    and (-webkit-min-device-pixel-ratio : 3) 
{ 
#ha-header {
	padding: 20px 0;
}
body:not(.home) #content {
	margin-top: 105px;
}
}

@media only screen 
    and (min-device-width : 414px) 
    and (max-device-width : 736px) 
    and (orientation : portrait) 
    and (-webkit-min-device-pixel-ratio : 3) 
{ 
body:not(.home) #content {
  margin-top: 120px;
}
}

/* Extra Small Devices, Phones */ 
@media only screen and (min-width : 480px) {

}

/* Small Devices, Tablets */
@media only screen and (min-width : 768px) {
	#book-it {
		margin: 0 auto 25px;
	}
	#parallax-hero {
		padding-top: 150px;
	}
	.menu-toggle {
		margin: 45px 10px 0 10px;
	}
	.site-info .menu {
		width: 18%;
	}
	body:not(.home) #content {
	  margin-top: 145px;
	}
}

/* Small Devices, Tablets landscape*/
@media only screen and (min-width : 768px) and (orientation: landscape){
	.main-navigation li {
	  margin: 0 3px;
	}
	#girl {
		left: -40px;
	}
	.bx-wrapper .bx-next {
		right: -35px;
	}
	.bx-wrapper .bx-prev {
		left: -35px;
	}
}

/* Medium Devices, Desktops */
@media only screen and (min-width : 992px) {
	#girl {
		left: 35px;
	}
	#book-it {
		margin: auto 0 25px;
	}
	.bx-wrapper .bx-next {
		right: -50px;
	}
	.bx-wrapper .bx-prev {
		left: -60px;
	}
	.site-info .menu {
		width: 100%;
	}
}
@media only screen 
and (min-device-width : 768px) 
and (max-device-width : 1024px) 
and (orientation : landscape) {
#girl {
		left: -40px;
	}
}
/* Large Devices, Wide Screens */
@media only screen and (min-width : 1200px) {
	#parallax-hero {
		padding-top: 165px;
	}
	body:not(.home) #content {
	  margin-top: 109px;
	}
	#bg1, #bg2, #bg3, #bg4, #bg5 {
		background-size: 100%;
	}
}
