@charset "UTF-8";

/* CSS Document */


/***************************************************************************/


/***************************** GENERAL STYLES *******************************/


/***************************************************************************/

.wrapper {
	max-width: 2000px;
	width: 100%;
	margin: 0px auto;
	padding: 0px 0px;
	position: relative;
	text-align: center;
	display: block;
	z-index: 1;
}

.innerWrapper{
	max-width: 1200px;
	width: 100%;
	margin: 0px auto;
	padding: 0px 0px;
	position: relative;
	text-align: center;
	display: block;
	z-index: 1;
}

.section {
	padding: 60px 0px;
	position: relative;
	margin-top: 10px;
	background: #fff;
}

.section + .section{
	padding-top: 0;
	margin: 0;
}

.breadcrumb + .section{
	margin: 0;
}


.section.grey + .section,.section + .section.grey{
	padding-top:60px;
}

.col-1-4 {
	width: 23%;
	margin: 1%;
	position: relative;
	display: inline-block;
	vertical-align: top;
}
.col-3-4 {
	width: 73%;
	margin: 1%;
	position: relative;
	display: inline-block;
	vertical-align: top;
}
.col-1-3 {
	width: 31.333%;
	margin: 1%;
	position: relative;
	display: inline-block;
	vertical-align: top;
}
.col-2-3 {
	width: 64.66%;
	margin: 1%;
	position: relative;
	display: inline-block;
	vertical-align: top;
}
.col-1-2 {
	width: 48%;
	margin: 1%;
	position: relative;
	display: inline-block;
	vertical-align: top;
}
.col-1-5 {
	width: 18%;
	margin: 1%;
	position: relative;
	display: inline-block;
	vertical-align: top;
}
.col-2-5 {
	width: 38%;
	margin: 1%;
	position: relative;
	display: inline-block;
	vertical-align: top;
}
.col-3-5 {
	width: 58%;
	margin: 1%;
	position: relative;
	display: inline-block;
	vertical-align: top;
}
.col-4-5 {
	width: 78%;
	margin: 1%;
	position: relative;
	display: inline-block;
	vertical-align: top;
}
.col-1-10 {
	width: 8%;
	margin: 1%;
	position: relative;
	display: inline-block;
	vertical-align: top;
}
.col-9-10 {
	width: 88%;
	margin: 1%;
	position: relative;
	display: inline-block;
	vertical-align: top;
}
.col-1 {
	margin: 1%;
	width: 98%;
	position: relative;
	display: inline-block;
	vertical-align: top;
}
.col-1-6 {
	width: 14.66%;
	margin: 1%;
	position: relative;
	display: inline-block;
	vertical-align: top;
}
.col-1-7 {
	width: 12%;
	margin: 1%;
	position: relative;
	display: inline-block;
	vertical-align: top;
}
.col-1-10 img, .col-1-4 img, .col-1-2 img, .col-1-3 img, .col-1-5 img, .col-1 img {
	width: 100%;
	height: auto;
	margin: 0px;
	display: block;
	padding: 0px;
}
.vertical {
	vertical-align: middle;
}
.bottom {
	vertical-align: bottom;
}
.parallax-window img {
	width: 100%;
	height: 100%;
	margin: 0px;
	display: block;
	padding: 0px;
}
.center {
	text-align: center;
}
.grey {
	background: #f2f2f2;
}
.navy {
	background: #2a2247;
}

.green{
	background: #8bbf4a;
}

.blue{
	background: #176daf;
}

.brown{
	background: #664729;
}

.white{
	background: #fff;
}

.navy *,.green *,.blue *,.brown *{
	color: #fff;
}


.video-container {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 0;
    height: 0;
    margin-top:30px;
    margin-bottom: 30px;
}

.wrapper .video-container,.innerWrapper .video-container{
	margin-top:0;
}

.video-container embed, .video-container iframe, .video-container object {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

body{
	padding: 10px;
	background: rgba(91,88,91,.05);
}


.animatedElement{
	opacity: 0.2;
	-webkit-transform: translateY(60px);
	    -ms-transform: translateY(60px);
	        transform: translateY(60px);
	-webkit-transition: all ease 0.8s;
	-o-transition: all ease 0.8s;
	transition: all ease 0.8s;
}

.animatedElement.visible{
	opacity: 1;
	-webkit-transform: translateY(0px);
	    -ms-transform: translateY(0px);
	        transform: translateY(0px);
	-webkit-transition: all ease 0.8s;
	-o-transition: all ease 0.8s;
	transition: all ease 0.8s;
}

.containText{
	padding: 0 20px;
}

/***************************************************************************/


/***************************** HEADER STYLES *******************************/


/***************************************************************************/

header{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    margin: 10px 10px 0;
    z-index: 400;	
    background: #f2f2f2;
    -webkit-transition: all ease 0.8s;	
    -o-transition: all ease 0.8s;	
    transition: all ease 0.8s;
}

header.active{
	background: #5b575b;
	-webkit-transition: all ease 0.8s;
	-o-transition: all ease 0.8s;
	transition: all ease 0.8s;
}

header.stuck{
    -webkit-box-shadow: 0px 0px 5px 0px rgb(0 0 0 / 40%);
    box-shadow: 0px 0px 5px 0px rgb(0 0 0 / 40%);
    margin: 0;
    padding-bottom: 10px;
	-webkit-transition: all ease 0.8s;
	-o-transition: all ease 0.8s;
	transition: all ease 0.8s;
}

header .logo{
    display: block;
    max-width: 200px;
    position: relative;
    z-index: 1;
}

header.stuck .logo{
	max-width: 140px;
	-webkit-transition: all ease 0.8s;
	-o-transition: all ease 0.8s;
	transition: all ease 0.8s;
}

header .menu{
    padding: 0;
    margin: 0;
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
}

header .menu li{
    padding: 0;
    list-style: none;
    margin: 0;
    display: inline-block;
    vertical-align: middle;
    margin-right: 20px;
    position: relative;
}

header .menu li:last-child{
	margin: 0;
}

header .menu li a{
    display: block;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 16px;
    line-height: 24px;
    padding: 10px 0;
    -webkit-transition: all ease 0.6s;
    -o-transition: all ease 0.6s;
    transition: all ease 0.6s;
}

header .menu li a.active{
	color: #8bbf4a;
	-webkit-transition: all ease 0.6s;
	-o-transition: all ease 0.6s;
	transition: all ease 0.6s;
}

@media only screen and (min-width: 1000px){
	header .menu li a:hover{
		color: #8bbf4a;
		-webkit-transition: all ease 0.6s;
		-o-transition: all ease 0.6s;
		transition: all ease 0.6s;
	}
}

header .menu li ul{
    margin: 0;
    padding: 10px 20px;
    position: absolute;
    width: 400px;
    background: rgba(91,88,91,0.97);
    display: none;
}

header .menu li ul li{
    display: block;
    margin: 0;	
}

header .menu li ul li a{
    color: #fff;	
    font-size: 14px;
    line-height: 22px;
}

@-webkit-keyframes fade-in {
  from { 
    opacity: 0; 
  }
  to { 
    opacity: 1; 
  }
}

@keyframes fade-in {
  from { 
    opacity: 0; 
  }
  to { 
    opacity: 1; 
  }
}
@media only screen and (min-width:1000px){
	header .menu li:hover ul{
		display: block;
    	-webkit-animation: fade-in 1s;
        animation: fade-in 1s;
	}

	header .menu li:hover a{
		color: #8bbf4a;
		-webkit-transition: all ease 0.6s;
		-o-transition: all ease 0.6s;
		transition: all ease 0.6s;
	}

	header .menu li:hover li a{
		color:#fff;
		-webkit-transition: all ease 0.6s;
		-o-transition: all ease 0.6s;
		transition: all ease 0.6s;
	}

	header .menu li li a:hover{
		color: #8bbf4a;
		-webkit-transition: all ease 0.6s;
		-o-transition: all ease 0.6s;
		transition: all ease 0.6s;
	}
}

/************** MOBILE NAV STYLES ***************/

.mobileHeader{
	display: none;
	height: 50px;
    width: 50px;
    position: absolute;
    right: 20px;
    top: 50%;
    top: calc(50% - 25px);
    cursor: pointer;
    z-index: 2;
}

.mobileHeader:before{
	content: "";
    background: #5b575b;
    height: 10px;
    width: 10px;
    display: block;
    border-radius: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    -webkit-transition: all ease 0.8s;
    -o-transition: all ease 0.8s;
    transition: all ease 0.8s;
}

.mobileHeader .line{
    position: absolute;
    width: 10px;
    height: 50px;
    top: 50%;
    left: 50%;
    top: calc(50% - 25px);
    left: calc(50% - 5px);
    -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
            transform: rotate(-45deg);
    -webkit-transition: all ease 0.8s;
    -o-transition: all ease 0.8s;
    transition: all ease 0.8s;
}

.mobileHeader .line:before{
	content: "";
    background: #5b575b;
    height: 10px;
    width: 10px;
    display: block;
    border-radius: 100%;
        position: absolute;
    top: 0;
    left: 0;
    right: 0;
    -webkit-transition: all ease 0.8s;
    -o-transition: all ease 0.8s;
    transition: all ease 0.8s;
}

.mobileHeader .line:after{
	content: "";
    background: #5b575b;
    height: 10px;
    width: 10px;
    display: block;
    border-radius: 100%;
        position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    -webkit-transition: all ease 0.8s;
    -o-transition: all ease 0.8s;
    transition: all ease 0.8s;
}

.mobileHeader.active .line.two{
	-webkit-transform: rotate(45deg);
	    -ms-transform: rotate(45deg);
	        transform: rotate(45deg);
    -webkit-transition: all ease 0.8s;
    -o-transition: all ease 0.8s;
    transition: all ease 0.8s;
}

.mobileHeader.active .line:before,.mobileHeader.active .line:after,.mobileHeader.active:before{
	background: #fff;
    -webkit-transition: all ease 0.8s;
    -o-transition: all ease 0.8s;
    transition: all ease 0.8s;
}



.sidr {
	
	position: fixed;
	top: 93px;
    min-height: 100vh;
    min-height: calc(100vh - 93px);
	height: 100%;
	height: calc(100% - 93px);
	z-index: 9999999;
	width: 100%;
	overflow-x: none;
	overflow-y: auto;
	left: -100vw;
	background: #5b575b;
	color: #fff;

	-webkit-transition: all ease 0.6s;
	-o-transition: all ease 0.6s;
	transition: all ease 0.6s;
}

.sidr .main{
    height: 100vh;
    height: calc(100vh - 93px);
    padding: 30px;
    overflow: scroll;
}

.sidr .main .menu{
    padding: 0;
    margin: 0;
}

.sidr .main .menu li{
	padding:0;
	margin:0;
	list-style: none;
}

.sidr .main .menu li a{
	display: block;
	text-align: cleft;
	padding:10px 0;
	color: #fff;
	border-bottom: 1px solid rgba(255,255,255,0.6);
	position: relative;
}

.sidr .main .menu li a.parent:after{
    content: "\f078";
	font-weight: 900;
	font-family: "Font Awesome 5 Free";
	-moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    position: absolute;
    right: 0;
    top: 50%;
    top: calc(50% - 8px);
    color: rgba(255,255,255,0.6);
    -webkit-transition: all ease 0.6s;
    -o-transition: all ease 0.6s;
    transition: all ease 0.6s;
}

.sidr .main .menu li a.parent.turned:after{
	-webkit-transform: rotate(-90deg);
	    -ms-transform: rotate(-90deg);
	        transform: rotate(-90deg);
    -webkit-transition: all ease 0.6s;
    -o-transition: all ease 0.6s;
    transition: all ease 0.6s;
}

.sidr .main .menu li ul{
    margin: 0;
    display: none;
}


/*************************************************************************/


/***************************** MAIN STYLES *******************************/


/*************************************************************************/

.parallax-window {
	height: 400px;
	overflow: hidden;
	position: relative;
	background: transparent;
}
#map {
	height: 100%;
	width: 100%;
	top: 0;
	z-index: 2;
}




.button {
	display: inline-block;
	vertical-align: top;
    padding: 5px 30px;
    background: transparent;
    color: #000;
    border: 2px solid #000;
    border-radius: 25px;
    position: relative;
    cursor: pointer;
    text-align: center;
    -webkit-transition: all ease 0.6s;
    -o-transition: all ease 0.6s;
    transition: all ease 0.6s;
}

.green .button,.blue .button,.brown .button{
	border: 2px solid #fff;
	color: #fff;
	-webkit-transition: all ease 0.6s;
	-o-transition: all ease 0.6s;
	transition: all ease 0.6s;
}


@media only screen and (min-width:1000px){

	.button:hover{
		background: #fff;
		color:#000;
		-webkit-transition: all ease 0.6s;
		-o-transition: all ease 0.6s;
		transition: all ease 0.6s;
	}

	.green .button:hover,.blue .button:hover,.brown .button:hover{
		background: #fff;
		color: #000;
		-webkit-transition: all ease 0.6s;
		-o-transition: all ease 0.6s;
		transition: all ease 0.6s;
	}
	
}

/*************************************************************************/


/************************** Cookie Law STYLES ****************************/


/*************************************************************************/

#cookie-law{
	border-top: 1px solid #000;
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 400;
	background:#fff;
}

/*******************************************************************************/


/***************************** FLEXSLIDER STYLES *******************************/


/*******************************************************************************/


/********************** GENERIC FLEXSLIDER STYLES ***********************/

.flexslider {
	margin: 0px;
	padding: 0px;
	border: 0px;
	position: relative;
	overflow: hidden;
	background-color: transparent;
	border-radius: 0;
}
.flexslider .slides {
	margin: 0;
	padding: 0;
}
.flexslider .slides li {
	position: relative;
	display: block;
	padding: 0;
	margin: 0;
}
.flexslider .slides li img {
	width: 100%;
	display: block;
	height: auto;
}
.flexslider .flex-direction-nav a {
	width: 33px;
	height: 53px;
	top: 50%;
	top: calc(50% - 27.5px);
	opacity: 1;
	color: transparent;
	text-shadow: none;
}
.flexslider:hover .flex-direction-nav .flex-prev {
	opacity: 1;
	left: 20px;
}
.flexslider:hover .flex-direction-nav .flex-next {
	opacity: 1;
	right: 20px;
}
.flex-direction-nav {
	height: 0px;
}
.flex-direction-nav .flex-prev {
	left: -60px;
	background-repeat: no-repeat;
}
.flex-direction-nav .flex-next {
	right: -60px;
	text-align: right;
	background-repeat: no-repeat;
}

/********************** BASIC FLEXSLIDER STYLES ***********************/

.flexslider.basicSlider {
	width: 100%;
	border-radius: 0px;
	/*overflow: visible;*/
}
.flexslider.basicSlider.mainPage {
	margin-top: -50px;
}
.flexslider.basicSlider.testimonials {
	margin-top: 35px;
}
a.flex-active {
	background: #dc0622 !important;
}
.flex-direction-nav, .flex-direction-nav li {
	list-style: none;
	margin-bottom: 0;
}
.flex-control-nav {
	width: 100%;
	position: relative;
	bottom: -10px;
	margin-top: 30px;
	text-align: center;
}
.flex-control-paging li a {
	width: 15px;
	height: 15px;
	border: solid 1px rgba(0, 0, 0, 0.3);
	background: transparent;
	-webkit-box-shadow: none;
	        box-shadow: none;
}
.flexslider .flex-direction-nav a {
	width: 33px;
	height: 53px;
	top: 50%;
	top: calc(50% - 27.5px);
	opacity: 1;
	color: transparent;
	text-shadow: none;
}
.flex-direction-nav a.flex-prev:before {
	content: "\f053";
	    font-family: "Font Awesome 5 Free";
	        font-weight: 900;
	    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
	font-size: 90px;
	color: rgba(0, 0, 0, 0.6);
	margin-top: -22px;
}
.flex-direction-nav a.flex-next:before {
	content: "\f054";
	    font-family: "Font Awesome 5 Free";
	        font-weight: 900;
	-moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
	font-size: 90px;
	color: rgba(0, 0, 0, 0.6);
	margin-top: -22px;
}

/***************************************************************************/


/********************* ADDITIONAL FLEXSLIDER STYLES ************************/


/***************************************************************************/




/***************************************************************************/


/***************************** FOOTER STYLES *******************************/


/***************************************************************************/

footer{
	padding-bottom: 20px;
}

footer p,footer p a{
		font-size: 14px;
	line-height: 22px;
}

footer .noMarginTop{
	margin-top: 0;
}

footer .rightSide{
	padding-left: 40px;
}

footer .logo{
    display: block;
    max-width: 200px;
}

footer .footerLogos{
    padding: 0;
    margin: 0;
    margin-top: 40px;
    margin-bottom: -20px;
}

footer .footerLogos li{
    padding: 0;
    list-style: none;
    margin: 0;
    margin: 0 20px 20px 0;
    display: inline-block;
    vertical-align: middle;
}

footer .footerLogos li img{
	    height: 80px;
    max-width: 110px;
}

footer .footerLogos li:last-child{
	margin-right: 0;
}


footer .footerMenu{
    margin: 0;
    padding: 0;
}

footer .footerMenu li{
    padding: 0;
    list-style: none;
    margin-bottom: 10px;
}

footer .footerMenu li:last-child{
	margin: 0;
}

footer .footerMenu li a{
	display: block;
	font-size: 14px;
	line-height: 22px;
	-webkit-transition: all ease 0.6s;
	-o-transition: all ease 0.6s;
	transition: all ease 0.6s;
}

@media only screen and (min-width: 1000px){
	footer .footerMenu li a:hover{
		color: #8bbf4a;
	    -webkit-transition: all ease 0.6s;
	    -o-transition: all ease 0.6s;
	    transition: all ease 0.6s;	
	}
}

footer .socialList{
    margin: 0;
    padding: 0;
    font-size: 0;
    margin-bottom: 40px;
}

footer .socialList li{
    padding: 0;
    margin: 0;
    margin-right: 20px;
    list-style: none;
    display: inline-block;
    vertical-align: middle;
}

footer .socialList li:last-child{
	margin: 0;
}

footer .socialList li a{
    display: block;
    line-height: 1;
    -webkit-transition: all ease 0.6s;
    -o-transition: all ease 0.6s;
    transition: all ease 0.6s;
}

footer .socialList li a i{
    font-size: 22px;
    line-height: 30px;
    color: inherit;
}

@media only screen and (min-width: 1000px){
	footer .socialList li a:hover{
		color: #8bbf4a;
	    -webkit-transition: all ease 0.6s;
	    -o-transition: all ease 0.6s;
	    transition: all ease 0.6s;	
	}
}

/***************************************************************************/


/***************************** PAGE STYLES *******************************/


/***************************************************************************/


main{
    margin-top: 118.5px;
}

.formStyle {
    margin-bottom: 40px;
}

.formStyle .row{
	    font-size: 0;
	    margin-bottom: 2%;
}

.formStyle .row:last-of-type{
	margin:0;
}
.formStyle .row input{
	display: block;
	width:100%;
	background:#fff;
	height:50px;
	line-height: 50px;
	padding-left:10px;
	font-size: 16px;
	border: 1px	solid #8bbf4a;
	text-transform: none;
	-webkit-transition: all ease .4s;
    -o-transition: all ease .4s;
    transition: all ease .4s;
}


.formStyle .row textarea{
	padding:10px;
	background:#fff;
	border: 1px	solid #8bbf4a;
	    font-size: 16px;
	-webkit-box-shadow: none;
	        box-shadow: none;
}

.formStyle .row input[type="submit"]{
    display: inline-block;
    vertical-align: top;
    width: auto;
    line-height: 24px;
    height: auto;
    padding: 10px 30px;
}

@media only screen and (min-width:1000px){
	.formStyle .row input[type="submit"]:hover{
		background:#8bbf4a;
		color:#fff;
		-webkit-transition:all ease 0.4s;
		-o-transition:all ease 0.4s;
		transition:all ease 0.4s;
	}
}

.formStyle .errorMessage {
    display: none;
    border: 1px solid #cc0000;
    padding: 20px;
    margin-bottom:20px;
}


.formStyle .errorMessage p {
    color: #cc0000;
    margin: 0;
    -webkit-transition: all ease .4s;
    -o-transition: all ease .4s;
    transition: all ease .4s;
}


/***************************************************************************/


/*********************** HOMEPAGE BANNER STYLES *******************************/


/***************************************************************************/

.homepageBanner{
	background: #f2f2f2;
    min-height: 600px;
    height: 100vh;
    height: calc(100vh - 138.5px);
    position: relative;
        padding-top: 150px;
    overflow: hidden;
}

.homepageBanner .wrapper{
	height: 100%;
}

.homepageBanner .image{
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 1;
}

.homepageBanner .image img{
    -webkit-transform: translateY(100%) scale(0);
        -ms-transform: translateY(100%) scale(0);
            transform: translateY(100%) scale(0);
    opacity: 0;
    -webkit-transition: all ease 1.4s;
    -o-transition: all ease 1.4s;
    transition: all ease 1.4s;
}

.homepageBanner.visible .image img{
	opacity: 1;
    -webkit-transform: translateY(0%) scale(1);
        -ms-transform: translateY(0%) scale(1);
            transform: translateY(0%) scale(1);
    -webkit-transition: all ease 1.4s;
    -o-transition: all ease 1.4s;
    transition: all ease 1.4s;	
}

.scrollDown{
    display: block;
    z-index: 2;
    position: absolute;
    width: 20px;
    height: 30px;
    border: 2px solid #000;
    border-radius: 10px;
    bottom: 20px;
    left: 50%;
    left: calc(50% - 10px);
}

.scrollDown:before{
content: "";
    display: block;
    height: 5px;
    width: 5px;
    border-radius: 100%;
    background: #000;
    position: absolute;
    left: 50%;
    left: calc(50% - 2.5px);
    top: 2.5px;
    -webkit-transition: all ease 0.6s;
    -o-transition: all ease 0.6s;
    transition: all ease 0.6s;
}

@media only screen and (min-width: 1000px){
	.scrollDown:hover:before{
		top: calc(100% - 8px);
		-webkit-transition: all ease 0.6s;
		-o-transition: all ease 0.6s;
		transition: all ease 0.6s;
	}
}

/***************************************************************************/


/*********************** FULL WIDTH COLUMN STYLES *******************************/


/***************************************************************************/

.fullWidthColumn{
    margin-top: 10px;
    overflow: hidden;
}

.fullWidthColumn .wrapper{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}

.fullWidthColumn .column{

    text-align: center;
    display: inline-block;
    vertical-align: top;
    padding: 60px 40px;
    position: relative;
}



.fullWidthColumn.four .column{
    width: 25%;
}

.fullWidthColumn.three .column{
    width: 33.333%;
}

.fullWidthColumn .column *{
	text-align: center;
}

.fullWidthColumn .column .icon{
position: relative;
    z-index: 2;
    display: block;
    max-width: 100px;
    margin: 0 auto 20px;

}

.fullWidthColumn .column.visible .icon{
	    -webkit-animation: MoveIcon 4s ease 1;
            animation: MoveIcon 4s ease 1;
}

.fullWidthColumn .column .text{
	position: relative;
	z-index: 2;
}

.fullWidthColumn .column .text h4{
	text-transform: uppercase;
}


@-webkit-keyframes MoveIcon{
	0%{
		-webkit-transform: scale(1) rotate(0deg);
		transform: scale(1) rotate(0deg);
	}
	50%{
		-webkit-transform: scale(0.5) rotate(360deg);
		        transform: scale(0.5) rotate(360deg);
	}
	100%{
		-webkit-transform: scale(1) rotate(-360deg);
		        transform: scale(1) rotate(-360deg);
	}
}


@keyframes MoveIcon{
	0%{
		-webkit-transform: scale(1) rotate(0deg);
		transform: scale(1) rotate(0deg);
	}
	50%{
		-webkit-transform: scale(0.5) rotate(360deg);
		        transform: scale(0.5) rotate(360deg);
	}
	100%{
		-webkit-transform: scale(1) rotate(-360deg);
		        transform: scale(1) rotate(-360deg);
	}
}

/***************************************************************************/


/*********************** PAGE SLIDER STYLES *******************************/


/***************************************************************************/

.pageSlider{
	margin-top: 10px;
}

.pageSlider li .image{
    position: absolute;
    left: 0;
    right: 50%;
    top: 0;
    bottom: 0;
    background-size: cover;
    background-position: 50% 50%;
}

.pageSlider li .text{
	display: block;
    width: 50%;
    margin-left: 50%;
    padding: 200px 100px;
    text-align: center;
    min-height: 740px;
}

.pageSlider li .text h4{
	text-transform: uppercase;
}

.pageSlider li .text *{
	text-align: center;
}

.pageSlider .flex-control-nav{
    bottom: 40px;
    position: absolute;
    left: 50%;
    right: 0;
    margin: 0;
    z-index: 2;
    text-align: center;
    width: auto;
}

.pageSlider .flex-control-paging li a{
    border: 0;
    background: rgba(255,255,255,0.2);
    -webkit-transition: all ease 0.6s;
    -o-transition: all ease 0.6s;
    transition: all ease 0.6s;
}

.pageSlider .flex-control-paging li a.flex-active {
    border: 0;
    background: rgba(255,255,255,1) !important;
    -webkit-transition: all ease 0.6s;
    -o-transition: all ease 0.6s;
    transition: all ease 0.6s;
}

/***************************************************************************/


/*********************** ADDITIONAL STYLES *******************************/


/***************************************************************************/

.additionalSection{
	margin-top: 10px;
}

.additionalSection .additional{
    font-size: 0;
    background: #fff;
}

.additionalSection .additional .overview{
	display: inline-block;
    vertical-align: middle;
    width: 25%;
    padding: 20px;
}

.additionalSection .additional .overview *{
	text-align: center;
}

.additionalSection .additional .additionalSlider{
    display: inline-block;
    vertical-align: middle;
    width: 75%;
        margin: 0;
}

.additionalSlider .item{
    background: transparent;
    display: block;
    position: relative;
    padding: 50px 30px;
}

.additionalSlider .item:before{
	content: "";
	    content: "";
    height: 2000px;
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    top: calc(50% - 1000px);
    z-index: 0;
    -webkit-transition: all ease 0.6s;
    -o-transition: all ease 0.6s;
    transition: all ease 0.6s;
}

.additionalSlider .item.green:before{
	background: #8bbf4a;
}

.additionalSlider .item.blue:before{
	background: #176daf;
}

.additionalSlider .item.brown:before{
	background: #664729;
}

.additionalSlider .item .icon{
position: relative;
    z-index: 2;
    display: block;
    max-width: 60px;
    margin: 0 auto 20px;

}

.additionalSlider .slick-active .item .icon{
	    -webkit-animation: MoveIcon 4s ease 1;
            animation: MoveIcon 4s ease 1;
}

.additionalSlider .item .text{
	position: relative;
	z-index: 2;
	text-align: center;
}

.additionalSlider .item .text *{
	text-align: center;
}

.additionalSlider .item .text h4{
	text-transform: uppercase;
}

.additionalSlider .item .text p{
	font-size: 14px;
	line-height: 22px;
}

.link{
	text-transform: uppercase;
}

.link:after{
    content: ">";
    font-size: inherit;
    line-height: inherit;
    font-family: inherit;
    font-weight: inherit;
    margin-left: 10px;
    -webkit-transition: all ease 0.6s;
    -o-transition: all ease 0.6s;
    transition: all ease 0.6s;
}

.link.back{
	margin-top: 40px;
}

.link.back:before{
    content: "<";
    font-size: inherit;
    line-height: inherit;
    font-family: inherit;
    font-weight: inherit;
    margin-right: 10px;
    -webkit-transition: all ease 0.6s;
    -o-transition: all ease 0.6s;
    transition: all ease 0.6s;
}

.link.back:after{
	display: none;
}

@media only screen and (min-width: 1000px){

	.additionalSlider .item:hover:before{
		left: -20px;
		right: -20px;
		-webkit-transition: all ease 0.6s;
		-o-transition: all ease 0.6s;
		transition: all ease 0.6s;
	}

	.additionalSlider .item:hover .link:after{
		margin-left: 20px;
		-webkit-transition: all ease 0.6s;
		-o-transition: all ease 0.6s;
		transition: all ease 0.6s;
	}

	.link:hover:after{
		margin-left: 20px;
		-webkit-transition: all ease 0.6s;
		-o-transition: all ease 0.6s;
		transition: all ease 0.6s;
	}

	.link.back:hover:before{
		margin-right: 20px;
		-webkit-transition: all ease 0.6s;
		-o-transition: all ease 0.6s;
		transition: all ease 0.6s;
	}
}

.additionalSlider .slick-dots{
bottom: 40px;
    line-height: 1;
    width: 33.333%;
    left: -33.333%;
}

.additionalSlider .slick-dots li{
    height: auto;
    width: auto;
    vertical-align: middle;
}

.additionalSlider .slick-dots li button{
    background: rgba(0,0,0,0.4);
    border: 1px solid transparent;
    border-radius: 100%;
    width: 10px;
    height: 10px;
    -webkit-transition: all ease 0.6s;
    -o-transition: all ease 0.6s;
    transition: all ease 0.6s;
}

.additionalSlider .slick-dots li.slick-active button{
    border: 1px solid #000;
    height: 20px;
    width: 20px;
    background: #fff;
    -webkit-transition: all ease 0.6s;
    -o-transition: all ease 0.6s;
    transition: all ease 0.6s;
}

.additionalSlider .slick-dots li button:before{
	display: none;
}

/***************************************************************************/


/*********************** CLIENT SLIDER STYLES *******************************/


/***************************************************************************/

.clientSlider{
	margin: 50px auto 0;
	max-width: 1000px;
	width: 100%;
}

.clientSlider .item{
	display: block;
	margin: 0 10px;
}

.clientSlider .item img{
	margin: 0 auto;
}

.clientSlider .slide {
	height: 150px;
	position: relative;
}
.clientSlider .item {
	position: absolute;
	width: 82%;
	text-align: center;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	left: 9%;
}

/***************************************************************************/


/*********************** GRID STYLES *******************************/


/***************************************************************************/

.grid{
	margin: 10px 0 0;
    padding: 0;
    font-size: 0;
}


.grid li{
	margin: 0;
    padding: 0;
    position: relative;
    list-style: none;
    display: inline-block;
    vertical-align: top;
    width: 50%;
}

.grid li .image{
    position: absolute;
    left: 0;
    right: 50%;
    top: 0;
    bottom: 0;
    background-size: cover;
    background-position: 50% 50%;
}

.grid li:nth-child(3) .image,.grid li:nth-child(4) .image{
	left: 50%;
	right: 0;
}

.grid li .text{
    display: block;
    width: 50%;
    padding: 80px 20px;
    margin-left: 50%;
    text-align: center;
    position: relative;
    -webkit-transition: all ease 0.6s;
    -o-transition: all ease 0.6s;
    transition: all ease 0.6s;
}

.grid li .text *{
	text-align: center;
}

.grid li .text:before{
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 25px 20px 25px 0;
    position: absolute;
    left: -20px;
    top: 50%;
    top: calc(50% - 25px);
}

.grid li .text.green:before{
	border-color: transparent #8bbf4a transparent transparent;
}

.grid li .text.blue:before{
	border-color: transparent #176daf transparent transparent;
}

.grid li .text.white:before{
	border-color: transparent #fff transparent transparent;
}

.grid li .text.brown:before{
	border-color: transparent #664729 transparent transparent;
}

.grid li:nth-child(3) .text,.grid li:nth-child(4) .text{
	margin-left: 0;
    margin-right: 50%;
}

.grid li:nth-child(3) .text:before,.grid li:nth-child(4) .text:before{
    left: auto;
    right: -20px;
    -webkit-transform: scaleX(-1);
        -ms-transform: scaleX(-1);
            transform: scaleX(-1);
}

.grid li .text span{
	text-transform: uppercase;
	letter-spacing: 1px;
	display: block;
	margin-bottom: 20px;
}

.grid li .text h4{
	text-transform: uppercase;	
	min-height: 52px;
}

.grid li .text p{
	min-height: 96px;
}

.grid li .text span.link{
	letter-spacing: 0px;
	display: inline-block;
	margin: auto;
}

@media only screen and (min-width: 1000px){
	.grid li .text:hover .link:after{
		margin-left: 20px;
		-webkit-transition: all ease 0.6s;
		-o-transition: all ease 0.6s;
		transition: all ease 0.6s;
	}

	.grid li .text:hover{
		margin-left: 40%;
		width: 60%;
		-webkit-transition: all ease 0.6s;
		-o-transition: all ease 0.6s;
		transition: all ease 0.6s;
		padding-left: calc(40px + 5%);
		padding-right: calc(40px + 5%);
	}

	.grid li:nth-child(3) .text:hover,.grid li:nth-child(4) .text:hover{
		margin-left: auto;
		margin-right: 40%;
		width: 60%;
		-webkit-transition: all ease 0.6s;
		-o-transition: all ease 0.6s;
		transition: all ease 0.6s;
	}
}

/***************************************************************************/


/*********************** TESTIMONIAL STYLES *******************************/


/***************************************************************************/

.testimonialSlider{
    margin: 40px auto 0;
    max-width: 800px;
    width: 100%;
}

.testimonialSlider .slides li *{
	text-align: center;
}

.testimonialSlider .flex-control-nav{
       bottom: auto;
    margin-top: 40px;
    z-index: 2;
    text-align: center;
    width: auto;
}

.testimonialSlider .flex-control-paging li{
	vertical-align: middle;
	-webkit-transition: all ease 0.6s;-o-transition: all ease 0.6s;transition: all ease 0.6s;
}

.testimonialSlider .flex-control-paging li a{
    background: rgba(0,0,0,0.4);
    border: 1px solid transparent;
    border-radius: 100%;
    width: 10px;
    height: 10px;
    -webkit-transition: all ease 0.6s;
    -o-transition: all ease 0.6s;
    transition: all ease 0.6s;
}

.testimonialSlider .flex-control-paging li a.flex-active {
    border: 1px solid #000;
    height: 20px;
    width: 20px;
    background: rgba(0,0,0,0) !important;
    -webkit-transition: all ease 0.6s;
    -o-transition: all ease 0.6s;
    transition: all ease 0.6s;
}

/***************************************************************************/


/********************* TEXT IMAGE SPLIT STYLES *****************************/


/***************************************************************************/

.textImageSplit{
    max-width: 2000px;
    width: 100%;
    margin: 10px auto 0;
    display: block;
    position: relative;
    font-size: 0;
}

.textImageSplit .image{
    position: absolute;
    left: 0;
    right: 50%;
    top: 0;
    bottom: 0;
    background-size: cover;
    background-position: 50% 50%;
}

.textImageSplit.imageRight .image{
	left: auto;
	right: 50%;
}

.textImageSplit .text{
    display: block;
    width: 50%;
    margin-left: 50%;
    padding: 175px 50px;
    text-align: center;
}

.textImageSplit.imageRight .text{
	margin: 0;
}

.textImageSplit .text .textHolder{
    display: inline-block;
    vertical-align: top;
    max-width: 600px;
    width: 100%;
        text-align: center;
}

.textImageSplit .text .textHolder *{
    text-align: left;
}

/***************************************************************************/


/*********************** ABOUT HOLDER STYLES *******************************/


/***************************************************************************/

.aboutHolder{
	position: relative;
	overflow: hidden;
}

.aboutHolder:before{
    content: "";
    background-image: url(../images/content/about/bg.png);
    background-position: bottom right;
    background-size: auto;
    background-repeat: no-repeat;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    z-index: 1;
    opacity: 0.2;
    -webkit-transform: translateY(100%) scaleY(0);
        -ms-transform: translateY(100%) scaleY(0);
            transform: translateY(100%) scaleY(0);
    -webkit-transition: all ease 3s;
    -o-transition: all ease 3s;
    transition: all ease 3s;
}

.aboutHolder.visible:before{
	opacity: 1;
    -webkit-transform: translateY(0%) scaleY(1);
        -ms-transform: translateY(0%) scaleY(1);
            transform: translateY(0%) scaleY(1);
    -webkit-transition: all ease 3s;
    -o-transition: all ease 3s;
    transition: all ease 3s;	
}

.aboutHolder .section{
	padding: 80px 0;
	position: relative;
}
.aboutHolder .section + .section{
	padding: 180px 0;
	position: relative;
}

.aboutHolder .section:first-child:after{
    content: "";
    background: #f6f6f6;
    height: 10px;
    position: absolute;
    left: 0;
    right: 0;
    z-index: 2;
    bottom: -5px;
}

.aboutHolder .wrapper{
	text-align: left;
}

.aboutHolder .section:last-child:after{
    content: "";
    background: #f6f6f6;
    width: 10px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    left: calc(50% - 5px);
}

/***************************************************************************/


/*********************** TEAM LIST STYLES *******************************/


/***************************************************************************/

.teamList{
    margin: 0;
    padding: 0;
    text-align: center;
    font-size: 0;
}

.teamList li{
    padding: 0;
    margin: 1%;
    list-style: none;
    display: inline-block;
    vertical-align: top;
    width: 31.333%;
}


.teamList li a{
    display: block;
    position: relative;
    background-position: 50% 50%;
    background-size: cover;
}

.teamList li a:before{
    content: "";
    display: block;
    padding-bottom: 100%;
}

.teamList li a .hoverContent{
    position: absolute;
    left: 30px;
    right: 30px;
    top: 30px;
    bottom: 30px;
    background: rgba(140,192,75,0.9);
    opacity: 0;
    -webkit-transition: all ease 0.6s;
    -o-transition: all ease 0.6s;
    transition: all ease 0.6s;
}

.teamList li a .hoverContent .text{
    position: absolute;
    left: 0;
    right: 0;
    padding: 40px;
    text-align: center;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
}

.teamList li a .hoverContent h3{
    margin: 0;
    text-align: center;
    color: #fff;
}

@media only screen and (min-width: 1000px){
	.teamList li a:hover .hoverContent{
		opacity: 1;
		-webkit-transition: all ease 0.6s;
		-o-transition: all ease 0.6s;
		transition: all ease 0.6s;
	}
}

/***************************************************************************/


/*********************** TEAM PAGE STYLES *******************************/


/***************************************************************************/

.teamPage h2{
	text-transform: uppercase;
	color: #8bbf4a;
}

.teamPageSlider{
    margin-right: 40px;
}

.teamPageSlider .flex-control-nav{
       bottom: auto;
    margin-top: 20px;
    z-index: 2;
    text-align: center;
    width: auto;
}

.teamPageSlider .flex-control-paging li{
	vertical-align: middle;
	-webkit-transition: all ease 0.6s;-o-transition: all ease 0.6s;transition: all ease 0.6s;
}

.teamPageSlider .flex-control-paging li a{
    background: rgba(0,0,0,0.4);
    border: 1px solid transparent;
    border-radius: 100%;
    width: 10px;
    height: 10px;
    -webkit-transition: all ease 0.6s;
    -o-transition: all ease 0.6s;
    transition: all ease 0.6s;
}

.teamPageSlider .flex-control-paging li a.flex-active {
    border: 1px solid #000;
    height: 20px;
    width: 20px;
    background: rgba(0,0,0,0) !important;
    -webkit-transition: all ease 0.6s;
    -o-transition: all ease 0.6s;
    transition: all ease 0.6s;
}

/***************************************************************************/


/*********************** DROPDOWNS STYLES *******************************/


/***************************************************************************/

.dropdownsHolder{
	z-index: 2;
}

.dropdowns{
    font-size: 0;
}

.dropdowns .dropdown{
    display: inline-block;
    vertical-align: top;
    width: 50%;
    width: calc(50% - 2.5px);
    position: relative;
    border-right: 2.5px solid #fff;
}

.dropdowns .dropdown:last-child{
	border-right: 0;
    border-left: 2.5px solid #fff;
}

.dropdowns .dropdown .trigger{
    background: #8bbf4a;
    display: block;
    padding: 10px;
    text-align: center;
    text-transform: uppercase;
    color: #fff;
    border: 2px solid #8bbf4a;
    -webkit-transition: all ease 0.6s;
    -o-transition: all ease 0.6s;
    transition: all ease 0.6s;
}

@media only screen and (min-width: 1000px){
	.dropdowns .dropdown .trigger:hover{
		color: #8bbf4a;
		background: #fff;
		-webkit-transition: all ease 0.6s;
		-o-transition: all ease 0.6s;
		transition: all ease 0.6s;
	}
}

.dropdowns .dropdown .list{
    margin: 0;
    padding: 0;
    position: absolute;
    left: 0;
    right: 0;
    z-index: 1;
    -webkit-box-shadow: 0px 0px 2px 0px rgb(0 0 0 / 30%);
    box-shadow: 0px 0px 2px 0px rgb(0 0 0 / 30%);
    display: none;
}

.dropdowns .dropdown .list li{
    padding: 0;
    margin: 0;
    list-style: none;
    display: block;
}

.dropdowns .dropdown .list li a{
    display: block;
    padding: 12.5px 20px;
    text-align: center;
    background: #fff;
    position: relative;
    -webkit-transition: all ease 0.6s;
    -o-transition: all ease 0.6s;
    transition: all ease 0.6s;
}

.dropdowns .dropdown .list li:nth-child(2n) a{
    background: #8bbf4a;
    -webkit-transition: all ease 0.6s;
    -o-transition: all ease 0.6s;
    transition: all ease 0.6s;
}

.dropdowns .dropdown .list li a.active{
	color:
	-webkit-transition: all ease 0.6s;
	-o-transition: all ease 0.6s;
	-webkit-transition: all ease 0.6s;
	transition: all ease 0.6s;
}

.dropdowns .dropdown .list li a:before{
    content: "";
    background: #8bbf4a;
    display: block;
    width: 100px;
    height: 2px;
    position: absolute;
    bottom: 10px;
    left: 50%;
    left: calc(50% - 50px);
    opacity: 0;
    -webkit-transition: all ease 0.6s;
    -o-transition: all ease 0.6s;
    transition: all ease 0.6s;
}

.dropdowns .dropdown .list li:nth-child(2n) a:before{
	background: #fff;
	-webkit-transition: all ease 0.6s;
	-o-transition: all ease 0.6s;
	transition: all ease 0.6s;
}

.dropdowns .dropdown .list li a.active:before{
	opacity: 1;
	-webkit-transition: all ease 0.6s;
	-o-transition: all ease 0.6s;
	transition: all ease 0.6s;
}

@media only screen and (min-width: 1000px){
	.dropdowns .dropdown .list li a:hover:before{
		opacity: 1;
		-webkit-transition: all ease 0.6s;
		-o-transition: all ease 0.6s;
		transition: all ease 0.6s;
	}

}

/***************************************************************************/


/*********************** LIST ITEM STYLES *******************************/


/***************************************************************************/

.listItem{
	background: #fff;
	display: block;
}

.listItem .image{
    display: block;
    position: relative;
    z-index: 1;
    overflow: hidden;
}



.listItem .image .src{
	height: 350px;
    background-size: cover;
    background-position: 50% 50%;	
    z-index: 1;
        position: relative;
    -webkit-transition: all ease 0.6s;
    -o-transition: all ease 0.6s;
    transition: all ease 0.6s;
}


.listItem .text{
	    position: relative;
	border-top:5px solid;
	border-bottom:5px solid;
	padding: 20px 10px;
	    z-index: 2;
	-webkit-transition: all ease 0.6s;
	-o-transition: all ease 0.6s;
	transition: all ease 0.6s;
}

.listItem .text *{
	color:#5b575b;	
	text-align: center;
}

.listItem.green .text{
	border-color: #8bbf4a;
}

.listItem.blue .text{
	border-color: #176daf;
}

.listItem.brown .text{
	border-color: #664729;
}


.listItem .text:before{
	content: "";
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 25px 20px 25px;
	border-color: transparent transparent #fff transparent;
	position: absolute;
    top: -25px;
	left: 50%;
    left: calc(50% - 25px);
    -webkit-transition: all ease 0.6s;
    -o-transition: all ease 0.6s;
    transition: all ease 0.6s;
}

.listItem.green .text:before{
	border-color: transparent transparent #8bbf4a transparent;
}

.listItem.blue .text:before{
	border-color: transparent transparent #176daf transparent;
}

.listItem.brown .text:before{
	border-color: transparent transparent #664729 transparent;
}

.listItem .text p{
    margin-bottom: 5px;
    min-height: 48px;
}

.listItem .text span{
    display: block;
    font-size: 12px;
    line-height: 20px;
}

@media only screen and (min-width: 1000px){
	.listItem:hover .image .src{
		-webkit-transform: scale(1.1);
		    -ms-transform: scale(1.1);
		        transform: scale(1.1);
		-webkit-transition: all ease 0.6s;
		-o-transition: all ease 0.6s;
		transition: all ease 0.6s;
	}


}

/***************************************************************************/


/************************* BREADCRUMB STYLES *******************************/


/***************************************************************************/

.breadcrumb{
    background: #fff;
    text-align: left;
    margin-top: 10px;
    padding: 10px 20px 0;
}

.breadcrumb .wrapper{
	text-align: left;
}

.breadcrumb .link{
	color: #8bbf4a;
}

/***************************************************************************/


/************************** NEWS META STYLES *******************************/


/***************************************************************************/

.newsMeta p{
	color: #8bbf4a;	
}

/************** MOBILE STYLES ***************/



@media only screen and (max-width: 1200px) {
	.innerWrapper,.wrapper {
		padding: 0 20px;
	}

	header .menu{
		right: 20px;
	}

	.fullWidthColumn .wrapper,.additionalSection .wrapper{
		padding: 0;
	}
}

@media only screen and (max-width: 1150px){
	.fullWidthColumn.four .column{
		width: 50%;
	}

}

@media only screen and (max-width: 1100px){
	.teamList li{
		width: 48%;
	}
}

@media only screen and (max-width: 1000px){
	.grid li{
		width: 100%;
	}

	.grid li:nth-child(2n) .image{
		right: 0;
		left: 50%;
	}

	.grid li:nth-child(3) .text{
		margin-left: 50%;
		margin-right: 0;
	}

	.grid li:nth-child(3) .image{
		left: 0;
		right: 50%;
	}

	.grid li:nth-child(2n) .text{
		margin-left: 0;
		margin-right: 50%;
	}

	.grid li:nth-child(2n) .text:before{
		left: auto;
	    right: -20px;
	    -webkit-transform: scaleX(-1);
	    -ms-transform: scaleX(-1);
	    transform: scaleX(-1);
	}

	.grid li:nth-child(3) .text:before{
		right: auto;
		left: -20px;
		-webkit-transform: none;
		    -ms-transform: none;
		        transform: none;
	}

	.aboutHolder.visible:before{
		opacity: 0.2;
	}

	.teamList li a .hoverContent{
		opacity: 1;
	    left: 0;
	    right: 0;
	    bottom: 0;
	    top: auto;
	}

	.teamList li a .hoverContent .text{
		    position: relative;
	    top: auto;
	    left: auto;
	    right: auto;
	    padding: 20px;
	    -webkit-transform: none;
	        -ms-transform: none;
	            transform: none;
	}

	.teamList li a .hoverContent h3{
		font-size: 22px;
		line-height: 30px;
	}
	
}

@media only screen and (max-width: 950px){
	.fullWidthColumn.three .column,.fullWidthColumn.four .column{
		width: 100%;
    	padding: 40px 20px;
	}

	.fullWidthColumn .wrapper{
		display: block;
	}

	.fullWidthColumn .column:before{
		top: 0;
	    bottom: 0;
	    height: auto;
	}

	.col-2-5, .col-1-5, .col-1-2, .col-1-3, .col-2-3, .col-1-4, .col-3-4, footer .col-1-4, .col-3-5, .col-4-5, .col-1-7 {
		width: 98%;
		margin: 1%;
		margin-bottom: 20px;
	}

	.col-2-5:last-child, .col-1-5:last-child, .col-1-2:last-child, .col-1-3:last-child, .col-2-3:last-child, .col-1-4:last-child, .col-3-4:last-child, footer .col-1-4:last-child, .col-3-5:last-child, .col-4-5:last-child, .col-1-7:last-child {
		margin-bottom: 1%;
	}

	.pageSlider li .image{
		position: relative;
	    left: auto;
	    right: auto;
	    top: auto;
	    bottom: auto;
	    height: 300px;
	}

	.pageSlider li .text{
		margin: 0;
    	width: 100%;
    	padding: 40px 20px 100px;
    	min-height: 100px;
	}

	.pageSlider .flex-control-nav{
		left: 0;
	}

	.additionalSection .additional{
		padding-bottom: 20px;
	}

	.additionalSection .additional .overview{
	    display: block;
	    width: 100%;
	    padding: 40px 20px;
	}

	.additionalSection .additional .additionalSlider{
		display: block;
	    width: 100%;
	 
	}


	.additionalSlider .slick-dots{
		left: auto;
	    right: auto;
	    width: 100%;
	    position: relative;
	    bottom: auto;
	    margin-top: 20px;
	}

	footer .rightSide{
		padding: 0;
	}

	footer .col-1-2,footer .col-1-4{
		margin-bottom: 20px;
	}

	footer .footerLogos{
		margin: 0;
	}

	.textImageSplit .image,.textImageSplit.imageRight .image{
		position: relative;
	    left: auto;
	    right: auto;
	    top: auto;
	    bottom: auto;
	    height: 300px;
	}

	.textImageSplit .text,.textImageSplit.imageRight .text{
		    margin: 0;
    	width: 100%;
    	padding: 40px 20px;
	}

	.aboutHolder .section:last-child:after{
		display: none;
	}

	.aboutHolder .section{
		padding: 100px 0;
	}

	.teamPageSlider{
		margin: 0;
	}
}

@media only screen and (max-width: 900px) {
	header .menu{
		display: none;
	}

	.mobileHeader{
		display: block;
	}

	header .logo{
		max-width: 140px;
	}

	main{
		margin-top: 93px;
	}

	header{
	    margin: 0;
	    padding-bottom: 10px;
	}

	header.active.stuck{
		-webkit-box-shadow: none;
		box-shadow: none;
	}

	.homepageBanner{
		min-height: 0;
		height: calc(80vh - 93px);
	}


}

@media only screen and (max-width: 850px){
	.dropdowns .dropdown{
		display: block;
		width: 100%;
		border: 0;
		border-bottom: 5px solid #fff;
	}

	.dropdowns .dropdown:last-child{
		border: 0;
	}
}

@media only screen and (max-width: 750px){
	.teamList{
		margin: 0 -20px;
	}

	.teamList li{
		width: 100%;
		margin-left: 0;
		margin-right: 0;
	}
}

@media only screen and (max-width: 700px) {
	.grid li .image,.grid li:nth-child(2n) .image,.grid li:nth-child(3) .image{
		position: relative;
	    left: auto;
	    right: auto;
	    top: auto;
	    bottom: auto;
	    height: 300px;
	}

	.grid li .text,.grid li:nth-child(2n) .text,.grid li:nth-child(3) .text{
		width: 100%;
	    margin: 0;
	    padding: 40px 20px;
	}

	.grid li .text:before,.grid li:nth-child(2n) .text:before,.grid li:nth-child(3) .text:before{
		right: auto;
	    left: 50%;
	    top: -34px;
	    -webkit-transform: rotate(-90deg) scaleX(-1);
	        -ms-transform: rotate(-90deg) scaleX(-1);
	            transform: rotate(-90deg) scaleX(-1);
	}

	.containText{
		padding: 0;
	}

	.aboutHolder .section{
		padding: 60px 0;
	}
}

@media only screen and (max-width: 450px) {
	.teamList li a .hoverContent{
		    position: relative;
	}

}

.fullheight {
    height: 98vh;
    height: calc(100vh - 20px);
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}
.homepage-video {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    -o-object-fit: cover;
       object-fit: cover;
}
.headerimg .text {
	position: absolute;
	width: 100%;
	text-align: center;
	top: 50%;
	-webkit-transform: translateY(-50%);
	    -ms-transform: translateY(-50%);
	        transform: translateY(-50%);

}
.headerimg .text * {
	color: #FFF;
	text-align: center;
}
.headerimg .text h1, .headerimg .text h2 {
	max-width: 850px;
	margin-left: auto;
	margin-right: auto;
}
main.homepage {
	margin-top: 0px;
}
header.homepage {
	background-color: rgba(242, 242, 242, 0.75);
}


.fab.fa-twitter, .fab.fa-twitter-square{
	font-family:sans-serif !important;
}
.fab.fa-twitter::before, .fab.fa-twitter-square::before{
	content:"𝕏" !important;
	/*font-size:1.2em;*/
}

