* {
	backface-visibility: hidden; box-sizing: border-box;
}

:root { font-size: 12px; }

@media (min-width: 480px) {
	:root { font-size: 14px; }
}

@media (min-width: 768px) {
	:root { font-size: 12px; }
}

@media (min-width: 1280px) {
	:root { font-size: 14px; }
}

body {
	background: #002C77;
	font-family: "Noto Sans", Arial, Helvetica, sans-serif;
	font-weight: normal;
	font-size: 1em;
	color: #3B484B;
	min-width: 360px;
	overflow-x: hidden;
}

body.showing-calculator { overflow: hidden; }

.container { max-width: 72rem; margin: 0 auto; width: 100%; }

@media (min-width: 960px) {
	.container { max-width: 80vw; }
}

p { line-height: 1.75em; margin: 1.5em 0; }

@media (min-width: 768px) {
	p { max-width: 32em; }
}

.button {
	display: inline-block;
	text-align: center;
	padding: 0.75em 1.5em;
	background: #C42D89;
	color: white;
	font-family: inherit;
	font-weight: bold;
	text-decoration: none;
	border: none;
	cursor: pointer;
}

.button:not(.disabled):hover { background: #DE49A4; }

.button.disabled { opacity: 0.25; cursor: default; }

header {
	padding: 0 2em;
	position: relative;
	background: white;
}

.progress {
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	width: 0;
	height: 0.5em;
	background: #C42D89;
	transition: width 0.5s;
	z-index: 999;
}

.progress::after {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 100%;
	width: 100vw;
	height: 100%;
	background: white;
}

header .container {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: space-between;
}

header a.logo { display: block; width: 16em; height: 5em; padding: 1.5em 0; }
header a.logo img { display: block; width: 100%; height: 100%; object-fit: contain; object-position: 0 50%; }

header a.back { font-weight: bold; color: #C42D89; text-decoration: none; }
header a.back:hover { text-decoration: underline; }

@media (min-width: 768px) {
	header a.logo { height: 6em; }
}

section.intro { background: #F1F1F2; }

section.intro .image {
	display: block;
	position: relative;
}

section.intro .image::before {
	content: "";
	display: block;
	padding: 75% 0 0 0;
}

section.intro .image img {
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	object-fit: cover;
	object-position: center center;
}

section.intro .text { padding: 2em; }
section.intro .text h1 { font-family: "MMC Display"; font-weight: bold; font-size: 3em; margin: 0; color: #002C77; }

@media (min-width: 1680px) { section.intro .text h1 { font-size: 4em; } }

section.intro .button { display: block; }

@media (min-width: 768px) {
	header { position: absolute; top: 0; left: 0; width: 100%; z-index: 10; }
	section.intro { position: relative; min-height: calc(100vh - 5.5em); display: flex; flex-direction: row; flex-wrap: nowrap; align-items: center; justify-content: space-between; padding-top: 6em; }
	section.intro .image { position: absolute; top: 0; left: 50%; width: 50vw; height: 100%; }
	section.intro .image::before { display: none; }
	section.intro .text { width: 50%; padding-right: 2em; }
	section.intro .button { display: inline-block; }

	section.intro .text h1 { max-width: 10em; }
}

@media (min-width: 64rem) {
	section.intro .text { padding-left: 0; }
}

.calculator-wrap {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	z-index: 100;
	transition: height 0.5s;
	overflow: hidden;
}

.calculator-wrap.hidden { height: 0; }

section.calculator {
	background: white;
	padding: 4em 2em;
	height: 100%;
	overflow: hidden;
	overflow-y: scroll;
}

section.calculator a.close {
	display: block;
	position: absolute;
	top: 2em;
	right: 2em;
	color: #C42D89;
	font-weight: bold;
	text-decoration: none;
}

section.calculator ul.stages {
	list-style: none;
	display: table;
	margin: 2em auto 3em;
	padding: 0;
	counter-reset: list;
}

section.calculator ul.stages li {
	list-style: none;
	display: table-cell;
	padding: 0;
	margin: 0;
	text-align: center;
	counter-increment: list;
	opacity: 0.5;
	color: #009DE0;
	min-width: 6em;
	transition: opacity 0.2s;
}

section.calculator ul.stages li span { display: block; text-decoration: none; color: inherit; }

section.calculator ul.stages li span::before {
	content: counter(list);
	display: block;
	text-align: center;
	width: 3em;
	height: 3em;
	line-height: 3em;
	border-radius: 50%;
	background: #F1F1F1;
	border: 0.1em solid #009DE0;
	font-weight: bold;
	margin: 0 auto 1em;
}

section.calculator ul.stages li.current { opacity: 1; }
section.calculator ul.stages li.current span { font-weight: bold; }
section.calculator ul.stages li.current span::before { border-color: transparent; color: white; background: linear-gradient(225deg, #00968F 0%, #009DE0 100%); }

section.calculator .button { margin: 1em auto; display: table; }

section.calculator h2 {
	text-align: center;
	color: #009DE0;
	font-family: "MMC Display"; font-weight: bold;
	font-size: 2em;
}

section.calculator div.stages .stage { max-width: 64rem; margin: 0 auto; }

section.calculator ul.options {
	list-style: none;
	display: flex;
	padding: 0;
	margin: 2em 0;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: stretch;
	justify-content: space-between;
}

section.calculator ul.options li {
	list-style: none;
	display: block;
	padding: 0;
	margin: 0.5em 0;
	width: calc(50% - 0.5em);
	position: relative;
	overflow: hidden;
}

section.calculator ul.options li input { position: absolute; top: 0; right: 105%; }

section.calculator ul.options li label {
	display: block;
	padding: 1.25em 1.25em 1.25em 3em;
	background: white;
	border: 1px solid #CDCDCD;
	cursor: pointer;
}

section.calculator ul.options li label:hover { border-color: #ABABAB; }

section.calculator ul.options li label::before {
	content: "";
	display: block;
	position: absolute;
	top: 1.375rem;
	left: 1rem;
	width: 1.25em;
	height: 1.25em;
	line-height: 1.25em;
	border-radius: 50%;
	background: white;
	border: 1px solid #CDCDCD;
	font-size: 0.8em;
	color: #0077A0;
	text-align: center;
	font-family: "marsh-icons";
	font-weight: normal;
}

section.calculator ul.options li input:checked + label {
	font-weight: bold;
	color: white;
	border-color: transparent;
	background: linear-gradient(225deg, #00968F 0%, #009DE0 100%);
}

section.calculator ul.options li input:checked + label::before { content: "\e900"; }

section.calculator p { max-width: none; text-align: center; }

section.calculator ul.roles {
	list-style: none;
	display: block;
	padding: 2em 0;
	margin: 0;
}

section.calculator ul.roles li {
	list-style: none;
	display: block;
	padding: 1em;
	margin: 1em 0;
	background: #f1f1f1;
}

section.calculator ul.roles li.titles { display: none; line-height: 1.75em; }
section.calculator ul.roles li.titles .role { color: #00968F; background: transparent; font-weight: bold; font-size: 1em; }
section.calculator ul.roles li.titles .staff { color: #00968F; background: transparent; font-weight: bold; }
section.calculator ul.roles li.titles .salary { color: #00968F; background: transparent; font-weight: bold; }
section.calculator ul.roles li.titles .salary small { display: block; font-weight: normal; color: #3B484B; margin: 0.25em 0 0; font-size: 0.9em; }

section.calculator ul.roles li .role { margin: 0 0 2em; font-size: 1.2em; }

section.calculator ul.roles li .staff {
	margin: 0 0 1em;
	position: relative;
	font-size: 1.2em;
}

section.calculator ul.roles li .salary { font-size: 1.2em; }

section.calculator ul.roles li .title {
	font-size: 0.8em;
	font-weight: bold;
	color: #00968F;
}

section.calculator ul.roles li .role .title { margin: 0 0 0.5em; }

section.calculator ul.roles li .title small {
	display: block;
	font-weight: normal;
	color: #3B484B;
	margin: 0.25em 0 0;
	font-size: 0.9em;
}

section.calculator .input-wrap {
	position: relative;
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: space-between;
	padding: 0.75em 0;
	overflow: hidden;
	width: 100%;
}

section.calculator .input-wrap a.dec,
section.calculator .input-wrap a.inc {
	display: block;
	width: 2em;
	height: 2em;
	line-height: 2em;
	text-align: center;
	color: white;
	background: linear-gradient(225deg, #00968F 0%, #009DE0 100%);
	text-decoration: none;
	flex-grow: 0;
	flex-shrink: 0;
	margin: 0 0.25em 0 0;
	font-family: "marsh-icons";
	font-weight: normal;
	font-size: 1.4em;
}

section.calculator .input-wrap a.inc { margin: 0 0 0 0.25em; }

section.calculator .input-wrap input {
	display: block;
	width: calc(100% - 4em);
	border: 1px solid #a5a5a5;
	background: white;
	font: inherit;
	font-weight: normal;
	font-size: 1.4em;
	line-height: 2em;
	height: 2em;
	color: #38484c;
	outline: 0;
	text-align: center;
	padding: 0 0.5em;
}

section.calculator .salary .input-wrap output { font-weight: bold; font-size: 1.6em; }
section.calculator .salary .input-wrap input { width: calc(100% - 1.5em); text-align: left; }

input::-webkit-outer-spin-button { -webkit-appearance: none; margin: 0; }
input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

input[type="number"] { -moz-appearance: textfield; }

section.calculator #results p span { display: inline-block; }

section.calculator #result {
	display: table;
	margin: 0 auto 0.5em;
	font-family: "MMC Display";
	font-weight: bold;
	font-size: 5em;
	background: linear-gradient(225deg, #00968F 0%, #009DE0 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	fill-color: transparent;
}

section.calculator #result::before { content: "£"; }

section.calculator #results .form { background: #F1F1F1; }

section.calculator #results .form h3 {
	margin: 0;
	padding: 1em;
	text-align: center;
	font-family: "MMC Display";
	font-weight: bold;
	color: white;
	font-size: 1.4em;
	background: linear-gradient(225deg, #00968F 0%, #009DE0 100%);
}

section.calculator #results .form h3 span { display: inline-block; }

section.calculator #results .form .image { display: block; }
section.calculator #results .form .image img { display: block; width: 100%; height: auto; }

section.calculator #results .form .text { padding: 2em; text-align: left; }
section.calculator #results .form .text p { text-align: left; }
section.calculator #results .form .text p:first-child { margin-top: 0; }

section.calculator #results .form p.field input {
	display: block;
	width: 100%;
	background: white;
	border: 1px solid #C4C4C4;
	padding: 0.5em;
	height: 2.5em;
	line-height: 2.5em;
	font: inherit;
	outline: 0;
}

section.calculator #results .form p.checkbox { padding-left: 2em; position: relative; overflow: hidden; }
section.calculator #results .form p.checkbox input { position: absolute; top: 0; right: 105%; }
section.calculator #results .form p.checkbox label { display: block; cursor: pointer; }
section.calculator #results .form p.checkbox label::before {
	content: "";
	display: block;
	position: absolute;
	top: 0.25em;
	left: 0;
	width: 1.5em;
	height: 1.5em;
	line-height: 1.5em;
	background: white;
	border: 1px solid #C4C4C4;
	text-align: center;
	font-family: "marsh-icons";
	font-weight: normal;
	font-size: 0.75em;
}

section.calculator #results .form p.checkbox input:checked + label::before { content: "\e900"; }
section.calculator #results .form p.checkbox a { color: inherit; text-decoration: underline; }

section.calculator #results .button { position: relative; }

section.calculator #results .button::before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #C42D89;
	opacity: 0;
	transition: opacity 0.2s;
}

form.submitting section.calculator #results .button::before { opacity: 1; }

section.calculator #results .button::after {
	content: "";
	display: block;
	width: 1.5em;
	height: 1.5em;
	line-height: 1.5em;
	text-align: center;
	content: "\e901";
	font-family: "marsh-icons";
	font-weight: normal;
	animation: spin 1s linear infinite;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-left: -0.75em;
	margin-top: -0.75em;
	transition: opacity 0.2s;
	opacity: 0;
}

form.submitting section.calculator #results .button::after { opacity: 1; }

section.calculator #report span.contact strong { display: block; font-size: 2em; font-weight: bold; font-family: "MMC Display"; margin: 1em 0; }
section.calculator #report span.contact a { color: inherit; text-decoration: underline; }
section.calculator #report span.contact a.website-link { color: #009DE0; text-decoration: none; display: table; font-size: 2em; font-weight: bold; font-family: "MMC Display"; margin: 1em auto 2em; }

section.calculator #report .sharethis-inline-share-buttons { text-align: center; }

@media (max-width: 767px) {
	section.calculator .button-wrap {
		position: fixed;
		bottom: 0;
		left: 0;
		width: 100%;
		padding: 1em;
		background: rgba(255, 255, 255, 0.75);
		transition: transform 0.5s;
		border-top: 1px solid #00968F;
		backdrop-filter: blur(20px);
	}

	.calculator-wrap.hidden section.calculator .button-wrap { transform: translate3d(0, 100%, 0); }

	section.calculator .button-wrap .button { display: block; margin: 0; width: 100%; padding: 1em; }
}

@media (min-width: 768px) {
	section.calculator h2 { font-size: 2.8em; }

	section.calculator ul.options { justify-content: center; }

	section.calculator ul.options li { width: calc(20% - 0.75em); margin: 0.5em 0.375em; }

	section.calculator ul.roles li {
		display: flex;
		flex-direction: row;
		flex-wrap: nowrap;
		align-items: stretch;
		justify-content: space-between;
		background: transparent;
		padding: 0;
	}

	section.calculator ul.roles li.titles { display: flex; align-items: flex-end; }
	section.calculator ul.roles li.titles .salary small { font-size: 0.7em; }

	section.calculator ul.roles li.titles .role { padding: 0 1em; }
	section.calculator ul.roles li.titles .staff { padding: 0 1em; }
	section.calculator ul.roles li.titles .salary { padding: 0 1em; }

	section.calculator ul.roles li .role,
	section.calculator ul.roles li .staff,
	section.calculator ul.roles li .salary {
		width: calc(33.33% - 0.75em);
		background: #f1f1f1;
		padding: 1em;
		margin: 0;
		display: flex;
		flex-direction: column;
		flex-wrap: nowrap;
		align-items: flex-start;
		justify-content: center;
		text-align: left;
		font-size: 1em;
	}

	section.calculator ul.roles li .title { display: none; }

	section.calculator ul.roles li .staff { align-items: flex-end; position: relative; }
	section.calculator ul.roles li.titles .staff { padding-left: 1em; }

	section.calculator ul.roles li [data-before]::before { display: none; }

	section.calculator ul.roles li small { font-size: 0.6em; line-height: 1.5em; }

	section.calculator .input-wrap { padding: 0; }

	section.calculator #results .form { overflow: hidden; }
	section.calculator #results .form .image-and-text { position: relative; }

	section.calculator #results .form .image {
		display: block;
		position: absolute;
		top: 0;
		right: 0;
		width: 50%;
		height: 100%;
	}

	section.calculator #results .form .image img {
		display: block;
		width: 100%;
		height: 100%;
		object-fit: cover;
		object-position: center center;
	}

	section.calculator #results .form .text { width: 50%; }
}

@-webkit-keyframes spin { to { transform: rotateZ(360deg); } }
@keyframes spin { to { transform: rotateZ(360deg); } }

#st-1 .st-btn { display: inline-block!important; }

footer {
	padding: 2rem 1rem;
	background: #002C77;
	color: white;
	text-align: center;
}

footer .copyright { margin: 0 auto 1em; max-width: 20em; line-height: 1.5em; }

footer nav ul {
	list-style: none;
	display: block;
	padding: 0;
	margin: 0;
	text-align: center;
	line-height: 1.5em;
	cursor: default;
}

footer nav ul li {
	list-style: none;
	display: inline-block;
	padding: 0;
	margin: 0 0.5em;
	white-space: nowrap;
}

footer nav ul li a {
	text-decoration: none;
	color: white;
}

footer nav ul li a:hover { color: #2db5da; }

#teconsent { display: none!important; }

@media (min-width: 768px) {
	footer { font-size: 0.8em; }
	footer .copyright { float: left; max-width: none; }
	footer nav ul { text-align: right; }
}

@media (min-width: 960px) {
	footer { font-size: 1em; }
}