@charset "utf-8";

body {
    font-family: Inter, sans-serif;
    color: #3d3d3d;
    background-color: #1a1a1a;
    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, video {
	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;
	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.8;
	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;
}




.fadeIn {
	animation-name: fadeIn;
	-webkit-animation-name: fadeIn;
	animation-duration: 1.1s;
	-webkit-animation-duration: 1.5s;
	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;
}
}




.video-container {
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
	border-top-width: 2px;
	border-right-width: 4px;
	border-bottom-width: 2px;
	border-left-width: 4px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	border-top-color: #000000;
	border-right-color: #000000;
	border-bottom-color: #000000;
	border-left-color: #000000;
}
 
.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: #FFF;
}


.black {
	background-color: #3d3d3d;
}
.yellow {
    background-color: #FCC049;
}
.green {
	background-color: #B7CD2C;
}
.greenmid {
    background-color: #6AB2A0;
}

.greendk {
    background-color: #16392B;
}


.grey {
	background-color: #3D3D3F;
}

.greylt {
	background-color: #F1F1F1;
}
.greylt2 {
	background-color: #e6e6e6;
}





.text-white {
	color: #FFF;
}



.link-white {
	color: #FFF;
	text-decoration: none;
}



.link-white:hover {
	color: #333;
	text-decoration: none;
}


.link-green {
	color: #B7CD2C;
	text-decoration: none;
}

.link-green:hover {
	color: #B7CD2C;
	text-decoration: none;
}



.link-button-outline {
    color: #FFF;
    text-decoration: none;
    display: inline-block;
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
    border-radius: 30px;
    font-size: 20px;
    line-height: 24px;
    font-weight: 600;
    padding-top: 12px;
    padding-right: 18px;
    padding-bottom: 12px;
    padding-left: 18px;
    border: 2px solid #FFF;
}
.link-button-outline:hover {
	color: #3d3d3d;
	background-color: #FFF;
}


.link-button-green2 {
	color: #B7CD2C;
	text-decoration: none;
	display: inline-block;
	-moz-border-radius: 30px;
    -webkit-border-radius: 30px;
    border-radius: 30px;
	font-size: 16px;
	line-height: 19px;
	font-weight: 600;
	padding-top: 15px;
	padding-right: 20px;
	padding-bottom: 15px;
	padding-left: 20px;
	border: 2px solid #B7CD2C;
	text-transform: uppercase;
}
.link-button-green2:hover {
	color: #ffffff;
	border-top-color: #849824;
	border-right-color: #849824;
	border-bottom-color: #849824;
	border-left-color: #849824;
	color: #ffffff;
    background-color: #849824;
}
.link-button-yellow {
    color: #3d3d3d;
    text-decoration: none;
    display: inline-block;
    -moz-border-radius: 30px;
    -webkit-border-radius: 30px;
    border-radius: 30px;
    font-size: 20px;
    line-height: 24px;
    font-weight: 600;
    padding-top: 15px;
    padding-right: 25px;
    padding-bottom: 15px;
    padding-left: 25px;
    background-color: #FCC049;
}
.link-button-yellow:hover {
    color: #ffffff;
    background-color: #333333;
}


.link-button-white {
    color: #849824;
    text-decoration: none;
    display: inline-block;
    -moz-border-radius: 30px;
    -webkit-border-radius: 30px;
    border-radius: 30px;
    font-size: 20px;
    line-height: 24px;
    font-weight: 600;
    padding-top: 15px;
    padding-right: 25px;
    padding-bottom: 15px;
    padding-left: 25px;
    background-color: #ffffff;
}
.link-button-white:hover {
   color: #ffffff;
    background-color: #849824;
}

*::-webkit-input-placeholder {
    color: #666;
}
*:-moz-placeholder {
    /* FF 4-18 */
    color: #666;
}
*::-moz-placeholder {
    /* FF 19+ */
    color: #666;
}
*:-ms-input-placeholder {
    /* IE 10+ */
    color: #666;
}




.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;
}
.img-right {
	float: right;
	margin-bottom: 15px;
	margin-left: 15px;
}


.test {
	background-image: url(/images/banners-images/02.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	margin-right: auto;
	margin-left: auto;
	background-color: #666;
	background-attachment: fixed;
}


.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(252,192,73,0.6);
}
.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;
}









** DESKTOP ** {
}
h1 {
    font-size: 38px;
    font-weight: 700;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 30px;
    margin-left: 0px;
    padding: 0px;
    line-height: 42px;
    letter-spacing: -1px;
    text-transform: none;
}
h2, h3 {
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
    color: #6AB2A0;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 0px;
    margin-top: 0px;
}

h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    padding: 0px;
    margin-top: 0px;
    margin-right: 0px;
    margin-left: 0px;
    line-height: 28px;
}
h5 {
    font-size: 18px;
    margin-bottom: 20px;
    padding: 0px;
    line-height: 22px;
    font-weight: 600;
}
h6 {
    font-size: 16px;
    font-weight: 400;
    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: 1200px;
	margin: auto;
	clear: none;
	float: none;
	padding-top: 0%;
	padding-right: 2%;
	padding-bottom: 0%;
	padding-left: 2%;
}
.gridContainerMobile {
	width: 96%;
	max-width: 1200px;
	margin: auto;
	clear: none;
	float: none;
	padding-top: 0%;
	padding-right: 2%;
	padding-bottom: 0%;
	padding-left: 2%;
}


.container_header {
    width: 100%;
    margin: 0px;
    background-color: #1a1a1a;
    z-index: 100;
	height: 90px;
    padding-top: 13px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
    position: fixed;
    top: 0px;
    left: 0px;
}


.container_footer {
	width: 100%;
}


.container {
    width: 100%;
    padding-top: 80px;
    padding-bottom: 80px;
}
.container_foreword {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 100px;
    background-color: #6AB2A0;
    z-index: 900;
    margin-top: -69px;
    font-size: 20px;
    line-height: 28px;
}





.container_banner {
    width: 100%;
    font-size: 16px;
    line-height: 22px;
    min-height: 600px;
    background-color: #1a1a1a;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center bottom;
    padding-top: 0px;
    margin-top: 90px;
    background-image: url(/images/hero-bgd.jpg);
    padding-bottom: 0px;
}


.banner-content {
    float: left;
    width: 100%;
    padding-top: 40px;
    text-align: center;
    padding-bottom: 0px;
    margin-top: 30px;
}




.banner-left {
    width: 50%;
    margin-right: 0%;
    clear: none;
    float: left;
    margin-right: 5%;
    text-align: left;
    padding-top: 0%;
    padding-right: 0%;
    padding-bottom: 0%;
    padding-left: 0%;
    margin-top: 0px;
}


.banner-left h3 {
    font-size: 15px;
    line-height: 20px;
    font-weight: 400;
    color: #6AB2A0;
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: 0px;
}
.banner-left h1 {
    font-size: 28px;
    line-height: 34px;
    font-weight: 400;
    color: #FFFFFF;
    margin-bottom: 20px;
    margin-top: 0px;
    letter-spacing: 0px;
}
.banner-left h5 {
    font-size: 28px;
    line-height: 34px;
    font-weight: 700;
    color: #6AB2A0;
    margin-bottom: 30px;
    margin-top: 0px;
}

.banner-left.span {
    color: #6AB2A0;
    margin-top: 20px;

}

.banner-right {
    width: 45%;
    padding-right: 0%;
    clear: none;
    float: left;
    text-align: center;
    height: auto;
}



.content {
	width: 100%;
	float: left;
}

.intro {
    font-size: 24px;
    line-height: 32px;
    display: block;
    margin-bottom: 0px;
    font-weight: 400;
}




.columns-wrap {
    width: 100%;
    float: left;
    margin-bottom: 45px;
}
.columns-wrap.zerobm {
    margin-bottom: 0px;
}



.columns1 {
	width: 100%;
	float: left;
}


.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;
    float: left;
    margin-bottom: 0px;
}


.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;
}


.columns2 li {
    clear: none;
    margin-left: -15px;
    list-style-image: url(/images/bullet-arrow.png);
    margin-bottom: 12px;
}
.columns2 ul {
    margin-bottom: 30px;
}


.columns2-wide {
  width: 25%;
    clear: none;
    float: left; 
	margin-right: 5%;
}



.columns2-wide-sidebar {
    width: 70%;
    clear: none;
    padding: 0%;
    float: left;
}



.container_nopad {
    width: 100%;
    padding-top: 0px;
    padding-bottom: 0px;
}


.columns-table {
    display: table;
    width: 100%;
    padding: 0px;
    margin-top: 0px;
    margin-right: 0px;
    margin-left: 0px;
}



.columns2-table-cell-photo {
    display: table-cell;
    position: relative;
    width: 38%;
    vertical-align: top;
    padding-top: 6%;
    padding-right: 6%;
    padding-bottom: 6%;
    padding-left: 6%;
    height: 100%;
    min-height: 400px;
    background-position: center center;
}
.columns2-table-cell-photo.left {
    float: left;
}
.columns2-table-cell-photo.right {
    float: right;
    background-size: cover;
    background-repeat: no-repeat;
}




.footer {
    width: 100%;
    color: #FFFFFF;
    float: left;
    font-size: 16px;
    line-height: 19px;
    font-weight: 300;
}



.footer a {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 400;
}
.footer a:hover {
	color: #FFFFFF;
	text-decoration: none;
}



.text-center {
    text-align: center;
}

.text-center2 {
	text-align: center;
}



.hide-mobile {
    display: inline-block;
}
.hide-tablet {
	display: block;
}

.hide-desktop {
	display: none;
}

.hide-tablet-mobile {
	display: inline-block;
}
.hide-tabletsm-mobile {
	display: inline-block;
}





/* Tablet Layout: 1120px to 481px. Inherits styles from: Desktop Layout. */

@media only screen and (max-width: 1200px) {






** TABLET ** {
}

h1 {
    font-size: 36px;
    line-height: 40px;
    color: #FF0004;
}
h2, h3 {


}

h4 {
	font-size: 22px;
	line-height: 26px;
}
h5 {
    font-size: 18px;
    line-height: 22px;
}
h6 {
    margin-top: 0px;
    padding-top: 0px;
}

.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;
}
	
.container_header {
    position: relative;
}	
	

.container_banner {
    margin-top: 0px;
	padding-top: 60px;
	padding-bottom: 60px;
}	
	
	
.banner-content {
    float: left;
    width: 100%;
    margin-top: 0px;
    padding-top: 0px;
}
	
.banner-left h1 {
    font-size: 24px;
    line-height: 28px;
}
.banner-left h5 {
    font-size: 24px;
    line-height: 28px;
}	
	

	
.columns2-table-cell-photo {
   min-height: 600px;
}		
	
	
	
.container_foreword {
    width: 100%;
    padding-top: 60px;
    padding-bottom: 60px;
    background-color: #6AB2A0;
    z-index: 900;
    margin-top: 0px;
}	


.container {
    padding-top: 60px;
    padding-bottom: 60px;

}

.hide-desktop {
	display: none;
}
	
.hide-tablet {
	display: none;
}

.hide-tablet-mobile {
	display: none;
}
	
.hide-tabletsm-mobile {
	display: inline-block;
}	





}








@media only screen and (max-width: 700px) {

** TABLET SMALL ** {
}


h1 {
    font-size: 34px;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 30px;
    margin-left: 0px;
    padding: 0px;
    line-height: 38px;
    letter-spacing: -1px;
    text-transform: none;
    color: #0074FF;
}
h2, h3 {

}

h4 {

}
h5 {
    margin: 0px;
    padding: 0px;
}
h6 {
    padding: 0px;
    margin-top: 0px;
    margin-right: 0px;
    margin-left: 0px;
}

.gridContainer {
	width: 84%;
	padding-right: 8%;
	padding-left: 8%;
}
	
.container_header {
    padding-bottom: 0px;
    position: relative;
}

.container_banner {
    min-height: 550px;
    margin-top: 0px;
    padding-top: 30px;
    padding-bottom: 30px;
}	

	
.banner-content {
    float: left;
    width: 100%;
    padding-top: 0px;
    text-align: center;
}



.banner-left {
    width: 100%;
    margin-right: 0%;
    clear: none;
    float: left;
    margin-right: 0%;
    text-align: center;
    padding-top: 0%;
    padding-right: 0%;
    padding-bottom: 0%;
    padding-left: 0%;
    margin-bottom: 30px;
}

.banner-left h1 {
    font-size: 22px;
    line-height: 26px;
}
.banner-left h5 {
    font-size: 22px;
    line-height: 26px;
}	
	
	
.banner-right {
    width: 90%;
    padding-right: 5%;
    clear: none;
    float: left;
    text-align: center;
    padding-left: 5%;
}	
	


	
.columns-wrap {
    margin-bottom: 55px;
}	


.columns2 {
    width: 100%;
    margin-right: 0%;
    clear: none;
    padding: 0%;
    margin-bottom: 25px;
    margin-top: 0px;
    margin-left: 0px;
    display: block;
    float: left;
}

	
	
.columns2-enquiry {
    width: 100%;
    text-align: left;
}	


	
.columns2-table-cell-photo {
    display: table-cell;
    position: relative;
    width: 84%;
    padding-top: 6%;
    padding-right: 6%;
    padding-bottom: 6%;
    padding-left: 6%;
    height: 100%;
    min-height: 400px;
	background-size: cover;
}	
	
	
.columns2-table-cell-photo.left {
    padding-top: 10%;
    padding-right: 8%;
    padding-bottom: 10%;
    padding-left: 8%;
    width: 84%;
    display: block;
}	
	
.columns2-table-cell-photo.right {
    width: 100%;
    display: block;
}	


.columns2-wide {
	width: 100%;
	margin-right: 0px;
	margin-bottom: 40px;
}

.columns2-wide-sidebar {
	width: 100%;
	margin: 0px;
}
	

	
.text-center {
	text-align: left;
}

.hide-desktop {
	display: block;
}
	
.hide-tabletsm-mobile {
	display: none;
}	
	



}




@media only screen and (max-width: 481px) {

** MOBILE ** {
}


/* Mobile Layout: 480px and below. */
  
h1 {
    color: #02FF00;
}

h2, h3 {

}

h4 {
    font-size: 20px;
    line-height: 24px;

}
h5 {

}
h6 {

}

.gridContainer {
	width: 84%;
	padding-right: 8%;
	padding-left: 8%;
}
	
	
.gridContainerMobile {
	width: 100%;
	padding: 0px;
}
	
	
.container_header {
    padding-bottom: 0px;
    position: relative;
	padding-top: 13px;
	height: 80px;
}
	
	
.container_banner {
    min-height: 550px;
    padding-top: 50px;
    padding-bottom: 50px;
    background-image: url(/images/hero-bgd-mob.jpg);
    background-size: initial;
    background-position: center top;
}	
	
	
.banner-left {
   margin-bottom: 50px;
}

	
.banner-right {
}		



.container {
	padding-top: 50px;
	padding-bottom: 50px;
}



.content {
	width: 100%;
	padding: 0%;
	margin: 0px;
}




.columns2 {
    width: 100%;
    margin-top: 0px;
    margin-right: 0px;
    margin-left: 0px;
}



.hide-mobile {
	display: none;
}
.hide-tablet {
	display: block;
}

.hide-desktop {
    display: inline-block;
}

.hide-tablet-mobile {
	display: none;
}

	
.hide-tabletsm-mobile {
	display: none;
}	



}
