
/*

COLORS
Main green: #6D9D34
Accent green: #506639
Accent orange: #F88E48
Footer blue: #314141
Dark grey (for copy only): #5F5F5F
White: #ffffff

FONTS
Avenir Light
Avenir Light Oblique
Avenir Medium
Avenir Medium Oblique
Avenir Blackon

https://webdesign.tutsplus.com/tutorials/masonry-layouts-with-css-grid-and-object-fit-cover--cms-37989

https://w3bits.com/flexbox-masonry/

https://www.w3schools.com/howto/howto_css_modals.asp

*/

@font-face {
  font-family: "mr-eaves-modern", sans-serif;
	font-weight: 400;
	font-style: normal;
}

@font-face {
font-family: "mr-eaves-xl-modern-narrow", sans-serif;
font-weight: 100;
font-style: normal;
}

@font-face {
  font-family: Nanum Gothic;
  src: url(NanumGothic-Regular.ttf);
  font-weight: normal;
}

@font-face {
  font-family: Nanum Gothic;
  src: url(NanumGothic-Bold.ttf);
  font-weight: bold;
}

@font-face {
  font-family: Nanum Gothic;
  src: url(NanumGothic-ExtraBold.ttf);
  font-weight: 900;
}




html{
	padding: 0;
	margin: 0;
	background-color: #314141;
}

body{
	font-weight: normal;
	font-family: "mr-eaves-modern", "Nanum Gothic", arial, sans-serif;
	font-size: 20px;
	line-height: 1.5;
	margin: 0;
	padding: 0;
	color: #222;
	background-color: #314141;
}

#skip-link{
	display: none;
}

.main-navigation{
	width: 100%;
	min-height: 175px;
	position: sticky;
	top: 0;
	left: 0;
	z-index: 999999;
	box-sizing: border-box;
}

.main-navigation.green-nav{
	position: relative;
	z-index: 100;
	animation: slideDown 2.0s forwards;
}

.green-nav.reset{
	animation: slideReset 2.0s forwards;
}

@keyframes slideDown{
	0% {
    top: -200px;
  }
  50% {
    top: -200px;
  }
  100% {
  	top: 0px;
  }
}

@keyframes slideReset{
	0% {
    top: -200px;
  }
  50% {
    top: -200px;
  }
  100% {
  	top: 0px;
  }
}

.green-nav{
	background: #6D9D34;
	color: #fff;
	overflow: hidden;

}


.logo{
	font-weight: bold;
	text-transform: uppercase;
	width: 261px;
	height: 113px;
	margin: 31px 0 31px 100px;
	color: #fff;
	background-image: url(../img/LS_Logo_White_NoTagline.png);
	background-size: cover;
	background-repeat: no-repeat;
}

.logoLink{
	display: block;
	width: 265px;
}

.logoLink:hover{
	text-decoration: none;
}

.hamburger-menu{
	width: 60px;
	height: 55px;
	float: right;
	margin-right: 100px;
	margin-top: -110px;
}

.green-nav .hamburger-menu{
	float: right;
}

.hamburger-menu .hamburger-lines{
	display: block;
	width: 100%;
	height: 5px;
	background: #fff;
	border: solid 1px #fff;
	margin-top: 20px;
}

.hamburger-menu .hamburger-lines::after,
.hamburger-menu .hamburger-lines::before{
	content: "";
	display: block;
	width: 100%;
	height: 5px;
	border: solid 1px #fff;
	background-color: #fff;
	margin-left: -1px;
}

.hamburger-menu .hamburger-lines::after{
	margin-top: 35px;
}
.hamburger-menu .hamburger-lines::before{
	margin-top: -22px;
}

.hamburger-menu.open .hamburger-lines{
	background-color: transparent;
	border: none;
}
.hamburger-menu.open .hamburger-lines::after{
	margin-top: -6px;
	animation: menuOpenA 0.8s forwards;
}
.hamburger-menu.open .hamburger-lines::before{
	margin-top: 0;
	animation: menuOpenB 0.8s forwards;
}

.hamburger-menu.close .hamburger-lines::after{
	animation: menuCloseA 0.8s forwards;
}
.hamburger-menu.close .hamburger-lines::before{
	animation: menuCloseB 0.8s forwards;
}

.hamburger-menu.close .hamburger-lines{
	animation: fadeIn 1s forwards;
}


@keyframes menuOpenA {
  100% {
    transform: rotateZ(45deg);
  }
}

@keyframes menuOpenB {
  100% {
    transform: rotateZ(-45deg);
  }
}

@keyframes menuCloseA{
  0% {
    transform: rotateZ(45deg);
    margin-top: -3px;
  }
  100% {
    transform: rotateZ(0deg);
  }
}

@keyframes menuCloseB{
  0% {
    transform: rotateZ(-45deg);
    margin-top: 0;
  }
  100% {
    transform: rotateZ(0deg);
  }
}

@keyframes fadeIn{
  0% {
    background-color: transparent;
    border-color: transparent;
  }
  100% {
    background-color: #fff;
    border-color: #fff;
  }
}


.nav-holder.open{
	animation: slideNavIn 1.2s forwards;
}

.nav-holder.close{
	animation: slideNavOut 1.2s forwards;
}


@keyframes slideNavIn{
	0% {
    right: -80%;
    display: none;
  }
  90% {
    right: 2%;
  }
  100% {
    right: 0%;
  }
}

@keyframes slideNavOut{
	0% {
    right: 5%;
  }
  20% {
    right: 0%;
  }
  100% {
    right: -80%;
    display: none;
  }
}

.clear-nav{
	color: #fff;
	overflow: hidden;
	background-color: #6D9D34;
}

.nav-holder{
	margin: -125px 130px 0 0;
	text-align: center;
	padding: 20px 0;
	right: -80%;
	float: right;
	position: relative;
	font-size: 1.5em;
}

.nav-holder li{
	display: inline-block;
	margin: 0 100px;
}

.nav-holder li a,
.nav-holder li a:link,
.nav-holder li a:active,
.nav-holder li a:visited{
	color: #fff;
	text-decoration: none;
}
.nav-holder li a:hover{
	text-decoration: underline;
}


a,
a:link,
a:active,
a:visited{
color: #F88E48;
text-decoration: none;
}

a:hover{
	text-decoration: underline;
}


.background{
	background-repeat: no-repeat;
	background-position: center;
	background-color: #506639;
}

.background.work-bg,
.background.contact-bg{
	background-color: #fff;
}

.forground-flowers{
	width: 100%;
	height: 600px;
}

.forground-flowers.blur-change{
	position: relative;
	top: 420px;
}

.forground-flowers.blur-change img{
	  filter: blur(8px);
  -webkit-filter: blur(8px);
  z-index: 9999;
  position: relative;
  top: 15px;
}

.forground-flowers img{
	max-width: 100%;
	  filter: blur(8px);
  -webkit-filter: blur(8px);
}


.flowerBg.blur-change{
	width: 1920px;
	display: block;
}

.flowerBg.blur-change .videoBG{
	width: 1904px;
	height: 1071px;
}

.home-we-section,.home-expand-section,.home-contact-section{
	width: 100%;
	z-index: 99999;
	position: relative;
}

.home-we-section,
.home-expand-section,
.home-contact-section{
	min-height: 75vh;
	padding: 7% 0;
	box-sizing: border-box;
}


.home-contact-section{
	/*height: auto; */
}

.home-logo-section{
	min-height: 92vh;
	overflow: hidden;
}

.home-bar.green-bg h1{
	text-align: center;
	font-size: 2.75em;
	padding: 20px 0;
	margin: 0;
	font-weight: normal;
	color: #fff;
	letter-spacing: 4px
}

.home-main-logo{
	position: relative;
	top: 235px;
	color: #fff;
	text-align: center;
}

.index-logo{
	width: 500px;
	display: inline-block;
	margin: auto;
}


.index-logo img{
	max-width: 100%;
	z-index: 99;
	position: relative;
}


.home-main-logo .logo-holder{
	text-transform: uppercase;
	display: block;
	width: 100%;
	position: fixed;
	top: 300px;
	z-index: 99;
}


.home-we-section{
	background-color: #6D9D34;
	color: #fff;
	position: relative;
}

.right-content-holder p{
	font-size: 20px;
}

.home-expand-section{
	min-height: initial;
	background-image: url("../img/pexels-ahnaf-piash-12748762.jpg");
	background-size: cover;
	background-repeat: no-repeat;
	background-attachment: fixed;
}

.home-contact-section, .contact-bg .thin-width{
	background-color: #fff;
	background-image: url("../img/ContactFormWithLeaves2.jpg");
	background-size: cover;
	background-position-y: 98px;
}

.home-contact-section{
	background-position-y: 0px;
}

.sustainability-bg{
	background-image: url("../img/bumblebeeBg.jpg");
}

.home-expand-section .left-vertical-text,
.home-we-section .left-vertical-text{
	color: #fff;
}

.home-expand-section .right-content-holder{
	margin: 40px auto;
}


.float-box{
	margin: -70px auto 0;
	min-height: 100vh;
	display: flex;
}

.screenheight{
	min-height: 80vh;
	box-sizing: border-box;
	padding-top: 6vh;
}

.float-box .indented-text{
	align-self: center;
	background-color: #fff;
}


.left-vertical-text{
	width: 25px;
	position: relative;
	left: 100px;
  font-size: 20px;
  background-repeat: no-repeat;
  background-size: contain;
  float: left;
}

.home-we-section .left-vertical-text{
background-image: url("../img/WHOWEARE.png");
height: 220px;
top:200px;
}

.home-expand-section .left-vertical-text{
background-image: url("../img/WHATWEDO.png");
height: 220px;
top:80px;
}

.home-contact-section .left-vertical-text{
background-image: url("../img/HOWTOGETINTOUCH.png");
height: 400px;
top: 48px;
}


.home-we-section .right-content-holder{
	margin-top: 20px;
	margin-bottom: 30px;
}

.right-content-holder{
	width: 1340px;
	margin: 0 auto;
}

.green-rounded-expander{
	border-radius: 35px;
	background-color: #6D9D34;
	color: #fff;
	padding: 20px 40px;
	margin-bottom: 50px;
}

.green-rounded-expander:hover{
	background-color: #F88E48;
}


.green-rounded-expander.open{
	background-color: #fff;
	color: #222;
}

.green-expander-title{
	font-size: 24px;
	font-weight: bold;
	position: relative;
}

.green-rounded-expander.close:hover .green-expander-title,
.green-rounded-expander.close:hover .green-expander-arrow{
	animation: orangeBounce 0.6s forwards;
}


.green-rounded-expander.open .green-expander-title{
	color: #6D9D34;;
}


.green-expander-arrow{
	float: right;
	margin-right: 20px;
	margin-top: -25px;
	position: relative;
}

.green-rounded-expander.open .green-expander-arrow{
	transform: rotateZ(180deg);
	margin-right: 30px;
	margin-top: -15px;
}

.green-expander-arrow::after,
.green-expander-arrow::before{
	content: "";
	display: block;
	width: 30px;
	height: 2px;
	background-color: #fff;
	position: relative;
}

.green-rounded-expander.open .green-expander-arrow::after,
.green-rounded-expander.open .green-expander-arrow::before{
	background-color: #6D9D34;
}

.green-expander-arrow::after{
	transform: rotateZ(32deg);
	top: 8px;
	left: -25px
}

.green-expander-arrow::before{
	transform: rotateZ(-35deg);
	top: 10px;
}

.green-expander-content{
	margin-top: 10px;
	display: none;
	color: #666;
}

@keyframes orangeBounce{
	0% {
    top: 0;
  }
  90% {
    top: 8px;
  }
  100% {
    top: 6px;
  }
}


.content{
	margin: 0 auto;
	background-color: #fff;
	min-height: 855px;
}

.indented-text{
	padding: 60px;
	border-radius: 30px;
}

.indented-text p{
	font-size: 20px;
	margin: 0;
	padding: 0;
}

.full-width{
	width: 100%;
	max-width: 2200px;
}

.thin-width{
	width: 800px;
}

.contact-bg .thin-width{
	width: 100%;
}

.green-bg{
	background-color: #6D9D34;
	height: 100px;
	margin-top: 360px;
	position: sticky;
	top: 0;
	z-index: 999998;
}

.green-dark-bg{
	background-color: #506639;
}

.curved-header{
	text-align: center;
	padding: 10px;
	border-bottom-left-radius: 35px;
	border-bottom-right-radius: 35px;
	color: #fff;
	width: 300px;
	margin: -185px auto 0;
	padding-top: 50px;
	position: relative;
	animation: slideUp 2.0s forwards;
}

.curved-header h1{
	text-transform: uppercase;
	font-size: 40px;
	font-family: "mr-eaves-modern", "Nanum Gothic", arial, sans-serif;;
}

@keyframes slideUp{
	0% {
    top: 0px;
  }
  48%{
  	top: 0px;
  }
  50% {
    top: 10px;
  }
  100% {
  	top: -220px;
  }
}

.content-indented{
	padding: 20px;
	margin: 75px auto;
}

.content-indented p{
	font-size: 20px;
}

.full-width .content-indented{
	width: 700px;
}


.right-content-holder .content-indented{
	width: 550px;
}

.thin-width .content-indented,
.home-contact-section .content-indented{
	width: 1100px;
}

.home-contact-section .content-indented,
.thin-width .content-indented{
	border-radius: 30px;
}

.orange-line{
	border-left: none;
	border-right: none;
	border-top: none;
	border-bottom: solid 2px #F88E48;
	font-style: italic;
	font-size: 16px;
}

.orange-line:focus-visible{
	outline-color: #fff;
}

.orange-line.one{
	width: 990px;
}
.orange-line.two{
	width: 932px;
}



.center-it{
	margin: auto;
	width: 100%;
	text-align: center;
}


.orangebtn{
	border: solid 2px #F88E48;
}

.btn.orangebtn{
	padding: 0;
}

.orangebtn.checked{
	border: solid 2px #6D9D34;
	background-color: #6D9D34;
	color: #fff;
}

.orangebtn.checked:hover{
	border: solid 2px #506639;
	background-color: #6D9D34;
}

.orangebtn:hover{
	color: #fff;
	background-color: #F88E48;
}

.orangebtn span{
	display: block;
	position: relative;
	padding: 20px;
	height: 24px;
	font-size: 24px;
	font-family: "mr-eaves-modern", "Nanum Gothic", arial, sans-serif;
	line-height: 24px;
}

.orangebtn span:hover{
	animation: orangeBounce 0.6s forwards;
}


.btn{
	background-color: #fff;
	padding: 20px;
	border-radius: 30px;
	font-size: 24px;
	margin-right: 25px;
	color: #666;
	text-transform: uppercase;
}

a.orangebtn{
	color: #666;
	text-decoration: none;
	margin: 10px auto;
	display: inline-block;
}

a.orangebtn.checked{
	padding: 20px;
}

.italic{
	font-style: italic;
}

#contactForm p{
	font-size: 20px;
}

.work-greenImg-holder{
	margin-bottom: 40px;
}

.vertical-text{
	width: 30px;
	position: relative;
	left: 25px;
	top: 20px;
  color: #506639;
  background-repeat: no-repeat;
  background-size: contain;
  float: left;
}

#ConBtn,
#ManBtn,
#ResBtn{
	height: 360px;
	margin-bottom: 50px;
}

#ConBtn .vertical-text{
background-image: url(../img/CONSTRUCTIONText.png);
height: 325px;
}
#ManBtn .vertical-text{
background-image: url(../img/MANAGEMENTText.png);
height: 300px;

}
#ResBtn .vertical-text{
background-image: url(../img/RESTORATIONText.png);
height: 300px;

}

.green-work-image{
	border-radius: 90px;
	background-color: #506639;
	color: #fff;
	margin: 0 auto;
	box-sizing: border-box;
	height: 360px;
	width: 1350px;
	position: relative;
	overflow: hidden;
	cursor: pointer;
}

.cover-image,
.green-work-image .color-photo{
	box-sizing: border-box;
	height: 360px;
	width: 1350px;
	position: relative;
}

.cover-image{
	z-index: 9;
	top: 0;
	left: 0;
	float: left;
}


.green-work-image .left-links{
	font-size: 16px;
	padding-left: 65px;
	padding-top: 65px;
	width: 175px;
	height: 360px;
	position: absolute;
	z-index: 8;
	top: 0;
	background-color: #506639;
}

.green-work-image .left-links a:link,
.green-work-image .left-links a:active,
.green-work-image .left-links a:visited{
	display: block;
	color: #fff;
	text-decoration: none;
	margin-bottom: 8px;
}


@keyframes fadeCover{
	0% {
    opacity: 1;
  }
  98% {
  	opacity: 0;
  }
  100%{
		display: none;
  }
}

@keyframes rightSlide{
	0% {
    padding-left: 0px;
  }
  70% {
    padding-left: 18px;
  }
  100% {
  	padding-left: 12px;
  }
}

.cover-image.Construction{
		background-image: url("../img/CONSTRUCTION.png");
}

#ConBtn .green-work-image,
.color-photo.Construction{
		background-image: url("../img/CONSTRUCTION-color.jpg");
}

.cover-image.Management{
		background-image: url("../img/MANAGEMENT.png");
}

#ManBtn .green-work-image,
.color-photo.Management{
		background-image: url("../img/MANAGEMENT-color.jpg");
}

.cover-image.Restoration{
		background-image: url("../img/RESTORATION.png");
}

#ResBtn .green-work-image,
.color-photo.Restoration{
		background-image: url("../img/RESTORATION-color.jpg");
}



.visually-hidden,
.vs-hidden{
	display: none;
}

.photo-carousel{
	margin-top: 50px;
}


.footer-wrapper{
	width: 100%;
	background: #314141;
	color: #fff;
	padding: 10px 0;
	height: 100px;
	box-sizing: border-box;
	z-index: 9;
	position: relative;
}

.menu-block-wrapper{
	text-align: center;
}

.footer-nav,.footer-socials{
	display: inline-block;
}

.footer-nav{
 text-align: center;
 margin: 8px 0;
 padding: 0;
}

.footer-nav li{
	display: inline-block;
	margin: 0 30px;
}

.footer-nav li a,
.footer-nav li a:link,
.footer-nav li a:active,
.footer-nav li a:visited{
	color: #fff;
	text-decoration: none;
}

.footer-nav li a:hover{
	color: #5F5F5F;
}

.footer-socials{
	position: relative;
	top: 10px;
	float: right;
	margin-right: 50px;
}

.footer-facebook,.footer_instagram{
	display: inline-block;
	width: 30px;
	height: 30px;
	
	background-repeat: no-repeat;
	background-size: cover;
}
.footer-facebook{
	background-image: url(../img/facebook.png);
}

.footer_instagram{
	background-image: url(../img/instagram.png);
}

.footer-disclamer{
	text-align: center;
	font-style: italic;
	font-size: .75em;
}

.footer-left{
	height: auto;
}

.footer-logoHolder{
	text-align: center;
	height: 80px;
	margin: 15px 0;
}

.footer-logos{
	background-size: contain;
	background-repeat: no-repeat;
	width: 100px;
	height: 80px;
	display: inline-block;
	margin: 0 10px;
}

.footer-logos.logo1{
		background-image: url(../img/BOMA-Logo-FINAL_white.png);
}

.footer-logos.logo2{
	background-image: url(../img/WBE_Seal_RGB.png);
	width: 125px;
}



/* homepage slider css */

/* Slideshow container */
.slideshow-container {
  max-width: 1600px;
  position: relative;
  margin: auto;
}

/* Hide the images by default */
.mySlides {
  display: none;
}


.mySlides img{
	border-radius: 30px
}

/*
slideshow-container
*/

.slideshow-container.loaded{
		animation: firstSlide 1.5s forwards;
}

.home-we-section .left-vertical-text.loaded{
		animation: rightSlideIn 1.5s forwards;
}

.home-we-section .we-section-text.loaded{
		animation: leftSlideIn 1.5s forwards;
}
	

@keyframes firstSlide{
	0% {
    width: 120%;
    margin-top: -33%;
  }

  100% {
  	width: 100%;
    margin-top: 0%;
  }
}

@keyframes rightSlideIn{
	0% {
    left: 0;
  }

  100% {
  	left: 100px;
  }
}

@keyframes leftSlideIn{
	0% {
    margin-left: 100px;
  }

  100% {
  	margin-left: 0;
  }
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 30px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #fff;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #F88E48;
}

.dot-holder{
	text-align:center;
	margin-top: -70px;
	z-index: 999999;
	position: relative;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
  border-radius: 30px;
  overflow: hidden;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}






/* mobile break points */

@media only screen and (max-width: 600px) {
	.container{
		min-width: 350px;
	}
	.content{
		width: 100%;
		
	}

.logo{
	margin-left: 10px;
}

.index-logo{
	width: 90%;
	margin: auto;
}

.hamburger-menu{
	position: relative;
	z-index: 999;
	margin-right: 15px;
	width: 40px;
}

.flowerBg.blur-change{
	width: 100%;
}

.home-logo-section{
	overflow: visible;
	min-height: 450px;
}


.home-main-logo{
	top: 65vh;
}

.home-main-logo .logo-holder{
	top: 210px;
}

.home-logo-section{
	margin-top: -6px;
}


.forground-flowers.blur-change{
	top: 42vh;
	overflow: hidden;
}


.forground-flowers{
	height: 375px;
}

.flowerBg.blur-change{
	height: 450px;
	overflow: hidden;
}

.forground-flowers img{
	width: 800px;
	max-width: 200%;
	margin-left: -100px;
	filter: blur(2px);
  -webkit-filter: blur(2px);
}

.flowerBg.blur-change .videoBG{
	display: block;
  position: relative;
  left: 50%;
  top: 52%;
  transform: translate(-50%, -50%);
  zoom: 0.45;
}

.green-bg{
	margin-top: 270px;
}

.green-nav,
.clear-nav{
	min-height: 90px;
	overflow: visible;
}

.nav-holder{
	right: 0;
	margin: 0;
	top: -300px;
	width: 100%;
	position: absolute;
	background-color: #6D9D34;
}

.logo{
	margin: 0;
	top: 6px;
	position: relative;
	width: 160px;
	height: 68px;
}

.hamburger-menu{
	top: 60px;
}

.nav-holder li{
	display: block;
	text-align: center;
	margin: 5px auto;
}

.hamburger-menu .hamburger-lines{
	height:3px;
}
.hamburger-menu .hamburger-lines::after{
	height:3px;
	margin-top: 25px;
}
.hamburger-menu .hamburger-lines::before{
	height:3px;
	margin-top: -16px;
}

.nav-holder.open{
	animation: slideNavDown 1.2s forwards;
}

.nav-holder.close{
	animation: slideNavUp 1.2s forwards;
}


@keyframes slideNavDown{
	0% {
    top: -300px;
    display: none;
  }
  90% {
    top: 10px;
  }
  100% {
    top: 0;
  }
}

@keyframes slideNavUp{
	0% {
    top: 10px;
  }
  20% {
    top: 0px;
  }
  100% {
    top: -300px;
  }
}

.home-contact-section .right-content-holder{
	margin: 0 auto;
}

.thin-width.float-box{
	width: 90%;
}

.float-box .indented-text{
	margin: 80px auto;
	padding: 40px;
}

	.thin-width .content-indented, 
	.right-content-holder .content-indented,
	.content-indented{
		width: 100%;
		padding: 2%;
		margin-top: 25px;
		box-sizing: border-box;
		text-align: center;
	}

	.link-holder{
		margin-top: 200px;
	}

	.green-work-image{
		width: 100%;
		margin-bottom: 30px;
		margin-left: 0;
		border-radius: 25px;
		background: none !important;
		height: auto;
		position: relative;

	}

	.green-work-image .left-links{
		width: 100%;
		margin: 0 auto;
		text-align: center;
		padding-left: 0;
		padding: 130px 0 20px;
		z-index: auto;
		height: auto;
		position: static;
	}

	.color-photo{
		height: 120px;
	}

	.cover-image,
	.green-work-image .color-photo{
		margin-left: 0;
		width: 100%;
		height: 120px;
		top: 0;
		left: 0;
		position: absolute;
		background-size: cover;
	}

.slideshow-container.visible{
	width: 100%;
	margin: auto;
	text-align: center;
}

.home-we-section .left-vertical-text.loaded,
.home-we-section .we-section-text.loaded,
.slideshow-container.loaded{
	animation: none;
}

.fade{
	height: 300px;
}

.mySlides img{
	height: 100%;
	width: auto !important;
	position: relative;
}

	.vertical-text,.left-vertical-text{
		width: 100%;
		text-align: center;
		position: initial;
		margin-bottom: 40px;
	}

	.full-width .content-indented,
	.contact-bg .thin-width{
		width: 100%;
	}

	.home-bar.green-bg h1{
		font-size: 1.75em;
	}

	.green-expander-title{
		margin-right: 60px;
		font-size: 1em;
	}

	.green-rounded-expander{
		padding: 20px 25px;
	}

	.green-expander-content{
		padding: 10px;
	}

	#ConBtn, 
	#ManBtn, 
	#ResBtn{
		height: auto;
		margin-bottom: 15px;
	}


#ConBtn .vertical-text{
background-image: url(../img/CONSTRUCTIONTextHoriz.png);
background-position: center;
background-size: contain;
height: 30px;
width: 100%;
}
#ManBtn .vertical-text{
background-image: url(../img/MANAGEMENTTextHoriz.png);
background-position: center;
background-size: contain;
height: 30px;
width: 100%;
}
#ResBtn .vertical-text{
background-image: url(../img/RESTORATIONTextHoriz.png);
background-position: center;
background-size: contain;
height: 30px;
width: 100%;
}

	.vertical-text{
		float: none;
		margin: 40px 0 20px;
	}

	.home-main-logo span{
		font-size: 75px;
	}

	.home-we-section, 
	.home-expand-section, 
	.home-contact-section{
		padding: 40px 10px;
		box-sizing: border-box;
		grid-template-columns: 100%;
		min-height: auto;
	}


	.curved-header{
		margin: -120px auto 0;
	}


.left-vertical-text{
	float: none;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	margin: auto;
	width: 80%;
	height: 30px;
	margin-bottom: 20px;
}

.home-we-section .left-vertical-text{
	background-image: url("../img/WHOWEAREhoriz.png");
	height: 30px;
}

.home-expand-section .left-vertical-text{
	background-image: url("../img/WHATWEDOhoriz.png");
	height: 30px;
}

.home-contact-section .left-vertical-text{
	background-image: url("../img/HOWTOGETINTOUCHhoriz.png");
	height: 30px;
}

	.home-expand-section{
		padding-bottom: 40px;
	}

	.right-content-holder{
		width: 94%;
		margin: auto;
	}

	.right-content-holder.work{
		margin: auto;
	}

	.orange-line.one,
	.orange-line.two,
	.orange-line.three,
	.orange-line{
		width: 90%;	
	}

	.btn{
		width: 90%;
		margin: 0 auto 10px;
	}

	.footer-wrapper{
		height: auto;
	}

	.footer-nav{
		margin: 20px 0 0 0;
		padding: 0;
	}

	.footer-nav li{
		display: block;
		width: 100%;
		margin: 0 0 10px 0;
	}

	.footer-socials{
		display: block;
		width: 100%;
		padding-bottom: 10px;
		float: none;
	}

	.footer-left,
	.footer-right{
		margin: auto;
		float: none;
	}

}


@media only screen and (min-width: 601px) and (max-width: 900px){
	.logo{
		margin-left: 31px;
	}

	.hamburger-menu{
		margin-right: 30px;
	}

	.content{
		width: 100%;
	}

	.home-logo-section{
		
	}

	.content-indented{
		width: 500px;
	}

.right-content-holder{
	width: 500px;
}

.home-logo-section{
	width: 100%;
}


.nav-holder{
	right: 0;
	margin: 0;
	top: -300px;
	width: 100%;
	position: absolute;
	background-color: #6D9D34;
}

.green-nav,
.clear-nav{
	min-height: 175px;
}

.nav-holder li{
	margin: 0 30px;
}



.left-vertical-text{
	left: 0;
}

.forground-flowers.blur-change{
	overflow: hidden;
}

.flowerBg.blur-change .videoBG{
	display: block;
  position: relative;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.forground-flowers.blur-change img{
	max-width: 200%;
	left: -265px;
}

.flowerBg.blur-change{
	height: 900px;
	width: 100%;
}

.full-width .content-indented,
.contact-bg .thin-width,
.thin-width.float-box{
		width: 100%;
	}

.home-we-section, 
.home-expand-section, 
.home-contact-section{
	min-height: 600px;
}


.home-we-section .left-vertical-text.loaded{
	animation: tabletLeftSlide 1.2s forwards;
}


@keyframes tabletLeftSlide{
	0% {
    left: -50px;
  }
  90% {
    left: 20px;
  }
  100% {
    left: 0;
  }
}

	.thin-width .content-indented, 
	.right-content-holder .content-indented,
	.content-indented{
		width: 100%;
		padding: 2%;
		margin-top: 25px;
		box-sizing: border-box;
		text-align: center;

	}

	.orange-line.one,
	.orange-line.two,
	.orange-line.three,
	.orange-line{
		width: 90%;	
	}

.home-we-section, 
.home-expand-section, 
.home-contact-section{
	grid-template-columns: 10% 90%;
}

.full-width .content-indented{
	width: 500px;
}

.vertical-text{
	left: -15px;
	float: right;
}

.green-work-image{
		width: 85%;
		margin-left: 20px;
	}

	.green-work-image .left-links{
		padding-left: 50px;
		width: 150px;
	}

	.cover-image, 
	.green-work-image .color-photo{
		width: 100%;
	}


	.right-content-holder.work{
		margin: auto;
		width: 90%;

	}

}

@media only screen and (min-width: 901px) and (max-width: 1775px){
	.contact-bg .thin-width, .home-contact-section{
		background-size: contain;
		background-repeat: no-repeat;
	}


.nav-holder{
	right: -95%;
	margin-right: 160px;
}

.nav-holder li{
	margin: 0 25px;
}

.home-logo-section{
	min-height: 90vh;
}

.flowerBg.blur-change{
	height: 1000px;
	width: 100%;
}

.flowerBg.blur-change .videoBG{
	display: block;
  position: relative;
  left: 50%;
  transform: translate(-50%, 0);
}

	.thin-width .content-indented, 
	.home-contact-section .content-indented{
		width: 700px;
	}

	.orange-line.one,
	.orange-line.two,
	.orange-line.three,
	.orange-line{
		width: 90%;	
	}

	.forground-flowers.blur-change img{
	width: 150%;
	left: -340px;
	top: -50px;
}

.forground-flowers img{
	max-width: 200%;
}

	.right-content-holder{
		box-sizing: border-box;
		width: 85%;
		margin: 0 auto;
		justify-self: center;
		
	}

	.left-vertical-text{
		left: 25px;
	}

	.vertical-text{
		left: 2%;
		top: 45px;
		height: 250px !important;
	}

	#ConBtn, 
	#ManBtn, 
	#ResBtn{
		margin-bottom: 30px;
	}

	.green-work-image,
	.right-content-holder.work{
		width: 90%;
		max-width: 1300px;
	}

	.cover-image, 
	.green-work-image .color-photo{
		width: 100%;
	}



.home-we-section .left-vertical-text.loaded{
	animation: none;
}


	.green-expander-content{
		padding-right: 200px;
	}

	.home-we-section, 
	.home-expand-section, 
	.home-contact-section{
		grid-template-columns: 150px 90%;
	}

	.footer-nav li a,
	.footer-nav li a:link,
	.footer-nav li a:active,
	.footer-nav li a:visited{
		font-size: 20px;
	}

	.footer-nav li{
		text-align: center;
		width: 125px;
	}


}

/* ultra wide screens */

@media only screen and (min-width: 1776px) {
	.container{
		max-width: 2200px;
		margin: auto;
		
	}

.home-main-logo .logo-holder{
	left: 50%;
	transform: translateX(-50%);
}

	body{
		background-color: #6D9D34;
	}

	.flowerBg.blur-change{
		width: 100%;
		height: 1000px;
	}

.green-expander-content{
	padding-right: 200px;
}


.footer-nav li a,
.footer-nav li a:link,
.footer-nav li a:active,
.footer-nav li a:visited{
	font-size: 20px;
}

	.footer-nav li{
		text-align: center;
		width: 200px;
	}

}

@media only screen and (min-width: 2000px){
	.flowerBg.blur-change .videoBG{
		width: 100%;
		height: auto;
	}
}


@media only screen and (min-width: 601px) and (max-width: 900px){

.green-nav,
.clear-nav{
	min-height: 175px;
	overflow: visible;
}

.logoLink{
	position: relative;
	top: 31px;
}

.logo{
	margin-top: 0;
}

.hamburger-menu{
	margin-top: -78px;
}

.nav-holder.open{
	animation: slideNavDown 1.2s forwards;
}

.nav-holder.close{
	animation: slideNavUp 1.2s forwards;
}


@keyframes slideNavDown{
	0% {
    top: -200px;
    display: none;
  }
  90% {
    top: 155px;
  }
  100% {
    top: 145px;
  }
}

@keyframes slideNavUp{
	0% {
    top: 145px;
  }
  20% {
    top: 155px;
  }
  100% {
    top: -200px;
  }
}

}

@media only screen and (min-width: 901px) and (max-width: 1200px){
.green-nav,
.clear-nav{
	min-height: 175px;
	overflow: visible;
}

.logoLink{
	position: relative;
	top: 31px;
}

.logo{
	margin-top: 0;
}

.hamburger-menu{
	margin-top: -78px;
}

.nav-holder{
	right: 0;
	top: -200px;
	width: 100%;
	float: none;
	background-color: #6D9D34;
}

.nav-holder.open{
	animation: slideNavDown 1.2s forwards;
}

.nav-holder.close{
	animation: slideNavUp 1.2s forwards;
}


@keyframes slideNavDown{
	0% {
    top: -200px;
    display: none;
  }
  90% {
    top: 120px;
  }
  100% {
    top: 110px;
  }
}

@keyframes slideNavUp{
	0% {
    top: 110px;
  }
  20% {
    top: 120px;
  }
  100% {
    top: -200px;
  }
}


}