/*Font Includes*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;700;900&display=swap');
/*Custom Properties*/
:root{
	--black: #171F35;
	--dark: #253570;
	--accent: #B24029;
	--secondary: #445A8E;
	--pale: #CED3D4;
	--white: #FFFFFF;
	--ffMain: 'Poppins', sans-serif;
	--ffSecondary: 'Poppins', sans-serif;
	--smallRadius: 4px;
	--largeRadius: 8px;
	--roundRadius: 100vh;
	--boxShadow: 0px 6px 9px rgba(0,0,0,0.2);
	--paddingY: 120px;
	--paddingX: 20px;
	--cardPadding: 30px;
	--spacing: 30px;
}
@media screen and (max-width: 64.9375em) {
	:root{
		--paddingY: 80px;
		--paddingX: 80px;
	}	
}
@media screen and (max-width: 52.9375em) {
	:root{
		--paddingY: 60px;
		--paddingX: 40px;
	}	
}
@media screen and (max-width: 39.9375em) {
	:root{
		--spacing: 28px;
		--paddingY: 40px;
		--paddingX: 10px;
	}
}
.facebook{
	overflow: hidden;
}
.site{
	overflow: hidden;
}
.imageIcon{
	width: 60px;
	height: 60px;
	background-color: var(--pale);
	border-radius: 50%!important;
	padding: 6px;
}
.numero{
	font-size: 40px;
	margin: 0;
	display: block;
	color: var(--accent);
	font-weight: bold;
	background-color: var(--pale);
	height: 60px;
	width: 60px;
	line-height: 60px;
	text-align: center;
	border-radius: 50%;
}
.cardContainer{
	margin-bottom: 30px;
}
.simpleCard:hover{
	background-color: rgba(0,0,0,0.1)
}
.simpleCard{
	cursor: ;
	font-size: 0.9em;
	background-color: rgba(0,0,0,0.0);
	transition: background-color 0.5s ease;
	padding: 20px;
	height: 100%;
	border-radius: 6px;
	border: 1px solid rgba(0,0,0,0.23);
}
/*Utilities*/
.tar{text-align: right;} @media screen and (max-width: 64.9375em) {.tar{text-align: left;}.tar.always{text-align: right;}}
.tac{text-align: center!important;}
.noMargin{margin: 0!important;}
.condensed{--spacing: 15px;}

.text img:only-child{margin-bottom: var(--spacing);}
.noPadding{padding: 0!important;}
.padBottom{padding-bottom: 60px!important;}
.padTop{padding-top: 60px!important;}
.padRight{padding-right: 60px!important;}
.padLeft{padding-left: 60px!important;}
@media screen and (max-width: 39.9375em) {.noMobi{display: none;}}
@media screen and (max-width: 64.9375em) {.noMed{display: none;}}
/*Clear Some Defaults*/
html,body{height:100%; font-family: var(--ffMain)}
*:focus{outline: none;}
a{text-decoration: none;color: inherit;}
ul,ol{list-style: none; margin: 0; padding: 0;}

/*Hides and Shows*/
.landline{display: none!important;}
ul.socials a[href*="#"], .social a[href*="#"], .creds a[href*="#"]{display: none!important;}

/*Sections*/
section{padding: var(--paddingY) var(--paddingX);position: relative;z-index: 1;}

/*Rows*/
section .row + .row{margin-top: 80px;} @media screen and (max-width: 39.9375em) {section .row + .row{margin-top: 50px;}}

/*Background Color Variations*/
.darkBg{background-color: var(--dark);}
.paleBg{background-color: var(--pale);}
.accentBg{background-color: var(--accent);}
.secondaryBg{background-color: var(--secondary);}
.whiteBg{background-color: var(--white);}
.blackBg{background-color: var(--black);}
.gradeBg{background-image: linear-gradient(to right, var(--dark), var(--accent));}
.fadeBg{background-image: linear-gradient(to top, var(--pale) 10%, var(--white) 80%);}
/*Color Variations*/
.darkText{color: var(--dark)!important;}
.paleText{color: var(--pale)!important;}
.accentText{color: var(--accent)!important;}
.secondaryText{color: var(--secondary)!important;}
.whiteText{color: var(--white)!important;}
.blackText{color: var(--black)!important;}

/*Nav*/
nav ul{
	padding: 0 0 0 20px;
}
nav ul li{
	display: inline-block;
	position: relative;
}
nav ul li a.active{
	color: var(--secondary);
	font-weight: bold;
}
nav ul li a:hover{
	color: var(--accent);
}
nav ul li a{
	position: relative;
	color: var(--darkest);
	font-weight: 500;
	padding: 0 16px;
	font-size: 14px;
	display: inline-block;
	line-height: 46px;
}
/*Sub Menu*/
nav ul li:hover > a:after {
	color: var(--accent);
}
nav ul li > a:after {
	content: '\f078';
	color: var(--secondary);
	margin-left: 8px;
	text-align: center;
	font-family: 'Font Awesome 5 Pro';
	font-weight: 500;
	font-size: 10px;
}
nav ul li > a:only-child:after { display: none;} 
nav ul li:hover .sub-menu{
	display: block;
}
.sub-menu{
	border: none;
	background-color: #EEEEEE;
	overflow: hidden;
	display: none;
	left: 0px;
	position: absolute;
	box-shadow: var(--boxShadow);
	padding: 10px;
	z-index: 100;
}
.sub-menu li a{
	line-height: 30px;
	display: block;
}
.sub-menu li a:hover{
	color: var(--accent);
}
.sub-menu li{
	clear: both;
	width: 100%;
	display: block;
	white-space: nowrap;
}
@media screen and (max-width: 64.9375em) {
	.menuContainer{
		order: +1;
	}
	nav.shown{
		pointer-events: initial;
		opacity: 1;
	}
	nav{
		transition: opacity 0.55s ease;
		pointer-events: none;
		opacity: 0;
		position: fixed;
		display: flex;
		align-items: center;
		justify-content: center;
		height: 100vh;
		width: 400px;
		top: 0;
		right: 0;
		z-index: 100;
		background-color: var(--black);
		padding: 0px;
		margin: 0;
	}
	nav:before{
		content: '';
		height: 100%;
		width: 100%;
		top: 0;
		left: 0;
		position: absolute;
		background-size: cover;
		background-image: url('../images/bathrooms.jpg');
		mix-blend-mode: overlay;
		z-index: -1;
		opacity: 0.8;
	}
	nav ul li a.active:before{
		content: '';
		z-index: 2;
		height: 100%;
		width: 2px;
		bottom: 0;
		left: unset;
		right: -20px;
		transform: translateX(0%);
		position: absolute;
		background-color: var(--accent);
	}
	nav ul li:hover .sub-menu{
		display: none;
	}
	.sub-menu li a{
		line-height: 30px;
		font-size: 18px;
		font-weight: 500;
		opacity: 0.7;
	}
	.sub-menu{
		padding: 10px 0;
		background-color: transparent;
		position: relative;
		box-shadow: none;
	}
	nav ul{
		padding: 50px;
		width: 100%;
	}
	nav ul li > a:after {
		font-size: 16px;
		position: absolute;
		top: 0px;
		right: 0px;
		margin: 0;
	}
	nav ul li{
		width: 100%;
	}
	nav ul li a{
		display: block;
		line-height: 40px;
		color: var(--white);
		padding: 0 20px;
		font-size: 26px;
		text-align: right;
	}
}
@media screen and (max-width: 39.9375em) {
	nav{
		width: 100%;
	}
}
.banner{
	background-color: var(--black);
	padding: 6px var(--paddingX);
}
.showMenny{
	position: fixed;
	display: none;
	top: 0;
	right: 0;
	z-index: 121;
	background-color: var(--accent);
	height: 40px;
	width: 50px;
	font-size: 22px;
	color: white;
	border-radius: 0px;
	transition: height 0.5s ease;
}
@media screen and (max-width: 64.9375em) {
	.showMenny.stuck{
		height: 78px;
	}
	.showMenny{
		display: block;
	}
}
@media screen and (max-width: 39.9375em) {
	.showMenny.stuck{
		height: 58px;
	}
}

@media screen and (max-width: 376px) {
	.showMenny.stuck{
		height: 48px;
	}	
}
@media screen and (max-width: 52.9375em) {
	.secondaryNav ul{
		padding-right: 20px;
	}
	
}
@media screen and (max-width: 39.9375em) {
	.secondaryNav ul{
		display: none;
	}
}
.banner ul li:last-of-type:after{
	content: '';
	display: none;
}
.banner ul li:after{
	content: '|';
	color: var(--pale);
	margin-right: 10px;
	margin-left: 10px;
}
.banner ul li{
	float: left;
}
.banner ul li .mobileContent{display: none;}
.banner ul li .desktopContent{display: inline;}
@media screen and (max-width: 39.9375em) {
	.banner ul li .mobileContent{display: inline;}
	.banner ul li .desktopContent{display: none;}	
}
.banner ul li a:hover{
	color: var(--accent);
}
.banner ul li a{
	color: white;
	display: inline-block;
	font-size: 12px;
	line-height: 28px;
	font-weight: 400;
}
/*TopBar*/
.topBar.is_stuck{
	padding: 4px var(--paddingX);
}
.topBar{
	box-shadow: var(--boxShadow);
	z-index: 101;
	background-color: white;
	padding: 12px var(--paddingX);
	transition: padding 0.5s ease, background-color 0.5s ease;
}
@media screen and (max-width: 64.9375em) {
	.topBar .columns.menuContainer{
		width: 100%;
		flex: 0 0 100%;
	}
}
@media screen and (max-width: 39.9375em) {
	.topBar{
		padding-top: 20px;
		padding-bottom: 20px;
	}
	.topBar .columns{
		/*width: 100%;*/
	}
}
.topBar .logo {
	position: relative;
}
.topBar.is_stuck .logo img{
	/*height: 50px;*/
}
.topBar .logo img{
	height: 70px;
	transition: height 0.5s ease;
}
@media screen and (max-width: 39.9375em) {
	.topBar .logo img{
		height: 50px;
	}
}
@media screen and (max-width: 376px) {
	.topBar .logo img{
		height: 40px;
	}
}
.topBar .btn{
	float: left;
	font-size: 14px;
	font-weight: bold;
	color: white;
	display: inline-block;
	line-height: 40px;
	margin-right: 20px;
	padding: 0 1em;
	background-color: var(--accent);
	border-radius: var(--smallRadius);
}
.topBar .btn.menu i{
	width: 16px;
}
.topBar .btn.menu{
	background-color: var(--dark);
	display: none;
}
@media screen and (max-width: 64.9375em) {
	.topBar .btn.menu{
		display: inline-block;
	}
}
.linksContainer{
	padding-left: 0;
}
.topBar ul.socials{
	float: left;
	margin-bottom: 0!important;
}
@media screen and (max-width: 52.9375em) {
	.topBar ul.socials{
		margin-right: 20px;
	}
}
@media screen and (max-width: 39.9375em) {
	.topBar ul.socials{
		margin-right: 30px
	}
}
.topBar ul.socials li{
	float: left;
}
.topBar ul.socials li a{
	border-radius: var(--smallRadius);
	color: var(--dark);
	font-size: 20px;
	display: inline-block;
	width: 40px;
	overflow: hidden;
	text-align: center;
	border-radius: 50%;
	margin-left: 14px;
	height: 40px;
}
@media screen and (max-width: 39.9375em) {
.topBar ul.socials li{
	height: 32px;
}
.topBar ul.socials li a{
	width: 32px;
	height: 32px;
	margin-left: 10px;
}	
}
/*Main Slider*/
.floater{
	position: absolute;
	font-size: 200px;
	z-index: -1;
	line-height: 1ch;
	color: white;
	font-weight: bold;
	bottom: 0;
	right: 0;
	opacity: 0.6;
}
@media screen and (max-width: 64.9375em) {
	.floater{
		font-size: 150px;
	}
}
@media screen and (max-width: 39.9375em) {
	.floater{
		font-size: 100px;
	}
}
.slideText{
	position: absolute;
	width: 100%;
	bottom: -100%;
	padding: 50px var(--paddingX);
	transition: bottom 0.7s ease 0.3s;
}
.slide.is-selected .slideText{
	bottom: 0;
}
.slideText .text .preHeading{
	color: var(--white);
	font-weight: 500;
	line-height: 100%;
	opacity: 0.6;
	margin-bottom: 0;
	letter-spacing: 1px;
}
.slideText .text a.btn:hover{
	background-color: rgba(0,0,0,0.5)!important;
}
.slideText .text a.btn{
	background-color: transparent;
	border: 1px solid white;
	margin: 0;
}
.slideText .text p{
	margin: 0;
	line-height: 120%;
	font-size: 2.2em;
	font-weight: 500;
}
.mainSlider{
	overflow: hidden;
}
.mainSlider .slide:before{
	background-image: linear-gradient(to top, var(--black), rgba(0,0,0,0.0));
	content: '';
	height: 60%;
	width: 100%;
	position: absolute;
	left: 0;
	bottom: 0;
}
.mainSlider .slide{
	width: 100%;
	height: 600px;
	overflow: hidden;
	transform: scale(1.1);
	transition: transform 0.5s ease;
	transform-origin: 0% 0%;
	z-index: -11;
}
.mainSlider .slide.is-selected{
	transform: scale(1);
	z-index: 11;
}
.mainSlider .slide img{
	transform: scale(1.2);
}
.mainSlider .slide.is-selected img{
	transform: scale(1);
}
@media screen and (max-width: 39.9375em) {
	.mainSlider .slide.is-selected img{
		transform: scale(1);
	}	
}
.mainSlider .slide img{
	transition: transform 6s ease;
	object-fit: cover;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -2;
	transition: 
}
@media screen and (max-width: 64.9375em) {
	.mainSlider .slide{
		height: 500px;
	}
}
@media screen and (max-width: 39.9375em) {
	.mainSlider .slide{
		height: 300px;
	}
	.slideText .columns{
		flex: 0 0 100%;
	}
	.slideText .text a.btn{
		display: none;
	}
	.slideText{
		padding-bottom: 10px;
	}
	.slideText .text p{
		margin: 0;
		font-size: 1.4em;
		font-weight: 500;
		margin-bottom: 20px;
	}
}
.splitter{
	columns: 2 !important;
	column-gap: var(--spacing);
}
.splitter p{
	/*break-inside: avoid-column!important;*/
}
.special{
	overflow: hidden;
	padding-bottom: 0;
}
.special .van img{
	width: 100%
}
@media screen and (max-width: 64.9375em) {
	.special .van img{
		width: 70%
	}
}
.special .van{
	position: relative;
}
.special p.big{
	font-size: 1.2em;
	line-height: 110%;
}
.special h1{
	position: relative;
	z-index: 1;
	margin-bottom: 10px!important;
}
.special .feather{
	position: absolute;
	top: -20px;
	left: -20px;
	z-index: -1;
	opacity: 0.8;
}
.van:before{
	content: '';
	width: 10000px;
	height: 1000%;
	top: 55%;
	background-color: var(--white);
	z-index: -1;
	position: absolute;
	left: -1000px;
}
.bigTicker{
	position: relative;
}
.strap{
	color: white;
	font-size: 30px;
}
.bigTicker .bottom *{
	margin-bottom: 0!important;
}
.bigTicker .bottom{
	position: absolute;
	width: 100%;
	background-image: linear-gradient(to top, rgba(0,0,0,1), rgba(0,0,0,0.0));
	z-index: 1;
	bottom: 0;
	padding: 50px var(--paddingX);
}
.bigTicker .slide img{
	opacity: 0;
	pointer-events: none;
}
@keyframes kennyb{
	from{
		background-position: bottom left
	}
	to{
		background-position: top right
	}
}
.bigTicker .slide.is-selected{
	animation: kennyb linear 22s infinite alternate;
}
.bigTicker .slide{
	height: 600px;
	background-position: bottom center;
	width: 100%;
}
/*Feedback*/
.feedback .background{
	pointer-events: none;
	object-fit: cover;
	position: absolute;
	height: 100%;
	width: 100%;
	left: 0;
	z-index: -1;
	top: 0;
	mix-blend-mode: overlay;
}
.reviewHolder{
	margin-bottom: 30px;
}
@media screen and (max-width: 39.9375em) {
	.feedback .text h2{
		margin-bottom: 30px;
	}
}
.review{
	height: 100%;
	background-color: white;
	overflow: hidden;
	border-radius: var(--largeRadius);
	box-shadow: var(--boxShadow);
}
.review .image{
	position: relative;
	height: 250px;
}
@media screen and (max-width: 39.9375em) {
	.review .image{
		height: 180px;
	}
}
.review .image img{
	border-radius: 0;
	object-fit: cover;
	width: 100%;
	height: 100%;
}
.review .text h4{
	text-align: right;
	font-size: 1.2em;
	font-weight: 500;
}
.review .text p{
	font-style: italic;
}
.review .text *:last-child{
	margin-bottom: 0;
}
.review .text{
	padding: 30px;
}
@media screen and (max-width: 39.9375em) {
	.splitter{
		columns: 1 !important;
		column-gap: var(--spacing);
	}
}
.sideBar{
	box-shadow: var(--boxShadow);
	position: relative;
	margin-top: -100px;
	background-color: var(--black);
	overflow: hidden;
	height: calc(100% + 100px);
	display: flex;
	flex-direction: column;
	border-radius: var(--smallRadius);
}
.sideBar.contained{
	margin-top: 0px;
	height: 100%;
}
section aside .row + .row{
	margin-top: 30px!important;
}
.sideBar .icon{
	margin-bottom: 0!important;
}
@media screen and (max-width: 64.9375em) {
	aside{
		order: +1;
		margin-top: 30px;
	}
	.sideBar{
		margin-top: 0px;
		height: 100%;
	}
}
@media screen and (max-width: 39.9375em) {
	aside .text a.btn{
		font-size: 10px;
	}
}
.sideBar .imageBox{
	flex: 1;
	overflow: hidden;
	position: relative;
	min-height: 200px;
	max-height: 800px;
}
.sideBar .textBox{
	height: auto;
	padding: 40px;
	position: relative;
}
.sideBar .imageBox img{
	margin-bottom: 0!important;
	object-fit: cover;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	border-radius: 0px;
	/*mix-blend-mode: overlay;*/
}
@media screen and (max-width: 39.9375em) {
	.sideBar .imageBox{
		position: relative;
		min-height: auto;
	}
	.sideBar .imageBox img{
		object-fit: initial;
		position: relative;
	}
}
.sideBar .block{
	background-color: var(--white);
	position: absolute;
	padding: 10px 14px;
	text-align: center;
	border-radius: 4px;
	top: -20px;
}
.sideBar .block span i{
	margin-bottom: 15px;
}
.sideBar .block span{
	font-weight: bold;
	font-size: 36px;
	line-height: 100%;
}
.sideBar .block p{
	color: var(--secondary);
	text-transform: uppercase;
	font-size: 12px!important;
	letter-spacing: 1px;
	font-weight: bold;
}
.sideBar .block span, .sideBar .block p{
	margin: 0;
}
/*Other Pages*/
.otherPages a.active .otherPage{
	display: none;
	width: 0!important;
	height: 0!important;
}
.otherPages a{
	margin-bottom: 30px;
}
.otherPage{
	height: 100%;
	overflow: hidden;
	background-color: var(--black);
	box-shadow: var(--boxShadow);
	border-radius: var(--largeRadius);
}
.otherPage:hover .imgBox img{
	transform: scale(1.2);
}
.otherPage .text h3{
	font-weight: 500;
}
.otherPage .text p{
	color: rgba(255,255,255,0.7)
}
.otherPage .text{
	padding: 30px;
}
.otherPage .imgBox{
	height: 200px;
	overflow: hidden;
	position: relative;
}
.otherPage .imgBox img{
	transform: scale(1);
	transition: transform 0.5s ease-in-out;
	object-fit: cover;
	border-radius: 0px;
	width: 100%;
	height: 100%;
}

/*Quote form*/
.quoteForm{
	box-shadow: 0px 0px 20px rgba(0,0,0,0.2);
	padding: 0;
	display: none;
	overflow: hidden;
	background-color: var(--white);
	max-width: 1540px;
}
.quoteForm .text input{
	height: 40px;
	line-height: 40px;
}

.formText{
	padding: 60px;
}
@media screen and (max-width: 39.9375em) {
	.formText{
		padding: 40px;
	}
}
.formImage{
	overflow: hidden;
	border-radius: 0;
	position: relative;
}
@media screen and (max-width: 39.9375em) {
	.formImage{
		height: 200px;
	}
}
.formImage img{
	object-fit: cover;
	height: 100%;
	border-radius: 0;
	width: 100%;
	top: 0;
	left: 0;
	position: absolute;
}
.fancybox-slide--html .fancybox-close-small {
	color: var(--accent);
	padding: 2px;
	top: 20px;
	right: 20px;
}
@media screen and (max-width: 39.9375em) {
	.fancybox-slide--html .fancybox-close-small {
		color: #FFFFFF;
		background-color: var(--accent);
		padding: 2px;
		top: 20px;
		right: 20px;
	}	
}

/*Services Slider*/
.sliderArrows button:last-of-type{
	margin-left: 10px;
}
.sliderArrows button{
	color: var(--white);
	cursor: pointer;
	padding: 14px;
	background-color: var(--accent);
	border-radius: 1px;
}
.sliderArrows{
	padding-top: 40px;
}
.servSlide{
	overflow: hidden;
}
.servSlide .flickity-viewport{
	overflow: visible;
}
.service:not(.card){
	padding-right: 60px;
}
.service{
	overflow: hidden;
	width: 35%;
	margin-right: 50px;
}
.service.card .textSide a.btn:hover i{
	left: -6px;
}
.service.card .textSide a.btn:hover{
	background-color: transparent!important;
	box-shadow: none!important;
}
.service.card .textSide a.btn{
	background-color: transparent;
	color: var(--accent);
	font-size: 1.1em;
	box-shadow: none;
	padding: 0;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 0!important;
}
.service.card .textSide a.btn i{
	color: var(--accent);
	position: relative;
	left: 0;
	transition: left 0.4s ease;
}
.service.card .textSide{
	width: 50%;
	font-size: 0.9em;
	padding: 40px 10px 40px 40px;
}
.service.card .imageSide:before{
	content: '';
	width: 100px;
	height: 100%;
	position: absolute;
	z-index: 1;
	top: 0;
	left: -1px;
	background-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' preserveAspectRatio='none' viewBox='0 0 126.48 372' style='enable-background:new 0 0 126.48 372;' xml:space='preserve'%3E%3Cstyle type='text/css'%3E .st0%7Bfill:%23FFFFFF;%7D .st1%7Bfill:%233C508E;%7D%0A%3C/style%3E%3Cdefs%3E%3C/defs%3E%3Cpath class='st0' d='M0.46,0H0v372h114.45C18.98,242.92,0.99,92.18,0.46,0z'/%3E%3Cpath class='st1' d='M126.48,372C36.86,243.16,22.56,96.13,25.27,0H0.46c0.52,92.18,18.52,242.92,113.98,372H126.48z'/%3E%3C/svg%3E%0A");
}
.service.card .imageSide {
	width: 50%;
	position: relative;
}
.service.card .imageSide img{
	object-fit: cover;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	margin-bottom: 0;
	border-radius: 0;
}
.service.card{
	display: flex;
}
.service.card{
	padding: 0!important;
	border-radius: 2px!important;
	width: 50%;
	background-color: white;
}
@media screen and (max-width: 64.9375em) {
	.service{
		width: 62%;
		margin-right: 30px;
	}
	.service.card{
		width: 92%;
	}
	.service.card{
		flex-direction: column;
	}
	.service.card .textSide{
		width: 100%;
		padding: 30px;
	}
	.service.card .imageSide {
		height: 200px;
		order: -1;
		width: 100%;
		position: relative;
	}
	.service.card .imageSide:before{
		content: '';
		width: 100%;
		height: 50px;
		position: absolute;
		z-index: 1;
		top: unset;
		bottom: 0;
		left: 0px;
		background-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' preserveAspectRatio='none' viewBox='0 0 372 126.48' style='enable-background:new 0 0 372 126.48;' xml:space='preserve'%3E%3Cstyle type='text/css'%3E .st0%7Bfill:%23FFFFFF;%7D .st1%7Bfill:%233C508E;%7D%0A%3C/style%3E%3Cdefs%3E%3C/defs%3E%3Cpath class='st0' d='M372,126.02v0.46H0L0,12.04C129.08,107.51,279.82,125.5,372,126.02z'/%3E%3Cpath class='st1' d='M0,0c128.84,89.62,275.87,103.92,372,101.22v24.81C279.82,125.5,129.08,107.51,0,12.04L0,0z'/%3E%3C/svg%3E%0A");
	}
}
@media screen and (max-width: 39.9375em) {
	.service{
		width: 80%;
		margin-right: 10px;
	}
	.service.card{
		width: 100%;
		margin-right: 30px;
	}
}
/*Galleries*/
.fancybox-infobar{
	color: #FFFFFF;
	font-size: 1.2em;
}
.fancybox-content img{
	border-radius: var(--largeRadius);
	box-shadow: 5px 5px 10px rgba(0,0,0,0.3);
}
.gallery{
	display: block;
}
.gallery .columns img{
	margin: 0;
	object-fit: cover;
	width: 100%;
	height: 100%;
}
.gallery .columns .caption{
	position: absolute;
	pointer-events: none;
	color: #444;
	width: calc(100% - 20px);
	background-color: rgba(255,255,255,0.6);
	bottom: 10px;
	padding: 12px;
	left: 10px;
	font-size: 13px;
}
.gallery .columns:hover::before{
	opacity: 1
}
.gallery .columns a{
	display: block;
}
.gallery .columns a:hover:before{
	opacity: 1;
}
.gallery .columns a:before{
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
	content: '\f06e';
	opacity: 0;
	font-weight: 300;
	color: var(--white);
	width:  80px;
	height: 80px;
	font-size: 30px;
	text-align: center;
	line-height: 80px;
	pointer-events: none;
	font-family: 'Font Awesome 5 Pro';
	background-color: var(--accent);
	position: absolute;
	right: 36px;
	bottom: 4px;
}
.gallery .columns{
	position: relative;
	overflow: hidden;
	width: 25%;
	padding: 20px;
	float: left;
}
.gallery .columns:nth-child(10n + 6){
	float: right;
	width: 50%;
}
.gallery .columns:nth-child(10n + 1){
	width: 50%;
}
@media screen and (max-width: 39.9375em) {
	.gallery .columns:nth-child(3n + 1){
		width: 100%;
	}
	.gallery .columns:nth-child(3n + 2),.gallery .columns:nth-child(3n + 3){
		width: 50%;
	}
}
/*Maps*/
.map{
	min-height: 300px;
	padding: 0 var(--paddingX);
	width: 100%;
	position: relative;
	z-index: 1;
	overflow: hidden;
	background-color: var(--secondary);
}
.map iframe{
	position: absolute;
	pointer-events: none;
	width: 140%;
	opacity: 0.8;
	height: calc(100% + 300px);
	z-index: -2;
	left: 0;
	top: -150px;
	filter: grayscale(1);
}
.mapCard{
	background-color: var(--black);
	box-shadow: 0px 0px 20px rgba(0,0,0,0.7);
	padding: 120px 60px;
}
@media screen and (max-width: 39.9375em) {
	.mapCard{
		padding: 50px 30px;
	}	
}
@media screen and (max-width: 39.9375em) {
	.map{
		padding: 300px 0 30px 0;
	}
	.map iframe{
		position: absolute;
		pointer-events: none;
		left: 0;
		width: 100%;
		height: calc(100% + 400px);
		z-index: -2;
		top: -250px;
		filter: grayscale(1);
	}
}
/*Set Colours*/
.text{color: var(--black);}
.text.light{color: var(--white);}
/*Listed on*/
.listedOn{
	/*display: flex;*/
}
.listedOn .item a{
	display: block;
	line-height: 200%;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow-x: hidden;
}
.listedOn .item:nth-child(3n+1){background-image: url('../images/lo1.jpg');}
.listedOn .item:nth-child(3n+2){background-image: url('../images/lo2.jpg');}
.listedOn .item:nth-child(3n+3){background-image: url('../images/lo3.jpg');}
.listedOn .item{
	box-shadow: var(--boxShadow);
	width: calc(100% / 5 - 16px);
	display: flex;
	align-items: center;
	justify-content: center;
	background-size: cover;
	background-position: center;
	color: white;
	margin-right: 20px;
	height: 80px;
	padding: 10px;
	overflow: hidden;
	border-radius: 3px;
	font-size: 12px;
}
@media screen and (max-width: 39.9375em) {
	.listedOn .item{
		width: calc(100% / 3 - 14px);
	}
}
/*Header*/
header:before{
	content: '';
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	background-image: linear-gradient(to right, var(--black), rgba(0,0,0,0.0));
}
@media screen and (max-width: 39.9375em) {
	header:before{
		width: 200%;
	}	
}
header{
	position: relative;
	z-index: 1;
	overflow: hidden;
	background-color: var(--black);
	padding: 150px var(--paddingX);
}
@media screen and (max-width: 39.9375em) {
	header{
		padding-top: 200px;
		padding-bottom: 40px;
	}
}
header img.background{
	mix-blend-mode: normal;
	opacity: 1;
	z-index: -2;
	animation: zoomer 10s infinite alternate ease-in-out;
}
header .text .preHeading{
	color: var(--accent);
}
header .text p{
	border-left: 1px solid white;
	opacity: 0.7;
	padding-left: 30px;
}
@keyframes zoomer{
	from{
		transform: scale(1);
	}
	to{
		transform: scale(1.2);
	}
}
.smallSlider .obj img{
	object-fit: cover;
	width: 100%;
	height: 100%;
}
.smallSlider .obj{
	width: 100%;
	height: 500px;
}
.text .headerText h1{
	line-height: 110%!important;
}
.headerText{
	position: relative;
	z-index: 1;
	width: 150%;
	padding: 0 0 80px 0;
}
.headerContainer{
	position: relative;
}
.headerSlide{
	width: 130%;
	height: 700px;
	position: relative;
	background-color: red
}
.headerSlide:before{
	content: '';
	width: 100%;
	height: 100%;
	background-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' preserveAspectRatio='none' viewBox='0 0 1487 830' style='enable-background:new 0 0 1487 830;' xml:space='preserve'%3E%3Cstyle type='text/css'%3E .st0%7Bfill:%23253570;%7D .st1%7Bfill:%23FFFFFF;%7D%0A%3C/style%3E%3Cdefs%3E%3C/defs%3E%3Cpath class='st0' d='M899.61,823.18C771.44,822.5,635.57,810.66,502.05,780C-16.2,661,17.33,0,17.33,0H8v830h948v-7.81 C937.41,822.74,918.6,823.08,899.61,823.18z'/%3E%3Cpath class='st1' d='M859.63,823.18c-123.57-0.69-254.57-12.53-383.3-43.18C-23.33,661,9,0,9,0H0v830h1487v-95.5 C1487,734.5,1205.28,821.28,859.63,823.18z'/%3E%3C/svg%3E%0A");
	position: absolute;
	left: 0;
	top: 0;
}

/*Headings*/
.text h1, .text h2, .text h3, .text h4, .text h5, .text h6{
	margin: 0 0 var(--spacing) 0;
	letter-spacing: -1px;
	line-height: 120%;
	color: var(--dark);
}
.text h1 span, .text h2 span, .text h3 span, .text h4 span, .text h5 span, .text h6 span{
	color: var(--accent)
}
.text.light h1, .text.light h2, .text.light h3, .text.light h4{color: var(--white);}
/*Heading Sizing Structure*/
.text h1{font-size: 2.2em;}
.text h2{font-size: 2em;}
.text h3{font-size: 1.7em; color: var(--secondary)}
.text h4{font-size: 1.3em;}
@media screen and (max-width: 64.9375em) {
	.text h1{font-size: 1.8em;}
	.text h2{font-size: 1.6em;}
	.text h3{font-size: 1.4em;}
	.text h4{font-size: 1.2em;}	
}
@media screen and (max-width: 39.9375em) {
	.text h1{font-size: 1.8em;}
	.text h2{font-size: 1.6em;}
	.text h3{font-size: 1.4em;}
	.text h4{font-size: 1.2em;}	
}
/*Pre Headings*/
.text .preHeading{
	font-size: 0.9em;
	font-weight: 500;
	position: relative;
	z-index: 3;
	color: var(--accent);
	display: block;
}
/*Images*/
.text figure img{
	margin-bottom: 0;
	object-fit: cover;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.text figure.second{
	top: 50px;
}
.text figure .block > *{
	display: block;
	line-height: 100%;
	overflow: hidden;
	text-align: center;
}
.text figure .block > span{
	color: var(--accent);
	margin-bottom: 4px;
	font-size: 13px;
}
.text figure .block > a{
	font-weight: bold;
	font-size: 27px;
}
.text figure .block{
	border-radius: var(--smallRadius);
	padding: 12px;
	position: absolute;
	background-color: white;
	top: 30px;
	right: -20px;
	box-shadow: var(--boxShadow)
}
.text figure{
	width: 100%;
	height: 100%;
	z-index: 1;
	min-height: 40vh;
	max-height: 80vh;
	margin: 0;
	border-radius: var(--largeRadius);
	position: relative;
}
@media screen and (max-width: 39.9375em) {
	.text figure{
		height: 50vh;
	}
}
.text figure figcaption{
	background-color: var(--white);
	position: absolute;
	padding: 1em;
	border-radius: var(--smallRadius);
	bottom: 20px;
	font-size: 0.8em;
	font-weight: bold;
	left: 20px;
	box-shadow: var(--boxShadow);
}
.text img{
	margin: 0 0 var(--spacing) 0;
	border-radius: var(--smallRadius);
}
.text img.fillParent{
	object-fit: cover;
	width: 100%;
	position: absolute;
	height: 100%;
	z-index: -1;
}
.text img.pullLeft{
	max-width: 30%;
	display: inline-block;
	float: left;
	margin-right: 20px;
	margin-bottom: 20px;
	clear: both;
}
.text img.pullRight{
	max-width: 30%;
	display: inline-block;
	float: right;
	margin-left: 20px;
	margin-bottom: 20px;
	clear: both;
}
/*Cards*/
.text .card{
	font-size: 0.9em;
	border-radius: var(--largeRadius);
	box-shadow: var(--boxShadow);
	padding: var(--cardPadding);
}
@media screen and (max-width: 64.9375em) {
	.medium-12.cardContainer{
		margin-bottom: 30px;
	}
}
@media screen and (max-width: 39.9375em) {
	.cardContainer{
		margin-bottom: 30px;
	}	
}
.card *:last-child{
	margin-bottom: 0;
}
/*AdditionalInfo*/
.modal{
	border-radius: var(--largeRadius);
	padding: 60px;
	display: none;
	max-width: 80rem
}

/*Generic Callout*/
.text .callout{
	padding: var(--cardPadding);
	border-radius: var(--largeRadius);
	margin-bottom: var(--spacing);
	font-size: 0.9em;
}
@media screen and (max-width: 39.9375em) {
	.text .callout{
		padding: 30px;
	}
}
/*Horizontal Rules*/
.text hr{
	top: -20px;
	position: relative;
	display: inline-block;
	height: 2px;
	width: 60px;
	background-color: var(--accent);
	border: 0px!important;
}
.text.light hr{
	background-color: #EEEEEE;
}
.text hr.full{
	width: 100%;
}
.accentBg hr, .gradeBg hr{
	background-color: #FFFFFF
}
.text hr.spacer{
	height: 40px;
	margin: 0;
	background-color: rgba(0,0,0,0);
	width: 100%;
}
/*Paragraphs*/
.text p{
	font-size: 0.9em;
	line-height: 190%;
	margin: 0 0 var(--spacing) 0;
}
.text p.statement{
	font-weight: bold;
	font-size: 1em;
}
.text p.smallPrint{
	font-size: 0.6em;
}
.text p a{
	color: var(--secondary);
	text-decoration: underline;
}
.text a{
	overflow: auto;
}
/*Icons*/
.text .icon + .icon{
	margin-left: 10px;
}
.text.light .icon{
	color: var(--accent);
	background-color: var(--pale);
}
.text .icon{
	display: inline-block;
	color: var(--pale);
	background-color: var(--dark);
	font-size: 1.4em;
	line-height: 60px;
	height: 60px;
	width: 60px;
	text-align: center;
	border-radius: var(--roundRadius);
	margin-bottom: var(--spacing);
}
.text p i{
	font-size: 1.3em;
	color: var(--accent);
	width: 30px;
	line-height: 30px;
	margin: 0;
}
/*Address and hours*/
.text address p, .hours p{
	margin-bottom: unset;
	font-style: initial;
}
.hours p b{
	width: 100px;
	display: inline-block;
}
.hours p.today{
	font-weight: bold;
	color: var(--accent);
}
.revs{
	columns: 2 !important;
	column-gap: var(--spacing);
}
@media screen and (max-width: 39.9375em) {
	.revs{
		columns: 1 !important;
		column-gap: var(--spacing);
	}
}
blockquote .stars i{
	color: var(--white);
	font-size: 28px;
}
blockquote .stars p{
	color: white;
	text-transform: uppercase;
	margin-bottom: 0!important
}
blockquote i{
	position: absolute;
	text-align: center;
	z-index: 1;
	color: white;
	font-size: 28px;
	right: 20px;
	bottom: -20px;
	border-radius: 6px;
	padding: 50px 20px 20px 20px;
	display: inline-block;
	background-color: var(--accent)
}
.revs.text blockquote{
	background-color: var(--pale);
	border: none;
	margin-bottom: 40px;
}
.text blockquote{
	--spacing: 14px;
	font-size: 0.9em;
	break-inside: avoid-column !important;
	border-left: 2px solid var(--accent);
	border-radius: var(--largeRadius);
	margin: 0 0 var(--spacing) 0;
	position: relative;
	padding: var(--cardPadding);
	z-index: 1;
}
.text blockquote p:last-of-type{
	color: var(--accent);
	font-weight: 600;
}
/*Buttons*/
.text * .btn{
	margin-bottom: 0!important;
}
.text a.btn i{
	margin-left: 20px;
	color: white;
}
.text a.btn:hover{
	background-color: var(--dark)!important
}
.text a.btn{
	box-shadow: var(--boxShadow);
	font-size: 0.8em;
	background: var(--accent);
	padding: 0 1.2em;
	top: 0;
	font-weight: 600;
	display: inline-block;
	line-height: 350%;
	margin: 0 0 var(--spacing) 0;
	-webkit-transition: background-color 0.5s;
	-o-transition: background-color 0.5s;
	transition: background-color 0.5s;
	cursor: pointer;
	color: var(--white);
	border-radius: var(--smallRadius);
	position: relative;
	will-change: top;
	-webkit-perspective: 1000;
	-webkit-backface-visibility: hidden;
}
.text a.btn + a.btn{
	margin-left: 10px;
	background-color: var(--secondary);
}
.text.light a.btn{
	background-color: var(--accent);
}
.text.light a.btn + a.btn{
	background-color: var(--secondary);
}
/*Tables*/
.text table{
	width: 100%;
	text-align: left;
	margin: 0 0 var(--spacing) 0;
	border-radius: var(--largeRadius);
	border-collapse: collapse;
	overflow: hidden;
	font-size: 0.8em;
}
.text table tr:first-of-type{
	font-weight: bold;
	color: #FFFFFF;
	font-size: 1.2em;
	background-color: var(--accent)!important;
}
.text table tr:nth-of-type(even){
	background-color: rgba(0,0,0,0);
}
.text table tr:nth-of-type(odd){
	background-color: rgba(0,0,0,0.05);
}
.text.light table tr:nth-of-type(odd){
	background-color: rgba(0,0,0,0.3);
}
.text table td, table th{
	padding: 10px;
}
/*Unordered Lists*/
.text ul{
	font-size: 0.9em;
	margin-bottom: var(--spacing);
	font-weight: 500;
}
.text ul.twoCols{
	-webkit-columns: 2;
	-moz-columns: 2;
	-o-columns: 2;
	columns: 2;
}
.text ul li{
	display: inline-block;
	width: 100%;
	line-height: 200%;
}
.text ul.chonky li{
	display: inline-block;
	width: 100%;
	line-height: 200%;
	margin-bottom: 16px;
	background-color: var(--pale);
	padding: 12px;
	border-radius: var(--smallRadius);
}
.text ul.chonky li:last-of-type{
	margin-bottom: 0;
}

.text.light ul.chonky li{
	background-color: rgba(0,0,0,0.5);
}
.text.mid ul.chonky li{
	background-color: #FFFFFF;
}
.text ul.noDots li:before{
	content: '';
	margin-right: 0;
}
.text ul li:before{
	color: var(--accent);
	display: inline-block;
	content: '\f00C';
	font-family: 'Font Awesome 5 Pro';
	font-weight: 500;
	margin-right: 15px;
}
/*Ordered Lists*/
.text ol{
	font-weight: 500;
	font-size: 0.9em;
	margin-bottom: var(--spacing);
}
.text ol li{
	display: inline-block;
	width: 100%;
	line-height: 210%;
	counter-increment: step-counter;
}
.text ol.chonky li{
	line-height: 200%;
	margin-bottom: 16px;
	background-color: var(--pale);
	padding: 12px;
	border-radius: var(--smallRadius);
}
.text.light ol.chonky li{
	background-color: rgba(0,0,0,0.5);
}
.text.mid ol.chonky li{
	background-color: #FFFFFF;
}
.text ol li:before{
	text-align: center;
	height: 100%;
	border-radius: var(--smallRadius);
	width: 30px;
	color: var(--accent);
	display: inline-block;
	content: counter(step-counter)".";
	margin-right: 10px;
}
.text ol.chonky li:before{
	color: #FFFFFF;
	text-align: center;
	height: 100%;
	border-radius: var(--smallRadius);
	width: 30px;
	background-color: var(--accent);
	display: inline-block;
	content: counter(step-counter)".";
	margin-right: 10px;
}
/*Social Lists*/
.text ul.socials{
	-webkit-columns: 1;
	-moz-columns: 1;
	-o-columns: 1;
	columns: 1;
	position: relative;
	margin-top: -20px;
}
.text ul.socials li:before{
	display: none!important;
}
.text ul.socials li a i{
	transition: all 0.5s;
}
.text ul.socials li a:hover{
	transform: scale(1.05);
	box-shadow: 0 1px 1px rgba(0,0,0,0.11), 0 2px 2px rgba(0,0,0,0.11), 0 4px 4px rgba(0,0,0,0.11), 0 8px 8px rgba(0,0,0,0.11), 0 16px 16px rgba(0,0,0,0.11), 0 32px 32px rgba(0,0,0,0.11);
}
.text ul.socials li{
	padding: 0;
	background-color: transparent;
}
.text ul.socials li a{
	color: var(--white);
	box-shadow: var(--boxShadow);
	overflow: hidden;
	padding: 0px;
	width: 40px;
	height: 40px;
	line-height: 40px;
	font-size: 1.1em;
	display: inline-block;
	float: left;
	border-radius: var(--roundRadius);
	will-change: transform;
	-webkit-perspective: 1000;
	-webkit-backface-visibility: hidden;
	text-align: center;
	transition: box-shadow 0.5s ease, transform 0.5s ease-out;
	margin-right: 14px;
}
.text ul.socials li{
	opacity: 1!important;
	width: auto;
	float: left!important;
	margin-bottom: 20px;
}
.text ul.socials li a[href*="facebook"]{background-color: #4B69B0;}
.text ul.socials li a[href*="twitter"]{background-color: #37B1E1;}
.text ul.socials li a[href*="instagram"]{background: #d6249f;background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%);}
.text ul.socials li a[href*="youtube"]{background-color: #E83F3A;}
.text ul.socials li a[href*="wa.me"]{background-color: #2BA63A;}
.text ul.socials li a[href*="linkedin"]{background-color: #0074B2;}
@media screen and (max-width: 39.9375em) {
	.text ul, .text ul.twoCols, .text ol{
		-webkit-columns: 1;
		-moz-columns: 1;
		-o-columns: 1;
		columns: 1;
	}
}
/*Links*/
.links .columns{
	margin-bottom: var(--spacing);
}
a.cred img{
	margin-bottom: 0;
}
a.cred p{
	color: white;
	font-size: 0.8em;
	margin: 0;
	line-height: 120%;
	font-weight: bold;
	padding: 0 10px 10px 10px;
}
a.cred{
	display: block;
	background-size: 10000px;
	height: 100%;
	text-align: center;
	border-radius: var(--largeRadius);
	box-shadow: var(--boxShadow);
}
/*Definition Lists*/
.text dl {
	font-size: 0.9em;
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	margin-bottom: var(--spacing);
}
.text dl > * {
	padding-top: 10px;
}
.text dt {
	width: 25%;
	color: var(--accent);
	font-size: 1.2em;
	padding-right: 10px;
	line-height: 125%;
	font-weight: bold;
}
.text dd {
	width:75%;
	padding-left: 20px;
	line-height: 165%;
	margin-left: 0px;
	margin-bottom: 20px;
}
.text dd + dd {
	width: 100%;
	padding-left: calc(25% + 20px);
}
.text dt + dt {
	padding-right: 75%;
}
.text dt + dt + dd {
	margin-top: 20px;
	padding-left: calc(25% + 20px;);
}
/*SMALL SCREENS AND UNDER */
@media screen and (max-width: 39.9375em) {
	.text dl > * {
		padding-top: 10px;
	}
	.text dt {
		width: 100%;
		padding-right: 0px;
		margin-bottom: 20px
	}
	.text dd {
		width: 100%;
		padding-left: 0px;
		margin-left: 0px;
		margin-bottom: 10px;
	}
	.text dd + dd {
		padding-left: 0;
	}
	.text dt + dt {
		padding-right: 75%;
	}
	.text dt + dt + dd {
		margin-top: 10px;
		padding-left: 0;
	}
}
/*Accordions*/
.text .accordion{
	margin-bottom: var(--spacing);
}
.text .accordion .toggle i{
	position: absolute;
	width: 40px;
	height: 40px;
	line-height: 40px;
	right: 0;
	top: calc(50% - 20px);
	text-align: center;
}
.text .accordion .toggle.open{
	background-color: var(--secondary);
}
.text.light .accordion .toggle.open{
	background-color: var(--secondary);

}
.text.light .accordion .toggle{
	background-color: rgba(0,0,0,0.7);
}
.text .accordion .toggle{
	position: relative;
	transition: background-color ease 0.5s;
	display: block;
	cursor: pointer;
	font-size: 0.9em;
	line-height: 180%;
	color: #FFFFFF;
	padding: 0.6em 3em 0.6em 1em;
	border-radius: var(--smallRadius);
	margin-bottom: 10px;
	background-color: var(--dark);
}
.itemContents{
	display: none;
	padding: 1em 1em 2em 1em;
}
/*Forms*/
.text form ::placeholder {color: var(--black);opacity: 1;}
.text form :-ms-input-placeholder {color: var(--black);}
.text form ::-ms-input-placeholder {color: var(--black);}
.text.light form ::placeholder {color: var(--white);opacity: 1;}
.text.light form :-ms-input-placeholder {color: var(--white);}
.text.light form ::-ms-input-placeholder {color: var(--white);}
.text form{
	margin-bottom: 30px;
}
.text form .btn{
	margin-top: 20px;
}
.text.light form label{
	color: var(--pale)
}
.text form .checker *{
	line-height: 100%;
	margin: 0;
}
.text form #sum{
	margin-top: 6px!important;
}
.text form label{
	display: block;
	font-size: 0.8em;
	line-height: 200%;
	font-weight: 500;
	margin-top: 10px;
	margin-bottom: 6px;
	color: var(--dark);
}
.paleBg .text form input, .paleBg .text form select, .paleBg .text form textarea{
	background-color: #FFFFFF;
	border: 1px solid #EEEEEE;
}
.text form input, .text form select{
	width: 100%;
	height: 44px;
	color: #333333;
	background-color: var(--pale);
	font-size: 0.8em;
	padding: 0 16px;
	box-shadow: 0px;
	outline: 0;
	border-radius: var(--smallRadius);
	border: 0px solid #BBBBBB;
	display: block;
}
.text.light form input, .text.light form select, .text.light form textarea{
	background-color: rgba(255,255,255,0.2);
	color: white;
}
.text.light form select option{
	background-color: var(--dark);
}
.text form select{
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
}
.text form select::-ms-expand {
  display: none;
}
.text form .sendForm.disabled{
	background-color: var(--accent)!important;
}
.text form textarea{
	border-radius: var(--smallRadius);
	width: 100%;
	background-color: var(--pale);
	color: #333333;
	resize: none;
	padding: 16px;
	border: 0px solid #BBBBBB;
	height: 160px;
	margin-bottom: var(--spacing);
}
.text form .sendForm{
	cursor: pointer;
	display: block;
	width: 100%;
	line-height: 44px;
	color: var(--white);
	border: none!important;
	background-color: var(--dark)!important;
	font-weight: bold;
	text-transform: uppercase;
	letter-spacing: 1px;
	transition: all 0.5s;
}
@media screen and (max-width: 64.9375em) {
	.text form .sendForm{
		margin-top: 30px;
	}
}
.text form .sendForm:hover{
	background-color: var(--dark); 
}
/*Footer*/
/*PreFooter*/
footer .background, .cta .background{
	z-index: -1;
	pointer-events: none;
	object-fit: cover;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	opacity: 0.3;
	mix-blend-mode: overlay;
}
.background{
	z-index: -1;
	pointer-events: none;
	object-fit: cover;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	opacity: 0.3;
	mix-blend-mode: overlay;
}
section.preFooter{
	padding: 20px var(--paddingX);
}
section.preFooter a img{
	margin: 0 20px 0 0;
	height: 50px;
}
@media screen and (max-width: 39.9375em) {
	.creds a:first-of-type{
		display: none;
	}	
}
.btt{
	width: 60px;
	line-height: 60px;
	color: white;
	text-align: center;
	display: inline-block;
	position: relative;
}
.btt:before{
	content: '';
	position: absolute;
	height: calc(100px + 20px);
	background-color: inherit;
	width: 1000px;
	top: -30px;
	left: -20px;
	z-index: -1;
}
/*Footer*/
footer{
	--spacing: 20px;
	position: relative;
	z-index: 1;
	font-size: 0.8em;
	background-color: var(--black);
	padding: var(--paddingY) var(--paddingX);
}
@media screen and (max-width: 39.9375em) {
	footer .columns{
		margin-bottom: 30px;
	}
}
footer ul li a:hover{
	color: var(--secondaryAccent);
}
footer .text ul li, footer .text p{
	opacity: 0.7;
	line-height: 250%;
}
p.dib{
	display: inline-block;
}
footer .text ul li i{
	width: 24px;
	text-align: center;
	color: var(--primaryAccent)!important
}
.footerMenu ~ ul li:before{
	display: none;
}
footer .socials{
	margin-top: 20px!important;
}
.text ul.socials.right li{
	float: right!important;
}
.text ul.socials.right li a{
	margin-left: 12px;
	margin-right: 0px;
}
@media screen and (max-width: 64.9375em) {
	.text ul.socials.right li{
		float: left!important;
	}
	.text ul.socials.right li a{
		margin-left: 0px;
		margin-right: 12px;
	}
}
footer .floater{
	font-size: 120px;
	opacity: 0.05;
}
@media screen and (max-width: 39.9375em) {
	footer .floater{
		font-size: 60px;
	}
.text ul.socials.right li{
	float: left!important;
}
.text ul.socials.right li a{
	margin-left: 0px;
	margin-right: 10px;
}
}
footer .text h3{
	font-weight: 500;
}
.copy{
	padding: 20px;
	position: relative;
	background-color: var(--dark);
	z-index: 2;
}
@media screen and (max-width: 39.9375em) {
	.copy{
		padding: 20px 10px;
	}
}
.copy img{
	margin-bottom: 0;
}
.copy .text p i{
	color: var(--primaryAccent);
}
.copy .text p{
	font-size: 12px;
	color: #EEEEEE;
	margin: 0;

}