:root{
    --colGreen: #7fa409;
    --colDark: #222222;
    --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.1;
    font-weight: 800;
}

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: var(--colDark);
    width: 100%;
    height: auto;
    padding: 15px 0;
}

.left-top ul{
    margin-bottom: 0;
}

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

.left-top ul li a{
    text-decoration: none;
    color: white;
}

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

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

.right-top ul li{
    list-style: none;
    display: inline;
    margin-left: 5px;
}

.right-top ul li a i{
    color: #fff;
    font-size: 22px;
}

/* NAVBAR */

.navbar {
    transition: all 0.4s ease;    
    padding: 10px 0;
}

.navbar-collapse{
    background-color: #fff;
    padding: 20px 0;
}

.navbar-nav{

}

.navbar .nav-link {
    color: var(--colDark);
    margin: 0 5px;
    padding: 12px 0;
}

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

.navbar .navbar-brand {
    color: var(--colGreen);
}


/* 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;
    text-transform: uppercase;
    border-radius: 30px;
    color: #fff !important;
    transition: all 0.6s ease 0s;
    border: 2px solid var(--colGreen);
}

.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: var(--colDark);
        text-align: center;
    }
    
    .navbar-toggler{
        text-align: center;
        margin-left: auto;
        color: var(--colDark);
    }
    
    .navbar{
        margin-top: 0px;
        background-color: #fff;
        padding: 15px 0;
    }
    
    #top{
        padding: 10px 0;
    }
    .navbar-brand{
        margin-right: 0;
    }
}

/* SLIDER */

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

.slider h5{
    color: white;
    text-transform: uppercase;
}

.slider span{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 30px 0;
}

.slider span hr{
    width: 45px;
    height: 1px;
    background-color: var(--colGreen);
    margin: 0;
}

.slider span i{
    font-size: 22px;
    color: var(--colGreen);
    margin: 0 10px;
}

.slider h1{
	color: white;
	padding: 15px 0;
}

  .slider h4 {
    font-size: 24px;
    color: white;
    margin-bottom: 50px;
    margin-top: 20px;
    font-weight: 600;
}


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

.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;
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
}

.slide-content {
  text-align: center;
}

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

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

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

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

.btnSLider{
    margin-top: 60px;
    margin-bottom: 15px;
}

.btnSLider a{
    margin: 0 10px;
}

.btnSLider a:first-of-type{
	background-color: var(--colGreen);
	text-decoration: none;
	padding: 15px 40px;
	border: 2px solid var(--colGreen);
	color: #fff;
    border-radius: 30px;
	text-transform: uppercase;
	font-weight: 500;
    transition: all 0.6s ease 0s;
}

.btnSLider a:hover:first-of-type{
	background-color: #fff;
    border: 2px solid #fff;
    color: var(--colGreen);
}

.btnSLider a:last-of-type{
	background-color: #fff;
	text-decoration: none;
	padding: 15px 40px;
	border: 2px solid #fff;
	color: var(--colGreen);
    border-radius: 30px;
	text-transform: uppercase;
	font-weight: 500;
    transition: all 0.6s ease 0s;
}

.btnSLider a:hover:last-of-type{
	background-color: var(--colGreen);
    border: 2px solid var(--colGreen);
    color: #fff;
}

/* WHY */

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

.text-why h2{
    
}

.text-why span{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: 30px 0;
}

.text-why span hr{
    width: 45px;
    height: 1px;
    background-color: var(--colGreen);
    margin: 0;
}

.text-why span i{
    font-size: 22px;
    color: var(--colGreen);
    margin: 0 10px;
}

.text-why p:last-of-type{
    border-left: 2px solid var(--colGreen);
    padding: 20px;
    font-weight: 500;
}

.btn-why{
    margin-top: 40px;
    margin-bottom: 15px;
}

.btn-why a{
	background-color: var(--colGreen);
	text-decoration: none;
	padding: 15px 40px;
	border: 2px solid var(--colGreen);
	color: #fff;
    border-radius: 30px;
	text-transform: uppercase;
	font-weight: 500;
    transition: all 0.6s ease 0s;
}

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

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

/* WHO */

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

.text-who h2{
    color: #fff;
}

.text-who span{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: 30px 0;
}

.text-who span hr{
    width: 45px;
    height: 1px;
    background-color: var(--colGreen);
    margin: 0;
}

.text-who span i{
    font-size: 22px;
    color: var(--colGreen);
    margin: 0 10px;
}

.text-who p{
    color: #fff;
}

.text-who ul{
    
}

.text-who ul li{
    list-style: none;
    color: #fff;
    margin-bottom: 2px;
}

.text-who ul li i{
    color: var(--colGreen);
}

.btn-who{
    margin-top: 40px;
    margin-bottom: 15px;
}

.btn-who a{
	background-color: var(--colGreen);
	text-decoration: none;
	padding: 15px 40px;
	border: 2px solid var(--colGreen);
	color: #fff;
    border-radius: 30px;
	text-transform: uppercase;
	font-weight: 500;
    transition: all 0.6s ease 0s;
}

.btn-who a:hover{
	background-color: #fff;
    border: 2px solid #fff;
    color: var(--colGreen);
}

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

/* SERVICES */

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

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

.title-services h2{

}

.title-services span{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    margin-bottom: 60px;
}

.title-services span hr{
    width: 45px;
    height: 1px;
    background-color: var(--colGreen);
    margin: 0;
}

.title-services span i{
    font-size: 22px;
    color: var(--colGreen);
    margin: 0 10px;
}

.padd-serv{
    padding: 15px;
}

.box-services{
    transition: all 0.6s ease 0s;
    position: relative;
}

.box-services:hover{
    box-shadow: 8px 8px 15px #eeeeee;
    transform: translateY(-10px);
}

.box-services a{
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

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

.text-services{
    padding: 25px 10px;
}

.text-services h4{
    text-align: center;
    margin-bottom: 15px;
    font-weight: 600;
}

.text-services p{
    text-align: center;
    color: var(--textGrey);
    margin-bottom: 0;
}

/* HAVE */

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

.text-have h3{
    color: #fff;
    margin-bottom: 0;
    margin-top: 12px;
}

.btn-have{
    text-align: right;
    margin: 15px 0;
}

.btn-have a{
	background-color: var(--colGreen);
	text-decoration: none;
	padding: 15px 40px;
	border: 2px solid var(--colGreen);
	color: #fff;
    border-radius: 30px;
	text-transform: uppercase;
	font-weight: 500;
    transition: all 0.6s ease 0s;
}

.btn-have a:hover{
	background-color: #fff;
    border: 2px solid #fff;
    color: var(--colGreen);
}

/* FEATURE */

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

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

.title-feature span{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    margin-bottom: 30px;
}

.title-feature span hr{
    width: 45px;
    height: 1px;
    background-color: var(--colGreen);
    margin: 0;
}

.title-feature span i{
    font-size: 22px;
    color: var(--colGreen);
    margin: 0 10px;
}

.title-feature p{
    color: var(--textGrey);
    margin-bottom: 60px;
}

.padd-faet{
    padding: 15px;
}

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

.img-feature a{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0,0,0,0.7);
    color: white;
    font-weight: 500;
    font-size: 22px;
    opacity: 0;
    transition: all 0.6s ease 0s;
}

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

/* REVIEWS */

#reviews{
    background-image: url(..//images/bg-test1.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: auto;
    position: relative;
}

.bg-reviews{
    background: rgba(0,0,0,0.2);
    width: inherit;
    height: inherit;
    padding-top: 120px;
    padding-bottom: 180px;
}

.review{
    border-left: 4px solid var(--colGreen);
    box-shadow: 5px 5px 6px rgba(0, 0, 0, 0.06);
    padding: 30px 30px 30px 30px;
    margin: 0 15px 0px 15px;
    overflow: hidden;
    position: relative;
    background-color: #fff;
}

.review:before{
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    border-top: 25px solid var(--colGreen);
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    transform: rotate(-45deg);
    transform-origin: 80% -30% 0;
}


.review .text-rev{
    font-size: 15px;
    font-style: italic;
    line-height: 25px;
    margin-bottom: 15px;
}

.review .name{
    display: inline-block;
    font-size: 20px;
    font-weight: 700;
    color: var(--colGreen);
    margin: 0;
    text-transform: capitalize;
}

.review .post{
    display: inline-block;
    font-size: 17px;
    color: var(--colDark);
}

#testimonial-slider.owl-theme .owl-controls{
    margin-top: 10px;
    position: absolute;
    bottom: -35%;
    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;
}

/* FOOTER */

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

.text-footer{
    
}

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

.text-footer p{
    color: #fff;
    font-size: 14px;
}

.icon-foo{
    
}

.icon-foo li{
    list-style: none;
    display: inline;
}

.icon-foo li a i{
    font-size: 22px;
    margin-right: 5px;
    color: #fff !important;
}

.text-footer ul li i{
    color: var(--colGreen);
    margin-right: 5px;
}

.text-footer ul li{
    margin-bottom: 5px;
    position: relative;
    color: #fff;
    list-style: none;
}

.text-footer ul li a{
    text-decoration: none;
    color: #fff;
}

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

.foo-info li i{
    position: absolute;
    top: 3px;
}

.foo-info li a{
    margin-left: 25px;
}

.copy{
    
}

.copy hr{
    background-color: #fff;
    margin: 40px 0;
}

.copy p{
    font-size: 14px;
    margin-bottom: 0;
    color: #fff;
}

/* RESPONSIVE HOME PAGE */

@media (min-width: 992px) and (max-width: 1199px) {
    .nav-link{
        font-size: 14px;
    }
    .btn-top-1{
        padding: 10px 25px !important;
    }
    #slider.owl-theme .owl-controls .owl-nav .owl-prev{
        top: 45%;
        left: 0%
    }

    #slider.owl-theme .owl-controls .owl-nav .owl-next{
        top: 45%;
        right: 0%
    }
}

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

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

    #slider.owl-theme .owl-controls .owl-nav .owl-next{
        top: 45%;
        right: 0%
    }
    .img-why{
        width: 100%;
        height: 450px;
        margin-top: 40px;
    }
    .who-ord-1{
        order: 1;
    }
    .who-ord-2{
        order: 2;
    }
    .img-who{
        width: 100%;
        height: 450px;
        margin-top: 40px;
    }
    .text-have h3{
        margin-top: 0;
        text-align: center;
    }
    .btn-have{
        text-align: center;
        margin-top: 40px;
    }
    #testimonial-slider.owl-theme .owl-controls{
        margin-top: 10px;
        bottom: -35%;
        right: 42%;
    }
    .info-foo, .open-foo{
        margin-top: 20px;
    }
}

@media (min-width: 481px) and (max-width: 767px) {
    .left-top ul{
        text-align: center;
    }
    .left-top ul li{
        font-size: 12px;
    }
    .right-top ul{
        text-align: center;
        margin-top: 15px;
    }
    h1{
        font-size: 60px;
    }
    .img-why{
        width: 100%;
        height: 350px;
        margin-top: 40px;
    }
    .who-ord-1{
        order: 1;
    }
    .who-ord-2{
        order: 2;
    }
    .img-who{
        width: 100%;
        height: 350px;
        margin-top: 40px;
    }
    .img-services{
        height: 200px;
    }
    .text-have h3{
        margin-top: 0;
        text-align: center;
    }
    .btn-have{
        text-align: center;
        margin-top: 40px;
    }
    .img-feature{
        height: 200px;
    }
    .serv-foo, .info-foo, .open-foo{
        margin-top: 10px;
    }
    .bg-reviews{
        padding: 100px 0;
    }
}

@media (min-width: 321px) and (max-width: 480px) {
    .left-top ul{
        display: none;
    }
    .right-top ul{
        text-align: center;
    }
    .navbar .navbar-brand{
        margin-left: 10px;
    }
    h1{
        font-size: 50px;
    }
    h2{
        font-size: 40px;
    }
    .slider h4{
        font-size: 22px;
    }
    .btnSLider a:first-of-type{
        display: block;
    }
    .btnSLider a:last-of-type{
        display: block;
        margin-top: 10px;
    }
    .slider span{
        margin: 10px 0;  
    }
    .img-why{
        width: 100%;
        height: 250px;
        margin-top: 40px;
    }
    .who-ord-1{
        order: 1;
    }
    .who-ord-2{
        order: 2;
    }
    .img-who{
        width: 100%;
        height: 250px;
        margin-top: 40px;
    }
    .img-services{
        height: 250px;
    }
    .text-have h3{
        margin-top: 0;
        text-align: center;
    }
    .btn-have{
        text-align: center;
        margin-top: 40px;
    }
    .img-feature{
        height: 250px;
    }
    .serv-foo, .info-foo, .open-foo{
        margin-top: 10px;
    }
    .bg-reviews{
        padding: 80px 0;
    }
    #why, #who, #services,#feature, footer{
        padding: 40px 0;
    }
}

@media (max-width: 320px) {
    .left-top ul{
        display: none;
    }
    .right-top ul{
        text-align: center;
    }
    .navbar .navbar-brand{
        margin-left: 10px;
    }
    .slide-text-box{
        padding: 20px 0 10px 0;
    }
    h1{
        font-size: 40px;
    }
    h2{
        font-size: 30px;
    }
    .slider h4{
        font-size: 18px;
        padding: 0 5px;
    }
    .btnSLider a:first-of-type{
        display: block;
    }
    .btnSLider a:last-of-type{
        display: block;
        margin-top: 10px;
    }
    .slider span{
        margin: 10px 0;  
    }
    .img-why{
        width: 100%;
        height: 250px;
        margin-top: 40px;
    }
    .who-ord-1{
        order: 1;
    }
    .who-ord-2{
        order: 2;
    }
    .img-who{
        width: 100%;
        height: 250px;
        margin-top: 40px;
    }
    .img-services{
        height: 250px;
    }
    .text-have h3{
        margin-top: 0;
        text-align: center;
    }
    .btn-have{
        text-align: center;
        margin-top: 40px;
    }
    .img-feature{
        height: 250px;
    }
    .serv-foo, .info-foo, .open-foo{
        margin-top: 10px;
    }
    .bg-reviews{
        padding: 80px 0;
    }
    #why, #who, #services,#feature, footer{
        padding: 40px 0;
    }
    .review .text-rev{
        font-size: 13px;
    }
}