/**
	@Author:	Paul Strandoo/Spi-des-ign
	@Date:		20 July 2017
	@Notes:		A&S Fleetcare
	
	CONTENTS
	-------------
	- Global resets
	- Global typography & layout rules
	- Page styles
	- Post styles 
	- General bits 
	
	
	FONTS & COLORS
	-------------
	dark grey: #3b3b3b / rgba(59,59,59,0.75);
	light grey: #c3b59b;
	orange: #f68e1e / rgba(246,142,30,1);
	
	Light Blue: #1c95fb; rgba(28,150,250,1);
	Dark Blue: #26305d; rgba(38,48,93,1);
	AA Yellow: #fc0;
	Dark Red: #9f0101;
	font-family: 'Open Sans', sans-serif;
	available weight: 300, 400, 400i, 700;
	inner max-width: 1140px;
*/

@import url(reset.css);
@import url("font-awesome.min.css");

* {
   -moz-box-sizing: border-box;
   -webkit-box-sizing: border-box;
	box-sizing: border-box;
	}

html {
	font-size: 100%;
	height: 100%;
	}
body {
	height: 100%;
	position: relative;
	font-size: 16px;
	line-height: 1.3;
	background: #3b3b3b;
	}

body, input, textarea, table {
	font-family: 'Open Sans', sans-serif;
	font-weight: 400;
	color: #333;
	}

p,
li,
td {
	font-family: 'Open Sans', sans-serif;
	font-weight: 400;
	font-size: 1em;
	line-height: 1.6em;
	margin: 0 0 1em;
	}

li {
	margin: 0;
	}

em {
	font-family: 'Open Sans', sans-serif;
	font-style: italic;
	}
b,
strong {
	font-weight: 700;
	}

a {
	color: #1c95fb;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
	}
a:hover {
	text-decoration: underline;
	}

h1,h2,h3,h4 {
	font-family: 'Open Sans', sans-serif;
	font-weight: 700;
	margin: 0 0 0.5em;
	}
h1 {
	font-family: 'Open Sans', sans-serif;
	font-size: 3em;
	line-height: 1.1em;
	font-weight: 300;
	margin: 0 0 0.3em;
	}

h2 {
	font-family: 'Open Sans', sans-serif;
	font-size: 2em;
	line-height: 1.2em;
	margin: 0 0 0.3em;
	font-weight: 400;
	}
p + h2 {
	margin-top: 1em;
	}
	
h3 {
	font-family: 'Open Sans', sans-serif;
	font-size: 1.2em;
	color: #333;
	/*font-weight: 700;*/
	margin: 0 0 0.3em;
	}
	
h4 {
	font-size: 1.1em;
	/*font-weight: 700;*/
	margin: 0;
	padding: 0;
	}

img {
	display: block;
	max-width: 100%;
	}

/* ----- [ Dark and Light ] -----------------*/
.dark,
.dark p,
.dark li,
.dark h2,
.dark h3,
.dark h4 {
	color: #fff;
	}
.dark a {
	color: #fff;
	}
.dark a:hover {
	color: #fff;
	border-bottom: 2px solid #fff;
	}
.dark {
	background: #646464;
	background: #26305d;
	color: #fff;
	}

@media only screen and (min-width: 640px) { 
	h1 {
		font-size: 4.2em;
		}
}


/* ----- [ Structure ] -----------------*/
header,
section,
footer {
	position: relative;
	width: 100%;
	margin: 0;
	background: #fff;
	}
section {
	padding: 30px 0;
	}
	
.inner {
	position: relative;
	max-width: 1140px;
	margin: 0 auto;
	padding: 0 20px;
	}
.inner-full {
	max-width: 100%;
	padding: 0;
	}


/* ----- [ Strandoo Simple Grid System v2.8 ] --------------- */
.row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap;
	margin: 0 -15px;
	overflow: hidden;
	position: relative;
	}

.stretch {
	align-items: stretch;
	}

.row > .col {
	width: 100%;
	vertical-align: top;
	padding: 0 15px;
	}

.row.no-padding {
	margin-left: 0;
	margin-right: 0;
	}
.row.padding-5 {
	margin: 0 -5px;
	padding-top: 5px;
	}
.row.padding-10 {
	margin: 0 -10px;
	padding-top: 10px;
	}
.row.padding-20 {
	margin: 0 -20px;
	}

.no-padding > .col {
	padding: 0;
	}
.padding-5 > .col {
	padding: 5px;
	}
.padding-10 > .col {
	padding: 10px;
	}
.padding-20 > .col {
	padding: 20px;
	}

.row.text-center > .col {
	text-align: center;
	}

.row > .col.fright {
	float: right;
	}
.row > .col.fleft {
	float: left;
	}

.col > img {
	/*max-width: 100%;*/
	}


@media only screen and (min-width: 640px) { 
	.row-2 > .col { width: 50%; }
	.row-3 > .col { width: 33.333%; }
	.row-4 > .col { width: 25%;}
	.row-5 > .col { width: 20%;}
	.row-6 > .col { width: 16.666%;}

	.row-2 .span-2 { width: 100%; }
	.row-3 .span-2 { width: 66.666%; }
	.row-4 .span-2 { width: 50%; }
	.row-4 .span-3 { width: 75%; }
	.row-5 .span-2 { width: 40%; }
	.row-5 .span-3 { width: 60%; }
	.row-5 .span-4 { width: 80%; }
}


/* ----- [ Page ] -----------------*/
.page-wrapper {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	background: #fff;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
	}
.page-wrapper.open {
	-webkit-transform: translateX(-260px);
	-moz-transform: translateX(-260px);
	-ms-transform: translateX(-260px);
	-o-transform: translateX(-260px);
	transform: translateX(-260px);
	}

.overlay {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	visibility: hidden;
	background: rgba(0,0,0,0.4);
	z-index: 600;
	opacity: 0;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
	}
.overlay.open {
	visibility: visible;
	opacity: 1;
	}


/* ----- [ Masthead/Header ] -----------------*/
.masthead {
	position: absolute;
	position: fixed;
	width: 100%;
	top: 0;
	left: 0;
	height: auto;
	margin: 0;
	padding: 0;
	z-index: 110;
	background: #fff;
	background: rgba(255,255,255,1);
	-webkit-box-shadow: 0 3px 5px rgba(0,0,0,0.3);
	-moz-box-shadow: 0 3px 5px rgba(0,0,0,0.3);
	box-shadow: 0 3px 5px rgba(0,0,0,0.3);
	/*
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	*/
	/* Force Hardware Acceleration */
	-webkit-transform: translateZ(0);
	-moz-transform: translateZ(0);
	-ms-transform: translateZ(0);
	-o-transform: translateZ(0);
	transform: translateZ(0);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	
	-webkit-transition: all 0.4s;
	-moz-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
}

.masthead.is-hidden {
	-webkit-transform: translateY(-100%);
	-moz-transform: translateY(-100%);
	-ms-transform: translateY(-100%);
	-o-transform: translateY(-100%);
	transform: translateY(-100%);
	}

.masthead .inner {
	max-width: 1490px;
	padding: 10px 15px;
	}

.logo-wrap {
	position: relative;
	float: left;
	width: 290px;
	height: auto;
	padding: 0;
	margin: 0;
	overflow: hidden;
	background: #fff;
	}
.logo-wrap img {
	width: 100%;
	}
	
.top-links {
	position: relative;
	text-align: right;
	color: #26305d;
	margin: 4px 0 0;
	}
.top-links li {
	font-size: 1.2em;
	line-height: 1.2em;
	font-weight: 700;
	vertical-align: middle;
	}
.top-phone {
	display: none;
	}
.top-trigger {
	margin-left: 15px;
	width: 38px;
	display: inline-block;
	}

@media only screen and (min-width: 640px) { 
	.masthead .inner {
		padding: 10px 30px 0 30px;
		}
	.logo-wrap {
		width: 320px;
		margin: 0 0 10px;
		}
	.top-phone {
		display: inline-block;	
		}
}
@media only screen and (min-width: 1024px) {
	.logo-wrap {
		width: 400px;
		}
	.top-links {
		margin: 0 0 8px;
		padding: 0;
		}
}
@media only screen and (min-width: 1180px) {
	.top-phone {
		display: inline-block;	
		}
	.top-trigger {
		display: none;
		}
}


/* ----- [ Menu Trigger ] ---------- */
.menu-trigger {
	position: absolute;
	right: 0;
	top: 0;
	height: 100%;
	width: 38px;
	}
.menu-trigger:hover {
	border: none;
	}
.menu-trigger-text {
	height: 100%;
	text-transform: uppercase;
	color: #000;
	display: none;
	}
.menu-icon {
	/* this span is the central line in the menu menu */
	display: inline-block;
	position: absolute;
	left: 50%;
	top: 50%;
	bottom: auto;
	right: auto;
	-webkit-transform: translateX(-50%) translateY(-50%);
	-moz-transform: translateX(-50%) translateY(-50%);
	-ms-transform: translateX(-50%) translateY(-50%);
	-o-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
	width: 24px;
	height: 2px;
	margin-top: -1px;
	background-color: #000;
	/* these are the upper and lower lines in the menu menu */
	}
.menu-trigger .menu-icon::before, 
.menu-trigger .menu-icon:after {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	background-color: inherit;
	left: 0;
	}
.menu-trigger .menu-icon::before {
	bottom: 7px;
	}
.menu-trigger .menu-icon::after {
	top: 7px;
	}
.menu-trigger.is-clicked .menu-icon {
	background-color: rgba(0, 0, 0, 0);
	}
.menu-trigger.is-clicked .menu-icon::before, 
.menu-trigger.is-clicked .menu-icon::after {
	background-color: black;
	}
.menu-trigger.is-clicked .menu-icon::before {
	bottom: 0;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
	}
.menu-trigger.is-clicked .menu-icon::after {
	top: 0;
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
	}

@media only screen and (min-width: 1180px) {
	.menu-trigger {
		display: none;
		}
}


/* ----- [ Mobile Navigation ] -----------------*/
.side-navigation {
	position: fixed;
	padding: 32px 20px 0;
	top: 0;
	bottom: 0;
	left: 100%;
	width: 260px;
	background: #1c95fb;
	z-index: 800;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
	}
.side-navigation.open {
	-webkit-transform: translateX(-260px);
	-moz-transform: translateX(-260px);
	-ms-transform: translateX(-260px);
	-o-transform: translateX(-260px);
	transform: translateX(-260px);
	}

.side-nav li {
	font-size: 1.3em;
	margin: 0;
	padding: 0.5em 0;
	border-bottom: 1px solid #fff;
	}
.side-nav a {
	display: block;
	line-height: 1.2em;
	padding: 0;
	color: #fff;
	}
.side-nav a.current {
	color: #000;
	text-decoration: none;
	}
.no-touch .side-nav a:hover,
.side-nav a:hover {
	color: #000;
	border: none;
	}

@media only screen and (min-width: 480px) {
	.side-navigation {
		width: 360px;
	}
	.side-navigation.open {
		-webkit-transform: translateX(-360px);
		-moz-transform: translateX(-360px);
		-ms-transform: translateX(-360px);
		-o-transform: translateX(-360px);
		transform: translateX(-360px);
	}
	.page-wrapper.open {
		-webkit-transform: translateX(-360px);
		-moz-transform: translateX(-360px);
		-ms-transform: translateX(-360px);
		-o-transform: translateX(-360px);
		transform: translateX(-360px);
		}
}


/* ----- [ Main Navigation ] --------- */
.main-nav-wrapper {
	position: absolute;
	bottom: 8px;
	right: 30px;
	left: 30px;
	}
	
.main-navigation {
	display: none;
	}

@media only screen and (min-width: 1180px) {
	.main-navigation {
		display: block;
		z-index: 800;
		float:right;
		position: relative;
		/* position: absolute; */
		visibility: visible;
		margin: 0 -10px 0;
		width: auto;
		height: auto;
		overflow: visible;
		background: transparent;
		text-align: right;
		-webkit-transition: all .3s ease;
		-moz-transition: all .3s ease;
		-o-transition: all .3s ease;
		transition: all .3s ease;
		}
		
	.nav-level-1 {
		display: inline-block;
		position: relative;
		/*color: #fff;*/
		font-weight: 700;
		margin: 0 10px;
		overflow: visible;
		
		min-height: 0;
		}
	.nav-level-1 a {
		font-size: 0.90em;
		color: #1c95fb;
		padding: 0;
		/*text-transform: uppercase;*/
		border-bottom: 2px solid transparent;
		}
	
	.nav-level-1 a.on,
	.nav-level-1 a:hover,
	.nav-level-1 a.on:hover {
		color: #1c95fb;
		text-decoration: none;
		border-bottom: 2px solid #1c95fb;
		}
	.nav-level-1 a.on:after {
		opacity: 1;
		}
}








/* ----- [ Hero ] --------------- */
.hero-overlay {
	/*z-index: 1;*/
	position: absolute;
	bottom: 0;
	top: 0;
	left: 0;
	right: 0;
	background: rgba(0, 0, 0, 0.3);
	}

.hero {
	position: relative;
	padding: 0;
	}
	
.hero .inner {
	height: 440px;
	}

.hero-two {
	margin-bottom: 50px;
	}
.hero-two .inner {
	height: 540px;
	}

.hero-content {
	position: absolute;
	bottom: 10%;
	right: 0;
	max-width: 1140px;
	width: 100%;
	padding: 0 20px;
	margin: 0 auto;
	text-align: right;
	color: #fff;
	}
	
.hero-content.with-tyres {
	width: 60%;
	/*margin-left: 500px;*/
	}
	
.hero-two-content {
	position: absolute;
	bottom: 10%;
	left: 0;
	width: 100%;
	padding: 0 30px;
	margin: 0 auto;
	/*background: rgba(0,0,0,0.3);*/
	text-align: center;
	color: #fff;
	}

.hero-logo {
	max-width: 450px;
	width: 100%;
	margin: 0 0 0 auto;
	}
.hero-two-logo {
	width: 400px;
	margin: 0 auto 20px;
	}
	
.hero-content h1 {
	color: #fff;
	font-weight: 300;
	text-align: right;
	text-shadow: 3px 3px 10px rgba(0,0,0,0.5) !important;
	}
	
.hero-two-content h2 {
	font-size: 5.5em;
	font-weight: 700;
	margin: 0;
	}

.hero-content p,
.hero-two-content p {
	font-size: 1.4em;
	margin: 0;
	}
.hero-two-content p {
	font-size: 2em;
	margin: 0;
	}

@media only screen and (min-width: 640px) {
	.hero .inner {
		height: 540px;
		}
	.home .hero-content {
		width: 100%;
		}
	.hero-content p {
		font-size: 1.8em;
		}
	.hero-two-content p {
		font-size: 2.6em;
		}
}


/* ----- [ Feature Boxes ] -----------------*/
.feature-boxes {
	color: #fff;
	/*position: absolute;
	bottom: -100px;
	left: 0;*/
	width: 100%;
	padding: 60px 0;
	background: #f1f1f1;
	z-index: 100;
	}
.feature-boxes .button {
	margin-right: 1em;
	}

/* ----- [ Home: Promo Links ] -----------------*/
.promo-link {
	position: relative;
	overflow: hidden;
	margin: 0 0 20px;
	}
	
.promo-link > img {
	max-width: 100%;
	border: 2px solid #fff;
	}
.promo-link-text {
	position: absolute;
	bottom: 0;
	left: 15px;
	right: 15px;
	height: 32px;
	padding: 0 20px;
	border-left: 2px solid #fff;
	border-right: 2px solid #fff;
	background: rgba(28,150,250,0.9);
	-webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
	}
	
.promo-link-text h3 + p {
	display: none;
	}
	
.promo-link:hover .promo-link-text {
	height: 100%;
	padding-top: 20px;
	}
.promo-link-text h3 {
	padding: 4px 0;
	margin: 0 0 0.5em;
	border-bottom: 1px solid #fff;
	}
.promo-link-text h3 + p {
	font-size: 0.9em;
	line-height: 1.3em;
	margin: 0 0 0.5em;
	display: none;
	}

@media only screen and (max-width: 640px) {
	.promo-link-text h3 + p {
		display: none;
		}
	.row-3 > .col.promo-link {
		width: 50%; 
		}
}
@media only screen and (min-width: 880px) {
	.promo-link-text h3 + p {
		display: block;
		}
	.row-3 > .col.promo-link {
		width: 33.333%; 
		}
}


/* ----- [ Content/Main ] -------------- */
.main-text {
	float: right;
	/*max-width: 520px;*/
	max-width: 650px;
	padding: 0 30px;
	}

.main-text h2 {
	margin: 0 0 0.8em;
	}
.main-text p {
	font-size: 1.1em;
	line-height: 1.5em;
	font-weight: 300;
	}

@media only screen and (min-width: 640px) { 
	.main-text p {
		line-height: 1.9em;
		padding-right: 1em; 
		}
}





/* ----- [ Home Page Body ] --------------- */
.section-body-text {
	margin: 0;
	padding: 40px 0;
	}

.section-aa {
	background: #fc0;
	margin: 0;
	padding: 20px 0;
	}
.section-aa h2 {
	margin: 0;
	}
.section-aa .certified-logo {
	width: 90px;
	vertical-align: middle;
	display: inline;
	}

.aa-logo-footer {
	max-width: 192px;
	width: 100%;
	}
	
@media only screen and (min-width: 640px) { 
	.section-body-text {
		padding: 70px 0;
		}
}
@media only screen and (min-width: 1024px) { 
	.section-body-text {
		padding: 120px 0;
		}
}

	
/* ----- [ Service Icons ] --------------- */
.section-icons {
	padding: 60px 15px;
	border-bottom: 8px solid #9f0101;
	}
.service-icons {
	text-align: center;
	margin: 0;
	padding: 0;
	list-style-type: none;
	}
.service-icon {
	display: inline-block;
	background: #fff;
	height: 140px;
	width: 140px;
	border-radius: 50%;
	margin: 10px 20px 40px;
	padding: 20px;
	}
.service-icon h3 {
	margin: 0 -10px;
	}
.service-icon img {
	width: 100%;
	height: auto;
	margin-bottom: 30px;
	}
@media only screen and (min-width: 880px) { 
	.service-icon {
		width: 12vw;
		height: 12vw;
		}
}

/* ----- [ Buttons ] --------- */
.button {
	display: inline-block;
	padding: 5px 14px;
	color: #fff;
	background: #1c95fb;
	border: 2px solid #1c95fb;
	cursor: pointer;
	width: 100%;
	opacity: 0.9;
	font-size: 1em;
	font-weight: 700;
	text-transform: uppercase;
	}
.button:hover {
	color: #1c95fb;
	background: none;
	text-decoration: none;
	}
	
.button.full {
	width: 100%;
	}

.button-green {
	color: #fff;
	background: transparent;
	border: 2px solid #fff;
	}
.button-green:hover {
	color: #fff;
	background: #3b3b3b;
	border: 2px solid #3b3b3b !important;
	}

.button.centered {
	margin-left: auto;
	margin-right: auto;
	}

@media only screen and (min-width: 640px) {
	.button {
		width: auto;
		}
}

/* ----- [ Contact Forms ] ------------ */
.section-contact-form {
	background: #eee url('../images/contact-form-bg.jpg') 50% 50% no-repeat;
	background-size: cover;
	color: #fff;
	}
.section-contact-form h2 {
	font-size: 2.2em;
	margin: 0.5em 0;
	}
.contact-big li {
	text-align: left;
	margin: 0;
	}
.fa.icon {
	display: inline-block;
	width: 26px;
	height: 26px;
	font-size: 18px;
	line-height: 26px;
	text-align: center;
	vertical-align: middle;
	margin-right: 8px;
	}
	
.contact-form {
	max-width: 800px;
	margin: 20px auto;
	margin: 20px auto 30px;
	}
.contact-form li {
	margin: 0 0 14px;
	padding: 0;
	position: relative;
	}
.antispam {
	display: none;
	}

.contact-form label {
	display: none !important;
	}

input,
textarea {
	font-weight: 300;
    font-size: 1em;
    width: 100%;
    padding: 6px 8px;
	color: #333;
	/*padding-left: 1.5em;*/
    /*-webkit-appearance: none;*/
    border: 1px solid #fff;
    border-radius: 0;
    }
    
.contact-form input,
.contact-form textarea {
	/*padding-left: 1.5em;*/
    -webkit-appearance: none;
    }
.contact-form textarea {
	height: 136px;
	}
input[type=submit],
input.button {
    -webkit-appearance: none;
	}

form .success,
form .error {
	color: #222;
	background: #b2d285;
	padding: 10px;
	text-align: center;
	border-radius: 5px;
	margin-bottom: 10px;
	}
form .error {
	background: #fac92b;
	}

.form-disclaimer {
	margin: 0 auto 1em;
	}
.form-disclaimer a {
	text-decoration: underline;
	border: none;
	}
.form-disclaimer a:hover {
	border: none;
	}

::-webkit-input-placeholder { color: #9a9a9a; text-transform: lowercase; }
:-moz-placeholder {color: #9a9a9a; text-transform: lowercase; }
::-moz-placeholder {color: #9a9a9a; text-transform: lowercase; }
:-ms-input-placeholder {color: #9a9a9a; text-transform: lowercase; }

@media only screen and (min-width: 640px) {
	.section-contact-form h2 {
		font-size: 3em;
		}
	.contact-big li {
		display: inline-block;
		margin: 1em 0.8em 1.8em;
		}
}


/* ----- [ MOT Form ] ------------ */
.mot-form-section {
	background: #f1f1f1;
	padding: 60px 0;
	color: #26305d;
	}
.mot-head {
	display: inline-block;
	padding: 15px 30px;
	color: #fff;
	background: #9f0101;
	border-color: #9f0101;
	}
.mot-terms {
	font-size: 0.8em;
	margin: 5px 0;
	text-align: left;
	color: #666;
	}
.book-mot {
	border: 1px solid #ccc;
	padding: 15px;
	margin-top: 30px;
	display: none;
	}
.book-mot.open {
	display: block;
	}
.book-mot .form-group label {
	display: none;
	}
.book-mot .col {
	margin-bottom: 10px;
	}
.book-mot .button {
	line-height: 32px;
	}

.form-field {
	position: relative;
	}
.form-field .fa {
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	right: 20px
}
.form-control {
	display: block;
	width: 100%;
	height: 46px;
	padding: 6px 40px 6px 12px;
	font-size: 14px;
	line-height: 1.42857143;
	color: #555;
	background-color: #fff;
	background-image: none;
	border: 1px solid #ccc;
	border-radius: 4px;
	-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
	-webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
	-o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
	transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s
}
.form-group label {
	display: block;
	margin: 5px 0;
	}

@media only screen and (min-width: 880px) {
	.book-mot {
		padding: 20px 30px 30px;
		}
	.book-mot .form-group label {
		display: block;
		}
}


/* ----  [ Map ] ----------------- */
.section-map {
	margin: 0;
	padding: 0;
	}
#map-canvas {
	/*padding-top: 40%;*/
	height: 540px;
	}
	
.address-overlay {
	position: absolute;
	width: 80%;
	left: 10%;
	top: 55%;
	padding: 20px;
	background: #fff;
	background: rgba(255,255,255,0.8);
	transform: translate(0, 0);
	box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
	}
.address-overlay p {
	font-size: 16px;
	line-height: 1.4em;
	}

@media only screen and (min-width: 880px) {
	.address-overlay {
		position: absolute;
		width: 300px;
		left: 53%;
		top: 50%;
		transform: translate(0, -50%);
		}
}



/* ----- [ Utility Styles ] --------------- */
.cms-content ul {
	margin: 0 0 1em;
	}
.cms-content p + ul {
	margin-top: -1em;
	}
.cms-content li {
	list-style-type: disc;
	list-style-position: outside;
	line-height: 1.6em;
	margin: 0 0 1em 1.5em;
	}
.cms-content img {
	max-width: 100%;
	}

.cms-content p img {
	display: inline;
	}

#editpage {
	position: fixed;
	bottom: 0;
	left: 0; 
	padding: 5px 6px; 
	background: #db1174; 
	color: #fff; 
	display: block;
	font-weight: bold; 
	z-index: 1000;
	}
#editpage:hover {
	background: #ffffcc;
	color: #000; 
	}
.WireFatalError {
	background: #a30000; 
	color: #fff; 
	padding: 1em; 
	position: relative;
	z-index: 9999;
	}


.centered,
.centered p,
.centered h2,
.centered h3,
.centered h4 {
	text-align: center;
	}

.text-left {
	text-align: left !important;
	}
.text-right {
	text-align: right !important;
	}
.text-center {
	text-align: center !important;
	}
	
.clearfix:before,
.clearfix:after {
	content: "\0020";
	display: block;
	height: 0;
	overflow: hidden;
	}
.clearfix:after {
	clear: both;
	}
.clearfix { 
	zoom: 1;
	}

/* ----- [ Footer ] --------------- */
footer {
	clear: both; 
	border: none;
	background: #26305d;
	padding: 40px 10px 10px;
	color: #fff;
	text-align: left;
	}

.footer-logos {
	margin: 20px auto;
    position: relative;
    overflow: hidden;
    text-align: center;
	}
.footer-logos:before,
.footer-logos:after {
    content: " ";
    position: absolute;
    top: 50%;
    margin-left: -999em;
    height: 2px;
    width: 997em;
    border-top: 1px solid #ccc;
	}
.footer-logos:after {
    left: auto;
    width: 999em;
    margin: 0 0 0 2em;
	}
.footer-logos img {
	max-width: 400px;
	width: 90%;
	display: inline;
	margin: 0 auto;
	}

.footer .col {
	margin-bottom: 1em;
	}

footer p,
footer li {
	font-size: 0.9em;
	line-height: 1.5em;
	font-weight: 400;
	color: #fff; 
	margin: 0 0 0.5em;
	}
footer h4 {
	font-size: 0.9em;
	font-weight: 700;
	text-transform: uppercase;
	}
footer li {
	margin: 0;
	}
footer a,
.site-credit a {
	color: #eee;
	}
footer a:hover,
.site-credit a:hover { 
	color: #ffffff;
	}


/* ----- [ Social Media Icons ] --------------- */
.social-networks {
	width: auto;
	margin-bottom: 30px;
	}
.social-networks li {
	display: inline-block;
	margin: 5px 10px 10px 0;
	padding: 0;
	}
.social-networks a {
	display: block;
	text-indent: -9999px;
	height: 30px;
	width: 30px;
	margin: 0;
	opacity: 0.8;
	-webkit-transition: opacity 0.3s ease;
	-moz-transition: opacity 0.3s ease;
	-o-transition: opacity 0.3s ease;
	transition: opacity 0.3s ease;
	}
.social-networks a.facebook { background: url('../images/facebook.png') 0 0 no-repeat; background-size: 100%; }
.social-networks a.instagram { background: url('../images/instagram.png') 0 0 no-repeat; background-size: 100%; }

.social-networks a:hover {
	opacity: 1;
	border: none;
	}

.top-link {
    position: fixed;
    bottom: 20px;
    right: 12px;
    opacity: 0;
    -webkit-transition: opacity .4s ease;
    -moz-transition: opacity .4s ease;
    -o-transition: opacity .4s ease;
    transition: opacity .4s ease;
    z-index: 100;
	}
.top-link a {
    background: #3b3b3b url('../images/arrow-up.png') center center no-repeat;
    display: block;
    height: 50px;
    outline: medium none;
    position: relative;
    text-indent: -9999px;
    width: 50px;
    z-index: 0;
    text-align: center;
    border: 1px solid #fff;
    }
.top-link a:hover {
	border: none;
	background-color: #1c95fb;
	}


/* PRINT STYLES */

@media print {
	/* If you're going to have a print stylesheet, now's the time */
}
