/* F O N T   I N C L U D E S */
@import url('https://fonts.googleapis.com/css?family=Barlow:300,400,500,600,700');
/* G L O B A L   S T Y L E S */
body{font-family: 'Barlow', sans-serif;}
*:focus{outline: none;}
a{text-decoration: none;color: inherit;}
ul,ol{list-style: none; margin: 0; padding: 0;}
.fa-star{
	color: goldenrod
}
.splash .columns{
	height: 100vh;
}
.finance img{
	max-height: 160px;
	margin-top: 1rem;
	margin-bottom: 1rem;
}
.splash .columns .innerText a.btn{
	margin-top: 30px;
}
.splash .columns .innerText h2{
	margin: 0;
	color: white;
	line-height: 100%;
	font-size: 32px;
	letter-spacing: -1px;
}
.splash .leftBox h2,.splash .leftBox p{
	color: #333333!important;
}
.splash .columns .innerText p{
	margin: 0 0 12px 0;
	font-size: 18px;
	color: rgba(255,255,255,0.7);
}
.splash .columns .innerText{
	position: relative;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	top: 50%;
}
.splash .leftBox:hover{
	background-position: bottom center;
}
.splash .leftBox{
	background-image: url('../images/rightsplash.jpg');
	-webkit-transition: background 0.5s;
	-o-transition: background 0.5s;
	transition: background 0.5s;
	text-align: left;
	padding: 0 150px 0 50px!important;
	background-size: cover;
	background-position: top center;
}
.splash .rightBox:hover{
	background-position: bottom center;
}
.splash .rightBox{
	background-image: url('../images/leftsplash.jpg');
	-webkit-transition: background 0.5s;
	-o-transition: background 0.5s;
	transition: background 0.5s;
	text-align: right;
	padding: 0 50px 0 150px!important;
	background-size: cover;
	background-position: center;
}
.splash .logoBox{
	position: absolute;
	width: 200px;
	height: 200px;
	background-color: white;
	left: calc(50% - 100px);
	top: calc(50% - 100px);
}
@media screen and (max-width: 767px) {
	.splash .columns{
		height: 50vh;
	}
	.splash .columns .innerText a.btn{
		margin-top: 10px;
	}
	.splash .columns .innerText h2{
		font-size: 26px;
	}
	.splash .columns .innerText p{
		font-size: 14px;
	}
	.splash .leftBox:hover{
		background-size: 110% ;
	}
	.splash .leftBox{
		padding: 0 50px!important;
		background-size: cover;
	}
	.splash .rightBox:hover{
		background-size: 110%;
	}
	.splash .rightBox{
		padding: 0 50px!important;
		background-size: cover;
	}
	.splash .logoBox{
		display: none;
	}
}
/*Gallery*/
.gallery{
	overflow: auto;
	margin-top: 30px;
}
.gallery a{
	display: block;
	position: relative;
	/*margin-bottom: 30px;*/
	border-bottom: 20px solid white;
	border-right: 20px solid white;
	overflow: hidden;
}
.gallery a:before{
	content: '';
	position: absolute;
	width: 2px;
	height: 2px;
	border-radius: 300px;
	background-color: #F4821F;
	top: calc(50% - 1px);
	right: calc(50% - 1px);
	opacity: 0.01;
	z-index: 1;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
}
.gallery a:hover::before{
	content: '';
	position: absolute;
	width: 600px;
	height: 600px;
	border-radius: 300px;
	background-color: #F4821F;
	top: calc(50% - 300px);
	right: calc(50% - 300px);
	opacity: 0.5;
}
.gallery a img{
	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
}
.gallery a:hover img{
	-webkit-transform: scale(1.2);
	-ms-transform: scale(1.2);
	-o-transform: scale(1.2);
	transform: scale(1.2);
}
/* F O R M */
.websiteForm{
	color: #606060;
}
.websiteForm label{
	display: block;
	font-size: 14px;
	line-height: 2.6em;
}
.websiteForm input[type='text'], .websiteForm select{
	width: 100%;
	border-radius: 2px;
	height: 40px;
	font-size: 14px;
	padding-left: 10px;
	box-shadow: 0px;
	outline: 0;
	border: 1px solid #CCC;
}
.websiteForm input[type='radio']{
	margin-right: 6px;
}
.websiteForm textarea{
	width: 100%;
	border-radius: 2px;
	resize: none;
	padding: 1em;
	border: 1px solid #CCC;
	height: 140px;
}
.websiteForm ul{
	border: 1px solid #CCC;
	height: 40px;
	border-radius: 2px;
}
.websiteForm ul li{
	float: left;
	padding: 0 10px;
	line-height: 40px;
}
.websiteForm button{
	float: right;
	margin-top: 10px;
	background-color: #333;
	padding: 16px;
	font-size: 14px;
	font-weight: bold;
	color: white;
	text-transform: uppercase;
	cursor: pointer;
	-webkit-transition: background-color 0.4s;
	-o-transition: background-color 0.4s;
	transition: background-color 0.4s;
}
.websiteForm button:hover{
	background-color: #111;
}
#map{
	width: 100%;
	height: 220px;
	margin-bottom: 20px;
	position: relative;
	z-index: 1;
	border-bottom: 3px solid #F4821F;
}
.btn{
	color: #F4821F;
	padding: 0 20px;
	line-height: 36px;
	text-transform: uppercase;
	margin-top: 10px;
	display: inline-block;
	position: relative;
	letter-spacing: 3px;
	font-weight: bold;
}
.btn:before, .btn:after{
	content: '';
	position: absolute;
	top: 0;
	width: 10px;
	height: 100%;
	border-top: 3px solid #F4821F;
	border-bottom: 3px solid #F4821F;
}
.btn:before{
	left: 0;
	border-left: 3px solid #F4821F;
}
.btn:after{
	right: 0;
	border-right: 3px solid #F4821F;
}
.btn i{
	margin-right: 10px;
}
aside .btn{
	color: #FFF;
}
aside .btn:before, aside .btn:after{
	border-top: 3px solid #FFF;
	border-bottom: 3px solid #FFF;
}
aside .btn:before{
	border-left: 3px solid #FFF;
}
aside .btn:after{
	border-right: 3px solid #FFF;
}
header.smaller{
	height: 50vh!important;
}
header.smaller .headerText{
	display: none;
}
header{
	width: 100%;
	position: relative;
	overflow: auto;
	height: 100vh;
}
header:before{
	width: 100%;
	height: 100%;
	content: '';
	position: absolute;
	z-index: 1;
	background: -moz-linear-gradient(left, rgba(0,0,0,0) 0%, rgba(0,0,0,0.76) 100%);
	background: -webkit-linear-gradient(left, rgba(0,0,0,0) 0%,rgba(0,0,0,0.76) 100%);
	background: linear-gradient(to right, rgba(0,0,0,0) 0%,rgba(0,0,0,0.76) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#a6000000',GradientType=1 );
}
.logo{
	max-height: 140px;
	float: right;
	clear: both;
	position: relative;
	z-index: 20;
	margin: 60px 60px 0 0;
}
.headerText{
	position: absolute;
	z-index: 20;
	bottom: 0;
	right: 0;
	max-width: 60%;
	text-align: right;
	padding: 60px;
}
.headerText .heading{
	color: #F4821F;
	margin-bottom: 18px;
	display: inline-block;
	font-size: 42px;
	line-height: 100%;
	font-weight: 700;
	letter-spacing: -1px;
}
.headerText p{
	color: white;
	margin: 0;
	font-size: 22px;
}
.headerText a{
	color: white;
	padding: 0 20px;
	line-height: 40px;
	text-transform: uppercase;
	margin-top: 30px;
	display: inline-block;
	position: relative;
	letter-spacing: 3px;
	font-weight: bold;
}
.headerText a:before, .headerText a:after{
	content: '';
	position: absolute;
	top: 0;
	width: 10px;
	height: 100%;
	border-top: 3px solid white;
	border-bottom: 3px solid white;
}
.headerText a:before{
	left: 0;
	border-left: 3px solid white;
}
.headerText a:after{
	right: 0;
	border-right: 3px solid white;
}
.headerText a i{
	margin-right: 10px;
}
.contactBanner{
	display: inline-block;
	position: relative;
	float: right;
	z-index: 2;
	padding: 6px 16px;
	margin-left: 10px;
	margin-right: 10px;
}
ul.contactBanner{
	color: #F4821F;
	font-weight: bold;
	padding: 20px 0;
}
ul.contactBanner li{
	float: left;
	margin-right: 10px;
	line-height: 40px;
}
ul.contactBanner li.socialLink{
	color: white;
}
.contactBanner span{
	margin-right: 10px;
	color: white;
	font-weight: 400;
}
nav{
	float: right;
	clear: both;
	position: relative;
	z-index: 200;
	background-color: rgba(0,0,0,0.6);
}
nav ul li:hover .sub{
	display: block;
}
nav ul li{
	float: left;
	position: relative;
}
nav ul li a{
	display: block;
	text-transform: uppercase;
	color: white;
	font-weight: bold;
	padding: 0 16px;
	line-height: 56px;
	-webkit-transition: box-shadow 0.5s;
	-o-transition: box-shadow 0.5s;
	transition: box-shadow 0.5s;
}
nav ul li a:hover{
	box-shadow: inset 0px -3px 0px #F4821F;
}
nav ul li .sub{
	position: absolute;
	background-color: #232323;
	z-index: 10000;
	display: none;
	left: 0;
	top: 100%;
}
nav ul li .sub li{
	width: 100%;
	white-space: nowrap;
}
nav ul li .sub li a{
	line-height: 40px;
}
nav ul li > a:after { 
	content: '\f078';
	margin-left: 6px;
	text-align: center;
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	font-size: 12px;
}
nav ul li > a:only-child:after { content: ''; } 
/*Quad Boxes*/
.quadBox{
	overflow: auto;
}

.quadBox a.boxed{
	display: block;
	background-color: #F4821F;
	width: 20%;
	float: left;
	height: 260px;
	overflow: hidden;
	position: relative;
	background-size: cover;
	background-position: center center;
}
/*.quadBox .boxed.one:before{opacity: 0.3;}
.quadBox .boxed.two:before{opacity: 0.8;}
.quadBox .boxed.three:before{opacity: 0.4;}
.quadBox .boxed.four:before{opacity: 0.6;}
.quadBox .boxed:before{
	width: 100%;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
	height: 100%;
	position: absolute;
	content: '';
	z-index: 1;
	background-color: #F4821F;
	top: 0;
	left: 0;
}*/
.quadBox .boxed.one:after, .quadBox .boxed.three:after{
	width: 100%;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
	height: 100%;
	position: absolute;
	content: '';
	z-index: 1;
	background-color: black;
	opacity: 0.3;
	top: 0;
	left: 0;
}
.bgBuilding{background-image: url('../images/building.jpg');}					
.bgExtensions{background-image: url('../images/extensions.jpg');}				
.bgRoofing{background-image: url('../images/roofing.jpg');}		
.bgRestoration{background-image: url('../images/restorations.jpg');}
.bgDecorating{background-image: url('../images/decorating.jpg');}
.bgBuilds{background-image: url('../images/newbuilds.jpg');}				
.bgLandscaping{background-image: url('../images/landscaping.jpg');}	
.bgVentilation{background-image: url('../images/maintenance.jpg');}			
.bgPlumbing{background-image: url('../images/decorating.jpg');}				
.bgKitchens{background-image: url('../images/kitchens.jpg');}
.quadBox .boxed .boxTitle{
	position: absolute;
	-webkit-transition: color 0.5s;
	-o-transition: color 0.5s;
	transition: color 0.5s;
	z-index: 10;
	bottom: 0;
	padding: 6px 12px;
	right: 0;
	color: white;
	font-weight: bold;
	background-color: rgba(0,0,0,0.5);
	text-transform: uppercase;
	letter-spacing: 2px;
	font-size: 18px;
}
/*Contents Area*/
.contents{
	width: 100%;
	background-color: white;
	padding: 90px 0 120px 0;
}
.contents h1{
	color: #F4821F;
	font-weight: 700;
	line-height: 100%;
	font-size: 40px;
	margin: 0 0 30px 0;
	letter-spacing: -1px;
}
.contents h2{
	margin: 0;
	color: #232323;
	opacity: 0.7;
	line-height: 100%;
}
.contents h3{
	line-height: 100%;
	color: #232323;
	opacity: 0.8;
}
.contents blockquote{
	margin: 0 0 20px 0;
	padding: 20px;
	background-color: rgba(0,0,0,0.05);
	border-left: 4px solid #555;
}
.contents blockquote p{
	background-color: transparent!important;
	border: none!important;
	padding: 0!important;
	opacity: 0.7;
	font-style: italic!important;
}
.contents ul{
	font-size: 16px;
	line-height: 22px;
	color: #444;
}
.contents ul li:before{
	content: '-';
	color: #F4821F;
	margin-right: 10px;
	font-size: 20px;
	line-height: 22px;
}
.contents main{
	padding-right: 30px!important;
}
.contents p{
	font-size: 16px;
	color: #444;
}
.contents main p:first-of-type{
	background-color: rgba(0,0,0,0.08);
	font-style: italic;
	padding: 20px 26px;
	border-bottom: 4px solid #F4821F
}
.contents .sideInner{
	background-color: #F4821F;
	padding: 30px;
	color: white!important;
	margin-bottom: 30px;
}
.contents .sideInner i{
	display: inline-block;
	width: 26px;
	height: 26px;
	border-radius: 2px;
	text-align: center;
	color: #F4821F;
	line-height: 26px;
	margin-right: 6px;
	background-color: white;
}
.contents .sideInner ul, .contents .sideInner p{
	color: white!important;
}
.contents .sideInner address{
	margin-bottom: 20px;
	display: block;
}
.contents .sideInner address p:first-of-type{
	font-size: 18px;
}
.contents .sideInner address p{
	font-style: initial;
	margin: 0;
}
.contents aside img{
	margin-bottom: 30px;
}
.contents .sideInner p{
	opacity: 0.7;
	line-height: 26px;
}
.contents .sideInner ul li:before{
	color: #FFF;
}
.contents .sideInner hr{
	opacity: 0.4;
	border: 0;
	height: 1px;
	background-color: white;
}
.contents .sideInner h3{
	color: white;
	opacity: 1;
	margin: 0 0 20px 0;
}
/*Feedback Section*/
.sideHolder{
	position: relative;
}
.feedBack .featuredImage{
	position: absolute;
	-webkit-transform: rotate(-10deg);
	-ms-transform: rotate(-10deg);
	-o-transform: rotate(-10deg);
	transform: rotate(-10deg);
	top: -80px;
	box-shadow: 10px 10px 30px rgba(0,0,0,0.1);
	width: 65%;
	margin-left: 40px;
	background-size: cover;
	border-top: 10px solid #EEE;
	border-left: 10px solid #EEE;
	border-right: 10px solid #EEE;
	border-bottom: 50px solid #EEE;
}
.feedBack h2{
	color: white;
	margin: 0;
	letter-spacing: -1px;
	font-size: 30px;
	line-height: 100%;
}
.feedBack h3{
	color: #F4821F;
	margin: 0;
}
.feedBack p{
	color: white;
	font-style: italic;
}
.feedBack{
	padding: 60px 0;
	background-image: url('../images/feedback.jpg');
	-webkit-background-size: cover;
	background-size: cover;
	background-position: center center;
	position: relative;
	z-index: 1;
}
.feedBack:before{
	content: '';
	height: 100%;
	width: 100%;
	background: #F4821F;
	background: -moz-linear-gradient(left, #F4821F 1%, #232323 100%);
	background: -webkit-linear-gradient(left, #F4821F 1%,#232323 100%);
	background: linear-gradient(to right, #F4821F 1%,#232323 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#F4821F', endColorstr='#232323',GradientType=1 );
	opacity: 0.9;
	top: 0;
	z-index: -1;
	left: 0;
	position: absolute;
}
.feedBack a{
	color: white;
	padding: 0 20px;
	line-height: 40px;
	text-transform: uppercase;
	margin-top: 30px;
	display: inline-block;
	position: relative;
	letter-spacing: 3px;
	font-weight: bold;
}
.feedBack a:before, .feedBack a:after{
	content: '';
	position: absolute;
	top: 0;
	width: 10px;
	height: 100%;
	border-top: 3px solid white;
	border-bottom: 3px solid white;
}
.feedBack a:before{
	left: 0;
	border-left: 3px solid white;
}
.feedBack a:after{
	right: 0;
	border-right: 3px solid white;
}
.feedBack a i{
	margin-right: 10px;
}
.footBrand{
	position: absolute;
	opacity: 0.03;
	pointer-events: none;
	top: 50%;
	-webkit-transform: rotate(25deg) translateY(-50%);
	-o-transform: rotate(25deg) translateY(-50%);
	transform: rotate(25deg) translateY(-50%);
}
footer:before{
	content: '';
	height: 10px;
	width: 100%;
	background: #F4821F;
	background: -moz-linear-gradient(left, #F4821F 1%, #232323 100%);
	background: -webkit-linear-gradient(left, #F4821F 1%,#232323 100%);
	background: linear-gradient(to right, #F4821F 1%,#232323 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#F4821F', endColorstr='#232323',GradientType=1 );
	opacity: 0.9;
	top: 0px;
	left: 0;
	position: absolute;
}
footer{
	background-color: #232323;
	padding: 90px 0 40px 0;
	position: relative;
	overflow: hidden;
	margin: 0;
	line-height: 100%;
}
footer address p:first-of-type{
	display: block;
	margin: 20px 0 0 0;
	padding: 0;
}
footer address p{
	font-style: initial;
	display: inline-block;
}
footer hr{
	width: 50px;
	background-color: #F4821F;
	border: 0px;
	height: 2px;
	margin: 0;
	display: inline-block;
}
footer h4{
	color: white;
	font-weight: 400;
	margin: 0;
	font-size: 24px;
	letter-spacing: -1px;
}
footer p{
	margin: 20px 0;
	opacity: 0.6;
	color: white;
	line-height: 22px;
}
footer p.nopad{
	padding: 0!important;
	margin: 0!important;
}
footer ul{
	margin: 20px 0;
	opacity: 0.6;
	line-height: 26px;
	color: white;
}
footer ul li:before{
	content: '-';
	margin-right: 10px;
	color: #F4821F
}
footer .divider{
	background: rgb(119,184,0);
	background: #F4821F;
	background: -moz-linear-gradient(left, #F4821F 1%, #232323 100%);
	background: -webkit-linear-gradient(left, #F4821F 1%,#232323 100%);
	background: linear-gradient(to right, #F4821F 1%,#232323 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#F4821F', endColorstr='#232323',GradientType=1 );
	width: 100%;
	float: left;
	margin-bottom: 20px;
	margin-top: 20px;
	height: 2px;
}
.credits{
	padding-top: 20px;
}
.credits p span{
	color: #F4821F
}
.credits p{
	font-size: 14px;
	margin: 0;
}
.menuLogo, .mobiBar{
	display: none;
}
/* M E D I U M   S C R E E N S   A N D   U N D E R */
@media screen and (max-width: 64em) {
	ul.contactBanner{
		padding: 10px 0;
	}
	ul.contactBanner li{
		line-height: 30px;
	}
	.headerText{
		max-width: 100%;
	}
	.logo{
		max-height: 100px
	}
	nav{
		width: 100%;
	}
	nav ul{
		float: right;
	}
	header{
		height: 80vh
	}
	header.smaller{
		height: 60vh!important;
	}
	header:before{
		width: 200%;
		right: 0;
	}
	.headerText .heading{
		font-size: 32px;
	}
	.headerText p{
		font-size: 18px;
	}
	.headerText a{
		line-height: 34px;
		margin-top: 20px;
		letter-spacing: 2px;
	}
	.quadBox a.boxed{
		width: 25%;
		height: 20vh;
	}
	.quadBox .boxed .boxTitle{
		padding: 10px;
		font-size: 15px;
	}
	.contents{
		padding: 50px 30px 60px 30px!important;
	}
	.contents h1{
		font-size: 34px;
	}
	.contents h2{
		font-size: 20px
	}
	.feedBack{
		padding: 40px!important;
	}
	footer{
		padding: 60px 40px 40px 40px!important;
	}
}
/* S M A L L   S C R E E N S   A N D   U N D E R */
@media screen and (max-width: 769px) {
	.quadBox a.boxed{
		width: 50%;
	}
	.quadBox .boxed .boxTitle{
		font-size: 20px;
	}
}
@media screen and (max-width: 39.9375em) {
	.headerText .heading{
		font-size: 26px;
	}
	.headerText p{
		font-size: 16px;
	}
	.headerText a{
		display: none;
	}
	.contents h1{
		font-size: 28px;
		margin: 0;
	}
	.sideHolder{
		display: none;
	}
	.contents h2{
		font-size: 18px;
	}
	.contents{
		width: 100%;
		background-color: white;
		padding: 30px 20px!important;
	}
	.contents main{
		padding: 0!important;
	}
	.headingHolder{
		padding: 20px!important;
	}
	.quadBox a.boxed{
		width: 100%;
		height: 30vh;
	}
	.boxTitle{
		left: 10px
	}
	header{
		height: 50vh;
	}
	header.smaller{
		height: 200px!important;
	}
	.headerText{
		padding: 0 20px 20px 20px
	}
	nav{
		width: 300px;
		height: 110vh;
		overflow: scroll;
		left: -100%;
		padding-bottom: 10vh;
		z-index: 100;
		background-color: #F4821F;
		position: fixed;
		-webkit-transition: left 0.5s;
		-o-transition: left 0.5s;
		transition: left 0.5s;
	}
	nav:before{
		content: '';
		height: 100%;
		z-index: -1;
		width: 100%;
		background: rgba(0,0,0,0.2);
		opacity: 0.9;
		top: 0px;
		left: 0;
		position: absolute;
		box-shadow: 10px 10px 10px rgba(0,0,0,0.2);
	}
	nav.menuVis{
		left: 0;
	}
	nav ul li .sub{
		/*background-color: rgba(0,0,0,0.1);*/
		padding: 0;
		display: block;
		position: relative;
	}
	.logo{
		height: 40px;
		right: 20px;
		position: fixed;
		top: 10px;
		z-index: 1092;
		margin: 0;
	}
	ul.contactBanner{
		position: absolute;
		display: none;
	}
	.menuLogo{
		margin-top: 60px;
		padding: 20px;
		display: block;
		background-color: #232323
	}
	.mobiBar{
		display: block;
		width: 100%;
		height: 60px;
		z-index: 1029;
		padding: 10px;
		background-color: #232323;
		position: fixed;
	}
	.mobiBar:before{
		content: '';
		height: 100%;
		z-index: -1;
		width: 100%;
		background: #F4821F;
		background: -moz-linear-gradient(left, #F4821F 1%, #232323 100%);
		background: -webkit-linear-gradient(left, #F4821F 1%,#232323 100%);
		background: linear-gradient(to right, #F4821F 1%,#232323 100%);
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#F4821F', endColorstr='#232323',GradientType=1 );
		opacity: 0.9;
		top: 0px;
		left: 0;
		position: absolute;
	}
	.mobiBar button{
		width: 40px;
		display: inline-block;
		text-align: center;
		height: 40px;
		background-color: rgba(0,0,0,0.78);
		line-height: 40px;
		color: white;
		font-size: 18px;
		color: #F4821F;
	}
	.mobiBar a{
		width: 40px;
		display: inline-block;
		text-align: center;
		height: 40px;
		line-height: 40px;
		color: white;
		font-size: 14px;
	}
	nav ul{
		padding: 20px 0;
	}
	nav ul li{
		width: 100%;
		border-bottom: 1px solid rgba(255,255,255,0.1);
	}
	nav ul li a{
		line-height: 40px;
	}
	.feedBack{
		padding: 40px 20px!important;
	}
	footer{
		padding: 40px 20px!important;
	}
	.contents main{
		padding: 0 20px 20px 20px!important;
	}
	footer .columns{
		padding-top: 20px;
	}
}