/* Green Village  HTML5 Template */


/************ TABLE OF CONTENTS ***************
1. Fonts
2. Open+Sans
3. Lora
4. Main Header 
5. Main Slider 
6. About Us
7. Reservation
9. Main Footer 
10. Faq Item
11. Reservation Style 
12. About Style
13. Gallery  Item
14. Blog Classic 
15. Sidebar
16. Sidebar Widgets
17. Blog Single 
18. Comments 
19. Comment Form
 

**********************************************/

@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,700');

@import url('font-awesome.css');
@import url('../fonts/flaticon.css');
@import url('component.css');
@import url('owl.css');
@import url('animate.css');
@import url(../revolution/css/settings.css);
@import url('hover.css');


/*** 

====================================================================
  Reset
====================================================================

 ***/

* {
    margin: 0px;
    padding: 0px;
    border: none;
    outline: none;
}


/*** 

====================================================================
  Global Settings
====================================================================

 ***/

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    color: #555555;
    line-height: 1.8em;
    font-weight: 400;
    background: #ffffff;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center top;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    cursor: pointer;
    color: #009ed4;
}

a:hover,
a:focus,
a:visited {
    text-decoration: none;
    outline: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    position: relative;
    font-family: 'Roboto', sans-serif;
    font-weight: normal;
    margin: 0px;
    color: #272727;
    background: none;
}

input,
button,
select,
textarea {    
 font-family: 'Open Sans', sans-serif;
}

p {
    position: relative;
    font-family: 'Open Sans', sans-serif;
    
}
img{
  max-width: 100%;
  
}

.margin-top-25 {
  margin-top: 25px;
}
/*
=============================================
  sec title
=============================================
*/
.sec-title{
  margin-bottom: 40px;
}
.sec-title h2{
  text-transform: capitalize;
  font-weight: 500;
}
.sec-title span{
    color: #00995D;
}
.sec-title h2 :before {
    content: "";
    left: 0;
    position: absolute;
    bottom: -12px;
    width: 56px;
    height: 3px;
    background: rgb(117, 181, 25);
}
/*
=============================================
*/


.strike-through {
    text-decoration: line-through;
}

.auto-container {
    position: static;
    max-width: 1200px;
    padding: 0px 15px;
    margin: 0 auto;
}

.medium-container {
    max-width: 850px;
}

.page-wrapper {
    margin: 0 auto;
    min-width: 300px;
    position: relative;
    width: 100%;
    overflow: hidden;
}

ul,
li {
    list-style: none;
    padding: 0px;
    margin: 0px;
}

@media (min-width: 1200px) {
    .container {
        padding: 0
    }
    .container-fluid {padding: 0;}
}

.preloader {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 999999;
    background-color: #ffffff;
    background-position: center center;
    background-repeat: no-repeat;
    background-image: url(../imagens/resources/preloader.gif);
}
.pd-0{padding: 0px;}
#html5-watermark div {
  display: none;
  background: none;
  opacity: 0;
}


.thm-btn{
    background: #00995D;
    border: 2px solid #00995D;
    /* text-transform: capitalize; */
    padding: 6px 28px;
    font-size: 16px;
    font-weight: 600;
    display: inline-block;
    position: relative;
    text-align: center;
    margin-top: 40px;
    color: #fff;
    border-radius: 3px;
    transition: all 500ms ease 0s;
}



.thm-btn:hover{
  background:#fff;
  color:#00995D;
}

/*** 

====================================================================
  Scroll To Top style
====================================================================

***/

.scroll-to-top {
    position: fixed;
    bottom: 15px;
    right: 15px;
    width: 46px;
    height: 40px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    border: 2px solid #00995D;
    background: #00995D;
    line-height: 38px;
    text-align: center;
    z-index: 100;
    cursor: pointer;
    display: none;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    transition: all 300ms ease;
}

.scroll-to-top:hover {
    color: #00995D;
    background: #fff;
    border: 2px solid #00995D;
}


/*** 

====================================================================
  Main Header style
====================================================================
/* Fixed-Header */

.main-header{
  position:relative;
  left:0px;
  top:0px;
  z-index:999;
  width:100%;
  transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  -webkit-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
}
.bounce-in-header{
  position:fixed;
  opacity:0;
  visibility:hidden;
  left:0px;
  top:0px;
  width:100%;
  padding:0px 0px;
  background:#ffffff;
  z-index:0;
  border-bottom:1px solid #cccccc;
  transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  -webkit-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
}
.bounce-in-header.now-visible{
  z-index:999;
  opacity:1;
  visibility:visible;
  -ms-animation-name: fadeInDown;
  -moz-animation-name: fadeInDown;
  -op-animation-name: fadeInDown;
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
  -ms-animation-duration: 500ms;
  -moz-animation-duration: 500ms;
  -op-animation-duration: 500ms;
  -webkit-animation-duration: 500ms;
  animation-duration: 500ms;
  -ms-animation-timing-function: linear;
  -moz-animation-timing-function: linear;
  -op-animation-timing-function: linear;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -ms-animation-iteration-count: 1;
  -moz-animation-iteration-count: 1;
  -op-animation-iteration-count: 1;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1; 
}
.bounce-in-header .logo {
  padding-bottom: 22px;
  padding-top: 22px;
  width: 15%;
}
/* Start Header-Top Styles */
.header-top-left {
  float: left;
}
.header-top {
  background: #00995D;
  margin: 0;
  padding: 0;
}
.header-top p {
  color: #ffffff;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: bold;
  line-height: 24px;
  margin: 0;
  padding-bottom: 12px;
  padding-top: 8px;
}
.header-top p span {
  color: #00995D;

}
.header-top-right p {
  float: left;
  margin-right: 30px;
}
.header-top-right i {
  margin-right: 9px;
}
.header-top-right {
  position: relative;
    float: right;
}
.header-top-right a {
  color: #ffffff;
  font-size: 14px;
  padding-top: 8px;
  display: inline-block;
  transition: all 500ms ease 0s;
  font-family: 'Open Sans', sans-serif;
}
.header-top-right a:hover{color: #FFF;}
/* End Header-Top Styles */

/* Start Header-Bottom Styles */






/* End Header-Bottom Styles */

/*==============================================
    Mainmenu Area Css
===============================================*/
.mainmenu-area {
  border-top: 3px solid #00995D;
  background: #ffffff;
}
.mainmenu-area .logo {
  padding-bottom: 22px;
  padding-top: 22px;
  width: 15%;
}
.main-menu .navigation .current i {
  color: #00995D;
  float: left;
  font-size: 15px;
  margin-left: 0px;
  padding-top: 4px;
}
.main-menu {
  padding-top: 52px;
  margin-left: 115px;
}
.main-menu {
  position: relative;
}

.navbar-collapse {
  padding: 0px
}

.navigation {
  position: relative;
}
.navigation li {
  float: left;
  margin-left: 0;
  position: relative;
}

.navigation li a {
  color: #272727;
  display: block;
  font-family: "roboto",sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 500;
  opacity: 1;
  padding-left: 19px;
  padding-right: 10px;
  position: relative;
  transition: all 500ms ease 0s;
}
.navigation li:last-child {
    border-right: none;
}
.navigation > li:hover > a {
  color: #00995D;
}

.navigation > li > ul {
  position: absolute;
  left: 0px;
  top: 245%;
  background: #00995D;
  width: 180px;
  border-top: 2px solid #06223e;
  padding:0;
  z-index: 999;
  display: none;
}

.navigation > li > ul > li {
  position: relative;
  display: block;
  border-bottom: 1px solid #222;
  width: 100%;
  margin: 0px;
  border-right:none;
  padding: 0;
}
.main-menu .navigation > li > ul > li:last-child {
    border: none;
}
.main-menu .navigation > li > ul > li > a {
  color: #ffffff;
  display: block;
  font-size: 14px;
  font-weight: bold;
  line-height: 24px;
  padding: 8px 0 8px 20px;
  position: relative;
  transition: all 500ms ease 0s;
}

.navigation > li > ul > li:hover > a {
  color: #06223e;
}
.call-item {
  background: rgba(0, 0, 0, 0) url("../imagens/icon/1.png") no-repeat scroll 0 0;
  width: 212px;
  height: 52px;
  margin-top: 37px;
}
.call-item p {
  color: #ffffff;
  font-size: 18px;
  font-weight: bold;
  line-height: 30px;
  text-align: right;
  padding-right: 13px;
  padding-top: 12px;
}
.call-item p i{
  margin-right: 6px
}
/*** 
=============================================
    6. Rev Slider style
=============================================
***/
.rev_slider_wrapper {
    position: relative;
    z-index: 0;
}

.rev_slider_wrapper .slide-content-box h2{
  font-size: 30px;
  color:#FFFFFF;
  font-family: 'roboto', sans-serif;
  text-transform: capitalize;
  font-weight:700;
}
.rev_slider_wrapper .slide-content-box p{
  color: #FFFFFF;
  font-size: 18px;
  line-height: 24px;
  font-family: 'Open Sans', sans-serif;
  font-weight: bold;
  margin: 0 0 30px;
}
.rev_slider_wrapper .button .thm-btn:hover{
    background: #fff;
    color: #ff0000;
  border:2px solid #ff0000;
  transition:.5s;
}
.rev_slider_wrapper .slide-content-box .button a{
  padding: 0px 22px;
  margin-right: 15px;
  transition: all 500ms ease !important;
  -moz-transition: all 500ms ease !important;
  -webkit-transition: all 500ms ease !important;
  -ms-transition: all 500ms ease !important;
  -o-transition: all 500ms ease !important;
}
.rev_slider_wrapper .slide-content-box .button a.thm-btn.our-solution{
  background: #fff;
  padding: 0px 35px;
  color: #222;
  border-color: #fff;
}
.rev_slider_wrapper .slide-content-box .button a.thm-btn.our-solution:hover{
  background: #48c7ec;
  color: #fff;
  border-color: #48c7ec;
}

.rev_slider_wrapper .slide-content-box.last-slide p{
  margin: 0;    
}
.rev_slider_wrapper .slide-content-box.last-slide a{
  margin: 0 8px;    
}
.slide-content-box .btn{
  padding: 8px 30px;
  background: #00995D;
  border: 2px solid #00995D;
  color: #fff;
  font-weight: 400;
  font-size: 18px;
  transition: .5s;
}
.slide-content-box .btn:hover{
  
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
  transition: .5s;
}

.rev_slider_wrapper .slotholder {
  position: relative;
}

.slotholder:after {
  
    width: 100%;
    height: 100%;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    pointer-events: none;
}

.tp-bannertimer {
  display: none;
  
}

.rev_slider_wrapper .tparrows {
  background: transparent;
  border: 2px solid #fff;

}

.tp-revslider-mainul{
  width:100% !important;
}

/* Start section-title styles */

.section-title h2 {
  color: #272727;
  font-size: 48px;
  font-weight: bold;
  line-height: 58px;
  position: relative;
}
.section-title h4 {
  color: #272727;
  font-size: 48px;
  line-height: 58px;
  position: relative;
}
.section-title h4 span {
  color: #00995D;
  font-size: 48px;
  font-weight: bold;
  line-height: 58px;
  position: relative;
}
.section-title h2 span{color:#00995D}

.text-center{text-align: center;}
/* End section-title styles */





/* 
===================================================================
Start welcome-seciton styles 
===================================================================
*/

.welcome-seciton {
  padding:20px 0px 80px;
}

.welcome-item h2 {
color: #272727;
    font-weight: bold;
    font-size: 36px;
    line-height: 30px;
    margin-bottom: 25px;
    position: relative;
}
.welcome-item h2 :before{
    content: "";
    left: 0;
    position: absolute;
    bottom: -20px;
    width: 80px;
    height: 3px;
    background: rgb(117, 181, 25);
}
.welcome-item h2 span{
  color:#00995D;
}

.welcome-item p {
  color: #555555;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0.5px;
  margin: 0;
}
.welcome-item p.style-2{
  margin-top: 20px;
}
.welcome-item h4 {
    color: #272727;
    font-size: 20px;
    font-weight: bold;
    padding: 24px 0px 14px;
}
.welcome-item h4 a{color:#f47920}


/* End welcome-seciton styles */


/* 
================================================================
  Start blog-seciton styles 
================================================================
*/
.blog-seciton {
  padding-bottom: 65px;
  padding-top: 73px;
}
.blog-seciton .sec-title{
  margin-bottom: 24px;
}
.blog-seciton .blog-item .text h4 a {
  color: #272727;
  display: inline-block;
  float: none;
  font-size: 18px;
  font-weight: 500;
  line-height: 20px;
  margin: 3px 0px 8px;
  text-transform: none;
  transition: all 500ms ease 0s;
  height: auto;
  width: auto;
  background: none;
  text-align: left;
}
.blog-seciton .blog-item {
  margin-top: 26px;
}
.blog-seciton .blog-item:hover h4 a{
  color: #00995D;
}
.blog-seciton .blog-item .img-holder {
  overflow: hidden;
  position: relative;
}
.blog-seciton .blog-item .img-holder img {
    -webkit-transform: scale(1.1, 1.1);
    transform: scale(1.1, 1.1);
    -webkit-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
    width: 100%;
}
.blog-seciton .blog-item:hover .img-holder img {
  -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
}
.blog-seciton .blog-item .text h4 a:hover{color: #00995D;background:none;}
.blog-seciton .blog-item .text h5 i {
  margin-right: 7px;
  color: #272727;
  position: relative;
}
.blog-seciton .blog-item .text{

padding: 0px 17px 8px;

border: 1px solid #eee;
}
.blog-seciton .blog-item .comments{
  
margin: 15px 0px 0px;
}
.blog-seciton .blog-item .comments li{
  display: inline-block;
  margin-right: 20px;
}
.blog-seciton .blog-item .comments li i{
  margin-right: 10px;
  color: #00995D;
  font-size: 16px;
}
.blog-seciton .blog-item .text p {
  color: #222;
  font-size: 14px;
  line-height: 24px;
}
.blog-seciton .blog-item .text .deat-left {
  color: #272727;
  float: left;
  margin-right: 28px;
}

.blog-seciton .blog-item .text a {
  width: 117px;
  height: 41px;
  background: #272727;
  display: inline-block;
  text-align: center;
  font-size: 16px;
  color: #ffffff;
  font-weight: bold;
  border-radius: 3px;
  padding-top: 8px;
  transition: all 500ms ease 0s;
}
.blog-seciton .blog-item .text a:hover{background:#00995D;color:#ffffff}


.single-blog-seciton .blog-item .text {
  border: 0px;
  padding: 0px;
}
.single-blog-seciton .blog-item .text h4{
    margin: 10px 0px;
}
.single-blog-seciton .blog-item .text h5{margin-bottom: 10px;}
.single-blog-seciton .blog-item .text h5 i{
  color: #00995D;
}
.single-blog-seciton .blog-item .text p{
  color: #848484;
  margin-top: 20px;
}

.single-blog-seciton blockquote{
  position:relative;
  margin-left: 54px;
  padding: 0px 20px 0px 26px;
  line-height:2em;
  font-size: 14px;
  color: #848484;
  font-style: italic;
  border-left: 2px solid #e7e7e7;
  font-family: 'Open Sans', sans-serif;
}
.single-blog-seciton .quate{
  position:absolute;
  top: 24px;
  left: -50px;
  font-size: 30px;
  color: #B1D34B;
}

/*** 

====================================================================
  Comments Area
====================================================================

 ***/

.clients-comments{
  position:relative;  
}
.clients-comments .leave-comment .thm-btn:hover{
  border: 2px solid #c9aa80;
  color: #c9aa80;
}
.clients-comments .group-title{
  position:relative;
  margin-bottom: 0px;
  padding-bottom:15px;
}

.clients-comments .group-title h2{
  position: relative;
  display: block;
  margin: 50px 0px 10px;
  color: #222222;
  transition: .5s;
  font-size: 20px;
  font-weight: 500;
  text-transform: capitalize;
}

.clients-comments .group-title:before{
  content:'';
}

.clients-comments .group-title:after{
  content:'';
}

.clients-comments .comment-box{
  position:relative;  
}

.clients-comments .comment{
  position:relative;
  margin:0px 0px 40px 0px;
  padding:0px 0px 10px 100px; 
}

.clients-comments .reply-comment{
  margin-left:50px; 
}
.clients-comments .theme-btn.btn-theme-four{
  color: #00995D;
}
.clients-comments .comment-box .client-thumb{
  position:absolute;
  left:0px;
  top:0px;
  width:84px;
  height:84px;
  border:3px solid #ffffff;

}

.clients-comments .comment-box .client-thumb img{
  width:100%;
  display:block;
  border: 2px solid #00995D;
}

.clients-comments .comment-info{
  margin-bottom: 5px;
  color:#bcbcbc;
  font-size: 16px;
}

.clients-comments .comment-box h4{
  color: #222;
  font-weight: 600;
}
.clients-comments .comment-box .text{
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  color: #848484;
}
.clients-comments .reply-btn{
  color:#202020;
  font-size: 14px;
  margin-top: 5px;
}

.clients-comments .reply-btn .theme-btn{
  padding:6px 25px;
     margin: 0px 10px 5px;
  float:right;
}
.clients-comments .reply-btn .theme-btn:hover{
  color:#5f5f5f;
}
/*
========================================
  leave-comment
========================================
*/
.leave-comment .section-title{
  margin-bottom: 20px;
}
.leave-comment .default-form-area .form-group.style-two .form-control{
  height: 50px;
      border-radius: 0px;
}
.leave-comment .default-form-area .form-group.style-two .textarea{
  height: 150px;
  margin-top: 15px;
}
.leave-comment .default-form-area .form-group.style-two .textarea:focus{
  border: 1px solid #00995D;
  box-shadow: none;
}
.leave-comment .default-form-area .form-group.style-two .form-control:focus{
    border: 1px solid #00995D;
     box-shadow: none;
}
/* End blog-seciton styles */



/*
========================================================== 
  Start Footer-section Style 
========================================================== 
*/
.footer-section {
  background: #00995D;
  padding-top: 25px;
  position: relative;
}
.footer-section .widget {
  margin-left: -60px;
}
.news-widget {
  margin-left: 50px;
  margin-right: -40px;
}
.footer-section .link-widget {
  margin-left: 55px;
}
.footer-logo a img {
  margin-bottom: 23px;
  margin-top: 7px;
  width: 75%;
}
.footer-logo p {
  color: #00401A;
  font-size: 18px;
  line-height: 30px;
  margin: 0;
}
.footer-logo p i {
  margin-right: 6px;
  margin-bottom: 14px;
  margin-top: 7px;
  float: left;
}
.footer-logo p span {
  color: #fff;
  font-size: 18px;
  line-height: 30px;
}.footer-logo .location {
  margin-top: 5px;
}
.footer-item{padding-bottom: 100px}
.footer-item h2 {
  color: #B1D34B;
  font-size: 22px;
  font-weight: 600;
  line-height: 30px;
  position: relative;
  margin-bottom: 29px;
}
.news-widget .recent .img-nolder {
  display: inline-block;
  float: left;
  height: 100%;
  width: 70px;
  margin-right: 18px;
}
.news-widget .recent .text {
  display: inline-block;
  float: left;
  height: 100%;
  max-width: 170px;
}
.news-widget .recent .text h4 a {
  color: #fff;
  font-size: 16px;
  line-height: 24px;
  margin-top: -5px;
  display: block;
  transition: all 500ms ease 0s;
}
.news-widget .recent .text h4 a:hover{color:#00995D}
.news-widget .recent .text p {
  color: #B1D34B;
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  margin: 0;
  padding-top: 4px;
}
.recent.mr-42 {
  margin-bottom: 36px;
  overflow: hidden;
}
.link-widget ul {
  margin-top: -13px;
}
.link-widget ul li a i{margin-right: 6px;}
.link-widget ul li a {
  color: #fff;
  font-size: 16px;
  line-height: 34px;
  transition: all 500ms ease 0s;
  display: inline-block;
}
.link-widget ul li a:hover{color:#ccc}
.newsletter input {
  background: #272727 none repeat scroll 0 0;
  border-radius: 30px;
  color: #ffffff;
  border: none;
  height: 40px;
  padding-left: 23px;
}
.newsletter .form-control::-moz-placeholder {
  color: #ffffff;
  opacity: 1;
}
.newsletter input:focus {
    border-color:none;
    border:none;
    box-shadow:none;
}

.newsletter{position: relative}
.newsletter button {
  background: #B1D34B none repeat scroll 0 0;
  border-radius: 50%;
  height: 50px;
  position: absolute;
  right: 0;
  top: -5px;
  width: 50px;
 transition: all 500ms ease 0s;
}
.newsletter > button i {
  font-size: 30px;
  color: #ffffff;  
  transition: all 500ms ease 0s;
}
.newsletter button:hover i{color:#272727}
.social-icon ul li a {
  background: #00401A none repeat scroll 0 0;
  border-radius: 50%;
  color: #ffffff;
  display: inline-block;
  float: left;
  font-size: 20px;
  height: 48px;
  line-height: 50px;
  margin-right: 11px;
  text-align: center;
  width: 48px;
    transition:all 0.5s ease;
  -moz-transition:all 0.5s ease;
  -webkit-transition:all 0.5s ease;
  -ms-transition:all 0.5s ease;
  -o-transition:all 0.5s ease;
}
.social-icon ul li a:hover{-webkit-transform: scale(1.1,1.1);
  -ms-transform: scale(1.1,1.1);
  -o-transform: scale(1.1,1.1);
  -moz-transform: scale(1.1,1.1);
  transform: scale(1.1,1.1);
    background:#00995D;
    color:#ffffff;
}
.social-icon h2 {
  margin: 0;
  padding-bottom: 17px;
  /*padding-top: 43px;*/
}

.social-icon-bloqueio ul {
  display: flex; /* Ativa o Flexbox */
  justify-content: center; /* Centraliza os itens horizontalmente */
  padding: 0;
  margin: 0 auto;
  list-style: none; /* Remove os marcadores de lista */
}

.social-icon-bloqueio ul li {
  margin-right: 11px; /* Espaçamento entre os itens */
  display: flex; /* Certifica-se de que o ícone se alinha corretamente no centro */
}

.social-icon-bloqueio ul li:last-child {
  margin-right: 0; /* Remove a margem direita do último item */
}

.social-icon-bloqueio ul li a {
  background: #00401A none repeat scroll 0 0;
  border-radius: 50%;
  color: #ffffff;
  display: inline-flex; /* Para manter o alinhamento flexbox nos ícones */
  justify-content: center; /* Centraliza o conteúdo dentro do círculo */
  align-items: center; /* Alinha verticalmente os ícones */
  font-size: 20px;
  height: 48px;
  width: 48px;
  margin: 0;
  text-align: center;
  transition: all 0.5s ease;
}

.social-icon-bloqueio ul li a img {
  width: 40%; /* Define o tamanho da imagem */
  margin-top: -5px;
}

.social-icon-bloqueio ul li a:hover{-webkit-transform: scale(1.1,1.1);
  -ms-transform: scale(1.1,1.1);
  -o-transform: scale(1.1,1.1);
  -moz-transform: scale(1.1,1.1);
  transform: scale(1.1,1.1);
    background:#00995D;
    color:#ffffff;
}

.footer-bottom p {
  color: #ffffff;
  float: left;
  font-size: 14px;
  line-height: 24px;
}
.footer-bottom p span {
  color: #B1D34B;
}
.footer-bottom {
  background: #00401A none repeat scroll 0 0;
  margin-top: 65px;
  padding-bottom: 0px;
  padding-top: 12px;
  text-align: center;
}
.footer-bottom ul{float: right;}
.footer-bottom ul li{display: inline;}
.footer-bottom ul li a {
  font-size: 14px;
  line-height: 24px;
  padding-left: 25px;
  color:#ffffff;
}
/* == End Footer-section Style == */

/* ======================== Start About Style  ======================== */

/*
================================================================== 
   page-banner Style 
==================================================================
*/
.welcome-seciton.bor {
  border: none;
}

.page-banner {
    padding-bottom: 12px;
    padding-top: 153px;
    /*text-align: center;*/
    color: #fff;
}
.page-banner .content h2 {
    color: #272727;
    font-size: 40px;
    font-weight: bold;
    line-height: 40px;
    text-transform: uppercase;
}
.page-banner .content p{
  font-size: 18px;
  margin-top: 10px;
  color: #272727;
}
.page-banner .breadcumb li{
  display: inline-block;
  margin-right: 5px;
}
.page-banner .breadcumb li a{
      font-size: 16px;
    font-weight: 600;
    color: #272727;
}
.page-banner .breadcumb li a:hover{
    color: #00995D;
  transition: .5s;
}
.page-banner .breadcumb i{
  margin-left: 6px;
    color: #272727;
}
.page-banner .breadcumb .active{
  color:#00995D;
}







.welcome-item .btn1 {
  color: #ffffff;
  background: #272727;
  height: 49px;
  width: 160px;
  display: inline-block;
  border-radius: 3px;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  padding-top: 10px;
  margin-top: 32px;
  transition: all 500ms ease 0s;
}
.trstimonial-section.about-page {padding-bottom:160px;}
.brand-seciton.about-page {
  margin-top: 65px;
  padding-bottom: 60px;
  padding-top: 80px;
  position: relative;
}
.trstimonial-section.about-page .img-right {
  top: -130px;
}
.welcome-item .btn1:hover{background:#00995D}


/*
=================================================================
  welcome-seciton Style  
================================================================= 
*/

.welcome-seciton .section-title .border {
  background: #6cb10c none repeat scroll 0 0;
  bottom: 30px;
  height: 2px;
  left: 205px;
  position: absolute;
  width: 320px;
}
.welcome-seciton.ser-page .welcome-item .section-title h4 {
  color: #272727;
  font-size: 24px;
  font-weight: bold;
  padding-top: 0;
}
.welcome-seciton.ser-page .welcome-item p {
  padding-right: 110px;
}
.welcome-seciton.ser-page {
  border: none;
}
.welcome-seciton.ser-page .welcome-item h3 {
  display: block;
  font-size: 30px;
  font-style: italic;
  font-weight: bold;
  padding-top: 34px;
  color:#00995D;
}
.welcome-seciton.ser-page .welcome-item i {
  margin-right:9px;
  color:#272727;
}
.welcome-seciton.ser-page .welcome-item .bold {
  padding-right: 150px;
  font-weight: bold;
}
.welcome-seciton.ser-page .welcome-item h4 {
  color: #272727;
  font-size: 24px;
  font-weight: bold;
  padding-top: 34px;
}



/*
=================================================================
  about-section Style  
================================================================= 
*/
.about-section{
  padding: 80px 0px 80px;
}
.about-section .section-title .border {
  background: #6cb10c none repeat scroll 0 0;
  bottom: 30px;
  height: 2px;
  left: 205px;
  position: absolute;
  width: 320px;
}
.about-section.ser-page .about-item .section-title h4 {
  color: #272727;
  font-size: 24px;
  font-weight: bold;
  padding-top: 0;
}
.about-section.ser-page .about-item p {
  padding-right: 110px;
}
.about-section.ser-page {
  border: none;
}
.about-section.ser-page .about-item h3 {
  display: block;
  font-size: 30px;
  font-style: italic;
  font-weight: bold;
  padding-top: 34px;
  color:#00995D;
}
.about-section.ser-page .about-item i {
  margin-right:9px;
  color:#272727;
}
.about-section.ser-page .about-item .bold {
  padding-right: 150px;
  font-weight: bold;
}
.about-section.ser-page .about-item h4 {
  color: #272727;
  font-size: 24px;
  font-weight: bold;
  padding-top: 34px;
}

.about-item h2 {
color: #272727;
    font-weight: bold;
    font-size: 36px;
    line-height: 30px;
    margin-bottom: 25px;
    position: relative;
}
.about-item h2 :before{
    content: "";
    left: 0;
    position: absolute;
    bottom: -20px;
    width: 80px;
    height: 3px;
    background: rgb(117, 181, 25);
}
.about-item h2 span{
  color:#00995D;
}

.about-item p {
  color: #555555;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0.5px;
  margin: 0;
}
.about-item p.style-2{
  margin-top: 20px;
}
.about-item h4 {
    color: #272727;
    font-size: 20px;
    font-weight: bold;
    padding: 24px 0px 14px;
}
.about-item h4 a{color:#B1D34B}


/*
========================================================================
  Start Team Style  
======================================================================== 
*/

.team-seciton{
  background: #f7f7f7;
}
.team-seciton.page .team_member .img_holder .overlay {
   background: rgba(106, 175, 7, 0.9);

}
.team-seciton.page .section-title {
  margin-bottom: 36px;
}

.team-seciton {
  padding: 80px 0px 40px;
}

.team-seciton .team_member .img_holder {
  position: relative;
    margin-bottom: 16px;
}

.team-seciton .team_member .img_holder .overlay {
  position: absolute;
  width:100%;
  height:100%;
  top:0;
  left:0;
  background: rgba(39, 39, 39, 0.9);
  padding: 8px;
  transform: scale(0);
  -webkit-transform:scale(0);
  -moz-transform:scale(0);
  -ms-transform:scale(0);
  -o-transform:scale(0);
  transition: all 500ms ease 0s;
}
.team-seciton .team_member .img_holder img {
  width: 100%;
}
.team-seciton .team_member .img_holder .overlay .border {
  width:100%;
  height:100%;
  border: 1px solid #fff;
  display: flex;
  display: -webkit-flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.team-seciton .team_member:hover .img_holder .overlay {
  transform: scale(1);
    -webkit-transform:scale(1);
    -moz-transform:scale(1);
    -ms-transform:scale(1);
    -o-transform:scale(1);
}
.team-seciton .team_member .img_holder .overlay .border .icon-holder {
  width: 40px;
  height: 40px;
  background: #fff;
  line-height: 20px;
  padding:4px;
  margin: 8px;
  border-radius:50%;
  transition: all 500ms ease 0s;
}
.team-seciton .team_member .img_holder .overlay .border .icon-holder:hover a{
  color:#00995D;
  }
.team-seciton .team_member .img_holder .overlay .border .icon-holder a {
  display: block;
  width:100%;
  height:100%;
  text-align: center;
  font-size: 18px;
  color:#272727;
  padding-top: 6px;
  border-radius:50%;
  transition: all 500ms ease 0s;
}
.team-seciton .team_member .text > span {
  color: #00995D;
  display: block;
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 7px;
  padding-top: 4px;
}
.team-seciton .team_member .text h4 {
  font-size: 18px;
  font-weight: bold;
  color: #222;
}
.team-seciton .team_member .text p {
  line-height: 24px;
  font-size: 16px;
  color: #848484;
  padding-right: 15px;
  padding-top: 3px;
}
.team-seciton .team_member {
  margin-bottom: 40px;
}


/* ======================== Start Pricing Style  ======================== */
.brand-seciton.wow.slideInLeft.animated.animated {
  background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
  border: medium none;
  left: -100px;
  position: absolute;
  top: 0;
  z-index: 1111;
}
.pricing-seciton .default-form.clearfix .form-group input {
  color: #465a6f;
  font-size: 14px;
  font-style: italic;
  height: 48px;
  padding-left: 23px;
  width: 100%;
}
.pricing-seciton .default-form.clearfix .form-group input {
  color: #ffffff;
  font-size: 16px;
  font-style: italic;
  height: 48px;
  padding-left: 23px;
  width: 100%;
  background: none;
  border: 1px dashed#ffffff;
  border-radius: 3px;
}
.pricing-seciton .default-form.clearfix .form-group.comments textarea {
  color: #ffffff;
  font-size: 16px;
  font-style: italic;
  height: 200px;
  padding-left: 23px;
  width: 100%;
  background: none;
  border: 1px dashed#ffffff;
  border-radius: 3px;
}
.pricing-seciton .default-form .form-group .btn.btn-1 {
  background: #ffffff none repeat scroll 0 0;
  border-radius: 3px;
  color: #272727;
  display: block;
  font-size: 16px;
  height: 41px;
  margin: 16px auto 0;
  position: relative;
  transition: all 500ms ease 0s;
  width: 141px;
  z-index: 111;
}
.pricing-seciton .default-form .form-group .btn.btn-1:hover{color:#ffffff;background:#272727}
.client-right .default-form .form-group .btn.btn-1:hover{color:#ffffff;background:#272727;}
.owl-carousel .owl-item img {
  display: block;
  width: auto;
}
.pricing-seciton .default-form.clearfix .form-group.comments {
  width: 84%;
}
.pricing-seciton .default-form.clearfix .form-group {
  float: left;
  margin: 18px 10px 0;
  width: 41%;
}
.brand-seciton.page {
  margin-top: 0;
}
.pricing-seciton {
  padding-bottom: 72px;
  padding-top: 72px;
  position: relative;
}
.pricing-seciton .title {
  left: 25%;
  position: relative;
}
.pricing-seciton .text img {
  float: left;
  margin-right: 24px;
}
.pricing-seciton .text h2 {
  color: #ffffff;
  font-size: 48px;
  font-weight: bold;
  margin-top: -10px;
}
.pricing-seciton .text h3 {
  color: #ffffff;
  font-size: 48px;
  padding-top: 5px;
}
.pricing-seciton .text h3 span {
  color: #272727;
}
.pricing-seciton .img-right {
  position: absolute;
  right: -40px;
  top: 180px;
}

.video-preview {
  position: relative;
}
.video-preview::before {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(39, 39, 39, 0.8);
  content: "";
}
.video-preview .v-container a i {
  background: none repeat scroll 0 0 #fff;
  border-radius: 50%;
  color: #06223e;
  display: inline-block;
  font-size: 25px;
  height: 42px;
  margin-bottom: 104px;
  margin-top: 104px;
  padding-left: 5px;
  padding-top: 9px;
  width: 42px;
  position: relative;
}
.services-seciton .owl-nav {
  position: absolute;
  right: 0;
}
.services-seciton .owl-theme .owl-controls .owl-nav [class*="owl-"] {
  background: #d6d6d6 none repeat scroll 0 0;
  border-radius: 3px;
  color: white;
  cursor: pointer;
  display: inline-block;
  font-size: 14px;
  margin: 5px;
  padding: 4px 7px;
  width: 33px;
  height: 37px;
  background: none;
  border: 2px solid#D7D7D7;
  color:#D7D7D7;
  transition: all 500ms ease 0s;
}
.services-seciton .owl-theme .owl-controls .owl-nav .owl-prev:hover{
  background:#B1D34B;
  border-radius: 3px;
  color: white;
  cursor: pointer;
  border: 2px solid#B1D34B;

}
.services-seciton .owl-theme .owl-controls .owl-nav .owl-next:hover{
  background:#B1D34B;
  border-radius: 3px;
  color: white;
  cursor: pointer;
  border: 2px solid#B1D34B;

}



/* 
=========================================================================== 
  Start single Project Style  
=========================================================================== 
*/
.single-project{
  padding: 80px 0px 80px;
}
.single-project .section-title h2 {
padding-top: 90px;
}
.single-project .single-item{
  position: relative;
}
.single-project .information .icon i::before {
    float: left;
    font-size: 30px;
    margin-left: -40px;
}
.single-project .single-item img{width: 100%}

.single-project .item{
  margin-top: 50px;
}
.single-project .item h2{
      margin-bottom: 20px;
    font-weight: 500;
    font-size: 28px;
}
.single-project .item p{}
.single-project .information {
  margin-top: 70px;
  border: 1px solid #D7D7D7;
  text-align: center;
}
.single-project .information p {
  border-bottom: 1px solid#E7E7E7;
  font-size: 16px;
  font-weight: bold;
  line-height: 27px;
  margin: 0;
  padding-bottom: 14px;
  padding-top: 10px;
}
.single-project .information p i{margin-right: 10px;color: #00995D;}
.single-project .information p span{font-weight:normal;font-size: 15px;}


/* ======================== Start Projects Style  ======================== */

/* ======================== End Projects Style  ======================== */
.gallery-section.page .section-title h2 {
  left: 0;
  padding: 0;
}
.gallery-section.page .section-title .border {
  background: #6cb10c none repeat scroll 0 0;
  bottom: 20px;
  height: 2px;
  left: 200px;
  position: absolute;
  width: 320px;
}
.gallery-section.page .gallery-item .overlay .link-icon .link a {
  border: 2px dashed #ffffff;
  border-radius: 50%;
  display: block;
  height: 70px;
  margin:0 auto;
  padding: 5px;
  position: relative;
  transition: all 600ms ease 0s;
  width: 70px;
}
.gallery-section.page .gallery-item .img-holder .link-icon .link {
  height: 100%;
  margin: 0 auto;
  text-align: center;
  width: 100%;
  display: table-cell;
  vertical-align: middle;
}
.gallery-section.page .gallery-item .img-holder .link-icon .link a i {
  background: #00995D none repeat scroll 0 0;
  border-radius: 50%;
  color: #ffffff;
  display: inline-block;
  font-size: 20px;
  height: 56px;
  padding-top: 20px;
  position: relative;
  transition: all 600ms ease 0s;
  width: 56px;
}
.gallery-section.page .gallery-item .img-holder .link-icon .link a:hover i{
  background: #ffffff none repeat scroll 0 0;
  color: #00995D;
}
.gallery-section.page .gallery-item .img-holder .overlay {
  background: rgba(39, 39, 39, 0.9) none repeat scroll 0 0;
  padding:20px;
}
.gallery-section.page  .gallery-item .img-holder .link-icon {
  border: 2px dashed #fff;
  display: table;
  height: 100%;
  position: relative;
  width: 100%;
}
 .page-list ul li a i {
  border: 1px solid #d7d7d7;
  color: #d7d7d7;
  font-size: 25px;
  height: 42px;
  text-align: center;
  width: 42px;
  padding-top: 5px;
  
transition: all 500ms ease 0s;
}
.page-list ul li a:hover i{
  background:#00995D;
  border: 1px solid #00995D;
  color:#ffffff;
}
.page-list ul li a {
  color: #b6b6b6;
  display: block;
  font-size: 15px;
  margin: 5px;
  padding-top: 4px;
  transition: all 500ms ease 0s;
  font-weight: bold;
}
.page-list ul li a:hover{color:#272727}
.blog-seciton.page {
  padding-top: 0;
}
/* ======================== End Pricing Style  ======================== */


/* ======================== Start Blog Style  ======================== */
.search-bar {
  margin-top: 98px;
}

.side-search .search-bar input {
  border: 1px solid #c9c9c9;
  height: 39px;
  padding-left: 15px;
  width: 100%;
}
.category h2 {
  color: #000;
  font-size: 24px;
  font-weight: bold;
  padding-bottom: 10px;
  padding-top: 43px;
  text-transform: uppercase;
}
.category ul li a {
  border-bottom: 1px solid #dfdfdf;
  color: #31363b;
  display: block;
  font-size: 16px;
  font-weight: 600;
  padding-bottom: 11px;
  padding-top: 13px;
  transition: all 500ms ease 0s;
}
.category ul li a span{float: right;}
.category ul li .last {border-bottom:none}
.category ul li a:hover {color:#B1D34B}
.category.arc ul li a:hover {color:#00995D}
.category.arc ul li a{color:#31363b;font-weight: normal;}
.category.arc h2 {
  color: #000;
  font-size: 24px;
  font-weight: bold;
  padding-bottom: 23px;
  padding-top: 48px;
  text-transform: uppercase;
}
.tags-box h2 {
  color: #000;
  font-size: 24px;
  font-weight: bold;
  padding-bottom: 16px;
  padding-top: 5px;
  text-transform: uppercase;
}
.tags-box {
  margin-right: -22px;
}
.tags-box ul li {
  display: inline-block;
  margin: 5px 8px;
  border: 1px solid #ccc;
  padding: 4px 14px;
}
.tags-box ul li:hover{
  background: #00995D;

}
.tags-box ul li:hover a {
  color: #fff;
}

.tags-box ul li a {
  color: #555555;
  font-size: 15px;
  font-weight: 500;
  transition: all 500ms ease 0s;
}

.tags-box ul li .baus{}
.tags-box ul li .web{}
.tags-box ul li .desine{}
.gallery-widget h2 {
  color: #000;
  font-size: 24px;
  font-weight: bold;
  padding-bottom: 30px;
  padding-top: 68px;
  text-transform: uppercase;
}
.gallery-widget .gallery {
  margin-right: -20px;
}
.recent-post h2 {
  color: #000;
  font-size: 22px;
  font-weight: bold;
  padding-bottom: 28px;
  padding-top: 30px;
  text-transform: uppercase;
}
.recent-post {
  overflow: hidden;
}
.recent-post .item .img-holder {
  display: inline-block;
  float: left;
  height: 100%;
  margin-right: 20px;
  width: 70px;
}
.recent-post .item .text {
  display: inline-block;
  float: right;
  height: 100%;
  margin-right: -15px;
  max-width: 190px;
}
.recent-post h4 a {
  color: #000;
  display: block;
  font-size: 16px;
  font-weight: bold;
  padding-bottom: 4px;
  padding-top: 10px;
  transition: all 500ms ease 0s;

}
.recent-post h4 a:hover{color:#B1D34B}
.recent-post p {
  color: #999999;
  font-size: 12px;
  padding-bottom: 20px;
}
.recent-post .item {
  display: block;
  margin-bottom: 8px;
  overflow: hidden;
}


/*
=======================================================
  Start Contact Style  
======================================================= 
 */

.contact-seciton {
  padding-top: 82px;
  position: relative;
  margin-bottom: 30px;
}
.contact-seciton .sec-title{}
.contact-seciton .sec-title h2 :before{
  left: 50%;
  margin-left: -28px;
}



.contact-main h4{
    color:#0d1d36;
  font-size:36px;
  font-weight: bold;
  padding-right: 250px;
  line-height: 48px;
}
.contact-main .pad-0{
    padding-left: 0px;
}

.contact-main h4 span{color:#00995D}
.contact-seciton .section-title h2::before {
  background: rgba(0, 0, 0, 0) url("../imagens/resources/1.png") no-repeat scroll 0 0;
  content: "";
  display: block;
  height: 100%;
  left: 161px;
  margin: 0 auto;
  position: absolute;
  right: 0;
  top: 15px;
  width: 100%;
}
.contact-seciton .section-title h2::after {
  background: rgba(0, 0, 0, 0) url("../imagens/resources/1.png") no-repeat scroll 0 0;
  content: "";
  display: block;
  height: 100%;
  left: 717px;
  margin: 0 auto;
  position: absolute;
  right: 0;
  top: 15px;
  width: 100%;
}
.contact-seciton .section-title p {
  font-size: 16px;
  line-height: 26px;
  padding-bottom: 75px;
  padding-top: 50px;
  color: #06223e;
}
.default-form.clearfix .form-group {
  float: left;
  margin: 15px 10px 0;
  width: 41%;
}
.contact-main .default-form.clearfix .form-group input {
  color: #465a6f;
  font-size: 14px;
  font-style: italic;
  height: 50px;
  padding-left: 23px;
  width: 100%;
  background:#EEF1F5;
}



/*form*/

.default-form {
  position: relative;
}


.default-form p {
  color: #fff;
  font-size: 18px;
  line-height: 34px;
  margin-bottom: 20px;
}
.default-form p span {
  color: #ab7442;
  font-size: 20px;
  font-weight: 600;
}


.default-form .form-box{
  position:relative;
}

.comment-form .form-box{
  padding:25px 25px 0px 25px; 
}

.default-form .form-group{
  position:relative;
  /*margin-bottom:30px;*/
}

.default-form .comment-form .form-box .form-group{
  margin-bottom:25px;
}

.default-form.form-box .row{
  margin-left:-10px;
  margin-right:-10px; 
}

.default-form.form-box .row .form-group{
  padding:0px 0px;  
}

.default-form .form-group .field-label{
  display:block;
  line-height:24px;
  text-transform:uppercase;
  margin-bottom:10px;
  color:#232323;
  font-weight:500;
  font-size:13px;
}

.default-form .form-group .field-label sup{
  color:#ff0000;
  font-size:14px;
}

.default-form input[type="text"],
.default-form input[type="email"],
.default-form input[type="password"],
.default-form input[type="number"],
.default-form input[type="date"],
.default-form select,
.default-form textarea{
  display:block;
  width:100%;
  line-height:24px;
  height:55px;
  font-size:16px;
  box-shadow: none;
  border: 1px solid #f4f4f4;
  padding:12px 15px;
  border-radius: 0px;
  transition:all 500ms ease;
  -webkit-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
}
.default-form textarea{
  height: 120px;
}
.default-form .bootstrap-select {
    border: 1px solid #f4f4f4;
    background: #f7f7f7;
    color: #B1D34B;
    padding: 10px 0;
    font-size: 16px;
}
.default-form .btn-group.open .dropdown-toggle {
    box-shadow: none;
}
.default-form .btn-group.open .dropdown-toggle:focus {
  border: none;
  outline: none;
}
.default-form  .bootstrap-select .dropdown-toggle:focus {
  outline: none !important;
}
.default-form  .dropdown-menu>li>a:focus, .dropdown-menu>li>a:hover {
  background-color: #48c7ec;
  color: #fff;
}
.default-form .form-control:focus {
  border-color: #B1D34B;
  box-shadow: none;
}

.default-form .thm-btn {
  width: 100%;
}


.default-form form input::-webkit-input-placeholder {
  color: #9e9e9e;
}
.default-form form input:-moz-placeholder {
  /* Firefox 18- */
  color: #9e9e9e;
}
.default-form form input::-moz-placeholder {
  /* Firefox 19+ */
  color: #9e9e9e;
}
.default-form form input:-ms-input-placeholder {
  color: #9e9e9e;
}


.default-form .alert-success {
    color: #48c7ec;
    background: none;
    border: none;
    font-size: 18px;
}

/*
===================================================
  29. feature-style-three
===================================================
*/
.feature-style-three{
  padding: 60px 0px 0px;
}
.feature-style-three .item-list{
  border-bottom:1px solid #ededed;
}
.feature-style-three .item-list .row{
  margin:0px;
  
}
.feature-style-three .item-list .item .column{
  padding: 29px 16px 32px;
}

.feature-style-three .item-list .item .inner-box{
    text-align: center;
    color: #fff;
}
.feature-style-three .item-list .item .inner-box h3{
  font-size: 18px;
  color: #222222;
  margin-bottom: 5px;
  font-weight: 500;
  text-transform: capitalize;
}
.feature-style-three .item-list .item .inner-box .icon-box{width: 80px;height: 80px;background: #00995D;border: 2px solid #00995D;margin: 0 auto;border-radius: 50%;margin-bottom: 20px;}
.feature-style-three .item-list .item .inner-box .icon-box .icon{
  color: #fff;
  line-height: 77px;
}
.feature-style-three .item-list .item .inner-box .icon-box .icon:before{
  font-size: 30px;
}
.feature-style-three .item-list .item .inner-box .text{
    position: relative;
    line-height: 27px;
    color: #848484;
    font-family: 'roboto', sans-serif;
    font-size: 14px;
    font-weight: 400;
}
/* ======================== End Contact Style  ======================== */





/*
===========================================================
  18. our-services style
===========================================================
*/
.features {
  padding: 80px 0px 55px;
}
.features .sec-title{
  text-align: center;
}
.features .sec-title p{
  max-width: 650px;
  margin: 0 auto;
  color: #848484;
  margin-top: 20px;
}

.features .single-item {
  margin-bottom: 25px;
  position: relative;
  padding-left: 80px;
  background: #fff;
  -webkit-transition:.5s;
  transition:.5s;
  border-left: 1px solid #B1D34B;
}

.features .single-item:hover{
  
  -webkit-transition:.5s;
  transition:.5s;
}
.features .single-item.border:after {
    position: absolute;
    content: "";
    border-right: 10px solid #eeeeee;
    border-bottom: 10px solid #eeeeee;
    top: 39px;
    right: -34px;
    bottom: 8px;
    left: 118px;
    z-index: 5;
    transition: .5s ease;
}
.features .single-item .content {
    position: relative;
}
.features .single-item .top-border{
    left: 0px;
    width: 100%;
    height: 1px;
    background: #eee;
    position: absolute;
    transform: rotate(180deg);
}
.features .single-item .right-border{
    top: 0px;
    right: 0px;
    width: 1px;
    height: 100%;
    background: #eee;
    position: absolute;
    transform: rotate(180deg);
    
}
.features .single-item .bottom-border{
    bottom: 0px;
    right: 0px;
    width: 100%;
    height: 1px;
    background: #eee;
    position: absolute;

}
.features .single-item .top-border:before,
.features .single-item .right-border:before,
.features .single-item .bottom-border:before {
    top:0;
    left:0; 
    background: #B1D34B;
    content: '';
    position: absolute;

}
.features .single-item .top-border:before {
    width: 0%;
    height: 100%;
    transition: all .3s ease .0s;
}
.features .single-item .right-border:before {
    width: 100%;
    height: 0%;
    transition: all .3s ease .3s;
}
.features .single-item .bottom-border:before {
    width: 0%;
    height: 100%;
    transition: all .3s ease .6s;
}
.features .single-item:hover .top-border:before {
    transition: all .3s ease .6s;
}
.features .single-item:hover .right-border:before {
    transition: all .3s ease .3s;
}
.features .single-item:hover .bottom-border:before {
    transition: all .3s ease .0s;
}

.features .single-item:hover .top-border:before,
.features .single-item:hover .bottom-border:before {
    width: 100%;
}
.features .single-item:hover .right-border:before {
    height: 100%;
}

.service-left-bg {
  background: #ededed none repeat scroll 0 0;
  height: 100%;
  overflow: hidden;
  width: 80px;
  border-left: 2px solid #B1D34B;
  -webkit-transition:.5s;
  transition:.5s;
}

.features .single-item:hover .service-left-bg{
  background:#B1D34B;
  -webkit-transition:.5s;
  transition:.5s;
}

.features .single-item .service-icon {
  position: absolute;
  margin-top: -14px;
  top: 50%;
  left: 14px;
  width: 55px;
  height: 55px;
  text-align: center;
}


.features .single-item .service-icon i{

}
.service-icon i,
.service-icon i:before {
  font-size: 40px;
  color: #B1D34B;
  top: 0px;
  margin: 0;
}

.features .single-item:hover .service-icon{

/* background:#fff; */

/* border-radius:50px; */

-webkit-transition:.5s;

transition: .5s;
}

.service-text {
  overflow: hidden;
  padding: 32px 10px 30px;
}
.service-text h4 {
  font-size: 18px;
  font-weight: 500;
  margin-top: 0;
}
.service-text h4 a{
  color: #222222;
  transition:.5s;
  text-transform: capitalize;
  letter-spacing: 1px;
}
.service-text h4 a:hover{
  color:#B1D34B;
  transition:.5s;
}



/*
===========================================================
  our service
===========================================================
*/
.our-service{
  padding: 80px 0px 80px;
  background: #f7f7f7;
}
.our-service .sec-title{
  margin-bottom: 50px;
}
.service-list h3 {
  color: #272727;
  font-size: 24px;
  font-weight: bold;
  line-height: 26px;
  padding-bottom: 20px;
  padding-top: 10px;
}
.service-list .img_holder {
  position: relative;
  overflow: hidden;
}

.service-list .item .img_holder .overlay {
  position: absolute;
  width:100%;
  height:100%;
  top:0;
  left:0;
  background: rgba(106,175,8,0.8);
  padding: 14px;
  transform: scale(0,0);
  -webkit-transform: scale(0,0);
  -moz-transform: scale(0,0);
  -ms-transform: scale(0,0);
  -o-transform: scale(0,0);
  transition: all 500ms ease 0s;
}

.service-list .item:hover .overlay,
.service-list .item:focus .overlay {
  transform: scale(1,1);
    -webkit-transform: scale(1,1);
    -moz-transform: scale(1,1);
    -ms-transform: scale(1,1);
    -o-transform: scale(1,1);
}
.service-list .item:hover .link-btn a{
  color:#00995D;
}
.service-list .item .text{
  
padding: 10px 15px 8px;
  
text-align: center;
  
border: 1px solid #00995D;
}

.service-list .overlay .inner {
  align-items: center;
  border: 1px dashed rgba(255, 255, 255, 0.5);
  display: flex;
  height: 100%;
  justify-content: center;
}
.service-list .overlay .inner i::before {
  color: #fff;
  font-size: 35px;
}
.service-list .text h4{
  margin-bottom: 5px;
}
.service-list .text h4 a {
  color: #272727;
  font-size: 20px;
  font-weight: 500;
  line-height: 26px;
  display: block;
  transition: all 500ms ease 0s;
}
.service-list .text a:hover{color:#B1D34B}
.service-list .text p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 5px;
}
.service-list .text a {
  color: #272727;
  font-weight: 500;
  font-size: 14px;
  display: block;
}
.service-list .text a i {
  margin-left: 5px;
}
.service-list .item .inner i:before{
    margin: 0px;
    font-size: 45px;
    color: #fff;
}

.service-list .owl-nav {
  position: absolute;
  right: 0;
  top: -67px;
}
.service-list .owl-theme .owl-controls .owl-nav [class*="owl-"] {
  background: #d6d6d6 none repeat scroll 0 0;
  color: white;
  cursor: pointer;
  display: inline-block;
  border-radius: 0px;
  font-size: 24px;
  margin: 5px;
  padding: 4px 7px;
  width: 36px;
  height: 36px;
  background: none;
  border: 2px solid#00995D;
  color: #00995D;
  transition: all 500ms ease 0s;
}
.service-list .owl-theme .owl-controls .owl-nav .owl-prev:hover{
  background: #00995D;
  color: white;
  cursor: pointer;
  border: 2px solid#00995D;
}
.service-list .owl-theme .owl-controls .owl-nav .owl-next:hover{
  background: #00995D;
  color: white;
  cursor: pointer;
  border: 2px solid#00995D;
}
/* End Service-seciton Styles */



/*
===============================================================
    parallax-style
===============================================================
*/
.parallax-style{
  padding:80px 0px;
  position: relative;
    padding: 80px 0px 103px;
    background-size: cover;
    background-repeat: repeat;
    background-attachment: fixed;
    background-position: center center;
    color: #ffffff;
    text-align: center;
}
.parallax-style .column{

margin-top: 20px;
}
.parallax-style .column .icon-box{
  
margin-bottom: 12px;
}
.parallax-style .column .icon-box i:before{
  line-height: 60px;
  font-size: 40px;
  margin: 0;
}
.parallax-style .fact-counter{
  color: #fff;
  font-size: 40px;
  font-weight: 700;
}
.parallax-style .counter-text h4{
  margin-top: 10px;
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  letter-spacing: 1px;
}


/*
======================================================
 Start our-project Style  
====================================================== 
*/

.our-project {
  padding-bottom: 95px;
  position: relative;
  padding-top: 87px;
}
.our-project .sec-title{
  text-align: center;
  position: relative;
}
.our-project .sec-title h2 :before{
  left: 50%;
  margin-left: -28px;
}
.our-project .filters {
  margin: 30px 0px 5px;
  position: relative;
  text-align: center;
}

.our-project .filters li {
  color: #222;
  cursor: pointer;
  margin-right: 12px;
  display: inline-block;
  font-weight: 600;
  line-height: 24px;
  position: relative;
  text-transform: uppercase;
  transition: all 300ms ease 0s;
}
.our-project .filters li .txt {
  color: #222;
  border: 1px solid #ccc;
  padding: 4px 12px;
  display: inline-block;
  font-size: 16px;
  position: relative;
  z-index: 1;
  text-transform: none;
  transition: all 500ms ease 0s;
}
.our-project .filters li:hover,
.our-project .filters li.active{
    color: #fff;
}
.our-project .filters li .txt:hover,
.our-project .filters li.active .txt {
    color: #fff;
    background: #00995D;
}

.our-project .project-item {
    margin-top: 30px;
    text-align: center;
    position: relative;
}
.our-project .project-item .img-holder {
  overflow: hidden;
  position: relative;
  transition: all 500ms ease 0s;
}
.our-project .img-holder img{width:100%}

.our-project .project-item .img-holder .link-icon{
  display: table;
    height: 100%;
    position: relative;
    width: 100%;
}
.our-project .project-item .img-holder .link-icon .link {
  height: 100%;
  margin:0 auto;
  text-align: center;
  width:100%;
}
.our-project .project-item .img-holder .link-icon .link a:hover{border: 2px dashed#272727;}

.our-project .project-item .img-holder {
  position: relative;
  overflow: hidden;
}
.our-project .project-item .img-holder .overlay {
  position: absolute;
  width:100%;
  height:100%;
  top:0;
  left:0;
  background: rgba(117, 181, 25, 0.72);
  padding: 14px;
  transform: scale(0,0);
  -webkit-transform: scale(0,0);
  -moz-transform: scale(0,0);
  -ms-transform: scale(0,0);
  -o-transform: scale(0,0);
  transition: all 500ms ease 0s;
}

.our-project .project-item:hover .overlay{
  transform: scale(1,1);
  -ms-transform: scale(1,1);
  -o-transform: scale(1,1);
  -webkit-transform: scale(1,1);
  -moz-transform: scale(1,1); 
}
.our-project .project-item:hover .link-btn a{
  color:#00995D;
}

.our-project .project-item .inner{top: 50%;position: relative;margin-top: -12px;}
.our-project .project-item .inner i{
    line-height: 0px;
}
.our-project .project-item .inner i:before{
    margin: 0;
    font-size: 50px;
    color: #fff;
}

.our-project .project-item:hover .overlay{
  top:0px;
}

.our-project .project-item:hover .img-holder h4 a{
  bottom:0px;
}
.our-project .project-item .img-holder h4 a {
  background: #272727 none repeat scroll 0 0;
  color: #ffffff;
  display: block;
  font-weight: 500;
  height: 40px;
  left: 0;
  padding-top: 10px;
  position: absolute;
  text-align: center;
  transition: all 500ms ease 0s;
  width: 100%;
  bottom: -70px;
  font-size: 18px;
}
.our-project .project-item .img-holder h4 a:hover {color:#00995D}

/* == End our-project Style  == */

/* 
=======================================================
  20. subscribe us styles 
=======================================================
*/

.subscribe-us {
  background: #00995D;
  padding: 40px 0;
  color: #fff;
}
.subscribe-us h3 {
  color: #fff;
  font-size: 34px;
  font-weight: 700;
  margin: 0;
  line-height: 30px;
  margin-bottom: 16px;
}
.subscribe-us p {
  margin: 0;
}
.subscribe-us a.thm-btn {
    padding: 6px 20px;
    margin: 16px 0;
    background: #fff;
    color: #222222;
    letter-spacing: 1px;
    border: 2px solid transparent;
}
.subscribe-us a.thm-btn.inverse:hover {
  color: #fff;
  background: #B1D34B;
  border:2px solid #fff;
}


/*
=========================================================
testimonial Styles 
=========================================================
*/

.testimonial {
  padding: 80px 0px 80px;
  position: relative;
  background: #222;
}
.testimonial.style-2{
    padding: 50px 0px 80px;
}
.testimonial .sec-title{}
.testimonial .sec-title h2{
  color: #fff;
}
.testimonial .img-holder {
  position: relative;
  width: 100%;
  height: 100%;
}
.testimonial .single-item {
  padding: 18px 10px 10px;
  border: 1px solid #363636;
  position: relative;
  text-align: center;
  background: #363636;
}
.testimonial.style-2 .single-item{
  margin-top: 30px;
  border: none;
}
.testimonial .img-holder img {
  max-width: none;
  position: absolute;
  right: -15px;
  z-index: -1;
}
.testimonial .single-item .img-box {
  display: inline-block;
  position: relative;
  border: 2px solid #ffffff;
  border-radius: 50%;
  padding: 4px;
}
.testimonial .single-item .img-box img {
  height: 92px;
  width: 92px;
  border-radius: 50%;
}
.testimonial .single-item .text h4 {
  color: #ffffff;
  font-size: 18px;
  margin-top: 12px;
}
.testimonial .single-item .icon i {
  color: #00995D;
  font-size: 14px;
  margin-top: 10px;
}
.testimonial .single-item .text h3 {
  color: #ffffff;
  font-size: 18px;
  font-weight: bold;
  margin-top: 8px;
}
.testimonial .single-item .text p {
  color: #ffffff;
  font-size: 14px;
  margin-top: 8px;
}
.testimonial .single-item .text img {
  margin-top: 29px;
  margin: 0 auto;
  margin-bottom: 11px;
}
.testimonial .owl-nav {
    position: absolute;
    right: 0;
    top: -70px;
}
.testimonial .owl-theme .owl-controls .owl-nav [class*="owl-"] {
  border-radius: 2;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: 16px;
  margin: 6px;
  padding: 4px 7px;
  background: none;
  border: 1px solid#ffffff;
  height: 34px;
  width: 34px;
  border-radius: 0px;
  transition: all 500ms ease 0s;
}
.testimonial .owl-theme .owl-controls .owl-nav .owl-prev:hover{
    background:#B1D34B; 
    border: 1px solid#B1D34B;
}
.testimonial .owl-theme .owl-controls .owl-nav .owl-next:hover{
    background:#B1D34B; 
    border: 1px solid#B1D34B;
}

.owl-carousel .owl-item img {
  display: block;
  width: auto;
}






/* 
================================================================= 
Start two-column Style 
================================================================= 
*/

.two-column {
  padding-bottom: 118px;
  padding-top: 58px;
  position: relative;
}
.two-column .img-right {
  position: absolute;
  top: -175px;
  right: 0;
}




.two-column .single-item .img-holder {
  background: #B1D34B none repeat scroll 0 0;
  border-radius: 50%;
  display: block;
  height: 85px;
  position: relative;
  top: 117px;
  width: 85px;
  z-index: 11111111;
  left: -40px;
  transition: all 500ms ease 0s;
}
.two-column .single-item:hover .img-holder{background:#272727}
.two-column .single-item{
   margin-left: 40px;
   margin-top: -19px;}
.two-column .single-item .img-holder img {
  padding-top: 22px;
  margin: 0 auto;
  display: block;
}
.two-column .single-item .overlay .box-holder h4 {
  padding-left: 64px;
  font-size: 24px;
  font-weight: bold;
  padding-top: 35px;
  color:#272727;
}
.two-column .single-item .overlay .box-holder h5 {
  color: #555555;
  font-size: 16px;
  line-height: 26px;
  padding-bottom: 22px;
  padding-left: 64px;
  padding-top: 12px;
  text-align: left;
  padding-right: 30px;
}
.two-column .single-item .overlay {
  bottom: 0;
  left:0px;
  line-height: 0;
  opacity: 1;
  overflow: hidden;
  position: relative;
  right: 0;
  top: 0;
  transition: all 0.3s ease 0s;
}
.two-column .single-item .overlay .box-holder {
    display: table;
    width: 100%;
    height: 100%;
    position: relative;    
}
.two-column .single-item .overlay .box-holder:before,
.two-column .single-item .overlay .box-holder:after {
    content: '';
    position: absolute;    
    opacity: 0;    
    filter: alpha(opacity=0);
}
.two-column .single-item .overlay:hover .box-holder:after {
    opacity: 1;
    filter: alpha(opacity=100);
    -webkit-transform: skew(0deg);
        -ms-transform: skew(0deg);
            transform: skew(0deg);
}
.two-column .single-item .overlay:hover .box-holder:before {
    opacity: 1;
    filter: alpha(opacity=100);
}
.two-column .single-item .overlay .box-holder:after {
    top: -2px;
    left: 0px;
    right: 0px;
    bottom: -2px;    
    border-top: 2px dashed #00995D;
    border-bottom: 2px dashed #00995D;
    -webkit-transform: skew(-100deg);
        -ms-transform: skew(-100deg);
            transform: skew(-100deg);
    -webkit-transition: all .5s ease;
            transition: all .5s ease;
}
.two-column .single-item .overlay .box-holder:before {
    top: 0px;
    left: -2px;
    right: -2px;
    bottom: 0px;    
    border-left: 2px dashed #00995D;
    border-right: 2px dashed #00995D;
    -webkit-transition: all .5s ease .3s;
            transition: all .5s ease .3s;
}
.two-column .single-item .overlay .box-holder{border: 2px dashed#CCCCCC;transition: all 500ms ease 0s;}

/* == End Trstimonial-section Style == */




/*
==================================================
  23. two-column style
==================================================
*/
.two-column{
  padding:80px 0px 0px;
  
}
.two-column .sec-title{
    margin-bottom: 30px;
}
.two-column .sec-title h2{}

.two-column .content-box{
  padding: 15px 0px 50px;
  position:relative;
}

.two-column .content-box p{
  color:#666666;
}
.two-column .content-box .clearfix{
  margin-top: 30px;
}
.two-column .inner-box .image-box{
  position:relative;
  /*margin-top: -28px;*/
}
.two-column .inner-box .image-box img{
  width:auto;
  max-width: 100%;
  display:inline-block;
}
.single-choose-item {
  margin-bottom: 26px;
  position: relative;
  background: #fff;
  border: 1px solid #ededed;
  -webkit-transition:.5s;
  transition:.5s;
}
.choose-left-bg {
    float: left;
    height: 100%;
    position: absolute;
    overflow: hidden;
    width: 60px;
    -webkit-transition: .5s;
    transition: .5s;
}
.choose-icon {
    float: left;
    margin-left: 10px;
    margin-right: 10px;
    position: relative;
    margin-top: 24px;
    line-height: 38px;
    width: 78px;
    height: 55px;
    overflow: hidden;
    text-align: center;
}
.choose-icon i, .choose-icon i:before {
    font-size: 36px;
    color: #B1D34B;
    position: relative;
    top: 1px;
    margin: 0;
}
.choose-icon i, .choose-icon i:before {
    font-size: 36px;
    color: #B1D34B;
    position: relative;
    top: 1px;
    margin: 0;
}
.choose-text {
    overflow: hidden;
    padding: 10px 10px 2px;
}
.choose-text h4 {
    
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 13px;
    margin-top: 0;
    /*text-transform: capitalize;*/
}
.choose-text h4 a{
  color: #222222;
  transition:.5s;
}
.choose-text h4 a:hover{
  color:#B1D34B;
  transition:.5s;
}
.choose-text p {
    color: #777777;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    line-height: 22px;
}

/*
===========================================================
  our gallery
===========================================================
*/
.our-gallery{
  padding: 55px 0px 80px;
  background: #f7f7f7;
}
.our-gallery .item{
  margin-top: 25px;
}
.our-gallery .item .img_holder {
  position: relative;
  overflow: hidden;
  display: inline-block;
}

.our-gallery .item .img_holder .overlay {
  position: absolute;
  width:100%;
  height:100%;
  top:0;
  left:0;
  background: rgba(106,175,8,0.8);
  padding: 14px;
  transform: scale(0,0);
  -webkit-transform: scale(0,0);
  -moz-transform: scale(0,0);
  -ms-transform: scale(0,0);
  -o-transform: scale(0,0);
  transition: all 500ms ease 0s;
}

.our-gallery .item:hover .overlay,
.our-gallery .item:focus .overlay {
  transform: scale(1,1);
    -webkit-transform: scale(1,1);
    -moz-transform: scale(1,1);
    -ms-transform: scale(1,1);
    -o-transform: scale(1,1);
}
.our-gallery .item:hover .link-btn a{
  color:#00995D;
}


.our-gallery .item .overlay .inner {
  align-items: center;
  border: 1px dashed rgba(255, 255, 255, 0.5);
  display: flex;
  height: 100%;
  justify-content: center;
}
.our-gallery .item .overlay .inner i::before {
  color: #fff;
  font-size: 35px;
}

.our-gallery .item .text h4 a {
  color: #272727;
  font-size: 20px;
  font-weight: 500;
  line-height: 26px;
  display: block;
  transition: all 500ms ease 0s;
}

.our-gallery .item .text a i {
  margin-left: 5px;
}
.our-gallery .item .inner i:before{
    margin: 0px;
    font-size: 45px;
    color: #fff;
}

/*
======================================================
 Start gallery-two Style  
====================================================== 
*/

.gallery-two {
  padding:50px 0px 80px;
  position: relative;

}
.gallery-two .sec-title{
  text-align: center;
  position: relative;
}
.gallery-two .sec-title h2 :before{
  left: 50%;
  margin-left: -28px;
}
.gallery-two .filters {
  margin: 30px 0px 5px;
  position: relative;
  text-align: center;
}

.gallery-two .filters li {
  color: #222;
  cursor: pointer;
  margin-right: 12px;
  display: inline-block;
  font-weight: 600;
  line-height: 24px;
  position: relative;
  text-transform: uppercase;
  transition: all 300ms ease 0s;
}
.gallery-two .filters li .txt {
  color: #222;
  border: 1px solid #ccc;
  padding: 4px 12px;
  display: inline-block;
  font-size: 16px;
  position: relative;
  z-index: 1;
  text-transform: none;
  transition: all 500ms ease 0s;
}
.gallery-two .filters li:hover,
.gallery-two .filters li.active{
    color: #fff;
}
.gallery-two .filters li .txt:hover,
.gallery-two .filters li.active .txt {
    color: #fff;
    background: #00995D;
}

.gallery-two .project-item {
    margin-top: 30px;
    text-align: center;
    position: relative;
}
.gallery-two .project-item .img-holder {
  overflow: hidden;
  position: relative;
  transition: all 500ms ease 0s;
}
.gallery-two .img-holder img{width:100%}

.gallery-two .project-item .img-holder .link-icon{
  display: table;
    height: 100%;
    position: relative;
    width: 100%;
}
.gallery-two .project-item .img-holder .link-icon .link {
  height: 100%;
  margin:0 auto;
  text-align: center;
  width:100%;
}
.gallery-two .project-item .img-holder .link-icon .link a:hover{border: 2px dashed#272727;}

.gallery-two .project-item .img-holder {
  position: relative;
  overflow: hidden;
}
.gallery-two .project-item .img-holder .overlay {
  position: absolute;
  width:100%;
  height:100%;
  top:0;
  left:0;
  background: rgba(117, 181, 25, 0.72);
  padding: 14px;
  transform: scale(0,0);
  -webkit-transform: scale(0,0);
  -moz-transform: scale(0,0);
  -ms-transform: scale(0,0);
  -o-transform: scale(0,0);
  transition: all 500ms ease 0s;
}

.gallery-two .project-item:hover .overlay{
  transform: scale(1,1);
  -ms-transform: scale(1,1);
  -o-transform: scale(1,1);
  -webkit-transform: scale(1,1);
  -moz-transform: scale(1,1); 
}
.gallery-two .project-item:hover .link-btn a{
  color:#00995D;
}

.gallery-two .project-item .inner{top: 50%;position: relative;margin-top: -12px;}
.gallery-twot .project-item .inner i{
    line-height: 0px;
}
.gallery-two .project-item .inner i:before{
    margin: 0;
    font-size: 50px;
    color: #fff;
}

.gallery-two .project-item:hover .overlay{
  top:0px;
}

.gallery-two .project-item:hover .img-holder h4 a{
  bottom:0px;
}
.gallery-two .project-item .img-holder h4 a {
  background: #272727 none repeat scroll 0 0;
  color: #ffffff;
  display: block;
  font-weight: 500;
  height: 40px;
  left: 0;
  padding-top: 10px;
  position: absolute;
  text-align: center;
  transition: all 500ms ease 0s;
  width: 100%;
  bottom: -70px;
  font-size: 18px;
}
.gallery-two .project-item .img-holder h4 a:hover {color:#00995D}


/*
=====================================================
  error page style
=====================================================
*/
.error{
  padding: 80px 0px 0px;
}
.error .content-box{

margin-top: 80px;
margin-bottom: 80px;
margin-left: 50px;
}
.error .content-box h1{
  font-size: 100px;
  font-weight: 700;
  color: #00995D;
}
.error .content-box h2{
  
font-size: 40px;
  
margin-bottom: 20px;
}
.error .content-box p{
  
font-size: 16px;
}
.error .content-box .link_btn{

margin-top: -50px;
}
.error .content-box .sidebar_search{

  max-width:475px;
  margin-bottom: 50px;

}
.error .sidebar_search input {
    width: 100%;
    height: 54px;
    border: none;
    border: 1px solid #f1f1f1;
    padding: 0 56px 0 12px;
    color: #9e9e9e;
}
.error .sidebar_search button {
    width: 54px;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    color: #B1D34B;
}
.error .sidebar_search {
    height: 54px;
    margin-bottom: 35px;
    position: relative;
}
.error .content-box .sidebar_search {
    max-width: 475px;
    margin-top: 20px;
}

/* 
==============================================
  10. google map Section style
==============================================
*/
.home-google-map .google-map {
  width: 100%;
  height: 400px;
}
.home-google-map .gmnoprint {
    display: none;
}

