@charset "UTF-8";

@import url("https://use.typekit.net/mfk4fhn.css");

/*------------------------------------- Page Defaults -----------------------------------*/

*, *:after, *:before { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; }
body, html { font-size: 100%; padding: 0; margin: 0; }

/* Clearfix hack by Nicolas Gallagher: http://nicolasgallagher.com/micro-clearfix-hack/ */
.clearfix:before, .clearfix:after { content: " "; display: table; }
.clearfix:after { clear: both; }

body {
	background: #FFF;
	overflow-y: scroll;
	-webkit-overflow-scrolling: touch;
}
img {width:100%;}
.clear {clear:both;}

a:link {
    color: inherit;
	text-decoration:none;
}
a:visited {
	text-decoration:none;
}
a:hover {
	text-decoration:none;
}

/* ---- */
/* Text */
/* ---- */

.book {
	font-family: arboria, sans-serif;
    font-weight: 400;
    font-style: normal;
}
.bold {
	font-family: arboria, sans-serif;
    font-weight: 700;
    font-style: normal;
}
.heavy {
    font-family: arboria, sans-serif;
    font-weight: 900;
    font-style: normal;
}
.book.italics,
.bold.italics {
	font-style: italic;
}
.uppercase {
	text-transform:uppercase;
}
.lowercase {
	text-transform:lowercase;
}
.centered {
    text-align: center;
}
.left-align {
    text-align: left;
}
.underline {
    text-decoration: underline;
}

/* ------- */
/* Colours */
/* ------- */

.white {
    color: #FFFFFF;
}
.blue {
    color: #003057;
}
.baby-blue {
    color: #71c5e8;
}
.red {
    color: #c8102e;
}

/* ----------- */
/* Backgrounds */
/* ----------- */

.white-bg {
    background: #FFFFFF;
    position: relative;
}
.blue-bg {
    background: #003057;
    position: relative;
}
.baby-blue-bg {
    background: #71c5e8;
    position: relative;
}
.light-blue-bg {
    background: #d4eef8;
    position: relative;
}
.red-bg {
    background: #c8102e;
    position: relative;
}
.grey-bg {
    background: #f0f0f0;
    position: relative;
}

/* ----------------- */
/* Background Images */
/* ----------------- */

#home-bg {
	background: url('../gfx/banners/background.jpg') no-repeat;
	background-position: center;
	background-size: cover;
}

/* ---------- */
/* Navigation */
/* ---------- */

#logo {
	position: absolute;
	top: 50%;
    left: 0px;
    transform: translateY(-50%);
	width: 110px;
	height: 60px;
	background: url('../gfx/logo/primary.png') no-repeat;
	background-size: contain;
}
#main {
	height: auto;
	width: 100%;
	margin: 0;
	padding: 0;
}
#nav-contain {
	position: relative;
	width: 80%;
    max-width: 1200px;
	margin: 0 auto;
    padding: 0px;
}
#navigation {
	list-style: none;
	padding: 0px;
	margin: 0;
    text-align: right;
}
#navigation li,
#navigation .socials {
    position: relative;
	display: inline-block;
	font-size: 1.2em;
	padding: 0px 0px 0px 0px;
	margin: 0px 0px 0px 20px;
    color: #FFFFFF;
}
#navigation li:hover,
#navigation li:focus {
	color: #71c5e8;
	transition: 0.2s all;
}
#navigation .socials .social {
    display: inline-block;
    height: 30px;
    width: 30px;
    margin: 0px 0px -8px 5px;
}
#navigation .socials .social:hover,
#navigation .socials .social:focus {
    transform: scale(1.1);
    transition: 0.2s all;
}
#navigation .socials .social.facebook {
    background: url('../gfx/icons/facebook.png') no-repeat;
    background-size: contain;
}
#navigation .socials .social.instagram {
    background: url('../gfx/icons/instagram.png') no-repeat;
    background-size: contain;
}
#navigation .socials .social.youtube {
    background: url('../gfx/icons/youtube.png') no-repeat;
    background-size: contain;
}

/* ---- */
/* Flex */
/* ---- */

.flex-container {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}
.flex-container.flex-double,
.flex-container.flex-double-space,
.flex-container.flex-tripple,
.flex-container.flex-tripple-space,
.flex-container.flex-quad,
.flex-container.flex-quad-space
.flex-container.flex-text-left {
    justify-content: space-around;
}
.flex-container .flex-item {
    position: relative;
}
.flex-container .flex-full {
    width: 100%;
}
.flex-double .flex-item {
    width: 50%;
}
.flex-double-space .flex-item {
    width: calc(50% - 50px);
    margin: 25px;
}
.flex-tripple .flex-item {
    width: 33.3%;
}
.flex-tripple-space .flex-item {
    width: calc(33.3% - 50px);
    margin: 25px;
}
.flex-quad .flex-item {
    width: 25%;
}
.flex-quad-space .flex-item {
    width: calc(25% - 50px);
    margin: 25px;
}
.flex-item.flex-photo {
    position: relative;
}
.flex-item.flex-photo img {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ------- */
/* Buttons */
/* ------- */

.btn,
a.btn {
    display: inline-block;
    position: relative;
    margin: 20px 0px 0px 0px;
    padding: 10px 20px 10px 20px;
    background: #c8102e;
    border-radius: 8px;
    color: #FFFFFF;
    font-size: 1.1em;
}
.btn.solo {
    margin: 0px;
}
.btn:hover, 
.btn:focus {
    background: #FFFFFF;
    color: #c8102e;
    transition: 0.2s all;
}

/* ------- */
/* Wrapper */
/* ------- */

.wrapper {
	position: relative;
	width: 80%;
    max-width: 1200px;
	margin: 0 auto;
	padding: 100px 0px 100px 0px;
}
.wrapper .narrow {
    width: 70%;
    margin: 0 auto;
}
.wrapper .callout {
    display: inline-block;
    padding: 15px;
}
.wrapper .accent {
    display: inline-block;
    height: 3px;
    width: 60px;
    border-radius: 3px;
    margin: auto auto 5px auto;
}
.wrapper .spacer {
    width: 100%;
}
.wrapper .spacer.spacer-mini {
    height: 10px;
}
.wrapper .spacer.spacer-small {
    height: 25px;
}
.wrapper .spacer.spacer-large {
    height: 50px;
}
  

/* ------ */
/* Banner */
/* ------ */

.banner {
    position: relative;
    z-index: 1;
	width: 100%;
	margin: 0;
    padding: 50px 0px 50px 0px;
}
.banner #main {
    position: relative;
    z-index: 3;
}
.banner .wrapper {
    position: relative;
    z-index: 2;
}
.banner .wrapper .banner-graphic {
    position: absolute;
    z-index: -2;
    right: 0;
    bottom: -150px;
    width: 125%;
    height: auto;
}
.banner .wrapper .contact-blocks {
    position: absolute;
    z-index: 2;
    bottom: 0;
    left: 0;
    width: 100%;
}
.banner .wrapper .contact-blocks .contact-information {
    position: relative;
    display: block;
    padding: 0;
    margin: 0;
    overflow: hidden;
    border-radius: 8px;
}
.banner .wrapper .contact-blocks .contact-information .title {
    display: inline-block;
    padding: 15px 20px 15px 20px;
    margin: 0;
    width: 100%;
}
.banner .wrapper .contact-blocks .contact-information .phone {
    position: relative;
    display: inline-block;
    padding: 15px 20px 15px 20px;
    margin: 0;
    width: 100%;
    cursor: pointer;
}
.banner .wrapper .contact-blocks .contact-information .phone::before {
    content: '';
    position: absolute;
    right: 20px;
    top: 15px;
    height: 20px;
    width: 20px;
    background: url('../gfx/icons/phone.png') no-repeat;
    background-size: contain;
}

/* ---- */
/* Text */
/* ---- */

.wrapper h1 {
	font-size: 3.5em;
	line-height: 1.2em;
	padding: 0px 0px 10px 0px;
    margin: 0;
}
.wrapper h2 {
	font-size: 2.5em;
	line-height: 1.2em;
	padding: 0px 0px 30px 0px;
    margin: 0;
}
.wrapper h3 {
    font-size: 1.8em;
    line-height: 1.2em;
	padding: 0px 0px 20px 0px;
    margin: 0;
}
.wrapper p {
	font-size: 1.1em;
	line-height: 1.3em;
	padding: 0px 0px 30px 0px;
}
.wrapper p a:link,
.wrapper p a:visited {
    color: inherit;
    text-decoration: underline;
}
.wrapper p a:hover,
.wrapper p a:focus {
    opacity: 0.8;
    transition: 0.2s all;
}

/* ----- */
/* Lists */
/* ----- */

.wrapper .list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.wrapper .list li {
    position: relative;
    font-size: 1.1em;
	line-height: 1.3em;
	padding: 0px 0px 10px 20px;
}
.wrapper .list li::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 0;
    height: 10px;
    width: 10px;
    border-radius: 50%;
    background: url('../gfx/icons/arrow-white.png') no-repeat;
	background-size: contain;
}

/* ------- */
/* Columns */
/* ------- */

.wrapper .card {
    position: relative;
    padding: 0px 20px 0px 20px;
    margin: 0;
}
.wrapper .card .icon {
    display: block;
    width: 120px;
    height: auto;
    margin: auto auto 20px auto;
}
.wrapper .card:nth-of-type(2)::before,
.wrapper .card:nth-of-type(2)::after {
    content: '';
    position: absolute;
    top: 0;
    left: -25px;
    width: 3px;
    height: 100%;
    border-radius: 3px;
    background: #c8102e;
}
.wrapper .card:nth-of-type(2)::after {
    left: auto;
    right: -25px;
}
.wrapper .card p {
    padding: 20px 0px 0px 0px;
    margin: 0;
}


/* ------ */
/* Footer */
/* ------ */

footer {
	height: auto;
	width: 100%;
}
footer .wrapper {
    padding: 10px 0px 10px 0px;
}
footer .wrapper p {
    font-size: 0.8em;
    padding: 0;
}
footer .wrapper #ota {
    position: absolute;
    top: 0px;
    right: 0px;
    display: block;
    height: 50px;
    width: 180px;
    padding: 20px 0px 0px 90px;
    color: #FFF;
    font-size: inherit;
}
footer .wrapper #ota::before {
    content: '';
    display: block;
    position: absolute;
    top: 14px;
    left: 5px;
    height: 35px;
    width: 70px;
    border-radius: 3px;
    background: #FFF;
}
footer .wrapper #ota::after {
    content: '';
    display: block;
    position: absolute;
    top: 20px;
    left: 20px;
    height: 20px;
    width: 40px;
    background: url('../gfx/logo/ota.png') no-repeat;
    background-size: contain;
}

/* -------------- */
/* Form Structure */
/* -------------- */

#form .required-wrap {
	position: relative;
    padding: 10px;
}
#form .required-wrap .astrix {
	position: absolute;
	top: -10px;
    right: -15px;
    color: red;
}
#form .required-wrap .icon,
#form .required-wrap .icon-notes {
	position: absolute;
	top: calc(50% - 5px);
	right: 20px;
	transform: translateY(-50%);
	height: 20px;
	width: 20px;
	fill: rgba(0,0,0,0.25);
    pointer-events: none;
}
#form .required-wrap .icon-notes {
	top: 25px;
	right: 20px;
}
#form .g-recaptcha {
    display: none;
    position: absolute;
    top: -5000px;
    left: -5000px;
}
#form p {
    margin: 10px 0px 20px 0px;
    padding: 0;
}
#form #recap {
	position: absolute;
	z-index: 9999;
}
#form #vehicle-colour {
    display: none;
    visibility: hidden;
    opacity: 0;
}

/* ----------- */
/* Form Inputs */
/* ----------- */


#form input[type="text"],
#form input[type="email"],
#form input[type="phone"],
#form textarea {
    color: #003057;
    font-size: 1.1em;
    background: #FFF;
 	border: 1px solid #71c5e8;
    margin: 0px 0px 10px 0px;
 	padding: 15px 20px 15px 20px;
	border-radius: 8px;
    /* Font */
    font-family: arboria, sans-serif;
    font-weight: 400;
    font-style: normal;
}
#form input[type="text"],
#form input[type="email"],
#form input[type="phone"] {
  	display: inline-block;
  	width: 100%;
  	appearance: none;
  	box-shadow: none;
}
#form textarea {
	width: 100%;
	height: 100px;
	display: block;
  	appearance: none;
  	box-shadow: none;
}
#form #submit-btn {
    display: inline-block;
    position: relative;
    margin: 20px 0px 0px 0px;
    padding: 10px 30px 10px 30px;
    background: #c8102e;
    border-radius: 8px;
    color: #FFFFFF;
    font-size: 1.1em;
    text-transform: uppercase;
    /* Standards */
    width: inherit;
  	appearance: none;
  	box-shadow: none;
  	border: none;
    /* Font */
    font-family: arboria, sans-serif;
    font-weight: 700;
    font-style: normal;
}
#form #submit-btn:hover,
#form #submit-btn:focus {
	background: #FFFFFF;
    color: #c8102e;
    transition: 0.2s all;
}



/* --------------------------------- */
/* Placeholders and Focus Attributes */
/* --------------------------------- */

#form input[type="text"]:focus,
#form input[type="email"]:focus,
#form input[type="phone"]:focus,
#form select:focus,
#form textarea:focus {
    outline: none !important;
    border: 1px solid #003057;
    box-shadow: none;
}
#form ::-webkit-input-placeholder { /* WebKit, Blink, Edge */
	font-family: arboria, sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #003057;
}
#form :-moz-placeholder { /* Mozilla Firefox 4 to 18 */
    font-family: arboria, sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #003057;
    opacity:  1;
}
#form ::-moz-placeholder { /* Mozilla Firefox 19+ */
    font-family: arboria, sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #003057;
    opacity:  1;
}
#form :-ms-input-placeholder { /* Internet Explorer 10-11 */
    font-family: arboria, sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #003057;
}

/* ------------- */
/* Media Queries */
/* ------------- */

@media (max-width: 1300px) {
    
    /* Text */
    .wrapper h1 {
	font-size: 3em;
    }
    .wrapper h2 {
	font-size: 2.2em;
    }
    /* Banner */
    .banner .wrapper .banner-graphic {
    position: absolute;
    z-index: -2;
    right: 0;
    bottom: -150px;
    width: 140%;
    height: auto;
    }
    .banner .wrapper .contact-blocks .contact-information .hidden-break {
    opacity: 0;
    visibility: hidden;
    display: block;
    width: 100%;
    height: 0;
    }
    
}
@media (max-width: 1024px){
    
    /* Text */
    h1 br {
    display: none;
    visibility: hidden;
    opacity: 0;
    }
    /* Flex */
    .flex-double .flex-item,
    .flex-tripple .flex-item,
    .flex-quad .flex-item {
    width: 100%;
    }
    .flex-double-space .flex-item,
	.flex-tripple-space .flex-item,
    .flex-quad-space .flex-item {
    width: 100%;
    margin: 25px;
    }
    /* Banner */
    .banner .wrapper .banner-graphic {
    position: relative;
    z-index: -2;
    right: auto;
    bottom: auto;
    width: 100%;
    height: auto;
    margin: -50px 0px -153px 0px;
    }
    .banner .wrapper .contact-blocks {
    position: relative;
    bottom: auto;
    left: auto;
    }
    .banner .wrapper .contact-blocks .contact-information {
    margin: 30px 0px 0px 0px;
    }
    .banner .wrapper .contact-blocks .contact-information .hidden-break {
    opacity: 1;
    visibility: visible;
    display: inherit;
    width: 3px;
    height: auto;
    }
    /* Cards */
    .wrapper .card {
    position: relative;
    padding: 20px;
    margin: 20px 0px 20px 0px;
    border: 8px solid #c8102e;
    border-radius: 8px;
    }
    .wrapper .card .icon {
    display: block;
    width: 120px;
    height: auto;
    margin: auto auto 20px auto;
    }
    .wrapper .card:nth-of-type(2)::before,
    .wrapper .card:nth-of-type(2)::after {
    content: '';
    display: none;
    visibility: hidden;
    opacity: 0;
    }
    
}
@media (max-width: 768px){
    
    /* Navigation */
    #logo {
	width: 90px;
	height: 50px;
    }
    #navigation li,
    #navigation .socials {
    position: relative;
	display: inline-block;
	font-size: 1.1em;
	padding: 0px 0px 0px 0px;
	margin: 0px 0px 0px 10px;
    color: #FFFFFF;
    }
    #navigation .socials .social {
    display: inline-block;
    height: 25px;
    width: 25px;
    margin: 0px 0px -6px 5px;
    }
    /* Text */
    .wrapper h1 {
	font-size: 2.5em;
    }
    .wrapper h2 {
	font-size: 2em;
    }
    .wrapper h3 {
    font-size: 1.4em;
    }
    .wrapper p {
	font-size: 1em;
    }
    /* Wrapper */
    .btn,
    #form #submit-btn {
    width: 100%;
    }
    /* Footer */
    footer .wrapper #ota {
    position: relative;
    margin: 0px 0px 20px 0px;
    }
    
}