@charset "utf-8";
body {
    font-family: 'Montserrat', sans-serif;
    color: #343742;
    background-color: #343742;
    font-weight: 400;
    margin: 0px;
    padding: 0px;
    font-size: 18px;
    line-height: 26px;
}



/* Simple fluid media
   Note: Fluid media requires that you remove the media's height and width attributes 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;
    z-index: 0;
    border: 1px solid #eeeeee;
}
.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;
    z-index: 0;
    background-color: undefined;
}
.white {
	background-color: #FFF;
}
.green {
    background-color: #a69c8d;
}
.greenlt {
    background-color: #b3cc3a;
}
.blue {
    background-color: #5d5f68;
}
.blue2 {
    background-color: #a69c8d;
}
.beige1 {
    background-color: #BCB3A6;
}
.beige2 {
    background-color: #343742;
}
.red {
    background-color: #E63137;
}
.black {
    background-color: #343742;
}
.greylt {
    background-color: #faf9f8;
}
.greylt2 {
    background-color: #EEEDEB;
}
.text-white {
	color: #FFF;
}
.link-white {
	color: #FFF;
	text-decoration: none;
}
.link-white:hover {
    color: #FFFFFF;
    text-decoration: none;
}
.link-button-outline {
    color: #a69c8d;
    text-decoration: none;
    display: inline-block;
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
    border-radius: 30px;
    font-size: 18px;
    line-height: 22px;
    font-weight: 600;
    padding-top: 12px;
    padding-right: 18px;
    padding-bottom: 12px;
    padding-left: 18px;
    border: 1px solid #a69c8d;
}
.link-button-outline:hover {
    color: #2C2E34;
    background-color: #a69c8d;
    border-color: #a69c8d;
}


.link-button-white {
    color: #FFFFFF;
    text-decoration: none;
    display: inline-block;
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
    border-radius: 30px;
    font-size: 18px;
    line-height: 22px;
    font-weight: 600;
    padding-top: 12px;
    padding-right: 18px;
    padding-bottom: 12px;
    padding-left: 18px;
    border: 1px solid #FFFFFF;
    text-transform: uppercase;
}
.link-button-white:hover {
    color: #FFFFFF;
    background-color: #343742;
    border-color: #343742;
}
.link-button-col1 {
    color: #FFFFFF;
    text-decoration: none;
    display: inline-block;
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
    border-radius: 30px;
    font-size: 18px;
    line-height: 22px;
    font-weight: 600;
    padding-top: 12px;
    padding-right: 18px;
    padding-bottom: 12px;
    padding-left: 18px;
    background-color: #a69c8d;
    border: 1px solid #a69c8d;
}
.link-button-col1:hover {
    color: #FFFFFF;
    background-color: #343742;
    border-color: #FFFFFF;
}






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


input:required {
  background-color: #ffffff;
}

.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;
}

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

.video-wrap {
	width: 60%;
	margin-right: 20%;
	margin-left: 20%;
}
.img-right {
	float: right;
	margin-bottom: 15px;
	margin-left: 15px;
}
.cta {
    float: left;
    width: 96%;
    text-decoration: none;
    background-color: #343742;
    color: #FFFFFF;
    font-size: 26px;
    line-height: 29px;
    font-weight: 600;
    text-align: center;
    padding-top: 2%;
    padding-right: 2%;
    padding-left: 2%;
    padding-bottom: 2%;
}
.cta-icon {
	text-decoration: none;
	position: absolute;
	left: 47%;
	top: -40px;
	height: 82px;
	width: 83px;
}
.test {
    background-image: url(/images/banners/remuneration-management.jpg);
    background-repeat: no-repeat;
    background-position: center top;
    margin-right: auto;
    margin-left: auto;
    background-color: #F5F7FB;
    background-attachment: fixed;
    border-bottom: 0px none #343742;
    border-top-style: none;
    border-right-style: none;
    border-left-style: none;
    font-weight: 400;
}


.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(166,156,141,0.5);
}
.back-to-top:hover {
	background-color: rgba(0,0,0,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;
}


 @-webkit-keyframes spin1 {
0% {
-webkit-transform: rotate(0deg);
}
100% {
-webkit-transform: rotate(360deg);
}
}
@-moz-keyframes spin1 {
0% {
-moz-transform: rotate(0deg);
}
100% {
-moz-transform: rotate(360deg);
}
}
@-o-keyframes spin1 {
0% {
-o-transform: rotate(0deg);
}
100% {
-o-transform: rotate(360deg);
}
}
@-ms-keyframes spin1 {
0% {
-ms-transform: rotate(0deg);
}
100% {
-ms-transform: rotate(360deg);
}
}
@-keyframes spin1 {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
.spin {
	-webkit-animation: spin1 2s infinite linear;
	-moz-animation: spin1 2s infinite linear;
	-o-animation: spin1 2s infinite linear;
	-ms-animation: spin1 2s infinite linear;
	animation: spin1 2s infinite linear;
	display: block;
}
.showSingle {
	cursor: pointer;
}
.cnt {
}





**DESKTOP** {
}
h1 {
    font-size: 34px;
    font-weight: 700;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 25px;
    margin-left: 0px;
    padding: 0px;
    line-height: 38px;
    letter-spacing: -1px;
    text-transform: none;
}
h2,h3 {
    font-size: 28px;
    font-weight: 700;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 15px;
    margin-left: 0px;
    padding: 0px;
    line-height: 34px;
    text-transform: none;
}


h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    padding: 0px;
    margin-top: 0px;
    margin-right: 0px;
    margin-left: 0px;
    line-height: 24px;
}
h5 {
    font-size: 18px;
    margin: 0px;
    padding: 0px;
    line-height: 22px;
    font-weight: 700;
}
h6 {
    font-size: 16px;
    font-weight: 700;
    padding: 0px;
    line-height: 20px;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 10px;
    margin-left: 0px;
    text-transform: uppercase;
}
.gridContainer {
    width: 96%;
    max-width: 1220px;
    margin: auto;
    clear: none;
    float: none;
    padding-top: 0%;
    padding-right: 2%;
    padding-bottom: 0%;
    padding-left: 2%;
}
.gridContainerMobile {
    width: 96%;
    max-width: 1220px;
    margin: auto;
    clear: none;
    float: none;
    padding-top: 0%;
    padding-right: 2%;
    padding-bottom: 0%;
    padding-left: 2%;
}
.container_header {
    width: 100%;
    margin-top: 0px;
    margin-right: 0px;
    margin-left: 0px;
    background-color: #343742;
    z-index: 100;
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
    margin-bottom: 0px;
}

.container_navigation {
    width: 100%;
    margin: 0px;
    padding: 0px;
    background-color: #a69c8d;
    z-index: 900;
}


.header {
    width: 100%;
    float: left;
    padding-top: 16px;
    padding-bottom: 16px;
}

.header-logo {
    float: left;
    width: 259px;
}

.header-content {
    display: block;
    width: 60%;
    float: right;
    color: #FFFFFF;
    padding-bottom: 0%;
    margin-top: 0px;
    padding-top: 5px;
    text-align: right;
}
.header-content h4 {
    font-size: 28px;
    margin-top: 0px;
    margin-bottom: 10px;
    line-height: 30px;
    color: #FFFFFF;

}

.header-content h5 {
    font-size: 20px;
    font-weight: 400;
    line-height: 22px;
    margin-top: 0px;
    color: #FFFFFF;

}
.header-content img {
    visibility: visible;
    padding-bottom: 3px;
}

.header-tagline1 {
	visibility: visible;
	text-align: right;
	width: 100%;
	font-size: 28px;
	line-height: 31px;
	font-weight: 700;
	display: block;
	padding-top: 0px;
	padding-right: 0%;
	padding-bottom: 0px;
	padding-left: 0px;
	float: right;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 5px;
	margin-left: 0px;
	color: #00a0df;
}
.header-tagline1 a:hover {
	visibility: visible;
	color: #333333;
}


.header-tagline2 {
	visibility: visible;
	text-align: right;
	width: 100%;
	font-size: 24px;
	font-weight: 400;
	display: block;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	line-height: 27px;
	float: right;
	color: #002856;
}


.intro {
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
}


.container {
    width: 100%;
    padding-top: 80px;
    padding-bottom: 80px;
}
.container_faqs {
    width: 100%;
    padding-top: 80px;
    padding-bottom: 80px;
    background-image: url(/images/bgd_faqs.jpg);
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: cover;
}



.container_banner {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 500px;
    width: 100%;
    position: relative;
    z-index: 0;
    background-image: url(/images/banner.jpg);
}

.banner-content {
    float: left;
    margin-top: 70px;
    width: 52%;
}


.banner-content h4 {
    font-size: 16px;
    color: #FFF;
    font-weight: 400;
    line-height: 22px;
    width: 100%;
    text-align: left;
    display: block;
    text-transform: uppercase;
}
.banner-content h5 {
    font-size: 40px;
    color: #FFF;
    font-weight: 500;
    line-height: 44px;
    width: 100%;
    text-align: left;
    margin-bottom: 25px;
    display: block;
}


.banner-content h6 {
    font-size: 18px;
    font-weight: 400;
    line-height: 22px;
    color: #FFFFFF;
    text-transform: none;
    display: block;
}




.container_nopad {
    width: 100%;
    padding-top: 0px;
    padding-bottom: 0px;
}

.content {
	width: 100%;
	float: left;
    opacity: 0;
    transform: translateY(100px); /* Start it below its final position */
    transition: opacity 1.5s ease, transform 1.5s ease;
}

.content_intro {
	width: 100%;
	float: left;
}

.columns-wrap {
    width: 100%;
    float: left;
}
.columns1 {
	width: 100%;
	float: left;
	margin-bottom: 40px;
}

.columns1-video {
	width: 80%;
	float: left;
	margin-bottom: 40px;
}

.columns1-pad {
    width: 84%;
    float: left;
    margin-bottom: 40px;
    padding-left: 8%;
    padding-top: 8%;
    padding-right: 8%;
    padding-bottom: 8%;
}
.columns1.zerobm {
	margin-bottom: 0px;
}
.columns1 li {
	clear: none;
	margin-left: -10px;
	list-style-image: url(/images/bullet.png);
	margin-bottom: 8px;
}
.columns1 ul {
    margin-bottom: 30px;
    margin-top: 0px;
}

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


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

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


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


.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-wide {
    width: 70%;
    clear: none;
    padding: 0%;
    float: left;
    margin-right: 4%;
}

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



.columns2-wide-sidebar {
    width: 26%;
    clear: none;
    float: left;
}
.columns-table {
    display: table;
    width: 100%;
    padding: 0px;
    margin-top: 0px;
    margin-right: 0px;
    margin-left: 0px;
}
.columns-table.sub {
    min-height: 400px;
}





.columns2-table-cell {
    display: table-cell;
    position: relative;
    width: 44%;
    vertical-align: top;
    padding-top: 3%;
    padding-right: 3%;
    padding-bottom: 3%;
    padding-left: 3%;
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
}
.columns2-table-cell li {
    clear: none;
	margin-left: -8px;
	list-style-image: url(/images/bullet-white.png);
	margin-bottom: 15px;
}
.columns2-table-cell.left {
    width: 70%;
}
.columns2-table-cell.right {
    width: 30%;
}
.columns2-table-cell.mid {
	position: relative;
	width: 6%;
	background-color: #FFF;
}
.columns2-table-cell h5 {
	margin-bottom: 0px;
	display: block;
	color: #FFF;
	font-size: 30px;
	line-height: 33px;
	font-weight: 600;
}




.columns2-table-cell-photo {
    display: table-cell;
    position: relative;
    width: 40%;
    vertical-align: top;
    padding-top: 3%;
    padding-right: 5%;
    padding-bottom: 3%;
    padding-left: 5%;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}
.columns2-table-cell-photo.watermark {
    background-image: url(/images/hero-banner-watermark.png);
    background-position: right center;
    background-repeat: no-repeat;
    
}
.columns2-table-cell-photo h3 {
    font-size: 44px;
    line-height: 52px;
    font-weight: 400;
    margin-bottom: 30px;
    display: block;
}
.columns2-table-cell-photo h4 {
    font-size: 28px;
    line-height: 34px;
    font-weight: 600;
    margin-bottom: 30px;
    display: block;
}
.columns2-table-cell-photo li {
    clear: none;
    margin-left: -8px;
    list-style-image: url(/images/bullet-white.png);
    margin-bottom: 15px;
}
.columns2-table-cell-photo.left {
    float: left;
}
.columns2-table-cell-photo.right {
    float: right;
    height: 100%;
}



.columns2-work {
    width: 48%;
    margin-right: 4%;
    clear: none;
    padding: 0%;
    margin-top: 0px;
    margin-left: 0px;
    float: left;
    position: relative;
    margin-bottom: 30px;
}

.columns2-work.last {
	margin-right: 0%;
}

.photolabel {
    font-size: 16px;
    line-height: 18px;
    font-weight: 400;
    color: #FFF;
    background-color: #343742;
    height: auto;
    width: auto;
    position: absolute;
    left: 0px;
    top: 20px;
    padding: 10px;
    text-transform: uppercase;
    z-index: 999;
}




.columns3 {
    width: 30%;
    clear: none;
    margin-right: 3.5%;
    float: left;
}

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


.columns3-services {
    width: 31.333%;
    clear: none;





    margin-right: 1%
%
%;
    float: left;
    margin-left: 1%;
    min-height: 450px;
    margin-right: 1%;
}

.columns3-services.last {
    margin-right: 0%;
}


.columns3-services img {
    display: block;
    margin-bottom: 20px;
}



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

.columns3-table-cell {
    display: table-cell;
    position: relative;
    width: 26%;
    padding-top: 3%;
    padding-right: 3%;
    padding-bottom: 3%;
    padding-left: 3%;
}
.columns3-table-cell.mid {
    position: relative;
    width: 3%;
    padding-top: 0%;
    padding-right: 0%;
    padding-bottom: 0%;
    padding-left: 0%;
}
.columns3-table-cell h4 {
    background-size: cover;
    font-size: 28px;
    line-height: 32px;
    font-weight: 600;
    padding: 0px;
    letter-spacing: 0px;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
}
.columns3-table-cell h5 {
    margin-bottom: 0px;
    font-size: 20px;
    line-height: 24px;
    font-weight: 600;
    padding-top: 0px;
    margin-top: 0px;
}
.columns3-table-cell-content {
	position: relative;
	width: 90%;
	float: left;
	background-color: #3d3d3d;
	padding: 5%;
	color: #FFF;
}



.columns4 {
	clear: none;
	width: 22%;
	margin-right: 4%;
	float: left;
}
.columns4.last {
    margin-right: 0%;
    margin-bottom: 0px;
}



.columns4-table {
    display: table;
    width: 100%;
    padding: 0px;
    float: left;
    margin-top: 10px;
    margin-right: 0px;
    margin-bottom: 20px;
    margin-left: 0px;
}

.columns4-table-cell {
    display: table-cell;
    position: relative;
    width: 23.5%;
    text-align: center;
    vertical-align: top;
}
.columns4-table-cell.mid {
    position: relative;
    width: 2%;
    background-color: #FFF;
}



.columns4-table-cell h6 {
	min-height: 30px;
	margin: 0px;
	padding: 0px;
}
.columns5 {
	clear: none;
	width: 18%;
	float: left;
	padding: 0px;
	margin-top: 0px;
	margin-right: 1%;
	margin-bottom: 2%;
	margin-left: 1%;
}
.columns5-table {
	display: table;
	width: 100%;
	margin: 0px;
	padding: 0px;
	text-align: left;
}
.columns5-table-cell {
	display: table-cell;
	position: relative;
	width: 16%;
	font-size: 14px;
	padding-top: 2%;
	padding-right: 2%;
	padding-bottom: 2%;
	padding-left: 2%;
}
.container_footer {
    width: 100%;
    padding-top: 60px;
    padding-bottom: 60px;
    background-repeat: repeat-x;
    background-color: #FFFFFF;
}


.footer {
    width: 100%;
    color: #FFFFFF;
    float: left;
    font-size: 16px;
    line-height: 20px;
}

.footer a {
    text-decoration: none;
    font-weight: 400;
}
.footer a:hover {
	color: #FFFFFF;
	text-decoration: none;
}


.footer h5 {
    font-size: 18px;
    font-weight: 400;
    display: block;
    margin-bottom: 20px;
    color: #66686c;
    line-height: 21px;
}


.button-side {
	height: 283px;
	width: 57px;
	position: fixed;
	top: 200px;
	right: 0px;
	float: right;
	z-index: 999;
	margin-right: 0px;
	padding-right: 0px;
}






.header-unit {
	position: relative;
	float: left;
	width: 100%;
	z-index: 0;
	height: 460px;
}
#video-container {
	position: absolute;
	background-position: center bottom;
	top: 0px;
	left: 0px;
	z-index: 0;
}
#video-container {
	height: 100%;
	width: 100%;
	overflow: hidden;
	z-index: 200;
}
video {
	position: absolute;
	z-index: 0;
	top: 0%;
}
video.fillWidth {
	width: 100%;
	z-index: 0;
}
#videoMessage {
	left: 0%;
	height: 100%;
	width: 100%;
	z-index: 300;
	position: absolute;
	top: 0px;
	float: left;
}
.button-upload {
	background-color: #0F6;
}
.rightMenu {
}
.rightMenu p {
	display: block;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}




.rightMenu a {
    color: #a69c8d;
    text-decoration: none;
    display: inline-block;
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
    border-radius: 30px;
    font-size: 18px;
    line-height: 22px;
    font-weight: 600;
    padding-top: 15px;
    padding-right: 8%;
    padding-bottom: 15px;
    padding-left: 8%;
    width: 84%;
    border: 1px solid #a69c8d;
    margin-top: 15px;
}
.rightMenu a:hover {
    color: #343742;
    background-color: #a69c8d;
    border-color: #C1C1C1;
}



.corner {
	height: 28px;
	width: 15px;
	position: absolute;
	top: 0px;
	right: -15px;
}
/*
==============================================
SlideInDown
==============================================
*/

.slideInDown {
	-webkit-animation-name: slideInDown;
	animation-name: slideInDown;
	animation-duration: 1.1s;
	-webkit-animation-duration: 1.1s;
	animation-timing-function: ease-in-out;
	-webkit-animation-timing-function: ease-in-out;
	visibility: visible !important;
}
}
 @-webkit-keyframes slideInDown {
 0% {
 -webkit-transform: translate3d(0, -100%, 0);
 transform: translate3d(0, -100%, 0);
 visibility: visible;
}
 100% {
 -webkit-transform: translate3d(0, 0, 0);
 transform: translate3d(0, 0, 0);
}
}
 @keyframes slideInDown {
 0% {
 -webkit-transform: translate3d(0, -100%, 0);
 transform: translate3d(0, -100%, 0);
 visibility: visible;
}
 100% {
 -webkit-transform: translate3d(0, 0, 0);
 transform: translate3d(0, 0, 0);
}
}
/*
==============================================
fadeIn
==============================================
*/

.fadeIn {
	animation-name: fadeIn;
	-webkit-animation-name: fadeIn;
	animation-duration: 1.1s;
	-webkit-animation-duration: 1.1s;
	animation-timing-function: ease-in-out;
	-webkit-animation-timing-function: ease-in-out;
	visibility: visible !important;
}
 @keyframes fadeIn {
 0% {
 transform: scale(1);
 opacity: 0.0;
}
 100% {
 transform: scale(1);
 opacity: 1;
}
}
 @-webkit-keyframes fadeIn {
 0% {
 transform: scale(1);
 opacity: 0.0;
}
 100% {
 transform: scale(1);
 opacity: 1;
}
}





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








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

.columns1-start {
    width: 100%;
    float: left;
    border-bottom: 1px solid #66686c;
    margin-bottom: 0px;
    padding-bottom: 40px;
}

.columns2-enquiry {
	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;
}

.columns1-form {
    width: 100%;
    float: left;
    margin-bottom: 15px;
    text-align: left;
}
.columns2.form {
    margin-bottom: 15px;
}

.help-wrap {
    width: 70%;
    float: left;
    padding-left: 5%;
    padding-top: 5%;
    padding-right: 25%;
    padding-bottom: 5%;
    background-color: #E63137;
    color: #FFFFFF;
    background-image: url(/images/help-corner.png);
    background-position: right bottom;
    background-repeat: no-repeat;
    margin-top: 40px;
}

.form_text {
	font-family: 'Source Sans Pro', sans-serif;
    width: 92%;
    padding-right: 4%;
    padding-left: 4%;
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 0px;
    border: 0px solid #49A2DB;
    background-color: #FFFFFF;
    height: 60px;
}
.form_textarea {
    font-family: 'Source Sans Pro', sans-serif;
    width: 94%;
    border: 0px solid #49A2DB;
    padding-top: 2%;
    padding-right: 4%;
    padding-bottom: 4%;
    padding-left: 2%;
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 0px;
    background-color: #FFFFFF;
}

.form_select {
    font-family: 'Source Sans Pro', sans-serif;
	width: 100%;
    padding-right: 4%;
    padding-left: 4%;
    font-size: 18px;
    line-height: 22px;
    margin-bottom: px;
    border: 0px solid #49A2DB;
    background-color: #FFFFFF;
    height: 60px;
}



.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%;
}

.prices {
    font-size: 80px;
    line-height: 80px;
    font-weight: 700;
    letter-spacing: -1px;
    display: inline-block;
    margin-bottom: 5px;

}

.prices-desc {
    font-size: 18px;
    line-height: 22px;

}





/* Tablet Layout: 1200px to 700px. Inherits styles from: Desktop Layout. */

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




**TABLET** {
}

.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;
}
.zeroMargin_tablet {
	margin-left: 0;
}
	
	
.header-logo {
	clear: none;
}
.header-content {
    clear: none;
    padding-top: 0px;
    margin-top: 10px;
}


.header-tagline1 {
	font-size: 23px;
	line-height: 24px;
}



.header-tagline2 {
    font-size: 18px;
    line-height: 20px;
}  	

	

.banner-content {
    margin-top: 80px;
    width: 50%;
}		

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

}	
	
	
.help-wrap {
    width: 61%;
    float: left;
    padding-left: 8%;
    padding-top: 8%;
    padding-right: 25%;
    padding-bottom: 8%;
    background-color: #E63137;
    color: #FFFFFF;
    background-image: url(/images/help-corner.png);
    background-position: right bottom;
    background-repeat: no-repeat;
    margin-top: 40px;
    background-size: 30% auto;
}	
	
	
.content {
}
    
    
.content_intro {
}
           
    
    
.columns2 img {
	clear: none;
	padding-bottom: 10px;
}
	
.columns3-clients {
    width: 47%;
    margin-right: 1.5%;
    margin-left: 1.5%;
}	

.columns4 {
    width: 46%;
    margin-right: 4%;
}
.columns4-center {
}
	
	
.columns4-table-cell {
    display: block;
    position: relative;
    width: 100%;
    text-align: center;
    vertical-align: top;
}
.columns4-table-cell.mid {
    position: relative;
    width: 2%;
    background-color: #FFF;
}	
.columns5-table-cell {
	display: block;
	position: relative;
	width: 96%;
	padding: 2%;
}
	
.hide-mobile {
	display: inline-block;
}	
	
.hide-tablet {
	display: none;
}
.hide-tablet-mobile {
	display: none;
}
.hide-tabletsm-mobile {
    display: inline-block;
}
.header-unit {
	position: relative;
	float: left;
	width: 100%;
	z-index: 0;
	height: 460px;
}

    
.float-right {
	float: right;
}
	
    
}







/* Tablet Layout: 700px to 481px. Inherits styles from: Desktop Layout. */
@media only screen and (max-width: 800px) {
**TABLET SMALL** {
}
h1 {
    font-size: 30px;
    line-height: 34px;
}
h2 {
    font-size: 26px;
    line-height: 30px;
}


h3 {
    font-size: 22px;
   line-height: 26px;
}



h4 {
    font-size: 20px;
    line-height: 24px;
}
h5 {
    font-size: 18px;
    line-height: 22px;
}
h6 {
    font-size: 16px;
    line-height: 20px;
}
	
.gridContainer {
    width: 84%;
    clear: none;
    float: none;
    padding-right: 8%;
    padding-left: 8%;
    padding-top: 0px;
    padding-bottom: 0px;
}
.gridContainerMobile {

}
	
	
.header {
	width: 100%;
	padding-top: 15px;
	padding-bottom: 0px;
}

.header-logo {
    width: 100%;
    text-align: center;
    margin-bottom: 15px;
}

.header-content {
    display: none;
}	
	
.header-navicon {
	float: none;
	width: 100%;
	text-align: center;
	margin-top: 0;
	margin-bottom: 0;
	margin-left: 0px;
	padding-top: 5px;
	padding-bottom: 5px;
	background-color: #CCCCCC;
}
.header-tagline2 {
	display: block;
	float: none;
	clear: both;
	width: 100%;
	margin-bottom: 26px;
	text-align: center;
	font-size: 17px;
	font-weight: bold;
	color: #333333;
}  	

.container_banner {
    background-position: center center;
    background-size: initial;
    min-height: 400px;
    width: 100%;
}	
	
.banner-content {
    float: left;
    margin-top: 60px;
    width: 100%;
    margin-bottom: 60px;
}


.banner-content h4 {
    font-size: 16px;
    line-height: 22px;
	margin-bottom: 5px;
}
.banner-content h5 {
    font-size: 32px;
    line-height: 36px;
}


.banner-content h6 {

}		
	
.container {
    padding-top: 40px;
    padding-bottom: 40px;
}
	
	
.intro {

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

.columns2.last {
    margin-right: 0%;
    position: relative;
    margin-bottom: 0px;
}
	
.columns2-wide {
    width: 100%;
    margin-right: 0px;
    margin-bottom: 40px;
}
.columns2-wide-sidebar {
	width: 100%;
	margin: 0px;
}	
	
.columns2 ul {
    margin-top: 0px;
    margin-bottom: 0px;
	
}	
	
	
.columns2-right {
    width: 100%;
    margin-bottom: 20px;
    text-align: left;
    float: left;
}
	
	
.columns2-center {
    width: 100%;
    margin-right: 0%;
    display: block;
    margin-bottom: 25px;
}	
.columns-table {

}
	
.columns-table.sub {
    min-height: 250px;
}	
	
	
.columns2-table-cell.mid {
	display: block;
	width: 96%;
	padding: 2%;
}
.columns2-table-cell-content {
	width: 94%;
	padding: 3%;
	color: #FFF;
}
	
	
.columns2-table-cell {
    padding-top: 5%;
    padding-right: 5%;
    padding-bottom: 5%;
    padding-left: 5%;
    width: 90%;
    display: block;
    min-height: 300px;
}	
	
.columns2-table-cell.left {
    width: 90%;
    padding-top: 5%;
    padding-right: 5%;
    padding-bottom: 5%;
    padding-left: 5%;
}
.columns2-table-cell.right {
    width: 90%;
    padding-top: 5%;
    padding-right: 5%;
    padding-bottom: 5%;
    padding-left: 5%;
}
	
	
.columns2-table-cell-photo {
    padding-top: 5%;
    padding-right: 8%;
    padding-bottom: 5%;
    padding-left: 8%;
    width: 84%;
    display: block;
    min-height: 250px;
}	
	
.columns2-table-cell-photo h3 {
    font-size: 34px;
    line-height: 38px;
}
.columns2-table-cell-photo h4 {
    font-size: 24px;
    line-height: 28px;
}	
	
	
.columns2-table-cell-photo.left {
    padding-top: 5%;
    padding-right: 8%;
    padding-bottom: 5%;
    padding-left: 8%;
    width: 84%;
    display: block;
    min-height: 0px;
}	
	
.columns2-table-cell-photo.right {
    padding-top: 5%;
    padding-right: 8%;
    padding-bottom: 5%;
    padding-left: 8%;
    width: 84%;
    display: block;
    min-height: 0px;
}
	
	
.columns2-work {
    width: 100%;
    margin-right: 0%;
    margin-bottom: 30px;
}

.columns2-work.last {
	margin-right: 0%;
}	
	
	
	
    
.columns3 {
    clear: none;
    margin-bottom: 30px;
    width: 100%;
    margin-right: 0;
}
	
.columns3.last {
    margin-bottom: 0px;
}	
	
.columns3-table-cell {
    display: block;
    width: 90%;
    padding-top: 5%;
    padding-right: 5%;
    padding-bottom: 5%;
    padding-left: 5%;
}
.columns3-table-cell.mid {
    display: block;
    width: 90%;
    padding-top: 1%;
    padding-right: 5%;
    padding-left: 5%;
    padding-bottom: 1%;
}
	
	
.container_benefits {
}
	
.columns3-table-cell-benefits {
    display: block;
    width: 95%;
    padding-top: 3%;
    padding-right: 5%;
    padding-bottom: 3%;
    padding-left: 0%;
}	
	
.columns3-table-cell-benefits H5 {
    font-size: 20px;
    line-height: 24px;

}	
	
	

.columns3-services {
    min-height: 360px;
    width: 46%;
    float: left;
    clear: none;
    margin-left: 2%;
    margin-right: 2%;
}


	
	
	
	
	
.columns4 {
    clear: none;
    margin-bottom: 30px;
    width: 100%;
    margin-right: 0%;
    padding: 0px;
    margin-top: 0px;
    margin-left: 0px;
}
.columns4.last {
    clear: none;
    margin-bottom: 0%;
    width: 100%;
    margin-right: 0%;
}
	

.columns5 {
	margin-bottom: 15px;
	width: 100%;
	margin-right: 0px;
	margin-left: 0px;
	padding: 0px;
	margin-top: 0px;
}
	
.footer {
    text-align: left;
}

.footer a:hover {
    color: #FFFFFF;
}

	
.text-center {
	text-align: left;
}
.text-center2 {
	text-align: center;
}	
	
	
	
	

.hide-tabletsm-mobile {
	display: none;
}
	
.columns2-enquiry {
    text-align: left;
    width: 100%;
    margin-top: 20px;
}
	
.columns2.form {
    margin-bottom: 15px;
}
	
	
	
	
.form_text {

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

.form_select {

}
    
.columns2_form {
    width: 100%;
    margin-right: 0%;
	margin-bottom: 15px;
}

.columns2_form.last {
    width: 100%;
}    
	

	
	
	
	
}	
	


    
 @media only screen and (max-width: 481px) {
**MOBILE** {
}
/* Mobile Layout: 480px and below. */
 

	 
	 

.gridContainer {
	width: 84%;
	clear: none;
	float: none;
	padding-top: 0%;
	padding-right: 8%;
	padding-bottom: 0%;
	padding-left: 8%;
}
.gridContainerMobile {
	width: 100%;
	padding: 0px;
}
	 
.intro-home {
    width: 100%;
    margin-left: 0%;
    margin-right: 0%;
    font-size: 24px;
    line-height: 28px;
}		 
	 
	

.content {
	width: 100%;
	padding: 0%;
	margin: 0px;
}
     
     
.content_intro {
	width: 100%;
	padding: 0%;
	margin: 0px;
}     
     
     
     
     
.columns-wrap {
	margin-bottom: 0px;
}
	 
	 
	 
	 
.columns2 {
    width: 100%;
    margin-top: 0px;
    margin-right: 0px;
    margin-left: 0px;
}
.columns2-center {
    width: 100%;
    margin-top: 0px;
    margin-right: 0px;
    margin-left: 0px;
    text-align: center;
}

.columns3 {
    clear: none;
    width: 100%;
}
	 
	 
.columns3-services {
    width: 100%;
    margin-right: 0%;
    margin-left: 0%;
    min-height: 0px;
    margin-bottom: 40px;
}

.columns3-services.last {
    width: 100%;
    margin-right: 0%;
    margin-left: 0%;
}		 
	 

	 

	 
	 
	 
.columns4 {
    clear: none;
    width: 100%;
    margin-right: 0%;
    padding: 0px;
    margin-top: 0px;
    margin-left: 0px;
    margin-bottom: 40px;
}
.columns4.last {
    clear: none;
    width: 100%;
    margin-right: 0%;
}

.header-unit {
	height: 250px;
}
#video-container {
	display: none;
}

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