/**
 * Global stylesheet
 *
 * package: 	Leyland Caravan Services
 * version: 	1.3
 */


/* reset */

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
	margin: 0; 
	padding: 0; 
	border: 0; 
	font-size: 100%; 
	font: inherit; 
	vertical-align: baseline; 
}

img {
	vertical-align: middle;
	width: auto;
}

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

ol, ul { 
	list-style: none;
}

blockquote, q { 
	quotes: none;
}

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

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


/* clear */

.clearfix { 
	display: block; 
}

.clearfix:after { 
	content: "."; 
	display: block; 
	clear: both; 
	visibility: hidden; 
	line-height: 0; 
	height: 0; 
	margin: 0; 
	padding: 0; 
}

.clearflow {
	overflow: hidden;
}


/* structure */

body {
	padding: 0px;
	margin: 0px;
	background: #fff;
	line-height: 2.5rem;
	position: relative;
}

.container {
	width: 90%;
	max-width: 1280px;
	margin: 0 auto;
	padding: 120px 5%;
}

.inner-container {
	padding: 40px;
}

.outer-container {
	padding: 120px 80px;
}

.row [class*='col']:first-child {
	margin: 0;
}

.col {
	width: 47.5%;
	margin-left: 5%;
	float: left;
}

@media screen and (max-width: 1040px) {
	.row [class*='col']:last-child {
		margin-top: 40px;
	}
}

@media screen and (max-width: 768px) {
	.container {
		padding: 40px 5%;
	}
	.outer-container {
		padding: 80px 80px;
	}
	.col {
		width: 100%;
		margin-left: 0;
		text-align: center;
	}
	.row-undo {
		margin-top: -40px;
	}
}


/* animations */

#main-nav li a span,
#main-nav li a span:after,
.flex-viewport,
.flex-direction-nav a,
.button,
.button span,
.button .fa,
#pricelist li span,
#lunchtime li span,
#specials .col .overlay,
#specials li span,
#specials .section-extra .col>*,
#wedding-suits li .slide-image img,
#wedding-accessories li .slide-image img,
#footer-nav li a,.services-list li {
	-webkit-transition: 0.25s ease-out;
	-moz-transition: 0.25s ease-out;
	transition: 0.25s ease-out;
}

.move-right {
	display: inline-block;
	vertical-align: middle;
	-webkit-transform: perspective(1px) translateZ(0);
	transform: perspective(1px) translateZ(0);
	box-shadow: 0 0 1px transparent;
	position: relative;
	-webkit-transition-property: color;
	transition-property: color;
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
}
.move-right:before {
	content: "";
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: #E7636C;
	-webkit-transform: scaleX(0);
	transform: scaleX(0);
	-webkit-transform-origin: 0 50%;
	transform-origin: 0 50%;
	-webkit-transition-property: transform;
	transition-property: transform;
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
	-webkit-transition-timing-function: ease-out;
	transition-timing-function: ease-out;
}
.move-right:hover,
.move-right:focus,
.move-right:active {
	color: white;
}
.move-right:hover:before,
.move-right:focus:before,
.move-right:active:before {
	-webkit-transform: scaleX(1);
	transform: scaleX(1);
}

.floating {
	display: inline-block;
	vertical-align: middle;
	-webkit-transform: perspective(1px) translateZ(0);
	transform: perspective(1px) translateZ(0);
	box-shadow: 0 0 1px transparent;
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
	-webkit-transition-property: transform;
	transition-property: transform;
	-webkit-transition-timing-function: ease-out;
	transition-timing-function: ease-out;
}
.floating:hover,
.floating:focus,
.floating:active {
	transform: translateY(-9px);
	-webkit-transform: translateY(-9px);
}

@-webkit-keyframes hanger {
	0% {
		-webkit-transform: translateY(8px);
		transform: translateY(8px);
	}
	
	50% {
		-webkit-transform: translateY(4px);
		transform: translateY(4px);
	}
	
	100% {
		-webkit-transform: translateY(8px);
		transform: translateY(8px);
	}
}
@keyframes hanger {
	0% {
		-webkit-transform: translateY(8px);
		transform: translateY(8px);
	}
	
	50% {
		-webkit-transform: translateY(4px);
		transform: translateY(4px);
	}
	
	100% {
		-webkit-transform: translateY(8px);
		transform: translateY(8px);
	}
}
.hanger {
	-webkit-animation-name: hanger-sink, hanger;
	animation-name: hanger-sink, hanger;
	-webkit-animation-duration: .3s, 1.5s;
	animation-duration: .3s, 1.5s;
	-webkit-animation-delay: 0s, .3s;
	animation-delay: 0s, .3s;
	-webkit-animation-timing-function: ease-out, ease-in-out;
	animation-timing-function: ease-out, ease-in-out;
	-webkit-animation-iteration-count: 1, infinite;
	animation-iteration-count: 1, infinite;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	-webkit-animation-direction: normal, alternate;
	animation-direction: normal, alternate;
}


/* fonts */

body,
h1,
h2,
h3,
h4,
h5,
h6,
input,
textarea,
.button,
li {
	font-family: 'Open Sans', sans-serif;
}

.title,
#footer-nav li,
#main-nav li {
	font-family: 'Lora', sans-serif;
}

#contact .contact-form-footer li.telephone:before,
#contact .contact-form-footer li.yelp:before,
#contact .contact-form-footer li.facebook:before,
#contact .contact-form-footer li.email:before,
#main-nav li a span:after,
.back-to-top:after,
.flex-direction-nav a.flex-prev:before,
.flex-direction-nav a.flex-next:before,
#contact #socialise li:before,
.toggler-trigger span i {
	font-family: "FontAwesome";
}


/* typography */

h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: 400;
}

h1 {
	font-size: 42px;
	line-height: 3rem;
}

h2 {
	font-size: 46px;
	line-height: 2.75rem;
}

h3 {
	font-size: 26px;
}

h4 {
	font-size: 22px;
}

h5 {
	font-size: 16px;
}

h6 {
	font-size: 14px;
}

a,
a:hover {
	color: #000;
	text-decoration: none;
}


/* content */

.header {
	font-size: 2em;
	font-family: 'Lora';
	margin-top: 40px;
}

.item {
	position: relative;
	overflow: hidden;
}

.content {
	text-align: center;
	z-index: 50;
}

.overlay {
	position: absolute;
	background: rgba(15, 27, 49, 0.75);
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
}

.pretitle {
	font-style: italic;
	font-size: 1.37;
}

.subtitle {
	font-size: 1.4em;
	line-height: 32px;
	font-weight: 100;
	margin-top: 10px;
	max-width: 820px;
}

.excerpt {
	margin-top: 30px;
	font-size: 1em;
	line-height: 2rem;
}

.excerpt p {
	margin-top: 20px;
}

.excerpt p:first-child {
	margin-top: 0;
}

.colored .excerpt p,
.colored .section-header .title,
.colored .title,
.colored li {
	color: #FFFFFF;
}

@media screen and (max-width: 1040px) {
	.excerpt p {
		font-size: 16px;
	}
}


/* elements */

.toggler {
    display: none;
}

.toggler-trigger {
    cursor: pointer;
}

.toggler-trigger span {
	background: #dfdfdf;
	padding: 10px;
}

.toggler-trigger span i {
	margin-left: 10px;
}

.toggler-trigger:hover span {
	background: #cfcfcf;
}

.slanted {
	font-style: italic;
}

.arrow {
	position: absolute;
	bottom: 80px;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
}

.arrow .fa {
	font-size: 1.6em;
	color: #FFFFFF;
}

.icon .fa {
	color: white;
}

.icon {
	margin-top: 30px;
}

b {
	font-weight: 700;
}

#invert {
	color: #388fd3;
}

.image img {
	width: 100%;
}

img {
	width: auto;
}

.button {
	display: inline-block;
	text-align: center;
	margin-top: 40px;
	background: #e44f59;
	cursor: pointer;
	padding: 10px 15px;
    font-size: 1em;
	color: #fff;
	border: none;
}

.button span {
	display: block;
	padding: 5px 20px;
	font-size: 1.1em;
	background: transparent;
	color: #fff;
	font-family: 'Open Sans', sans-serif;
}

.button:hover span {
	color: #fff;
}

.divider {
	display: block;
	padding-top: 40px;
	margin-top: 40px;
	border-top: 1px solid #f0f0f0;
}

.standout {
	font-weight: 900;
}

.highlight {
	color: #e44f59;
}

.relative {
	position: relative;
}

.separator {
	margin: 0px auto;
	text-align: center;
	border-top: 1px dashed #ffffff;
	max-width: 145px;
}

.separator img {
	max-width: 250px;
}

@media screen and (max-width: 768px) {
	.separator img {
		max-width: 100px;
	}
}


/* main header */

#main-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	height: 95px;
	z-index: 100;
	-webkit-transition: all 1s;
	/* Safari */
	transition: all 1s;
}

#main-header.active {
	background: #e44f59;
}

#main-header img {
	margin-top: 27px;
}

#main-header .title {
	color: #fff;
	font-size: 0.8em;
	line-height: 95px;
	position: relative;
}

#main-header .title span:last-of-type {
	font-size: 1.2em;
	margin-left: 10px;
	color: #c39c59;
}

#main-header .container {
	padding: 0 5%;
	position: relative;
}

#main-header .col {
	width: 55%;
	text-align: right;
}

#main-header .col:first-child {
	width: 40%;
	text-align: left;
}

@media screen and (max-width: 1120px) {
	#main-header .row [class*='col']:last-child {
		margin-top: 0;
	}
	#main-header .col {
		margin-left: 2.5%;
		width: 16.75%;
	}
	#main-header .col:first-child {
		margin-left: 0;
		width: 80.75%;
	}
}

@media screen and (max-width: 580px) {
	#main-header .title {
		font-size: 28px;
	}
}

@media screen and (max-width: 768px) {
	#main-header .col {
		width: 11.5%;
	}
	#main-header .col:first-child {
		width: 86%;
	}
	#main-header .title {
		font-size: 28px;
		line-height: 18px;
		margin-top: 32px;
	}
	#main-header .title span:last-of-type {
		display: block;
		font-size: 10px;
		margin-left: 0;
	}
}


/* main menu */

#main-nav {
	float: right;
	line-height: 15px;
	margin-top: 18px;
}

.main-nav-clicked {
	border-bottom: 2px solid #fff;
}

#main-nav ul {
	list-style-type: none;
	text-align: right;
}

#main-nav li {
	display: inline-block;
	margin-left: 36px;
	text-align: center;
	transition: all 0.2s;
	transition: all 0.2s;
	transition: all 0.2s;
	border-bottom: 0px solid #fff;
}

#main-nav li:hover {
	border-bottom: 2px solid #fff;
}

#main-nav li:first-child {
	margin-left: 0;
}

#main-nav li a {
	display: block;
	font-size: 1em !important;
	font-weight: 300;
	font-family: 'Open Sans', sans-serif;
	font-size: 0.8em;
	-webkit-transition: border 2s;
	/* Safari */
	transition: border 2s;
	color: #fff;
}

#main-nav li a span {
	padding: 20px 0;
	display: block;
	position: relative;
}

@media screen and (max-width: 1280px) {
	#main-nav li {
		margin-left: 20px;
	}
}

@media screen and (max-width: 1120px) {
	#main-nav {
		float: none;
		margin: 10px 0;
	}
	#main-nav ul {
		text-align: center;
	}
	#main-nav li {
		margin-left: 40px;
	}
	#main-nav li a span:after {
		bottom: -25px;
	}
}

@media screen and (max-width: 768px) {
	#main-nav {
		line-height: 48px;
		float: none;
		padding-left: 50px;
		padding-right: 50px;
	}
	#main-nav ul {
		text-align: center;
		margin-bottom: 5px;
	}
	#main-nav li {
		display: block;
		margin: 0;
	}
	#main-nav li a span {
		border: 0;
		padding: 0;
	}
	#main-nav li a span:after {
		display: none;
	}
	#main-nav li a {
		font-size: 1.5em;
	}
}


/* trigger & slideout */

.trigger {
	display: none;
	cursor: pointer;
}

.trigger .fa {
	padding: 29px 0 29px 29px;
	color: #ffffff;
	font-size: 32px;
}

.slideout {
	background: none;
	position: relative;
}

@media screen and (min-width: 1121px) {
	.slideout {
		display: block !important;
	}
}

@media screen and (max-width: 1120px) {
	.trigger {
		display: block;
	}
	.slideout {
		background: #e44f59;
		position: absolute;
		top: 91px;
		left: 0;
		right: 0;
		display: none;
	}
}

@media screen and (max-width: 768px) {
	.trigger .fa {
		font-size: 24px;
		padding: 36px 0 35px 14px;
	}
	.slideout {
		top: 82px;
	}
}


/* sections */

section {
	background: #fff;
	overflow: hidden;
}

.section-header {
	text-align: center;
}

.section-header img {
	margin-top: 20px;
	max-width: 200px;
}

.section-header .col,
.section-header .col:first-child {
	width: 100%;
}

.section-header.container {
	padding-bottom: 0;
}

.section-header .title {
	font-size: 52px;
	line-height: 70px;
	color: #0f1b31;
}

.section-footer .col {
	text-align: center;
}

.section-footer {
	padding-top: 25px;
}

@media screen and (max-width: 1040px) {
	.section-header .title {
		font-size: 38px;
		line-height: 46px;
	}
}

@media screen and (max-width: 580px) {
	.section-header .title {
		font-size: 38px;
		line-height: 46px;
	}
	.section-header img {
		margin-top: 20px;
		max-width: 160px;
	}
}

@media screen and (max-width: 768px) {
	#main-header img {
		margin-top: 35px;
	}
}


/* LUKES CODE HERE */

#main-header .title {
	font-family: 'Lora', sans-serif;
}


/* introduction */

#introduction {
	background: url("assets/images/introduction/intro-image-one.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	height: 80vh;
	background-attachment: fixed;
	position: relative;
}

.intro-overlay {
	color: #fff;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	text-align: center;
	padding: 20px;
}

.intro-overlay .title {
	font-size: 3.5em;
}

.intro-overlay p {
	margin-top: 20px;
}

@media screen and (max-width: 1120px) {
	#main-header .image img {
		width: auto;
		margin-top: 20px;
	}
}

@media screen and (max-width: 768px) {
	#introduction {
		background-size: auto;
		background-attachment: scroll;
		background-position: center;
	}
	#main-header {
		background: #e44f59;
	}
	.intro-overlay {
		top: 60%;
		width: 90%;
	}
	.intro-overlay .title {
		font-size: 3.2em;
	}
	.intro-overlay .subtitle {
		font-size: 1.1em;
	}
	.arrow {
		display: none;
	}
	#main-header .image img {
		width: 100%;
		margin-top: 23px;
	}
}

@media screen and (max-width: 480px) {
	#main-header {
		background: #e44f59;
	}
	.intro-overlay {
		top: 55%;
	}
	.intro-overlay .title {
		font-size: 2.1em;
	}
	.intro-overlay .subtitle {
		display: none;
	}
	.arrow {
		display: none;
	}
	#main-header .image img {
		margin-top: 35px;
	}
	.intro-overlay p {
		display: none;
	}
	.intro-overlay .separator {
		display: none;
	}
}


/* about us */

#aboutus {
	background: #faf2ed;
}

#aboutus .image {
	padding: 20px;
	background: #e0e0e0;
}

#aboutus .col {
	width: 40%;
}

#aboutus .col:first-child {
	width: 55%;
}

#aboutus .title {
	color: #e44f59;
}

#browse-work {
	border: none;
	color: #ffffff;
	padding: 15px 32px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: 16px;
	font-size: 1.1em;
	font-family: 'Open Sans', sans-serif;
	transition: 1s;
}

#browse-work:hover {
	background-color: #DF2935;
	cursor: pointer;
}

#sales {
	text-align: left;
	background-color: #faf2ed;
}

@media screen and (max-width: 768px) {
	#aboutus .col:first-child {
		width: 100%;
	}
	#aboutus .col {
		width: 100%;
	}
	#aboutus .image {
		padding: 10px;
	}
}

/* call to action 1 */

#action-one {
	text-align: center;
	background: url('assets/images/action.jpg');
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
}

#action-one .title {
	font-size: 2.6em;
}

#action-one .button .fa {
	margin-right: 10px;
}

#action-one .button {
	font-size: 1.5em;
	margin-top: 60px;
}

#action-one .excerpt {
	max-width: 1025px;
	margin: 40px auto 0;
	font-size: 1.2em;
}

@media screen and (max-width: 768px) {
	#action-one {
		background-size: auto;
		background-attachment: scroll;
	}
	#action-one .title {
		font-size: 1.5em;
		line-height: 1.3;
	}
	#action-one .button {
		font-size: 1em;
		padding: 10px;
		margin-top: 40px;
	}
}


/* call to action 2 */

#action-two {
	text-align: center;
	background: url('assets/images/action-2.jpg');
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	color: #e44f59;
}

#action-two .title {
	font-size: 2.6em;
	line-height: 1.5;
	max-width: 1200px;
	margin: 0 auto;
}

#action-two a {
	color: #e44f59 !important;
}

#action-two .button .fa {
	margin-right: 10px;
}

#action-two .button {
	font-size: 1.5em;
	margin-top: 60px;
}

#call-today {
	color: #e44f59 !important;
}

@media screen and (max-width: 768px) {	
	#action-two {
		background-size: auto;
		background-attachment: scroll;
	}
	#action-two .title {
		font-size: 1.5em;
	}
	#action-two .button {
		font-size: 1em;
		padding: 10px;
		margin-top: 40px;
	}
}



/* sales */

#sales .section-header .title {
	color: #e44f59;
}

#sales .section-header .excerpt {
	max-width: 820px;
	margin: 50px auto 0;
}

#sales .section-content {
	padding-top: 5px;
	padding-bottom: 40px;
}

#sales .section-header .col,
#sales .section-footer .col {
	width: 100%;
}

#sales .section-footer .excerpt {
	max-width: 820px;
	margin: 0px auto 0;
}

.pre-sales .fa {
	display: block;
	font-size: 2.5em;
}

.pre-sales {
	margin-top: 60px;
}

.pre-sales .col {
	width: 21.25%;
}

.pre-sales .item {
	background-color: #e44f59;
	padding: 30px;
	text-align: center;
	cursor: default;
}

@media screen and (max-width: 1220px) {
	.pre-sales .col {
		width: 47.5%;
	}
	.pre-sales .col:nth-child(3) {
		clear: both;
		margin-left: 0;
	}
	.pre-sales .col:nth-child(3),.pre-sales .col:last-child {
		margin-top: 40px;
	}
	.floating:active {
		transform: translateY(0px);
		-webkit-transform: translateY(0px);
	}
}

@media screen and (max-width: 980px) {
	.pre-sales .col:nth-child(3), .pre-sales .col:last-child {
		margin-top: 0;
	}

}

@media screen and (max-width: 768px) {
	.pre-sales .col {
		width: 100%;
	}
}


/* purchase */

#purchase {
	background: url('assets/images/site/caravan-bg.png') bottom left no-repeat;
	background-size: 50%;
}

#purchase .section-header .title {
	color: #28a1ac;
}

#purchase .excerpt {
	margin-top: 0px;
}

#purchase .subtitle {
	margin-top: 40px;
	font-weight: 400;
	font-size: 1.8em;
	color: #e44f59;
}

#purchase .image {
	background-color: #faf2ed;
	padding: 20px;
}

.purchase-reasons ul {
	list-style-type: disc;
	margin-left: 40px;
	margin-top: 20px;
}

.purchase-reasons li {
	color: #000;
	font-family: 'Open Sans', sans-serif;
	font-size: 1.3em;
}


@media screen and (max-width: 1040px) {
	#purchase .section-content .col:last-child {
		margin-top: 0;
	}
}

@media screen and (max-width: 768px) {
	#purchase {
		background-size: 100%;
		background-attachment: fixed;
		background-position: center left;
	}
}

@media screen and (max-width: 768px) {
	#purchase ul {
		list-style-type: none;
	}
	#purchase ul li {
		font-size: 1.2em;
	}
}


/* services */

#services .section-header .title {
	color: #28a1ac;
}

#services .section-header .excerpt {
	max-width: 820px;
	margin: 50px auto 0;
}

#services .section-content {
	padding-top: 80px;
}

.services-list li:hover {
	background: #28a1ac;
	cursor: default;
	margin-left: 10px;
}

.services-list li {
	background: #28a1ac;
	padding: 10px 20px;
	overflow: hidden;
	display: block;
	color: #fff;
	color: #ffffff;
	margin-bottom: 5px;
}

.services-list i {
	color: #fff;
	font-size: 1.1em;
	margin-right: 10px;
}

@media screen and (max-width: 768px) {
	.services-list li {
		font-size: 0.8em;
    	text-align: left;
	}
}
@media screen and (max-width: 1040px) {
	#services .section-content .col.services-list:last-child {
		margin-top: 0;
	}
}

/* contact us */


#contact {
	background-color: #ffffff;
}

#contact .item {
	background-color: #faf2ed;
	text-align: center;
	padding: 20px;
}
#contact .title {
	color: #e44f59;
}

#contact-list {
	margin-top: 20px;
}

#contact-list li {
	padding: 10px 20px;
}

#contact-list i {
	margin-right: 10px;
	color: #28a1ac;
}

#contact .button {
    padding: 10px;
    font-size: 1em;
    background: #e44f59;
    color: #fff;
	margin-top: 0;
	font-weight: 300;
	border: none;
}

#contact .button i {
	margin-right: 10px;
}

#openingtimes li {
	padding: 10px;
}

#openingtimes li:nth-child(2) {
	margin-top: 20px;
}

#openingtimes li:nth-child(odd) {
	background: #faf2ed;
}

#openingtimes li:first-child {
	font-weight: 700;
	padding: 0;
	background: none;
}

#openingtimes {
	background: #ffffff;
	text-align: center;
	padding: 30px;
	margin-top: 40px;
}

@media screen and (max-width: 768px) {
	#contact .col {
		width: 100%;
	}
	#contact-list li {
		padding: 0;
		margin-top: 20px;
	}
	#contact-list li .fa {
		display: block;
	}
	#openingtimes li:first-child {
		line-height: 1.4;
	}
	#openingtimes span {
		display: block;
	}
}

.contact-form p {
	font-size: 1em !important;
}


/* LUKES CODE ENDS HERE */


/* back to top */


/* inventis */

.inventis {
	margin-top: 30px;
	text-align: center;
}

.inventis img {
	width: auto;
}

@media screen and (max-width: 768px) {
	.inventis {
		text-align: center;
	}
}


/* flexslider */

.flexslider {
	display: block;
	position: absolute;
	height: 100vh!important;
	overflow: hidden!important;
	width: 100%!important;
	border: none !important;
	border-radius: 0;
}

.flexslider .slides img {
	min-height: 100%;
	min-width: 100%;
	margin: 0 auto!important;
}


/* lightbox */

.featherlight .featherlight-content {
	background: #0F1B31 !important;
}

.featherlight .featherlight-close-icon {
	background: #C09457 !important;
}

.featherlight:last-of-type {
	background: rgba(15, 27, 49, 0.95) !important;
}

.featherlight-next span,
.featherlight-previous span {
	font-size: 38px !important;
}

.featherlight .featherlight-close-icon {
	color: #fff !important;
}



/* no cookie */

.nocookie {
    margin: 0 auto;
    padding: 40px;
    background: #28a1ac;
	text-align: center;
}

.nocookie .excerpt {
	margin-top: 0;
}

.nocookie .excerpt p {
	float: none;
	color: #fff;
}

.nocookie .privacy-policy a {
    font-size: 18px;
    color: #fff;
	display: block;
	margin-top: 20px;
	font-weight: 700;
}

.nocookie .sub-title.privacy-policy a {
	font-size: 22px;
	font-weight: 700;
	margin-top: 20px;
}



/* privacy overlay */

.privacyoverlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(14, 14, 14, 0.85);
	z-index: 1000;
	display: none;
}

.privacyoverlay.visible {
	display: block;
}


/* privacy select */

#privacyselect {
	position: absolute;
	top: 50%;
	left: 50%;
	display: none;
	background: #fff;
	color: #2d2c2a;
	width: 100%;
	padding: 0;
	max-width: 720px;
	max-height: 500px;
	overflow: hidden;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	z-index: 9999;
	box-shadow: 0 0 30px 10px rgba(14, 14, 14, 0.8);
}

#privacyselect.visible {
	display: block;
}

#privacyselect .privacy-select-wrapper {
	position: relative;
	overflow-y: scroll;
	padding: 80px;
    text-align: center;
}

#privacyselect .privacy-select-wrapper .excerpt {
	margin-top: 40px;
}

#privacyselect .privacy-select-popup {
	display: block;
	margin-top: 20px;
	color: #03162F;
	font-size: 14px;
}

#privacyselect .privacy-select-popup:hover {
	cursor: pointer;
	text-decoration: underline;
}

#privacyselect .privacy-select-wrapper .title.main-title {
	font-size: 32px;
	line-height: 38px;
	font-weight: 400;
}

#privacyselect .privacy-select-wrapper .excerpt {
    font-size: 14px;
    line-height: 1.75rem;
}

#privacyselect .privacy-select-wrapper .button {
	background: #00d2ff;
	margin: 30px auto 10px;
    border: 0;
	float: none;
}

#privacyselect .privacy-select-wrapper .button:hover {
	background: #37adff;
}

#privacyselect .privacy-select-wrapper .button span {
    padding: 0;
	color: #fff;
}

#privacyselect .privacy-select-wrapper .button span:after {
	visibility: hidden;
	margin: 0;
	display: none;
}

#privacyselect .privacy-select-wrapper .button:hover a span {
    color: #fff;
}

@media screen and (max-width: 768px) {
	#privacyselect {
		width: 90%;
	}
}

@media screen and (max-width: 580px) {
	#privacyselect {
		top: 0;
		left: 0;
		max-height: unset;
		overflow-y: scroll;
		height: 100vh;
		width: 100%;
		-webkit-transform: translate(0%, 0%);
		transform: translate(0%, 0%);
	}
	
	#privacyselect .privacy-select-wrapper {
		padding: 40px;
	}
}


/* privacy policy */

.privacy-policy.sub-title {
	text-align: center;
}

.privacy-policy a {
    cursor: pointer;
    color: #9c9c9c;
	float: none;
	text-align: center;
}

#privacypolicy {
    position: absolute;
    top: 50%;
    left: 50%;
    display: none;
    background: #fff;
    width: 100%;
    padding: 0;
    max-width: 720px;
    max-height: 500px;
    overflow: hidden;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 9999;
    box-shadow: 0 10px 10px 10px rgba(0,0,0,0.25);
}

#privacypolicy.visible {
    display: block;
}

#privacypolicy .privacy-wrapper {
    position: relative;
    overflow-y: scroll;
    height: 420px;
	padding: 40px 80px 40px;
}

#privacypolicy .privacy-wrapper p,
#privacypolicy .privacy-wrapper li {
	color: #2d2c2a;
}

#privacypolicy .title.main-title {
    font-size: 24px;
}

#privacypolicy .title {
    margin-top: 30px;
	font-size: 16px;
	line-height: 22px;
    font-weight: 700;
}

#privacypolicy p,
#privacypolicy li {
    margin-top: 20px;
	line-height: 28px;
	font-size: 14px;
}

#privacypolicy ul {
    margin-top: 20px;
    margin-left: 20px;
    list-style-type: disc;
}

#privacypolicy li {
    margin-top: 0;
    line-height: 28px;
}

#privacypolicy .policyoptions {
	text-align: center;
}

#privacypolicy .policyoptions .button {
	background: #00d2ff;
	margin: 50px auto 0;
    border: 0;
	float: none;
}

#privacypolicy .policyoptions .button:hover {
	background: #37adff;
}

#privacypolicy .policyoptions .button span {
    padding: 0;
	color: #fff;
}

#privacypolicy .policyoptions .button span:after {
	visibility: hidden;
	margin: 0;
	display: none;
}

#privacypolicy .policyoptions .button:hover span {
    color: #fff;
}

.privacypopup {
	cursor: pointer;
    display: block;
    color: #03162F;
    margin-top: 10px;
    font-size: 16px;
	font-weight: 400;
}

.sub-title.privacy-policy a,
.privacypopup-accepted,
.privacy-area .privacypopup {
    margin-top: 0;
    font-size: 11px;
	font-weight: 400;
}

.sub-title.privacy-policy a:hover {
	color: #fff;
}

.privacypopup:hover {
	text-decoration: underline;
    color: #03162F;
}

#privacypolicy .privacy-close {
	display: block;
	margin-top: 20px;
	color: #03162F;
	font-size: 14px;
}

#privacypolicy .privacy-close:hover {
	cursor: pointer;
	text-decoration: underline;
}

.privacy-wrapper .closeaccepted {
	background: #c00;
	padding: 1px 15px;
	position: absolute;
	top: 40px;
	right: 35px;
}

.privacy-wrapper .closeaccepted {
	color: #fff;
	font-size: 18px;
	font-weight: 700;
}

.privacy-wrapper .closeaccepted:hover {
	cursor: pointer;
}

@media screen and (max-width: 520px) {
	#privacypolicy {
		top: 0;
		left: 0;
		max-height: unset;
		overflow-y: scroll;
		height: 100vh;
		-webkit-transform: translate(0%, 0%);
		transform: translate(0%, 0%);
	}
	
	#privacypolicy .privacy-wrapper {
		padding: 40px;
	}
}


/* privacy policy popover */

html,
body {
    overflow: auto;
    height: auto;
}

html.disabled,
body.disabled {
    overflow: hidden;
    height: 100%;
}


/* Contact Form */

#contact .contact-form label {
	display: block;
	text-align: left;
	font-size: 1em;
	color: #000000;
	font-family: 'Open Sans', sans-serif;
	margin-bottom: 2px;
}

#contact .contact-form input {
	width: 100%;
	padding: 3%;
	display: inline-block;
	border: 0;
	box-sizing: border-box;
	background: #faf2ed;
	color: #000;
	height: 60px;
	font-size: 1em;
	font-family: 'Open Sans';
}

#contact .contact-form textarea {
	width: 100%;
	padding: 2.5%;
	display: inline-block;
	border: 0;
	box-sizing: border-box;
	background: #faf2ed;
	color: #000;
	height: 280px;
	font-size: 1em;
}

#contact .button.secondary {
	display: none;
}

.address {
	font-weight: 700;
}

.address i {
	margin-right: 10px;
}

@media screen and (max-width: 480px) {
	#contact .contact-form textarea {
		height: 200px;
	}
}

/* footer */

#main-footer .separator {
	border-top: 1px solid #ffffff;
	max-width: 800px;
	padding-bottom: 40px;
	margin-top: 30px;
}
#main-footer {
	background: #e44f59;
	font-family: 'Open Sans', sans-serif;
	margin-top: -17px;
	font-weight: 300;
}

#main-footer .footer-cols .col {
	width: 100%;
}

#main-footer .container {
	padding: 80px 5%;
}

#main-footer .copyright {
	font-size: 1.1em;
	line-height: 18px;
	color: #fff;
	text-align: center;
}

#main-footer .copyright span,
#main-footer #currentyear {
	display: inline-block;
}

@media screen and (max-width: 768px) {
	#main-footer .container {
		padding: 20px 5%;
	}
	.purchase-reasons ul {
		margin-left: 0;
	}
	#purchase .image {
		margin-top: 20px;
	}
}

@media screen and (max-width: 580px) {
	#main-footer {
		padding-bottom: 75px;
	}
}


/* footer menu */

#footer-nav ul {
	list-style-type: none;
	text-align: center;
}

#footer-nav li {
	display: inline-block;
	margin-left: 40px;
	font-size: 1.1em;
	font-family: 'Open Sans', sans-serif;
}

#footer-nav li:first-child {
	margin-left: 0;
}

#footer-nav li a {
	display: block;
	color: #ffffff;
}

#footer-nav li a span {
	padding: 20px 0;
}

@media screen and (max-width: 980px) {
	#footer-nav li {
		font-size: 24px;
	}
}

@media screen and (max-width: 768px) {
	#footer-nav li {
		display: block;
		margin: 0;
		font-size: 1.3em;
	}
	#footer-nav li a span {
		display: block;
		padding: 10px 0;
	}
	#main-footer .copyright {
		font-size: 1em;
	}
}


/* back to top */

.back-to-top {
	display: none;
	position: fixed;
	left: auto;
	right: 30px;
	bottom: 30px;
	text-align: center;
	height: 40px;
	width: 40px;
	background: #e44f59;
	border: 1px solid #ffffff;
	z-index: 9999;
	color: #fff;
}

.back-to-top:hover {
	color: #fff;
	background: #e44f59;
}

.back-to-top:after {
	content: '\f077';
}

@media screen and (max-width: 580px) {
	.back-to-top {
		left: 0;
		right: 0;
		bottom: 0;
		width: 100%;
		height: 70px;
		line-height: 70px;
		border: 0;
		border-top: 2px solid #ffffff;
	}
	.back-to-top:after {
		font-size: 28px;
	}
}


/* Error message box */

.ucf .message .errors {
	background: #d9534f;
	color: #fff;
	border: solid 1px #ccc;
	border-radius: 5px;
	padding: 20px;
	border-radius: 5px;
	padding: 10px;
	line-height: 18px;
	font-size: 14px;
}

.ucf .message .errors p {
	color: #d9534f;
}


/* Success message box */

.ucf .message .success {
	background: #fff;
	color: #000;
	border: none;
	border-radius: 5px;
	padding: 10px;
	line-height: 18px;
	font-size: 14px;
}


.ucf .message .success p {
	color: #000;
}

/* Form */
.ucf * {
	outline: none;
}
.ucf fieldset {
	max-width: 1000px;
	margin: 0px auto;
}
.ucf legend {
	font-weight: bold;
	padding: 10px;
}
.ucf .field-wrapper {
	clear: both;
	margin-top: 0;
	line-height: 2em;
	padding: 0;
	box-sizing: border-box;
}
.ucf .field-wrapper label span {
	display: block;
	width: 100%;
}
.ucf .field-wrapper input[type=text],
.ucf .field-wrapper input[type=tel],
.ucf .field-wrapper input[type=email],
.ucf .field-wrapper input[type=password],
.ucf .field-wrapper textarea,
.ucf .field-wrapper select {
	border: solid 1px #ccc;
	padding: 10px;
	transition: all .3s ease-in-out;
}
.ucf .field-wrapper input[type=text]:focus,
.ucf .field-wrapper input[type=tel]:focus,
.ucf .field-wrapper input[type=email]:focus,
.ucf .field-wrapper input[type=password]:focus,
.ucf .field-wrapper textarea:focus,
.ucf .field-wrapper select:focus {
	border: solid 1px #333;
}
@media (max-width:1260px) {
	.ucf .trio {
		width: 100% !important;
		display: inline-block!important;
	}
}
@media ( max-width: 768px) {
	.ucf fieldset {
		padding: 10px;
	}
	
	.ucf .field-wrapper {
		margin-bottom: 10px;
	}
	
	.ucf .field-wrapper input[type=text],
	.ucf .field-wrapper input[type=tel],
	.ucf .field-wrapper input[type=email],
	.ucf .field-wrapper input[type=password],
	.ucf .field-wrapper textarea {
		width: 150px;
	}
	
	.ucf .field-wrapper select {
		width: 170px;
	}
}
@media ( min-width: 481px) {
	.ucf .field-wrapper {
		margin-bottom: 20px;
	}
	
	.ucf .field-wrapper input[type=text],
	.ucf .field-wrapper input[type=tel],
	.ucf .field-wrapper input[type=email],
	.ucf .field-wrapper input[type=password],
	.ucf .field-wrapper textarea {
		width: 200px;
	}
	
	.ucf .field-wrapper select {
		width: 220px;
	}
}

/* Select 2 overrides */
.select2 {
	margin-bottom: 20px;
}
.select2-container .selection,
.select2-container .select2-selection {
	width: 100% !important;
}
.select2-search__field:focus {
	outline: none;
}

/* Honey trap field */
.ucf .hey-honey {
	left: -9999px;
	position: absolute;
}

/* Button */
.ucf button[type=submit] {
	display: inline-block;
	width: auto;
	height: auto;
	border: 2px solid #fff;
	background: none;
	padding: 15px;
	font-size: 12px;
	line-height: 22px;
	font-weight: 700;
	color: #fff;
	cursor: pointer;
	-webkit-appearance: none;
}
.ucf button[type=submit].complete {
	background: #E7636C;
	color: #ffffff;
	cursor: default;
}
.ucf button.secondary {
	margin-left: 20px;
	display: inline-block;
	width: auto;
	height: auto;
	border: 2px solid #fff;
	background: none;
	padding: 15px;
	font-size: 12px;
	line-height: 22px;
	font-weight: 700;
	color: #fff;
	cursor: pointer;
	-webkit-appearance: none;
}
.ucf button.secondary:hover {
	background: #ddd;
}
::-moz-selection {
	background: #e44f59;
	color: #FFFFFF;
}
::selection {
	background: #e44f59;
	color: #FFFFFF;
}

#map .col {
    width: 100%;
}

#map .gmap {
    position: relative;
    padding-bottom: 25%;
    height: 0;
    overflow: hidden;
}
#map .gmap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
}

@media screen and (max-width: 768px) {
	#map .gmap {
		padding-bottom: 55%;
	}
}