/**
	@Author:	Paul Strandoo/Tom for Spi-des-ign
	@Date:		3 Nov 2021
	@Notes:		SwiftServer
		
	FONTS & COLORS
	-------------
	font-family: 'Oxygen', sans-serif;
	available weight: 400, 400i, 700;
	inner max-width: 1070px;
*/

/* @import url('reset.css'); */
@import url('font-awesome.min.css');

/* Reset */
*,*::before,*::after{
	box-sizing:border-box;
	}
html,body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,
pre,form,fieldset,input,textarea,p,blockquote,th,td,
header,footer,aside,nav,article,figure,figcaption{
	margin:0;
	padding:0;
	}
fieldset,img{
	border:0;
	}
address,caption,cite,code,dfn,em,strong,th,var{
	font-style:normal;
	font-weight: 400;
	}
ol,ul{
	list-style:none;
}
caption,th{
	text-align:left;
	}
h1,h2,h3,h4,h5,h6{
	font-size:100%;
	font-weight: 400;
    line-height: 1.3;
	}
q:before,q:after{
	content:'';
	}
abbr,acronym{
	border:0;
	}
a {
	text-decoration:none;
	}
a:active,a:focus{
	outline:none;
	} 

:root {
	--accent: #c85f49;
	--page-margin: 0;
	
	--orange: #ff9126;
	--lightorange: #fcf3e6;
	--lightorange2: #fff2e6;
	--grey0: #d1d1d1;
	--grey1: #3f3f3f;
	--grey2: #9f9f9f;
	--grey3: #939393;
	--white: #ffffff;
	--black: #000000;
    --blue: #1b3c78;
    --blue: #262262;
    --pink: rgb(193, 40, 93);
    --lightblue: rgb(59, 147, 207);
	
	/* Layout variables */
	--content-width: 90rem;
	--content-padding: 5rem;
	--header-height: 10rem;
	--top-margin: 16rem;
    --inner: 1200px;
    --inner-narrow: 900px;
    --inner-wide: 1400px;
    --inner-max: 100%;
    --medium-shadow: 0px 20px 50px rgba(0, 0, 0, 0.1);
	}


/* Globals */ 
* {
	box-sizing: border-box;
	}

html {
	font-size: 100%;
	scroll-behavior: smooth;
    scroll-padding-top: 180px;
	}

body, input, textarea, table {
	font-family: 'Oxygen', sans-serif;
	font-size: 2rem;
	font-size: 1.2rem;
	font-weight: 400;
	line-height: 1.4;
	}

section {
	padding: var(--content-padding);
	}
/* ----- [ Typography ] -------------------------*/
p,
li,
td {
	font-family: 'Oxygen', sans-serif;
	font-weight: 400;
	font-size: 1em;
	line-height: 1.6em;
	margin: 0 0 1em;
	color: var(--black);
	}
li {
	margin: 0;
	}

p,ul,figure{
	margin-bottom: 1rem;
	}

em {
	font-style: italic;
	}
b,
strong {
	font-weight: 700;
	}

a {
	color: #222;
	border-bottom: 1px solid transparent;
	/*border-bottom: 1px solid #222;*/
	/*border-bottom: 1px dotted var(--orange);*/
	/*text-decoration: underline;*/
	}
a:hover {
	color: var(--orange);
	border-bottom: 1px solid white;
	/*border-bottom: 1px solid var(--orange);*/
	}


h1,h2,h3,h4 {
	font-family: 'Oxygen', sans-serif;
	color: var(--black);
	line-height: 1.3;
	font-weight: 700;
	position: relative; /* see below */
    color: var(--blue);
	}

h1, .h1 {
	font-size: 3rem;
	margin-bottom: 3rem;
	}
h2, .h2 {
	font-size: 2.4rem;
	margin-bottom: 2rem;
	}
h3, .h3 {
	font-size: 2rem;
	margin-bottom: 1.5rem;
	}
h4, .h4 {
	font-size: 1.5rem;
	line-height: 1.6;
	font-weight: 700;
	}
	
.menu-section-head::before { 
	display: block; 
	content: " "; 
	margin-top: -175px; 
	height: 175px; 
	visibility: hidden; 
	pointer-events: none;
	}
.menu-section-head span {
	color: #aaa;
	}
/*	
h1:after,
.h1:after,
h2:after,
.h2:after {
	content: "";
	position: absolute;
	top: 0.4em;
	left: -0.3em;
	height: 0.8em;
	background: var(--orange);
	opacity: 0.2;
	width: 60%;
	border-radius: 60px;
	}*/

@media only screen and (min-width: 600px) {
	h1, .h1 {
		font-size: 4rem;
		margin-bottom: 3rem;
		}
	h2, .h2 {
		font-size: 2.8rem;
		margin-bottom: 2rem;
		}
}

img {
	display: block;
	vertical-align: middle;
	}

/* global section centering */
.centered,
.centered p,
.centered h2,
.centered h3 {
	text-align: center;
	}

/* ----- [ Structure ] --------------------------*/
.page-wrapper {
	position: relative;
	padding-top: 0;
	margin: var(--page-margin);
	background: #fff;
	min-height: 100%;
	z-index: 2;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
	}

.page-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;
	}
	
header,
section,
footer {
	width: 100%;
	margin: 0;
	position: relative;
	}
section {
    margin-top: 3rem;
	padding: 30px 0;
	}
.inner {
	position: relative;
	max-width: 1180px;
	margin: 0 auto;
	padding: 0 20px;
	overflow: hidden;
	}
.inner-full {
	max-width: 100%;
	padding: 0;
	overflow: hidden;
	}
.inner-narrow {
	max-width: 900px;
	}
.inner-wide {
	max-width: 1600px;
	}
	
@media only screen and (min-width: 600px) {
	section {
		padding: 70px 0;
		}
}

/* ----- [ Strandoo Flex Grid System v1 ] --------------- */
.row {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	flex-direction: column;
	/*justify-content: stretch;*/
	list-style: none;
	margin: 0;
	padding: 0;
	/*overflow: hidden;*/
	position: relative;
	}

.col {
	flex: 1;
	}

.row.no-padding,
.row.padding-0 {
	margin-left: 0;
	margin-right: 0;
	}
.row.padding-1 {
	margin-left: -1px;
	margin-right: -1px;
	}
.row.padding-5 {
	margin-left: -5px;
	margin-right: -5px;
	}
.row.padding-10 {
	margin-left: -10px;
	margin-right: -10px;
	}
.row.padding-15 {
	margin-left: -15px;
	margin-right: -15px;
	}
.row.padding-20 {
	margin-left: -20px;
	margin-right: -20px;
	}
.row.padding-30 {
	margin-left: -30px;
	margin-right: -30px;
	}

.no-padding > .col,
.padding-0 > .col {
	padding: 0;
	}
.padding-1 > .col {
	padding-left: 1px;
	padding-right: 1px;
	}
	
.padding-5 > .col {
	padding-left: 5px;
	padding-right: 5px;
	}
.padding-10 > .col {
	padding-left: 10px;
	padding-right: 10px;
	}
.padding-15 > .col {
	padding-left: 15px;
	padding-right: 15px;
	}
.padding-20 > .col {
	padding-left: 20px;
	padding-right: 20px;
	}
.padding-30 > .col {
	padding-left: 30px;
	padding-right: 30px;
	}

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

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

.width-marker { color: grey; }


@media only screen and (min-width: 600px) { 
	.row {
		flex-direction: row;
		}
	
	.row > .col {
		/*flex: 1;*/
		}

	.col-auto {
		width: auto;
		}
	.col-full,
	.col-100 {
		width: 100% !important;
		}
	.col-1of2,
	.col-50 {
		width: 50% !important;
		}
	.col-1of3,
	.col-33 {
		width: 33.3333% !important;
		}
	.col-2of3,
	.col-66 {
		width: 66.6667% !important;
		}
	.col-1of4,
	.col-25 {
		width: 25% !important;
		}
	.col-3of4,
	.col-75 {
		width: 75% !important;
		}
	.col-1of5,
	.col-20 {
		width: 20% !important;
		}
	
	/* 60/40 */
	.col-40 {
		width: 40% !important;
		}
	.col-60 {
		width: 60% !important;
		}
		
	/* NEW */
	.m-auto {
		width: auto;
		}
	.m-full,
	.m-1of1,
	.m-2of2,
	.m-3of3,
	.m-4of4 {
		width: 100%;
		flex: none;
		}
	.m-1of2,
	.m-50 {
		width: 50%;
		flex: none;
		}
	.m-1of3,
	.m-33 {
		width: 33.3333%;
		flex: none;
		}
	.m-2of3,
	.m-66 {
		width: 66.6667%;
		flex: none;
		}
	.m-1of4,
	.m-25 {
		width: 25%;
		flex: none;
		}
	.m-3of4,
	.m-75 {
		width: 75%;
		flex: none;
		}
	.m-1of5,
	.m-20 {
		width: 20%;
		flex: none;
		}
		
	.m-hidden { display: none; }
	.width-marker { color: red; }
}

@media only screen and (min-width: 764px) { 
	/* new idea */
	.t-auto {
		width: auto;
		}
	.t-full,
	.t-2of2,
	.t-3of3,
	.t-4of4,
	.t-5of5 {
		width: 100%;
		flex: none;
		}
	.t-1of2,
	.t-2of4,
	.t-3of6,
	.t-50 {
		width: 50%;
		flex: none;
		}
	.t-1of3,
	.t-2of6,
	.t-33 {
		width: 33.3333%;
		flex: none;
		}
	.t-2of3,
	.t-4of6,
	.t-66 {
		width: 66.6667%;
		flex: none;
		}
	.t-1of4,
	.t-25 {
		width: 25%;
		flex: none;
		}
	.t-3of4,
	.t-75 {
		width: 75%;
		flex: none;
		}
	.t-1of5,
	.t-3of6,
	.t-20 {
		width: 20%;
		flex: none;
		}
	.t-2of5,
	.t-40 {
		width: 40%;
		flex: none;
		}
	.t-3of5,
	.t-60 {
		width: 60%;
		flex: none;
		}
	.t-4of5,
	.t-80 {
		width: 80%;
		flex: none;
		}
	.t-hidden { display: none; }

	.width-marker { color: green; }
}
@media only screen and (min-width: 1200px) { 
	/* new idea */
	.d-auto {
		width: auto;
		}
	.d-full,
	.d-2of2,
	.d-3of3,
	.d-4of4,
	.d-5of5 {
		width: 100%;
		flex: none;
		}
	.d-1of2,
	.d-2of4,
	.d-3of6,
	.d-50 {
		width: 50%;
		flex: none;
		}
	.d-1of3,
	.d-2of6,
	.d-33 {
		width: 33.3333%;
		flex: none;
		}
	.d-2of3,
	.d-4of6,
	.d-66 {
		width: 66.6667%;
		flex: none;
		}
	.d-1of4,
	.d-25 {
		width: 25%;
		flex: none;
		}
	.d-3of4,
	.d-75 {
		width: 75%;
		flex: none;
		}
	.d-1of5,
	.d-3of6,
	.d-20 {
		width: 20%;
		flex: none;
		}
	.d-2of5,
	.d-40 {
		width: 40%;
		flex: none;
		}
	.d-3of5,
	.d-60 {
		width: 60%;
		flex: none;
		}
	.d-4of5,
	.d-80 {
		width: 80%;
		flex: none;
		}
	.d-1of6,
	.d-16 {
		width: 16.6666%;
		flex: none;
		}
		
	.d-hidden { display: none; }
		
	.width-marker { color: blue; }
}

/* ----- [ Masthead / Page Header ] -------------*/
.page-header {
	position: absolute;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: auto;
	margin: var(--page-margin);
	padding: var(--header-padding);
	z-index: 99;
	-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;
	background: rgb(255,255,255);
	}

.page-header .inner {
	max-width: 1500px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
	max-width: 100%;
	height: 100%;
	margin: 0 auto;
	padding: 10px 20px;
	overflow: visible;
	}

.logo-wrap {
	width: auto;
	max-width: 180px;
	width: 100%;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
	}
.logo-wrap img {
	width: 100%;
	height: auto;
	display: block;
	vertical-align: middle;
	}
	
.menu-trigger,
.logo-wrap a,
.logo-wrap a:hover {
	border-bottom: none;
	}

.top-bar {
	color: var(--white);
	background: var(--blue);
	font-size: 1.4rem;
	font-weight: 400;
	line-height: 1.2;
	text-align: center;
	padding: 10px 20px;
	font-weight: 700;
	max-height: 500px;
	overflow: hidden;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
	}
.top-bar p {
	color: #fff;
	font-weight: 400;
	line-height: 1.1;
	margin: 0 auto;
	}
.top-bar a {
	color: #fff;
	white-space: nowrap;
	}

@media only screen and (max-width: 599px) {
	.small .top-bar {
		padding: 0 20px;
		max-height: 3px;
		}
}

@media only screen and (min-width: 600px) {
	.logo-wrap {
		max-width: 220px;
		}
	.inner:not(.inner-full),
	.page-header-inner {
		padding: 20px 30px;
		}
}

@media only screen and (min-width: 1080px) { /* 1020 */
	.page-header {
		background: rgb(255,255,255);
		/*background: linear-gradient(180deg, rgba(255,255,255,1) 55%, rgba(255,255,255,0) 100%);*/
		}
}

/* ----- [ Navigation ] ------------------------ */
.main-navigation {
	
	/* position: absolute;
	left: 0;
	right: 0;
	top: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	background: #fff;
    color: var(--blue); */
	/*background: rgba(255,255,255,0.95);*/
	}
body:not(.t-landing-page) .main-navigation {
    display: none;
    position: absolute;
	left: 0;
	right: 0;
	top: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	background: #fff;
    color: var(--blue);
}
body:not(.t-landing-page) .open .main-navigation {
	display: block;
	padding-top: 40px;
	padding-bottom: 80px;
		padding: 0 20px 80px;
	height: calc(100vh - 76px);
	}

.main-navigation ul {
	}
.menu-item {
	position: relative;
		margin: 1em 0;
	}
.menu-item a,
.menu-item span {
	font-size: 1.3rem;
	text-decoration: none;
	border: 3px solid transparent;
	color: var(--black);
	padding: 6px 15px;
	border-radius: 6px;
	font-weight: 700;
	}
.menu-item a:hover,
.menu-item a.on,
.menu-item span:hover,
.menu-item span.on {
	/*color: var(--white);
	background: var(--orange);*/
    border: 3px solid var(--blue);

	}
.menu-item a:hover,
.menu-item span:hover {
	/*box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.15);*/
	}
	
.menu-item span {
	cursor: default;
	}
.menu-item .button {
    margin-bottom: 0;
}

.menu-item.li-phone {
	text-transform: none;
	}

.has-children:after {
	content: " +";
	content: "\f107";
	font-family: fontawesome;
	font-weight: bold;
	margin-left: 0.3em;
	}
	
.dropnav {
	display: none;
	}
.open .dropnav {
	display: block;
	padding-left: 20px;
	}

.t-landing-page .menu-trigger {
    display: none;
}
@media only screen and (min-width: 500px) {
    .t-landing-page .main-navigation{
        margin-right: 5vw;
    }
}

/* @media only screen and (min-width: 1130px) { */
@media only screen and (min-width: 1500px) {
	.menu-toggle {
		display: none;
		}
		
	.main-navigation {
		/*display: block;*/
		/* position: relative;
		left: auto;
		right: auto;
		top: auto;
		width: auto;
		margin: 0;
		margin-right: 100px;
		padding: 0;
		background: transparent;
		overflow: visible; */
		}
    body:not(.t-landing-page) .main-navigation {
        display: block;
        position: relative;
		left: auto;
		right: auto;
		top: auto;
		width: auto;
		margin: 0;
		margin-right: 100px;
		padding: 0;
		background: transparent;
		overflow: visible;
    }

	.main-navigation ul {
		text-align: left;
		display: block;
		margin: 0;
		}
	.menu-item {
		position: relative;
		display: inline-block;
		margin: 0 0 0 2vw;
		}

	.menu-item a,
	.menu-item span {
		text-decoration: none;
        color: var(--blue);
		}
	.menu-item a:hover,
	.menu-item a.on,
	.menu-item span:hover,
	.menu-item span.on {
		}
	
	/* Drop Menus */	
	.dropnav {		
		display: block;
		position: absolute;
		min-width: 140px;
		width: auto;
		top: 120%;
		margin-left: 0;
		/* left: -50%; */
		text-align: left;
		background: #fff;
		z-index: 9999;
		visibility: hidden;
		opacity: 0;
		padding: 10px 15px;
		box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.15);
		border-radius: 20px;
		white-space: nowrap;
		-webkit-transform: none;
		-moz-transform: none;
		-ms-transform: translateX(0px);
		-o-transform: none;
		transform: none;
		-webkit-transition: all .3s ease;
		-moz-transition: all .3s ease;
		-o-transition: all .3s ease;
		transition: all .3s ease;
		}
	.dropnav2 {
		left: 80%;
		}
	.menu-item:hover > .dropnav {
		top: 120%;
		visibility: visible;
		opacity: 1;
		}

	.dropnav ul {
		margin: 0;
		}
	.dropnav .menu-item {
		display: block;
		font-size: 1em;
		text-align: left;
		text-transform: capitalize;
		font-weight: 700;
		letter-spacing: 0;
		margin: 0;
		}
	.dropnav .menu-item a {
		color: #222;
		padding: 5px 0;
		margin: 0;
		border: none;
		}
	.dropnav a:hover,
	.dropnav a.on {
		color: var(--blue);
		background: none;
		text-decoration: none;
		}
	.dropnav .menu-item ul {
		display: inherit;
		}
	
	.menu-item:hover > .dropnav2 {
		top: 0;
		left: 80%;
		visibility: visible;
		opacity: 1;
		}
}

/* ----- [ Menu Trigger (Hamburger) ] ---------- */
.menu-trigger {
	position: relative;
	height: 50px;
	width: 50px;
    margin-right: 5vw;
	}

.menu-trigger:hover {
	border: none;
	}
.menu-trigger .menu-text {
	height: 100%;
	text-transform: uppercase;
	color: #000;
	display: none;
	}
.menu-trigger .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: 22px;
	height: 2px;
	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: #000;
	background-color: rgba(0, 0, 0, 0);
	}
.menu-trigger.is-clicked .menu-icon::before, 
.menu-trigger.is-clicked .menu-icon::after {
	background-color: #000;
	}
.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: 1130px) { */
@media only screen and (min-width: 1500px) {
	.menu-trigger {
		display: none;
		}
	.menu-trigger .menu-text {
		display: inline-block;
		line-height: 70px;
		}
	.menu-trigger .menu-icon {
		left: auto;
		right: 1.25em;
		-webkit-transform: translateX(0);
		-moz-transform: translateX(0);
		-ms-transform: translateX(0);
		-o-transform: translateX(0);
		transform: translateX(0);
		}
}



/* ----- [ Flex Container (Header) ] ----------- */
.flex-container {
	display: block;
	height: 100%;
	}
.flex-container > * {
	display: block;
	}
	
@media only screen and (min-width: 1020px) { /* 800  1110 */
	/* Make this a Utility Class */
	.flex-container {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		flex-wrap: wrap;
		position: relative;
		justify-content: space-between;
		align-items: center;
		padding: 0 20px;
		}
		
	.f-top { align-items: flex-start; }
	.f-middle { align-items: center; }
	.f-bottom { align-items: flex-end; }
	.f-left { justify-content: flex-start; }
	.f-right { justify-content: flex-end; }
	.f-center { justify-content: center; }
}

.sticky {
	position: sticky;
	top: 100px;
	}

/* ----- [ Sections ] -------------------------- */
.top-section {
	padding-top: var(--top-margin);
	padding-top: 13rem;
	}
	
.intro-text {
	max-width: 40em;
	}
	
.package-box {
	background: var(--orange);
	padding: 50px 40px 20px;
	margin-bottom: 20px;
	border-radius: 60px;
	height: 100%;
	}

.package-title {
	min-height: 110px;
	}
.package-title h2 {
	text-align: center;
	margin: 0 auto 0.7em;
	}

.price-col {
	flex: 0;
	margin-bottom: 30px;
	}
.package-price {
	color: #fff;
	font-size: 4.5rem; /* 4 digits */
	font-size: 6rem;   /* 3 digits */
	line-height: 0.8;
	margin-left: -0.1em;
	margin-right: 0.2em;
	}
.package-price sup {
	font-size: 2rem;
	}
.per-month {
	color: #fff;
	font-size: 2.2rem;
	line-height: 1;
	white-space: nowrap;
	}
	
.coverage-section {
	padding-top: 0;
	margin-top: 0;
	margin-top: 3em;
	}
	
.coverage-box,
.fine-print {
	position: relative;
	padding: 50px 40px 20px;
	margin-bottom: 20px;
	margin-top: 50px;
	height: 100%;
	height: calc(100% - 60px);
	border: 10px solid var(--blue);
	border-radius: 20px;
	/*background: #fff;*/
	backdrop-filter: blur(6px);
	}
	
.fine-print {
	padding: 35px 40px 30px;
	border-color: var(--grey0);
	}
	
.fine-para p {
	line-height: 1.2;
	margin-top: 0.5em;
	}

.coverage-box:after {
	content: "";
	position: absolute;
	top: -25px;
	right: -25px;
	height: 80px;
	width: 80px;
	background-image: url("../images/check.png");
	background-size: 100%;
	}
.coverage-box.not-covered:after {
	background-image: url("../images/remove.png");
	}
	
@media only screen and (min-width: 600px) {
	.top-section {
		padding-top: var(--top-margin);
		}
	.coverage-box:after {
		height: 110px;
		width: 110px;
		top: -55px;
		}
}

/* ----- [ Home / Intro ] ---------------------- */
.t-basic-page .page-wrapper,
.home-cover .page-wrapper {
	/*background: url('../images/MyPlace-bg-5p.png') 98% 200px no-repeat;*/
	background: url('../images/swiftserve-watermark.png') 98% 200px no-repeat;
	background-size: 500px;
	}
.home-cover .page-wrapper {
	background: url('../images/MyPlace-bg-5p.png') 98% 32% no-repeat;
	background: url('../images/swiftserve-watermark.png') 110% 28% no-repeat;
	background-size: 720px;
	background-size: 500px;
	}
.signup-page .page-wrapper {
	/*background: url('../images/MyPlace-bg-5p.png') 98% 32% no-repeat;*/
	background: url('../images/swiftserve-watermark.png') 110% 28% no-repeat;
	background-size: 720px;
	background-size: 500px;
	}

.who-we-are .page-wrapper,
.contact-us .page-wrapper {
	background: none;
	}
    .contact-us .top-section {
        padding-top: 9rem;
    }

.image-fit {
	object-fit: cover;
	height: 100%;
	width: 100%;
	}

.choose-section .col {
	margin-bottom: 30px;
	}

.areas-section-text {
	max-width: 560px;
	padding-left: 30px;
    padding-right: 30px;
	margin: 0 0 0 auto;
	}

.video-hero {
	height: calc(85vh - 100px);
	height: auto;
	min-height: 500px;
	width: 100%;
	padding: 20px 0;
    margin-top: 115px;
	/*margin-top: 146px;*/
	/* margin-top: 160px; */
	display: flex;
	justify-content: center;
	align-items: center;
	background: #fff;
	}

.video-hero h1,
.video-hero h2,
.video-hero h3,
.video-hero p {
    color: var(--blue);
}

/*
    @media only screen and (max-width: ) {
        .video-hero {
            margin-top: 115px;
        }
    }*/
.home-video {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%; 
	padding: 0;
	object-fit: cover;
	object-position: top;
	/*opacity: 0.5;*/
	}
.video-hero .inner {
	width: 100%;
	/* optional */
	max-width: 2000px;
	}
.video-hero .image-wrapper {
    position: absolute;
    width: 100%;
    height: 100%;
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: cover;
    /*background-color: magenta;*/
}
	
.video-hero .intro-text {
	max-width: 32em;
	margin: 0 5vw 0 auto;
	padding: 30px;
	background: rgba(255,255,255,0.6);
	border-radius: 10px;
	}
	
.home-cover .video-hero .intro-text {
	max-width: 35em;
	background: rgba(255,255,255,0.7);
	}
	
.video-hero .intro-text h1 {
	font-size: 2.5rem;
	margin-bottom: 0.5em;
	}
.video-hero .intro-text p {
	font-size: 1.4rem;
	}
.video-hero .intro-text .button {
	margin-bottom: 0;
	}
@media only screen and (max-width: 690px) {
    .video-hero .intro-text {
        margin: 0;
    }
}

	
.checkatrade {
	text-align: center;
	padding: 20px;
	}

.checkatrade p {
	font-size: 1.4rem; 
	margin: 0 auto;
	}
.checkatrade strong {
	white-space: nowrap;
	}
.checkatrade img { 
	display: inline-block;
	border-radius: 10px; margin: 0 10px;
	width: 100%;
	height: auto;
	max-width: 220px;
	}
.checkatrade img:hover {
	box-shadow: 0 0 5px 5px rgba(0,0,0,0.05);
	}

.home-intro {
	padding: 20px;
	background: rgb(59, 147, 207, 0.2);
	}
.home-intro p {
	font-size: 1.4rem;
	margin: 0 auto;
    margin-bottom: 1.5rem;
	max-width: 40em;
	}

@media only screen and (min-width: 400px) {
	.video-hero .intro-text h1 {
		font-size: 3rem;
		}
	.checkatrade img { 
		max-width: 282px;
		}
}

@media only screen and (min-width: 600px) {
	.video-hero {
		margin-top: 146px;
		height: calc(85vh - 100px);
		}
}


/* ----- [ Table ] ------------ */
table {
	width: 100%;
	border-right: 2px solid #fff;
	border-bottom: 20px;
	}

td,th {
	padding: 10px;
	font-size: 1rem;
	text-align: center;
	}
td p,
th p {
	font-size: 1rem;
	margin: 0;
	}
th {
	color: #fff;
	background: var(--orange);
	font-weight: 700;
	}
	
tr:nth-of-type(even) td {
	background: #fcf3e6;
	}
	
.customer-info {
	border-right: none;
	border-top: 2px solid #ccc;
	border-bottom: 2px solid #ccc;
	margin-top: 40px;
	}
.customer-info td,
.customer-info th {
	text-align: left;
	}
.customer-info td.first {
	font-weight: 700;
	}

/* ----- [ Accordion ] ------------ */
dl.accordion {
	margin: 0;
	padding: 15px 0 0;
	position: relative;
	border-top: 1px solid #ccc;
	}
dl.accordion > dt {
	font-family: var(--body);
	font-size: 1.1em;
	line-height: 1.3em;
	list-style: none;
	}

dl.accordion > dt > a {
	color: #000;
	display: block;
	vertical-align: middle;
	position: relative;
	padding-left: 1.5em;
	padding-bottom: 15px;
	text-decoration: none;
	transition: all .2s ease; 
	border-bottom: 1px solid #ccc;
	}

dl.accordion > dt span {
	display: block;
	margin: 0;
	text-transform: none;
	font-weight: 400;
	}

dl.accordion > dt > a:before {
	content: '+';
	color: var(--pink);
	position: absolute;
	left: 0;
	top: -4px;
	font-size: 2.2rem;
	font-weight: 400;
	}

dl.accordion > dt > a.open {
	border-bottom: none;
	}

dl.accordion > dt > a.open:before {
	content: '−'; /* true minus sign */
	}
dl.accordion dd {
	padding: 0;
	margin: 0 0 10px;
	max-height: 0;
	opacity: 0;
    transition: all .4s ease;
	}
dl.accordion dd.is-open {
	padding: 0;
	max-height: 1000px;
	opacity: 1;
	border-bottom: 1px solid #ccc;
	}

dl.accordion > dt > a:hover:before {
	}


/* ----- [ 6 services ] -----------------*/
.services-section,
.packages-section,
.choose-section {
	scroll-margin-top: 100px;
	}
	
.services {
	background: #fff;
	}
.service {
	margin: 0 0 50px;
	}
.service-icon {
	max-width: 140px;
	background: var(--orange);
	padding: 10px;
	margin: 0 auto 20px;
	border-radius: 20px;
	}
.service-icon img {
	width: 100%;
	}
	
	
/* Home Notice */
.cover-cta {
	background: var(--lightorange);
	padding: 50px 0;
	}
.cover-cta h2 {
	line-height: 1.3em;
	}
.cover-cta h2:after {
	content: none;
	}
.cover-cta img {
	display: inline-block;
	vertical-align: middle;
	}


/* ----- [ 3 Steps ] -----------------*/
.three-steps {
    position: relative;
	background: var(--blue);
    overflow-y: hidden;
	}
.three-steps .icon-wrapper{
	position: absolute;
    z-index: 1;
    top: 50%;
    left: 5vw;
    width: 450px;
    height: 450px;
    transform: translateY(-50%);
}
@media only screen and (max-width: 500px) {
    .three-steps .icon-wrapper {
        display: none;
    }
}
.three-steps .icon-wrapper svg {
    width: 100%;
    height: 100%;

	fill: rgb(59, 147, 207, 0.2);
}
.three-steps .inner{
    overflow-y: hidden;
    position: relative;
    z-index: 2;
    margin: auto;
    width: fit-content;
    max-width: 90%;
}
.icon img {
	max-width: 75px;
	margin: 0 auto 20px;
	}
.three-steps .card {
    border-radius: 40px;
    margin: 0 1.5rem;
    padding: 1.5rem;
    padding-top: 3rem;
    padding-bottom: 3rem;
    width: 355px;
    min-width: 300px;
    background-color: white;
    color: var(--blue);
    display: flex;
    flex-direction: column;
    align-items: center;
}
.three-steps .card h3 {
    color: var(--blue);
}
.three-steps .card .button {
    padding-top: 12px;
    padding-bottom: 12px;
    margin-top: 1.5rem;
    font-size: 1.2rem;
}

/*
.three-steps .col {
	border-bottom: 10px solid #fff;
	padding-top: 30px;
	padding-bottom: 30px;
    background-color: white;
	}
.three-steps .col:last-of-type {
	border: none;
	}

@media only screen and (min-width: 600px) {
	.three-steps .col {
		border-bottom: none;
		padding-top: 0;
		padding-bottom: 0;
		}
}*/
	

/* ----- [ About ] -----------------*/
.photo img {
	width: 100%;
	border-radius: 60px;
	}

/* ----- [ Map / Contact Form ] -----------------*/
.contact-content {
	padding: 0;
	}
	
.contact-text {
	padding: 30px;
	max-width: 30em;
	}

.contact-content .row {
	align-items: center;
	align-items: stretch;
	}

.map-canvas {
	min-height: 450px;
	width: 100%;
	border-radius: 12px 0 0 12px;
	-webkit-transform: translate3d(0px, 0px, 0px);
	-webkit-mask-image: -webkit-radial-gradient(white, black);
	}
.contact-us .map-canvas {
	min-height: 600px;
	}
	
.contact-us .hero {
	display: none;
	}

@media only screen and (min-width: 600px) {
	.contact-content .row {
		align-items: center;
		}
}

@media only screen and (min-width: 764px) {
	.section-contact-map > div {
		position: relative;
		width: 50%;
		min-height: 300px;
		}
	.section-contact-map > div:nth-of-type(even) {
		border-right: 5px solid #fff;
		}
	.section-contact-map > div:nth-of-type(odd) {
		border-left: 5px solid #fff;
		}
}
/*
@media only screen and (min-width: 920px) { 
	.contact-form-overlay {
		padding: 40px 50px;
		}
}
*/

/* ----- [ Contact Form ]----------------------- */
input[type=text],
input[type=email],
input[type=tel],
input[type=url],
input[type=search],
textarea,
select {
	appearance: none;
	-moz-appearance: none;
	-webkit-appearance: none;
	border-radius: 0;
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
	}
input[type=submit],
input.button {
    -webkit-appearance: none;
	}

input,
select,
textarea {
    font-size: 1em;
    width: 100%;
    padding: 6px 10px;
    margin: 0 0 10px;
	color: #333;
	background: #fff;
	background: rgba(255,255,255,0.6);
    border: 1px solid #ccc;
    border-radius: 0;
    }

input:focus, 
textarea:focus {
	background: #fff;
	}
	
.form-group {
	border: 1px solid #ccc;
	padding: 10px;
	margin: 10px 0 20px;
	background: rgba(255,255,255,0.6);
	}

/* ----- [ SCF Contact Page ] --------------- */
.form__item {
	margin-bottom: 5px;
	}
.form__item label {
	display: inline-block;
	font-size: 0.9em;
	margin: 0 0 4px;
	}
	
.form__item input,
.form__item textarea,
.form__item select {
	border: none;
	-webkit-appearance: none;
	-ms-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: #f6f6f6;
	padding: 10px;
	border: 1px  solid #ccc;
	border-radius: 3px;
	font-size: 14px;
	}

.field__header--hidden,
.form__item--scf-website {
	display: none !important;
	}

.form__item--c_contact_consent,
.form__item--c_terms_consent {
	line-height: 1.1em;
	margin-bottom: 0.5em;
	}
	
.form__item--c_terms_consent .FieldtypeCheckbox:after {
	content: "";
	position: absolute;
	right: -0.5em;
	top: -0.25em;
	}
	
.form__item--submit {
	text-align: left;
	}
.form__item--submit button:hover {
	color: var(--white);
	background: #222;
	}

/* checkbox & radios */
.InputfieldRadiosFloated li {
	display: inline-block;
	margin: 0 2em 10px 0;
	}

input[type=checkbox],
input[type=radio] {
    height: 18px;
    width: 18px;
    -webkit-appearance: none;
    -moz-appearance: none;
    -o-appearance: none;
    appearance: none;
    border: 1px solid #ccc;
    position: relative;
	outline: none;
    background: #f6f6f6;
    vertical-align: middle;
    padding: 10px;
    margin: -2px 10px 0 0;
    -webkit-transition: 0.15s;
    cursor: pointer;
	}
input[type=radio] {
    height: 16px;
    width: 16px;
	border-radius: 50%;
	}

input[type=checkbox]:hover,
input[type=radio]:hover {
    border: 1px solid #ccc;
    background: #ccc;
	}

input[type=checkbox]:before, 
input[type=checkbox]:checked:before {
    content: '';
    position: absolute;
    top: 1px;
    left: 6px;
    width: 8px;
    height: 14px;
    border-right: 3px solid #000;
    border-bottom: 3px solid #000;
    transform: rotate(45deg);
    opacity: 0;
	}
input[type=radio]:before, 
input[type=radio]:checked:before {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #000;
    opacity: 0;
	}

input[type=checkbox]:checked:before,
input[type=radio]:checked:before {
    opacity: 1;
	}
	
.form__item--c_height {
	float: left;
	}
.form__item--c_width {
	float: right;
	}
	
.form__item--c_source label {
	display: none;
	}
.field__description {
	font-size: 0.9em;
	margin: 0 0 4px;
	}
	
.form__item--installation_type,
.form__item--installation_location,
.form__item--installation_position {
	border: 1px solid #ccc;
	padding: 10px 10px 0;
	margin-bottom: 10px
	}
	
.required:after {
	content: "*";
	font-size: 16px;
	}
	
/*
.form-required label.required:after {
	color: #f00;
	}
*/
.form-required input.required:placeholder-shown,
.form-required textarea.required:placeholder-shown,
.form-required input[type=checkbox]:not(:checked) {
	border-color: #f00;
	}
	
/* errors */
.field--error--message {
	float: right;
	color: #f36617;
	font-weight: 400;
	font-size: 0.8em;
	margin: 0;
	}
.form__item--c_terms_consent .field--error--message {
	float: none;
	}
	
.form--error--message,
.contact-message {
	text-align: center;
	font-size: 0.95em;
	font-weight: 400;
	color: #fff;
	background: #f36617;
	padding: 5px;
	margin: 5px 0 20px;
	border-radius: 5px;
	width: auto;
	}

.form--success--message,
.contact-message.success {
	color: #fff;
	background: #000000;
	}

/* ----- [ Map Section ] -----------------*/
.location-map {
	padding: 20px 0 0;
	}
/*
@media only screen and (min-width: 600px) {
	#map-canvas {
		height: 530px;
		}
}
*/

/* ----- [ Buttons ] --------------------------- */
button,
.button {
	font-family: 'Oxygen', sans-serif;
	display: inline-block;
	color: var(--white)!important;
	background: var(--pink); 
	width: 100%;
	font-size: 1.1rem;
	text-align: center;
	margin-bottom: 12px;
	padding: 12px 25px;
	border: 3px solid var(--pink);
	border-radius: 6px;
	opacity: 1;
	cursor: pointer;
	box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.2);
	-webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}
button:hover,
.button:hover {
	color: var(--pink)!important;
	background: #fff;
	text-decoration: none;
    border: 3px solid var(--pink);
	box-shadow: 0px 5px 8px rgba(0, 0, 0, 0.2);
	}

.button-alt {
	font-family: 'Oxygen', sans-serif;
	display: inline-block;
	color: var(--white);
	background: var(--pink); 
	width: 100%;
	font-size: 1.1rem;
	text-align: center;
	margin-bottom: 12px;
	padding: 4px 25px;
	border: 3px solid white;
	border-radius: 6px;
	opacity: 1;
	cursor: pointer;
	box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.2);
	-webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}
.button-alt:hover {
	color: var(--pink);
	background: #fff;
	text-decoration: none;
    border: 3px solid var(--pink);
	box-shadow: 0px 5px 8px rgba(0, 0, 0, 0.2);
	}
	
.button.button-full {
	width: 100%;
	}

.button-small {
	font-size: 1rem;
	padding: 10px 20px;
	}
.button-large {
	font-size: 1.6rem;
	padding: 20px 30px;
	}
.button-dark {
	background: var(--black);
	}
.button-dark:hover {
	background: var(--orange);
	}
	
@media only screen and (min-width: 600px) { 
	button,
	.button {
		width: auto;
		}
}

/* ----- [ Footer ] ---------------------------- */
.page-footer {
    position: relative;
	color: var(--white);
    background-color: var(--blue);
	/* background: var(--grey1) url("../images/curved-footer-bg.svg") center -10px no-repeat; */
	/*background: var(--grey1) url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3Csvg version='1.1' id='Layer_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 921 186.5' style='enable-background:new 0 0 921 186.5%3B' xml:space='preserve'%3E%3Cstyle type='text/css'%3E.st0%7Bfill:%23FFFFFF%3B%7D%3C/style%3E%3Cpath class='st0' d='M0 0v186.5c83.1-95.9 258.1-162 460.5-162s377.4 66.1 460.5 162V0H0z'/%3E%3C/svg%3E") center -10px no-repeat;*/
	background-size: cover;
    margin-top: 1rem;
	padding-top: 150px;
    padding-bottom: 5rem;
	}

.page-footer .background-img {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: -3vw;
    width: auto;
    height: 90%;
    transform: translateY(-50%);
    opacity: 0.2;
}
@media only screen and (max-width: 630px) {
    .page-footer .background-img {
        width: 90%;
        height: auto;
    }
}
	
.page-footer .inner {
    position: relative;
    z-index: 2;
	padding: 50px 30px 10px;
	}
.page-footer p,
.page-footer li {
	color: #fff;
	font-size: 1rem;
	line-height: 1.6em;
	font-weight: 400;
	margin: 0 0 1em;
	}
.page-footer li {
	margin: 0;
	}
	
.page-footer strong {
	font-weight: 700;
	}

.page-footer a {
	color: #fff;
	border: 1px solid transparent;
    font-size: 1.4rem;
    font-weight: 100;
	}

.page-footer a:hover {
	text-decoration: underline;
	}
.page-footer p {
	color: #fff;
	border: 1px solid transparent;
    font-size: 1.4rem;
    font-weight: 100;
	}

.footer-logo {
	max-width: 300px;
	margin: -30px 0 20px;
    margin-bottom: 2rem;
	}
.footer-logo img {
	max-width: 100%;
	}

.footer-nav li {
	display: inline-block;
	margin: 0 1em 0 0;
	font-size: 1.4rem;
    margin-bottom: 0.8rem;
	}
.footer-nav2 li {
    margin-bottom: 0.8rem;
}
.footer-nav2 li a {
	font-size: 1.4rem;
    font-weight: 100;
	}

p.copyright-credits {
    margin: 0;
    padding: 8px;
    background-color: var(--lightblue);
	color: #fff;
	font-size: 0.8rem;
	font-weight: 400;
	text-align: center;
	}
.copyright-credits a {
	color: #fff;
	text-decoration: underline;
	}
.copyright-credits a:hover {
	color: var(--pink);
	}
	

/* ----- [ Social Media Icons ] ---------------- */
/* ----- [ SVG Social Media Icons ] --------------- */
.social-icons {
	text-align: left;
	margin: 10px 0 20px;
	}
.social-icon,
.page-footer .social-icon {
    color: #fff;
    display: inline-block;
    margin: 0 10px 0 0;
	}

.social-icon a {
    color: #fff;
    color: var(--orange);
    color: var(--black);
    opacity: 1;
    border: none;
	}

.page-footer .social-icon a {
	color: #fff;
	}

.social-icon a:hover,
.social-icon a:active {
    color: #77d8d8;
    color: var(--orange);
    opacity: 1;
    border: none;
	}

.social-icon svg {
	height: 32px;
	width: 32px;
    fill: currentColor;
    max-width: 100%;
    max-height: 100%;
    vertical-align: middle;
	}
.page-footer .social-icon svg {
	height: 26px;
	width: 26px;
	}

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

@media only screen and (min-width: 800px) {
	.social-icons-wrapper {
		text-align: right;
		}
}

.top-link {
    position: fixed;
    bottom: 50px;
    right: 4%;
    opacity: 0;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
    z-index: 9;
    display: none;
	}
.top-link a {
	color: #fff;
	font-size: 60px;
	line-height: 28px;
    display: block;
    height: 40px;
    width: 40px;
    outline: medium none;
    position: relative;
    z-index: 0;
    text-align: center;
	-webkit-transform: rotate(-90deg);
	-moz-transform: rotate(-90deg);
	-ms-transform: rotate(-90deg);
	-o-transform: rotate(-90deg);
	transform: rotate(-90deg);
	background: #272441;
	text-decoration: none;
	border: none;
	border-radius: 50%;
    }
.top-link a:hover {
	color: #272441;
	background: #d6b161;
	border: none;
	}
.top-link.show {
	opacity: 1;
	}

/* ----- [ CMS Content ] ------------------------*/
.cms-text p > img {
	max-width: 100%;
	display: block;
	}
	
.cms-text a:not('.button') {
	text-decoration: underline;
	}

.cms-text ul,
.cms-text ol {
	margin: 0 0 1em;
	}
.cms-text li {
	list-style-type: disc;
	list-style-position: outside;
	margin: 0 0 0.5em 1.5em;
	}
.cms-text ol li {
	list-style-type: decimal;
	list-style-position: outside;
	margin: 0 0 0.5em 1.5em;
	}
	
.cms-quote:before,
.cms-quote:after {
	content: "";
	display: inline-block;
	height: 20px;
	width: 20px;
	margin: 0 0.4em 0 0;
	opacity: 0.7;
	background: url('../images/left-quote-mark2.svg') 0 0 no-repeat;
	background-size: 100%;
	}
.cms-quote:after {
	margin: 0 0 0 0.4em;
	background: url('../images/right-quote-mark2.svg') 0 0 no-repeat;
	background-size: 100%;
	}

/* ----- [ Services List ] -----------------*/
.check-bullets {
	margin: 0;
	}

.check-bullets li:before {
	content: '';
	display: inline-block;
	vertical-align: middle;
	width: 30px;
	height: 30px;
	margin: 0 10px 0 -30px;
	background: url('../images/orange-check.svg') 50% 50% no-repeat;
	background-size: 100%;
	}
.check-bullets li {
	line-height: 1.1em;
	list-style-type: none !important;
	margin: 10px 10px 10px 30px;
	}

/* 600px equivalent breakpoint */
@media only screen and (min-width: 37.5em) {
	.check-bullets {
		margin: 0 0 2em;
		}
}


/* ----- [ Misc. / Utility Styles ] ------------ */
img.right {
	float: right;
	}
img.inline {
	display: inline !important;
	}

.text-left,
.text-left p,
.text-left li,
.text-left h2,
.text-left h3 {
	text-align: left;
	}
.text-right,
.text-right p,
.text-right li {
	text-align: right;
	}
.text-center {
	text-align: center;
	}

.uppercase {
	text-transform: uppercase !important;
	}
.lowercase {
	text-transform: none !important;
	}
	
.overflow-visible {
	overflow: visible !important;
	}

.clearfix:before,
.clearfix:after {
	content: "\0020";
	display: block;
	height: 0;
	overflow: hidden;
	}
.clearfix:after {
	clear: both;
	}
.clearfix { 
	zoom: 1;
	}

.align_left {
	float: left;
	margin: 0 1em 1em 0;
	}
.align_right {
	float: right;
	margin: 0 0 1em 1em;
	}
.align_center {
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 1em;
	}
	
.mobile-only {
	display: block;
	}
.desktop-only {
	display: none;
	}
	
.top-bar .desktop-only {
	display: none;
	}
.top-bar .mobile-only {
	display: inline;
	}

@media only screen and (min-width: 600px) {
	.mobile-only {
		display: none;
		}
	.desktop-only {
		display: block;
		}
		
	.top-bar .desktop-only {
		display: inline;
		}
	.top-bar .mobile-only {
		display: none;
		}
}
/*
@media only screen and (min-width: 920px) {
	.cms-text .align_left {
		margin-left: -100px;
		}
	.cms-text .align_right {
		margin-right: -100px;
		}
}
*/

#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;
	}

/* ----- [ Holding Page ] ------ */
.holding-page .page-header,
.holding-page .page-footer {
	display: none;
	}
.holding-section {
	margin: 0;
	padding: 30px 0;
	}

.holding-logo {
	max-width: 300px;
	margin: 0 auto 30px;
	}
.holding-logo img {
	width: 100%;
	}
	
.holding-page h1,
.holding-page h2,
.holding-page h3 {
	color: var(--orange);
	}

.holding-page h1 {
	text-transform: uppercase;
	margin: 0 auto 0.5em;
	}
.holding-page h1 + h2 {
	font-size: 3rem;
	margin: 0 auto 1em;
	}
.holding-page h1:after,
.holding-page h2:after {
	display: none;
	}
	
.holding-page h3 {
	font-size: 2.3rem;
	margin: 0 auto 0.3em;
	}
	
.holding-page .package-box {
	text-align: left;
	padding: 30px 40px 0;
	margin-bottom: 20px;
	}
.holding-page .package-title {
	min-height: 80px;
	}
.holding-page .package-title h2 {
	font-size: 2.4rem;
	color: #000;
	margin-bottom: 0.5em;
	}
.holding-page .price-col {
	margin-bottom: 10px;
	}
	/* NHS image edge case*/
   img[src="/site/assets/files/1571/nhs-logo_120x0-is-hidpi.120x0-is.png"] {
    display: inline;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0;
   }

   /* Three Steps mobile stuff*/

   .three-steps .inner div {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .three-steps .inner div .card{
        margin-top: 1.5rem;
        margin-bottom: 1.5rem;
       }

    @media only screen and (max-width: 450px) {
    .three-steps .inner .card {
        min-width: 270px;
        max-width: 270px;
        width: 270px;
    }
    
   }
   @media only screen and (max-width: 750px) {
        .three-steps .inner div {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
    
   }

   .t-landing-page .page-header {
    /* background-color: transparent; */
   }
   /* .t-landing-page .main-navigation,
   .t-landing-page .menu-trigger{
        visibility: hidden;
   } */
   .t-landing-page .main-navigation .menu-item:not(.li-request-callback) {
        visibility: hidden;
        display: none;
   }

   .t-landing-page .video-hero {
    /*
        margin-top: 44px !important;
        height: calc(85vh - 44px);
        */
   }

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

    .video-hero {
        padding-top: 90px;
        padding-bottom: 90px;
        height: auto;
    }
/*
    .t-landing-page .video-hero {
        padding-top: 90px;
        padding-bottom: 90px;
        height: auto;
   }*/
}

.about-image-col {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
@media only screen and (max-width: 1050px) {
    .about-image-col {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }
    .about-image-col .photo{
        margin-bottom: 6rem;
    }
}

@media only screen and (max-width: 1050px) {
    .about-image-col .photo:not(:first-of-type){
        display: none;
    }
}

.t-about-page .top-section,
.t-package-page .top-section {
    padding-top: 140px;
}