:root{
    --colGreen: #6aaf08;
    --colDark: #272727;
    --colLight: #f1d2a9;
    --textGrey: #8c8c8c;
}

* {
	margin: 0;
  	padding: 0;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    letter-spacing: 1px;
}

html,body{
	width: 100%;
	height: 100%;
} 

h1{
    font-family: 'Lora', serif;
    text-transform: capitalize;
    font-size: 70px;
    line-height: 1;
}

h2{
    font-family: 'Lora', serif;
    font-size: 45px;
    text-transform: capitalize;
    font-weight: 600;
    line-height: 1;
}

h3,h4,h5,h6{
    font-family: 'Lora', serif;
}

/* TOP MESSAGE */

#top{
    background-color: white;
    width: 100%;
    height: auto;
    padding-top: 40px;
    padding-bottom: 80px;
}

.left-top{
    width: 100%;
    height: 100%;
}

.left-top a{
    color: var(--colGreen);
}

.right-top{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.right-top ul{
    margin-bottom: 0;
    text-align: right;
}

.right-top ul li{
    list-style: none;
    display: inline;
    margin-left: 10px;
    color: var(--colDark);
}

.right-top ul li a{
    text-decoration: none;
    color: var(--colDark);
}

.right-top ul li i{
    color: var(--colGreen);
}

/* NAVBAR */

.navbar {
    transition: all 0.4s ease;    
    padding: 0;
    margin-top: -40px;
}

.navbar-collapse{
    background-color: var(--colDark);
    padding: 20px 0;
}

.navbar-nav{
    text-align: center;
    margin: 0 auto;
}

.navbar .nav-link {
    color: #fff;
    margin: 0 5px;
    padding: 10px 0;
}

.navbar .nav-link:hover,
.navbar .nav-link:focus {
    color: var(--colGreen);
    text-decoration: none;
}

.navbar .navbar-brand {
    color: #fff;
}


/* Change navbar styling on scroll */
.navbar.active {
    background: var(--colDark);
    margin-top: 0;
    box-shadow: 1px 2px 10px rgba(255,255,255, 0.2);
}

.navbar.active .nav-link {
    color: #fff;
}

.navbar.active .nav-link:hover,
.navbar.active .nav-link:focus {
    color: var(--colGreen);
    text-decoration: none;
}

.navbar.active .navbar-brand {
    color: #555;
}

.btn-top-1{
    background-color: var(--colGreen);
    padding: 10px 45px !important;
    border-top-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.btn-top-1:hover{
    background-color: white;
    color: var(--colGreen) !important;
}


/* Change navbar styling on small viewports */
@media (max-width: 991.98px) {
    .navbar .navbar-brand, .navbar .nav-link {
        color: #fff;
    }
    
    .navbar-toggler{
        text-align: center;
        margin: 0 auto;
        color: #fff;
    }
    
    .navbar{
        margin-top: 0px;
        background-color: var(--colDark);
        padding: 15px 0;
    }
    
    #top{
        padding: 30px 0;
    }
    .navbar-brand{
        margin-right: 0;
    }
}

/* SLIDER */

.slider {
  width: 100%;
  min-height: 100vh;
  position: relative;
  z-index: 3;
  overflow: hidden; 
}

.slider h1{
	color: white;
	padding: 15px 0;
	font-weight: bold;
	letter-spacing: 2px;
	line-height: 1;
    text-shadow: 2px 2px 5px var(--colDark);
}

  .slider h4 {
    font-size: 26px;
    color: white;
    margin-bottom: 50px;
    margin-top: 20px;
    font-weight: 600;
	  letter-spacing: 2px;
      text-shadow: 2px 2px 5px var(--colDark);
}


.slider #owlCarousel,
.slider .owl-stage-outer,
.slider .owl-stage,
.slider .owl-item-bg,
.slider .owl-item {
  min-height: 100vh; 
}

.slider .owl-item {
  display: inline-block;
  width: 100%;
  overflow: hidden;
  -webkit-backface-visibility: hidden; 
}

.slider .owl-item-bg {
  background-repeat: no-repeat;
  background-size: cover;
 	background-position: center;
}

.slide-content {
  padding-top: 38vh; 
}

.slider .back {
  position: absolute;
  width: 100%;
  min-height: 100vh;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
	background: rgba(0,0,0,0.2);
   }

.slide-text-box {
  z-index: 4; 
}

#slider.owl-theme .owl-controls .owl-nav .owl-prev{
	background-color: transparent;
	font-size: 25px;
	position: absolute;
	top: 55%;
	left: 2%
}

#slider.owl-theme .owl-controls .owl-nav .owl-next{
	background-color: transparent;
	font-size: 25px;
	position: absolute;
	top: 55%;
	right: 2%
}

.btnSLider{
	padding: 10px 0;
}

.btnSLider a:first-of-type{
	background-color: var(--colGreen);
	text-decoration: none;
	padding: 20px 40px;
	border: 2px solid var(--colGreen);
    border-top-left-radius: 10px;
    border-bottom-right-radius: 10px;
	color: white;
	text-transform: uppercase;
	font-weight: 600;
    transition: all 0.6s ease 0s;
}

.btnSLider a:first-of-type:hover{
	background-color: var(--colDark);
	text-decoration: none;
	border: 2px solid var(--colDark);
	color: white;
}

.btnSLider a:last-of-type{
	background-color: var(--colDark);
	text-decoration: none;
	padding: 20px 40px;
	border: 2px solid var(--colDark);
    border-top-left-radius: 10px;
    border-bottom-right-radius: 10px;
	color: white;
	text-transform: uppercase;
	font-weight: 600;
    transition: all 0.6s ease 0s;
}

.btnSLider a:last-of-type:hover{
	background-color: var(--colGreen);
	text-decoration: none;
	border: 2px solid var(--colGreen);
	color: white;
}

/* WHY US */

#why-us{
    padding: 80px 0;
    width: 100%;
    height: auto;
}

.title-why{
    min-height: 450px;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.title-why h2{
    color: var(--colGreen);
    margin-bottom: 20px;
}

.title-why h2 span{
    font-family: 'Lora', serif;
    font-weight: 600;
    color: var(--colDark);
}

.title-why p{
    margin-bottom: 0;
}

.img-why{
    width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.padd-why-img{
    padding-left: 0;
}

.padd-why-text{
    padding-right: 0;
}

.btn-why{
    padding: 20px 0;
}

.btn-why a{
	background-color: var(--colDark);
	text-decoration: none;
	padding: 20px 40px;
	border: 2px solid var(--colDark);
    border-top-left-radius: 10px;
    border-bottom-right-radius: 10px;
	color: white;
	text-transform: uppercase;
	font-weight: 600;
    transition: all 0.6s ease 0s;
}

.btn-why a:hover{
	background-color: #fff;
	text-decoration: none;
	border: 2px solid #fff;
	color: var(--colDark);
}

.text-why{
    background-color: var(--colGreen);
    padding: 40px 20px;
}

.text-why h3{
    color: var(--colLight);
    margin-bottom: 0;
}

.text-why p{
    color: white;
    margin-top: 20px;
    margin-bottom: 40px;
}

.text-since{
    padding: 40px 10px;
}

.text-since h3{
    color: var(--colGreen);
    margin-bottom: 20px;
}

.text-since p{

}

.text-since h5{
    margin-bottom: 0;
    color: var(--colDark);
}

/* POROJECTS */

#projects{
    background-color: var(--colDark);
    padding: 80px 0;
    width: 100%;
    height: auto;
}

.title-projects{
    
}

.title-projects h2{
    color: #fff;
    margin-bottom: 20px;
    margin-bottom: 0;
}

.title-projects h2 span{
    font-family: 'Lora', serif;
    font-weight: 600;
    color: var(--colGreen);
}

.text-projects{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.text-projects ul{
    text-align: right;
    margin-bottom: 0;
}

.text-projects ul li{
    list-style: none;
    color: #fff;
    display: inline;
    font-weight: 500;
    margin-left: 15px;
    cursor: pointer;
    font-size: 18px;
}

.text-projects ul li:hover{
    color: var(--colGreen);
}

.lawn-project, .garden-project, .planting-project, .snow-project{
    margin-top: 60px;
}

.img-projects{
    width: 100%;
    height: 250px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    
}

.img-projects a{
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: rgba(106,175,8,0.7);
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 25px;
    opacity: 0;
    transition: all 0.6s ease 0s;
}

.img-projects:hover a{
    opacity: 1;
}

.padd-proj{
    padding: 15px;
}

.active-proj{
    color: var(--colGreen) !important;
}

/* WELCOME */

#welcome{
    padding: 80px 0;
    width: 100%;
    height: auto;
}

.title-welcome{
    margin-bottom: 60px;
}

.title-welcome h2{
    color: var(--colDark);
    margin-bottom: 20px;
    margin-bottom: 0;
}

.title-welcome h2 span{
    font-family: 'Lora', serif;
    font-weight: 600;
    color: var(--colGreen);
}

.padd-welcome{
    padding: 15px;
}

.img-welcome{
    width: 100%;
    height: 300px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-top-left-radius: 10px;
    border-bottom-right-radius: 10px;
    position: relative;
}

.img-welcome a{
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(106,175,8,0.7);
    opacity: 0;
    transition: all 0.6s ease 0s;
}

.img-welcome a:hover{
    opacity: 1;
}

.text-welcome{
    text-align: center;
    margin-top: 15px;
}

.text-welcome h4{
    margin-bottom: 0;
    margin-top: 15px;
}

.text-welcome h4 a{
    text-decoration: none;
    color: var(--colDark);
    font-weight: 500;
}

.text-welcome h4 a:hover{
    color: var(--colGreen);
}

.free-estimate{
    background-image: url(..//images/sli2.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: auto;
    border-top-right-radius: 10px;
    border-bottom-left-radius: 10px;
    margin-top: 60px;
}

.bg-free-est{
    background: rgba(106,175,8,0.8);
    width: inherit;
    height: inherit;
    padding: 40px;
    text-align: center;
    border-top-right-radius: 10px;
    border-bottom-left-radius: 10px;
}

.bg-free-est h4{
    color: white;
    margin-bottom: 0;
}

.bg-free-est h4 br{
    display: none;
}

.bg-free-est h4 a{
    color: #fff;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 400;
    border: 1px solid var(--colDark);
    background-color: var(--colDark);
    padding: 10px 15px;
    text-decoration: none;
    transition: all 0.6s ease 0s;
}

.bg-free-est h4 a:hover{
    border: 1px solid #fff;
    background-color: #fff;
    color: var(--colDark);
    text-decoration: none;
}

/* CLIENTS */

#clients{
    width: 100%;
    height: auto;
    padding: 80px 0;
    border-top: 1px solid #eeeeee;
    border-bottom: 1px solid #eeeeee;
}

.marg-our{

}

.img-our-client{
    background-image: url(..//images/gall1.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    min-height: 300px;
    position: relative;
    border-top-right-radius: 10px;
}

.img-our-client::after{
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    border-top-right-radius: 10px;
}

.img-our-client h2{
    color: #fff;
    margin-bottom: 20px;
    margin-bottom: 0;
    position: absolute;
    z-index: 1;
    left: 20px;
    bottom: 35px;
}

.img-our-client h2 span{
    font-family: 'Lora', serif;
    font-weight: 600;
    color: var(--colGreen);
}

.box-client{
    background-color: var(--colGreen);
    border-bottom-left-radius: 10px;
    padding: 40px 20px;
}

.box-client h3{
    color: var(--colLight);
    margin-bottom: 15px;
}

.box-client p{
    color: #fff;
    margin-bottom: 40px;
}

.btn-client{
    padding: 20px 0;
}

.btn-client a{
	background-color: var(--colDark);
	text-decoration: none;
	padding: 20px 40px;
	border: 2px solid var(--colDark);
    border-top-left-radius: 10px;
    border-bottom-right-radius: 10px;
	color: white;
	text-transform: uppercase;
	font-weight: 600;
    transition: all 0.6s ease 0s;
}

.btn-client a:hover{
	background-color: #fff;
	text-decoration: none;
	border: 2px solid #fff;
	color: var(--colDark);
}

.padd-client{
    
}

.img-clients{
    background-image: url(..//images/slide2.jpeg);
    width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    display: flex;
    align-items: center;
}

.img-clients::after{
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
}

/* TESTIMONIALS */

.clients-say{
    padding: 60px;
    text-align: center;
}

.clients-say .desc{
    font-size: 20px;
    font-weight:400;
    font-style: italic;
    color: #fff;
    padding-bottom: 40px;
    margin-bottom: 40px;
    position: relative;
}

.clients-say .desc:before{
    content: "";
    width: 75%;
    border-top: 1px solid #ddd;
    margin: 0 auto;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.clients-say .desc:after{
    content: "";
    width: 20px;
    height: 20px;
    background: #fff;
    position: absolute;
    bottom: -10px;
    left: 50%;
    border-bottom: 1px solid #ddd;
    border-right: 1px solid #ddd;
    transform: translateX(-50%) rotate(45deg);
}

.clients-say .name-client{
    display: inline-block;
    font-size: 23px;
    font-weight: 700;
    color: #fff;
    text-transform: capitalize;
    margin: 0;
}
.clients-say .tag-client{
    display: inline-block;
    font-size: 20px;
    color: var(--colGreen);
}

#testimonial-slider.owl-theme .owl-controls{
    margin-top: 10px;
    position: absolute;
    bottom: -5%;
    right: 47%;
}

#testimonial-slider.owl-theme .owl-dots .owl-dot.active span{
    background-color: var(--colGreen) !important;
}

#testimonial-slider.owl-theme .owl-controls .owl-dots span{
    background-color: #fff;
}

/* NEWS */

#news{
    padding: 80px 0;
    width: 100%;
    height: auto;
}

.title-news{
    text-align: center;
}

.title-news h2{
    color: var(--colDark);
    margin-bottom: 20px;
    margin-bottom: 0;
    margin-bottom: 60px
}

.title-news h2 span{
    font-family: 'Lora', serif;
    font-weight: 600;
    color: var(--colGreen);
}

.padd-news{
    padding: 15px;
}

.box-news{
    box-shadow: 8px 8px 15px #eeeeee;
    transition: all 0.6s ease 0s;
}

.img-news{
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    min-height: 250px;
}

.text-news{
    padding: 20px;
}

.text-news h6{
    font-size: 14px;
}

.text-news h6:first-of-type{
    color: var(--colGreen);
}

.text-news h3{
    margin: 15px 0;
}

.text-news h6:last-of-type{
    color: var(--textGrey);
}

.text-news p{
    margin: 15px 0;
}

.text-news a{
    text-decoration: none;
    color: var(--colGreen);
    font-weight: 500;
}

.text-news a:hover{
    text-decoration: none;
    color: var(--colDark);
}

.box-news:hover{
    box-shadow: none;
}

/* FOOTER */

footer{
    background-color: var(--colDark);
    padding: 80px 0;
    width: 100%;
    height: auto
}

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

.text-footer h2{
    color: #fff;
    margin-bottom: 20px;
}

.btn-footer{
    padding: 20px 0;
}

.btn-footer a{
	background-color: var(--colGreen);
	text-decoration: none;
	padding: 20px 40px;
	border: 2px solid var(--colGreen);
    border-top-left-radius: 10px;
    border-bottom-right-radius: 10px;
	color: white;
	text-transform: uppercase;
	font-weight: 600;
    transition: all 0.6s ease 0s;
}

.btn-footer a:hover{
	background-color: #fff;
	text-decoration: none;
	border: 2px solid #fff;
	color: var(--colDark);
}

.info{
    margin-top: 20px;
}

.info li{
    list-style: none;
}

.info li a{
    text-decoration: none;
    font-weight: 500;
    color: #fff;
}

.info li a:hover{
    text-decoration: none;
    color: var(--colGreen);
}

.icons-foo{
    
}

.icons-foo li{
    list-style: none;
    display: inline;
    margin: 0 5px;
}

.icons-foo li a i{
    color: #fff;
    font-size: 22px;
}

.icons-foo li a i:hover{
    color: var(--colGreen);
}

.text-footer p{
    color: #fff;
    margin-bottom: 0;
}

/* RESPONSIVE HOME PAGE */

@media (min-width: 992px) and (max-width: 1199px) {
    .right-top ul li{
        font-size: 14px;
    }
    #slider.owl-theme .owl-controls .owl-nav .owl-prev{
        top: 55%;
        left: 0%
    }

    #slider.owl-theme .owl-controls .owl-nav .owl-next{
        top: 55%;
        right: 0%
    }
    .bg-free-est h4 br{
        display: block;
    }
    .img-our-client{
        min-height: 250px;
    }
}

@media (min-height: 1366px){
    
}

@media (min-width: 768px) and (max-width: 991px) {
    .right-top{
        display: none;
    }
    .left-top{
        text-align: center;
    }
    
    #slider.owl-theme .owl-controls .owl-nav .owl-prev{
        top: 55%;
        left: 0%
    }

    #slider.owl-theme .owl-controls .owl-nav .owl-next{
        top: 55%;
        right: 0%
    }
    .slide-content{
        padding-top: 36vh;
    }
    .text-projects ul li{
        font-size: 14px;
    }
    .bg-free-est h4 br{
        display: block;
    }
    .img-our-client{
        min-height: 250px;
    }
    .clients-say{
        padding: 15px;
    }
    .clients-say .desc{
        font-size: 16px;
    }
}

@media (min-width: 481px) and (max-width: 767px) {
    h1{
        font-size: 60px;
    }
    .right-top{
        display: none;
    }
    .left-top{
        text-align: center;
    }
    .slide-content{
        padding-top: 32vh;
    }
    .title-why{
        padding: 0;
        min-height: auto;
        margin-bottom: 40px;
    }
    .img-why{
        width: 100%;
        height: 350px;
        margin-bottom: 40px;
    }
    .padd-why-img{
        padding-left: 15px;
    }
    .padd-why-text{
        padding-right: 15px;
    }
    .text-since{
        padding: 0;
        margin-top: 40px;
    }
    .text-projects{
        justify-content: flex-start;
        margin-top: 20px;
    }
    .text-projects ul{
        text-align: left;
    }
    .img-projects{
        height: 220px;
    }
    .img-projects a{
        opacity: 1;
    }
    .bg-free-est h4 br{
        display: block;
    }
    .marg-our{
        margin-bottom: 40px;
    }
    
}

@media (min-width: 321px) and (max-width: 480px) {
    h1{
        font-size: 50px;
    }
    h2{
        font-size: 40px;
    }
    #why-us, #projects, #welcome, #clients, #news, footer{
        padding: 40px 0;
    }
    .right-top{
        display: none;
    }
    .left-top{
        text-align: center;
    }
    .slide-content{
        padding-top: 30vh;
        padding-bottom: 10vh;
    }
    .btnSLider a:first-of-type{
        display: block;
        margin-bottom: 10px;
        text-align: center;
    }
    .btnSLider a:last-of-type{
        display: block;
        text-align: center;
    }
    .title-why{
        padding: 0;
        min-height: auto;
        margin-bottom: 40px;
    }
    .img-why{
        width: 100%;
        height: 250px;
        margin-bottom: 40px;
    }
    .padd-why-img{
        padding-left: 15px;
    }
    .padd-why-text{
        padding-right: 15px;
    }
    .text-since{
        padding: 0;
        margin-top: 40px;
    }
    .text-projects{
        justify-content: flex-start;
        margin-top: 20px;
    }
    .text-projects ul{
        text-align: left;
    }
    .img-projects{
        height: 250px;
    }
    .img-welcome{
        height: 250px;
    }
    .img-projects a{
        opacity: 1;
    }
    .bg-free-est h4 br{
        display: block;
    }
    .img-our-client{
        min-height: 250px;
    }
    .clients-say{
        padding: 15px;
    }
    .clients-say .desc{
        font-size: 16px;
    }
    .marg-our{
        margin-bottom: 40px;
    }
    .img-clients{
        padding: 60px 0;
    }
    .title-news{
        text-align: left;
    }
}

@media (max-width: 320px) {
    h1{
        font-size: 40px;
    }
    h2{
        font-size: 30px;
    }
    #top{
        padding: 15px 0;
    }
    #why-us, #projects, #welcome, #clients, #news, footer{
        padding: 40px 0;
    }
    .right-top{
        display: none;
    }
    .left-top{
        text-align: center;
    }
    .slide-content{
        padding-top: 30vh;
        padding-bottom: 10vh;
    }
    .slider h4{
        font-size: 18px;
    }
    .btnSLider a:first-of-type{
        display: block;
        margin-bottom: 10px;
        text-align: center;
    }
    .btnSLider a:last-of-type{
        display: block;
        text-align: center;
    }
    
    .title-why{
        padding: 0;
        min-height: auto;
        margin-bottom: 40px;
    }
    .img-why{
        width: 100%;
        height: 220px;
        margin-bottom: 40px;
    }
    .img-welcome{
        height: 220px;
    }
    .padd-why-img{
        padding-left: 15px;
    }
    .padd-why-text{
        padding-right: 15px;
    }
    .text-since{
        padding: 0;
        margin-top: 40px;
    }
    .text-projects{
        justify-content: flex-start;
        margin-top: 20px;
    }
    .text-projects ul{
        text-align: left;
    }
    .img-projects{
        height: 220px;
    }
    .img-projects a{
        opacity: 1;
    }
    .bg-free-est{
        padding-top: 40px;
        padding-left: 0;
        padding-right: 0;
        padding-bottom: 55px;
    }
    .bg-free-est h4 br{
        display: block;
    }
    .img-our-client{
        min-height: 220px;
    }
    .clients-say{
        padding: 15px;
    }
    .clients-say .desc{
        font-size: 16px;
    }
    .marg-our{
        margin-bottom: 40px;
    }
    .img-clients{
        padding: 60px 0;
    }
    .img-news{
        min-height: 220px;
    }
    .title-news{
        text-align: left;
    }
}