/*
Theme Name: Cbweb theme
Theme URI: http://charcoalcreative.com.au/
Author: charcoalcreative dev
Author URI: http://charcoalcreative.com.au/
Description: This is a custom theme for Creating Beautiful. 
Version: 1.6.1
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: cbweb-theme
Tags:

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.

Cbweb theme is based on Underscores http://underscores.me/, (C) 2012-2016 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal http://necolas.github.io/normalize.css/
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Normalize
# Typography
# Elements
# Forms
# Navigation
	## Links
	## Menus
# Accessibility
# Alignments
# Clearings
# Widgets
# Content
	## Posts and pages
	## Comments
# Infinite scroll
# Media
	## Captions
	## Galleries
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/
html {
	font-family: sans-serif;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust:     100%;
}

body {
	margin: 0;
}

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

audio,
canvas,
progress,
video {
	display: inline-block;
	vertical-align: baseline;
}

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

[hidden],
template {
	display: none;
}

a {
	background-color: transparent;
}

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

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

b,
strong {
	font-weight: bold;
}

dfn {
	font-style: italic;
}

h1 {
	font-size: 2em;
	margin: 0.67em 0;
}

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

small {
	font-size: 80%;
}

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

sup {
	top: -0.5em;
}

sub {
	bottom: -0.25em;
}

img {
	border: 0;
}

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

figure {
	margin: 1em 40px;
}

hr {
	box-sizing: content-box;
	height: 0;
}

pre {
	overflow: auto;
}

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

button,
input,
optgroup,
select,
textarea {
	color: inherit;
	font: inherit;
	margin: 0;
}

button {
	overflow: visible;
}

button,
select {
	text-transform: none;
}

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

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

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

input {
	line-height: normal;
}

input[type="checkbox"],
input[type="radio"] {
	box-sizing: border-box;
	padding: 0;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
	height: auto;
}

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

fieldset {
	border: 1px solid #c0c0c0;
	margin: 0 2px;
	padding: 0.35em 0.625em 0.75em;
}

legend {
	border: 0;
	padding: 0;
}

textarea {
	overflow: auto;
}

optgroup {
	font-weight: bold;
}

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

td,
th {
	padding: 0;
}

/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
body,
button,
input,
select,
optgroup,
textarea {
	color: #404040;
	font-family: sans-serif;
	font-size: 16px;
	font-size: 1rem;
	line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	clear: both;
}

p {
	margin-bottom: 1.5em;
}

dfn,
cite,
em,
i {
	font-style: italic;
}

blockquote {
	margin: 0 1.5em;
}

address {
	margin: 0 0 1.5em;
}

pre {
	background: #eee;
	font-family: "Courier 10 Pitch", Courier, monospace;
	font-size: 15px;
	font-size: 0.9375rem;
	line-height: 1.6;
	margin-bottom: 1.6em;
	max-width: 100%;
	overflow: auto;
	padding: 1.6em;
}

code,
kbd,
tt,
var {
	font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
	font-size: 15px;
	font-size: 0.9375rem;
}

abbr,
acronym {
	border-bottom: 1px dotted #666;
	cursor: help;
}

mark,
ins {
	background: #fff9c0;
	text-decoration: none;
}

big {
	font-size: 125%;
}
/*--------------------------------------------------------------
# Place Holder
--------------------------------------------------------------*/
::-webkit-input-placeholder { 
  color: #fff;
}
::-moz-placeholder {
  color: #fff;
}
:-ms-input-placeholder { 
  color: #fff;
}
:-moz-placeholder { 
  color: #fff;
}
/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/
html {
	box-sizing: border-box;
}

*,
*:before,
*:after { /* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
	box-sizing: inherit;
}

body {
	background: #fff; /* Fallback for when there is no custom background color defined. */
}

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

blockquote,
q {
	quotes: "" "";
}

hr {
	background-color: #ccc;
	border: 0;
	height: 1px;
	margin-bottom: 1.5em;
}

ul,
ol {
	margin: 0 0 1.5em 3em;
}

ul {
	list-style: disc;
}

ol {
	list-style: decimal;
}

li > ul,
li > ol {
	margin-bottom: 0;
	margin-left: 1.5em;
}

dt {
	font-weight: bold;
}

dd {
	margin: 0 1.5em 1.5em;
}

img {
	height: auto; /* Make sure images are scaled correctly. */
	max-width: 100%; /* Adhere to container width. */
}

figure {
	margin: 1em 0; /* Extra wide images within figure tags don't overflow the content area. */
}

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

/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	border: 1px solid;
	border-color: #ccc #ccc #bbb;
	border-radius: 3px;
	background: #e6e6e6;
	color: rgba(0, 0, 0, .8);
	font-size: 12px;
	font-size: 0.75rem;
	line-height: 1;
	padding: .6em 1em .4em;
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
	border-color: #ccc #bbb #aaa;
}

button:focus,
input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus,
button:active,
input[type="button"]:active,
input[type="reset"]:active,
input[type="submit"]:active {
	
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
	color: #fff;
	border: none;
	border-radius: 0px;
	padding: 3px;
}

select {
	border: 1px solid #ccc;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
	color: #111;
}

textarea {
	width: 100%;
}
select::-ms-expand {	display: none; }
select{
    -webkit-appearance: none;
    appearance: none;
}

/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/
a {
	color: inherit;
}

a:visited {
	color: inherit;
}

a:hover,
a:focus,
a:active {
	color: inherit;
}

a:focus {
	outline: none;
}

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

/*--------------------------------------------------------------
## Menus
--------------------------------------------------------------*/
.main-navigation {
	clear: both;
	display: block;
	float: left;
	width: 100%;
}

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

.main-navigation li {
	float: left;
	position: relative;
}

.main-navigation a {
	display: block;
	text-decoration: none;
}

.main-navigation ul ul {
	box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
	float: left;
	position: absolute;
	top: 100%;
	left: -999em;
	z-index: 99999;
}

.main-navigation ul ul ul {
	left: -999em;
	top: 0;
}

.main-navigation ul ul a {
	width: 200px;
}

.main-navigation ul ul li {

}

.main-navigation li:hover > a,
.main-navigation li.focus > a {
}

.main-navigation ul ul :hover > a,
.main-navigation ul ul .focus > a {
}

.main-navigation ul ul a:hover,
.main-navigation ul ul a.focus {
}

.main-navigation ul li:hover > ul,
.main-navigation ul li.focus > ul {
	left: auto;
}

.main-navigation ul ul li:hover > ul,
.main-navigation ul ul li.focus > ul {
	left: 100%;
}

.main-navigation .current_page_item > a,
.main-navigation .current-menu-item > a,
.main-navigation .current_page_ancestor > a,
.main-navigation .current-menu-ancestor > a {
}

/* 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;
	word-wrap: normal !important; /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	color: #21759b;
	display: block;
	font-size: 14px;
	font-size: 0.875rem;
	font-weight: bold;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000; /* Above WP toolbar. */
}

/* Do not show the outline on the skip link target. */
#content[tabindex="-1"]:focus {
	outline: 0;
}

/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/
.alignleft {
	display: inline;
	float: left;
	margin-right: 1.5em;
}

.alignright {
	display: inline;
	float: right;
	margin-left: 1.5em;
}

.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.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;
	table-layout: fixed;
}

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

/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Posts and pages
--------------------------------------------------------------*/
.sticky {
	display: block;
}

.hentry {
	margin: 0 0 1.5em;
}

.updated:not(.published) {
	display: none;
}

.page-content,
.entry-content,
.entry-summary {
	margin: 1.5em 0 0;
}

.page-links {
	clear: both;
	margin: 0 0 1.5em;
}

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

/* Make sure logo link wraps around logo image. */
.custom-logo-link{
	display: inline-block;
}

/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/
.wp-caption {
	margin-bottom: 1.5em;
	max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

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

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

/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/
.gallery {
	margin-bottom: 1.5em;
}

.gallery-item {
	display: inline-block;
	text-align: center;
	vertical-align: top;
	width: 100%;
}

.gallery-columns-2 .gallery-item {
	max-width: 50%;
}

.gallery-columns-3 .gallery-item {
	max-width: 33.33333%;
}

.gallery-columns-4 .gallery-item {
	max-width: 25%;
}

.gallery-columns-5 .gallery-item {
	max-width: 20%;
}

.gallery-columns-6 .gallery-item {
	max-width: 16.66667%;
}

.gallery-columns-7 .gallery-item {
	max-width: 14.28571%;
}

.gallery-columns-8 .gallery-item {
	max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
	max-width: 11.11111%;
}

.gallery-caption {
	display: block;
}


/* CSS by  DEV*/

	/* Centered texts in each section
	* --------------------------------------- */
	
	#myVideo{
		position: absolute;
		right: 0;
		bottom: 0;
		top:0;
		right:0;
		width: 100%;
		min-width: 100%;
		height: 100%;
		min-height: 100%;
		background-size: 100% 100%;
  		background-position: center center;
  		background-size: cover;
   		object-fit: cover; 
   		z-index:3;
	}


/* Layer with position absolute in order to have it over the video
	* --------------------------------------- */


	/*solves problem with overflowing video in Mac with Chrome */
	#section0{
		overflow: hidden;
		background: #fff;
		position: relative;
		height: 100vh;
	}

	/* Hiding video controls 
	* See: https://css-tricks.com/custom-controls-in-html5-video-full-screen/
	* --------------------------------------- */
	video::-webkit-media-controls {
	  display:none !important;
	}
	
.section .half-l , .section .half-r , .section  .b-text h2 {
    -webkit-transition-property: width height background-color font-size left top transform -webkit-transform color;
    -webkit-transition-duration: 3s;
    -webkit-transition-timing-function: ease-in-out;
    transition-property: width height background-color font-size left top transform -webkit-transform color;
    transition-duration: 3s;
    transition-timing-function: ease-in-out;
}


/* CSS BY Designer starts here */
* {
	margin:0;
	padding:0;
	outline:none;
	box-sizing: border-box;
}
a{
	outline: none;
}	
video{
	width: 100%;
}
img{
	max-width: 100%;
	height: auto;
}
html {
    height: 100%;
}
body {
	background:#fff;
	color: #000;
	padding: 0;
	margin: 0;
    line-height: normal;
	font-family: 'Raleway', sans-serif;
}
h1, h2, h3, h4, h5, h6, 
.h1, .h2, .h3, .h4, .h5, .h6{
	margin: 0;
}
h1,h2,h3,h4,h5,h6{
	font-weight: normal;
	margin: 0;
	padding: 0;
	line-height: normal;
	/*font-family: 'Raleway', sans-serif;*/
	font-family: 'Playfair Display', serif;
}
p{
	font-family: 'Raleway', sans-serif;
	font-weight: 300;
}
a {
    color: #fff;
    text-decoration: none;
}
.top-video{
	text-align: center;
}
.layer img {
    max-width: 600px;
}
#section0 .layer{
	position: absolute;
	z-index: 4;
	width: 100%;
	top: 50%;
	margin-top: -91px;
}

.overlay {
    background: rgba(0,0,0,0.5);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 4;
    height: 100%;
}
.scrollTo {
    background: url(images/down-arrow.png) no-repeat;
    text-indent: -9999px;
    width: 62px;
    height: 23px;
    position: absolute;
	left: 50%;
	margin-left: -31px;
    z-index: 10;
    bottom: 90px;
	cursor: pointer;
	-webkit-animation: floating-arrow 1.5s infinite ease-in-out 0s;
    -o-animation: floating-arrow 1.5s infinite ease-in-out 0s;
    animation: floating-arrow 1.5s infinite ease-in-out 0s;
}
@-webkit-keyframes floating-arrow {
  from {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  65% {
    -webkit-transform: translateY(11px);
    transform: translateY(11px);
  }
  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@-o-keyframes floating-arrow {
  from {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  65% {
    -webkit-transform: translateY(11px);
    transform: translateY(11px);
  }
  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes floating-arrow {
  from {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  65% {
    -webkit-transform: translateY(11px);
    transform: translateY(11px);
  }
  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.section.full-text{
	width: 100%;
	background: #f59297;
	position: relative;
	height: 100vh;
}
.section.full-text>.container{
	display: table;
	height: 100%;
}
.section.full-text>.container>.row{
	display: table-cell;
	vertical-align: middle;
}
.sleep.one,
.sleep.two,
.sleep.three{
	overflow: hidden;
}
.sleep.one {
    margin-top: 80px;
}
.sleep.two {
    margin: 80px 0;
}
.section {
    float: left;
    width: 100%;
}
.section.four {
    margin: 0 0 80px;
}
.b-text{
	text-align: center;
	width: 55%;
	margin: 0 auto;
}
.b-text h2{
	color: #fff;
	font-size: 30px;
	line-height: 60px;
	letter-spacing: 0.03em;
	font-family: 'Raleway', sans-serif;
	font-weight: 300;
}
.sleep{
    width: 100%;
    padding: 0;
    margin: 0;
}
.sleep .text-left{
	float: left;
	text-align: left;
	padding: 0 0 0 5%;
}
.sleep .text-rht{
	float: right;
	text-align: right;
	padding: 0 5% 0 0;
}
.sleep .text-left,
.sleep .text-rht{
	width: 35%;
	/*text-align: center;*/
	display: table;
	height: 100vh;
	position: relative;
}
.sleep .texty{
    display: table-cell;
    /*text-align: center;*/
    vertical-align: middle;
}
.sleep  h3{
	font-size: 32px;
	font-weight: 700;
	letter-spacing:0.1em;
	font-family: 'Raleway', sans-serif;
}
.sleep  h4{
	font-size: 20px;
	margin: 35px 0 0 0;
	font-family: 'Raleway', sans-serif;
	font-weight: 300;
}
.sleep .img-left,
.sleep .img-rht {
    background-position: center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
	width: 65%;
	height: 100vh;
}
.sleep .img-left{
	float: left;
}
.sleep .img-rht{
	float: right;
}
.sleep.four h3{
	text-align: center;
	color: #f59297;
	margin: 120px 0 80px;
}
.half-l{
	text-align: right;
	padding: 0 50px 0 0;
	position: relative;
}
.half-l:after,
.half-r:after{
	content: '';
	position: absolute;
	height: 100%;
	width: 1px;
	top: 0;
	background: #f59297;
    z-index: 100;
}
.half-l:after{
	right: 0;
}
.half-r:after{
	left: 0;
}
.half-r{
	text-align: left;
	padding: 0 0 0 50px;
	position: relative;
}

.half-l h5,
.half-r h5{
	font-size: 36px;
	font-weight: 700;
	margin: 0 0 35px;
	text-transform: uppercase;
	letter-spacing:0.1em;
}
.half-l p,
.half-r p{
	line-height: 36px;
	font-size: 24px;
	
}
/* Gallery */
.gallery{
	
}
.gallery h3{
	text-align: center;
	margin: 0 0 100px 0;
	text-transform: uppercase;
}

/* Contact Us */
.btm-contact{
	padding: 80px 0;
	background: #f59297;
	color: #fff;
}
.c-form h5{
	font-size: 32px;
	text-transform: uppercase;
	font-weight: 700;
	margin: 0 0 40px;
	letter-spacing: 0.1em;
}
.c-con {
    padding: 375px 0 0 120px;
}
.c-con h4{
	margin: 0 0 20px;
}
.c-con h4 a{
	display: inline-block;
	font-size: 36px;
}
.c-con h4 a+a{
	margin-left: 8px;
}
.c-con h5{
	font-family: 'Raleway', sans-serif;
	font-weight: 300;
	font-size: 16px;
	line-height: 24px;
	letter-spacing: 1px;
}
.copyRight {
    font-size: 11px;
    text-transform: uppercase;
    margin: 60px 0 0 0;
	letter-spacing: 1px;
}
.copyRight h6{
	font-size: 11px;
	text-transform: none;
	margin: 0 0 5px;
	font-family: 'Raleway', sans-serif;
}
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="url"],
.wpcf7-form input[type="password"],
.wpcf7-form input[type="search"],
.wpcf7-form input[type="number"],
.wpcf7-form input[type="tel"],
.wpcf7-form input[type="range"],
.wpcf7-form input[type="date"],
.wpcf7-form input[type="month"],
.wpcf7-form input[type="week"],
.wpcf7-form input[type="time"],
.wpcf7-form input[type="datetime"],
.wpcf7-form input[type="datetime-local"],
.wpcf7-form input[type="color"],
.wpcf7-form textarea{
	border-bottom: #fff solid 1px;
	font-size: 16px;
	font-family: 'Raleway', sans-serif;
	font-weight: 300;
	color: #fff;
	padding: 3px 0;
	height: 40px;
	margin: 0 0 15px;
	background: none;
	width: 100%;
	letter-spacing: 1px;
}
input[type="date"]::-webkit-calendar-picker-indicator,
input[type="date"]::-webkit-inner-spin-button{
    display: none;
	-webkit-appearance: none;
}
.wpcf7-form textarea{
	height: 80px;
	resize: none;
}
.scroll::-webkit-scrollbar {
   display: none;
 }
select::-ms-expand {
    display: none;
}
.wpcf7-form input[type="submit"]{
	border: none;
	background: none;
	font-size: 18px;
	font-family: 'Raleway', sans-serif;
	font-weight: 300;
	padding: 0;
	color: #fff;
	margin: 40px 0 0 0;
}
.wpcf7-form span.wpcf7-not-valid-tip {
    color: #fff;
    font-size: 1.2em;
    font-weight: normal;
    display: inline-block;
    font-family: 'Raleway', sans-serif;
    background: red;
    padding: 3px 5px;
}
.wpcf7-form .wpcf7-response-output {
    margin: 0;
    padding: 10px;
}
.wpcf7-form .wpcf7-validation-errors {
    border: #fff dashed 1px;
    font-size: 1.5em;
    background: red;
}

#sprite_p{ 
	background-image:url(images/sprite-p.png); 
	position: absolute;
	z-index: 9999;
	left: -35px;
	top: 50%;
	margin-top: -53px;
}

#sprite_w{ 
	background-image:url(images/sprite-w.png); 
	position: absolute;
	z-index: 9999;
	right: -79px;
	top: 50%;
	margin-top: -53px;
}

#sprite_c{ 
	background-image:url(images/sprite-c.png); 
	position: absolute;
	z-index: 9999;
	right: -48px;
	top: 50%;
	margin-top: -53px;
}


/* Gallery */
body[class] .bne-gallery-loader > div{
	background-color: #f59297;
}
body[class] .owl-theme .owl-nav {
    margin-top: 0px;
}
body[class] .owl-theme .owl-nav [class*=owl-] {
    font-size: 0px;
    margin: 0;
    padding: 0;
    display: inline-block;
    cursor: pointer;
    border-radius: 0px;
    width: 23px;
    height: 62px;
     margin-top: -31px;
    position: absolute;
    top: 50%;
}
body[class] .owl-carousel .owl-nav .owl-prev{
	background: url("images/gal-arrow-left.png") no-repeat;
	left: 50px;
}
body[class] .owl-carousel .owl-nav .owl-next{
	background: url("images/gal-arrow-rht.png") no-repeat;
	right: 50px;
}
body[class] .owl-theme .owl-nav .disabled{
	opacity: 0.7;
}
.fullscreen-bg {
    line-height: 0;
}
.full-video {
    height: 100%;
    width: 100%;
    object-fit: cover;
    z-index: -100;
    right: 0;
    bottom: 0;
    background-size: cover;
    overflow: hidden;
}
.btm-video{
	position: relative;
}
a.playBtn{
	position: absolute;
    width: 150px;
    height: 150px;
    margin-top: -75px;
    margin-left: -75px;
    left: 50%;
    top: 75%;
    text-indent: -9999px;
    cursor: pointer;
}
.fullscreen-bg:hover a.pause{
	opacity: 1 !important;
}
a.play{
    background: url("images/play-icon.png") no-repeat;
}
a.pause{
	background: url("images/pause-btn.png") no-repeat;
	opacity: 0 !important;
}

/* New Image Grid */
body[class] .bs3-grid-col-wrapper {
	padding: 0 3px;
    width: 33.33333333%;
    float: left;
}
body[class] .bs3-grid-col-wrapper p{
	margin: 6px 0;
}
body[class] .bs3-grid-col-wrapper .texty-desc {
	padding: 40px 30px;
}
body[class] .bs3-grid-col-wrapper .texty-desc p{
	font-family: 'Raleway', sans-serif;
	font-weight: 400;
    font-size: 16px;
	line-height: 28px;
    /*text-align: center;*/
	letter-spacing: 0.05em;
	margin: 0;
}
body[class] .bs3-grid-col-wrapper .texty-desc p+p{
	margin-top: 20px;
}
body[class] .bs3-grid-col-wrapper .texty-desc h2{
	/*text-align: center;*/
	font-size: 32px;
    font-weight: 700;
    letter-spacing: 0.1em;
	text-transform: uppercase;
	margin: 0 0 25px;
}
.sleep.four h3 br{
	display: none;
}
/*=============================================
	RESPONSIVE START
==============================================*/
@media all and (min-width: 1921px){

body[class] .btm-video,
body[class] .btm-video .fp-tableCell{
	height: auto !important;
}
.btm-contact{
	padding: 100px 0;
}
}
@media all and (min-width: 1599px){
#section0 .layer{
	margin-top: -133px;
}
.layer img {
    max-width: 877px;
}
.b-text{
	width: 65%;
}
.b-text h2{
	font-size: 42px;
	line-height: 62px;
}	
.sleep h3 {
    font-size: 34px;
}
.sleep h4 {
    font-size: 24px;
  }
 .half-l h5, .half-r h5{
 	font-size: 42px;

  }
 .half-l p, .half-r p {
    line-height: 42px;
    font-size: 28px;
}

}


@media all and (max-width: 1199px) and (min-width: 0px){
/* For Hide Control in I phone */
*::-webkit-media-controls-panel {
  display: none!important;
  -webkit-appearance: none;
}
*::-webkit-media-controls-start-playback-button {
  display: none!important;
  -webkit-appearance: none;
}
#section0 .layer{
	margin-top: -75px;
}
.layer img {
    max-width: 500px;
}
.scrollTo{
	bottom: 40px;
}
.b-text {
    width: 70%;
}
.b-text h2{
	font-size: 28px;
	line-height: 48px;
}
.sleep .text-left, 
.sleep .text-rht{
	width: 45%;
}
.sleep .img-left, 
.sleep .img-rht {
    width: 55%;
}
.sleep h3 {
    font-size: 32px;
}
.sleep h4 {
    font-size: 20px;
    margin: 20px 0 0;
}
.sleep.four h3{
	margin: 80px 0 60px;
}
.section.four {
    margin: 0 0 60px;
}
.half-l{
	padding: 0 40px 0 0;
}
.half-r{
	padding: 0 0 0 40px;
}
.half-l h5, 
.half-r h5{
	font-size: 34px;
	margin: 0 0 25px;
}
.half-l p, 
.half-r p{
	font-size: 22px;
}
.half-l p br, 
.half-r p br{
	display: none;
}
.c-form h5 {
    font-size: 32px;
    margin: 0 0 25px;
}
.wpcf7-form input[type="text"], .wpcf7-form input[type="email"], 
.wpcf7-form input[type="url"], .wpcf7-form input[type="password"], 
.wpcf7-form input[type="search"], .wpcf7-form input[type="number"], 
.wpcf7-form input[type="tel"], .wpcf7-form input[type="range"], 
.wpcf7-form input[type="date"], .wpcf7-form input[type="month"], 
.wpcf7-form input[type="week"], .wpcf7-form input[type="time"], 
.wpcf7-form input[type="datetime"], .wpcf7-form input[type="datetime-local"], 
.wpcf7-form input[type="color"], .wpcf7-form textarea{
	font-size: 18px;
    height: 36px;
    margin: 0 0 10px;
}
.c-con h5 {
    font-size: 18px;
}
.c-con {
    padding: 275px 0 0 100px;
}
.copyRight {
    margin: 60px 0 0;
}
a.playBtn {
    width: 100px;
    height: 100px;
    margin: -50px 0 0 -50px;
    background-size: 100px;
}
body[class] .bs3-grid-col-wrapper .texty-desc{
    padding: 30px;
}
body[class] .bs3-grid-col-wrapper .texty-desc h2{
	font-size: 30px;
}
body[class] .bs3-grid-col-wrapper .texty-desc p{	
    font-size: 15px;
}
}

@media all and (max-width: 991px) and (min-width: 0px){
p {
    margin-bottom: 1em;
}
#section0 .layer{
	margin-top: -60px;
}
.layer img {
    max-width: 400px;
}
.scrollTo{
	bottom: 35px;
}
.b-text {
    width: 80%;
}
.b-text h2{
	font-size: 24px;
	line-height: 48px;
}
.sleep h3 {
    font-size: 24px;
}
.sleep h4 {
     font-size: 17px;
    margin: 15px 0 0;
}
.half-l{
	padding: 0 30px 0 0;
}
.half-r{
	padding: 0 0 0 30px;
}
.half-l h5, 
.half-r h5{
	font-size: 32px;
	margin: 0 0 20px;
}
.half-l p, 
.half-r p{
	font-size: 20px;
}
.half-l p br, 
.half-r p br{
	display: none;
}
.gallery h3{
	margin: 0 0 70px;
}
.c-form h5 {
    font-size: 28px;
    margin: 0 0 25px;
}
.wpcf7-form input[type="text"], .wpcf7-form input[type="email"], 
.wpcf7-form input[type="url"], .wpcf7-form input[type="password"], 
.wpcf7-form input[type="search"], .wpcf7-form input[type="number"], 
.wpcf7-form input[type="tel"], .wpcf7-form input[type="range"], 
.wpcf7-form input[type="date"], .wpcf7-form input[type="month"], 
.wpcf7-form input[type="week"], .wpcf7-form input[type="time"], 
.wpcf7-form input[type="datetime"], .wpcf7-form input[type="datetime-local"], 
.wpcf7-form input[type="color"], .wpcf7-form textarea{
	font-size: 15px;
    height: 32px;
    margin: 0 0 10px;
}
.wpcf7-form textarea{
	height: 64px;
}
.c-con h5 {
    font-size: 15px;
}
.c-con h4 a {
    font-size: 30px;
}
.c-con {
    padding: 275px 0 0 50px;
}
.copyRight {
    margin: 40px 0 0;
}
a.playBtn {
    width: 50px;
    height: 50px;
    margin: -25px 0 0 -25px;
    background-size: 50px;
}
body[class] .btm-video,
body[class] .btm-video .fp-tableCell{
	height: auto !important;
}
body[class] .bs3-grid-col-wrapper .texty-desc {
    padding: 25px 15px;
}
body[class] .bs3-grid-col-wrapper .texty-desc h2{
	font-size: 26px;
    margin: 0 0 15px;
}
body[class] .bs3-grid-col-wrapper .texty-desc p{
    font-size: 14px;
    line-height: 24px;
}
}
@media all and (max-width: 767px) and (min-width: 0px){
#section0 .layer{
	margin-top: -51px;
}
.layer img {
    max-width: 320px;
}
.sleep .text-left, 
.sleep .text-rht {
    width: 100%;
	height: initial;
	text-align: center;
	padding: 50px 0 80px;
}
.sleep .img-left, 
.sleep .img-rht {
    width: 100%;
}
.sleep.one,
.sleep.two {
    margin: 0;
}
.sleep.four h3{
	margin: 50px 0 30px;
}

.b-text h2 {
    font-size: 20px;
    line-height: 36px;
}
.c-con {
    padding: 20px 0 0 0;
}
.scrollTo {
    background-size: 50px auto;
    bottom: 35px;
}
.sleep h3 {
    font-size: 20px;
}
.half-l,
.half-r {
    padding: 0 20px;
	text-align: center;
}
.half-l:after, 
.half-r:after{
	display: none;
}
#sprite_w{
	right: auto;
    top: 100%;
    left: 50%;
    margin: -53px 0 0 -79px;
}
#sprite_p{
	right: auto;
    top: 100%;
    left: 50%;
	margin: -53px 0 0 -35px
}
#sprite_c{
	right: auto;
    top: 100%;
    left: 50%;
    margin: -53px 0 0 -48px;
}
.scrollTo {
    background-size: 50px auto;
    bottom: 25px;
}
.btm-contact{
	padding: 50px 0;
}
.wpcf7-form input[type="text"], .wpcf7-form input[type="email"], .wpcf7-form input[type="url"], .wpcf7-form input[type="password"], .wpcf7-form input[type="search"], .wpcf7-form input[type="number"], .wpcf7-form input[type="tel"], .wpcf7-form input[type="range"], .wpcf7-form input[type="date"], .wpcf7-form input[type="month"], .wpcf7-form input[type="week"], .wpcf7-form input[type="time"], .wpcf7-form input[type="datetime"], .wpcf7-form input[type="datetime-local"], .wpcf7-form input[type="color"], .wpcf7-form textarea{
	font-size: 15px;
    height: 30px;
    margin: 0 0 5px;
    padding: 0;
}
.wpcf7-form input[type="submit"]{
	font-size: 15px;
}
.c-form h5 {
    font-size: 20px;
}
.c-con h5 {
    font-size: 15px;
}
body[class] .bs3-grid-col-wrapper .texty-desc {
    padding: 20px 10px;
}
body[class] .bs3-grid-col-wrapper .texty-desc h2{
	font-size: 22px;
    margin: 0 0 10px;
}
body[class] .bs3-grid-col-wrapper .texty-desc p{
    font-size: 12px;
	line-height: 18px;
}
}
@media all and (max-width: 599px) and (min-width: 0px){
.sleep.four h3 br{
	display: block;
}
}
/* SMALL PHONES */
@media all and (max-width: 479px) and (min-width: 0px){
.b-text{
	width: 100%;
}
#section0 .layer{
	margin-top: -35px;
}
.layer img {
    max-width: 230px;
}
.b-text h2 {
    font-size: 18px;
    line-height: 34px;
}
.half-l,
.half-r {
    padding: 0;
}
.half-r:after,
.half-l:after{
	display: none;
}
.half-l h5, .half-r h5 {
    font-size: 24px;
    margin: 0 0 10px;
}
.sleep .img-left, 
.sleep .img-rht {
    width: 100%;
}
.sleep.four h3{
	font-size: 18px;
    padding: 0 10px;
    line-height: 24px;
}
.sleep h4 {
    font-size: 18px;
    margin: 10px 0 0;
}
.half-l p, .half-r p {
    font-size: 18px;
    line-height: 28px;
}
.gallery h3 {
    margin: 0 0 30px;
}
.c-con {
    padding: 10px 0 0 0;
}
.copyRight {
    margin: 10px 0 0;
	font-size: 11px;
}
.c-con h4 a {
    font-size: 28px;
}
.c-con h4 {
    margin: 0 0 10px;
}
body[class] .owl-carousel .owl-nav .owl-prev{
	left: 10px;
}
body[class] .owl-carousel .owl-nav .owl-next{
	right: 10px;
}
.copyRight {
    margin: 35px 0 0;
}	

body[class] .bs3-grid-col-wrapper .texty-desc {
    padding: 10px 0px;
}
body[class] .bs3-grid-col-wrapper .texty-desc h2{
	font-size: 18px;
}
body[class] .bs3-grid-col-wrapper .texty-desc p {
    font-size: 11px;
    line-height: 18px;
}
}

.playPauseOverlay{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: none;
}