/** FONTS **/
.openSans {
	font-family: 'Open Sans', sans-serif;
}




/** COLOURS **/
.red {
	color: #D52B1E;
}

.dark-purple {
	color: #F69C31;
}

.grey {
	color: #333333;
}



/** GENERAL **/
html {
	height: 100%;
	width: 100%;
	overflow-x: hidden;
	background: #1D1D1B;
}

body {
	font-family: 'Open Sans', sans-serif;
	font-size: 14px;
	background: #FFFFFF;
	color: #1D1D1B;
	margin: 0px;
}

a {
	color: #D52B1E;
	text-decoration: none;
	cursor: pointer;
	-webkit-transition: border .2s linear;
	-moz-transition: border .2s linear;
	transition: border .2s linear;
	-webkit-transition: color .2s linear;
	-moz-transition: color .2s linear;
	transition: color .2s linear;
	-webkit-transition: background .2s linear;
	-moz-transition: background .2s linear;
	transition: background .2s linear;
	cursor: pointer;
}

a:hover {
	color: #F69C31;
}

h1,
h2,
h3,
h4 {
	font-weight: normal;
	margin: 0px;
	text-transform: uppercase;
}

hr {
	clear: both;
	margin: 30px 0px;
	border-top: 0px;
	border-bottom: 1px dotted #CCCCCC;
}

.cookiebox {
	background: #333333;
	color: #FFFFFF;
}

.cookiebox p a {
	color: #F69C31;
}

.cookiebox p a:hover {
	color: #FFFFFF;
	text-decoration: underline;
}

.btn,
a.btn {
	text-transform: uppercase;
	background: #F69C31;
	color: #FFFFFF;
	-webkit-transition: all .2s linear;
	-moz-transition: all .2s linear;
	transition: all .2s linear;
	cursor: pointer;
}

.btn:hover,
a.btn:hover {
	background: #D52B1E;
	color: #FFFFFF;
}

.btn span,
a.btn span {
	color: #FFFFFF;
}

.btn-mobile {
	display: none;
}

.is-mobile .btn-desktop {
	display: none;
}

.is-mobile .btn-mobile {
	display: inline-block;
}

.Btn.Btn--bluePulse {
	background-color: #62CEF3 !important;
	color: #FFFFFF !important;
	-webkit-animation: buttonPulse 1s infinite;
	-moz-animation: buttonPulse 1s infinite;
	animation: buttonPulse 1s infinite;
	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}

.Btn.Btn--bluePulse:hover {
	background-color: #0E6F8F !important;
	color: #FFFFFF !important;
	-webkit-animation: buttonPulseHover 1s infinite;
	-moz-animation: buttonPulseHover 1s infinite;
	animation: buttonPulseHover 1s infinite;
}

@-webkit-keyframes buttonPulse {
	0% {
		-webkit-box-shadow: 0px 0px 0px 0px rgba(98, 206, 243, 0.8);
	}

	50% {
		-webkit-box-shadow: 0px 0px 0px 5px rgba(98, 206, 243, 0.8);
	}

	100% {
		-webkit-box-shadow: 0px 0px 0px 0px rgba(98, 206, 243, 0.8);
	}
}

@-moz-keyframes buttonPulse {
	0% {
		-moz-box-shadow: 0px 0px 0px 0px rgba(98, 206, 243, 0.8);
	}

	50% {
		-moz-box-shadow: 0px 0px 0px 5px rgba(98, 206, 243, 0.8);
	}

	100% {
		-moz-box-shadow: 0px 0px 0px 0px rgba(98, 206, 243, 0.8);
	}
}

@keyframes buttonPulse {
	0% {
		box-shadow: 0px 0px 0px 0px rgba(98, 206, 243, 0.8);
	}

	50% {
		box-shadow: 0px 0px 0px 5px rgba(98, 206, 243, 0.8);
	}

	100% {
		box-shadow: 0px 0px 0px 0px rgba(98, 206, 243, 0.8);
	}
}

@-webkit-keyframes buttonPulseHover {
	0% {
		-webkit-box-shadow: 0px 0px 0px 0px rgba(14, 111, 143, 0.8);
	}

	50% {
		-webkit-box-shadow: 0px 0px 0px 5px rgba(14, 111, 143, 0.8);
	}

	100% {
		-webkit-box-shadow: 0px 0px 0px 0px rgba(14, 111, 143, 0.8);
	}
}

@-moz-keyframes buttonPulseHover {
	0% {
		-moz-box-shadow: 0px 0px 0px 0px rgba(14, 111, 143, 0.8);
	}

	50% {
		-moz-box-shadow: 0px 0px 0px 5px rgba(14, 111, 143, 0.8);
	}

	100% {
		-moz-box-shadow: 0px 0px 0px 0px rgba(14, 111, 143, 0.8);
	}
}

@keyframes buttonPulseHover {
	0% {
		box-shadow: 0px 0px 0px 0px rgba(14, 111, 143, 0.8);
	}

	50% {
		box-shadow: 0px 0px 0px 5px rgba(14, 111, 143, 0.8);
	}

	100% {
		box-shadow: 0px 0px 0px 0px rgba(14, 111, 143, 0.8);
	}
}

.stackImg {
	display: block;
	width: 100%;
	max-width: 840px;
	max-height: 630px;
}


.form .form-textbox input,
.form .form-textbox textarea {
	min-width: 16em;
}

.StackImg {
	display: block;
	width: 100%;
}

/** WIDTHS **/
.fw-wrapper {
	position: relative;
	clear: both;
	width: 100%;
}

.fw-margins {
	width: 100%;
	max-width: 999px;
	margin: 0px auto;
}

.fw-padding {
	padding: 0px 10px;
}



/** FORM **/
.static-form-wrapper {
	position: relative;
}

.static-form-wrapper .fw-margins {
	position: relative;
	z-index: 2;
}

.static-form-wrapper .overlay {
	position: absolute;
	z-index: 1;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
}

.form {
	margin: 40px 0px 0px 0px;
	text-transform: uppercase;
}

.form .form-row {
	clear: none;
	margin: 0px 0px 20px 0px;
}

.form .form-textbox input,
.form .form-textbox textarea {
	width: 100%;
	padding: 20px 10px;
	min-width: initial;
}

.form .form-textbox textarea {
	min-height: 100px;
}

.form .htmldd,
.form .styledd {
	width: 100%;
	padding: 13px 10px;
}

.form-full {
	width: 100%;
	margin: 20px 0px 0px 0px;
}

.form-half {
	width: 48%;
}

.form-half-left {
	float: left;
}

.form-half-right {
	float: right;
}

.form-button-row {
	text-align: left;
}

.static-content.static-form-wrapper {
	background: #FFFFFF url(backgrounds/form-bg-02.jpg) no-repeat 50% 50%;
	background-size: cover;
	background-attachment: fixed;
	color: #FFFFFF;
}

.static-form-wrapper .overlay {
	background: rgba(173, 142, 185, 0.8);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#CCAD8EB9, endColorstr=#CCAD8EB9);
	zoom: 1;
}

.static-content.static-form-wrapper h2 {
	color: #FFFFFF;
}

.form .form-textbox input,
.form .form-textbox textarea {
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.form .form-textbox input,
.form .form-textbox textarea,
.form .htmldd,
.form .styledd {
	background: #FFFFFF;
}

.form .form-textbox input,
.form .form-textbox textarea {
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.form .form-row-error .form-textbox input,
.form .form-row-error .form-textbox textarea,
.form .form-row-error .htmldd,
.form .form-row-error .styledd,
.form .form-row-error.confirmation {
	border: 2px solid #D52B1E !important;
}



/** GENERIC FORM **/
.form-generic {
	padding: 100px 0px;
	text-transform: uppercase;
}

.form-generic h2 {
	margin: 0px 0px 20px 0px;
	font-size: 2.5em;
}

.form-generic .form-left {
	float: left;
	width: 40%;
}

.form-generic .form-left p {
	font-size: 1.5em;
}

.form-generic .form-right {
	margin: 0px 0px 0px 50%;
}

.form-generic {
	background: #EFEFEF;
}

.form-generic h2 {
	border-bottom: 3px solid #CCCCCC;
}



/** FORM ERRORS **/
.form .form-error-summary {
	padding: 20px;
}

.form .form-error-summary h4 {
	font-size: 1.3em;
	margin: 0px 0px 30px 0px;
	padding: 0px 0px 10px 0px;
}

.form .form-error-summary ul {
	list-style: none;
	margin: 0px;
	padding: 0px;
}

.form .form-error-summary {
	background: #D52B1E;
	color: #FFFFFF;
	border: none;
}

.form .form-error-summary h4 {
	border-bottom: 2px solid #FFFFFF;
}



/** COOKIE POLICY **/
.cookiebox {
	z-index: 999;
	text-align: center;
}

.cookiebox p a {
	display: block;
	margin: 20px 0px;
	text-transform: uppercase;
}

.cookiebox .btn {
	background: #D52B1E;
	color: #FFFFFF;
}

.cookiebox .btn:hover {
	background: #7EC188;
	color: #FFFFFF;
}


/** LEGAL BTN **/
.legal-btn {
	text-transform: uppercase;
	background: #F69C31;
	color: #FFFFFF;
	-webkit-transition: all .2s linear;
	-moz-transition: all .2s linear;
	transition: all .2s linear;
	cursor: pointer;
	padding: 10px 20px;
	margin: 0px 10px;
}

.legal-btn:hover {
	background: #D52B1E;
	color: #FFFFFF;
}



/** RESPONSIVE **/
@media screen and (max-width:970px) {

	.form-generic .form-left p {
		font-size: 1.2em;
	}

}

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

	.form-half,
	.form-half-left,
	.form-half-right {
		float: none;
		width: 100%;
	}

}

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

	.form-generic .form-left,
	.form-generic .form-right {
		float: none;
		clear: both;
		width: 100%;
		margin: 0px 0px 20px 0px;
	}

	.legal-btn {
		padding: 10px 10px;
		margin: 0px 5px;
	}

}

@media screen and (max-width: 660px) {
	.cookiebox {
		bottom: 30%;
		margin-bottom: -80px;
	}
}



/** CTA BANNER **/
.CTABanner {
	background-color: #FFFFFF;
	padding: 40px 0px;
}

.CTABanner .CTABanner-text {
	float: left;
	font-size: 1.3em;
	width: 320px;
}

.CTABanner .CTABanner-text h2 {
	color: red;
}

.CTABanner .CTABanner-text h2,
.CTABanner .CTABanner-text p {
	margin: 0px;
}

.CTABanner .CTABanner-buttons {
	display: block;
	margin: 0px 0px 0px 340px;
	text-align: right;
}

.CTABanner .CTABanner-buttons .Btn {
	margin: 15px 0px 0px 5px;
}

@media screen and (max-width: 780px) {
	.CTABanner {
		padding: 20px 0px;
	}

	.CTABanner .CTABanner-text {
		float: none;
		font-size: 1em;
		width: auto;
		text-align: center;
	}

	.CTABanner .CTABanner-buttons {
		margin: 10px 0px 0px 0px;
		text-align: center;
	}

	.CTABanner .CTABanner-buttons .Btn {
		margin: 5px;
	}
}

@media screen and (max-width: 540px) {
	.CTABanner .CTABanner-buttons .Btn {
		display: block;
		margin: 10px auto 0px auto;
		max-width: 200px;
	}
}



/** FANCYBOX **/
.fancybox-skin {
	padding: 0px !important;
	color: #000000;
}

.fancybox-nav {
	width: 60px !important;
}



/** SUPERMAN BANNER **/
.HomeSection--superman {
	position: relative;
	background: #FFFFFF url(superman/bg.jpg) no-repeat 0% 50%;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	background-size: cover;
}

.HomeSection--superman .fw-margins {
	position: relative;
	z-index: 2;
}

.HomeSection--superman .Content {
	padding: 40px 200px 40px 0px;
	font-size: 16px;
}

.HomeSection--superman .Content h2 {
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	text-transform: uppercase;
	font-size: 46px;
	line-height: 48px;
}

.HomeSection--superman .Superman {
	position: absolute;
	width: auto;
	height: 100%;
}

.HomeSection--superman .Superman.Superman--desktop {
	display: block;
	top: 0;
	left: 60%;
}

.HomeSection--superman .Superman.Superman--mobile {
	display: none;
	top: 0;
	right: 0;
}

@media screen and (max-width: 840px) {
	.HomeSection--superman .Content {
		max-width: 320px;
	}

	.HomeSection--superman .Superman.Superman--desktop {
		display: none;
	}

	.HomeSection--superman .Superman.Superman--mobile {
		display: block;
	}
}

@media screen and (max-width: 700px) {
	.HomeSection--superman:after {
		content: '';
		position: absolute;
		left: 0;
		right: 0;
		bottom: 0;
		height: 300px;
		background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
		background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
		background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
		filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#000000', GradientType=0);
	}

	.HomeSection--superman .Content {
		text-align: center;
	}

	.HomeSection--superman .Content {
		padding: 40% 20px 40px 20px;
		max-width: unset;
	}

	.HomeSection--superman .Content,
	.HomeSection--superman .Content h2 {
		color: #FFFFFF;
	}

	.HomeSection--superman .Content h2 {
		font-size: 26px;
		line-height: 28px;
	}

	.HomeSection--superman .Superman {
		right: -10%;
	}
}