/* ----------------------------------01. Template default css    02. Navbar        - Navbar Default        - Navbar Sticky        - Navbar Transparent        - Nav With Topbar    03. Banner    04. Features    05. About Area    06. Services        - Carousel        - Grid        - Static    07. Portfolio        - Grid Colum        - Masonary Colum    08. Team        - Carousel        - Grid        - Static    09. Pricing Area    10. Fun Factor    11. Blog        - Standard        - Left Sidebar        - Right Sidebar    12. Clients Area    13. Faq    14. Concat Area    15. Subscribe Form    16. Error 404    17. Footer    18. PHP Contact Form    19. Others*//*** General Styles for HTML tags*/
* {
	padding:0;
	margin:0;
}
:root{
    --text_color2: #006e39;
}
nav.navbar.bootsnav ul.nav > li.on > a{
    color: var(--text_color2);
    background: transparent !important;
    border: none;
}
nav.navbar.bootsnav ul.nav > li > a>span:before,
nav.navbar.bootsnav ul.nav > li > a>span:after{
    content: '';
    background: var(--text_color2);
    height: 3px;
    width: 100%;
    opacity: 0;
    transform: translateX(-50%) scaleX(0);
    position: absolute;
    left: 48%;
    bottom: 20px;
    z-index: -1;
    transition: all 0.2s ease;
}
nav.navbar.bootsnav ul.nav > li > a>span:after{
    background-color: #fff;
    height: 10px;
    width: 10px;
    border: 3px solid var(--text_color2);
    border-top: none;
    border-left: none;
    opacity: 0;
    transform: translateX(-50%) scaleX(1) rotate(45deg);
    bottom: 20px;
}
nav.navbar.bootsnav ul.nav>li.active>a>span:before,
nav.navbar.bootsnav ul.nav>li>a:hover>span:before,
nav.navbar.bootsnav ul.nav>li.on>a>span:before{
    opacity: 1;
    transform: translateX(-50%) scaleX(1);
}
nav.navbar.bootsnav ul.nav>li.active>a>span:after,
nav.navbar.bootsnav ul.nav>li>a:hover>span:after,
nav.navbar.bootsnav ul.nav>li.on>a>span:after{
    opacity: 1;
    bottom: 16px;
}
nav.navbar.bootsnav li.dropdown ul.dropdown-menu.megamenu-content li a:hover,
nav.navbar.bootsnav li.dropdown ul.dropdown-menu li a:hover,
nav.navbar.bootsnav li.dropdown ul.dropdown-menu li a.dropdown-toggle:active,
nav.navbar ul.nav li.dropdown.on ul.dropdown-menu li.dropdown.on > a{
    /*color: var(--text_color2) !important;*/
    /*background-color: #006e39 !important;*/
}
html {
	width:100%;
	height:100%;
	position:relative;
	overflow:visible;
}
body {
	/*font-family:sans-serif;*/
	font-size:14px;
	font-weight:400;
	line-height:26px;
	overflow-x:hidden;
	background-color:#ffffff;
	color:#666666;
}
html,body,.wrapper {
	height:100%;
}
h1,h2,h3,h4,h5,h6 {
	color:#232323;
	font-weight:normal;
	line-height:1.2;
	
	letter-spacing:0;
	margin:0;
}
h1,h2,h3,h4 {
	margin-bottom:15px;
}
h5,h5 {
	margin-bottom:10px;
}
img {
	border:none;
	outline:none;
	max-width:100%;
}
label {
	display:inline-block;
	font-weight:normal;
	margin-bottom:5px;
	max-width:100%;
}
a,.btn,button {
	transition:all 0.35s ease-in-out;
	-webkit-transition:all 0.35s ease-in-out;
	-moz-transition:all 0.35s ease-in-out;
	-ms-transition:all 0.35s ease-in-out;
	-o-transition:all 0.35s ease-in-out;
	outline:medium none;
}
a img,iframe {
	border:none;
}
p {
	/*color:#666666;*/
	line-height:28px;
	margin:0 0 10px;
	text-transform:none;
	font-weight:400;
}
hr {
	margin-top:0;
	margin-bottom:0;
	border:0;
	border-top:1px solid #eee;
}
pre {
	display:block;
	margin:0 0 30px;
	padding:9.5px;
	word-wrap:break-word;
	word-break:break-all;
	color:#333;
	border:1px solid #ededed;
	border-radius:inherit;
	background-color:#f9f9f9;
	font-size:13px;
	line-height:1.42857143;
}
input:focus,textarea:focus,select:focus {
	outline:none;
	box-shadow:inherit;
}
ul {
	margin:0;
	list-style-type:none;
}
a,a:active,a:focus,a:hover {
	outline:none;
	text-decoration:none;
	color:#232323;
}
a:hover {
	color:#232323;
}
a {
	transition:all 0.35s ease-in-out;
	-webkit-transition:all 0.35s ease-in-out;
	-moz-transition:all 0.35s ease-in-out;
	-ms-transition:all 0.35s ease-in-out;
	-o-transition:all 0.35s ease-in-out;
	text-decoration:none;
	
}
b,strong {
	font-weight:900;
}
.btn.active,.btn:active {
	background-image:inherit !important;
}
.btn.focus,.btn:active:focus,.btn:active:hover,.btn:focus,.btn:hover {
	outline:0;
}
.btn.circle {
	-webkit-border-radius:30px;
	-moz-border-radius:30px;
	border-radius:30px;
}
.btn.active,.btn:active {
	outline:0;
	-webkit-box-shadow:inherit;
	box-shadow:inherit;
}
input {
	border:1px solid #e7e7e7;
	border-radius:inherit;
	box-shadow:inherit;
	min-height:50px;
}
/* Default CSS */.container-half {
	margin:0 auto;
	width:60%;
	padding:0 15px;
}
.bg-cover {
	background-position:center center;
	background-size:cover;
}
.bg-contain {
	background-position:center center;
	background-repeat:no-repeat;
	background-size:contain;
}
.bg-fixed {
	background-attachment:fixed;
	background-position:center top;
	background-size:cover;
}
.bg-gray {
	background-color:#f7f7f7;
}
.bg-theme-small {
	background-color:#edf5ff;
}
.bg-light {
	background-color:#ffffff;
}
.bg-theme {
	background-color:#006e39;
}
.text-light h1,.text-light h2,.text-light h3,.text-light h4,.text-light h5,.text-light h6,.text-light p,.text-light a {
	/*color:#ffffff; */ 
	/*20220429*/
}
.shadow {
	position:relative;
	z-index:1;
}
.shadow.dark::after {
	background:#353739 none repeat scroll 0 0;
	content:"";
	height:100%;
	left:0;
	opacity:0.3;
	position:absolute;
	top:0;
	width:100%;
	z-index:-1;
}
.shadow.dark-hard::after {
	background:#353739 none repeat scroll 0 0;
	content:"";
	height:100%;
	left:0;
	opacity:0.75;
	position:absolute;
	top:0;
	width:100%;
	z-index:-1;
}
.shadow.light::after {
	background:#ffffff none repeat scroll 0 0;
	content:"";
	height:100%;
	left:0;
	opacity:0.3;
	position:absolute;
	top:0;
	width:100%;
	z-index:-1;
}
.shadow.theme::after {
	background:#006e39 none repeat scroll 0 0;
	content:"";
	height:100%;
	left:0;
	opacity:0.5;
	position:absolute;
	top:0;
	width:100%;
	z-index:-1;
}
.shadow.theme-hard::after {
	background:#006e39 none repeat scroll 0 0;
	content:"";
	height:100%;
	left:0;
	opacity:0.7;
	position:absolute;
	top:0;
	width:100%;
	z-index:-1;
}
.default-padding-thirty {
	padding-top:30px;
}
.default-padding {
	padding-top:30px;
	padding-bottom:30px;
}
.default-padding-top {
	padding-top:60px;
}
.default-padding-bottom {
	padding-bottom:60px;
}
.default-padding.bottom-less {
	padding-top:20px;
	padding-bottom:30px;
}
.default-padding.bottom-30 {
	padding-top:80px;
	padding-bottom:30px;
}
.default-padding.bottom-20 {
	padding-top:80px;
	padding-bottom:20px;
}
.padding-xl {
	padding-top:180px;
	padding-bottom:180px;
}
.carousel-shadow {
	padding-bottom:65px;
}
.btn {
	display:inline-block;
	font-size:14px;
	font-weight:600;
	line-height:25px;
	text-transform:uppercase;
	-webkit-transition:all 0.35s ease-in-out;
	-moz-transition:all 0.35s ease-in-out;
	-ms-transition:all 0.35s ease-in-out;
	-o-transition:all 0.35s ease-in-out;
	transition:all 0.35s ease-in-out;
	font-weight:700;
	letter-spacing:1px;
	border-radius:inherit;
	overflow:hidden;
}
.btn-md {
	padding:10px 40px 10px;
}
.btn-sm {
	padding:8px 35px;
	font-size:12px;
}
.btn.btn-sm-pro {
	font-size:10px;
	font-weight:600;
	margin-top:5px;
	padding:4px 35px;
	display:inline-block;
}
.btn-border-light {
	border:2px solid #ffffff;
}
.btn.btn-sm-pro.btn-border-light:hover,.btn.btn-sm-pro.btn-border-light:focus {
	background-color:#ffffff;
	color:#232323;
	border:2px solid #ffffff;
}
.btn-dark {
	background-color:#232323;
	color:#ffffff;
	border:2px solid #232323;
}
.btn-dark.border {
	background-color:transparent;
	color:#232323;
	border:2px solid #232323;
}
.btn-dark.border:hover {
	background-color:#232323;
	color:#ffffff !important;
	border:2px solid #232323;
}
.btn.btn-light {
	background:#ffffff none repeat scroll 0 0;
	border:2px solid #ffffff;
	color:#232323;
}
.btn.btn-light:hover,.btn.btn-light:focus {
	background:transparent none repeat scroll 0 0;
	border:2px solid #ffffff;
	color:#ffffff;
}
.btn.btn-light.effect:hover,.btn.btn-light.effect:focus {
	background-color:#006e39;
	color:#ffffff !important;
	border:2px solid #006e39;
}
.btn.btn-light.border {
	background:transparent;
	border:2px solid #ffffff;
	color:#ffffff;
}
.btn.btn-light.border:hover {
	background:#ffffff none repeat scroll 0 0 !important;
	border:2px solid #ffffff !important;
	color:#232323 !important;
}
.btn-dark:hover,.btn-dark:focus {
	color:#232323 !important;
	background:transparent;
}
.bg-dark {
	background:#353739 none repeat scroll 0 0;
}
.btn-theme {
	background-color:#088239;
	color:#ffffff !important;
	border:2px solid #088239;
}
.btn-theme.border {
	background-color:transparent;
	color:#088239 !important;
	border:2px solid #088239;
}
.btn-theme.border:hover {
	background-color:#22ac38;
	color:#ffffff !important;
	border:2px solid #22ac38;
}
.btn-theme.effect:hover,.btn-theme.effect:focus {
	background:#22ac38 none repeat scroll 0 0;
	border:2px solid #22ac38;
	color:#ffffff;
}
.btn.btn-sm-lm {
	font-size:12px;
	padding:4px 35px;
}
.bg-theme a.btn-theme.btn:hover,.bg-theme a.btn-theme.btn:focus {
	border:2px solid #ffffff;
	color:#ffffff;
}
.bg-fixed {
	background-attachment:fixed;
	background-position:center center;
	background-size:cover;
}
.bg-cover {
	background-position:center center;
	background-size:cover;
}
.container-full {
	padding:0 15px;
	width:100%;
}
.oh {
	overflow:hidden;
}
.less-margin {
	margin:0;
}
header {
	position:relative;
}
header nav.navbar.border.bootsnav.navbar-fixed.no-background {
	border-bottom:1px solid rgba(255,255,255,0.1);
}
header nav.navbar.border.bootsnav.navbar-fixed.no-background ul li a {
	position:relative;
	z-index:1;
	margin-left:3px;
}
header nav.navbar.border.bootsnav.navbar-fixed.no-background .attr-nav ul li a {
	border:medium none;
}
header nav.navbar.border.bootsnav.navbar-fixed.no-background ul li a::after {
	background:#ffffff none repeat scroll 0 0;
	bottom:-2px;
	content:"";
	height:3px;
	left:0;
	position:absolute;
	width:0;
	-webkit-transition:all 0.35s ease-in-out;
	-moz-transition:all 0.35s ease-in-out;
	-ms-transition:all 0.35s ease-in-out;
	-o-transition:all 0.35s ease-in-out;
	transition:all 0.35s ease-in-out;
}
header nav.navbar.border.bootsnav.navbar-fixed.no-background ul li a.active::after,header nav.navbar.border.bootsnav.navbar-fixed.no-background ul li a:hover::after {
	width:100%;
}
header nav.navbar.border.bootsnav.navbar-fixed.no-background .attr-nav ul li a.active::after,header nav.navbar.border.bootsnav.navbar-fixed.no-background .attr-nav ul li a:hover::after {
	width:0;
}
.attr-nav .social.right li {
	margin-left:20px;
}
.attr-nav .social li a {
	font-size:16px;
}
/* Navbar */nav.bootsnav.navbar-default.info-topbar .navbar-header {
	display:none;
}
nav.bootsnav.navbar-default.info-topbar ul li a {
	margin-right:30px;
	padding:35px 0;
}
nav.bootsnav.navbar-default.info-topbar.active-full ul li a {
	margin-right:0;
	padding:35px 20px;
}
.attr-nav >a.btn-theme.effect:hover,.attr-nav >a.btn-theme.effect,.attr-nav >a.btn-theme.effect:focus {
	background:#006e39 none repeat scroll 0 0;
	border:2px solid #006e39;
	color:#ffffff !important;
}
nav.bootsnav.navbar-default.info-topbar.sticked ul li a {
	margin-right:30px;
	padding:35px 0;
}
.attr-nav.social li {
	display:inline-block;
	padding:25px 0 !important;
	transition:all 0.35s ease-in-out;
	-webkit-transition:all 0.35s ease-in-out;
	-moz-transition:all 0.35s ease-in-out;
	-ms-transition:all 0.35s ease-in-out;
	-o-transition:all 0.35s ease-in-out;
}
.attr-nav.social li a {
	border:1px solid #f4f4f4;
	-webkit-border-radius:50%;
	-moz-border-radius:50%;
	border-radius:50%;
	color:#006e39;
	display:inline-block;
	font-size:14px;
	height:40px;
	line-height:40px;
	margin-left:10px;
	padding:0 !important;
	text-align:center;
	width:40px;
}
nav.navbar.bootsnav.sticked .attr-nav.social li {
	display:inline-block;
	padding:20px 0 !important;
}
/*CSS*/
/* CSS3 delays for transition effects */
.menu li {
    background: -moz-linear-gradient(#292929, #252525);
    background: -ms-linear-gradient(#292929, #252525);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #292929), color-stop(100%, #252525));
    background: -webkit-linear-gradient(#292929, #252525);
    background: -o-linear-gradient(#292929, #252525);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#292929', endColorstr='#252525');
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#292929', endColorstr='#252525')";
    background: linear-gradient(#292929, #252525);

    border-bottom: 2px solid #181818;
    border-top: 2px solid #303030;
    min-width: 160px;
}
.menu > li {
    display: block;
    float: left;
    position: relative;
}
.menu > li:first-child {
    border-radius: 5px 0 0;
}
/* onhover styles */
.menu li:hover {
    background-color: #1c1c1c;
    background: -moz-linear-gradient(#1c1c1c, #1b1b1b);
    background: -ms-linear-gradient(#1c1c1c, #1b1b1b);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #1c1c1c), color-stop(100%, #1b1b1b));
    background: -webkit-linear-gradient(#1c1c1c, #1b1b1b);
    background: -o-linear-gradient(#1c1c1c, #1b1b1b);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#1c1c1c', endColorstr='#1b1b1b');
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#1c1c1c', endColorstr='#1b1b1b')";
    background: linear-gradient(#1c1c1c, #1b1b1b);

    border-bottom: 2px solid #222222;
    border-top: 2px solid #1B1B1B;
}
.menu li:hover > a {
    border-radius: 5px 0 0 0;
    border-left: 3px solid #C4302B;
    color: #C4302B;
}

/* submenu styles */
.submenu {
    left: 0;
    max-height: 0;
    position: absolute;
    top: 100%;
    z-index: 0;

    -webkit-perspective: 400px;
    -moz-perspective: 400px;
    -ms-perspective: 400px;
    -o-perspective: 400px;
    perspective: 400px;
}
.submenu li {
    opacity: 0;

    -webkit-transform: rotateY(90deg);
    -moz-transform: rotateY(90deg);
    -ms-transform: rotateY(90deg);
    -o-transform: rotateY(90deg);
    transform: rotateY(90deg);

    -webkit-transition: opacity .4s, -webkit-transform .5s;
    -moz-transition: opacity .4s, -moz-transform .5s;
    -ms-transition: opacity .4s, -ms-transform .5s;
    -o-transition: opacity .4s, -o-transform .5s;
    transition: opacity .4s, transform .5s;
}
.menu .submenu li:hover a {
    border-left: 3px solid #454545;
    border-radius: 0;
    color: #ffffff;
}
.menu > li:hover .submenu, .menu > li:focus .submenu {
    max-height: 2000px;
    z-index: 10;
}
.menu > li:hover .submenu li, .menu > li:focus .submenu li {
    opacity: 1;

    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
}

/* CSS3 delays for transition effects */
.menu li:hover .submenu li:nth-child(1) {
    -webkit-transition-delay: 0s;
    -moz-transition-delay: 0s;
    -ms-transition-delay: 0s;
    -o-transition-delay: 0s;
    transition-delay: 0s;
}
.menu li:hover .submenu li:nth-child(2) {
    -webkit-transition-delay: 50ms;
    -moz-transition-delay: 50ms;
    -ms-transition-delay: 50ms;
    -o-transition-delay: 50ms;
    transition-delay: 50ms;
}
.menu li:hover .submenu li:nth-child(3) {
    -webkit-transition-delay: 100ms;
    -moz-transition-delay: 100ms;
    -ms-transition-delay: 100ms;
    -o-transition-delay: 100ms;
    transition-delay: 100ms;
}
.menu li:hover .submenu li:nth-child(4) {
    -webkit-transition-delay: 150ms;
    -moz-transition-delay: 150ms;
    -ms-transition-delay: 150ms;
    -o-transition-delay: 150ms;
    transition-delay: 150ms;
}
.menu li:hover .submenu li:nth-child(5) {
    -webkit-transition-delay: 200ms;
    -moz-transition-delay: 200ms;
    -ms-transition-delay: 200ms;
    -o-transition-delay: 200ms;
    transition-delay: 200ms;
}
.menu li:hover .submenu li:nth-child(6) {
    -webkit-transition-delay: 250ms;
    -moz-transition-delay: 250ms;
    -ms-transition-delay: 250ms;
    -o-transition-delay: 250ms;
    transition-delay: 250ms;
}
.menu li:hover .submenu li:nth-child(7) {
    -webkit-transition-delay: 300ms;
    -moz-transition-delay: 300ms;
    -ms-transition-delay: 300ms;
    -o-transition-delay: 300ms;
    transition-delay: 300ms;
}
.menu li:hover .submenu li:nth-child(8) {
    -webkit-transition-delay: 350ms;
    -moz-transition-delay: 350ms;
    -ms-transition-delay: 350ms;
    -o-transition-delay: 350ms;
    transition-delay: 350ms;
}

.submenu li:nth-child(1) {
    -webkit-transition-delay: 350ms;
    -moz-transition-delay: 350ms;
    -ms-transition-delay: 350ms;
    -o-transition-delay: 350ms;
    transition-delay: 350ms;
}
.submenu li:nth-child(2) {
    -webkit-transition-delay: 300ms;
    -moz-transition-delay: 300ms;
    -ms-transition-delay: 300ms;
    -o-transition-delay: 300ms;
    transition-delay: 300ms;
}
.submenu li:nth-child(3) {
    -webkit-transition-delay: 250ms;
    -moz-transition-delay: 250ms;
    -ms-transition-delay: 250ms;
    -o-transition-delay: 250ms;
    transition-delay: 250ms;
}
.submenu li:nth-child(4) {
    -webkit-transition-delay: 200ms;
    -moz-transition-delay: 200ms;
    -ms-transition-delay: 200ms;
    -o-transition-delay: 200ms;
    transition-delay: 200ms;
}
.submenu li:nth-child(5) {
    -webkit-transition-delay: 150ms;
    -moz-transition-delay: 150ms;
    -ms-transition-delay: 150ms;
    -o-transition-delay: 150ms;
    transition-delay: 150ms;
}
.submenu li:nth-child(6) {
    -webkit-transition-delay: 100ms;
    -moz-transition-delay: 100ms;
    -ms-transition-delay: 100ms;
    -o-transition-delay: 100ms;
    transition-delay: 100ms;
}
.submenu li:nth-child(7) {
    -webkit-transition-delay: 50ms;
    -moz-transition-delay: 50ms;
    -ms-transition-delay: 50ms;
    -o-transition-delay: 50ms;
    transition-delay: 50ms;
}
.submenu li:nth-child(8) {
    -webkit-transition-delay: 0s;
    -moz-transition-delay: 0s;
    -ms-transition-delay: 0s;
    -o-transition-delay: 0s;
    transition-delay: 0s;
}
/*CSS*/
/*企业文化*/
.culture-container .culture{
    display: block;
    margin-top: 35px;
}
.culture{
    position: relative;
    margin: 0 -15px;
}
.culture img{
	border-radius: 8px;
    display: block;
    width: 100%;
}

.culture .icon{
	font-size:60px;
	color:#fff;
    position: absolute;
    width: 11%;
    left: 11.5%;
    top: 33%;
}
.culture .icon img{
    display: block;
    width: 100%;
}

.culture .content{
    position: absolute;
    top: 30%;
    left: 32%;
    width: 67%;
}
.culture .content::before{
    content: ' ';
    position: absolute;
    width: 1px;
    height: 77px;
    background: #fff;
    left: -5.7%;
    top: 5px;
}
.culture .content .title{
    color: #fff;
    font-size: 30px;
    line-height: 54px;
}
.culture .content .subTitle{
    color: #fff;
    font-size: 20px;
    line-height: 24px;
    padding-right: 20px;
}

@media screen and (max-width: 1366px) {
    .culture .content .subTitle{
        font-size: 16px;
        line-height: 20px;
    }
    .culture .content::before{
        height: 70px;
    }
    
}
@media screen and (max-width: 1200px) {
    .culture .content .title{
        font-size: 24px;
        line-height: 30px;
    }
    .culture .content::before{
        height: 50px;
        top: 0;
    }
}
@media screen and (max-width: 600px) {
    .culture .content .title{
        font-size: 18px;
        line-height: 24px;
    }
    .culture .content .subTitle{
        font-size: 12px;
        line-height: 16px;
    }
    .culture .content::before{
        height: 40px;
        top: 0;
    }

}
@media (min-width: 992px) {
    .col-md-6:nth-child(2n + 1) .activity{
        margin-right: 0;
    }
    .col-md-6:nth-child(2n) .activity{
        margin-left: 0;
    }
    .z-learn-cotainer .col-md-6:nth-child(1) > *{
        margin-right: 0 !important;
    }
    .z-learn-cotainer .col-md-6:nth-child(2) > *{
        margin-left: 0 !important;
    }

    .col-md-6:nth-child(2n + 1) .culture{
        margin-right: 0;
    }
    .col-md-6:nth-child(2n) .culture{
        margin-left: 0;
    }
}

@media (min-width:1620px) and (max-width:1920px) {
	.about-area .about-content .thumb img {
		padding-left:180px;
	}
}
.father{
	height: 470px;
	/*background-color: black;*/
	/* 父容器开启flex布局 */
	display: flex;
	/* 水平垂直居中 */
	justify-content: center;
	align-items: center;
}

.son{
	width: 90%;
	height: 400px;
	background-color: white;
	position:absolute;
	/* 水平垂直居中 */
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
}

/*主营业务*/
.business_info{
	font-size: 16px;

 	/*line-height:400px;
    left: 0;
    padding: 30px;
    right: 0;
    top: 50%;
    transition: .3s;
    z-index: 9;*/
}
/*主营业务*/
/*首页关于我们*/
.maincolor{
	color: #006e39;
}
.white{
	color: #ffffff;
}
.about_left_about{
	font-size:24px;
	line-height: 20px;
	color:#fff;
	display: block;
	font-weight:600;
	margin:10px 0px 30px 0px;
}
.about_left_about span{
	font-size:20px;
	line-height: 20px;
	color:#fff;
	font-weight:200;
	margin:20px 0px 30px 35px;
}
.about_right_name{
	font-size: 28px;
    float: left;
    color: #006e39;
    margin:30px 0px 0px 10px;
    display: inline-block;
    font-weight: 600;
    padding-bottom: 10px;
    position: relative;
    text-transform: capitalize;
}
.about_right_name span{
	font-size: 20px;
    /*float: left;*/
    color: #006e39;
    margin:30px 0px 30px 80px;
    display: inline-block;
    font-weight: 600;
    padding-bottom: 10px;
    position: relative;
    text-transform: capitalize;
}
.about_right_description{
	color: #666666;
    line-height: 26px;
    /*margin: 0 0 15px -20px;*/ /*20220713 更改*/
    text-transform: none;
    font-weight: 400;
}
.about_right_more{
	width: 120px;
    /*height: 30px;*/
    border:1px solid #006e39;
    text-align: center;
    /*line-height: 30px;*/
    color: #fff;
    /*display: block;*/
    /*background: #006e39;*/
    /*margin-top: 20px;*/
    border-radius: 4px;
    letter-spacing: 1px;
}
.white_color{
	color:#fff;
}
.about_right_more :hover {
    width: 120px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    color: #fff;
    display: block;
    background: #006e39;
    /*margin-top: 20px;*/
    border-radius: 4px;
    letter-spacing: 1px;
}
.business_bg{
	/*margin-left: 5px;*/
	/*width:183px;*/
	height:303px;
	/*position:absolute;*/
	/*left:50%;*/
	/*top:-40px;*/
	/*margin-left:-40px;*/
	/*background-image:url("/Public/statics/images/business_bg_default.png");
	background-repeat:no-repeat;
	background-attachment:fixed;
    background-position:center;*/
}
.effect-left-swipe_{
	display: block;
	margin:0 auto;
}
.pf_item_topimg{
    display: block;
    margin-bottom: 5px;
    margin-top: 8px;
}
.pf_item_text{
	font-size: 18px;
	margin-top: 5px;
	margin-bottom: 5px;
}
.pf_item_botimg{
	/*margin-left: -3px;*/
    display: block;
    /*margin-bottom: 20px;*/
    /*margin-top: 25px;*/
}
.bottom-about-detail {
    width: 130px;
    height: 40px;
    font-size: 20px;
    text-align: center;
    line-height: 40px;
    color: #006e39;
    display: block;
    border: 1px solid #006e39;
    margin-top: 20px;
    border-radius: 4px;
    letter-spacing: 1px;
}
.bottom-about-detail a{
	color: #006e39;
}
/*.mytooltip .tooltip-inner{
    padding:10px;
    line-height: 30px;
    text-align: left;
    background-color:  rgba(0,0,0,0.80);;
}*/

.tooltip-inner{
 	 font-size:18px;
     background: #fafafa !important; /*修改背景色*/
     text-align: left !important;/*字体左对齐*/
     color:#363636 !important;/*字体颜色*/
     border:1px solid #dedede;/*添加boder*/
     width: 400px;　　/*提示框的宽度增大*/
     max-width: 400px !important;
  }
.tooltip-arrow{
    border-bottom-color: #ffffff !important;
    opacity: 0;
 }
.tooltip{
   opacity: 1 !important;
 }
@media only screen and (max-width: 1199px){
	.main-timeline:before{
		width: 5px;
		height: 100%;
		top: 0;
		left: 5%;
	}
	.main-timeline .timeline,
	.main-timeline .timeline.bottom,
	.main-timeline .timeline.bottom:nth-child(5n+1),
	.main-timeline .timeline.bottom:last-child{
		width: 85%;
		float: none;
		margin: 0 0 20px 15%;
	}
	.main-timeline .timeline:after,
	.main-timeline .timeline.bottom:after{
		width: 60px;
		height: 5px;
		top: 50px;
		left: -58px;
		border-top: 9px dotted #fff;
	}
	.main-timeline .timeline-content,
	.main-timeline .timeline.bottom .timeline-content{ margin: 0; }
	.main-timeline .year,
	.main-timeline .timeline.bottom .year{
		width: 65px;
		height: 65px;
		line-height: 60px;
		margin: 0;
		position: absolute;
		top: 20px;
		left: -15.5%;
		z-index: 1;
	}
	.main-timeline .timeline .timeline-content:after{ display: none; }
	.main-timeline .timeline.bottom:before{
		bottom: auto;
		top: 30px;
		left: -2px;
	}
}
@media only screen and (max-width: 990px){
	.main-timeline .year,
	.main-timeline .timeline.bottom .year{
		left: -16.8%;
	}
}
@media only screen and (max-width: 767px){
	.main-timeline .timeline:after,
	.main-timeline .timeline.bottom:after{ display: none; }
	.main-timeline .year,
	.main-timeline .timeline.bottom .year{
		width: 30px;
		height: 30px;
		border: 3px solid #fff;
		left: -13.5%;
	}
	.main-timeline .year span{ display: none; }
}
@media only screen and (max-width: 480px){
	.main-timeline .year,
	.main-timeline .timeline.bottom .year{ left: -15.5%; }
}
/*纵向时间轴*/
/* 3.5. HORIZONTAL TIMELINE */
.cd-horizontal-timeline {
	margin:0;
	padding-top:21px;
	border-top:1px solid #ebebea;
}
.cd-horizontal-timeline .timeline {
	width:100%;
}
.cd-horizontal-timeline .events >ol {
	margin:0;
	padding:0;
	list-style:none;
}
.cd-horizontal-timeline .events a {
	padding-bottom:19px;
	color:#999;
	font-size:inherit;
	white-space:nowrap;
}
.cd-horizontal-timeline .events a.selected {
	color:#393939;
}
.cd-horizontal-timeline .events a.selected:after,.no-touch .cd-horizontal-timeline .events a:hover:after {
	background-color:#2bb3c0;
	border-color:#2bb3c0;
}
.cd-horizontal-timeline .events a.older-event:not(.selected):after {
	background-color:#fff;
	border-color:#2bb3c0;
}
.cd-horizontal-timeline .filling-line {
	background-color:#2bb3c0;
}
.cd-timeline-navigation {
	margin:0;
	padding:0;
	list-style:none;
}
.cd-timeline-navigation a {
	color:#2bb3c0;
	border-width:1px;
	border-color:#2bb3c0;
	font-size:20px;
	line-height:27px;
	text-indent:0;
	text-align:center;
	vertical-align:middle;
}
.cd-timeline-navigation a.prev {
	-webkit-transform:translateY(-50%) rotate(0);
	transform:translateY(-50%) rotate(0);
}
.cd-timeline-navigation a.inactive {
	color:#ccc;
	border-color:#ccc;
}
.cd-timeline-navigation a .fa {
	vertical-align:middle;
}
.cd-timeline-navigation a:after {
	display:none;
}
.cd-horizontal-timeline .events-content {
	margin:12px 0 3px;
}
.cd-horizontal-timeline .events-content >ol {
	margin:0;
	padding:0;
	list-style:none;
}
.cd-horizontal-timeline .events-content >ol >li {
	padding-left:0;
	padding-right:0;
}
.cd-horizontal-timeline .events-content .title .h4 {
	color:#393939;
	font-size:18px;
	line-height:28px;
	font-weight:600;
}
.cd-horizontal-timeline .events-content .subtitle {
	margin-top:6px;
}
.cd-horizontal-timeline .events-content .subtitle p {
	font-size:14px;
	line-height:24px;
	font-style:italic;
}
.cd-horizontal-timeline .events-content .desc {
	margin-top:13px;
}
.cd-horizontal-timeline .events-content .desc p {
	color:#696969;
	font-size:14px;
	line-height:24px;
}
.vertical-timeline >ul {
	position:relative;
	z-index:0;
}
.vertical-timeline >ul:before {
	content:" ";
	display:none;
	position:absolute;
	top:0;
	left:134px;
	width:6px;
	height:100%;
	background-color:#ebebea;
	border-radius:25px;
}
.vertical-timeline >ul >li {
	position:relative;
	z-index:0;
}
.vertical-timeline >ul >li:before,.vertical-timeline >ul >li:after {
	content:" ";
	display:table;
}
.vertical-timeline >ul >li:after {
	clear:both;
}
.vertical-timeline >ul >li + li {
	/*margin-top:25px;*/
}
.vertical-timeline .title,.vertical-timeline .action {
	display:inline-block;
	position:relative;
	width:80px;
	padding:7px 0;
	color:#e16123;
	background-color:#fff;
	border:1px solid;
	border-radius:25px;
	text-align:center;
	z-index:0;
}
.vertical-timeline .action {
	padding:0;
	border-width:0;
}
.vertical-timeline .time {
	display:block;
	position:absolute;
	top:12px;
	left:20px;
	color:#999;
	white-space:nowrap;
}
.vertical-timeline .dot {
	float:left;
	display:none;
	position:relative;
	width:30px;
	height:30px;
	margin-top:24px;
	margin-right:35px;
	background-color:#ebebea;
	border:8px solid #fff;
	border-radius:50%;
	z-index:0;
}
.vertical-timeline .dot:before {
	content:" ";
	position:absolute;
	top:3px;
	left:22px;
	width:25px;
	height:8px;
	background-color:#ebebea;
	border-radius:0 25px 25px 0;
}
.vertical-timeline .content {
	/*padding:36px 20px 13px;*/
	/*border:1px solid #eee;*/
	border-radius:4px;
	overflow:hidden;
}
.vertical-timeline .subtitle {
	margin:0 0 6px;
	color:#393939;
	font-size:14px;
	/*line-height:26px;*/
	/*font-weight:600;*/
}
@media (min-width:992px) {
	.vertical-timeline >ul:before,.vertical-timeline .dot {
	display:block;
}
.vertical-timeline .time {
	float:left;
	position:relative;
	top:auto;
	left:auto;
	min-width:100px;
	margin-top:26px;
	margin-right:22px;
	text-align:right;
}
.vertical-timeline .content {
	padding-top:30px;
}
.vertical-timeline .title {
	margin-left:96px;
}
.vertical-timeline .action {
	margin-left:65px;
}
}
/*子栏目导航框*/
.page-header-content{
	background-color: #22ad38;
	background: transparent none repeat scroll 0 0;
    display: inline-block;
    margin: 0;
    padding: 15px;
    position: relative;
    z-index: 1;
}
.yd-two-daohang-li{ height: 100%; margin-top: 210px;}
.yd-two-daohang-li-left {float: left; width: 240px; height: 100px; position: relative;}
.yd-two-daohang-li-company {float: left; width: 520px; height: 80px; position: relative;overflow: hidden;}
.yd-two-daohang-li-left-yy {  position: absolute; width: 100%; height: 100%;background: #22ac38; /* filter:alpha(opacity=50); -moz-opacity:0.5; -khtml-opacity: 0.5; opacity: 0.5;*/}
.yd-two-daohang-li-left-t { padding-left: 75px; padding-top: 27px; position: absolute;left: 0;top: 0;color: #FFFFFF; font-size: 24px;}
.yd-two-daohang-li-span-dot{
	display: block; width: 100%; font-size: 14px; color: #fff; line-height: 36px;
}
.yd-two-daohang-li-span-dot-in{
	float: left; display: block;width: 10px; margin-top:12px; margin-right: 5px; height: 10px; background: #fff;
}
.clearboth {clear: both;}

.yd-two-daohang-li-right {
	/*width: 1200px;*/
    margin: 0 auto;
    padding-top: 40px;
}
.yd-two-daohang-li-right .nav-ul {
    text-align: center;
    font-size: 0;
}
.yd-two-daohang-li-right ul{ text-align: center;}
.yd-two-daohang-li-right li{
	/*height: 45px; width: 110px;*/
	height: 65px;
	width: 155px;
	text-align: center; 
	line-height: 65px; 
	background: #22ac38; 
	cursor: pointer; 
	font-size: 20px;
	margin-right: 10px;
	border-radius:5px;
	display: inline-block;
	margin-bottom: 5px;
}
.yd-two-daohang-li-right li:hover{
	/*height: 45px; width: 110px;*/
	height: 65px;
	width: 155px;
	text-align: center;
	color: #FFFFFF;
	line-height: 65px; background: #ff8c35;  cursor: pointer; font-size: 20px;
	margin-right: 10px;
	border-radius:5px;
	display: inline-block;
}
.yd-two-daohang-li-right li.active {background: #ff8c35;}
.yd-two-daohang-li-right li a{ color: #FFFFFF;}
/*.container .buttons li:hover{
  background-color: #79fe4d;
}
.container .buttons li:hover a{
  color: #fff;
}*/

/*子栏目导航*/
.party_top{float:left;text-align: right;margin-top:5px;margin-left: 120px;}
.party_top li{ font-size:20px;display: inline-block;margin-left: 20px; position: relative;padding-bottom: 10px; cursor: pointer;}
.party_top li:after{ position: absolute;bottom: 0px; left:0;width: 0; height:2px; content: ''; -webkit-transition: 0.3s linear;
	-moz-transition: 0.3s linear;
	-ms-transition: 0.3s linear;
	-o-transition: 0.3s linear;
	transition: 0.3s linear;}
.party_top li:hover:after,.party_top li.active:after{width: 100%;}


.bg-theme .site-heading h2::before,.shadow .site-heading h2::before,.half-bg .site-heading h2::before {
	background:#ffffff none repeat scroll 0 0;
}
/*首页灰*/
.margin-bottom-thirty{
	margin-bottom: 40px;
}
.site-heading-grey h2::before {
	background:#006e39 none repeat scroll 0 0;
	bottom:0;
	content:"";
	height:3px;
	left:50%;
	margin-left:-20px;
	position:absolute;
	width:40px;
}
.site-heading-grey {
	/*margin-bottom:40px;*/
	overflow:hidden;
	margin-top:-5px;
}
.site-heading-grey h2 {
	font-size:28px;
	float: left;
	color:#3d4140;
	display:inline-block;
	font-weight:400;
	padding-bottom:10px;
	position:relative;
	text-transform:capitalize;
}
.site-heading-grey span {
	color: #006e39;
    font-size: 20px;
    left: 160px;
    top: 3px;
    position: absolute;
}
.business_img{
	right: 0;
    top: 3px;
    position: absolute;
    margin-right: 50px;
}
/*首页灰*/
.site-heading h2 {
	font-size:28px;
	float: left;
	color:#006e39;
	display:inline-block;
	font-weight:600;
	padding-bottom:10px;
	position:relative;
	text-transform:capitalize;
}
.site-heading h4 {
	text-transform:uppercase;
}
.site-heading.clean h2 {
	padding-bottom:0;
}
.site-heading.clean h2 span {
	color:#006e39;
}
.site-heading.barber h2 span {
	color:#bc9355;
}
.site-heading p {
	margin:0;
}
.site-heading h2::before {
	background:#006e39 none repeat scroll 0 0;
	bottom:0;
	content:"";
	height:2px;
	left:50%;
	margin-left:-20px;
	position:absolute;
	width:40px;
}
.site-heading {
	margin-bottom:40px;
	overflow:hidden;
	margin-top:-5px;
}
.site-heading.single {
	margin-bottom:35px;
}
.carousel-shadow .owl-stage-outer {
	margin:-15px -15px 0;
	padding:15px;
}
/*通用小标题*/
.site-common-heading h2 {
	display:inline-block;
	font-weight:600;
	padding-bottom:20px;
	position:relative;
	text-transform:capitalize;
}
.site-common-heading h4 {
	text-transform:uppercase;
}
.site-common-heading.clean h2 {
	padding-bottom:0;
}
.site-common-heading.clean h2 span {
	color:#088239;
}
.site-common-heading h2 span {
	color:#088239;
}
.site-common-heading.barber h2 span {
	color:#bc9355;
}
.site-common-heading p {
	margin:0;
}
.site-common-heading h2::before {
	background:#088239 none repeat scroll 0 0;
	bottom:0;
	content:"";
	height:2px;
	left:50%;
	margin-left:-20px;
	position:absolute;
	width:40px;
}
.bg-theme .site-common-heading h2::before,.shadow .site-common-heading h2::before,.half-bg .site-common-heading h2::before {
	background:#ffffff none repeat scroll 0 0;
}
.site-common-heading h2 span {
	color:#088239;
}
.site-common-heading {
	/*margin-bottom:60px;*/
	overflow:hidden;
	margin-top:-5px;
}
.site-common-heading.single {
	margin-bottom:35px;
}
/* ==============================================================      # Bradcrumb =================================================================== */
.breadcrumb-area {
	padding:150px 0;
}
.breadcrumb-area .breadcrumb {
	background:transparent none repeat scroll 0 0;
	display:inline-block;
	margin:0;
	padding:15px;
	position:relative;
	z-index:1;
}
.breadcrumb-area .breadcrumb::after {
	background:#232323 none repeat scroll 0 0;
	content:"";
	height:100%;
	left:0;
	opacity:0.7;
	position:absolute;
	top:0;
	width:100%;
	z-index:-1;
}
.breadcrumb-area h1 {
	display:block;
	font-weight:600;
	text-transform:uppercase;
	font-size:40px;
	margin-top:-10px;
}
.breadcrumb >li + li::before {
	content:"\f105";
	font-family:"Font Awesome 5 Free";
	font-weight:600;
	padding:0 5px;
	color:#ffffff;
	display:none;
}
.breadcrumb-area .breadcrumb li i {
	margin-right:5px;
}
.breadcrumb-area .breadcrumb li {
	padding:0 15px;
	position:relative;
	z-index:1;
}
.breadcrumb-area .breadcrumb li::after {
	border:2px solid #ffffff;
	content:"";
	height:10px;
	left:-7px;
	margin-top:-5px;
	position:absolute;
	top:50%;
	width:10px;
	-webkit-border-radius:50%;
	-moz-border-radius:50%;
	border-radius:50%;
}
.breadcrumb-area .breadcrumb li:first-child::after {
	display:none;
}
.breadcrumb-area .breadcrumb a,.breadcrumb-area .breadcrumb li {
	font-weight:500;
	text-transform:uppercase;
	color:#ffffff;
}
.breadcrumb-area .breadcrumb li.active {
	color:#006e39;
}
/* Topbar CSS */.top-bar-area {
	border-bottom:1px solid #e7e7e7;
	padding:10px 0;
	overflow:hidden;
}
.top-bar-area .row {
	align-items:center;
	display:flex;
	float:none;
	vertical-align:middle;
}
.top-bar-area .info.box li {
	display:inline-block;
	text-align:left;
	float:left;
}
.top-bar-area .info.box li .icon,.top-bar-area .info.box li .info {
	display:table-cell;
	vertical-align:middle;
}
.top-bar-area .info.box li .info span {
	display:block;
	font-weight:600;
	line-height:20px;
	text-transform:uppercase;
}
.top-bar-area .info.box li .icon i {
	color:#666666;
	font-size:30px;
}
.top-bar-area.bg-light .info.box li .icon i {
	color:#006e39;
}
.top-bar-area .info.box li .icon {
	padding-right:15px;
}
.top-bar-area .address-info.text-right .info.box li {
	margin-left:15px;
	padding-left:15px;
	position:relative;
}
.top-bar-area .address-info.text-left .info.box li {
	margin-right:15px;
	padding-right:15px;
	position:relative;
}
.top-bar-area .address-info.text-right .info.box li::after {
	background:#e7e7e7 none repeat scroll 0 0;
	content:"";
	height:200px;
	left:0;
	position:absolute;
	top:-50%;
	width:1px;
}
.top-bar-area .address-info.text-left .info.box li::after {
	background:#e7e7e7 none repeat scroll 0 0;
	content:"";
	height:200px;
	right:0;
	position:absolute;
	top:-50%;
	width:1px;
}
.top-bar-area .address-info.text-right .info.box li:first-child::after {
	display:none;
}
.top-bar-area .address-info.text-left .info.box li:last-child::after {
	display:none;
}
.top-bar-area .address-info.text-right .info.box li:first-child {
	border:medium none;
	margin-left:0;
	padding-left:0;
}
.top-bar-area .address-info.text-left .info.box li:last-child {
	border:medium none;
	margin-right:0;
	padding-right:0;
}
.top-bar-area .address-info.text-right .info {
	display:inline-block;
}
.top-bar-area .link.text-right a {
	margin-left:5px;
}
.top-bar-area .social li {
	display:inline-block;
}
.top-bar-area .social li a {
	color:#666666;
	display:inline-block;
	font-size:20px;
}
.top-bar-area .social.text-right li {
	margin-left:15px;
}
.top-bar-area.one-line li {
	margin-right:15px;
	padding-right:15px;
}
.top-bar-area.bg-dark li {
	color:#ffffff;
}
.top-bar-area.one-line.bg-dark li {
	border-right:1px solid rgba(255,255,255,0.3);
}
.top-bar-area.one-line li:last-child {
	border:medium none;
	margin-right:0;
	padding-right:0;
}
.top-bar-area.one-line li i {
	margin-right:5px;
}
.top-bar-area.one-line li i {
	color:#006e39;
}
.top-bar-area.one-line .link a {
	border-left:1px solid #e7e7e7;
	font-weight:500;
	margin-left:13px;
	padding-left:15px;
	text-transform:uppercase;
}
.top-bar-area.one-line.bg-dark .link a {
	border-left:1px solid #ffffff;
}
.top-bar-area.one-line .link a:hover,.top-bar-area.one-line .link a:last-child:hover {
	color:#006e39;
}
.top-bar-area.one-line .link a:last-child {
	color:#232323;
}
.top-bar-area.one-line.bg-dark .link a:last-child {
	color:#ffffff;
}
.top-bar-area.one-line .link a:first-child {
	border:medium none;
	padding-left:0;
}
/* ==============================================================      # Banner =================================================================== */
body,.banner-area,.banner-area div {
	/*height:600px;*/
	height:100%;
}
.banner-area.auto-height,.banner-area.auto-height div {
	height:auto;
	min-height:100%;
}
.banner-area .box-cell {
	display:table-cell;
	vertical-align:middle;
	width:100%;
}
.banner-area .box-table {
	display:table;
	width:100%;
}
.banner-area .box-cell,.banner-area .box-cell div {
	height:auto;
}
.banner-area {
	position:relative;
	overflow:hidden;
}
.banner-area .wavesshape {
	bottom:-2px;
	left:0;
	position:absolute;
	right:0;
	top:auto;
	width:100%;
}
.banner-area .wavesshape.shape {
	bottom:-50px;
	height:auto;
}
.banner-area .content {
	position:relative;
	z-index:9;
}
.banner-area.wavesshape {
	position:relative;
	z-index:1;
}
.banner-area.triangle-shadow {
	position:relative;
	z-index:1;
}
.banner-area.triangle-shadow::before {
	border-bottom:0 solid transparent;
	border-right:100vw solid #fff;
	border-top:80px solid transparent;
	bottom:0;
	content:"";
	height:0;
	left:0;
	position:absolute;
	width:100%;
	z-index:101;
}
.banner-area.shadow-inner .content {
	padding:30px;
	position:relative;
	z-index:1;
	overflow:hidden;
}
.banner-area.content-double .double-items {
	align-items:center;
	align-self:center;
	display:flex;
	justify-content:center;
	vertical-align:middle;
}
.banner-area .banner-carousel .owl-item.center img {
	transform:scale(1);
	-webkit-transform:scale(1);
	-moz-transform:scale(1);
	-ms-transform:scale(1);
	-o-transform:scale(1);
}
.banner-area .banner-carousel .owl-item img {
	transform:scale(0.9);
	-webkit-transform:scale(0.9);
	-moz-transform:scale(0.9);
	-ms-transform:scale(0.9);
	-o-transform:scale(0.9);
}
/* Animation delays */
.banner-area .item h1:first-child,.banner-area .item h2:first-child,.banner-area .item h3:first-child,.banner-area .item h4:first-child,.banner-area .item h5:first-child,.banner-area .item h6:first-child {
	animation-delay:.5s;
}
.banner-area .item h1:nth-child(2),.banner-area .item h2:nth-child(2),.banner-area .item h3:nth-child(2),.banner-area .item h4:nth-child(2),.banner-area .item h5:nth-child(2),.banner-area .item h6:nth-child(2) {
	animation-delay:.7s;
}
.carousel-caption h1:nth-child(3),.carousel-caption h2:nth-child(3),.carousel-caption h3:nth-child(3),.carousel-caption h4:nth-child(3),.carousel-caption h5:nth-child(3),.carousel-caption h6:nth-child(3) {
	animation-delay:.9s;
}
.banner-area .item p {
	animation-delay:.5s;
}
.banner-area .item ul {
	animation-delay:.6s;
}
.banner-area .item a,.banner-area .item button {
	animation-delay:.7s;
}
/* Carousel Fade Effect */.carousel-fade .carousel-inner .item {
	-webkit-transition-property:opacity;
	transition-property:opacity;
}
.carousel-fade .carousel-inner .item,.carousel-fade .carousel-inner .active.left,.carousel-fade .carousel-inner .active.right {
	opacity:0;
}
.carousel-fade .carousel-inner .active,.carousel-fade .carousel-inner .next.left,.carousel-fade .carousel-inner .prev.right {
	opacity:1;
}
.carousel-fade .carousel-inner .next,.carousel-fade .carousel-inner .prev,.carousel-fade .carousel-inner .active.left,.carousel-fade .carousel-inner .active.right {
	left:0;
	-webkit-transform:translate3d(0,0,0);
	-moz-transform:translate3d(0,0,0);
	-ms-transform:translate3d(0,0,0);
	-o-transform:translate3d(0,0,0);
}
.carousel-fade .carousel-control {
	z-index:2;
}
/* Slider Zoom Effect */@-webkit-keyframes zoom {
	from {
	-webkit-transform:scale(1,1);
}
to {
	-webkit-transform:scale(1.2,1.2);
}
}@-moz-keyframes zoom {
	from {
	-moz-transform:scale(1,1);
}
to {
	-moz-transform:scale(1.2,1.2);
}
}@-o-keyframes zoom {
	from {
	-o-transform:scale(1,1);
}
to {
	-o-transform:scale(1.2,1.2);
}
}@keyframes zoom {
	from {
	transform:scale(1,1);
}
to {
	transform:scale(1.2,1.2);
}
}.carousel-inner .item >.slider-thumb {
	-webkit-animation:zoom 20s;
	animation:zoom 20s;
}
.banner-area .carousel-zoom .slider-thumb {
	height:100%;
	position:absolute;
	width:100%;
}
#particles-js,#ripple {
	height:100%;
	left:0;
	position:absolute;
	top:0;
	width:100%;
}
.banner-area .carousel-control {
	background:transparent none repeat scroll 0 0;
	font-size:40px;
	height:50px;
	line-height:50px;
	margin-top:-25px;
	opacity:1;
	padding:0;
	position:absolute;
	top:50%;
	width:50px;
	z-index:1;
}
.banner-area .carousel-control.shadow {
	background:transparent none repeat scroll 0 0;
	color:#ffffff;
	font-size:20px;
	height:50px;
	line-height:50px;
	margin-top:-25px;
	opacity:1;
	padding:0;
	position:absolute;
	text-shadow:inherit;
	top:50%;
	width:50px;
	z-index:1;
}
.banner-area .carousel-control.shadow::after {
	background:#1e2726 none repeat scroll 0 0;
	-webkit-border-radius:50%;
	-moz-border-radius:50%;
	border-radius:50%;
	content:"";
	height:100%;
	left:0;
	opacity:0.5;
	position:absolute;
	top:0;
	width:100%;
	z-index:-1;
}
.banner-area .carousel-control.left {
	left:-50px;
}
.banner-area:hover .carousel-control.left {
	left:0;
}
.banner-area:hover .carousel-control.shadow.left {
	left:20px;
}
.banner-area .carousel-control.right {
	right:-50px;
}
.banner-area:hover .carousel-control.right {
	right:0;
}
.banner-area:hover .carousel-control.shadow.right {
	right:20px;
}
/* Content */.banner-area .transparent-nav .content {
	padding-top:60px;
}
.banner-area .content {
	overflow:hidden;
}
.banner-area .content h1 {
	color:#fff;
	font-size:60px;
	font-weight:600;
	margin-bottom:35px;
	text-transform:capitalize;
	line-height:1.1;
}
.banner-area .heading-uppercase .content h1 {
	font-size:50px;
	font-weight:900;
	text-transform:uppercase;
	line-height:1.2;
}
.banner-area .text-center .content h1 {
	line-height:1.2;
}
.banner-area .content h1 span {
	
	font-weight:700;
}
.banner-area .inc-top-heading h3 {
	color:#fff;
	font-size:18px;
	text-transform:uppercase;
}
.banner-area .content p {
	font-size:18px;
	line-height:30px;
}
.banner-area .content a {
	margin-top:15px;
	margin-right:8px;
}
.banner-area .text-right .content a {
	margin-left:8px;
}
.banner-area .text-center .content a {
	margin:15px 4px 0;
}
.banner-area .text-center.inc-top-heading .content a {
	margin:5px 4px 0;
}

.banner-area .inc-top-heading a {
	margin-top:5px;
}
.banner-area .text-center p {
	padding:0 15%;
}
.banner-area .text-dark p {
	color:#232323;
}
/* ==============================================================      # Video Button Play=================================================================== */
.video-play-button {
	color:#006e39;
	font-size:30px;
	left:50%;
	padding-left:7px;
	position:absolute;
	top:50%;
	transform:translateX(-50%) translateY(-50%);
	-webkit-transform:translateX(-50%) translateY(-50%);
	-moz-transform:translateX(-50%) translateY(-50%);
	-ms-transform:translateX(-50%) translateY(-50%);
	-o-transform:translateX(-50%) translateY(-50%);
	z-index:1;
}
.video-play-button:before {
	content:"";
	position:absolute;
	z-index:0;
	left:50%;
	top:50%;
	-webkit-transform:translateX(-50%) translateY(-50%);
	transform:translateX(-50%) translateY(-50%);
	display:block;
	width:80px;
	height:80px;
	background:#ffffff repeat scroll 0 0;
	-webkit-border-radius:50%;
	-moz-border-radius:50%;
	border-radius:50%;
	-webkit-animation:pulse-border 1500ms ease-out infinite;
	animation:pulse-border 1500ms ease-out infinite;
}
.video-play-button:after {
	content:"";
	position:absolute;
	z-index:1;
	left:50%;
	top:50%;
	-webkit-transform:translateX(-50%) translateY(-50%);
	transform:translateX(-50%) translateY(-50%);
	display:block;
	width:80px;
	height:80px;
	background:#ffffff repeat scroll 0 0;
	-webkit-border-radius:50%;
	-moz-border-radius:50%;
	border-radius:50%;
	transition:all 200ms;
	-webkit-transition:all 200ms;
	-moz-transition:all 200ms;
	-ms-transition:all 200ms;
	-o-transition:all 200ms;
}
@-webkit-keyframes pulse-border {
	0% {
	-webkit-transform:translateX(-50%) translateY(-50%) translateZ(0) scale(1);
	transform:translateX(-50%) translateY(-50%) translateZ(0) scale(1);
	opacity:1;
}
100% {
	-webkit-transform:translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
	transform:translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
	opacity:0;
}
}@keyframes pulse-border {
	0% {
	-webkit-transform:translateX(-50%) translateY(-50%) translateZ(0) scale(1);
	transform:translateX(-50%) translateY(-50%) translateZ(0) scale(1);
	opacity:1;
}
100% {
	-webkit-transform:translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
	transform:translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
	opacity:0;
}
}.video-play-button i {
	display:block;
	position:relative;
	z-index:3;
	color:#006e39;
}
.menu_content {
	padding-top: 30px;
    padding-bottom: 120px;
    position: relative;
    z-index: 1;
}
/*党政*/
.row .major_businesses_pc {
    width:85%;
    margin:0 auto;
    position:relative;
    margin-top:50px;
}
@media screen and (max-width:768px) {
    .row .major_businesses_pc {
	    display:none
	}
}
.row .major_businesses_pc:before {
    display:block;
    /*height:100%;*/
    /*height: 320px;*/
    width:100%;
    position:absolute;
    right:0;
    top:-7rem;
    content:"";
    border-radius:10px;
    box-shadow:0 5px 9px 1px hsla(0,0%,64.3%,.51)
}
@media screen and (max-width:1600px) {
    .row .major_businesses_pc:before {
	    top:-5.4rem
	}
}@media screen and (max-width:1460px) {
    .row .major_businesses_pc:before {
	    top:-5rem
	}
}@media screen and (max-width:1200px) {
    .row .major_businesses_pc:before {
	    top:-4.5rem
	}
}
.row .major_businesses_pc>li {
    height:20rem;
    width:25%;
    margin-left: -4px;
    display:inline-block;
    vertical-align:top;
    position:relative;
    bottom:7rem;
    cursor:pointer;
    z-index:9;
    background:#fff
}
@media screen and (max-width:1800px) {
    .row .major_businesses_pc>li {
	    height:18rem
	}
}@media screen and (max-width:1600px) {
    .row .major_businesses_pc>li {
	    height:17rem;
	    bottom:5.4rem
	}
}@media screen and (max-width:1460px) {
    .row .major_businesses_pc>li {
	    height:16rem;
	    bottom:5rem
	}
}@media screen and (max-width:1200px) {
    .row .major_businesses_pc>li {
	    height:16.5rem;
	    bottom:4.5rem
	}
}@media screen and (max-width:768px) {
    .row .major_businesses_pc>li {
	    display:none
	}
}
.row .major_businesses_pc>li {
    text-align:center;
}
.row .major_businesses_pc>li:first-child {
    border-top-left-radius:10px;
    border-bottom-left-radius:10px;
    text-align:center;
}
.row .major_businesses_pc>li .img1 {
    margin-top:37px;
    width:80px
}
.row .major_businesses_pc>li:nth-child(4n+0) .img1 {
    width:81px;
    width:73px
}
.row .major_businesses_pc>li:nth-child(4n+0) {
    border-top-right-radius:10px;
    border-bottom-right-radius:10px
}
.row .major_businesses_pc>li:nth-child(4n+0) .img1 {
    width:73px;
    margin-top:40px;
    margin-bottom:25px
}
.row .major_businesses_pc>li .img2 {
    width:100%;
    position:absolute;
    bottom:0;
    left:0;
    max-height:50%
}
.row .major_businesses_pc>li .img3 {
    display:none
}
.row .major_businesses_pc>li .text1 {
    display:block;
    color:#223d6b;
    font-size:24px;
    line-height:45px;
    text-align: center;
}
.row .major_businesses_pc>li .active {
    width:100%;
    height:100%;
    visibility:hidden;
    position:absolute;
    top:0
}
.row .major_businesses_pc>li .active p{
	color:#fff;
}
.row .major_businesses_pc>li:hover:nth-child(4n+0) .active,.row .major_businesses_pc>li:hover:nth-child(4n+0) .img3 {
    border-top-right-radius:10px;
    border-bottom-right-radius:10px
}
.row .major_businesses_pc>li:hover:first-child .active,.row .major_businesses_pc>li:hover:first-child .img3 {
    border-top-left-radius:10px;
    border-bottom-left-radius:10px
}
.row .major_businesses_pc>li:hover .img3 {
    display:block;
    position:absolute;
    left:0;
    width:100%;
    height:100%;
    top:0
}
.row .major_businesses_pc>li:hover .img1,.row .major_businesses_pc>li:hover .img2,.row .major_businesses_pc>li:hover .text1,.row .major_businesses_pc>li:hover .text2 {
    display:none
}
.row .major_businesses_pc>li:hover .active {
    width:100%;
    height:100%;
    -webkit-animation-name:myfirst;
    animation-name:myfirst;
    -webkit-animation-duration:1s;
    animation-duration:1s;
    -webkit-animation-iteration-count:1;
    animation-iteration-count:1;
    -webkit-animation-fill-mode:forwards;
    animation-fill-mode:forwards
}
.row .major_businesses_pc>li:hover .active .text3 {
    display:block;
    font-weight:Regular;
    color:#fff;
    font-size:1.2rem;
    line-height:2.25rem;
    margin-top:3.8rem
}
@media screen and (max-width:1600px) {
    .row .major_businesses_pc>li:hover .active .text3 {
	    margin-top:2.3rem
	}
}
.row .major_businesses_pc>li:hover .active .intro {
    font-size:.8rem;
    text-align:left;
    color:#fff;
    width:80%;
    margin:2.15rem auto 1.85rem;
    display:-webkit-box;
    -webkit-box-orient:vertical;
    -webkit-line-clamp:4;
    overflow:hidden
}
@media screen and (max-width:1600px) {
    .row .major_businesses_pc>li:hover .active .intro {
	    margin:1.5rem auto .85rem
	}
}
@media screen and (max-width:847px) {
    .row .major_businesses_pc>li:hover .active .intro {
	    margin:1rem auto .5rem
	}
}
.row .major_businesses_pc>li:hover .active div {
    border:1px solid hsla(0,0%,98%,.8);
    border-radius:5px;
    width:5.5rem;
    height:2rem;
    color:#fff;
    font-weight:600;
    margin:0 auto;
    line-height:25px
}
/*通用名称*/
.menu_title{
	text-align: center;
    font-weight: bold;
    color:#333;
    font-size: 28px;
    line-height: 1.3;
    margin-bottom: 20px;
}
.menu_title::before {
    background: #088239 none repeat scroll 0 0;
    bottom: -3px;
    content: "";
    height: 2px;
    left: 50%;
    margin-left: -20px;
    position: absolute;
    width: 40px;
}
/* ==============================================================      # About=================================================================== */
.about-area .about-info {
	border-left:1px solid #e7e7e7;
	padding-left:30px;
}
.about-area.full-width .about-info {
	border:medium none;
	padding-left:15px;
}
.about-area.inc-video .about-info {
	border:medium none;
}
.about-area.reverse.inc-video .about-info {
	padding-left:15px;
	padding-right:15px;
}
.about-area.reverse.inc-video .video-info {
	float:right;
}
.about-area .management-quote {
	padding-right:30px;
}
.about-area .management-quote .management-items p {
	padding-top:50px;
	position:relative;
}
.about-area .management-quote .management-items p::before {
	content:",,";
	font-size:120px;
	left:5px;
	letter-spacing:-10px;
	opacity:0.09;
	position:absolute;
	top:55px;
	transform:rotate(180deg);
	-webkit-transform:rotate(180deg);
	-moz-transform:rotate(180deg);
	-ms-transform:rotate(180deg);
	-o-transform:rotate(180deg);
}
.about-area .about-info li {
	float:left;
	margin-top:30px;
	width:50%;
}
.about-area.full-width .single-item {
	margin-bottom:30px;
}
.about-area.full-width .single-item .text{
	display: none;
}
.about-area .about-info li:first-child,.about-area .about-info li:nth-child(2) {
	margin-top:10px;
}
.about-area .about-items .item a {
	padding:50px 30px;
	display:block;
	-moz-box-shadow:0 5px 30px 0 rgba(214,215,216,0.57);
	-webkit-box-shadow:0 5px 30px 0 rgba(214,215,216,0.57);
	-o-box-shadow:0 5px 30px 0 rgba(214,215,216,0.57);
	box-shadow:0 5px 30px 0 rgba(214,215,216,0.57);
}
.about-area .about-info li i,.about-area .about-items .item i {
	color:#22ac38;
	display:inline-block;
	font-size:90px;
	font-weight: bold;
	margin-bottom:20px;
}
.about-area .about-info li h4,.about-area .about-info li h5,.about-area .about-items .item h4,.about-area .about-items .item h5 {
	font-weight:600;
	font-size:24px;
	margin-top:20px;
	text-transform:uppercase;
}
.about-area h2 {
	color: #303030;
	font-weight:600;
	margin-bottom:25px;
	text-transform:capitalize;
}
.about-area .author {
	align-items:center;
	border-top:1px dashed #e7e7e7;
	display:flex;
	padding-top:20px;
}
.about-area .author .thumb {
	max-width:100px;
}
.about-area .author .info {
	padding-left:15px;
}
.about-area .author .info span {
	display:block;
	text-transform:uppercase;
}
.about-area .author .info b {
	color:#006e39;
	display:block;
	font-weight:500;
}
.about-area .management-quote .management-items .owl-dots {
	margin-top:20px;
	text-align:center;
}
.about-area .management-quote .management-items .owl-dots .owl-dot span {
	background:transparent none repeat scroll 0 0;
	border:2px solid #cccccc;
	height:20px;
	margin:0 5px;
	width:20px;
}
.about-area .management-quote .management-items .owl-dots .owl-dot.active span {
	background:#006e39 none repeat scroll 0 0;
	border:2px solid transparent;
}
.about-area .about-list {
	border-left:1px solid #e7e7e7;
	padding-left:30px;
}
.about-area .about-list ul {
	margin-bottom:-5px;
}
.about-area .about-list li .icon,.about-area .about-list li .info {
	display:table-cell;
	vertical-align:top;
}
.about-area .about-list li .info {
	padding-top:5px;
}
.about-area .about-list li .icon i {
	color:#006e39;
	display:inline-block;
	font-size:50px;
	min-width:70px;
}
.about-area .about-list li .info h5 {
	font-weight:600;
	text-transform:capitalize;
}
.about-area .about-list li {
	border-top:1px solid #e7e7e7;
	margin-top:20px;
	padding-top:20px;
}
.about-area .about-list li p:last-child {
	margin-bottom:0;
}
.about-area .about-list li:first-child {
	border:medium none;
	margin-top:0;
	padding-top:0;
}
.about-area .about-content .thumb img {
	position:relative;
	z-index:1;
}
.about-area.full-width.mt .about-items {
	margin-top:50px;
}
.about-area .news_detail .info {
	padding-left:6%;
	padding-right:6%;
	/*font-size: 16px;*/
    /*color: #333;*/
    /*text-indent: 2em; //首行缩进 */
    line-height: 32px;
    margin-bottom: 15px;
}
.about-area .news_detail .info h4 {
	color:#006e39;
	font-weight:600;
	text-transform:uppercase;
}

.about-area .news_detail .info img {
	margin: 0 auto;
	display: inline-block;
	vertical-align: middle;
	text-align:center;
}
.about-area .news_detail .info .news_content p img{
	margin: 0 auto;
	text-align: center;
}
.about-area .news_detail .info .news_content img{
	/*position: absolute;
    top: 50%;
    left: 50%;*/
    margin:0 auto;display:block; 
    /*transform: translate(-50%, -50%);*/
	text-align: center;
}
.about-area .news_detail .info h5 {
	color:#666;
	width: 100%;
	text-align: center;
	display:inline-block;
	line-height:1.3;
	margin-bottom:20px;
	padding-bottom:20px;
	/*position:relative;*/
	z-index:1;
}

.about-area .about-content .info h4 {
	color:#006e39;
	font-weight:600;
	text-transform:uppercase;
}
.about-area .about-content .info {
	font-size: 16px;
    color: #333;
    line-height: 16px;
    /*text-indent: 2em; //首行缩进 */
    line-height: 32px;
    margin-bottom: 15px;
}
.about-area .about-content .info h2 {
	text-align: center;
	/*display:inline-block;*/
	line-height:1.3;
	margin-bottom:20px;
	padding-top:60px;
	padding-bottom:20px;
	position:relative;
	z-index:1;
}
.about-area .about-content .info a {
	margin-top:10px;
}
.about-area .about-content .info a.btn-contact {
	padding:10px;
}
.about-area .about-content .info h2::after {
	/*background:#232323 none repeat scroll 0 0;
	bottom:0;
	content:"";
	height:2px;
	left:0;
	position:absolute;
	width:50px;*/
}
.about-area .about-content ul {
	margin-bottom:15px;
	margin-top:25px;
}
.about-area .about-content ul li {
	border-bottom:1px solid #e7e7e7;
	margin-bottom:20px;
	padding-bottom:20px;
}
.about-area .about-content ul li .icon,.about-area .about-content ul li .info {
	display:table-cell;
	vertical-align:top;
}
.about-area .about-content ul li .info span {
	color:#232323;
	display:block;
	font-size:18px;
	font-weight:600;
	line-height:1.2;
	text-transform:uppercase;
}
.about-area .about-content ul li .info {
	padding-left:15px;
	/*font-size:14px;*/
	/*line-height:1.2;*/
}
.about-area .about-content ul li .icon i {
	color:#006e39;
	font-size:40px;
}
.about-area .about-content ul li .icon i.fa-clock {
	font-weight:500;
}
.about-area .about-content ul li:last-child {
	border:medium none;
	margin-bottom:0;
	padding-bottom:0;
}
/* ==============================================================      # Services=================================================================== */
.services-inc-area.half-bg {
	/*background: url(../img/bg-main.599353b4.jpg) center no-repeat;*/
	position:relative;
	z-index:1;
}
.services-inc-area.half-bg::after {
	background:#353739 none repeat scroll 0 0;
	content:"";
	height:50%;
	left:0;
	position:absolute;
	top:0;
	width:100%;
	z-index:-1;
}
.services-area .services-items .equal-height {
	margin-bottom:30px;
	right:-1px;
}
.services-inc-area.inc-colum .equal-height {
	margin-bottom:30px;
}
.services-items.colum-items .single-item {
	margin-bottom:30px;
}
.services-area .services-items .item {
	background:#ffffff none repeat scroll 0 0;
	-moz-box-shadow:0 5px 30px 0 rgba(214,215,216,0.57);
	-webkit-box-shadow:0 5px 30px 0 rgba(214,215,216,0.57);
	-o-box-shadow:0 5px 30px 0 rgba(214,215,216,0.57);
	box-shadow:0 5px 30px 0 rgba(214,215,216,0.57);
	padding:30px 30px;
}
.services-area .services-items .item i {
	border:1px solid #e7e7e7;
	-webkit-border-radius:50%;
	-moz-border-radius:50%;
	border-radius:50%;
	color:#006e39;
	display:inline-block;
	font-size:50px;
	height:100px;
	line-height:95px;
	position:relative;
	text-align:center;
	width:100px;
}
.services-area .services-items .item i::after {
	border-bottom:2px solid;
	-webkit-border-radius:50%;
	-moz-border-radius:50%;
	border-radius:50%;
	border-left:2px solid;
	content:"";
	height:100%;
	left:0;
	position:absolute;
	top:0;
	-webkit-transition:all 0.35s ease-in-out;
	-moz-transition:all 0.35s ease-in-out;
	-ms-transition:all 0.35s ease-in-out;
	-o-transition:all 0.35s ease-in-out;
	transition:all 0.35s ease-in-out;
	width:100%;
}
.services-area .services-items .item:hover i::after {
	transform:rotate(180deg);
	-webkit-transform:rotate(180deg);
	-moz-transform:rotate(180deg);
	-ms-transform:rotate(180deg);
	-o-transform:rotate(180deg);
	-webkit-transition:all 0.35s ease-in-out;
	-moz-transition:all 0.35s ease-in-out;
	-ms-transition:all 0.35s ease-in-out;
	-o-transition:all 0.35s ease-in-out;
	transition:all 0.35s ease-in-out;
}
.services-area .services-items .item .icon {
	display:inline-block;
	position:relative;
	margin-bottom:20px;
}
.services-area .services-items .item h4 {
	font-weight:600;
	text-transform:capitalize;
	display:block;
}
.services-area .services-items .item p {
	margin:0;
}
.services-area .services-items .item a {
	color:#fff;
	display:inline-block;
	font-weight:600;
	margin-top:10px;
	text-transform:uppercase;
}
.services-area .services-items .item a:hover {
	color:#006e39;
}
/* Services Shadow */
.xxxapp-bg{    
    z-index: -999;
    /*height: 100px;*/
    /*filter: alpha(opacity=50);  */
    -moz-opacity: 0.5;  
    -ms-opacity: 0.5;  
    -webkit-opacity: 0.5;  
    -o-opacity: 0.5;  
    opacity: 0.5;
    /*position: absolute;*/
    /*top: 0;
    left: 0;
    right: 0;*/
    /*background: url(../img/testimonial-one-map.png) ;*/
    background-size: 100% 100%;
}
.services-area.shadow .services-items .item {
	background:transparent none repeat scroll 0 0;
	/*border:1px solid rgba(255,255,255,0.3);*/
	border:1px solid #f7f7f7;
	box-shadow:inherit;
	position:relative;
	z-index:1;
}
.services-area.shadow .services-items .item::after {
	background:#f7f7f7 none repeat scroll 0 0;
	border:1px solid #f7f7f7;
	content:"";
	height:100%;
	left:0;
	opacity:0.6;
	position:absolute;
	top:0;
	width:100%;
	z-index:-1;
	-webkit-transition:all 0.35s ease-in-out;
	-moz-transition:all 0.35s ease-in-out;
	-ms-transition:all 0.35s ease-in-out;
	-o-transition:all 0.35s ease-in-out;
	transition:all 0.35s ease-in-out;
}
.services-area.shadow .services-items .item:hover:after {
	/*background:#ffffff;*/
	background: #22ac38 none repeat scroll 0 0;
	opacity:1;
}
.services-area.shadow .services-items .item i,.services-area.shadow .services-items .item h4,.services-area.shadow .services-items .item p,.services-area.shadow .services-items .item i {
	-webkit-transition:all 0.35s ease-in-out;
	-moz-transition:all 0.35s ease-in-out;
	-ms-transition:all 0.35s ease-in-out;
	-o-transition:all 0.35s ease-in-out;
	transition:all 0.35s ease-in-out;
}
.services-area.shadow .services-items .item:hover p,.services-area.shadow .services-items .item:hover h4 {
	color:#fff;
	opacity:1;
}
.services-area.shadow .services-items .item:hover i {
	color:#006e39;
	opacity:1;
}
.services-area.shadow .services-items .item a {
	color:#006e39;
}
.services-area.shadow .services-items .item i {
	border:medium none;
	color:#ffffff;
	height:inherit;
	line-height:inherit;
	width:inherit;
	border-radius:inherit;
}
.services-area.shadow .services-items .item a i {
	float:right;
	font-size:14px;
	margin-left:3px;
	margin-top:1px;
	color:#fff;
}
.services-area.shadow .services-items .item i::after {
	border:none;
	border-radius:inherit !important;
}
/* Thumbnail Services */
.services-inc-area .services-items .item {
	box-shadow:-1px 3px 10px 0 rgba(0,0,0,0.06);
}
.services-inc-area .item .thumb {
	position:relative;
	z-index:1;
}
.services-inc-area .item .overlay >a {
	bottom:0;
	display:flex;
	left:0;
	width:100%;
	padding:15px 30px;
	position:absolute;
	z-index:1;
	align-items:center;
}
.services-inc-area .services-items.overlay-gap .item .overlay >a {
	bottom:10px;
	left:10px;
	right:10px;
	width:auto;
}
.services-inc-area .services-items.overlay-gap .item .overlay i {
	font-size:40px;
}
.services-inc-area .item .thumb .overlay >a::after {
	background:#000000 none repeat scroll 0 0;
	bottom:0;
	content:"";
	height:100%;
	left:0;
	opacity:0.7;
	position:absolute;
	width:100%;
	z-index:-1;
}
.services-inc-area .item .overlay i {
	color:#ffffff;
	display:inline-block;
	font-size:50px;
}
.services-inc-area .item .overlay h6 {
	/*border-left:1px solid #ffffff;*/
	margin-left:15px;
	padding-left:15px;
	color:#ffffff;
	font-weight:500;
	margin-bottom:0;
	margin:0 auto;
	text-transform:uppercase;
	font-size:18px;
}
.services-inc-area .item .overlay h6 a {
	color:#ffffff;
}
.services-inc-area .item .overlay h4 {
	border-left:1px solid #ffffff;
	margin-left:15px;
	padding-left:15px;
	color:#ffffff;
	font-weight:500;
	margin-bottom:0;
	text-transform:uppercase;
	font-size:18px;
}
.services-inc-area .item .overlay h4 a {
	color:#ffffff;
}
.services-inc-area .item .overlay >a {
	color:#006e39;
	font-weight:600;
	text-transform:uppercase;
	margin-top:5px;
}
.services-inc-area .item .info {
	background:#ffffff none repeat scroll 0 0;
	padding:30px;
}
.services-inc-area .item .info a {
	font-size:12px;
	color:#006e39;
	background-color: #E8F8F2;
	/*color:#666666;*/
	/*font-weight:600;*/
	text-transform:uppercase;
	letter-spacing:1px;
}
.services-inc-area .item .info a:hover {
	color:#E8F8F2;
	background-color: #006e39;
}
.services-inc-area .services-carousel .owl-nav {
	margin:0;
}
.services-inc-area .services-carousel .owl-nav .owl-prev,.services-inc-area .services-carousel .owl-nav .owl-next {
	background:transparent none repeat scroll 0 0;
	color:#006e39;
	font-size:30px;
	height:40px;
	left:-50px;
	line-height:40px;
	margin:-20px 0 0;
	padding:0;
	position:absolute;
	top:50%;
	width:40px;
}
.services-inc-area .services-carousel .owl-nav .owl-next {
	left:auto;
	right:-50px;
}
.services-inc-area .services-items.services-carousel .owl-dots {
	margin:-25px 0 0;
	position:absolute;
	right:-45px;
	top:50%;
}
.services-inc-area .services-items.services-carousel .owl-dots .owl-dot {
	display:block;
}
.services-inc-area .services-items.services-carousel .owl-dots .owl-dot span {
	background:#ffffff none repeat scroll 0 0;
	border:2px solid #cccccc;
	height:20px;
	margin:10px 0;
	width:20px;
}
.services-inc-area .services-items.services-carousel .owl-dots .owl-dot.active span {
	background:#006e39 none repeat scroll 0 0;
	border-color:#006e39;
}
/* Services item cell */.services-area .services-items.item-cell .item .icon,.services-area .services-items.item-cell .item .info {
	display:table-cell;
	vertical-align:bottom;
}
.services-area .services-items.item-cell .item .info {
	padding-left:25px;
}
.services-area .services-items.item-cell .item {
	padding:50px 20px;
}
.services-area .services-items.item-cell .item .icon {
	position:relative;
	z-index:1;
}
.services-area .services-items.item-cell .item .icon span {
	font-size:30px;
	font-weight:900;
	left:0;
	opacity:0.06;
	position:absolute;
	top:0;
}
.services-area .services-items.item-cell .item .icon i {
	border:medium none;
	height:inherit;
	line-height:inherit;
	width:inherit;
}
.services-area .services-items.item-cell .item .icon i::after {
	display:none;
}
/* ==============================================================      # Work Place=================================================================== */.work-place-area .work-place-items .item {
	display:flex;
}
.work-place-area .work-place-items .item .info {
	background:#f9f9f9 none repeat scroll 0 0;
	padding:80px;
}
.work-place-area ul {
	padding-left:20px;
}
.work-place-area ul li {
	border-bottom:1px solid #e7e7e7;
	display:block;
	font-size:16px;
	margin-bottom:15px;
	padding-bottom:15px;
	padding-left:20px;
	position:relative;
	z-index:1;
}
.work-place-area ul li::after {
	border-radius:50%;
	color:#006e39;
	content:"\f105";
	font-family:"Font Awesome 5 Free";
	font-size:19px;
	font-weight:900;
	height:30px;
	left:0;
	position:absolute;
	top:0;
	width:30px;
}
.work-place-area ul li:last-child {
	margin-bottom:0;
	padding-bottom:0;
	border:none;
}
.work-place-items .info a {
	margin-top:30px;
}
.work-place-area .work-place-items .info h2 {
	font-weight:600;
	margin-bottom:25px;
}
.work-place-area .work-place-items .info h4 {
	color:#006e39;
	font-weight:600;
	text-transform:uppercase;
}
.work-place-area .work-place-items.workplace-carousel .owl-dots {
	bottom:25px;
	left:50%;
	position:absolute;
	width:50%;
}
.work-place-area .work-place-items.workplace-carousel .owl-dots .owl-dot span {
	background:#ffffff none repeat scroll 0 0;
	border:2px solid;
	height:20px;
	width:20px;
}
.work-place-area .work-place-items.workplace-carousel .owl-dots .owl-dot.active span {
	background:#006e39 none repeat scroll 0 0;
	border-color:#006e39;
}
.work-place-area .work-place-items.workplace-carousel .owl-nav {
	margin:0;
}
.work-place-area .work-place-items.workplace-carousel .owl-nav .owl-prev,.work-place-area .work-place-items.workplace-carousel .owl-nav .owl-next {
	background:transparent none repeat scroll 0 0;
	color:#006e39;
	font-size:30px;
	height:40px;
	left:15px;
	line-height:40px;
	margin:-20px 0 0;
	padding:0;
	position:absolute;
	top:50%;
	width:40px;
}
.work-place-area .work-place-items.workplace-carousel .owl-nav .owl-next {
	left:auto;
	right:15px;
}
/* ==============================================================      # Skill=================================================================== */.skill-area.full .row {
	display:flex;
}
.skill-area.full .skill-items {
	padding:80px;
}
.skill-area.full .skill-items h2 {
	margin-bottom:50px;
}
.skill-area .info {
	padding-right:30px;
}
.skill-area .skill-items {
	margin-top:30px;
}
.skill-area .info h2 {
	font-weight:600;
	margin-bottom:20px;
	text-transform:capitalize;
}
.skill-area .info h2 span {
	color:#006e39;
}
.skill-area .skill-items .progress {
	background:#e7e7e7 none repeat scroll 0 0;
	-webkit-border-radius:30px;
	-moz-border-radius:30px;
	border-radius:30px;
	height:5px;
	margin-bottom:25px;
}
.skill-area .skill-items .progress .progress-bar {
	background:#006e39 none repeat scroll 0 0;
	-webkit-border-radius:30px;
	-moz-border-radius:30px;
	border-radius:30px;
}
.skill-area .skill-items .progress-box:last-child .progress {
	margin-bottom:0;
}
.skill-area .skill-items .progress-box h5 {
	color:#666666;
	font-weight:600;
	text-transform:uppercase;
}
.skill-area .tab-content h2,.skill-area .tab-content h3,.skill-area .tab-content h4 {
	font-weight:500;
	text-transform:capitalize;
}
.skill-area .tab-items .nav-pills a {
	border:medium none;
	border-radius:inherit;
	float:left;
	font-weight:600;
	margin-bottom:0;
	margin-right:50px;
	padding:10px 0;
	position:relative;
	text-align:left;
	z-index:1;
}
.skill-area .tab-items .nav-pills .active a,.skill-area .tab-items .nav-pills a:focus {
	background:transparent none repeat scroll 0 0;
	color:#006e39;
}
.skill-area .tab-items .nav-pills a:hover {
	color:#006e39;
	background:transparent none repeat scroll 0 0;
}
.skill-area .tab-items .nav-pills {
	border-bottom:1px solid #e7e7e7;
	margin-bottom:25px;
	margin-top:-10px;
}
.skill-area .tab-items .nav-pills .active a::after {
	background:#006e39 none repeat scroll 0 0;
	bottom:-2px;
	content:"";
	height:3px;
	left:0;
	position:absolute;
	width:60px;
}
.skill-area .tab-content p:last-child {
	margin-bottom:0;
}
/* ==============================================================      # Portfolio=================================================================== */
.portfolio-area .portfolio-carousel .owl-nav {
	padding-top:60px;
	margin:0;
}
.portfolio-area .portfolio-carousel .owl-nav .owl-prev,.portfolio-area .portfolio-carousel .owl-nav .owl-next {
	background:transparent none repeat scroll 0 0;
	color:#ffffff;
	font-size:30px;
	height:40px;
	left:0;
	line-height:40px;
	margin:-20px 0 0;
	padding:0;
	position:absolute;
	top:50%;
	width:40px;
}
.portfolio-area .portfolio-carousel .owl-nav .owl-next {
	left:auto;
	right:0;
}
.portfolio-area .mix-item-menu button {
	background:transparent none repeat scroll 0 0;
	border:medium none;
	box-shadow:inherit;
	font-weight:600;
	margin:0 5px;
	padding:5px 10px;
	position:relative;
	text-transform:uppercase;
	z-index:1;
	color:#232323;
}
.portfolio-area .mix-item-menu {
	margin-bottom:20px;
	margin-top:-10px;
}
.portfolio-area .mix-item-menu button::after {
	background:#ffffff none repeat scroll 0 0;
	border:2px solid #006e39;
	-webkit-border-radius:50%;
	-moz-border-radius:50%;
	border-radius:50%;
	content:"";
	height:10px;
	margin-top:-5px;
	position:absolute;
	right:-12px;
	top:50%;
	width:10px;
}
.portfolio-area .mix-item-menu button:last-child::after {
	display:none;
}
.portfolio-area .mix-item-menu button.active {
	color:#006e39;
}
.portfolio-area.inc-colum {
	padding-bottom:65px;
}
.portfolio-area .portfolio-items.col-3 .pf-item {
	float:left;
	padding:15px;
	width:33.3333%;
}
.portfolio-area .portfolio-items.col-2 .pf-item {
	float:left;
	padding:15px;
	width:50%;
}
.portfolio-area .portfolio-items.col-4 .pf-item {
	float:left;
	padding:15px;
	width:25%;
}
/* Effect(3) left slide */.effect-left-swipe {
	position:relative;
	overflow:hidden;
	background:#232323;
}
.effect-left-swipe * {
	-webkit-box-sizing:border-box;
	box-sizing:border-box;
	-webkit-transition:all 0.35s ease-in-out;
	-moz-transition:all 0.35s ease-in-out;
	-ms-transition:all 0.35s ease-in-out;
	-o-transition:all 0.35s ease-in-out;
	transition:all 0.35s ease-in-out;
}
.portfolio-area .effect-left-swipe a i {
	background:#ffffff none repeat scroll 0 0;
	-webkit-border-radius:50%;
	-moz-border-radius:50%;
	border-radius:50%;
	color:#006e39;
	font-size:14px;
	height:50px;
	line-height:50px;
	text-align:center;
	width:50px;
}
.effect-left-swipe img {
	max-width:100%;
	position:relative;
	-webkit-transform:scale(1);
	transform:scale(1);
}
.effect-left-swipe:after {
	background:#353739 none repeat scroll 0 0;
	width:100%;
	height:100%;
	position:absolute;
	left:0;
	bottom:0;
	content:'';
	-webkit-transition:all 0.35s ease-in-out;
	-moz-transition:all 0.35s ease-in-out;
	-ms-transition:all 0.35s ease-in-out;
	-o-transition:all 0.35s ease-in-out;
	transition:all 0.35s ease-in-out;
	opacity:0;
}
.effect-left-swipe .icons {
	height:auto;
	bottom:25px;
	left:30px;
	position:absolute;
	text-align:left;
	z-index:1;
	-webkit-transition-delay:0.2s;
	transition-delay:0.2s;
}
.effect-left-swipe .icons .cat span {
	color:#ffffff;
	display:inline-block;
	position:relative;
	padding-right:5px;
}
.effect-left-swipe .icons .cat span::after {
	bottom:0;
	content:",";
	position:absolute;
	right:0;
}
.effect-left-swipe .icons .cat span:last-child::after {
	display:none;
}
.effect-left-swipe .cat,.effect-left-swipe h4 {
	display:block;
	opacity:0;
	-webkit-transform:translateY(10px);
	transform:translateY(10px);
}
.swipe-inline .effect-left-swipe .icons {
	bottom:20px;
	left:30px;
}
.swipe-inline .effect-left-swipe .cat {
	display:inline-block;
	margin-right:3px;
	width:auto;
}
.effect-left-swipe h4 {
	font-weight:600;
	margin-bottom:5px;
	text-transform:uppercase;
}
.portfolio-area .portfolio-items.col-4 .pf-item h4 {
	font-size:16px;
}
.effect-left-swipe h4 a {
	color:#ffffff;
}
.effect-left-swipe .cat {
	display:inline-block;
}
.effect-left-swipe:hover img,.effect-left-swipe.hover img {
	-webkit-transform:scale(1.2);
	transform:scale(1.2);
}
.effect-left-swipe:hover:after,.effect-left-swipe.hover:after {
	opacity:.5;
}
.effect-left-swipe:hover .icons .cat,.effect-left-swipe.hover .icons .cat,.effect-left-swipe:hover .icons h4,.effect-left-swipe.hover .icons h4 {
	opacity:1;
	-webkit-transform:translateY(0px);
	transform:translateY(0px);
}
.effect-left-swipe:hover h4,.effect-left-swipe.hover h4,.effect-left-swipe:hover .cat,.effect-left-swipe.hover .cat {
	-webkit-transition-delay:0.2s;
	transition-delay:0.2s;
}
.effect-left-swipe >a {
	color:#ffffff;
	font-size:20px;
	opacity:0;
	position:absolute;
	right:30px;
	top:0;
	transition:all 0.35s ease-in-out;
	-webkit-transition:all 0.35s ease-in-out;
	-moz-transition:all 0.35s ease-in-out;
	-ms-transition:all 0.35s ease-in-out;
	-o-transition:all 0.35s ease-in-out;
	z-index:1;
}
.effect-left-swipe:hover >a,.effect-left-swipe.hover >a {
	opacity:1;
	top:30px;
}
/* ==============================================================      # Team=================================================================== */
.team-area .team-items .single-item {
	margin-bottom:30px;
}
/*更新样式*/
/* 6. portfolio area */
.portfolio-thumb {
	padding:20px 30px;
	display:block;
	position:relative;
	overflow:hidden;
}
.portfolio-wrapper {
	position:relative;
	overflow:hidden;

	-moz-box-shadow:0 5px 30px 0 rgba(214,215,216,0.57);
	-webkit-box-shadow:0 5px 30px 0 rgba(214,215,216,0.57);
	-o-box-shadow:0 5px 30px 0 rgba(214,215,216,0.57);
	box-shadow:0 5px 30px 0 rgba(214,215,216,0.57);
}
.portfolio-thumb::before {
	background:#22ac38;
	content:"";
	height:100%;
	left:0;
	opacity:0;
	position:absolute;
	top:0;
	transition:all 0.3s ease 0s;
	visibility:hidden;
	width:100%;
	z-index:1;
}
.portfolio-wrapper:hover .portfolio-thumb::before {
	opacity:.85;
	visibility:visible;
}
.portfolio-thumb >img {
	width:100%;
	transition:.3s;
}
.portfolio-wrapper:hover .portfolio-thumb >img {}


.portfolio-content {
	left:0;
	padding:30px 20px 30px 20px;
	position:absolute;
	right:0;
	text-align:center;
	top:50%;
	transition:.3s;
	visibility:hidden;
	opacity:0;
	z-index:9;
}
.portfolio-content::before{
	background: url('/Public/assets/img/06.a4e94aea.png');
	background-size:100% 100%;background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;  /*关键*/
    background-position: center;
    opacity: 0.85;  /*透明度*/
    width: 100%;
    height: 100%;
}
.portfolio-wrapper:hover .portfolio-content {
	opacity:1;
	visibility:visible;
	transform:translateY(-50%);
}
.portfolio-wrapper {
	position:relative;
}
.portfolio-content >h3 {
	color:#fff;
	font-size:17px;
	font-weight:600;
	margin-top: 20px;
}
.portfolio-content span {
	color:#fff;
	font-size: 70px;
	font-weight:800;
	padding-bottom: 20px;
}
.portfolio-content >h3:hover a {
	color:#2154CF
}
.icon a {
	display:inline-block;
	height:20px;
	margin-bottom:10px;
	position:relative;
	width:20px;
}
/* .icon a::before,.icon a::after {
	background:#414149 none repeat scroll 0 0;
	content:"";
	height:2px;
	left:0;
	margin:auto;
	position:absolute;
	right:0;
	width:20px;
}
.icon a::after {
	height:20px;
	top:-9px;
	width:2px;
}
*/
.party-standard .single-item .portfolio-thumb i {
	color:red;
	/*display:inline-block;*/
	font-size:68px;
	font-weight: 800;
	margin-bottom:0px;
}
.party-standard .single-item .portfolio-thumb h4,.party-standard .single-item .portfolio-thumb h5 {
	font-weight:600;
	font-size:20px;
	margin-top:20px;
	text-transform:uppercase;
}
.portfolio-area .team-items .party-standard .portfolio-thumb {
	height: 200px;
	overflow:hidden;
	max-width:100%;
	-o-object-fit:cover;
	object-fit:cover;
	position:relative;
}
.portfolio-area .team-items.party-standard .item:hover .portfolio-thumb::after {
	/*opacity:1;*/
	padding:50px 30px;
	display:block;
	-moz-box-shadow:0 5px 30px 0 rgba(214,215,216,0.57);
	-webkit-box-shadow:0 5px 30px 0 rgba(214,215,216,0.57);
	-o-box-shadow:0 5px 30px 0 rgba(214,215,216,0.57);
	box-shadow:0 5px 30px 0 rgba(214,215,216,0.57);
}


/*end*/
.team-area .team-items.party-standard .thumb .social {
	background-color:#006e39;
	bottom:-55px;
	left:0;
	padding:15px 25px;
	position:absolute;
	text-align:center;
	-webkit-transition:all 0.35s ease-in-out;
	-moz-transition:all 0.35s ease-in-out;
	-ms-transition:all 0.35s ease-in-out;
	-o-transition:all 0.35s ease-in-out;
	transition:all 0.35s ease-in-out;
	z-index:1;
	width:100%;
	text-align:center;
}
.team-area .team-items.party-standard .item:hover .thumb .social {
	
	/*bottom:40px;*/
	left: 0;
    padding: 30px;
    position: absolute;
    right: 0;
    text-align: center;
    top: 100%;
    /*transition: .3s;*/
    visibility: hidden;
    opacity: 0;
    z-index: 9;
}
.team-area .single-item .item a {
	padding:50px 30px;
	display:block;
	-moz-box-shadow:0 5px 30px 0 rgba(214,215,216,0.57);
	-webkit-box-shadow:0 5px 30px 0 rgba(214,215,216,0.57);
	-o-box-shadow:0 5px 30px 0 rgba(214,215,216,0.57);
	box-shadow:0 5px 30px 0 rgba(214,215,216,0.57);
}

/*通常样式*/
.team-area .team-items .item {
	-moz-box-shadow:-1px 3px 10px 0 rgba(0,0,0,0.06);
	-webkit-box-shadow:-1px 3px 10px 0 rgba(0,0,0,0.06);
	-o-box-shadow:-1px 3px 10px 0 rgba(0,0,0,0.06);
	box-shadow:-1px 3px 10px 0 rgba(0,0,0,0.06);
}
.team-area .team-items .item .info {
	background:#ffffff none repeat scroll 0 0;
	padding:30px;
}
.team-area .team-items .item .info h4 {
	font-size:14px;
	font-weight:600;
	margin-bottom:5px;
	text-transform:capitalize;
}
.team-area .team-items .item .info p:last-child {
	margin-bottom:0;
}
.team-area .team-items .item .info span {
	color:#006e39;
	display:block;
	margin-bottom:15px;
	text-transform:uppercase;
}
.team-area .team-items.team-standard .item .info span {
	display:inline-block;
	margin-bottom:15px;
	padding-bottom:10px;
	position:relative;
	text-transform:uppercase;
}
.team-area .team-items.team-standard .item .info span::after {
	/*background:#006e39 none repeat scroll 0 0;
	bottom:0;
	content:"";
	height:2px;
	left:50%;
	margin-left:-20px;
	position:absolute;
	width:40px;*/
}
.team-area .team-items .item .magazine {
	position:relative;
	z-index:1;
	/*height: 200px;*/
	overflow:hidden;
	max-width:100%;
	-o-object-fit:cover;
	object-fit:cover;
	position:relative;
}
.team-area .team-items .item .thumb {
	position:relative;
	z-index:1;
	/*height: 220px;*/
	overflow:hidden;
	/*max-width:100%;*/
	max-height:100%;
	/*-o-object-fit:cover;*/
	object-fit:cover;
	background-size: cover;
	position:relative;
}
.team-area .info .social li {
	display:inline-block;
}
.team-area .info .social li a {
	color:#666666;
	display:inline-block;
	font-size:20px;
	margin:0 10px;
}
.team-area .info .social {
	border-top:1px dashed #dbdbdb;
	padding-top:20px;
}
.team-area .team-items .item .thumb .icon {
	background:#ffffff none repeat scroll 0 0;
	-webkit-border-radius:50%;
	-moz-border-radius:50%;
	border-radius:50%;
	bottom:0;
	content:"";
	height:50px;
	left:50%;
	margin-bottom:-25px;
	margin-left:-25px;
	position:absolute;
	width:50px;
}
.team-area .team-items .item .thumb .icon::after {
	color:#006e39;
	content:"\f508";
	font-family:"Font Awesome 5 Free";
	font-size:20px;
	font-weight:900;
	height:100%;
	left:0;
	letter-spacing:-2px;
	position:absolute;
	top:5px;
	width:100%;
}
.team-area .team-items .team-standard .linklogo {
	/*height: 150px;*/
	overflow:hidden;
	max-width:100%;
	-o-object-fit:cover;
	object-fit:cover;
	position:relative;
}
.team-area .team-items .item .infoname {
	background:#ffffff none repeat scroll 0 0;
	padding:15px;
}
.team-area .team-items .item .infoname h4 {
	font-size:16px;
	/*font-weight:600;*/
	margin-bottom:5px;
	text-transform:capitalize;
}
.linklogo{
	width:100%;
	height: 100px;
	-webkit-border-radius:5px;
	-moz-border-radius:5px;
	border-radius:5px;
	-o-object-fit:cover;
	/*object-fit:cover;*/
}
.team-area .team-items .team-standard .thumb {
	height: 200px;
	overflow:hidden;
	max-width:100%;
	-o-object-fit:cover;
	object-fit:cover;
	position:relative;
}
.team-area .team-items.team-standard .item:hover .thumb::after {
	opacity:1;
}
.team-area .team-items.team-standard .thumb .social ul {
	background:#ffffff none repeat scroll 0 0;
	border-radius:30px;
	display:inline-block;
	padding:10px 30px;
}
.team-area .team-items.team-standard .thumb .social li {
	display:inline-block;
}
.team-area .team-items.team-standard .thumb .social li a {
	color:#006e39;
	display:inline-block;
	font-size:20px;
	margin:5px 10px 0;
}
.team-area .team-items.team-standard .thumb .social {
	bottom:-55px;
	left:0;
	padding:15px 25px;
	position:absolute;
	text-align:center;
	-webkit-transition:all 0.35s ease-in-out;
	-moz-transition:all 0.35s ease-in-out;
	-ms-transition:all 0.35s ease-in-out;
	-o-transition:all 0.35s ease-in-out;
	transition:all 0.35s ease-in-out;
	z-index:1;
	width:100%;
	text-align:center;
}
.team-area .team-items.team-standard .item:hover .thumb .social {
	bottom:0;
}
.team-area .team-items.team-carousel .owl-nav {
	margin:0;
}
.team-area .team-items.team-carousel .owl-nav .owl-prev,.team-area .team-items.team-carousel .owl-nav .owl-next {
	background:transparent none repeat scroll 0 0;
	color:#006e39;
	font-size:30px;
	height:40px;
	left:-50px;
	line-height:40px;
	margin:-20px 0 0;
	padding:0;
	position:absolute;
	top:50%;
	width:40px;
}
.team-area .team-items.team-carousel .owl-nav .owl-next {
	left:auto;
	right:-50px;
}
.team-area .team-items.team-carousel .owl-dots {
	margin:-25px 0 0;
	position:absolute;
	right:-45px;
	top:50%;
}
.team-area .team-items.team-carousel .owl-dots .owl-dot {
	display:block;
}
.team-area .team-items.team-carousel .owl-dots .owl-dot span {
	background:#ffffff none repeat scroll 0 0;
	border:2px solid #cccccc;
	height:20px;
	margin:10px 0;
	width:20px;
}
.team-area .team-items.team-carousel .owl-dots .owl-dot.active span {
	background:#006e39 none repeat scroll 0 0;
	border-color:#006e39;
}
/* Team Single */
.team-items.single .bio h4 {
	font-weight:600;
	margin-bottom:10px;
	text-transform:uppercase;
}
.team-items.single .bio {
	-moz-box-shadow:0 5px 30px 0 rgba(214,215,216,0.57);
	-webkit-box-shadow:0 5px 30px 0 rgba(214,215,216,0.57);
	-o-box-shadow:0 5px 30px 0 rgba(214,215,216,0.57);
	box-shadow:0 5px 30px 0 rgba(214,215,216,0.57);
	padding:30px;
	text-align:center;
}
.team-items.single .bio span {
	color:#006e39;
	font-weight:500;
}
.team-items.single .bio li {
	display:inline-block;
}
.team-items.single .bio li a {
	color:#666666;
	display:inline-block;
	font-size:20px;
	margin:0 10px;
}
.team-items.single .bio ul {
	margin-top:10px;
}
.team-items.single .content h2 {
	font-weight:600;
	margin-bottom:20px;
	text-transform:capitalize;
}
.team-items.single .content h4 {
	font-weight:600;
	text-transform:capitalize;
}
.team-items.single .content h3 {
	font-weight:600;
	margin-bottom:25px;
	margin-top:20px;
	text-transform:capitalize;
}
.team-items.single .profile {
	padding-right:30px;
}
.team-items.single .content .progress {
	height:5px;
}
.team-items.single .content .progress .progress-bar {
	background:#006e39 none repeat scroll 0 0;
}
.team-items.single .progress-box h5 {
	color:#666666;
	font-weight:600;
	text-transform:capitalize;
}
.team-items.single .progress-box .progress {
	margin-bottom:30px;
}
.team-items.single .progress-box:last-child .progress {
	margin-bottom:0;
}
.team-area .team-items.single .content ul li {
	border-top:1px solid #e7e7e7;
	padding:15px 0;
}
.team-area .team-items.single .content ul li:first-child {
	border-top:medium none navy;
	padding-top:0;
}
.team-area .team-items.single ul li:last-child {
	padding-bottom:0;
}
.team-area .team-items.single .content ul li i {
	color:#006e39;
	font-size:20px;
	min-width:25px;
}
/*人才招聘*/
.job_sec2_sorts { text-align: center; }
.job_sec2_con {
	position: relative;
	width: 100%;
}
.job_sec2_con > h5 {
	margin: 0px auto 60px auto;
	font-size: 30px;
	letter-spacing: 1px;
	color: #333;
	text-align: center;
	position: relative;
	top: 60px;
	opacity: 0;
	filter: alpha(opacity=0);
	-moz-opacity: 0;
	-khtml-opacity: 0;
	-webkit-opacity: 0;
}
.job_sec2_con > h5:before {
	width: 60px;
	height: 1px;
	content: '';
	background: #333;
	position: absolute; bottom: -20px; left: 50%;
	margin-left: -30px;
}
.job_sec2_img {
	position: relative;
	overflow: hidden;
}
.job_sec2_img img {
	-webkit-transition: 0.3s ease;
	-moz-transition: 0.3s ease;
	-ms-transition: 0.3s ease;
	-o-transition: 0.3s ease;
	transition: 0.3s ease;
}
.job_sec2_con .row:hover .job_sec2_img img {
	-webkit-transform: scale(1.05);
	-moz-transform: scale(1.05);
	-ms-transform: scale(1.05);
	-o-transform: scale(1.05);
	transform: scale(1.05);
}
.job_sec2_zi {
	padding: 30px;
	padding-right: 15px;
}
.job_sec2_zi .textyichu1 {
	padding-right: 20px;
}
.job_sec2_zis h5 {
	font-size: 18px;
	color: #333;
	margin-top: 0;
}
.job_sec2_zi .job_sec2_btn {
	margin-top: 20px;
}
.job_sec2_zis {
	margin-bottom: 20px;
	padding-bottom: 20px;
	border-bottom: 1px dashed #ccc;
}
.job_sec2_zis p {
	font-size: 14px;
	margin-bottom: 0;
	line-height: 25px;
	color: #666;
	padding-left: 20px;
	position: relative;
}
.job_sec2_zis p i {
	position: absolute; top: 7px; left: 0;
	color: #2772aa;
}
.job_sec2 .slimScrollBar {
	background: #2772aa !important;
}
.job_s2_con {
	width: 100%;
	/*margin-top: 30px;*/
}
.job_s2_con > h5 {
	margin: 0;
	width: 100%;
	background: #088239;
	border-radius: 5px 5px 0 0;
}
.job_s2_con > h5 > span {
	display: block;
	width: 16.6%;
	float: left;
	line-height: 40px;
	text-align: center;
	color: #fff;
	font-size: 16px;
	letter-spacing: 1px;
}
.job_s2_list {
	width: 100%;
}
.job_s2_list > p {
	width: 100%;
	border-bottom: 1px solid #e1e1e1;
	cursor: pointer;
	margin-bottom: 0;
	-webkit-transition: 0.3s ease;
	-moz-transition: 0.3s ease;
	-ms-transition: 0.3s ease;
	-o-transition: 0.3s ease;
	transition: 0.3s ease;
}
.job_s2_list > p span {
	display: block;
	width: 16.6%;
	float: left;
	text-align: center;
	font-size: 14px;
	letter-spacing: 1px;
	color: #666;
	line-height: 35px;
	text-indent: 0;
}
.job_s2_list sub {
	color: #088239;
	position: relative;
	top: 3px;
}
.job_s2_list sub:hover {
	top: 5px;
	-webkit-transition: 0.3s linear;
	-moz-transition: 0.3s linear;
	-ms-transition: 0.3s linear;
	-o-transition: 0.3s linear;
	transition: 0.3s linear;
}
.job_s2_on {
	background: #efefef !important;
}
.job_s2_show {
	/*background: #fafafa;*/
	padding: 30px 50px;
	/*display: none;*/
	border-bottom: 1px solid #ccc;
}
.job_s2_show h5 {
	margin-top: 0;
	margin-bottom: 15px;
	font-size: 16px;
	letter-spacing: 1px;
	color: #333;
}
.job_s2_show h5 a {
	color: #fff;
	/*margin-left:2em;*/
	width: 120px;
	height: 35px;
	line-height: 35px;
	text-align: center;
	background: #088239;
	display: block;
	font-size: 14px;
}
.job_s2_show h5 a:hover {
	background: #088239;
	color: #fff !important;
}
.job_s2_show h5 a img {
	margin-right: 5px;
}
.job_s2_show p {
	font-size: 12px;
	letter-spacing: 1px;
	color: #666;
	line-height: 25px;
	margin-bottom: 0;
}
.job_s2_gang_con h2 {
	padding-top: 20px;
	font-size: 14px;
	font-weight: bold;
	line-height: 30px;
}
.job_s2_gang_con {
	font-size: 12px;
	padding-right: 50px;
	border-right: 1px solid #ccc;
}
.job_s2_gang_con1 h2 {
	padding-top: 20px;
	font-size: 14px;
	font-weight: bold;
	line-height: 30px;
}
.job_s2_gang {
	padding-bottom: 30px;
	border-bottom: 1px solid #ccc;
}
.job_s2_btn {
	margin-top: 30px;
}
.job_s2_btn input {
	width: 200px;
	height: 40px;
	background: #088239;
	color: #fff;
}
.job_s2_btn span {
	color: #666;
	float: right;
}
/*党建*/
.h-banner-title,.h-banner .h-banner-txt{
  -webkit-transform: translate(0, 20px);
      -ms-transform: translate(0, 20px);
          transform: translate(0, 20px);
  opacity: 0;
  -webkit-transition: -webkit-transform .8s ease-out, opacity .8s;
          transition: transform .8s ease-out, opacity .8s;
}
.h-banner .h-banner-txt{
  -webkit-transition-delay:.2s;
  -moz-transition-delay:.2s;
}

.h-banner .h-nav .annav,.h-banner .h-nav .owl-item{
  -webkit-transform: translate(0, 20px);
      -ms-transform: translate(0, 20px);
          transform: translate(0, 20px);
  opacity: 0;
  -webkit-transition: -webkit-transform 1s ease-out, opacity 1s;
          transition: transform 1s ease-out, opacity 1s;
}
.h-banner{
  position: relative;
  min-height: 220px;
  height: 350px;
  margin-bottom: 70px;
  background-position: center;
  background-size: cover;
}
.h-banner-img{
  width: 100%;
  display: none;
  opacity: 0;
}
.h-banner-content{
  position: absolute;
  left: 0;
  right: 0;
  text-align: center;
  color: #fff;
  height: 420px;
  overflow: hidden;
}
.h-banner-title{
    margin-top: 115px;
    margin-bottom: 10px;
  font-size: 32px;
  text-shadow:  0 0 18px rgba(0,0,0,.18);
}
.h-banner-txt{
  font-size: 16px;
  text-shadow:  0 0 18px rgba(0,0,0,.18);
}
.h-banner-txt2{
  text-shadow:  0 0 18px rgba(0,0,0,.18);
}

.h-banner-title.text-blue,.h-banner-txt.text-blue,.h-banner-txt2.text-blue{
  color: #0d6ead;
}
.container-main{
    padding-bottom: 60px;
 }
.container-main .page-header{
  margin-top: 80px;
}

.activity-big{
    margin-top: 50px;
    background: #fff;
    height: 335px;
    box-shadow: 0 0 5px rgba(0,0,0,.15);
    transition: all .25s;
    -webkit-transition: all .25s;
    -moz-transition: all .25s;
}
.activity-big:hover{
    box-shadow: 0 10px 30px -10px rgba(0,0,0,.4);
}
.activity-big .img{
    float: left;
    width: 44%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.activity-big .content{
    margin-left: 48.614%;
    height: 100%;
    width: 50%;
    padding-right: 40px;
}
.activity-big .content::before{
    content: '';
    display: table;
}
.activity-big .title{
    font-size: 24px;
    line-height: 36px;
    color: #333;
    width: 95%;
    height: 72px;
    margin: 50px 0 15px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}
.activity-big .detail{
    font-size: 16px;
    color: #666;
    line-height: 30px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    height: 90px;
}
.activity-big .link{
    display: inline-block;
    height: 42px;
    border: 1px solid #f2f2f2;
    line-height: 40px;
    font-size: 14px;
    color: #444;
    margin-top: 30px;
}
.activity-big .link p{
    padding: 6px 20px 0 20px;
    background: url(../img/icon_arrow.png) no-repeat;
    background-size: 20px 20px;
    background-position: 100px center;
    position: relative;
    z-index: 2;
}
.z-activity-container{
  margin-bottom: 50px;
}
.z-learn-cotainer .col-md-6 > * {
    margin-left: -15px;
    margin-right: -15px;
}

.col-md-6 .sub-title{
    margin-top: 75px;
    font-size: 24px;
    color: #333;
    padding-bottom: 20px;
    border-bottom: 1px solid #e4e4e4;
}

@media (min-width: 992px) {
  .page-header{
    font-size: 32px;
  }
  .h-banner{
    height: auto;
    margin-bottom: 0;
  }
  .h-banner-img{
    display: block;
    opacity: 0;
  }
  .h-banner-content{
    top: 50%;
    height: 320px;
    margin-top: -160px;
  }
  
  .h-banner-title{
    font-size: 55px;
    margin-top: 0;
    margin-bottom: 15px;
  }
  .h-banner-txt{
    font-size: 24px;
  }
  .h-nav{
    margin-top: 120px;
    position: relative;
    height: auto;
    background-color: transparent;
    box-shadow: none;
  }
  .h-banner-content-two .h-nav{
    margin-top: 90px;
  }
  .h-nav-a{
    display: block;
    padding: 0;
    line-height: 70px;
    font-size: 20px;
    margin: 0;
    border-right: none;
  }
  .h-nav-a .ico{
    display: inline-block;
    width: 50px;
    height: 50px;
    margin-right: 8px;
  }

  .banner-ccp-t .h-banner-title{
    margin-top: 45px;
  }
  .banner-ccp-t .h-nav{
    margin-top: 80px;
  }
}

/* ==============================================================      # Pricing Table=================================================================== */.pricing-area .pricing-item {
	background:#ffffff none repeat scroll 0 0;
	-moz-box-shadow:-1px 3px 10px 0 rgba(0,0,0,0.06);
	-webkit-box-shadow:-1px 3px 10px 0 rgba(0,0,0,0.06);
	-o-box-shadow:-1px 3px 10px 0 rgba(0,0,0,0.06);
	box-shadow:-1px 3px 10px 0 rgba(0,0,0,0.06);
	overflow:hidden;
	padding:30px;
	position:relative;
	z-index:1;
	border:1px solid #006e39;
}
.pricing-area .col-md-3,.pricing-area .col-md-4,.pricing-area .col-md-6 {
	margin-bottom:30px;
}
.pricing-area .pricing-item .title {
	}.pricing-area .pricing-item .title h4 {
	color:#666666;
	display:inline-block;
	font-weight:600;
	position:relative;
	text-transform:uppercase;
	z-index:1;
}
.pricing-area .pricing-item.active .title h4::after,.pricing-area .pricing-item.active .title h4::before {
	background:#ffffff none repeat scroll 0 0;
}
.pricing-area .pricing-item i {
	color:#006e39;
	display:inline-block;
	font-size:80px;
	margin-bottom:15px;
}
.pricing-area .pricing-item h2 {
	color:#666666;
	font-size:50px;
	font-weight:600;
	margin:0;
}
.pricing-area .pricing-item.active h2 {
	color:#ffffff;
}
.pricing-area .pricing-item h2 sup {
	bottom:auto;
	font-size:30px;
	font-weight:500;
	right:5px;
	top:-15px;
}
.pricing-area .pricing-item h2 sub {
	font-size:15px;
}
.pricing-area .pricing-item .footer a {
	margin-top:20px;
}
.pricing-area .pricing-item li {
	line-height:40px;
}
.pricing-area .pricing-item li.pricing-header {
	color:#666666;
	line-height:inherit;
	margin-bottom:10px;
	margin-top:10px;
	padding:10px 0;
	position:relative;
	z-index:1;
}
.pricing-area .pricing-item li.pricing-header::after {
	background:#f4f4f4 none repeat scroll 0 0;
	border-bottom:1px solid #e7e7e7;
	border-top:1px solid #e7e7e7;
	bottom:0;
	content:"";
	height:100%;
	left:-50%;
	position:absolute;
	width:200%;
	z-index:-1;
}
.pricing-area .pricing-item.active li.pricing-header::after {
	background:#006e39 none repeat scroll 0 0;
	border-color:transparent;
}
.pricing-simple li.pricing-header span.badge {
	background:#ffffff none repeat scroll 0 0;
	border-radius:inherit;
	color:#006e39;
	font-size:12px;
	font-weight:500;
	letter-spacing:1px;
	padding:13px 0;
	position:absolute;
	right:-87px;
	text-transform:uppercase;
	top:-68px;
	transform:rotate(45deg);
	-webkit-transform:rotate(45deg);
	-moz-transform:rotate(45deg);
	-ms-transform:rotate(45deg);
	-o-transform:rotate(45deg);
	width:200px;
}
/* ==============================================================      # Achivement=================================================================== */.achivement-area .info {
	padding-right:30px;
}
.achivement-area .info h2 {
	font-weight:600;
	line-height:1.3;
	margin-bottom:25px;
	padding-bottom:25px;
	position:relative;
	text-transform:capitalize;
	z-index:1;
}
.achivement-area .info h2::after {
	background:#ffffff none repeat scroll 0 0;
	bottom:0;
	content:"";
	height:3px;
	left:0;
	position:absolute;
	width:50px;
}
.achivement-area .info a {
	margin-top:15px;
}
.achivement-area .achivement-items .fun-fact {
	padding:50px 30px;
	position:relative;
	z-index:1;
}
.achivement-area .achivement-items .fun-fact::after {
	background:#ffffff none repeat scroll 0 0;
	border:1px solid rgba(255,255,255,0.57);
	content:"";
	height:100%;
	left:0;
	opacity:0.8;
	position:absolute;
	top:0;
	width:100%;
	z-index:-1;
}
.achivement-area .achivement-items .item {
	margin-top:30px;
}
.achivement-area .achivement-items .item:first-child,.achivement-area .achivement-items .item:nth-child(2) {
	margin-top:0;
}
.achivement-area .achivement-items .fun-fact .timer {
	color:#006e39;
	display:block;
	font-size:50px;
	font-weight:600;
	line-height:1;
}
.achivement-area .achivement-items .fun-fact .medium {
	color:#232323;
	display:block;
	font-size:16px;
	margin-top:10px;
	text-transform:uppercase;
	font-weight:600;
}
/* ==============================================================      # Work Process=================================================================== */.work-process-area .process-item .icon,.work-process-area .process-item .info {
	display:table-cell;
	vertical-align:top;
}
.work-process-area .process-item .info {
	padding-left:30px;
}
.work-process-area .process-item .icon i {
	color:#006e39;
	font-size:60px;
}
.work-process-area .process-item .info span {
	display:block;
	font-size:20px;
	font-weight:900;
	letter-spacing:1px;
	line-height:1.2;
	margin-bottom:10px;
	opacity:0.2;
}
.work-process-area .process-item .info h4 {
	font-weight:600;
	text-transform:capitalize;
}
.work-process-area .process-items h2 {
	font-weight:600;
	text-transform:capitalize;
}
.work-process-area .process-items .heading {
	margin-bottom:30px;
}
.work-process-area .process-item {
	border-bottom:1px solid #e7e7e7;
	margin-bottom:20px;
	padding-bottom:20px;
}
.work-process-area .process-item p:last-child {
	margin-bottom:0;
}
.work-process-area .process-item:last-child {
	border:medium none;
	margin:0;
	padding:0;
}
/* ==============================================================      # Faq Accordion=================================================================== */.faq-area {
	overflow:hidden;
}
.faq-items .panel-group,.acd-items .panel-group {
	margin-bottom:0;
}
.faq-area .faq-items {
	margin-top:-15px;
}
.acd-items .panel-heading .panel-title a span {
	background:#ff5a6e none repeat scroll 0 0;
	-webkit-border-radius:50%;
	-moz-border-radius:50%;
	border-radius:50%;
	color:#ffffff;
	display:inline-block;
	height:30px;
	line-height:30px;
	margin-right:5px;
	text-align:center;
	width:30px;
}
.acd-items .panel-heading .panel-title a {
	color:#232323;
	display:block;
	font-weight:600;
	padding:19px 0 20px 15px;
	position:relative;
}
.acd-items .panel-heading {
	padding:0;
}
.faq-area .acd-items .panel-body {
	padding:30px 15px;
}
.acd-items .panel.panel-default {
	border:1px solid #e7e7e7;
	border-radius:inherit;
	box-shadow:inherit;
	margin:0 0 10px;
}
.acd-items .panel.panel-default:last-child {
	margin-bottom:0;
}
.acd-items .panel-body p:last-child {
	margin:0;
}
.faq-items .panel-body {
	padding:20px;
}
.faq-items .acd-items .panel .panel-body {
	border-color:#e7e7e7;
}
.acd-arrow .panel-group.symb .panel-heading a::after {
	content:"\f107";
	font-size:20px;
	position:absolute;
	right:10px;
	top:17px;
	font-family:"Font Awesome 5 Free";
	font-weight:900;
	color:#232323;
}
.acd-arrow.left .panel-group.symb .panel-heading a::after {
	content:"\f01b" !important;
	font-size:20px;
	position:absolute;
	right:auto;
	left:10px;
	top:12px;
	font-family:"Font Awesome 5 Free";
	font-weight:900;
}
.acd-arrow.left .panel-group.symb .panel-heading a.collapsed:after {
	content:"\f01a" !important;
	font-family:"Font Awesome 5 Free";
	font-weight:900;
}
.faq-area .faq-items .panel-group {
	margin:0;
}
.acd-arrow .panel-group.symb .panel-heading a.collapsed:after {
	content:"\f105";
	font-family:"Font Awesome 5 Free";
	font-weight:900;
}
/* ==============================================================      # Error Page=================================================================== */.error-page-area .error-box {
	position:relative;
}
.error-page-area .error-box h1 {
	color:#666666;
	font-size:300px;
	font-weight:600;
	left:50%;
	line-height:1;
	opacity:0.09;
	position:absolute;
	top:50%;
	transform:translate(-50%,-50%);
	-webkit-transform:translate(-50%,-50%);
	-moz-transform:translate(-50%,-50%);
	-ms-transform:translate(-50%,-50%);
	-o-transform:translate(-50%,-50%);
	z-index:-1;
}
.error-page-area h2 {
	font-weight:600;
	text-transform:uppercase;
}
.error-page-area a {
	margin-top:15px;
}
.error-box .search {
	margin-bottom:15px;
	margin-top:30px;
	text-align:center;
}
.error-box .search form {
	margin:auto;
	position:relative;
	width:400px;
}
.error-box .search .input-group {
	width:100%;
}
.error-box .search form input {
	border:1px solid #e7e7e7;
	-webkit-border-radius:5px !important;
	-moz-border-radius:5px !important;
	border-radius:5px !important;
	box-shadow:inherit;
}
.error-box .search form button {
	background:transparent none repeat scroll 0 0;
	border:medium none;
	line-height:50px;
	padding:0 15px;
	position:absolute;
	right:0;
	top:0;
	z-index:9;
}
/*common 新闻*/
.blog-news .single-item {
	margin-bottom:30px;
}
.blog-news.full-blog .single-item {
	margin-bottom:50px;
}
.blog-news .thumb {
	height:250px;
	overflow:hidden;
	position:relative;
	z-index:1;
}
.blog-news .item .thumb img {
	-webkit-transition:all 0.35s ease-in-out;
	-moz-transition:all 0.35s ease-in-out;
	-ms-transition:all 0.35s ease-in-out;
	-o-transition:all 0.35s ease-in-out;
	transition:all 0.35s ease-in-out;
}
.blog-news .item:hover .thumb img {
	-webkit-transform:scale(1.2);
	-moz-transform:scale(1.2);
	-ms-transform:scale(1.2);
	transform:scale(1.2);
}
.blog-news .thumb .post-formats {
	-webkit-border-radius:5px;
	-moz-border-radius:5px;
	border-radius:5px;
	color:#ffffff;
	font-size:20px;
	height:50px;
	line-height:50px;
	position:absolute;
	right:15px;
	text-align:center;
	top:15px;
	width:50px;
	z-index:1;
}
.blog-news .thumb .post-formats::after {
	background:#088239 none repeat scroll 0 0;
	-webkit-border-radius:5px;
	-moz-border-radius:5px;
	border-radius:5px;
	content:"";
	height:100%;
	left:0;
	opacity:0.7;
	position:absolute;
	top:0;
	width:100%;
	z-index:-1;
}
.blog-news .info {
	box-shadow:-1px 3px 10px 0 rgba(0,0,0,0.06);
	overflow:hidden;
	padding:30px;
	background:#ffffff none repeat scroll 0 0;
}
.blog-news .info  a:hover {
	color:#088239;
}
.blog-news .info h4 {
	margin-bottom:20px;
}
.blog-news .info h2,.blog-news .info h3,.blog-news .info h4 {
	font-weight:500;
	text-transform:capitalize;
}
.blog-news .info .cats {
	margin-bottom:10px;
}
.blog-news .info .cats i {
	margin-right:5px;
}
.blog-news .info .cats a {
	color:#666666;
	display:inline-block;
	font-size:12px;
	font-weight:600;
	padding-right:8px;
	position:relative;
	text-transform:uppercase;
	z-index:1;
}
.blog-news .info .cats a:hover {
	color:#088239;
}
.blog-news .info .cats a::after {
	bottom:0;
	content:",";
	font-family:"Times New Roman";
	font-size:15px;
	position:absolute;
	right:0;
}
.blog-news .info .cats a:last-child::after {
	display:none;
}
.blog-news .info .meta li {
	color:#666666;
	float:left;
	letter-spacing:1px;
	text-transform:uppercase;
}
.blog-news .info .meta li i {
	margin-right:5px;
}
.blog-news .info .meta >a {
	color:#088239;
	float:right;
	/*font-weight:600;*/
	text-transform:uppercase;
}
.blog-news .info .meta {
	border-top:1px solid #e7e7e7;
	float:left;
	padding-top:15px;
	width:100%;
	margin-bottom:-5px;
}
.blog-news .blog-carousel .owl-nav {
	margin:0;
}
.blog-news .blog-carousel .owl-nav .owl-prev,.blog-news .blog-carousel .owl-nav .owl-next {
	background:transparent none repeat scroll 0 0;
	color:#088239;
	font-size:30px;
	height:40px;
	left:-50px;
	line-height:40px;
	margin:-20px 0 0;
	padding:0;
	position:absolute;
	top:50%;
	width:40px;
}
.blog-news .blog-carousel .owl-nav .owl-next {
	left:auto;
	right:-50px;
}
.blog-news .blog-carousel .owl-dots {
	margin:-25px 0 0;
	position:absolute;
	right:-45px;
	top:50%;
}
.blog-news .blog-carousel .owl-dots .owl-dot {
	display:block;
}
.blog-news .blog-carousel .owl-dots .owl-dot span {
	background:#ffffff none repeat scroll 0 0;
	border:2px solid #cccccc;
	height:20px;
	margin:10px 0;
	width:20px;
}
.blog-news .blog-carousel .owl-dots .owl-dot.active span {
	background:#088239 none repeat scroll 0 0;
	border-color:#088239;
}
.blog-news.left-sidebar .blog-content {
	float:right;
}
/* Pagination */
.blog-news .pagi-area .pagination li a {
	border:1px solid #e7e7e7;
	-webkit-border-radius:5px;
	-moz-border-radius:5px;
	border-radius:5px;
	color:#088239;
	font-weight:600;
	height:50px;
	line-height:50px;
	margin-right:10px;
	margin-top:5px;
	padding:0;
	text-align:center;
	text-transform:uppercase;
	width:50px;
}
.blog-news .pagi-area .pagination li.active a {
	background:#088239 none repeat scroll 0 0;
	border-color:transparent;
	color:#ffffff;
}
.blog-news .pagi-area .pagination {
	margin-bottom:-10px;
	margin-top:-5px;
}
/* ==============================================================      # Blog=================================================================== */
.blog-area .single-item {
	margin-bottom:30px;
}
.blog-area.full-blog .single-item {
	margin-bottom:50px;
}
.blog-area .thumb {
	height: 250px;
	overflow:hidden;
	position:relative;
	z-index:1;
}
.blog-area .item .thumb img {
	-webkit-transition:all 0.35s ease-in-out;
	-moz-transition:all 0.35s ease-in-out;
	-ms-transition:all 0.35s ease-in-out;
	-o-transition:all 0.35s ease-in-out;
	transition:all 0.35s ease-in-out;
}
.blog-area .item:hover .thumb img {
	-webkit-transform:scale(1.2);
	-moz-transform:scale(1.2);
	-ms-transform:scale(1.2);
	transform:scale(1.2);
}
.blog-area .cats_date{
	/*overflow:hidden;*/
	/*float: left;*/
	width: 65px;
	position:relative;
	z-index:1;
	/*padding:65px 0px 0px 0px;*/
	background:#fff none repeat scroll 0 0;
	margin-bottom: 10px;
}
.blog-area .cats_date .post-formats {
	-webkit-border-radius:5px;
	-moz-border-radius:5px;
	border-radius:5px;
	color:#ffffff;
	/*font-size:20px;*/
	/*height:65px;*/
	/*line-height:65px;*/
	/*position:absolute;*/
	left:0;
	text-align:center;
	/*top:15px;*/
	/*width:55px;*/
	z-index:1;
}
.blog-area .cats_date .post-formats .date-day{
	padding-top: 10px;
	color:#ffffff;
	font-size:20px;
}
.blog-area .cats_date .post-formats .date-month{
	color:#ffffff;
	font-size:12px;
	padding-bottom: 10px;
}
.blog-area .cats_date .post-formats::after {
	background:#006e39 none repeat scroll 0 0;
	-webkit-border-radius:5px;
	-moz-border-radius:5px;
	border-radius:5px;
	content:"";
	height:100%;
	left:0;
	/*opacity:0.7;*/
	position:absolute;
	top:0;
	width:100%;
	z-index:-1;
}

.blog-area .thumb .post-formats {
	-webkit-border-radius:5px;
	-moz-border-radius:5px;
	border-radius:5px;
	color:#ffffff;
	font-size:20px;
	height:50px;
	line-height:50px;
	position:absolute;
	right:15px;
	text-align:center;
	top:15px;
	width:50px;
	z-index:1;
}
.blog-area .thumb .post-formats::after {
	background:#006e39 none repeat scroll 0 0;
	-webkit-border-radius:5px;
	-moz-border-radius:5px;
	border-radius:5px;
	content:"";
	height:100%;
	left:0;
	opacity:0.7;
	position:absolute;
	top:0;
	width:100%;
	z-index:-1;
}
.blog-area .info {
	box-shadow:-1px 3px 10px 0 rgba(0,0,0,0.06);
	overflow:hidden;
	padding:15px;
	background:#eaeaea none repeat scroll 0 0;
}
.blog-area .info  a:hover {
	color:#006e39;
}
.blog-area .info h4 {
	font-size:18px;
	margin-bottom:20px;
}
.blog-area .info p {
	font-size:12px;
}
.blog-area .info h2,.blog-area .info h3,.blog-area .info h4 {
	font-weight:500;
	text-transform:capitalize;
}
.blog-area .info .cats {
	text-align: center;
	margin-bottom:10px;
	margin: 5px auto;
	
	float: left;
}
.blog-area .info .cats p {

	
}
.blog-area .info .cats a {
	color:#fff;
	background: #006e39;
	width: 80px;
	display:inline-block;
	font-size:12px;
	position:relative;
	text-transform:uppercase;
	z-index:1;
}
.blog-area .info .cats a:hover {
	color:#ffffff;
	background: #c6c6c6;
	width: 80px;
}
.blog-area .info .cats a::after {
	bottom:0;
	content:",";
	font-family:"Times New Roman";
	font-size:15px;
	position:absolute;
	right:0;
}
.blog-area .info .cats a:last-child::after {
	display:none;
}
.blog-area .info .meta li {
	color:#666666;
	float:left;
	font-weight:500;
	letter-spacing:1px;
	text-transform:uppercase;
}
.blog-area .info .meta li i {
	margin-right:5px;
}
.blog-area .info .meta >a {
	color:#006e39;
	float:right;
	font-weight:600;
	text-transform:uppercase;
}
.blog-area .info .meta {
	border-top:1px solid #e7e7e7;
	float:left;
	padding-top:15px;
	width:100%;
	margin-bottom:-5px;
}
.blog-area .blog-carousel .owl-nav {
	margin:0;
}
.blog-area .blog-carousel .owl-nav .owl-prev,.blog-area .blog-carousel .owl-nav .owl-next {
	background:transparent none repeat scroll 0 0;
	color:#006e39;
	font-size:30px;
	height:40px;
	left:-50px;
	line-height:40px;
	margin:-20px 0 0;
	padding:0;
	position:absolute;
	top:50%;
	width:40px;
}
.blog-area .blog-carousel .owl-nav .owl-next {
	left:auto;
	right:-50px;
}
.blog-area .blog-carousel .owl-dots {
	margin:-25px 0 0;
	position:absolute;
	right:-45px;
	top:50%;
}
.blog-area .blog-carousel .owl-dots .owl-dot {
	display:block;
}
.blog-area .blog-carousel .owl-dots .owl-dot span {
	background:#ffffff none repeat scroll 0 0;
	border:2px solid #cccccc;
	height:20px;
	margin:10px 0;
	width:20px;
}
.blog-area .blog-carousel .owl-dots .owl-dot.active span {
	background:#006e39 none repeat scroll 0 0;
	border-color:#006e39;
}
.blog-area.left-sidebar .blog-content {
	float:right;
}
/* Pagination */
.blog-area .pagi-area .pagination li a {
	border:1px solid #e7e7e7;
	-webkit-border-radius:5px;
	-moz-border-radius:5px;
	border-radius:5px;
	color:#006e39;
	font-weight:600;
	height:50px;
	line-height:50px;
	margin-right:10px;
	margin-top:5px;
	padding:0;
	text-align:center;
	text-transform:uppercase;
	width:50px;
}
.blog-area .pagi-area .pagination li.active a {
	background:#006e39 none repeat scroll 0 0;
	border-color:transparent;
	color:#ffffff;
}
.blog-area .pagi-area .pagination {
	margin-bottom:-10px;
	margin-top:-5px;
}
.pagination_full{
	width: 100%;
}
/* Sidebar */
.blog-area .sidebar .title {
	display:block;
}
.blog-area .sidebar .title h4 {
	font-weight:500;
	margin-bottom:25px;
	margin-top:-5px;
	padding-bottom:15px;
	position:relative;
	text-transform:uppercase;
	z-index:1;
}
.blog-area .sidebar .title h4::before {
	background:#006e39 none repeat scroll 0 0;
	bottom:0;
	content:"";
	height:2px;
	left:0;
	position:absolute;
	width:50px;
	z-index:-1;
}
.blog-area .sidebar input[type="text"] {
	border:1px solid #e7e7e7;
	border-radius:inherit;
	box-shadow:inherit;
}
.blog-area .sidebar form {
	position:relative;
}
.blog-area .sidebar input[type="submit"] {
	background:#232323 none repeat scroll 0 0;
	border:medium none;
	color:#ffffff;
	font-weight:500;
	letter-spacing:1px;
	padding:0 15px;
	position:absolute;
	right:0;
	text-transform:uppercase;
	top:0;
	-webkit-transition:all 0.35s ease-in-out;
	-moz-transition:all 0.35s ease-in-out;
	-ms-transition:all 0.35s ease-in-out;
	-o-transition:all 0.35s ease-in-out;
	transition:all 0.35s ease-in-out;
}
.blog-area .sidebar input[type="submit"]:hover {
	background:#006e39 none repeat scroll 0 0;
}
.blog-area .sidebar .sidebar-item {
	float:left;
	margin-bottom:50px;
	width:100%;
}
.blog-area .sidebar .sidebar-item.gallery {
	margin-bottom:40px;
}
.blog-area .sidebar .sidebar-item:last-child {
	margin-bottom:0;
}
.blog-area .sidebar .sidebar-item.category .sidebar-info,.blog-area .sidebar .sidebar-item.archives .sidebar-info {
	margin-top:-5px;
}
.blog-area .sidebar .sidebar-item.category li {
	display:block;
	padding:10px 0;
	border-bottom:1px solid #e7e7e7;
	position:relative;
}
.blog-area .sidebar .sidebar-item.category li a {
	display:inline-block;
	text-transform:capitalize;
	padding-left:25px;
}
.blog-area .sidebar .sidebar-item li a:hover {
	color:#006e39;
}
.sidebar-item.category ul li a::after {
	-webkit-border-radius:50%;
	-moz-border-radius:50%;
	border-radius:50%;
	content:"\f07b";
	font-family:"Font Awesome 5 Free";
	height:8px;
	left:0;
	position:absolute;
	width:8px;
	top:10px;
}
.blog-area .sidebar .sidebar-item.category li a span {
	-webkit-border-radius:5px;
	-moz-border-radius:5px;
	border-radius:5px;
	color:#666666;
	font-weight:500;
	padding:0 8px;
	position:absolute;
	right:0;
	top:10px;
}
.blog-area .sidebar .sidebar-item.category li:first-child a span {
	top:0;
}
.blog-area .sidebar .sidebar-item.category li:first-child {
	margin-top:0;
	padding-top:0;
}
.blog-area .sidebar .sidebar-item.category li:first-child a::after {
	top:0;
}
.blog-area .sidebar .sidebar-item.category li:last-child {
	border:medium none;
	margin-bottom:0;
	padding-bottom:0;
}
.sidebar-item.recent-post li a {
	color:#006e39;
	display:block;
	font-size:18px;
	font-weight:500;
	text-transform:capitalize;
}
.sidebar-item.recent-post li a:last-child {
	display:inline-block;
	font-weight:400;
}
.sidebar-item.recent-post .meta-title {
	color:#999999;
	margin-top:5px;
}
.sidebar-item.recent-post li a:hover {
	color:#006e39;
}
.color-yellow .sidebar-item.recent-post li a:hover {
	color:#ff9800;
}
.sidebar-item.recent-post li a span {
	display:inline-block;
	color:#232323;
}
.sidebar-item.recent-post li span {
	display:inline-block;
	margin-bottom:10px;
	text-transform:capitalize;
}
.sidebar-item.recent-post .meta-title a {
	text-transform:capitalize;
	color:#999999;
}
.sidebar-item.recent-post li {
	color:#cdd0d3;
}
.sidebar-item.recent-post li {
	border-bottom:1px solid #e7e7e7;
	margin-bottom:15px;
	padding-bottom:15px;
}
.sidebar-item.recent-post li:last-child {
	border:medium none;
	margin:0;
	padding:0;
}
.sidebar-item.recent-post li:last-child {
	margin:0;
}
.sidebar-item.recent-post li .avatar {
	display:table-cell;
	padding-top:5px;
	vertical-align:top;
	width:50px;
}
.sidebar-item.recent-post .avatar img {
	width:100%;
	-webkit-border-radius:50px;
	-moz-border-radius:50px;
	border-radius:50px;
}

.sidebar-item.recent-post li .thumb {
	display:table-cell;
	padding-top:5px;
	vertical-align:top;
	width:80px;
}
.sidebar-item.recent-post .thumb img {
	width:100%;
	-webkit-border-radius:5px;
	-moz-border-radius:5px;
	border-radius:5px;
}
.sidebar-item.recent-post li .info {
	box-shadow:inherit;
	color:#837f7e;
	display:table-cell;
	line-height:26px;
	padding:0 0 0 20px;
	vertical-align:top;
}
.sidebar-item.gallery ul li {
	box-sizing:border-box;
	float:left;
	padding:0 10px 10px 0;
	width:33.333%;
	float:left;
}
.sidebar-item.gallery ul li img {
	min-height:70px;
	width:100%;
}
.sidebar-item.archives ul li {
	display:block;
	margin-bottom:20px;
	position:relative;
}
.sidebar-item.archives ul li:last-child {
	margin-bottom:0;
}
.sidebar-item.archives ul li a {
	color:#666666;
	display:inline-block;
	font-weight:500;
	text-transform:capitalize;
	z-index:1;
	padding-left:25px;
}
.sidebar-item.archives ul li a::after {
	-webkit-border-radius:50%;
	-moz-border-radius:50%;
	border-radius:50%;
	content:"\f07b";
	font-family:"Font Awesome 5 Free";
	height:8px;
	left:0;
	position:absolute;
	width:8px;
}
.sidebar-item.social-sidebar li {
	display:inline-block;
	float:left;
	margin-right:5px;
}
.sidebar-item.social-sidebar li a {
	background:#232323 none repeat scroll 0 0;
	border:medium none;
	-webkit-border-radius:5px;
	-moz-border-radius:5px;
	border-radius:5px;
	color:#ffffff;
	display:inline-block;
	font-size:16px;
	height:60px;
	line-height:60px;
	margin-bottom:5px;
	text-align:center;
	width:60px;
}
.sidebar-item.social-sidebar li a:hover {
	color:#ffffff !important;
}
.sidebar-item.social-sidebar li.facebook a {
	background:#3B5998 none repeat scroll 0 0;
}
.sidebar-item.social-sidebar li.twitter a {
	background:#1DA1F2 none repeat scroll 0 0;
}
.sidebar-item.social-sidebar li.pinterest a {
	background:#BD081C none repeat scroll 0 0;
}
.sidebar-item.social-sidebar li.g-plus a {
	background:#DB4437 none repeat scroll 0 0;
}
.sidebar-item.social-sidebar li.linkedin a {
	background:#0077B5 none repeat scroll 0 0;
}
.sidebar-item.tags ul li {
	display:inline-block;
}
.sidebar-item.tags ul li a {
	background:#ffffff none repeat scroll 0 0;
	border:1px solid #e7e7e7;
	-webkit-border-radius:5px;
	-moz-border-radius:5px;
	border-radius:5px;
	display:inline-block;
	font-weight:600;
	margin-bottom:8px;
	margin-right:5px;
	padding:10px 25px;
	text-transform:capitalize;
}
.sidebar-item.tags ul li a:hover {
	color:#006e39;
}
/* Blog Single */.blog-area.single .item .content-box span {
	background:#006e39 none repeat scroll 0 0;
	color:#ffffff;
	display:inline-block;
	font-weight:600;
	letter-spacing:1px;
	margin-bottom:15px;
	padding:3px 20px;
	text-transform:uppercase;
}
.blog-area.single .item .content-box h2,.blog-area.single .item .content-box h3,.blog-area.single .item .content-box h4 {
	font-weight:500;
}
.blog-area.single .content-box .cats {
	float:left;
	margin-right:5px;
}
.blog-area.single .content-box .meta .date {
	float:right;
	letter-spacing:1px;
	text-transform:uppercase;
}
.blog-area.single .content-box .meta {
	overflow:hidden;
	width:100%;
	border:none;
	margin:0;
	padding:0;
}
.blog-area.single .content-box .cats a:last-child::after {
	display:none;
}
.blog-area.single .item {
	margin-bottom:0;
}
.blog-area .item blockquote {
	background:#f6f6f6 none repeat scroll 0 0;
	border-color:#006e39;
	color:#414141;
	font-size:15px;
	padding:30px;
	position:relative;
	z-index:1;
}
.blog-area .item blockquote p {
	margin:0;
	position:relative;
	z-index:1;
	font-style:italic;
}
.author-bio {
	display:block;
	margin-top:30px;
	width:100%;
}
.author-bio .avatar {
	display:table-cell;
	vertical-align:top;
	width:200px;
}
.author-bio .content {
	display:table-cell;
	padding:0 0 0 30px;
	vertical-align:middle;
}
.author-bio .content p {
	margin:0;
	position:relative;
	z-index:1;
	padding-top:5px;
}
.author-bio .content p::after {
	content:",,";
	font-family:"Times New Roman";
	font-size:60px;
	left:0;
	letter-spacing:-4px;
	opacity:0.5;
	position:absolute;
	top:0;
	transform:rotate(180deg);
	-webkit-transform:rotate(180deg);
	-moz-transform:rotate(180deg);
	-ms-transform:rotate(180deg);
	-o-transform:rotate(180deg);
}
.author-bio .content h4 {
	font-weight:500;
	margin-bottom:0;
	margin-top:15px;
	text-transform:uppercase;
}
.blog-area.single .post-pagi-area {
	background:#f9f9f9 none repeat scroll 0 0;
	margin:30px 0 45px;
	overflow:hidden;
	padding:15px;
}
.blog-area.single .post-pagi-area a {
	display:inline-block;
	font-weight:600;
	text-transform:uppercase;
}
.blog-area.single .post-pagi-area a:hover {
	color:#006e39;
}
.blog-area.single.color-yellow .post-pagi-area a:hover {
	color:#ff9800;
}
.blog-area.single .post-pagi-area a:last-child {
	float:right;
}
.blog-area.single .post-pagi-area a:first-child i {
	margin-right:3px;
}
.blog-area.single .post-pagi-area a:last-child i {
	margin-left:3px;
}
.blog-area.single .post-tags span {
	font-weight:600;
	margin-right:5px;
	text-transform:uppercase;
}
.blog-area.single .post-tags a {
	border:1px solid #e7e7e7;
	-webkit-border-radius:30px;
	-moz-border-radius:30px;
	border-radius:30px;
	color:#232323;
	display:inline-block;
	font-size:12px;
	font-weight:600;
	margin-right:5px;
	padding:3px 25px;
	text-transform:capitalize;
	margin-bottom:8px;
}
.comments-area .commen-item .comments-info p {
	display:block;
	margin:0;
}
.blog-area .contact-comments .submit {
	margin-bottom:0;
}
.blog-area.single .post-tags a:hover {
	color:#006e39;
}
.blog-area.single.color-yellow .post-tags a:hover {
	color:#ff9800;
}
.responsive-video {
	position:relative;
	padding-bottom:56.25%;
	/* 16:9 */  padding-top:25px;
	height:0;
}
.responsive-video iframe {
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
}
.comments-list .commen-item .avatar {
	float:left;
	height:100px;
	width:100px;
}
.comments-list .commen-item .content {
	display:table-cell;
	vertical-align:top;
}
.comments-list .commen-item .avatar img {
	height:80px;
	width:80px;
}
.comments-list .commen-item {
	margin-bottom:30px;
}
.comments-list .commen-item.reply {
	padding-left:80px;
}
.comments-area {
	margin-top:40px;
}
.comments-area .comments-title h2,.comments-area .comments-title h3,.comments-area .comments-title h4 {
	border-bottom:1px solid #e2e2e2;
	font-weight:700;
	margin-bottom:30px;
	padding-bottom:15px;
	text-transform:uppercase;
}
.comments-list .commen-item .content h3,.comments-list .commen-item .content h4,.comments-list .commen-item .content h5 {
	font-size:14px;
	font-weight:600;
	text-transform:uppercase;
}
.comments-info a {
	border:1px solid #e7e7e7;
	color:#232323;
	display:inline-block;
	font-size:12px;
	margin-top:15px;
	padding:1px 10px;
	text-transform:uppercase;
}
.comments-info a:hover {
	color:#006e39;
}
.color-yellow .comments-info a:hover {
	color:#ff9800;
}
.comments-info a i {
	margin-right:10px;
}
.comments-form input,.comments-form textarea {
	-moz-border-bottom-colors:none;
	-moz-border-left-colors:none;
	-moz-border-right-colors:none;
	-moz-border-top-colors:none;
	border-color:#e7e7e7;
	border-image:none;
	border-radius:inherit;
	border-style:none none solid;
	border-width:medium medium 1px;
	box-shadow:inherit;
}
.comments-form textarea {
	min-height:180px;
	padding:15px;
}
.blog-area.full-blog.single-blog .form-group.submit {
	margin-bottom:0;
}
.comments-form button {
	background-color:#353739;
	border:1px solid transparent;
	color:#ffffff;
	display:inline-block;
	
	font-size:12px;
	font-weight:600;
	line-height:25px;
	margin-top:20px;
	padding:12px 40px;
	text-transform:uppercase;
	transition:all 0.35s ease-in-out;
	-webkit-transition:all 0.35s ease-in-out;
	-moz-transition:all 0.35s ease-in-out;
	-ms-transition:all 0.35s ease-in-out;
	-o-transition:all 0.35s ease-in-out;
}
.comments-form button:hover {
	color:#ffffff;
	background-color:#006e39;
	border:1px solid transparent;
}
.comments-area .commen-item .comments-info {
	margin-bottom:15px;
}
.comments-form .title h2,.comments-form .title h3,.comments-form .title h4 {
	border-bottom:1px solid #e7e7e7;
	font-weight:700;
	margin-bottom:30px;
	padding-bottom:15px;
	text-transform:uppercase;
}
.blog-area .contact-comments .comments {
	margin-top:20px;
}
.blog-area.single .blog-items .item .contact-comments .col-md-6 {
	float:left;
	padding:0 15px;
}
/* ==============================================================      # Clients=================================================================== */.clients-area h4 {
	display:inline-block;
	padding-bottom:20px;
	position:relative;
	text-transform:uppercase;
}
.clients-area h4::after {
	background:#ffffff none repeat scroll 0 0;
	bottom:0;
	content:"";
	height:2px;
	left:0;
	position:absolute;
	width:50px;
}
.clients-area.bg-light h4::after {
	background:#006e39 none repeat scroll 0 0;
}
.clients-area .left-info {
	border-right:1px solid rgba(255,255,255,0.2);
	padding-right:30px;
}
.clients-area.bg-light .left-info {
	border-right:1px solid #e7e7e7;
}
.clients-area .clients-box {
	padding-left:30px;
}
.clients-area .clients-items img {
	width:auto;
	margin:auto;
}
.clients-area .row {
	align-items:center;
	display:flex;
}
/* ==============================================================      # Contact Area=================================================================== */.contact-area .contact-items {
	overflow:hidden;
}
.contact-area .contact-form h2 {
	font-weight:600;
	text-transform:capitalize;
}
.contact-area .contact-form p {
	margin-bottom:25px;
	position:relative;
	padding-bottom:20px;
}
.contact-area .contact-form p::after {
	background:#006e39 none repeat scroll 0 0;
	bottom:0;
	content:"";
	height:3px;
	left:0;
	position:absolute;
	width:50px;
}
.contact-area .contact-form input {
	border:1px solid #e7e7e7;
	border-radius:inherit;
	box-shadow:inherit;
}
.contact-area .contact-form textarea {
	border:1px solid #e7e7e7;
	border-radius:inherit;
	box-shadow:inherit;
	min-height:180px;
	padding:15px 12px;
}
.contact-area .contact-form button {
	background:#006e39 none repeat scroll 0 0;
	border:medium none;
	box-shadow:inherit;
	color:#ffffff;
	font-weight:600;
	padding:12px 30px;
	text-transform:uppercase;
}
.contact-area .contact-form button i {
	margin-left:2px;
}
.contact-area form img.loader {
	margin-left:5px;
}
.contact-area .contact-form {
	margin-top:-5px;
}
.contact-area .address-items h4 {
	border-bottom:1px solid #e7e7e7;
	font-weight:600;
	padding-bottom:15px;
	text-transform:capitalize;
}
.contact-area .address-items li {
	display:block;
	margin-bottom:30px;
}
.contact-area .address-items li:last-child {
	border:medium none;
	margin-bottom:0;
	padding-bottom:0;
}
.contact-area .address-items li .icon,.contact-area .address-items li span {
	display:table-cell;
	vertical-align:top;
}
.contact-area .address-items li span {
	font-size:18px;
	padding-left:15px;
}
.contact-area .address-items li .icon i {
	color:#22ac38;
	display:inline-block;
	font-size:24px;
}
.contact-area .address-items li .icon i.fa-clock,.contact-area .address-items li .icon i.fa-envelope-open {
	font-weight:500;
}
/* Google Maps */
.google-maps iframe {
	height:500px;
	margin-bottom:-10px;
	padding:3px;
	width:100%;
}
.maps-area.full .google-maps iframe {
	border:medium none;
	height:500px;
	margin-bottom:-10px;
}
.maps-area {
	overflow:hidden;
}
/* ==============================================================      # Footer=================================================================== */.footer-top .content li {
	display:inline-block;
	margin-left:100px;
	text-align:left;
}
.footer-top {
	border-bottom:1px solid #e7e7e7;
	display:block;
	overflow:hidden;
	padding:30px 0;
}
.footer-top .row {
	align-items:center;
	display:flex;
}
.footer-top .form form {
	float:right;
	width:70%;
}
.footer-top .form form input {
	border:1px solid #e7e7e7;
	-webkit-border-radius:30px !important;
	-moz-border-radius:30px !important;
	border-radius:30px !important;
	box-shadow:inherit;
	min-height:60px;
	padding-left:30px;
	width:100%;
}
.footer-top .form form .input-group-addon {
	background:transparent none repeat scroll 0 0;
	border:medium none;
	-webkit-border-radius:30px;
	-moz-border-radius:30px;
	border-radius:30px;
	box-shadow:inherit;
	padding:0;
}
.footer-top .form form .input-group-addon button {
	background:#006e39 none repeat scroll 0 0;
	border:medium none;
	-webkit-border-radius:30px;
	-moz-border-radius:30px;
	border-radius:30px;
	color:#ffffff;
	font-weight:600;
	letter-spacing:1px;
	min-height:60px;
	padding:0 30px;
	position:absolute;
	right:0;
	text-transform:uppercase;
	top:0;
	z-index:9;
}
.footer-top form .input-group.stylish-input-group {
	position:relative;
	width:100%;
}
footer .f-items {
	overflow:hidden;
}
footer.bg-dark p {
	color:#cccccc;
}
.footer-top .logo a {
	display:inline-block;
	margin-top:10px;
}
footer .footer-top img {
	height:50px;
}
footer .f-item h4 {
	color:#fefefe;
	font-size:14px;
	font-weight:500;
	padding-left:20px;
	/*margin-bottom:30px;*/
	text-transform:uppercase;
}
footer.bg-dark .f-item h4 {
	color:#ffffff;
}
footer .f-item.link li {
	float:left;
	/*margin-bottom:15px;*/
	/*width:50%;*/
	padding-right:15px;
}
footer .f-item.link li a {
	color:#acafb3;
	display:inline-block;
	font-size:12px;
	padding-left:20px;
	position:relative;
}
footer .f-item.link li a:hover {
	color:#b4b4b3;
}
footer .f-item.link li a::before {
	/*content:"\f105";
	font-family:"Font Awesome 5 Free";
	font-weight:600;*/
	left:0;
	opacity:0.4;
	position:absolute;
	top:0;
	/*width:6px;*/
}
footer .f-item.link li:last-child {
	margin:0;
}
footer .f-item .address h5 {
	text-transform:uppercase;
}
footer .f-item .address li {
	margin-bottom:15px;
}
footer .f-item .address li:last-child {
	margin:0;
}
footer .f-item .address h5 i {
	color:#006e39;
	margin-right:5px;
}
footer .f-item .social li {
	display:inline-block;
	margin-right:10px;
}
footer .f-item .social li a {
	border:1px solid #e7e7e7;
	color:#006e39;
	display:inline-block;
	height:40px;
	line-height:40px;
	text-align:center;
	width:40px;
}
footer.bg-dark .f-item .social li a {
	border:1px solid rgba(255,255,255,0.1);
}
footer .f-item .social {
	border-top:1px solid #e7e7e7;
	margin-top:20px;
	padding-top:25px;
}
footer.bg-dark li a {
	color:#cccccc;
}
footer.bg-dark .f-item .social {
	border-top:1px solid rgba(255,255,255,0.1);
}
footer .f-item.recent-post li a:last-child {
	color:#acafb3;
	display:inline-block;
	font-weight:400;
}
footer .f-item.recent-post .meta-title,footer .f-item.recent-post .meta-title a {
	color:#666666;
	font-size:12px;
	text-transform:uppercase !important;
}
footer.bg-dark .f-item.recent-post .meta-title,footer.bg-dark .f-item.recent-post .meta-title a {
	color:#ffffff;
}
footer.bg-dark .f-item.recent-post .meta-title a {
	color:#006e39;
}
footer .f-item.recent-post .meta-title {
	margin-top:5px;

	text-transform:uppercase;
}
footer .f-item.recent-post li a span {
	display:inline-block;
	color:#cdd0d3;
}
footer .f-item.recent-post li a:hover {
	color:#006e39;
}
footer .f-item.recent-post li span {
	display:inline-block;
}
footer .f-item.recent-post li span i {
	margin-right:5px;
}
footer .f-item.recent-post .meta-title a {
	text-transform:capitalize;
}
footer .f-item.recent-post li {
	color:#cdd0d3;
	font-size:12px;
}
footer .f-item.recent-post li {
	/*border-bottom:1px solid #e7e7e7;*/
	/*margin-bottom:15px;*/
	/*padding-bottom:20px;*/
}
footer.bg-dark .f-item.recent-post li {
	border-bottom:1px solid rgba(255,255,255,0.1);
}
footer .f-item .recent-post li:last-child {
	border:medium none;
	margin:0;
	padding:0;
}
footer .f-item .recent-post li .thumb {
	display:table-cell;
	vertical-align:top;
	
}
footer .f-item .thumb img {
	/*width:100%;*/
	width:120px;
	/*margin-top:5px;*/
}
footer .f-item .recent-post li .info {
	display:table-cell;
	/*padding-left:20px;*/
	text-align:center;
	vertical-align:top;
	line-height:26px;
	color:#837f7e;
}
footer .f-item .twitter-item a {
	color:#006e39;
	margin-left:5px;
}
footer .f-item .twitter-item .twitter-context {
	color:#666666;
}
footer .f-item .twitter-item .twitter-context i {
	color:#006e39;
	margin-right:5px;
}
footer .f-item .twitter-item {
	border-bottom:1px solid #e7e7e7;
	margin-bottom:15px;
	padding-bottom:15px;
}
footer.bg-dark .f-item .twitter-item {
	border-bottom:1px solid rgba(255,255,255,0.1);
}
footer .f-item .twitter-item:last-child {
	border:medium none;
	margin-bottom:0;
	padding:0;
}
/* Footer Bottom */
.footer-bottom {
	color:#acafb3;
	border-top:1px solid #4a4b4d;
	padding:5px 0;
	font-weight: normal;
	font-size:12px;
}
footer.bg-dark .footer-bottom {
	border-top:1px solid rgba(255,255,255,0.1);
}

.footer-bottom.bg-theme-small {
	border-top:medium none;
}
.footer-bottom li {
	color: #acafb3;
	display:inline-block;
}
.footer-bottom li a {
	display:inline-block;
	margin-left:15px;
	color: #acafb3;
}
.footer-bottom li a:hover {
	color:#006e39;
}
.footer-bottom p {
	color: #acafb3;
	margin:0;
}
/* ==============================================================      # Preloader =================================================================== */
.no-js #loader {
	display:none;
}
.js #loader {
	display:block;
	position:absolute;
	left:100px;
	top:0;
}
.se-pre-con {
	position:fixed;
	left:0px;
	top:0px;
	width:100%;
	height:100%;
	z-index:999999;
	background:url(../img/loading.gif) center no-repeat #fff;
	text-align:center;
}
.se-pre-con-bak {
	position:fixed;
	left:0px;
	top:0px;
	width:100%;
	height:100%;
	z-index:999999;
	background:url(../img/preloader.svg) center no-repeat #fff;
	text-align:center;
}
/* ==============================================================      # Demo =================================================================== */
.demo-area.demo-conten.default-padding {
	padding-bottom:30px;
}
.demo-area .single-item {
	box-shadow:0 0 10px #cccccc;
	position:relative;
	z-index:1;
}
.demo-area .item {
	margin-bottom:50px
}
.demo-area .single-item .info {
	background:#f3f6f8 none repeat scroll 0 0;
	padding:15px 10px;
	text-align:center;
}
.demo-area .single-item .info h4 {
	color:#232323;
	font-size:16px;
	/*font-weight:600;*/
	text-transform:uppercase;
	margin:0;
}
.banner-area .demo-banner h1 {
	font-weight:700;
	margin-bottom:30px;
}
.banner-area .demo-banner img {
	height:auto;
	margin-bottom:20px;
	max-height:80px;
}
.demo-area .def-heading h2 {
	font-weight:900;
	margin:30px 0;
	text-transform:uppercase;
	color:#333333;
}
.demo-footer {
	padding-bottom:80px;
}
.introduction-area h2 span {
	color:#fd0060;
}
.introduction-area h4 {
	font-weight:300;
	line-height:30px;
}
.introduction-area h2 {
	color:#ffffff;
	display:inline-block;
	font-weight:700;
	padding-bottom:20px;
	position:relative;
	text-transform:uppercase;
	margin-bottom:30px;
}
.introduction-area h2::before {
	background:#fd0060 none repeat scroll 0 0;
	bottom:0;
	content:"";
	height:2px;
	left:50%;
	margin-left:-10px;
	position:absolute;
	width:50px;
}
.introduction-area h2::after {
	background:#ffffff none repeat scroll 0 0;
	bottom:0;
	content:"";
	height:2px;
	left:50%;
	margin-left:-40px;
	position:absolute;
	width:25px;
}
footer.demo .copyright {
	margin-top:15px;
}
.demo-area .comming-soon.item img {
	opacity:0.3;
}
.banner-area.demo-banner {
	padding:50px 0;
}
/* 7. counter area */
.counter-area {
	background-size:cover;
	background-position:center center;
}
.pt-150 {
	padding-top:150px;
}
.pb-120 {
	padding-bottom:120px;
}
.mb-30 {
	margin-bottom:30px;
}

.single-couter span {
	font-size:40px;
	/*color:#fff;*/
	color:#006e39;
}
.counter {
	/*color:#fff;*/
	color:#118c3c;
	display:block;
	font-size:30px;
	/*font-weight:600;*/
	margin-bottom:20px;
	margin-top:25px;
}
.about_counter {
	/*color:#fff;*/
	color:#118c3c;
	display:block;
	font-size:24px;
	/*font-weight:600;*/
	margin-bottom:20px;
	margin-top:25px;
}
.single-couter >p {
	/*color:#ddd;*/
	/*color:#666;*/
	font-size:16px;
	margin:0;
	text-transform:capitalize;
	/*font-weight:500;*/
}
.single-couter.counter-2 >span {
	font-size:72px;
	line-height:1;
	margin-top:0;
}
.single-couter.counter-2 >p {
	color:#666;
	font-size:15px;
	line-height:30px;
	padding-left:20px
}
.bottom-area-lxkefu {
    width: 160px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    color: #fff;
    display: block;
    background: #006e39;
    margin-top: 20px;
    border-radius: 4px;
    letter-spacing: 1px;
}
.bottom-area-detail {
    width: 100px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    color: #fff;
    display: block;
    background: #006e39;
    margin-top: 20px;
    border-radius: 4px;
    letter-spacing: 1px;
}
/*news*/
.tab-nav-box{width:100%;border-bottom:1px solid #e5e5e5;}
.tab-nav-ul{width: 1200px;margin:0 auto;font-size: 0;}
.tab-nav-ul .item{font-size:24px;color:#333333;display: inline-block;line-height: 43px;margin-right: 30px;cursor: pointer;}
.tab-nav-ul .item.active{font-weight: bold;color:#1aa439;border-bottom:3px solid #1aa439;}
.media-news{position: relative}
/*.container {
    width: 100%;
}
*/
.popular__news-header-carousel{margin-top:30px}
@media screen and (min-width: 320px) and (max-width: 575px){.popular__news-header-carousel{margin-top:0}}
.top__news__slider .slick-slide{margin-left:27px}
.top__news__slider .slick-slide img{height:180px;max-width:100%;-o-object-fit:cover;object-fit:cover;position:relative}
@media screen and (min-width: 320px) and (max-width: 575px){
	.top__news__slider .slick-slide img{width:115px;height:100px;max-height:100%;margin-right:10px;float:left}
}
.top__news__slider .slick-list{margin-left:-27px}
.wrapper__list__article .wrapp__list__article-responsive .card__post__body{margin-top:10px}@media screen and (min-width: 320px) and (max-width: 575px){
	.wrapper__list__article .wrapp__list__article-responsive .card__post__body .card__post__content .card__post__category{
		position:absolute;top:-45px !important;left:30px !important}
	}
.card__post{position:relative}.card__post .card__post__body{display:block}.card__post .card__post__body img{-o-object-fit:cover;object-fit:cover;width:100%;max-width:100%;height:245px;position:relative}
.card__post .card__post__body .card__post__content{padding:20px;left:0;bottom:0;width:100%}
.card__post .card__post__body .card__post__content .card__post__category{clear:both;color:#fff;display:inline-block;font-size:10px;margin-bottom:5px;padding:5px 8px;background:-ms-linear-gradient(285deg, #f92a28 27%, #da1752 100%, #fff 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#1301FE', endColorstr='#F4F60C', GradientType='1');background:linear-gradient(285deg, #f92a28 27%, #da1752 100%, #fff 100%);line-height:15px;text-transform:uppercase;font-weight:600}
@media screen and (min-width: 320px) and (max-width: 575px){
	.card__post .card__post__body .card__post__content .card__post__category{position:absolute;top:-20px;left:20px}
}
@media screen and (min-width: 576px) and (max-width: 768px){
	.card__post .card__post__body .card__post__content .card__post__category{margin-bottom:10px}
}
.card__post .card__post__body .card__post__content .card__post__title h6 a{margin:0 0 10px;text-decoration:none}
@media screen and (min-width: 320px) and (max-width: 575px){.card__post .card__post__body .card__post__content .card__post__title h6 a{margin-bottom:0}}@media screen and (min-width: 576px) and (max-width: 768px){
	.card__post .card__post__body .card__post__content .card__post__title h5{font-size:14px}
}
.card__post .card__post__body .card__post__content .card__post__title h5 a{color:#fff}
.card__post .card__post__body .card__post__content .card__post__title h5 a:hover{text-decoration:none}
.card__post .card__post__body .card__post__content .card__post__title h4 a:hover{text-decoration:none}
.card__post .card__post__body .card__post__content .card__post__title p{margin-top:10px;line-height:24px;font-size:14px}
.card__post .card__post__body .card__post__content .card__post__author-info{font-size:12px;font-weight:700;line-height:1;margin:0;padding:0;list-style:none;letter-spacing:0.5px;text-transform:capitalize}
@media screen and (min-width: 576px) and (max-width: 768px){
	.card__post .card__post__body .card__post__content .card__post__author-info{}
}
.card__post .card__post__body .card__post__content .card__post__author-info .list-inline{margin:0}
.card__post .card__post__body .card__post__content .card__post__author-info .list-inline .list-inline-item a{font-weight:normal;text-decoration:none}
.card__post .card__post__body .card__post__content .card__post__author-info .list-inline .list-inline-item span{
	color:#232323;/*color:#fff;font-weight:700;*/
	font-size: 20px;
    overflow: hidden;
    /*white-space: nowrap;*/
    text-overflow: ellipsis;
    margin: 10px 0 18px 0;
}
.card__post:hover .card__post__body::before{opacity:1}
@media screen and (min-width: 320px) and (max-width: 575px){
	.popular__news-header .card__post{margin-bottom:20px}
}
.popular__news-header-carousel{margin-top:30px}
@media screen and (min-width: 320px) and (max-width: 575px){
	.popular__news-header-carousel{margin-top:0}}
@media screen and (min-width: 576px) and (max-width: 768px){
	.popular__news-header-carousel{margin-top:30px}
}
.popular__news-right .card__post .card__post__body img{position:relative;height:230px}
@media screen and (min-width: 320px) and (max-width: 575px){
	.popular__news-right .card__post .card__post__body img{height:auto}
}
@media screen and (min-width: 576px) and (max-width: 768px){
	.popular__news-right .card__post .card__post__body img{height:130px}
}
@media screen and (min-width: 320px) and (max-width: 575px){
	.popular__news-right h5{font-size:18px}
}
@media screen and (min-width: 576px) and (max-width: 768px){
	.popular__news-right h5{font-size:14px;margin-bottom:0}
}
@media screen and (min-width: 576px) and (max-width: 768px){
	.popular__news-right .list-inline{display:none}
}
.image-sm{display:block;height:100%;flex:0 0 28%;width:28%;max-width:100%;margin:0;background-size:cover}
.image-sm img{
	/*height: 100px;
    position: absolute;
    display: block;
    left: 50%;
    top: 50%;*/
    position:relative;-o-object-fit:cover;object-fit:cover;height:100px;max-width:100%;width:100%;border-radius: 5px;
}
.image-medium{
	/*display:flex;*/
	/*display:block;*/
	width:250px;
	max-width:100%;
	overflow:hidden;
	margin:0
}
.image-medium img{
	/*overflow: hidden;
    position: relative;
    z-index: 1;*/
	-o-object-fit:cover;object-fit:cover;width:100% !important;height:auto
}
.card__post-list-top:first-child{margin-top:0}
.card__post-list{
	display:inline-flex;
	/*display:flex;*/
	float: left;
    /*width: 50%;*/
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    /*font-size: 0;*/
    /*height: 130px;*/
    overflow: hidden;
}
@media screen and (min-width: 320px) and (max-width: 575px){
	.card__post-list{margin-top:0}
}
.card__post-list .card__post__transition{position:relative;overflow:hidden}
.card__post-list .card__post__transition img{position:relative;max-width:100%;height:230px;-o-object-fit:cover;object-fit:cover;overflow:hidden;background-color:#000;display:inline-block;margin-bottom:0}
@media screen and (min-width: 320px) and (max-width: 575px){.card__post-list .card__post__transition img{height:auto}}
@media screen and (min-width: 576px) and (max-width: 768px){.card__post-list .card__post__transition img{height:auto}}
@media screen and (min-width: 769px) and (max-width: 992px){.card__post-list .card__post__transition img{height:170px}}
.card__post-list .card__post__content{padding:0 8px 0 10px !important}
@media screen and (min-width: 320px) and (max-width: 575px){
.card__post-list .card__post__content{padding:0 8px 0 15px !important}
}
.card__post-list .card__post__content .card__post__title h6{
	margin:10px auto;text-transform:capitalize
}
.card__post-list .card__post__content .card__post__title h6 a{
	font-size: 14px;
    display: -webkit-box !important;
    overflow: hidden;
    word-break: break-all;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-height: 20px;
}
.wrapper__list__article-small .card__post .card__post__content .card__post__title h6 a{color:#000}
.card__post__transition img{transition:0.3s ease-in-out}
.card__post__transition:hover img{transform:scale3d(1.1, 1.1, 1);-webkit-transform:scale3d(1.1, 1.1, 1);-moz-transform:scale3d(1.1, 1.1, 1) rotate(0.02deg);transition:0.3s ease-in-out}
.card__post__body-border{border-left:1px solid #e9ecef;border-right:1px solid #e9ecef;border-bottom:1px solid #e9ecef}
.card__post__body-border-all{border:1px solid #e9ecef;margin-top:-1px}.card__post__body-border-all .card__post__category{clear:both;color:#fff;display:inline-block;font-size:10px;margin-bottom:5px;padding:5px 8px;background:-ms-linear-gradient(285deg, #f92a28 27%, #da1752 100%, #fff 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#1301FE', endColorstr='#F4F60C', GradientType='1');background:linear-gradient(285deg, #f92a28 27%, #da1752 100%, #fff 100%);line-height:15px;text-transform:uppercase;font-weight:600}
.card__post__body-border-all span{font-size:11px;font-weight:700;text-transform:capitalize;}
@media screen and (min-width: 320px) and (max-width: 575px){.card__post__body-border-all span{font-size:10px}}
@media screen and (min-width: 576px) and (max-width: 768px){.card__post__body-border-all span{font-size:10px}}.card__post__body-border-all h5{font-size:16px}@media screen and (min-width: 320px) and (max-width: 575px){.card__post-carousel{margin-bottom:0}}.card__post-carousel .card__post .card__post__body img{max-width:100%;width:100%;height:460px;-o-object-fit:cover;object-fit:cover;position:relative}
@media screen and (min-width: 320px) and (max-width: 575px){.card__post-carousel .card__post .card__post__body img{height:250px}}@media screen and (min-width: 576px) and (max-width: 768px){.card__post-carousel .card__post .card__post__body img{height:260px}}
.card__post-carousel .card__post .card__post__body .card__post__content{padding:40px 20px}
@media screen and (min-width: 576px) and (max-width: 768px){.card__post-carousel .card__post .card__post__body .card__post__content{padding:20px}}
.card__post-carousel .card__post .card__post__body .card__post__content .card__post__title h2{color:#fff;margin:0 0 10px;font-weight:700;-webkit-text-shadow:1px 1px 1px rgba(0,0,0,0.3);-moz-text-shadow:1px 1px 1px rgba(0,0,0,0.3);-ms-text-shadow:1px 1px 1px rgba(0,0,0,0.3);-o-text-shadow:1px 1px 1px rgba(0,0,0,0.3);text-shadow:1px 1px 1px rgba(0,0,0,0.3);width:100%}
.card__post-carousel .card__post .card__post__body .card__post__content .card__post__title h2 a{color:#fff}
.card__post-carousel .card__post .card__post__body .card__post__content .card__post__title h2 a:hover{text-decoration:none}
@media screen and (min-width: 320px) and (max-width: 575px){
	.card__post-carousel .card__post .card__post__body .card__post__content .card__post__title h2{font-size:18px}}
	@media screen and (min-width: 576px) and (max-width: 768px){
		.card__post-carousel .card__post .card__post__body .card__post__content .card__post__title h2{font-size:24px}}@media screen and (min-width: 320px) and (max-width: 575px){
			.card__post-carousel .card__post .card__post__body .card__post__content{padding:15px}
			}.card__post-carousel .slick-prev,.card__post-carousel .slick-next,.card__post-carousel-height .slick-prev,.card__post-carousel-height .slick-next{
				width:45px;height:45px;z-index:1;background-color:rgba(0,0,0,0.5);opacity:0;visibility:hidden;transition:0.5s ease
			}.card__post-carousel .slick-prev::before,.card__post-carousel .slick-next::before,.card__post-carousel-height .slick-prev::before,.card__post-carousel-height .slick-next::before{color:#fff}@media screen and (min-width: 320px) and (max-width: 575px){.card__post-carousel .slick-prev,.card__post-carousel-height .slick-prev{display:none !important}}@media screen and (min-width: 320px) and (max-width: 575px){.card__post-carousel .slick-next,.card__post-carousel-height .slick-next{display:none !important}}.card__post-carousel:hover .slick-prev,.card__post-carousel-height:hover .slick-prev{visibility:visible;opacity:1;left:0;-webkit-transform:translateY(-50%) scale(1);transform:translateY(-50%) scale(1)}.card__post-carousel:hover .slick-next,.card__post-carousel-height:hover .slick-next{visibility:visible;opacity:1;right:0;-webkit-transform:translateY(-50%) scale(1);transform:translateY(-50%) scale(1)}.card__post-carousel .slick-dots{display:flex;justify-content:center;margin:0;padding:1rem 0;list-style-type:none;bottom:-10px}.card__post-carousel .slick-dots li{margin:0}.card__post-carousel .slick-dots button{display:block;width:5px;height:5px;padding:0;border-radius:100%;background-color:#fff}.card__post-carousel .slick-dots li.slick-active button{background-color:#c00}.card__post__transition{position:relative;overflow:hidden;flex-shrink:0}.card__post__transition .card__post__body{display:block}.card__post__transition .card__post__body img{-o-object-fit:cover;object-fit:cover;width:100%;height:auto}
		.card__post__transition .card__post__body .card__post__content{padding:15px;width:100%}
.card__post__transition .card__post__body .card__post__content .card__post__title h6 a{color:#fff;margin:0 0 10px;font-weight:500 !important;-webkit-text-shadow:1px 1px 1px rgba(0,0,0,0.3);-moz-text-shadow:1px 1px 1px rgba(0,0,0,0.3);-ms-text-shadow:1px 1px 1px rgba(0,0,0,0.3);-o-text-shadow:1px 1px 1px rgba(0,0,0,0.3);text-shadow:1px 1px 1px rgba(0,0,0,0.3);width:100%;text-decoration:none}
.card__post__transition .card__post__body .card__post__content .card__post__title h5{text-transform:capitalize;margin-bottom:10px}
@media screen and (min-width: 320px) and (max-width: 575px){.card__post__transition .card__post__body .card__post__content .card__post__title h5{font-size:16px}}
.card__post__transition .card__post__body .card__post__content .card__post__title h5 a{color:#000}
.card__post__transition .card__post__body .card__post__content .card__post__title h5 a:hover{color:#c00;text-decoration:none}
.card__post__transition .card__post__body .card__post__content .card__post__title p{line-height:24px;font-size:14px;text-align:left}
.card__post__transition .card__post__body img{transition:0.3s ease-in-out}.card__post__transition .card__post__body:hover img{transform:scale3d(1.1, 1.1, 1);-webkit-transform:scale3d(1.1, 1.1, 1);-moz-transform:scale3d(1.1, 1.1, 1) rotate(0.02deg);transition:0.3s ease-in-out}.card__post__detail h2{cursor:pointer;color:#343a40}.card__post__detail h2:hover{color:#c00}@media screen and (min-width: 320px) and (max-width: 575px){.card__post__detail h2{font-size:20px;line-height:28px;margin-bottom:10px}}
.card__post__detail .card__post__detail-author-info{font-size:12px;font-weight:700;line-height:1;margin:15px 0;padding:0;list-style:none;letter-spacing:0.5px;text-transform:capitalize}
.card__post__detail .card__post__detail-author-info .list-inline{margin:0}
.card__post__detail .card__post__detail-author-info .list-inline .list-inline-item{font-weight:normal;line-height:17px}
.card__post__detail .card__post__detail-author-info .list-inline .list-inline-item a{color:#c00;font-weight:normal}
.card__post__detail .card__post__detail-author-info .list-inline .list-inline-item span{color:#fff;font-weight:normal}
.card__post__detail figure img{position:relative}
.card__post__detail figure figcaption{text-align:center;font-size:12px;margin:10px 0}
.card__post__detail .card__post__detail-body p{font-size:16px;margin-bottom:20px;line-height:30px}
.card__post__detail .card__post__detail-body h4{line-height:32px}
.card__post__detail .card__post__detail-body .blog-tags{padding:15px 0;display:block}
.card__post__detail .card__post__detail-body .blog-tags .blog-nav-tags{display:flex}
.card__post__detail .card__post__detail-body .blog-tags .blog-nav-tags .fa-tags{margin-right:10px;text-align:center;position:relative;top:7px;color:#c00}
.card__post__detail .card__post__detail-body .blog-tags .blog-nav-tags a{display:block;margin-bottom:5px;padding:7px 10px;border:1px solid #ddd;margin-right:5px;color:#000;text-decoration:none;text-transform:uppercase;font-size:11px;letter-spacing:1px}
.card__post__detail .card__post__detail-body .blog-tags .blog-nav-tags a:hover{background-color:#c00;color:#fff}
.card__post-height{height:460px;max-height:100%;margin-left:2px;line-height:0;overflow:hidden}
.card__post-height img{height:460px !important;-o-object-fit:cover;object-fit:cover;width:auto}.
.img-fluid{
	max-width:100%;height:100%
}
.normal_talent_pic{
	height:500px;border-radius:15px;
}
.aboutus_background{
	background: url('/Public/assets/img/aboutus_bg.jpg') no-repeat center center / cover;
}
@media only screen and (max-width:750px) {
	.aboutus_background{
		background: url('/Public/assets/img/aboutus_bg.jpg') no-repeat;
		/*background-position: 120% 120%;*/
	}
	.about_right_name span {
	    font-size: 20px;
	    /* float: left; */
	    color: #006e39;
	     margin: 30px 0px 30px 0px; 
	    display: inline-block;
	    font-weight: 600;
	    padding-bottom: 10px;
	    position: relative;
	    text-transform: capitalize;
	}
	.bottom-about-detail {
	    width: 130px;
	    height: 40px;
	    font-size: 20px;
	    text-align: right;
	    line-height: 40px;
	    color: #006e39;
	    display: block;
	    border: 1px solid #006e39;
	    margin-top: 20px;
	    border-radius: 4px;
	    letter-spacing: 1px;
	    margin: 0 auto;
	}
	.business_img {
	    right: 0;
	    top: 3px;
	    position: absolute;
	    margin-right: 10px;
	}
	.party_top {
	    float: left;
	    text-align: right;
	    margin-top: 5px;
	    margin-left: 0px;
	}
	.normal_talent_pic{
		height:100%;border-radius:15px;
	}
	.blog-area .thumb {
	     height: 100%; 
	    overflow: hidden;
	    position: relative;
	    z-index: 1;
	}
	.culture {
	    position: relative;
	     margin: 0 0px; 
	}
	.counter {
	    color: #fff;
	    /* color: #118c3c; */
	    display: block;
	    font-size: 30px;
	    /* font-weight: 600; */
	    margin-bottom: 10px;
	    margin-top: 15px;
	}
	.maincolor {
	    color: #fff;
	}
}
/* line 6, src/assets/scss/vendors/bootstrap.min.css */
.align-items-center {
  -ms-flex-align: center !important;
  -webkit-box-align: center !important;
          align-items: center !important;
}

@media (min-width: 320px) and (max-width: 992px) {
  /* line 1204, src/assets/scss/custom/_style.scss */
  .navbar-expand-md .main-navbar-nav .custom-nav-link {
    padding-right: 0.12rem;
    padding-left: 0.12rem;
  }
  /* line 1208, src/assets/scss/custom/_style.scss */
  .ptb-100 {
    padding: 55px 0;
  }
  /* line 1212, src/assets/scss/custom/_style.scss */
  .pt-100 {
    padding-top: 55px;
  }
  /* line 1216, src/assets/scss/custom/_style.scss */
  .pb-100 {
    padding-bottom: 55px;
  }
  /* line 1219, src/assets/scss/custom/_style.scss */
  .pt-165 {
    padding-top: 100px;
  }
}
/* line 6, src/assets/scss/vendors/bootstrap.min.css */
.text-white {
  color: #fff !important;
}
/* line 106, src/assets/scss/custom/_style.scss */
.lead {
  font-size: 1.125rem;
  font-weight: 400;
}
.ptb-100 {
  padding: 100px 0;
}
.page-header-section {
    position: relative;
    display: block;
    width: 100%;
    overflow: hidden;
}
/* line 1459, src/assets/scss/custom/_style.scss */
.gradient-overly-right, .gradient-overly-left, .gradient-overly-bottom, .gradient-overly-top {
  z-index: 1;
  width: 100%;
  min-width: 100%;
  position: relative;
  overflow: hidden;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
}

/* line 1472, src/assets/scss/custom/_style.scss */
.gradient-overly-right:before, .gradient-overly-left:before, .gradient-overly-bottom:before, .gradient-overly-top:before {
  content: "";
  z-index: -1;
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

/* line 1483, src/assets/scss/custom/_style.scss */
.gradient-overly-right:before {
  background: -webkit-gradient(linear, left top, right top, from(#031974), to(rgba(25, 52, 167, 0.5)));
  background: linear-gradient(90deg, #031974, rgba(25, 52, 167, 0.5));
}
/* line 6, src/assets/scss/vendors/bootstrap.min.css */
.breadcrumb {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: .75rem 1rem;
  margin-bottom: 1rem;
  list-style: none;
  background-color: #e9ecef;
  border-radius: .25rem;
}
/* line 6, src/assets/scss/vendors/bootstrap.min.css */
.breadcrumb-item + .breadcrumb-item {
  padding-left: .5rem;
}

/* line 6, src/assets/scss/vendors/bootstrap.min.css */
.breadcrumb-item + .breadcrumb-item::before {
  float: left;
  padding-right: .5rem;
  color: #6c757d;
  content: "/";
}

/* line 6, src/assets/scss/vendors/bootstrap.min.css */
.breadcrumb-item + .breadcrumb-item:hover::before {
  text-decoration: underline;
}

/* line 6, src/assets/scss/vendors/bootstrap.min.css */
.breadcrumb-item + .breadcrumb-item:hover::before {
  text-decoration: none;
}

/* line 6, src/assets/scss/vendors/bootstrap.min.css */
.breadcrumb-item.active {
  color: #6c757d;
}
/* line 167, src/assets/scss/custom/_style.scss */
.gray-light-bg {
  /*background: #353739;*/
}
/* line 6, src/assets/scss/vendors/bootstrap.min.css */
.border-bottom {
  border-bottom: 1px solid #dee2e6 !important;
  /*border-bottom: 0 !important;*/
}
/* line 6, src/assets/scss/vendors/bootstrap.min.css */
.pt-0, .py-0 {
  padding-top: 0 !important;
}
/* line 6, src/assets/scss/vendors/bootstrap.min.css */
.pb-0, .py-0 {
  padding-bottom: 0 !important;
}
/*=========================================
          25. BREADCRUMB CSS
============================================*/
/* line 3442, src/assets/scss/custom/_style.scss */
.page-header-section {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
}

/* line 3449, src/assets/scss/custom/_style.scss */
.page-header-breadcrumb .custom-breadcrumb ol li a, .page-header-breadcrumb .custom-breadcrumb ol li.breadcrumb-item.active {
  color: inherit;
  opacity: 0.7;
}

/* line 3453, src/assets/scss/custom/_style.scss */
.custom-breadcrumb ol li.list-inline-item:not(:last-child) {
  margin-right: 0;
}

/* line 3457, src/assets/scss/custom/_style.scss */
.custom-breadcrumb ol {
  margin: 10px auto;
  padding: 0;
  /*line-height: 0;*/
}

/* line 3462, src/assets/scss/custom/_style.scss */
.custom-breadcrumb ol li a, .custom-breadcrumb ol li.breadcrumb-item.active {
  opacity: 0.7;
  font-size: 13px;
  
  font-weight: 600;
}

/* line 3468, src/assets/scss/custom/_style.scss */
.custom-breadcrumb ol li a:hover, .page-header-breadcrumb .custom-breadcrumb ol li a:hover {
  opacity: 1;
}

/* line 3471, src/assets/scss/custom/_style.scss */
.custom-breadcrumb ol li.breadcrumb-item {
  padding-left: 0;
}

/* line 3474, src/assets/scss/custom/_style.scss */
.custom-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  font-family: "Font Awesome 6 Pro";
  content: "\f105";
  font-size: 11px;
  font-weight: 600;
  color: inherit;
  float: none;
}
/* line 6, src/assets/scss/vendors/bootstrap.min.css */
.bg-transparent {
  background-color: transparent !important;
}
/* line 6, src/assets/scss/vendors/bootstrap.min.css */
.d-inline-block {
  display: inline-block !important;
}
/* line 6, src/assets/scss/vendors/bootstrap.min.css */
.list-inline {
  padding-left: 0;
  list-style: none;
}

/* line 6, src/assets/scss/vendors/bootstrap.min.css */
.list-inline-item {
  display: inline-block;
}

/* line 6, src/assets/scss/vendors/bootstrap.min.css */
.list-inline-item:not(:last-child) {
  margin-right: .5rem;
}
