/*! HTML5 Boilerplate v8.0.0 | MIT License | https://html5boilerplate.com/ */

/* main.css 2.1.0 | MIT License | https://github.com/h5bp/main.css#readme */
/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */
 
@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Bold.woff2') format('woff2'),
        url('../fonts/Poppins-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-SemiBold.woff2') format('woff2'),
        url('../fonts/Poppins-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-BoldItalic.woff2') format('woff2'),
        url('../fonts/Poppins-BoldItalic.woff') format('woff');
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-SemiBoldItalic.woff2') format('woff2'),
        url('../fonts/Poppins-SemiBoldItalic.woff') format('woff');
    font-weight: 600;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Regular.woff2') format('woff2'),
        url('../fonts/Poppins-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Italic.woff2') format('woff2'),
        url('../fonts/Poppins-Italic.woff') format('woff');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */

:root{
	/*--Colours--*/
	--pink: #001375;
	--green: #13c265;
	--yellow: #fbc740;
	--navy: #001375;
	--purple: #fff;
	--black: #000000;
	--white: #fff;
	--light-grey: #f0f2f1;
	/*--Fonts--*/
	--font-primary: 'poppins', sans-serif;
	--font-primary-itallic: 'poppins', sans-serif;
	--font-body: 'poppins', sans-serif;
	/*--Text Sizing--*/
	--font-large: 4.5rem;
	--font-med-large: 3.5rem;
	--font-medium: 2.8rem;
	--font-small: 1.8rem;
	--font-base: 1.6rem;
}

body{
	box-sizing: border-box;
}

html {
  color: #000;
  font-size: 62.5%;
  line-height:auto;
  box-sizing: border-box;
}

div{
	box-sizing: border-box;
}

/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * Vendor-prefixed and regular ::selection selectors cannot be combined:
 * https://stackoverflow.com/a/16982510/7133471
 *
 * Customize the background color to match your design.
 */

::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}

::selection {
  background: #b3d4fc;
  text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */

textarea {
  resize: vertical;
}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */

.ani{
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}

.ani:hover{
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}

.underline{
	position: relative;
	display: inline-block;
}

.underline:after{
	content: "";
	width: 100%;
	height: 5px;
	background: var(--navy);
	opacity: 0.6;
	position: absolute;
	bottom: 0;
	left: 0;
}

/*--Typography--*/

h1{
	font-family: var(--font-primary);
	color: var(--navy);
	font-weight: 600;
}

h1 em{
	font-family: var(--font-primary-itallic);
}

h2{
	font-family: var(--font-primary);
	color: var(--black);
	font-weight: 600;
}

h3{
	font-family: var(--font-primary);
	font-size: var(--font-medium);
}

h4{
	font-size: var(--font-small);
}

h4, h5, h6{
	font-family: var(--font-primary);
}

a{
	font-family: var(--font-primary);
	font-weight: 700;
}

p{
	font-family: var(--font-primary);
}

h1{
	font-size: var(--font-large);
}

h2{
	font-size: var(--font-med-large);
}

p, a{
	font-size: var(--font-base);
}

em.green, span.green{
	color: var(--green);
}

em.yellow, span.yellow{
	color: var(--yellow);
}

em.pink, span.pink{
	color: var(--pink);
}

p.large{
	font-size: var(--font-medium);
}

p a{
	display: inline;
	border-bottom: 2px solid var(--pink);
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}

p a:hover{
	background: rgba(232, 60, 155, 0.05);
	text-decoration: none;
	color: var(--pink);
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}

ul{
	margin: 0px;
	padding: 0px;
}

ul li{
	position: relative;
	list-style: none;
	padding: 0px;
	margin: 0px;
	font-size: var(--font-base);
	font-weight: 500;
}

.content.pad-right{
	padding-right: 120px;
}

.content.pad-left{
	padding-left: 120px;
}

/*--Header---*/

.header{
	padding: 0px 0px;
	z-index: 10;
	top: 0px !important;
	left: 0;
	width: 100%;
	height: 0px !important;
}

.header-inner{
	padding: 10px 0px;
	border-bottom: 1px solid rgba(255,255,255,0.3);
	background-color: var(--navy);
}

.purplebg{
	background-color: var(--purple);
	color: var(--white);
	padding: 5px;
	border-radius: 5px;
}

.uk-sticky-placeholder{
	display: none;
}

.header.uk-active .header-inner{
	background: var(--navy);
}

/*--Global---*/

.section{
	padding: 80px 0px;
}

.section-grey{
	background: var(--light-grey);
}

.section-green{
	background-color: #92c4b7;
}

/*--Buttons---*/

.button{
	padding: 12px 30px;
	background: var(--black);
	color: var(--white);
	border-radius: 5px;
	display: inline-block;
	box-sizing: border-box;
	font-weight: 400;
}

.button-blank{
	padding: 0px;
	background: transparent;
	color: var(--navy);
}

.button.large{
	padding: 18px 50px;
	width: 100%;
	display: block;
	font-size: var(--font-small);
	box-sizing: border-box;
}

.button-line{
	padding: 0px;
	background: transparent;
	color: var(--navy);
}

.button-line svg{
	fill: var(--navy) !important;
}

.button:hover{
	text-decoration: none;
	color: inherit;
}

.button svg{
	fill: var(--white);
}

.button.right-i svg{
	margin-left: 10px;
}

.button.left-i svg{
	margin-right: 10px;
}

/*Green*/

.button-green{
	background: var(--green);
}

.button-green:hover{
	opacity: 0.8;
}

.button-white{
	background: var(--white);
	color: var(--navy) !important;
}

.button-white svg{
	fill: var(--navy) !important;
}

.button-white:hover{
	opacity: 0.8;
}

/*Navy*/
.button-navy{
	background: var(--navy);
}

.button-navy:hover{
	background: var(--navy);
	color: var(--white);
}

/*-- Play Button --*/
.play-button{
	color: var(--navy) !important;
	padding: 10px 20px 10px 50px;
	display: inline-block;
	border-radius: 3px;
	text-align: center;
	background-color: var(--white);
	border-radius: 3px;
	box-shadow: 0px 0px 30px rgba(0,0,0,0.5);
	transform: scale(1.2)
}

.play-button:hover{
	text-decoration: none;
	color: var(--white);
}

.play-button .icon{
	position: absolute;
	left: -20px;
	top: -10px;
	background: var(--purple);
	height: 60px;
	width: 60px;
	text-align: center;
	color: var(--white);
	border-radius: 100%;
	font-size: 2.5rem;
	line-height: 55px;
}

.play-button .icon svg{
	fill: var(--white);
}

/*--Hero---*/

.section-hero{
	padding-top: 140px;
	padding-bottom: 50px;
	position: relative;
	background-color: var(--navy);
	background-size: cover;
	background-position: top right;
	background-repeat: no-repeat;
	background-image: url(../img/hero.jpg);
}

.hero-content{
	padding-right: 80px;
}

.hero-content .hero-points{
	margin-top: 40px;
}

.hero-content .hero-points .hero-point-inner{
	position: relative;
}

.hero-content .hero-points .hero-point-inner span.icon, .hero-content .hero-points .hero-point-inner span.content{
	display: inline-block;
	vertical-align: top;
}

.hero-content .hero-points .hero-point-inner span.content{
	max-width: 300px;
	padding-left: 20px;
}

.hero-content .hero-points .hero-point-inner span.content h4{
	color: var(--pink);
	margin-bottom: 0px;
}

.hero-content .hero-points .hero-point-inner span.content p{
	margin-top: 0px;
	margin-bottom: 0px;
	font-size: 1.4rem;
	color: #6f6f6f;
}

#cta-box{
	position: relative;
	z-index: 2;
	display: block;
	background: var(--white);
	border: 8px solid var(--pink);
	border-radius: 15px;
	padding: 45px;
	text-align: center;
}

#cta-box .form-arrow{
	bottom: 120px;
    left: -78px;
    top: auto;
    pointer-events: none;
}

#cta-box .inner h3{
	color: var(--pink);
}

#cta-box .inner .points{
	margin: 0px;
	padding: 0px;
}

#cta-box .inner .points li{
	display: block;
	font-family: var(--font-body);
	font-size: var(--font-small);
	margin: 20px 0px;
}

#cta-box .inner .points li svg{
	color: var(--green);
	width: 18px;
	height: 18px;
	margin-right: 10px;
}

#cta-box .inner .button{
	margin-top: 40px;
	font-size: 2.5rem;
}

#cta-box .inner .sub-text{
	margin-top: 20px;
}

#cta-box .inner .sub-text p{
	color: #a4a4a4;
	font-size: 1.2rem;
	margin: 0px;
}

#cta-box .inner .sub-text a{
	color: var(--pink);
	font-family: var(--font-primary);
	font-size: var(--font-small)
}

#hero-image-section .john{
	left: 100px;
	z-index: 4;
}

.quote-box{
	background: var(--white);
	padding: 20px;
	border-radius: 10px;
	font-family: var(--font-body);
	font-size: 1.2rem;
	color: var(--black);
	position: absolute;
	max-width: 160px;
	z-index: 3;
	text-align: right;
}

#hero-image-section .quote-box.l:after{
	top: 100%;
	left: 35px;
	border: solid transparent;
	content: "";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
	border-color: rgba(136, 183, 213, 0);
	border-top-color: var(--white);
	border-width: 10px;
}

#hero-image-section .quote-box.l{
	left: 40px;
	top: -75px;
}

#hero-image-section .quote-box.j{
	right: -100px;
	bottom: 50px;
}

#hero-image-section .quote-box.j:after{
	right: 100%;
	top: 20px;
	border: solid transparent;
	content: "";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
	border-color: rgba(136, 183, 213, 0);
	border-right-color: var(--white);
	border-width: 10px;
}

.reviews-intro{
	padding-bottom: 0px !important;
}

/*--Hero Checks--*/
.check-items{
	position: relative;
	background: var(--white);
	z-index: 4;
	padding: 40px;
	border-radius: 5px;
	box-shadow: 0px 0px 20px rgba(0,0,0,0.1);
}

.check-items h1{
	font-weight: 600;
	color: var(--navy);
	font-size: 2.6rem;
}

.check-items ul{
	padding: 0px;
	margin: 0px;
	position: relative;
	z-index: 2;
}

.check-items ul li{
	font-size: 1.6rem;
	color: var(--navy);
	margin: 20px 0px;
	font-family: var(--font-primary);
}

.check-items ul li span.icon{
	width: 30px;
	height: 30px;
	display: inline-block;
	background: var(--navy);
	border-radius: 100%;
	text-align: center;
	line-height: 30px;
	margin-right: 15px;
}

.check-items ul li span.icon svg{
	fill: var(--white);
}

/*--info boxes--*/
.info-box{
	border-radius: 5px;
	border: 3px solid var(--navy);
}

.info-box .content{
	padding: 30px;
}

.info-box .content h4{
	font-weight: 600;
}

.info-box .content p{
	margin-bottom: 0px;
}

/*--Process Section---*/

.process-block{
	position: relative;
	padding: 20px 0px;
}

.process-block.one:after{
	content: "";
	position: absolute;
	width: 85%;
	height: 5px;
	background: #e5e5e5;
	bottom: -5px;
	left: 50%;
	margin-left: -44%;
}

.process-block.one:before{
	content: "";
    position: absolute;
    height: 55px;
    width: 5px;
    background: #e5e5e5;
    bottom: -5px;
    left: 39px;
}

.process-block.two:after{
	content: "";
	position: absolute;
	width: 85%;
	height: 5px;
	background: #e5e5e5;
	bottom: -5px;
	left: 50%;
	margin-left: -44%;
}

.process-block.two:before{
	content: "";
    position: absolute;
    height: 55px;
    width: 5px;
    background: #e5e5e5;
    bottom: -5px;
    right: 59px;
}

.process-block.two .number:before{
	content: "";
    height: 49px;
    width: 5px;
    background: #e5e5e5;
    position: absolute;
    top: -49px;
    right: 50%;
    margin-right: -2.5px;
}

.process-block.three .number:before{
	content: "";
    height: 49px;
    width: 5px;
    background: #e5e5e5;
    position: absolute;
    top: -49px;
    right: 50%;
    margin-right: -2.5px;
}

.process-block.three .number:after{
	content: "";
    height: 48px;
    width: 5px;
    background: var(--green);
    position: absolute;
    bottom: -48px;
    right: 50%;
    margin-right: -2.5px;
}

.process-block.four:after{
	content: "";
	position: absolute;
	width: 85%;
	height: 5px;
	background: #e5e5e5;
	bottom: -5px;
	left: 50%;
	margin-left: -44%;
	background: var(--green);
}

.process-block.four:after{
	content: "";
	position: absolute;
	width: 85%;
	height: 5px;
	background: #e5e5e5;
	top: -5px;
	left: 50%;
	margin-left: -44%;
	background: var(--green);
}

.process-block.four .number:before{
	content: "";
    height: 42px;
    width: 5px;
    background: #e5e5e5;
    position: absolute;
    top: -42px;
    right: 50%;
    margin-right: -2.5px;
    background: var(--green);
}

.process-block.four .number{
	background-color: var(--green) !important;
}

.process-block span.number{
	font-family: var(--font-primary);
	display: inline-block;
	background: var(--navy);
	width: 80px;
	height: 80px;
	color: var(--white);
	text-align: center;
	line-height: 78px;
	border-radius: 100%;
	font-size: var(--font-medium);
	position: relative;
}

.process-block:nth-of-type(even) span.number{
	background-color: var(--purple);
}

.process-block .content{
	padding: 10px 0px;
}

.process-block p{
	margin: 0px;
}

.process-block h4{
	color: var(--navy);
	font-weight: 500;
}

#process-image .quote-box.e{
	background: var(--light-grey);
	bottom: 100px;
	left: -100px;
	max-width: 220px;
	text-align: left;
	font-size: 1.6rem;
}

.card-inner h4{
	font-weight: 500;
	color: var(--navy);
}

.card-inner img{
	max-height: 50px;
}

/*--CTA Block--*/

.cta-strip{
	display: block;
	padding: 100px 0px;
}

.cta-strip.navy{
	background-color: var(--navy);
	background-size: 100%;
	background-position: center center;
	background-repeat: no-repeat;
}

.cta-strip.purple{
	background-color: var(--purple);
	background-image: url(../img/bg-lines03.webp);
	background-size: 100%;
	background-position: center center;
	background-repeat: no-repeat;
}


.cta-strip h2{
	font-family: var(--font-body);
}

/*--Testimonials--*/

.testimonial-block{
	background: var(--white);
	padding: 40px;
	border-radius: 10px;
}

.testimonial-block h4{
	color: var(--pink);
	font-family: var(--font-primary);
	margin: 0px;
}

.testimonial-block h5{
	margin-top: 10px;
	margin-bottom: 0px;
}

.testimonial-block h6{
	color: var(--green);
	font-family: var(--font-primary);
	font-size: var(--font-small);
	margin-top: 20px;
	margin-bottom: 0px;
}

.testimonial-block p{
	margin-top: 0px;
	margin-bottom: 0px;
	color: #9c9c9c;
}

/*--Form Page--*/

#form-primary{
	padding-top: 150px;
	background: var(--navy);
}

/*--form---*/

.main-form{
	position: relative;
}

#form{
	background: var(--white);
	padding: 40px;
	border-radius: 0px;
	position: relative;
	z-index: 3;
	border-radius: 5px;
}

#form .form-arrow{
	position: absolute;
    left: -80px;
    top: 70px;
    max-width: 100px;
}

#form p{
	margin-top: 0px;
}

#form p{
	color: var(--black);
}

#form h3{
	margin-bottom: 40px;
	color: var(--black);
	text-align: center;
	font-weight: 600;
}

#form label{
	font-family: var(--font-primary);
	font-weight: var(--font-400);
	font-size: 1.2rem;
	color: var(--blue);
	margin-bottom: 5px;
	display: block;
}

#form .form-row{
	margin-bottom: 20px;
}

#form .form-row.slider{
	margin-bottom: 20px;
	background: var(--grey);
	padding: 10px;
	border-radius: 5px;
}

#form .input-container{
	display: block;
	width: 100%;
	position: relative;
}

#form .input-container .icon{
	position: absolute;
	top: 50%;
	margin-top: -10px;
	left: 18px;
}

#form .input-container .icon-down{
	position: absolute;
	top: 50%;
	margin-top: -15px;
	right: 18px;
	pointer-events: none;
}

#form .input-container .icon svg path, #form .input-container .icon-down svg path{
	fill: var(--pink);
}

#form input, #form select{
	width: 100%;
	box-sizing: border-box;
}

#form textarea{
	box-sizing: border-box;
	width: 100%;
	min-height: 100px;
	border: none;
	border-bottom: 2px solid var(--grey);
}

#form input[type="text"], #form input[type="email"], #form input[type="tel"], #form select, #form input[type="number"], #form textarea{
	font-family: var(--font-primary);
	font-weight: var(--font-400);
	padding: 30px;
	font-size: var(--font-base);
	border-radius: 5px;
	border: 2px solid var(--light-grey);
	background: var(--light-grey);
	-webkit-appearance: none;
	appearance: none;
	outline: none;
}

#form input[type="text"], #form input[type="email"], #form input[type="tel"], #form input[type="number"]{
	padding: 25px 25px 25px 50px;
}

#form input:hover, #form input:focus, #form input:valid, #form select:hover, #form select:focus, #form textarea:hover, #form textarea:focus, #form textarea:valid{
	border-color: var(--pink);
}

#form .form-row.checkbox label{
	width: auto;
	display: inline-block;
	vertical-align: middle;
}

#form .form-row.checkbox input{
	display: inline-block;
	width: auto;
	vertical-align: middle;
}

#form button{
	width: 100%;
	border-radius: 50px;
	border: none;
	-webkit-appearance: none;
	appearance: none;
	font-family: var(--font-body);
	font-size: 2.5rem;
	padding: 25px 0px;
	background: var(--green);
	color: var(--white);
}

#form button svg{
	margin-left: 20px;
}

#form button:hover{
	background: var(--pink);
	cursor: pointer;
}

#form label.error{
	background: red;
	color: var(--white);
	padding: 5px;
	border-radius: 5px;
	width: 100%;
	display: inline-block;
	box-sizing: border-box;
	margin-top: 5px;
}

.section-intro-points{
	padding: 40px 0px;
}

.section-intro-points h3{
	margin-top: 0px;
}

.landing-footer{
	padding: 60px 0px;
}

.landing-footer a{
	display: inline-block;
	margin: 0px 10px;
}

/*--Thank you page --*/

.thankyou{
	padding-top: 80px;
	padding-bottom: 80px;
	background: var(--navy);
}

.number-block span.number{
	display: inline-block;
	width: 50px;
	height: 50px;
	border-radius: 100%;
	background: var(--navy);
	text-align: center;
	font-family: var(--font-primary);
	color: var(--white);
	font-weight: 600;
	font-size: 1.8rem;
	line-height: 49px;
}

.number-block h4{
	font-weight: 600;
	color: var(--navy);
}

/*--Numbered Blocks --*/

.numbered-block{
	display: block;
	background: var(--white);
	padding: 120px 30px 30px 30px;
	border-radius: 10px;
	position: relative;
	text-align: center;
}

.numbered-block p{
	margin: 0px;
}

.numbered-block .number{
	font-family: var(--font-primary);
	font-size: var(--font-medium);
	position: absolute;
	display: inline-block;
	width: 60px;
	height: 60px;
	top: 30px;
	border-radius: 100%;
	background: var(--black);
	color: var(--white);
	text-align: center;
	line-height: 60px;
	left: 50%;
	margin-left: -30px;	
}

.numbered-block .number.yellow{
	background: var(--yellow);
}

.numbered-block .number.pink{
	background: var(--pink);
}

.numbered-block .number.green{
	background: var(--green);
}

/* ==========================================================================
   Helper classes
   ========================================================================== */

/*
 * Hide visually and from screen readers
 */

.hidden,
[hidden] {
  display: none !important;
}

/*
 * Hide only visually, but have it available for screen readers:
 * https://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 *
 * 1. For long content, line feeds are not interpreted as spaces and small width
 *    causes content to wrap 1 word per line:
 *    https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe
 */

.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
  /* 1 */
}

/*
 * Extends the .sr-only class to allow the element
 * to be focusable when navigated to via the keyboard:
 * https://www.drupal.org/node/897638
 */

.sr-only.focusable:active,
.sr-only.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  white-space: inherit;
  width: auto;
}

/*
 * Hide visually and from screen readers, but maintain layout
 */

.invisible {
  visibility: hidden;
}

/*
 * Clearfix: contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */

.clearfix::before,
.clearfix::after {
  content: " ";
  display: table;
}

.clearfix::after {
  clear: both;
}

/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   These examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */

@media only screen and (max-width: 1870px) {
	
	#hero-image-section{
		max-width: 300px
	}
	
	#hero-image-section .john{
		max-height: 240px;
	}
	
	#hero-image-section .quote-box.l {
	    right: -80px;
	    left: auto;
	    top: 8px;
	    max-width: 160px;
	    padding-left: 90px;
	}
	
	#hero-image-section .quote-box.l:after{
		right: 100%;
		top: 50%;
		border: solid transparent;
		content: "";
		height: 0;
		width: 0;
		position: absolute;
		pointer-events: none;
		border-color: rgba(136, 183, 213, 0);
		border-right-color: var(--white);
		border-width: 10px;
		margin-top: -10px;
		left: auto;
	}
	
	#hero-image-section .quote-box.j{
		right: -140px;
	}
	
	#process-image{
		max-width: 630px;
	}
	
	
}


@media only screen and (max-width: 1440px) {
	
	:root{
		--font-large: 4.2rem;
		--font-med-large: 3.2rem;
		--font-medium: 2.6rem;
		--font-small: 1.8rem;
		--font-base: 1.5rem;
	}
	
	.hero-content{
		position: relative;
		z-index: 4;
	}
	
	.section-hero{
		padding-top: 130px;
	}
	
	#hero-image-section{
		max-width: 300px
	}
	
	#hero-image-section .john{
		max-height: 240px;
	}
	
	#hero-image-section .quote-box.l {
	    right: -80px;
	    left: auto;
	    top: 8px;
	    max-width: 160px;
	    padding-left: 90px;
	}
	
	#hero-image-section .quote-box.l:after{
		right: 100%;
		top: 50%;
		border: solid transparent;
		content: "";
		height: 0;
		width: 0;
		position: absolute;
		pointer-events: none;
		border-color: rgba(136, 183, 213, 0);
		border-right-color: var(--white);
		border-width: 10px;
		margin-top: -10px;
		left: auto;
	}
	
	#hero-image-section .quote-box.j{
		right: -140px;
	}
	
	#process-image{
		max-width: 630px;
	}
	
}

@media only screen and (max-width: 1366px) {
	
	#cta-box .inner .button{
		font-size: 2.2rem;
	}
	
	#cta-box{
		padding: 35px;
	}
	
}

@media only screen and (max-width: 1280px) {

	:root{
		--font-large: 4rem;
		--font-med-large: 3rem;
		--font-medium: 2.4rem;
		--font-small: 1.8rem;
		--font-base: 1.5rem;
	}
	
	#cta-box{
		padding: 25px;
	}
	
	.head-circle{
		max-width: 560px;
	}
	
	#hero{
		overflow: hidden;
	}
	
	#cta-box .form-arrow {
	    bottom: 100px;
	    left: -68px;
	    max-width: 90px;
	    top: auto;
	    pointer-events: none;
	}
	
	#hero-image-section{
		max-width: 240px;
	    bottom: -40px;
	    left: -20px;
	}
	
	#hero-image-section .john{
		max-height: 190px;
		left: 80px
	}
	
	#hero-image-section .quote-box.l {
	    right: -203px;
	    left: auto;
	    top: -19px;
	    max-width: 260px;
	    padding-left: 70px;;
	}
	
	#hero-image-section .quote-box.j{
		right: -439px;
		max-width: 440px;
		bottom: 70px;
	}
	
	#process-image {
	    max-width: 540px;
	}
	
	.process-block.one::before{
		height: 55px;
	}
	
	.process-block.one::after{
		margin-left: -43%;
		width: 86%;
	}
	
	.process-block.two .number::before{
		content: "";
	    height: 44px;
	    width: 5px;
	    background: #e5e5e5;
	    position: absolute;
	    top: -44px;
	    right: 50%;
	    margin-right: -3.5px;
	}
	
	.process-block.two::before {
	    content: "";
	    position: absolute;
	    height: 50px;
	    width: 5px;
	    background: #e5e5e5;
	    bottom: -5px;
	    right: 42px;
	}
	
	.process-block.two::after {
	    content: "";
	    position: absolute;
	    width: 86%;
	    height: 5px;
	    background: #e5e5e5;
	    bottom: -5px;
	    left: 50%;
	    margin-left: -44%;
	}
	
	.process-block.three .number::before {
	    content: "";
	    height: 57px;
	    width: 5px;
	    background: #e5e5e5;
	    position: absolute;
	    top: -57px;
	    right: 50%;
	    margin-right: -0.5px;
	}
	
	.process-block.three .number::after {
	    content: "";
	    height: 125px;
	    width: 5px;
	    background: var(--pink);
	    position: absolute;
	    bottom: -125px;
	    right: 50%;
	    margin-right: -2.5px;
	}
	
	.cta-strip .button{
		padding: 18px 0px;
	}

}

@media only screen and (max-width: 1024px) {
	
	:root{
		--font-large: 3.8rem;
		--font-med-large: 2.8rem;
		--font-medium: 2.4rem;
		--font-small: 1.8rem;
		--font-base: 1.5rem;
	}
	
	.hide-tab{
		display: none;
	}
	
	.hero-content .hero-points .hero-point-inner span.content{
		padding-left: 0px;
	}
	
	.hero-content .hero-points{
		margin-top: 0px;
	}
	
	#process-image .quote-box.e {
	    background: var(--light-grey);
	    bottom: auto;
	    left: 70px;
	    max-width: 220px;
	    text-align: left;
	    font-size: 1.6rem;
	    top: -40px;
	}
	
	.process-block.one::after {
	    margin-left: -41%;
	    width: 86%;
	}
	
	.process-block.two::after {
	    content: "";
	    position: absolute;
	    width: 87%;
	    height: 5px;
	    background: #e5e5e5;
	    bottom: -5px;
	    left: 52%;
	    margin-left: -44%;
	}
	
	.process-block.two::before {
	    content: "";
	    position: absolute;
	    height: 50px;
	    width: 5px;
	    background: #e5e5e5;
	    bottom: -5px;
	    right: 22px;
	}
	
	.process-block.three .number::before {
	    content: "";
	    height: 75px;
	    width: 5px;
	    background: #e5e5e5;
	    position: absolute;
	    top: -75px;
	    right: 50%;
	    margin-right: -0.5px;
	}
	
	.process-block.three .number::after {
	    content: "";
	    height: 135px;
	    width: 5px;
	    background: var(--pink);
	    position: absolute;
	    bottom: -135px;
	    right: 50%;
	    margin-right: -2.5px;
	}
		
	
}

@media only screen and (max-width: 769px) {
	
	:root{
		--font-large: 3rem;
		--font-medium: 2.5rem;
		--font-small: 1.8rem;
		--font-smaller: 1.2rem;
		--font-base: 1.2rem;
	}
	
	.hide-tab{
		display: block;
	}
	
	.hide-mob{
		display: none;
	}
	
	.head-circle{
		max-width: 260px;
	}
	
	.section-hero{
		padding-top: 220px;
	}
	
	.btn.primary{
		padding: 15px 17px;
	}
	
	.header .button-row{
		margin-top: 10px !important;
	}
	

	
	.landing-header .logo svg{
		max-width: 120px;
		height: auto;
	}
	
	#landing-hero{
		padding: 140px 0px 20px 0px;
	}
	
	#landing-hero .benefits{
		margin-top: 0px;
	}

	
	#landing-hero .benefits .benefit{
		padding: 45px 10px 10px 10px;
	}
	
	.main-form{
		margin-bottom: 0px !important;
	}
	
	img.accreditation{
		max-width: 100%;
	}
	
	#form-pop .intro-price {
	    display: none !important;
	}
	
	#form-pop .uk-position-center-left{
		position: relative !important;
		top: auto !important;
		left: auto !important;
		transform: none !important;
	}
	
	#form-pop .content{
		padding: 30px;
	}
	
	.modal-img{
		min-height: 200px !important; 
	}
	
	.form-arrow{
		display: none;
	}
	
	#hero-image-section .quote-box{
		display: none;
	}
	
	.trustpilot-widget iframe{
		height: 290px !important;
	}
	
	.process-block{
		text-align: center !important;
		padding: 0px;
	}
	
	.process-block:before, .process-block:after, .process-block span.number:after, .process-block span.number:before{
		display: none;
	}
	
	#process-image{
		display: none;
	}
	
	.process-block .uk-text-right{
		text-align: center !important;
	}
	
	.cta-strip{
		padding: 40px;
	}
	
	.trustpilot-widget iframe{
		height: 140px !important;
	}
	
	#form{
		padding: 20px;
	}
	
	#form .form-row{
		margin-bottom: 0px;
	}
	
	#form button{
		font-size: 2.2rem;
	}
	
	#form h3{
		margin-bottom: 10px;
	}
	
	.hero-content{
		padding-right: 0px;
	}
	
	.content.pad-right{
		padding-right: 0px;
	}
	
	.section{
		padding: 40px 0px;
	}
	
	.content.pad-left{
		padding-left: 0px;
	}
	
	
}

@media only screen and (max-width: 480px) {
	
	:root{
		--font-large: 2.8rem;
		--font-medium: 2.2rem;
		--font-small: 1.4rem;
		--font-smaller: 1.2rem;
		--font-base: 1.2rem;
	}
	
	.header{
		position: relative;
		height: auto !important;
	}
	
	.header .button-row{
		margin-top: 10px !important;
	}

	.section-hero{
		background-image: none;
		padding: 20px 0px 20px 0px !important;
		margin: 0px !important;
	}
	
	.hero-mob{
		height: 190px;
		width: 100%;
		background-color: var(--white);
		background-image: url(../img/hero.jpg);
		background-size: cover;
		background-position: right top;
	}
	
	.head-logo{
		max-width: 120px;
	}
	
	.hero-content .hero-points .hero-point-inner span.content p{
		font-size: 1rem;
	}
	
	.hero-content .hero-points .hero-point-inner span.content{
		max-width: 100%;
		padding: 0px;
	}
	
	.hero-content .hero-points{
		margin-top: 0px;
	}
	
	.hero-content .hero-points .hero-point-inner span.icon svg{
		max-width: 38px;
		margin-bottom: 10px;
	}
	
	#cta-box .inner .button{
		font-size: 2rem;
		padding: 18px 0px;
	}
	
	.section-hero{
		padding-bottom: 40px;
	}
	
	.content-card{
		padding: 0px 0px;
		text-align: center;
	}
	
	.cta-strip.navy{
		background-size: 350%;
	}
	
	.section-hero{
		background-size: 540%;
		padding-top: 220px;
	}
	
	header .logo {
		text-align: center;
	}
	
	.check-items{
		margin-bottom: auto !important;
		padding: 20px;
	}
	
	.check-items h1{
		font-size: 2.2rem;
	}
	
	.check-items ul li{
		font-size: 1.4rem;
	}
	
	#form-primary{
		padding-top: 20px;
	}
	
}

@media print,
  (-webkit-min-device-pixel-ratio: 1.25),
  (min-resolution: 1.25dppx),
  (min-resolution: 120dpi) {
  /* Style adjustments for high resolution devices */
}

/* ==========================================================================
   Print styles.
   Inlined to avoid the additional HTTP request:
   https://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */

@media print {
  *,
  *::before,
  *::after {
    background: #fff !important;
    color: #000 !important;
    /* Black prints faster */
    box-shadow: none !important;
    text-shadow: none !important;
  }

  a,
  a:visited {
    text-decoration: underline;
  }

  a[href]::after {
    content: " (" attr(href) ")";
  }

  abbr[title]::after {
    content: " (" attr(title) ")";
  }

  /*
   * Don't show links that are fragment identifiers,
   * or use the `javascript:` pseudo protocol
   */
  a[href^="#"]::after,
  a[href^="javascript:"]::after {
    content: "";
  }

  pre {
    white-space: pre-wrap !important;
  }

  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  /*
   * Printing Tables:
   * https://web.archive.org/web/20180815150934/http://css-discuss.incutio.com/wiki/Printing_Tables
   */
  thead {
    display: table-header-group;
  }

  tr,
  img {
    page-break-inside: avoid;
  }

  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
  h3 {
    page-break-after: avoid;
  }
}

