@charset "utf-8";

body {
    font-family: 'Inter', sans-serif;
    color: #002856;
    background-color: #002856;
    line-height: 28px;
    font-weight: 300;
    font-size: 18px;
}

/* Simple fluid media
   Note: Fluid media requires that you remove the media's height and width attsributes from the HTML
   http://www.alistapart.com/articles/fluid-images/ 
*/

img, object, embed {
	max-width: 100%;
}




/* IE 6 does not support max-width so default to width 100% */


/*
	Dreamweaver Fluid Grid Properties
	----------------------------------
	dw-num-cols-mobile:		5;
	dw-num-cols-tablet:		8;
	dw-num-cols-desktop:	12;
	dw-gutter-percentage:	15;
	
	Inspiration from "Responsive Web Design" by Ethan Marcotte 
	http://www.alistapart.com/articles/responsive-web-design
	
	and Golden Grid System by Joni Korpi
	http://goldengridsystem.com/
*/

.fluid {
	clear: both;
	margin-left: 0;
	width: 100%;
	float: left;
	display: block;
}



.imgfade {
	opacity: 1.0;
	transition: opacity .2s ease-in-out;
	-moz-transition: opacity .2s ease-in-out;
	-webkit-transition: opacity .2s ease-in-out;
	-o-transition: opacity .2s ease-in-out;
}
.imgfade:hover {
	opacity: 0.6;
	transition: opacity .2s ease-in-out;
	-moz-transition: opacity .2s ease-in-out;
	-webkit-transition: opacity .2s ease-in-out;
	-o-transition: opacity .2s ease-in-out;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-color: #000000;
    border-style: none;
}
 
.video-container iframe,
.video-container object,
.video-container embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}


.white {
    background-color: #FBFCFC;
}


.black {
	background-color: #3d3d3d;
}
.blackmid {
    background-color: #404048;
}
.border-grey {
    border: 1px solid #8B9DAB;
}


.blue {
    background-color: #48a4e2;
}


.grey {
    background-color: #48a4e2;
}

.greylt {
    background-color: #f2f2f2;
}
.greylt2 {
	background-color: #ebebeb;
}





.text-white {
	color: #FFF;
}
.text-black {
    color: #002856;
}

.text-center {
	text-align: center;
}
.text-right {
	text-align: right;
}

.link-white {
	color: #FFF;
	text-decoration: none;
}



.link-white:hover {
	color: #002856;
	text-decoration: none;
}
.link-grey {
	color: #5AA68E;
	text-decoration: none;
}
.link-grey:hover {
	color: #002856;
	text-decoration: none;
}



.link-button-outline {
	color: #FFF;
	text-decoration: none;
	display: inline-block;
	-moz-border-radius: 6px;
	-webkit-border-radius: 6px;
	border-radius: 6px;
	font-size: 18px;
	line-height: 21px;
	font-weight: 600;
	padding-top: 15px;
	padding-right: 20px;
	padding-bottom: 15px;
	padding-left: 20px;
	border: 2px solid #FFF;
}
.link-button-outline:hover {
	text-decoration: none;
	display: inline-block;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius: 10px;
	border: 2px solid #686e60;
	color: #3d3d3d;
	background-color: #FFF;
}
.link-button-grey {
    color: #FFFFFF;
    text-decoration: none;
    display: inline-block;
    font-size: 18px;
    line-height: 22px;
    font-weight: 600;
    padding-top: 15px;
    padding-right: 20px;
    padding-bottom: 15px;
    padding-left: 20px;
    background-color: #48a4e2;
    margin-top: 15px;
}
.link-button-grey:hover {
    background-color: #002856;
    color: #FFF;
}


.link-button-white {
    color: #48a4e2;
    text-decoration: none;
    display: inline-block;
    font-size: 18px;
    line-height: 22px;
    font-weight: 600;
    padding-top: 15px;
    padding-right: 20px;
    padding-bottom: 15px;
    padding-left: 20px;
    background-color: #FFF;
}
.link-button-white:hover {
	color: #FFFFFF;
	background-color: #002856;
}

*::-webkit-input-placeholder {
    color: #333;
}
*:-moz-placeholder {
    /* FF 4-18 */
    color: #333;
}
*::-moz-placeholder {
    /* FF 19+ */
    color: #333;
}
*:-ms-input-placeholder {
    /* IE 10+ */
    color: #333;
}



.link-rotate {
	-webkit-transition: -webkit-transform .8s ease-out;
    -ms-transition: -ms-transform .8s ease-out;
    transition: transform .8s ease-out;
}


.link-rotate:hover {
	 transform:rotate(360deg);
    -ms-transform:rotate(360deg);
    -webkit-transform:rotate(360deg);
}

.link-translate {
	-webkit-transition: -webkit-transform .8s ease-out;
    -ms-transition: -ms-transform .8s ease-out;
    transition: transform .8s ease-out;
}

.link-translate:hover {
	-ms-transform: translate(20px,0px); /* IE 9 */
   	-webkit-transform: translate(20px,0px); /* Chrome, Safari, Opera */
    transform: translate(20px,0px);
}

.link-scale {
	-webkit-transition: -webkit-transform .8s ease-out;
    -ms-transition: -ms-transform .8s ease-out;
    transition: transform .8s ease-out;
}

.link-scale:hover {
	-ms-transform: scale(1.1,1.1); /* IE 9 */
    -webkit-transform: scale(1.1,1.1); /* Chrome, Safari, Opera */
    transform: scale(1.1,1.1);
}

.link-opacity {
	opacity: 1;
   transition: opacity .25s ease-in-out;
   -moz-transition: opacity .25s ease-in-out;
   -webkit-transition: opacity .25s ease-in-out;
}

.link-opacity:hover {
	opacity: 0.5;

}


#enquiryform td {
	padding-bottom: 20px;
	padding-top: 0px;
	font-family: "Source Sans Pro", Arial, sans-serif;
}

.form_text {
    width: 95%;
    background-color: rgba(255, 255, 255, .0);
    border-top-style: none;
    border-bottom-width: 1px;
    border-right-style: none;
    border-bottom-style: solid;
    border-left-style: none;
    border-bottom-color: #666;
    padding-top: 4%;
    padding-right: 4%;
    padding-bottom: 4%;
    padding-left: 1%;
    color: #333;
    font-family: "Source Sans Pro", Arial, sans-serif;
    font-size: 18px;
    line-height: 22px;
    font-weight: 300;
}
.form_textarea {
    width: 95%;
    background-color: rgba(255, 255, 255, .0);
    border-top-style: none;
    border-bottom-width: 1px;
    border-right-style: none;
    border-bottom-style: solid;
    border-left-style: none;
    border-bottom-color: #666;
    padding-top: 4%;
    padding-right: 4%;
    padding-bottom: 4%;
    padding-left: 1%;
    color: #333;
    font-family: "Source Sans Pro", Arial, sans-serif;
    font-size: 18px;
    line-height: 22px;
    font-weight: 300;
}

.form_select {
    width: 100%;
    background-color: rgba(255, 255, 255, .0);
    border-top-style: none;
    border-bottom-width: 1px;
    border-right-style: none;
    border-bottom-style: solid;
    border-left-style: none;
    border-bottom-color: #666;
    padding-top: 4%;
    padding-right: 4%;
    padding-bottom: 4%;
    padding-left: 0%;
    color: #333;
    font-family: "Source Sans Pro", Arial, sans-serif;
    font-size: 18px;
    line-height: 22px;
    font-weight: 300;
}





.enquiryform-checkbox {
	width: 10%;
}





.img-left {
	float: left;
	margin-right: 15px;
	margin-bottom: 15px;
}



.img-right {
	float: right;
	margin-bottom: 15px;
	margin-left: 15px;
}

.img-center {
	margin-left: auto;
	margin-right: auto;
	display: block;
}





.fade {
	-webkit-filter: opacity(.4);
	-moz-filter: opacity(.4);
	filter: opacity(.4);
}

.fade:hover {
	-webkit-filter: opacity(.9);
	-moz-filter: opacity(.9);
	filter: opacity(.9);
}
.quote-box {
    padding-top: 3%;
    padding-right: 3%;
    padding-left: 3%;
    padding-bottom: 3%;
    float: left;
    width: 93%;
    color: #002856;
    font-size: 24px;
    line-height: 28px;
    font-weight: 400;
    text-align: center;
    border: 1px solid #002856;
}


.cta-icon {
	text-decoration: none;
	position: absolute;
	left: 47%;
	top: -40px;
	height: 82px;
	width: 83px;
}

.test {
	background-image: url(/images/teasers/contractors.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	margin-right: auto;
	margin-left: auto;
	background-color: #666;
	border-top-style: none;
	border-bottom-width: 1px;
	border-right-style: none;
	border-bottom-style: solid;
	border-left-style: none;
	border-bottom-color: #666;
}

.overlay {
   background:transparent; 
   position:relative; 
   width:100%;
   height:460px; /* your iframe height */
   top:460px;  /* your iframe height */
   margin-top:-460px;  /* your iframe height */
}


.back-to-top {
    background: none;
    margin-bottom: 20px;
    margin-right: 20px;
    position: fixed;
    bottom: 0;
    right: 0;
    width: 70px;
    padding-top: 15px;
    padding-bottom: 15px;
    z-index: 100;
    display: none;
    text-decoration: none;
    text-align: center;
    color: #FFF;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    background-color: rgba(72,164,226,0.5);
}
.back-to-top:hover {
	background-color: rgba(103,117,126,1);
	-webkit-transition: background 0.2s linear;
	-moz-transition: background 0.2s linear;
	-ms-transition: background 0.2s linear;
	-o-transition: background 0.2s linear;
	transition: background 0.2s linear;
}









DESKTOP {
}
h1 {
    font-size: 34px;
    color: #002856;
    font-weight: 600;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 30px;
    margin-left: 0px;
    padding: 0px;
    line-height: 37px;
    letter-spacing: 0px;
    text-transform: none;
}
h2, h3 {
    font-size: 24px;
    color: #002856;
    font-weight: 600;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 20px;
    margin-left: 0px;
    padding: 0px;
    line-height: 27px;
    text-transform: none;
}

h4 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
    padding: 0px;
    margin-top: 0px;
    margin-right: 0px;
    margin-left: 0px;
    line-height: 26px;
    color: #002856;
}
h5 {
    font-size: 20px;
    margin: 0px;
    padding: 0px;
    color: #002856;
    line-height: 24px;
    font-weight: 600;
}
h6 {
    font-size: 18px;
    font-weight: 600;
    padding: 0px;
    line-height: 22px;
    color: #002856;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 5px;
    margin-left: 0px;
}


.gridContainer {
	width: 96%;
	max-width: 1200px;
	margin: auto;
	clear: none;
	float: none;
	padding-right: 2%;
	padding-left: 2%;
	padding-top: 0%;
	padding-bottom: 0%;
}



	



.gridContainerMobile {
	width: 96%;
	max-width: 1200px;
	margin: auto;
	clear: none;
	float: none;
	padding-right: 2%;
	padding-left: 2%;
	padding-top: 0%;
	padding-bottom: 0%;
}

.container_header {
	width: 100%;
	margin: 0px;
	z-index: 100;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	position: absolute;
	left: 0px;
	top: 0px;
}
.header {
    width: 100%;
    margin: 0px;
    z-index: 100;
    padding-top: 20px;
    padding-right: 0px;
    padding-bottom: 20px;
    padding-left: 0px;
    float: left;
}







.container_banner {
    position: relative;
    overflow: hidden;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 600px;
}


.banner-content {
    width: 95%;
    margin-right: 0%;
    margin-bottom: 0%;
    margin-top: 220px;
    margin-left: 2%;
    padding-left: 3%;
    text-align: center;
}


.banner-content h5 {
    font-size: 20px;
    color: #FFF;
    font-weight: 400;
    line-height: 22px;
    text-shadow: 0 0 10px #666666;
    margin-bottom: 20px;
}

.banner-content h6 {
    font-size: 48px;
    color: #FFFFFF;
    font-weight: 700;
    line-height: 52px;
    margin-right: 0;
    margin-left: 0;
    display: block;
    text-shadow: 0 0 10px #666666;
}




.container_banner_sub {
	width: 100%;
	z-index: 0;
	height: 250px;
	margin: 0px;
	padding: 0px;
	background-color: #FFF;
}
.container_tab {
	width: 100%;
	float: left;
	font-size: 16px;
	line-height: 22px;
}


.container {
    width: 100%;
    padding-top: 80px;
    padding-bottom: 80px;
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
}

.container_team {
	width: 100%;
	background-image: url(/images/skyline.jpg);
	background-repeat: no-repeat;
	background-position: center top;
	height: 500px;
	margin-top: -100px;
}

.container_message {
	width: 100%;
	font-size: 36px;
	line-height: 40px;
	font-weight: 600;
	color: #FFF;
	background-image: url(/images/bgd_fade.png);
	background-repeat: repeat-y;
	background-size: cover;
}



.container_teasers {
	width: 98%;
	padding-right: 1%;
	padding-left: 1%;
	text-align: center;
}
.container_water {
    width: 98%;
    padding-right: 1%;
    padding-left: 1%;
    background-image: url(/images/bgd_waterdk.png);
    background-size: cover;
    background-repeat: no-repeat;
    padding-top: 80px;
    padding-bottom: 80px;
    background-attachment: fixed;
    position: relative;
}



.container_bar {
	width: 100%;
	background-size: cover;
	z-index: 800;
	margin: 0px;
	padding: 0px;
}
.container_bar img {
	background-size: cover;
	z-index: 800;
	display: block;
	margin: 0px;
	padding: 0px;
	width: 100%;
	height: 10px;
}


.container_pagebanner {
	width: 100%;
	height: 300px;
	background-attachment: fixed;
	background-position: center center;
	background-color: #FFF;
	background-repeat: no-repeat;
	background-size: cover;
}



.content {
    width: 100%;
    float: left;
    margin: 0px;
}

.content li {
    clear: none;
    margin-left: -10px;
    list-style-image: url(/images/bullet.png);
    margin-bottom: 8px;
}

.intro {
    font-size: 22px;
    line-height: 30px;
    font-weight: 300;
    color: #666;
    width: 70%;
    margin-left: 15%;
    margin-right: 15%;
    text-align: center;
}

.content_overview {
	width: 100%;
	float: left;
	padding-top: 40px;
	padding-bottom: 40px;
}

.content-pad {
	width: 88%;
	float: left;
	padding: 6%;
}


.columns-wrap {
	width: 100%;
	float: left;
	margin-bottom: 1%;
}




.columns1 {
	width: 100%;
	float: left;
	margin-bottom: 2%;
}
.columns1 li {
    clear: none;
    margin-left: -10px;
    list-style-image: url(/images/bullet.png);
    margin-bottom: 8px;
}
.columns1-pad {
	width: 96%;
	float: left;
	margin-bottom: 20px;
	padding: 2%;
}
.columns2 {
    width: 48.5%;
    margin-right: 3%;
    clear: none;
    padding: 0%;
    margin-bottom: 2%;
    margin-top: 0px;
    margin-left: 0px;
    display: block;
    float: left;
    position: relative;
}




.columns2.last {
    margin-right: 0%;
    margin-bottom: 0px;
}
.columns2-right {
    width: 48.5%;
    margin-right: 0%;
    clear: none;
    padding: 0%;
    margin-bottom: 0%;
    margin-top: 0px;
    margin-left: 0px;
    float: right;
    text-align: center;
}
.columns2-center {
    width: 48.5%;
    margin-right: 3%;
    clear: none;
    padding: 0%;
    margin-bottom: 8%;
    margin-top: 0px;
    margin-left: 0px;
    display: block;
    float: left;
    position: relative;
    text-align: center;
}


.columns2-divider-left {
    width: 48%;
    margin-right: 3%;
    float: left;
    clear: none;
    
}
.columns2-divider-right {
    width: calc(45% - 1px);
    float: left;
    clear: none;
}





.columns2-callback {
	width: 48.5%;
	margin-right: 0%;
	clear: none;
	padding: 0%;
	margin-bottom: 0%;
	margin-top: 0px;
	margin-left: 0px;
	display: block;
	float: left;
	text-align: right;
}

.columns2 li {
    clear: none;
    margin-left: -15px;
    list-style-image: url(/images/bullet.png);
    margin-bottom: 12px;
    padding-left: 10px;
}
.columns2 ul {
    clear: none;
    list-style-image: url(/images/bullet.png);
    padding-top: 0px;
    margin-top: 0px;
    margin-bottom: 0px;
}





.columns2-wide {
	width: 70%;
	clear: none;
	padding: 0%;
	float: left;
	margin-right: 4%;
}



.columns2-wide-sidebar {
	width: 26%;
	clear: none;
	float: left;
}



.columns2-intro-left {
	width: 32%;
	clear: none;
	float: left;
	margin-right: 4%;
}
.columns2-intro-left h3 {
	font-size: 22px;
	line-height: 28px;
	font-weight: 300;
	letter-spacing: 0em;
}



.columns2-intro-right {
	width: 64%;
	clear: none;
	padding: 0%;
	float: left;
	margin-right: 0%;
}




.columns2-table {
	display: table;
	width: 100%;
}





.columns2-table-cell {
	display: table-cell;
	width: 47%;
	padding: 3%;
	position: relative;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	min-height: 200px;
}


.columns3-table {
	display: table;
	width: 100%;
	margin: 0px;
	float: left;
}

.columns3-table-cell {
	display: table-cell;
	width: 31.333%;
	position: relative;
	padding-top: 4%;
	padding-right: 3%;
	padding-bottom: 4%;
	padding-left: 3%;
}







.columns3 {
	width: 29.333%;
	clear: none;
	margin-right: 0%;
	float: left;
	margin-bottom: 2%;
	margin-left: 0%;
	padding-right: 2%;
	padding-left: 2%;
}
.columns3-values {
    width: calc(29.333% - 1px);
    clear: none;
    margin-right: 0%;
    float: left;
    margin-bottom: 2%;
    margin-left: 0%;
    padding-right: 2%;
    padding-left: 2%;
    border-left: 1px solid #8b9dab;
}
.columns3-values img {
    margin-bottom: 0px;
}

.columns3.last {
	border-right-style: none;
}

.columns3 li {
	clear: none;
	margin-left: -10px;
	list-style-image: url(/images/bullet_tick-green.png);
	margin-bottom: 8px;
}
.columns3 ul {
	clear: none;
	margin-top: 0px;
	padding-top: 0px;
}


.columns4{
    clear: none;
    width: 22%;
    float: left;
    margin-bottom: 0%;
    margin-right: 4%;
}
.columns4-clients{
    width: calc(19% - 1px);
    clear: none;
    float: left;
    margin-bottom: 0%;
    margin-right: 4%;
    border-left: 1px solid #8b9dab;
    padding-left: 3%;
}
.columns4-clients.last{
    margin-right: 0%;

}





.columns4.last {
	margin-right: 0%;
}

.columns4 img {

}

.columns4 h5 {
	font-size: 14px;
	line-height: 17px;
	font-weight: 400;
	margin-bottom: 10px;
}
.columns4 h6 {
	font-size: 18px;
	line-height: 21px;
	font-weight: 400;
	margin-bottom: 0px;
	min-height: 60px;
	display: block;
}


.columns4-table-cell {
	display: table-cell;
	position: relative;
	width: 24%;
	font-size: 14px;
}
.columns4-table-cell h6 {
	min-height: 30px;
	margin: 0px;
	padding: 0px;
}
.columns5 {
	clear: none;
	width: 20%;
	float: left;
	margin: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}





.columns5-table {
	display: table;
	width: 100%;
	margin: 0px;
	padding: 0px;
	text-align: left;
	background-color: #FFF;
	vertical-align: middle;
	height: auto;
}



.columns5-table-cell {
	display: table-cell;
	position: relative;
	width: 20%;
	height: 250px;
	margin: 0px;
	padding: 0px;
	text-align: center;
	vertical-align: middle;
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #CCC;
}
.columns5-table-cell img {
	width: 100%;
}

.columns5-table-cell.last {
	position: relative;
	border-right-style: none;
}


.columns5-table-cell-home {
	display: table-cell;
	position: relative;
	width: 20%;
	height: auto;
	margin: 0px;
	padding: 0px;
	text-align: center;
	vertical-align: middle;
	border-right-width: 1px;
	border-right-style: none;
	border-right-color: #bac0c3;
}
.columns5-table-cell-home img {
	width: 80%;
	margin-right: auto;
	margin-left: auto;
}

.columns5-table-cell-home.last {
	position: relative;
	border-right-style: none;
}
.columns5-table-cell-home h4 {
	font-size: 23px;
	line-height: 25px;
	font-weight: 300;
	margin-bottom: 20px;
	color: #7b868c;
	display: block;
}



.hide-mobile {
	display: block;
}
.columns4-teasers {
	clear: none;
	width: 21%;
	margin-right: 2%;
	float: left;
	margin-bottom: 3%;
	margin-left: 2%;
	text-align: center;
}
.columns4-teasers img {
	display: block;
}

.teaser-wrap {
	float: left;
	width: 94%;
	padding-top: 6%;
	padding-right: 3%;
	padding-bottom: 6%;
	padding-left: 3%;
}
.teaser-wrap h5 {
	float: left;
	font-size: 21px;
	line-height: 24px;
	font-weight: 600;
	color: #FFF;
	margin-bottom: 0px;
	display: block;
	width: 100%;
}
.teaser-wrap h6 {
	font-size: 16px;
	line-height: 20px;
	font-weight: 400;
	color: #FFF;
	float: left;
	display: block;
	width: 100%;
	margin: 0px;
}


.teasers-top {
	width: 100%;
	float: left;
}
.teasers-bot {
    width: 100%;
    float: left;
    font-weight: 300;
}
.teasers-bot h4 {
    font-size: 22px;
    font-weight: 500;
    padding: 0px;
    display: block;
    text-align: left;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 15px;
    margin-left: 0px;
    line-height: 28px;
}
.teasers-bot h5 {
    font-size: 20px;
    font-weight: 400;
    padding: 0px;
    display: block;
    text-align: left;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 15px;
    margin-left: 0px;
    line-height: 22px;
}



.buttons-base-towers {
}

.buttons-base-towers a {
	background-color: #FFF;
	text-align: center;
	vertical-align: middle;
	border: 1px solid #a5b5d0;
	width: 94%;
	margin-bottom: 15px;
	display: block;
	cursor: pointer;
	padding-top: 4%;
	padding-right: 3%;
	padding-bottom: 4%;
	padding-left: 3%;
}
.download-wrap {
	float: left;
	width: 100%;
	display: block;
	margin-top: 0px;
	margin-bottom: 0px;
	text-align: left;
}


.container_testimonials {
	width: 100%;
	font-size: 18px;
	line-height: 26px;
	font-weight: 300;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	background-attachment: fixed;
	background-image: url(/images/teasers/testimonials.jpg);
}
.container_testimonials h5 {
	font-size: 50px;
	line-height: 54px;
	font-weight: 600;
	color: #FFF;
}
.columns-wrap-testimonials {
	width: 100%;
	float: left;
	margin-bottom: 0%;
	padding-top: 5%;
	padding-bottom: 5%;
}
.columns3-testimonials {
	width: 29.333%;
	clear: none;
	margin-right: 0%;
	float: left;
	margin-bottom: 0%;
	margin-left: 0%;
	padding-right: 2%;
	padding-left: 2%;
	margin-top: 0px;
	padding-top: 5%;
	padding-bottom: 5%;
	color: #FFF;
	font-size: 30px;
	line-height: 34px;
	font-weight: 400;
	letter-spacing: -1px;
}
.container_enquiry {
	width: 100%;
	font-size: 18px;
	line-height: 26px;
	font-weight: 300;
	background-image: url(/images/teasers/adviser.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;

}
.columns2_enquiry_left {
	width: 45%;
	margin-right: 0%;
	clear: none;
	margin-bottom: 0%;
	margin-top: 0px;
	margin-left: 0px;
	display: block;
	float: left;
	background-color: rgba(255, 255, 255, .8);
	padding-top: 5%;
	padding-right: 5%;
	padding-bottom: 5%;
	padding-left: 10%;
}
.columns2_enquiry_right {
	width: 30%;
	margin-right: 0%;
	clear: none;
	padding: 0%;
	margin-bottom: 0%;
	margin-top: 0px;
	margin-left: 0px;
	display: block;
	float: left;
}
.expert-name {
	padding: 10px;
	position: absolute;
	left: 0px;
	bottom: 0px;
	font-size: 30px;
	line-height: 34px;
	color: #FFF;
	background-color: rgba(3, 62, 38, .8);
	font-family: "Great Vibes", cursive;
}
.message {
	font-size: 30px;
	line-height: 34px;
	font-weight: 600;
	color: #FFF;
	margin: 0px;
}



.footer {
    width: 100%;
    color: #FFFFFF;
    float: left;
    font-size: 16px;
    line-height: 19px;
    font-weight: 300;
    text-align: center;
}
.footer-columns4 {
    width: 22%;
    color: #FFFFFF;
    float: left;
    font-size: 16px;
    line-height: 19px;
    font-weight: 300;
    margin-right: 3%;
    text-align: left;
}
.footer-columns4 h6 {
	color: #FFFFFF;
	font-size: 18px;
	line-height: 24px;
	font-weight: 400;
	margin-bottom: 10px;
}
.footer-columns4 a {
    color: #FFFFFF;
    display: block;
    font-weight: 300;
}


.footer-columns4.last {
	margin-right: 0%;
}






.footer a {
	color: #FFFFFF;
	text-decoration: none;
}
.footer a:hover {
    color: #48A4E2;
    text-decoration: none;
}


.footer h5 {
	font-size: 18px;
	font-weight: 600;
	display: block;
	margin-bottom: 20px;
	color: #FFFFFF;
	line-height: 21px;
}
.footer h6 {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 20px;
	color: #FFFFFF;
	line-height: 21px;
}


.video-wrap {
	width: 80%;
	margin-right: auto;
	margin-left: auto;
	margin-bottom: 40px;
}
.menu-services {
    width: 100%;
    float: left;
    display: block;
}
.menu-services p {
    margin-bottom: 40px;
    margin-top: 0px;
    display: block;
}

.menu-services a {
    color: #FFFFFF;
    font-size: 24px;
    border-bottom: 1px solid #FFFFFF;
    display: block;
    padding-bottom: 20px;
    margin-bottom: 0px;
    background-image: url(/images/icon-arrow.png);
    background-repeat: no-repeat;
    background-position: 100% 5%;
    font-weight: 600;
}

.menu-services a:hover {
    color: #002856;	
}
.quill {
    width: 100%;
    position: absolute;
    z-index: 999;
    top: -350px;
    left: -20px;
}



.hide-tablet {
	display: block;
}


.hide-desktop {
	display: none;
}


.hide-desktop-tablet {
	display: none;
}

.hide-tablet-mobile {
	display: inline-block;
}


.hide-tabletsm-mobile {
	display: block;
}


.choose {
    float: left;
    width: 94%;
    text-decoration: none;
    background-color: #48a4e2;
    color: #FFFFFF;
    font-size: 20px;
    line-height: 24px;
    font-weight: 400;
    padding-top: 3%;
    padding-right: 3%;
    padding-left: 3%;
    padding-bottom: 3%;
    margin-top: 30px;
	box-shadow: 8px 8px 8px #999999;
}


.choose li {
    clear: none;
    margin-left: -10px;
    list-style-image: url(/images/bullet_tick.png);
    margin-bottom: 15px;
}

.choose ul {
    margin-bottom: 0px;
    margin-top: 0px;
}





.columns1_form {
	width: 100%;
	float: left;
	margin-bottom: 15px;
}

.columns2_form {
    width: 48.5%;
    margin-right: 3%;
    clear: none;
    padding: 0%;
    margin-top: 0px;
    margin-left: 0px;
    display: block;
    float: left;
    margin-bottom: 15px;
}

.columns2_form.last {
    margin-right: 0%;
    position: relative;
    width: 48.5%;
}





/* Tablet Layout: 1120px to 481px. Inherits styles from: Desktop Layout. */

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







TABLET {
}

h1 {


}
h2, h3 {


}
h4 {

}
h5 {

}
h6 {

}

.gridContainer {
	width: 88%;
	clear: none;
	float: none;
	padding-right: 6%;
	padding-left: 6%;
	padding-top: 0px;
	padding-bottom: 0px;
}

.gridContainerMobile {
	width: 100%;
	clear: none;
	float: none;
	padding: 0px;
}


.container_header {
	position: relative;
	background-color: #002856;
}

.header {
    padding-bottom: 0px;
}

.container_banner {
	height: 450px;
	background-position: right bottom;
	background-image: url(/images/banner-hero-tablet.jpg);
}
	
	
.banner-content {
    width: 95%;
    margin-right: 0%;
    margin-bottom: 0%;
    margin-top: 100px;
    margin-left: 2%;
    padding-left: 3%;
    text-align: center;
}


.banner-content h5 {
    font-size: 18px;
	line-height: 22px;
}

.banner-content h6 {
    font-size: 40px;
    line-height: 42px;

}	
		


.container_banner_sub {
	height: auto;
}



.container {

}

.container_footer {

}

.columns-wrap {
	margin-bottom: 2%;
}



.content {

}

.video-left {
	width: 100%;
	margin-right: 0%;
	clear: none;
	padding: 0%;
	margin-bottom: 0px;
	margin-top: 0px;
	margin-left: 0px;
	display: block;
	float: left;
	text-align: center;
}
.video-right {
	width: 75%;
	padding: 0%;
	margin-bottom: 0px;
	margin-top: 0px;
	margin-left: 12.5%;
	display: block;
	float: left;
	line-height: 0px;
}



.columns2 {
}

.columns2 img {
	clear: none;
	padding-bottom: 10px;
}

.columns2 h5 {
	font-size: 16px;
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 15px;
	margin-left: 0px;
}
.columns2 h6 {
	font-size: 14px;
	font-weight: bold;
	color: #333;
}


.columns2-wide {

}

.columns2-wide-sidebar {

}



.columns2-wide-data {
	width: 60%;
	margin-right: 5%;
	clear: none;
}

.columns2-wide-data-sidebar {
	width: 100%;
	position: relative;
	clear: none;
}

.columns2-table-cell {
	width: 45%;
	padding: 5%;
}

.columns3 {
	margin-bottom: 4%;
}

.columns3 h4 a {
	font-size: 16px;
	line-height: 18px;
}

.columns3-table h5 {
	font-size: 14px;
}



.container_testimonials h5 {
	font-size: 40px;
	line-height: 44px;
}
.columns3-testimonials {
	font-size: 24px;
	line-height: 27px;
	min-height: 150px;
}

.columns4{
}


.columns4 h6 {
	min-height: 80px;
}



.columns4-teasers {
	clear: none;
	width: 21%;
	margin-right: 2%;
	float: left;
	margin-bottom: 3%;
	margin-left: 2%;
	text-align: center;
}

.teaser-wrap {
	float: left;
	width: 94%;
	padding-top: 6%;
	padding-right: 3%;
	padding-bottom: 6%;
	padding-left: 3%;
}
.teaser-wrap h5 {
	float: left;
	font-size: 18px;
	line-height: 22px;
	font-weight: 600;
	color: #FFF;
	margin-bottom: 0px;
	display: block;
	width: 100%;
}
.teaser-wrap h6 {
	font-size: 16px;
	line-height: 20px;
	font-weight: 400;
	color: #FFF;
	float: left;
	display: block;
	width: 100%;
	margin: 0px;
}






.columns5-table-cell {
	display: table-cell;
	position: relative;
	width: 20%;
	height: auto;
	margin: 0px;
	padding: 0px;
	text-align: center;
	vertical-align: middle;
}

.columns5-table-cell-home h4 {
	font-size: 20px;
	line-height: 23px;
	margin-bottom: 10px;
	display: block;
}


.footer-columns4 {
    width: 50%;
    float: left;
    margin-right: 0%;
    min-height: 280px;
}





.iframe-newsletter {
	height: 320px;
	width: 100%;
}


.iframe-contact {
	height: 500px;
	width: 100%;
}


.social {
	font-size: 24px;
}



.footerright h6 {
	width: 100%;
}

.button-side {
	position: fixed;
	top: 220px;
	right: 0px;
	z-index: 999;
	display: none;
}


.header-unit {
	position: relative;
	float: left;
	width: 100%;
	z-index: 0;
	height: 460px;
}


.columns2_enquiry_left {
	width: 90%;
	margin-right: 0%;
	clear: none;
	margin-bottom: 0%;
	margin-top: 0px;
	margin-left: 0px;
	display: block;
	float: left;
	background-color: rgba(255, 255, 255, .8);
	padding-top: 5%;
	padding-right: 5%;
	padding-bottom: 5%;
	padding-left: 5%;
}
.columns2_enquiry_right {
	width: 0%;
	margin-right: 0%;
	clear: none;
	padding: 0%;
	margin-bottom: 0%;
	margin-top: 0px;
	margin-left: 0px;
	display: none;
	float: left;
}
    
    
.hide-tablet {
	display: none;
}
.hide-desktop {
	display: inline-block;
}
    
.hide-desktop-tablet {
	display: none;
}


.hide-tablet-mobile {
	display: none;
}    

.hide-tabletsm-mobile {
	display: block;
}



}



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

TABLET SMALL {
}

/* Mobile Layout: 480px and below. */
  
h1 {
    font-size: 32px;
    line-height: 35px;
}

h2, h3 {

}

h4 {

}
h5 {

}
h6 {

}
    
.gridContainer {
	width: 84%;
	padding-right: 8%;
	padding-left: 8%;
}    
    

.container_header {
	margin-bottom: 0px;
}



.container_banner {
	height: 350px;
	background-position: right bottom;
	background-image: url(/images/banner-hero-mobile.jpg);
}
	
	
.banner-content {
    width: 95%;
    margin-right: 0%;
    margin-bottom: 0%;
    margin-top: 50px;
    margin-left: 2%;
    padding-left: 3%;
    text-align: center;
}


.banner-content h5 {
    font-size: 14px;
    line-height: 16px;
}

.banner-content h6 {
    font-size: 32px;
    line-height: 35px;
}	
	


.intro {
    font-size: 20px;
    line-height: 28px;
    width: 100%;
    margin-left: 0px;
    margin-right: 0px;
}


.content_overview {

}

.container {
    padding-top: 60px;
    padding-bottom: 60px;
}    
    

.columns-wrap {

}


.columns2 {
    width: 100%;
    margin-top: 0px;
    margin-right: 0px;
    margin-left: 0px;
    margin-bottom: 5%;
}
    
    
.columns2-right {
    width: 100%;
    float: left;
    margin-bottom: 5%;
}    


.columns2-intro-left {
	width: 100%;
	margin-right: 0%;
}
.columns2-intro-left h3 {
	font-size: 20px;
	line-height: 26px;
}



.columns2-intro-right {
	width: 100%;
}


.columns2-callback {
	width: 100%;
	margin-right: 0%;
	margin-bottom: 0%;
	margin-top: 0px;
	margin-left: 0px;
	text-align: left;
}
    
.columns2-divider-left {
    width: 100%;
    margin-right: 0%;
    
}
.columns2-divider-right {
    width: calc(99% - 1px);
    margin-bottom: 30px;
}    



.columns3 {
    width: 100%;
    clear: none;
    margin-right: 0%;
    float: left;
    margin-bottom: 10%;
    margin-left: 0%;
    border-right-style: none;
    padding-left: 0px;
    padding-right: 0px;
}
.columns3.last {
	border-right-style: none;
}




.columns3-table {
	padding-bottom: 6%;
}

.columns3-table-cell {
	display: block;
	width: 100%;
	padding-top: 6%;
	padding-right: 0%;
	padding-bottom: 0%;
	padding-left: 0%;
}
    
    
    
.columns3-values {
    width: 95%;
    clear: none;
    margin-right: 0%;
    float: left;
    margin-bottom: 8%;
    margin-left: 0%;
    padding-right: 0%;
    padding-left: 4%;
    border-left: 1px solid #8b9dab;
}
    
.columns3-values img {
    margin-bottom: 20px;
}    
    

.container_testimonials h5 {
	font-size: 34px;
	line-height: 44px;
}
.columns-wrap-testimonials {
	padding-top: 10%;
	padding-bottom: 8%;
}
.columns3-testimonials {
	font-size: 20px;
	line-height: 23px;
}
.columns3-testimonials img {
	width: 30%;
	margin-right: auto;
	margin-left: auto;
	margin-bottom: 15px;
}


.columns4 {
	width: 46%;
}

.columns4 h6 {
	font-size: 18px;
	line-height: 21px;
	min-height: 70px;
}

.columns4.last {
    clear: none;
    width: 46%;
    margin-right: 0%;
}
.columns4 img {
}


.columns4-downloads {
	clear: none;
	width: 46%;
	float: left;
	margin-bottom: 3%;
	margin-right: 2%;
	margin-left: 2%;
}


.columns4-table-cell {
	display: block;
	width: 100%;
	font-size: 14px;
	border-bottom-width: 8px;
	border-bottom-style: solid;
	border-bottom-color: #FFF;
	padding: 0%;
}
    
    
    
    
    .columns4-clients{
    width: 47%;
    clear: none;
    float: left;
    margin-bottom: 0%;
    margin-right: 6%;
    border-left: none;
    padding-left: 3%;
}
.columns4-clients.last{
    margin-right: 0%;

}
    
.footer-columns4 {
    width: 100%;
    float: left;
    margin-right: 0%;
    text-align: center;
    min-height: 10px;
    margin-bottom: 8%;
}
    
    

.teaser-wrap {
	float: left;
	width: 94%;
	padding-top: 6%;
	padding-right: 3%;
	padding-bottom: 6%;
	padding-left: 3%;
}
.teaser-wrap h5 {
	float: left;
	font-size: 18px;
	line-height: 22px;
	font-weight: 600;
	margin-bottom: 0px;
	display: block;
	width: 100%;
}
.teaser-wrap h6 {
	font-size: 16px;
	line-height: 20px;
	font-weight: 400;
	color: #FFF;
	float: left;
	display: block;
	width: 100%;
	margin: 0px;
}





.columns5-table-cell-home {
	display: block;
	width: 100%;
	padding: 0%;
}




.columns5-table-cell-home {
	display: block;
	width: 100%;
	padding: 0%;
	position: relative;
	margin: 0px;
	text-align: center;
	vertical-align: middle;
	border-right-width: 0px;
	border-right-style: none;
	height: auto;
}
.columns5-table-cell-home img {
	width: auto;
}

.columns5-table-cell-home.last {
	border-right-style: none;
}






.columns5 {
	margin-bottom: 15px;
	width: 100%;
	margin-right: 0px;
	margin-left: 0px;
	padding: 0px;
	margin-top: 0px;
}
    
.cogs {
    display: none;
} 
    
    
    
.hide-tablet {
	display: block;
}


.hide-desktop {
	display: block;
}
    
.hide-desktop-tablet {
	display: block;
}    

.hide-tablet-mobile {
	display: none;
}


.hide-tabletsm-mobile {
	display: none;
}  
	
	
.columns2_form {
    width: 100%;
    margin-right: 0%;
	margin-bottom: 15px;
}

.columns2_form.last {
    width: 100%;
}	
	
	
.form_text {

}
.form_textarea {
    width: 92%;
    padding-left: 4%;
}

.form_select {

}
	
	
.choose {
    width: 84%;
    padding-top: 8%;
    padding-right: 8%;
    padding-left: 8%;
    padding-bottom: 8%;

}	


}




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

MOBILE {
}


h1 {

}

.gridContainer {
	width: 84%;
	clear: none;
	float: none;
	padding-top: 0%;
	padding-right: 8%;
	padding-bottom: 0%;
	padding-left: 8%;
}
.gridContainerMobile {
	width: 100%;
	padding: 0px;
}



.container_navigation {
	background-color: #CCFF33;
}


.container {
}



.container_footer {
}


.content-tabs-wrapper {
	width: 100%;
	color: #333;
	float: left;
	position: relative;
	padding-top: 20px;
	padding-bottom: 20px;
	min-height: 0px;
}
.content-tabs {
	width: 100%;
	color: #333;
	top: 0px;
	position: relative;
}

.content {
	width: 100%;
	margin: 0px;
}

.video-left {
	width: 100%;
	margin-right: 0%;
	padding: 0%;
	margin-bottom: 0px;
	margin-top: 0px;
	margin-left: 0px;
	display: block;
	float: left;
	text-align: center;
}
.video-right {
	width: 100%;
	margin-right: 0%;
	padding: 0%;
	margin-bottom: 0px;
	margin-top: 0px;
	margin-left: 0px;
	display: block;
	float: left;
	line-height: 0px;
}

.columns-wrap {


}
.columns1-pad {
	width: 92%;
	margin-bottom: 15px;
	padding: 4%;
}





.columns2-center {
    width: 75%;
    margin-bottom: 8%;
    text-align: left;
    margin-right: 0px;
}
.columns2-right {
    width: 75%;
    text-align: left;
    margin-bottom: 8%;
}


.columns2 img {
	clear: none;
	padding-bottom: 10px;
}

.columns2 h5 {
	font-size: 16px;
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 15px;
	margin-left: 0px;
}
.columns2 h6 {
	font-size: 14px;
	font-weight: bold;
	color: #333;
}


.columns2-wide {
	width: 100%;
	margin-right: 0px;
	margin-bottom: 20px;
}

.columns2-wide-sidebar {
	width: 100%;
	margin: 0px;
}


.columns2-wide-data {
	width: 100%;
	margin-right: 0%;
	margin-bottom: 20px;
}

.columns2-wide-data-sidebar {
	width: 100%;
}



.columns2-table-cell {
	display: block;
	width: 90%;
	padding: 5%;
}




.columns3 {
	clear: none;
	width: 100%;
	min-height: 0px;
}
.columns3-pad {
	clear: none;
	margin-bottom: 15px;
	width: 92%;
	padding: 4%;
	min-height: 0px;
}
.columns3 img {
}


.columns3-table {
display: table;
width: 100%;
}
.columns4 {

}
.columns4 img {

}

.columns4.last {
	clear: none;
	margin-bottom: 2%;
	width: 100%;
	margin-right: 0%;
}


.columns4-table-cell {
	display: block;
	width: 100%;
	font-size: 14px;
	border-bottom-width: 8px;
	border-bottom-style: solid;
	border-bottom-color: #FFF;
	padding: 0%;
}


/* Mobile Layout: 480px and below. */
  
h1 {
    font-size: 32px;
    line-height: 35px;
}

    
.hide-mobile {
	display: none;
}
.hide-tablet {
	display: block;
}

.hide-desktop {
	display: block;
}
    
.hide-desktop-tablet {
	display: block;
}     

.hide-tablet-mobile {
	display: none;
}    

.hide-tabletsm-mobile {
	display: none;
}   


}
