/* 1. Theme default css
-------------------------------------------------------------- */
@import url('css2.css');


body {
	font-family: 'Poppins', sans-serif;
	font-weight: 400;
	background-color: #f5f5f5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	color: #222222;
	font-weight: 500;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
	color: inherit;
}

h1 a:hover,
h2 a:hover,
h3 a:hover,
h4 a:hover,
h5 a:hover,
h6 a:hover {
	color: #6c63ff
}

h4 {
	font-size: 36px;
}

h5 {
	font-size: 24px;
}

h6 {
	font-size: 21px;
}

p {
	font-size: 18px;
	font-weight: 400;
	line-height: 28px;
	color: #666666;
}

span,
input,
img {
	transition: all .3s ease-out;
	-webkit-transition: all .3s ease-out;
	-moz-transition: all .3s ease-out;
	-ms-transition: all .3s ease-out;
	-o-transition: all .3s ease-out;
}

ul {
	margin: 0px;
	padding: 0px;
}

li {
	list-style: none
}

img {
	max-width: 100%;
	transition: all 0.3s ease-out 0s;
}

a,
button,
li {
	transition: .3s;
	-webkit-transition: all 0.3s ease-out 0s;
	-moz-transition: all 0.3s ease-out 0s;
	-ms-transition: all 0.3s ease-out 0s;
	-o-transition: all 0.3s ease-out 0s;
	transition: all 0.3s ease-out 0s;
}

.over-hidden {
	overflow: hidden;
}

.clear-both {
	clear: both;
}

.over-scroll {
	overflow: scroll;
}

.over-x-hidden {
	overflow-x: hidden;
}

.over-x-scroll {
	overflow-y: scroll;
}

.transition-3 {
	transition: .3s;
}

a:focus,
button:focus,
.btn:focus {
	text-decoration: none;
	outline: 0;
	box-shadow: none;
}

a:focus,
a:hover,
.portfolio-cat a:hover,
.footer-menu li a:hover {
	color: #222222;
	text-decoration: none;
	outline: 0 none;
}

*::-moz-selection {
	background: #666666;
	color: #fff;
	text-shadow: none;
}

::-moz-selection {
	background: #444;
	color: #fff;
	text-shadow: none;
}

::selection {
	background: #444;
	color: #fff;
	text-shadow: none;
}

*::-moz-placeholder {
	color: #222222;
	font-size: 17px;
	opacity: .6;
}

*::placeholder {
	color: #222222;
	font-size: 17px;
	opacity: .6;
}

.transition {
	transition: .3s;
}

.btn:focus,
input:focus,
textarea:focus {
	outline: 0 none;
}

.f-600 {
	font-weight: 600;
}

.f-800 {
	font-weight: 800;
}

.f-700 {
	font-weight: 700;
}

.f-900 {
	font-weight: 900;
}

.z-index11 {
	z-index: 11;
}

.z-index1 {
	z-index: 1;
}

.z-index-1 {
	z-index: -1;
}

.top-0 {
	top: 0;
}

.left-0 {
	left: 0;
}

.right-0 {
	right: 0
}

.bottom-0 {
	bottom: 0;
}

.no-repeat {
	background-repeat: no-repeat;
}

.bg-cover {
	background-size: cover;
}

.left-50 {
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
}

/*===== Reveal Text =====*/
.reveal-text,
.reveal-text span {
	-webkit-animation-iteration-count: 1;
	animation-iteration-count: 1;
	-webkit-animation-duration: 800ms;
	animation-duration: 800ms;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-timing-function: cubic-bezier(0.0, 0.0, 0.2, 1);
	animation-timing-function: cubic-bezier(0.0, 0.0, 0.2, 1);
}

.reveal-text {
	position: relative;
	-webkit-animation-name: clip-text;
	animation-name: clip-text;
}

.reveal-text span {
	content: "";
	position: absolute;
	z-index: 999;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #ffffff;
	-webkit-transform: scaleX(0);
	transform: scaleX(0);
	-webkit-transform-origin: 0 50%;
	transform-origin: 0 50%;
	pointer-events: none;
	-webkit-animation-name: text-revealer;
	animation-name: text-revealer;
}

@-webkit-keyframes clip-text {
	from {
		-webkit-clip-path: inset(0 100% 0 0);
		clip-path: inset(0 100% 0 0);
	}

	to {
		-webkit-clip-path: inset(0 0 0 0);
		clip-path: inset(0 0 0 0);
	}
}

@keyframes clip-text {
	from {
		-webkit-clip-path: inset(0 100% 0 0);
		clip-path: inset(0 100% 0 0);
	}

	to {
		-webkit-clip-path: inset(0 0 0 0);
		clip-path: inset(0 0 0 0);
	}
}

@-webkit-keyframes text-revealer {

	0%,
	50% {
		-webkit-transform-origin: 0 50%;
		transform-origin: 0 50%;
	}

	60%,
	100% {
		-webkit-transform-origin: 100% 50%;
		transform-origin: 100% 50%;
	}


	60% {
		-webkit-transform: scaleX(1);
		transform: scaleX(1);
	}

	100% {
		-webkit-transform: scaleX(0);
		transform: scaleX(0);
	}
}

@keyframes text-revealer {

	0%,
	50% {
		-webkit-transform-origin: 0 50%;
		transform-origin: 0 50%;
	}

	60%,
	100% {
		-webkit-transform-origin: 100% 50%;
		transform-origin: 100% 50%;
	}


	60% {
		-webkit-transform: scaleX(1);
		transform: scaleX(1);
	}

	100% {
		-webkit-transform: scaleX(0);
		transform: scaleX(0);
	}
}

.inner-layer {
	display: inline-block;
	overflow: hidden;
}

.txt-dazi {
	position: absolute;
	bottom: 40px;
	padding-left: 5px;
	color: #fff;
	text-transform: uppercase;
}

.txt-dazi .txt-h1 {
	display: flex;
	align-items: center;
	font-size: 28px;
	font-weight: bold;
	letter-spacing: 1px;
}

.txt-dazi .txt-h2 {
	display: flex;
	align-items: center;
	font-size: 16px;
}

.txt-dazi .txt-h2::before {
	content: "";
	margin-right: 8px;
	left: 0;
	width: 40px;
	height: 2px;
	background: #fff;
}

/* bttton */
.btn {
	padding: 12px 58px;
	font-size: 18px;
	font-weight: 600;
	border: 1px solid #6c63ff;
	box-shadow: 0px 5px 15px 0px rgba(8, 0, 140, 0.19);
	border-radius: 28px;
	color: #fff;
	outline: 0 none;
	text-transform: capitalize;
	transition: .3s;
	-webkit-border-radius: 28px;
	-moz-border-radius: 28px;
	-ms-border-radius: 28px;
	-o-border-radius: 28px;
}

.btn:hover {
	color: #6c63ff;
	background: #ffffff;
}

.btn:focus {
	color: #6c63ff;
	background: #ffffff;
}

.btn-2 a::before,
.btn-2 a::after {
	position: absolute;
	content: "";
	background: #6c63ff;
	height: 2px;
	bottom: -2px;
	left: 0;
	right: 0;
	width: 100%;
}

.btn-2 a::after {
	background: #222222;
	width: 0;
	transition: .5s;
	-webkit-transition: .5s;
	-moz-transition: .5s;
	-ms-transition: .5s;
	-o-transition: .5s;
}

.btn-2:hover>a::before {
	width: 0;
}

.btn-2:hover>a::after {
	width: 100%;
}

/* slick-arrow */
.testimonial-active .slick-arrow .l-a,
.testimonial-active .slick-arrow .r-a,
.slider-active .slick-arrow .l-a,
.slider-active .slick-arrow .r-a {
	position: absolute;
	bottom: 35px;
	width: 48px;
	height: 48px;
	background: #fff;
	color: #555555;
	text-align: center;
	line-height: 48px;
	z-index: 1;
	font-size: 18px;
	border-radius: 50%;
	box-shadow: 0px 6px 30px 0px rgba(7, 7, 7, 0.12);
	transition: .3s;
	-webkit-transition: .3s;
	-moz-transition: .3s;
	-ms-transition: .3s;
	-o-transition: .3s;
	cursor: pointer;
}

.testimonial-active .slick-arrow .r-a {
	left: 70px;
}

.testimonial-active .slick-arrow .r-a:hover,
.testimonial-active .slick-arrow .l-a:hover {
	cursor: pointer;
	box-shadow: 0px 6px 30px 0px rgba(7, 7, 7, 0.15);
}

.testimonial-active .slick-arrow .l-a:hover,
.testimonial-active .slick-arrow .r-a:hover {
	background: #6c63ff;
	color: #fff;
}

.slider-active .slick-arrow .l-a,
.slider-active .slick-arrow .r-a {
	width: 54px;
	height: 54px;
	box-shadow: none;
	line-height: 50px;
	bottom: 50%;
	transform: translateY(-50%);
	background: transparent;
	border: 2px solid #6c63ff;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
}

.slider-active .slick-arrow .l-a {
	left: 56px;
}

.slider-active .slick-arrow .r-a {
	right: 56px;
}

.slider-active .slick-arrow .l-a:hover,
.slider-active .slick-arrow .r-a:hover {
	background: #6c63ff;
	color: #fff;
}

/* 2. header
--------------------------------------------------- */
.transparent-header {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	z-index: 22;
	transition: .5s;
	-webkit-transition: .5s;
	-moz-transition: .5s;
	-ms-transition: .5s;
	-o-transition: .5s;
}

.body-overlay {
	background-color: rgba(0, 0, 0, 0.5);
	height: 100%;
	width: 100%;
	position: fixed;
	top: 0;
	z-index: 999;
	left: 0;
	opacity: 0;
	visibility: hidden;
	transition: all .5s ease-out;
	-webkit-transition: all .5s ease-out;
	-moz-transition: all .5s ease-out;
	-ms-transition: all .5s ease-out;
	-o-transition: all .5s ease-out;
}

.body-overlay.opened {
	opacity: 1;
	visibility: visible;
}

.sticky-menu {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 22;
	width: 100%;
	z-index: 99;
	transition: .3s;
	-webkit-transition: .3s;
	-moz-transition: .3s;
	-ms-transition: .3s;
	-o-transition: .3s;
}

.sticky-menu .header {
	/* background: rgba(28, 77, 48, 0.95); */
	background: rgba(4, 65, 34, 0.96);
	-webkit-box-shadow: 0 8px 4px -7px rgba(115, 115, 115, 0.3);
	-moz-box-shadow: 0 8px 4px -7px rgba(115, 115, 115, 0.3);
	box-shadow: 0 8px 4px -7px rgba(115, 115, 115, 0.3);
	transition: .5s;
	-webkit-transition: .5s;
	-moz-transition: .5s;
	-ms-transition: .5s;
	-o-transition: .5s;
}

.sticky-menu .logo img {
	max-width: 90%;
}

.sticky-menu .logo {
	padding: 15px 0;
}

.sticky-menu .main-menu ul li>a {
	padding: 20px 0;
}

.sticky-menu .main-menu ul li>a::before,
.sticky-menu .main-menu ul li.active a::before {
	bottom: 24px;
}

.main-menu ul li {
	display: inline-block;
	margin-left: 30px;
	position: relative;
}

.main-menu ul li.active>a::before {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 36px;
	margin: auto;
	width: 30px;
	height: 3px;
	background-color: currentColor;
}

.main-menu ul li>a {
	color: #fff;
	font-size: 16px;
	display: inline-block;
	text-transform: capitalize;
	padding: 45px 0;
	position: relative;
}

.main-menu ul li:hover>a,
.main-menu ul li.active a,
.mean-container .mean-nav ul li a:hover {
	color: #fff;
}

.mean-container .mean-nav ul li a {
	color: #222 !important;
}

.sticky-menu .main-menu ul li>a {
	color: #fff;
}

.sticky-menu .main-menu ul li.active>a::before {
	bottom: 10px;
}

.logopic {
	width: 100%;
}

/* .logopic2 {
	display: none;
}

.sticky-menu .logopic2 {
	display: block !important;
}

.sticky-menu .logopic {
	display: none !important;
} */


/* 3. slider
-------------------------------------------------------------- */
.slider-height1,
.slider3-bg .slider-height1 {
	height: 1070px;
}

.slider-content span {
	font-size: 24px;
	line-height: 2;
}

.slider-content h1 {
	font-size: 60px;
}

.slider-content p {
	font-size: 24px;
	line-height: 1.4;
}

.slider-dotted {
	z-index: -1;
	left: -117px;
	top: -92px;
}

.slider-img1 {
	position: absolute;
	left: 42px;
	right: 0;
	top: 2px;
	width: 125%;
	z-index: 1;
}

.slider-bg {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: -1;
}

/* home4 */
.slider4-bg {
	background: #4741af;
}

.slider-height4,
.slider5-bg,
.slider6-bg,
.slider2-bg {
	min-height: 1080px;
}

.slider-height4 .slider-content h1,
.slider5-bg .slider-content h1,
.slider3-bg .slider-content h1,
.slider2-bg .slider-content h1 {
	font-size: 72px;
	line-height: 1.23;
}

.slider-height4 .slider-img img {
	border-radius: 10px;
}

/* home5 */
.overly::before,
.overly4::before,
.overly9::before {
	position: absolute;
	content: "";
	background: #000;
	opacity: 0.549;
	width: 100%;
	height: 100%;
}

.overly9::before {
	opacity: 0.8;
}

.slider-arrow {
	bottom: 11%;
}

.slider-arrow-btn {
	width: 22px;
	height: 35px;
	border: 2px solid #fff;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
}

.slider-arrow-btn::before {
	position: absolute;
	content: "";
	width: 2px;
	height: 6px;
	background: #fff;
	top: 5px;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
}

/* home6 */
#background-video {
	object-fit: cover;
}

.overly4::before {
	opacity: 0.4
}

.slider6-bg .slider-content h1 {
	font-size: 120px;
	line-height: 1.1;
}

/* 4. about area
------------------------------------------------------------- */
.title h3 {
	font-size: 48px;
	line-height: 1.25;
}

.title .sub-heading {
	font-size: 24px;
	line-height: 2;
	margin-bottom: 0;
}

.about-text li {
	width: 50%;
}

.about-text p {
	font-size: 18px;
	line-height: 1.55;
	word-wrap: break-word;
	word-break: break-all;
}

.about-img {
	margin-left: -340px;
	margin-right: 50px;
}

/* 5. feature area
------------------------------------------------------------- */
.feature-img {
	margin-left: -240px;
}

.feature-product-wrapper-bg .f-bg-img {
	background-position: top;
	background-repeat: no-repeat;
	background-size: cover;
	min-width: 100%
}

.feature-icon {
	font-size: 23px;
}

.feature-area2 .service-img {
	margin-right: -138px;
}

/* 6. service area
------------------------------------------------------------- */
.ser-icon span {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	line-height: 60px;
	font-size: 21px;
	margin-bottom: 20px;
}

.service-img-bg {
	width: 624px;
	height: 624px;
	border-radius: 50%;
	background-color: rgb(243, 249, 251);
}

.service-img-bg img {
	margin-top: -114px;
}

.service-area .ser-icon {
	transition: .3s;
	-webkit-transition: .3s;
	-moz-transition: .3s;
	-ms-transition: .3s;
	-o-transition: .3s;
}

.service-area .single-service:hover .ser-icon {
	margin-left: 30px
}


/* 7. product area
-------------------------------------------------------------- */
.product-bg {
	position: absolute;
	right: -210px;
	bottom: -180px;
	background-position: 0% 0%;
	background-repeat: no-repeat;
	background-size: 100% auto;
}

.title.text-center p {
	font-size: 21px;
}

.single-product {
	box-shadow: 0px 3px 24px 3px rgba(7, 7, 7, 0.04);
	border-bottom: 3px solid #6c63ff;
	transition: .3s;
	-webkit-transition: .3s;
	-moz-transition: .3s;
	-ms-transition: .3s;
	-o-transition: .3s;
}

.single-product:hover {
	box-shadow: 0px 3px 30px 3px rgba(7, 7, 7, 0.07);
	margin-top: -10px;
}

/* 8. team area
-------------------------------------------------------------- */
.team-content p {
	font-size: 16px;
}

.single-team {
	overflow: hidden;
}

.team-img {
	transition: .5s;
	-webkit-transition: .5s;
	-moz-transition: .5s;
	-ms-transition: .5s;
	-o-transition: .5s;
}

.single-team:hover .team-img {
	transform: scale(1.1);
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-ms-transform: scale(1.1);
	-o-transform: scale(1.1);
}

.team-img::before {
	content: "";
	position: absolute;
	background: rgba(108, 99, 255, .75);
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	opacity: 0;
	visibility: hidden;
	transition: .5s;
	-webkit-transition: .5s;
	-moz-transition: .5s;
	-ms-transition: .5s;
	-o-transition: .5s;
}

.team-img:hover.team-img::before {
	visibility: visible;
	opacity: 1;
}

.team-content-left {
	left: -105px;
	bottom: 34px;
	-webkit-transform: rotate(-90deg);
	-moz-transform: rotate(-90deg);
	-ms-transform: rotate(-90deg);
	-o-transform: rotate(-90deg);
	transform: rotate(-90deg);
}

.team-content-right {
	top: 32px;
	right: -103px;
	-webkit-transform: rotate(90deg);
	-moz-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	-o-transform: rotate(90deg);
	transform: rotate(90deg);
}

.team-img .social-link {
	top: 54%;
	left: 0;
	right: 0;
	transition: .4s;
	-webkit-transition: .4s;
	-moz-transition: .4s;
	-ms-transition: .4s;
	-o-transition: .4s;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
}

.single-team:hover .social-link {
	visibility: visible;
	top: 50%;
	opacity: 1;
}

.team-img .social-link li {
	padding: 0 2px;
}

.team-img .social-link li a {
	width: 40px;
	height: 40px;
	line-height: 40px;
	background: #fff;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
}

.team-img .social-link li a:hover {
	background: #1877F2;
	color: #fff;
}

/* 9. testimonial area
-------------------------------------------------------------- */
.testimonial-persons {
	margin-left: -175px;
	min-height: 470px;
}

.single-person {
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
	transition: .3s;
	-webkit-transition: .3s;
	-moz-transition: .3s;
	-ms-transition: .3s;
	-o-transition: .3s;
}

.single-person:hover {
	transform: scale(1.1);
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-ms-transform: scale(1.1);
	-o-transform: scale(1.1);
}

.single-person1 {
	left: 40px;
	top: 0;
}

.single-person2 {
	top: 55px;
	left: 200px;
}

.single-person3 {
	top: 162px;
	left: 0;
}

.single-person4 {
	left: 145px;
	bottom: 120px;
}

.single-person5 {
	right: 52px;
	bottom: 150px;
}

.single-person6 {
	bottom: 8px;
	left: 10px;
}

.single-person7 {
	right: 115px;
	bottom: 0;
}

.testi-avatar img {
	border-radius: 50%;
}

.testimonial-text h4 {
	font-size: 48px;
}

.avatar-info p {
	font-size: 16px;
}




/* 11. brand area
-------------------------------------------------------------- */
.brand-height {
	margin-bottom: -162px;
}

.brand-active li {
	text-align: center;
}

.single-brand img {
	transition: .5s;
	-webkit-transition: .5s;
	-moz-transition: .5s;
	-ms-transition: .5s;
	-o-transition: .5s;
}

.single-brand img:hover {
	filter: invert(0) sepia(0) hue-rotate(0deg) brightness(0.4);
	-webkit-filter: invert(0) sepia(0) hue-rotate(0deg) brightness(.2);
}

/* 12. blog area
-------------------------------------------------------------- */
.blog-bg .title p {
	font-size: 21px;
	line-height: 1.6;
}

.blog-bg {
	padding-top: 410px;
	background-position: bottom center;
	background-repeat: no-repeat;
	background-size: cover;
}

.blog-img {
	overflow: hidden;
}

.single-blog:hover img {
	transform: scale(1.1);
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-ms-transform: scale(1.1);
	-o-transform: scale(1.1);
}

.single-blog-content {
	box-shadow: 0px 5px 15px 0px rgba(7, 7, 7, 0.05);
}

.single-blog {
	transition: .5s;
	-webkit-transition: .5s;
	-moz-transition: .5s;
	-ms-transition: .5s;
	-o-transition: .5s;
}

.single-blog:hover {
	box-shadow: 0px 5px 15px 0px rgba(7, 7, 7, 0.06);
}

.blog-bg .title h3 {
	font-size: 48px;
	line-height: 1.25;
}

.single-blog-content h6 {
	font-size: 18px;
	font-weight: 700;
}

.single-blog-content h6 a:hover {
	color: #6c63ff;
}

/* modal */
.modal-dialog {
	max-width: 1100px;
	margin: 0 auto;
}

.modal-content h2 {
	font-size: 36px;
	padding: 50px 80px 20px 80px;
	line-height: 1.32;
}

.pro-modal-footer h6 {
	font-size: 16px;
}

.meta-wrapper {
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
}

.item-meta li {
	padding-bottom: 16px;
}


/* 14. extra info css
-------------------------------------------------------------- */
#scroll a {
	position: fixed;
	font-size: 22px;
	width: 48px;
	height: 48px;
	line-height: 47px;
	right: -1px;
	bottom: 60px;
	cursor: pointer;
	z-index: 11;
	-webkit-transition: all 0.3s ease-out 0s;
	-moz-transition: all 0.3s ease-out 0s;
	-ms-transition: all 0.3s ease-out 0s;
	-o-transition: all 0.3s ease-out 0s;
	transition: all 0.3s ease-out 0s;
	border-radius: 5px;
	opacity: 0;
	visibility: hidden;
}

#scroll:hover {
	opacity: .9;
}

body:hover #scroll a {
	opacity: 1;
	visibility: visible;
}

/* .side-mobile-menu start*/
.side-mobile-menu {
	width: 340px;
	position: fixed;
	left: -340px;
	top: 0;
	z-index: 9999;
	height: 100%;
	transition: all .3s ease-out;
	overflow: scroll;
	-webkit-transition: all .3s ease-out;
	-moz-transition: all .3s ease-out;
	-ms-transition: all .3s ease-out;
	-o-transition: all .3s ease-out;
}

.side-mobile-menu.open-menubar {
	left: 0;
}

.close-icon span {
	font-size: 20px;
	color: #fff;
	background: #017a5e;
	width: 36px;
	height: 35px;
	display: inline-block;
	line-height: 35px;
	text-align: center;
	border-radius: 30px;
	box-shadow: 0px 6px 30px 0px rgba(7, 7, 7, 0.07);
	transition: .3s;
	-webkit-transition: .3s;
	-moz-transition: .3s;
	-ms-transition: .3s;
	-o-transition: .3s;
}

.close-icon span:hover {
	box-shadow: 0px 6px 30px 0px rgba(7, 7, 7, 0.09);
	opacity: .8;
}

.mobile-menubar {
	font-size: 22px;
}

/* .side-mobile-menu end*/
/* slider shape */
.shape,
.slider4-shape {
	position: absolute;
	opacity: 0.7;
}

.shape.shape-1 {
	right: 160px;
	top: 21%;
}

.shape.shape-2 {
	right: 31px;
	top: 74px;
	right: 2.8%;
	top: 13%;
}

.shape.shape-3 {
	left: 5%;
	bottom: 20%;
}

.shape.shape-4 {
	right: 2.7%;
	bottom: 5.7%;
}

.shape.shape-5 {
	right: 8%;
	top: 15%;
}

.shape.shape-6 {
	right: -30px;
	top: 38.5%;
}

.shape.shape-7 {
	left: -5px;
	top: 17.5%;
}

.shape.shape-8 {
	right: 8.4%;
	bottom: 16%;
}

.shape.shape-9 {
	bottom: 22%;
	right: 43%;
}

.shape.shape-10 {
	left: 41%;
	top: 27%;
}

.shape.shape-11 {
	top: 18%;
	left: 48%;
}

.shape.shape-12 {
	left: 2.8%;
	bottom: 51%;
}

.shape.shape-13 {
	right: 38%;
	bottom: 33.5%;
}

.shape.shape-14 {
	left: 11%;
	top: 17%;
}

/* home4 */
.shape3-4 .slider4-shape.shape-1 {
	right: 10px;
	top: 110px;
}

.shape3-4 .slider4-shape.shape-3 {
	right: 5%;
	bottom: 35%;
}

.shape3-4 .slider4-shape.shape-4 {
	left: 55%;
	bottom: 16%;
}

.shape3-4 .slider4-shape.shape-5 {
	left: 47%;
	bottom: 28%;
}

.shape3-4 .slider4-shape.shape-6 {
	left: 11%;
	bottom: 140px;
}

.shape3-4 .slider4-shape.shape-8 {
	left: 10%;
	top: 28%;
}

.shape3-4 .slider4-shape.shape-9 {
	top: 22%;
	left: 44%;
}

.shape3-4 .slider4-shape.shape-10 {
	left: 52%;
	top: 38%;
}

.shape3-4 .slider4-shape.shape-11 {
	top: 31%;
	right: 11%;
}

.slider-left-dotted {
	top: 28%;
}

.slider-right-dotted {
	right: -30px;
	bottom: -62px;
}

.slider4-shape.shape-123 {
	right: 150px;
	bottom: 260px;
}

.slider4-shape.shape-113 {
	left: 10%;
	top: 30%;
}

.slider3-bg .shape3-4 .slider4-shape.shape-10 {
	left: 22%;
	top: 16%;
}

.slider3-right-dotted {
	right: 50px;
	bottom: 50px;
}

.slider3-left-dotted {
	top: 24%;
}


.top-banner {
	position: relative;
}

.top-banner-txt .container {
	position: absolute;
	z-index: 20;
	top: 0;
	left: 0;
	right: 0;
	height: 100%;
	margin: auto;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
}

.top-banner-txt .container img {
	margin: 6px 0;
}

.pic-title {
	margin-bottom: 20px;
	padding-bottom: 20px;
	border-bottom: 1px solid #f0f0f0;
}

.navmore {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 160px;
	height: 50px;
	border: 1px solid #dcdcdc;
	border-radius: 100px;
	color: #737373;
}

.navmore::after {
	content: '';
	margin-left: 5px;
	width: 14px;
	height: 14px;
	background: url(../image/icon-10.png) center/12px 12px no-repeat;
}

.navmore:hover {
	border: 1px solid #017a5e;
	color: #017a5e;
	background-color: rgba(0, 151, 116, 0.1);
}

.aboutcon {
	padding: 0 10px;
}

.aboutcon-pic {
	position: relative;
	top: 50px;
	width: 100%;
	height: auto;
	align-self: flex-start;
	box-shadow: -12px -12px 0 0 rgba(0, 0, 0, 0.06);
}

.aboutwh {
	margin: 60px 12px 40px;
	border: 1px solid #ebebeb;
}

.about-us-en {
	margin-bottom: 30px;
	padding: 20px;
	background-color: rgba(0, 132, 101, 0.06);
	line-height: 35px;
	text-align: justify;
	color: #424242;
}

.aboutwh>div {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 15px;
	font-size: 14px;
	line-height: 1.5;
	color: #303030;
	cursor: pointer;
}

.aboutwh>div:not(:last-child) {
	border-right: 1px solid #ebebeb;
}

.aboutwh>div .whpic {
	margin-right: 10px;
	flex: none !important;
	width: 80px;
	height: 80px;
}

.about-t1 {
	margin-bottom: 6px;
	color: #474747;
	font-weight: bold;
	font-size: 17px;
}

.about-t2 {
	color: #787878;
	font-size: 13px;
}

.product {
	position: relative;
	margin: 30px 0 0;
	padding: 80px 0 160px;
	background: url(../../static/image/bj-pic3.jpg) center/cover no-repeat;
}


.product .container {
	padding: 0;
}

.product-title {
	position: absolute;
	z-index: 50;
	top: 80px;
	left: 0;
	right: 0;
	margin: auto;
}

.product-title>div {
	padding: 0 70px 0 0;
}

.product-info {
	margin-top: 30px;
}

.product-info .swiper-slide {
	width: 100%;
}

.product-info .swiper-button-next,
.product-info .swiper-button-prev {
	width: 40px;
	height: 40px;
	border-radius: 100%;
	color: #009774;
	font-size: 20px;
	line-height: 40px;
	text-align: center;
	background-color: #fff;
	background-image: none;
}

.cp-pic {
	display: flex;
	justify-content: center;
	max-height: 450px;
}

.cp-pic img {
	width: auto;
	height: 100%;
}

.cp-txt {
	min-height: 240px;
	padding: 30px;
	font-size: 15px;
	text-align: justify;
	line-height: 25px;
	color: #4f4f4f;
	background-color: rgba(2555, 255, 255, 0.8);
}

.cp-name {
	margin-bottom: 15px;
	color: #0b8468;
	font-size: 18px;
}

.cp-name span {
	margin-left: 5px;
	font-size: 13px;
}

.cp-more {
	margin-top: 30px;
	display: flex;
	justify-content: flex-end;
}

.xmgh-con {
	margin-top: -100px;
	justify-content: space-between;
}

.xmgh-con>div {
	flex: auto;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	margin-bottom: 1px;
	padding: 60px 0;
	color: #606060;
	background-color: #fff;
	position: relative;
	cursor: pointer;
}

.xmgh-con>div:not(:last-child) {
	border-right: 1px solid #f8f8f8;
}

.xmgh-txt {
	margin-top: 20px;
	font-size: 18px;
}

.xmgh-con .ficon {
	font-size: 50px;
	font-weight: normal;
	color: rgba(1, 122, 94, 0.1);
}

.xmgh-con .ficon img {
	width: 90px;
	height: 90px;
	object-fit: cover;
	border: 3px solid currentColor;
	border-radius: 100%;
}


.xmgh-con>div:hover .ficon {
	color: #017a5e;
}

.xmgh-con>div:hover .xmgh-txt {
	color: #505050;
	font-weight: bold;
}

.xmgh-con>div:hover::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 5px;
	background-color: #009774;
}

.news-title {
	margin-top: 80px;
	padding-bottom: 20px;
	border-bottom: 1px solid #e6e6e6;
}

.news-con {
	margin-top: 25px;
	margin-bottom: 25px;
}

.news-con>div {
	margin-right: 15px;
	margin-bottom: 15px;
	padding: 8px;
	background-color: #fff;
	cursor: pointer;
}


.news-con>div:hover .n-title {
	color: #017a5e;
}

.news-con>div:last-child {
	margin-right: 0;
}

.news-pic {
	width: 100%;
	height: 15vw;
	min-height: 200px;
	object-fit: cover;
}

.news-wz {
	padding: 10px;
}

.n-title {
	margin-top: 10px;
	font-weight: bold;
	font-size: 16px;
}

.n-sub {
	margin-top: 6px;
	height: 60px;
}

.n-sub p {
	font-size: 14px;
	line-height: 20px;
	color: #888;
	text-align: justify;
}

.n-time-more {
	font-size: 13px;
	color: #646464;
}

.n-time-more .ficon:hover {
	color: #009774;
}

.contact {
	height: 260px;
	background: url(../../static/image/bj-pic2.jpg) center/cover no-repeat;
}

.contact-txt {
	font-size: 30px;
	font-weight: normal;
	letter-spacing: 5px;
	color: #ffffff;
}

.contact-btn {
	margin-top: 20px;
	padding: 0 30px;
	height: 50px;
	line-height: 50px;
	font-size: 22px;
	color: #118a6e;
	border-radius: 100px;
	border: 1px solid #fff;
	background-color: #fff;
	cursor: pointer;
}


footer {
	color: #ffffff;
	background-color: #012612;
}

.bottom-menu-m {
	padding: 30px 0 20px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.b-logo {
	margin-bottom: 20px;
	width: 100px;
}

.ewm-con {
	display: flex;
	text-align: center;
}

.ewm-txt {
	margin-top: 5px;
	font-size: 13px;
}

.bottom-nav>div {
	margin-right: 60px;
	margin-bottom: 30px;
	font-size: 13px;
	line-height: 23px;
	cursor: pointer;
}

.bottom-nav>div>div:first-child {
	margin-bottom: 10px;
	font-size: 15px;
	color: #979797;
	cursor: auto;
}

.b-zpheadline {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 20px;
}

.b-zpheadline span {
	flex: auto;
}

.b-zplist>div {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 15px;
	line-height: 36px;
	font-size: 12px;
	background-color: #013116;
	cursor: pointer;
}

.b-zplist>div:nth-child(even) {
	background-color: #002b13;
}

.b-zptime {
	flex: none;
	margin-left: 30px;
}

.bottom-menu-t {
	min-height: 55px;
	padding: 10px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.bottom-menu-t>div {
	display: flex;
	align-items: center;
	font-size: 14px;
}

.bottom-menu-b {
	padding: 10px 0;
	font-size: 13px;
	color: #b1b0b0;
}

/* 走进中铅 */

.about-gspic {
	background-color: #fff;
	padding: 10px;
}

.about-gspic img {
	width: 100%;
}

.aboutus {
	margin: 40px 0 0;
}

.aboutus>div {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 15px 40px;
	font-size: 14px;
	color: #303030;
	background-color: #f0f0f0;
	filter: grayscale(100);
}

.aboutus>div.active {
	background-color: #fff;
	filter: grayscale(0);
}

.aboutus>div:not(:last-child) {
	border-right: 1px solid #ebebeb;
}

.aboutus>div .whpic {
	margin-right: 10px;
	flex: none !important;
	width: 80px;
	height: 80px;
}


.aboutus>div .about-t1 {
	margin-bottom: 6px;
	color: #7f7f7f;
	font-size: 17px;
	font-weight: normal;
}

.aboutus>div.active .about-t1 {
	color: #474747;
	font-weight: bold;
}

.aboutus>div .about-t2 {
	color: #787878;
	font-size: 12px;
}

.aboutus-con {
	min-height: 300px;
	padding: 20px;
	background-color: #fff;
}

/* 产品橱窗 */
.product-con {
	margin-top: 20px;
	/* background-color: #fff; */
}

.qyzz-pic img {
	margin-bottom: 20px;
}

.qyzz-pic img.col-20 {
	width: 20%;
	padding: 15px;
}

.qyzz-title {
	margin-bottom: 15px;
	position: relative;
	padding-left: 35px;
}

.qyzz-title::before {
	content: '';
	position: absolute;
	left: 0;
	width: 20px;
	height: 100%;
	background-color: #017a5e;
	border-right: 6px solid #00ab5b;
	box-shadow: 5px 0 0 0 rgba(203, 230, 211, 1.0);
}

.qyzz-t {
	font-size: 20px;
	font-weight: bold;
	color: #303030;
}

.qyzz-t-en {
	font-size: 13px;
	color: #888;
}

.qyzz-con p {
	font-size: 15px;
}

.col-wh {
	margin: 60px 0;
}

@media screen and (min-width: 768px) {
	.aboutus-con>div {
		padding: 30px;
	}
}

.product-l {
	position: sticky;
	z-index: 100;
	top: 100px;
	left: 0;
}

.product-l>div {
	display: flex;
	align-items: center;
	margin-bottom: 1px;
	height: 75px;
	padding-left: 40px;
	background-color: #fff;
	font-size: 16px;
	color: #a6a6a6;
	position: relative;
	cursor: pointer;
}

.product-l>div img {
	flex: none;
	margin-right: 15px;
	width: 40px;
	height: 40px;
	font-size: 30px;
	object-fit: cover;
	border-radius: 100%;
	border: 1px solid #f0f0f0;
	filter: grayscale(100);
}

.product-l>div.active {
	color: #323232;
	background-image: linear-gradient(90deg, rgba(0, 154, 120, 0.1) 0%, rgba(0, 154, 120, 0.02) 100%);
}

.product-l>div.active img {
	filter: grayscale(0);
}

.product-l>div.active .pro-txt {
	font-weight: bold;
}

.product-l>div.active::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 5px;
	background-color: #009a78;
}

.product-l>div.active .ficon {
	color: #009a78;
}

.product-r {
	min-height: 456px;
	background-color: #fff;
}

.product-r>div {
	padding: 25px 0;
}

.pro-item>div {
	margin-bottom: 20px;
}

.pro-tw {
	height: 100%;
	margin: 0 10px;
	border: 1px solid #f5f5f5;
	border-radius: 8px;
	color: #818181;
	overflow: hidden;
	cursor: pointer;
}

.pro-tw:hover {
	color: #151515;
	box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
}

.pro-tw:hover .pro-showmore {
	color: #fff;
	font-size: 13px;
	border-radius: 100px;
	border: 1px solid currentColor;
	background-color: #009774;
}

.pro-pic {
	width: 100%;
	object-fit: cover;
}

.pro-name {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	padding: 15px;
	font-size: 17px;
}

.pro-showmore {
	flex: none;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-left: 15px;
	width: 26px;
	height: 26px;
	color: #009774;
	font-size: 13px;
	border-radius: 100px;
	border: 1px solid currentColor;
}

/* 案例展示 */
.project-con {
	margin-top: 25px;
	margin-bottom: 25px;
}

.project-list {
	margin-bottom: 30px;
	padding: 8px;
	background-color: #fff;
}

.project-pic {
	width: 100%;
	/* 	height: 15vw;
	min-height: 200px; */
	object-fit: cover;
}

.project-wz {
	padding: 10px;
}

.proj-title {
	margin-top: 10px;
	font-weight: bold;
	font-size: 16px;
}

.proj-sub {
	margin-top: 6px;
	height: 60px;
}

.proj-sub p {
	font-size: 14px;
	line-height: 20px;
	color: #888;
	text-align: justify;
}

.proj-time-more {
	font-size: 13px;
	color: #646464;
}

.project-list:hover .proj-title,
.project-list:hover .ficon {
	color: #07ac88 !important;
}

/* 新闻资讯 */
.news-item {
	background-color: #fff;
}

.news-tab {
	margin-bottom: 20px;
	padding: 10px 20px;
	height: 80px;
	font-size: 18px;
	color: #888;
	border-bottom: 1px solid #f5f5f5;
}

.news-tab>div {
	position: relative;
	margin-right: 60px;

}

.news-tab>div.active {
	color: #3f3f3f;
	font-weight: bold;
}

.news-tab>div.active::before {
	content: '';
	position: absolute;
	bottom: -15px;
	left: 0;
	right: 0;
	margin: auto;
	width: 30px;
	height: 5px;
	background-color: #009774;
}

.news-tuwen {
	display: flex;
	margin-bottom: 15px;
	padding: 15px;
	background-color: #f8f8f8;
}

.newtw-pic {
	flex: none;
	margin-right: 20px;
	width: 300px;
	height: 220px;
	object-fit: cover;
}

.newtw-wz {
	align-self: stretch;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.newtw-title {
	font-size: 22px;
	font-weight: bold;
}

.newtw-sub {
	flex: auto;
	margin-top: 12px;
}

.newtw-sub p {
	font-size: 16px;
	line-height: 24px;
	color: #888;
}

.news-tm {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;

}

.newtw-time {
	color: #888;
}

.newtw-more {
	display: flex;
	padding: 6px 14px;
	color: #009774;
	font-size: 14px;
	border: 1px solid currentColor;
	background-color: #fff;
	border-radius: 100px;
}

.news-tuwen:hover {
	background-color: rgba(1, 159, 124, 0.05);
}

.news-tuwen:hover .newtw-title {
	color: #008465;
}

.news-tuwen:hover .newtw-more {
	color: #fff;
	border: 1px solid #008465;
	background-color: #008465;
}


/* 人才招聘  */
.recruit-con {
	margin-top: 25px;
	margin-bottom: 25px;
}

.recruit-con>div {
	margin-bottom: 30px;
}

.recruit-list {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100%;
	padding: 15px;
	border-top: 5px solid #009774;
	background-color: #fff;
}

.recruit-title {
	flex: none;
	margin: 10px 0 20px;
	font-weight: bold;
	font-size: 18px;
}

.recruit-sub {
	flex: auto;
	max-height: 180px;
	overflow: hidden;
	position: relative;
}

.recruit-sub::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 90px;
	background-image: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}

.recruit-sub p {
	font-size: 14px;
	line-height: 24px;
	color: #999;
	text-align: justify;
}

.recruit-bt {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 20px;
	padding-top: 15px;
	border-top: 1px dashed #f0f0f0;
	font-size: 14px;
	color: #888;
}

/* 联系我们 */
.contact-con {
	position: relative;
	background-color: #fff;
}

.contact-con .left_bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 45%;
	height: 100%;
	background-color: #f0f0f0;
}

.lxwm-con,
.lxwm-fs {
	padding-top: 80px;
	padding-bottom: 50px;
}

.msgbox form {
	margin-top: 50px;
	width: 90%;
}

.msg-in {
	margin-bottom: 15px;
	position: relative;
}

.msg-in.bt::before {
	content: '*';
	position: absolute;
	left: -20px;
	top: 0;
	bottom: 0;
	margin: auto;
	line-height: 65px;
	color: #ff5500;
}

.msg-in input {
	width: 100%;
	height: 65px;
	padding: 0 15px;
	background-color: #fff;
	border: 0;
}

.msg-in textarea {
	width: 100%;
	min-height: 110px;
	padding: 15px;
	background-color: #fff;
	border: 0;
	resize: none;
}

.msgbox .msg-tj {
	margin-top: 50px;
	width: 100%;
	height: 65px;
	padding: 0 10px;
	color: #fff;
	background-color: #019f7c;
	border: 0;
}

.lxwm-fs {
	padding-left: 80px;
}

.lxwm-fs-1,
.lxwm-fs-2,
.lxwm-fs-3 {
	margin-top: 40px;
}

.lxwm-fs-3 {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	margin-top: 15px;
}

.dz-tel {
	font-size: 20px;
}

.lxwm-fs-2a {
	margin-top: 8px;
}

.map-show {
	margin-top: 10px;
	width: 100%;
	height: 300px;
	border: #ccc solid 1px;
	font-size: 13px;
}

.map-show img {
	max-width: none;
}

/* 内容详情 */
.right-contact {
	height: 100%;
	padding: 30px;
	background-color: #f8f8f8;
}

.wenzhang-con {
	min-height: 60vh;
	padding: 30px 10px;
}

.wenzhang-con .wz-title {
	font-size: 22px;
	font-weight: bold;
	color: #000;
}

.wenzhang-con .wz-sub {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 10px;
	font-size: 14px;
	color: #888
}

.wenzhang-con .wz-main {
	margin-top: 20px;
	padding: 30px 0;
	border-top: 1px solid #f0f0f0;
	font-size: 16px;
	line-height: 30px;
	text-align: justify;
}

.wenzhang-con .wz-main img {
	max-width: 100%;
}

#details-content p {
	margin: 0 !important;
}


.app-title {
	margin-top: 40px;
	padding-bottom: 20px;
	border-bottom: 1px solid #e6e6e6;
}

.app-main {
	margin: 20px -15px;
	padding: 30px 0;
	line-height: 32px;
	background-color: #fff;
}

.app-img {
	width: 70%;
	height: auto;
}