* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

html {
	line-height: 1.5;
	-webkit-text-size-adjust: 100%;
	-moz-tab-size: 4;
	-o-tab-size: 4;
	tab-size: 4;
	font-family: 'Microsoft YaHei', 'Helvetica Neue', Helvetica, Arial, sans-serif;
	font-feature-settings: normal;
	font-variation-settings: normal;
	-webkit-tap-highlight-color: transparent
}

body {
	line-height: inherit
}

a {
	color: #4d4948;
	text-decoration: none;
	outline: 0 !important;
}

h1,
h2,
h3 {
	font-weight: normal;
}

h1 {
	font-size: 36px;
}

@media all and (max-width:1280px) {
	h1 {
		font-size: 32px;
	}
}

@media all and (max-width:1024px) {
	h1 {
		font-size: 28px;
	}
}

@media all and (max-width:768px) {
	h1 {
		font-size: 24px;
	}
}

h2 {
	font-size: 24px;
}

@media all and (max-width:1280px) {
	h2 {
		font-size: 22px;
	}
}

@media all and (max-width:1024px) {
	h2 {
		font-size: 20px;
	}
}

@media all and (max-width:768px) {
	h2 {
		font-size: 18px;
	}
}

h3 {
	font-size: 20px;
}

@media all and (max-width:1280px) {
	h3 {
		font-size: 19px;
	}
}

@media all and (max-width:1024px) {
	h3 {
		font-size: 18px;
	}
}

@media all and (max-width:768px) {
	h3 {
		font-size: 17px;
	}
}

img {
	display: block;
	padding: 0;
	margin: 0;
	width: 100%;
	height: auto;
}

ul {
	list-style: none;
}

::selection {
	background: #efefef;
}

::-moz-selection {
	background: #efefef;
}

.dark {
	background-color: #000;
	color: #fff;
}

.dark a {
	color: #fff;
}

.light {
	background-color: #fff;
	color: #000;
}

.animateview {
	-webkit-transition: transform 0.8s, opacity 0.8s;
	transition: transform 0.8s, opacity 0.8s;
	-o-transition: transform 0.8s, opacity 0.8s;
	-ms-transition: transform 0.8s, opacity 0.8s;
	-moz-transition: transform 0.8s, opacity 0.8s;
	opacity: 0;
	transform: matrix3d(1, 0, 0, 0, 0, 1, 0.208378, 0, 0, -0.173648, 0.984808, 0, 0, 90, 0, 1);
}

.animateview.visibile {
	opacity: 1;
	transform: matrix(1, 0, 0, 1, 0, 0);
	transform-origin: 50% 50% 0px;
}

.grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	width: 100%;
	height: 100%;
	gap: 160px !important;
}

@media all and (max-width:1280px) {
	.grid {
		gap: 118px !important;
	}
}

@media all and (max-width:1024px) {
	.grid {
		gap: 120px !important;
	}
}

@media all and (max-width:768px) {
	.grid {
		display: flex;
		flex-direction: column;
		gap: 30px !important;
	}
}

.repeat {
	grid-template-columns: repeat(16, 1fr);
}

.flex-col {
	display: flex;
	flex-direction: column;
	height: 100%;
}

.grap {
	gap: 40px;
}

.row {
	flex-direction: row;
}

header {
	padding: 24px 70px;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 999;
	width: 100%;
	text-align: center;
	background-color: #000;
	-webkit-transition: background 0.5s;
	-moz-transition: background 0.5s;
	-ms-transition: background 0.5s;
	-o-transition: background 0.5s;
	transition: background 0.5s;
}

@media all and (max-width:1280px) {
	header {
		padding: 24px 50px;
	}
}

@media all and (max-width:1024px) {
	header {
		padding: 32px 30px;
	}
}

@media all and (max-width:768px) {
	header {
		padding: 26px 20px;
	}
}

.home header {
	background-color: transparent;
}

header.fixed {
	position: fixed;
	top: 0px;
}

header.fixed.hide {
	top: -160px;
	-webkit-transition: top 0.5s;
	-moz-transition: top 0.5s;
	-ms-transition: top 0.5s;
	-o-transition: top 0.5s;
	transition: top 0.5s;
}

header.fixed.display {
	background-color: #000;
	top: 0;
	-webkit-transition: top 0.5s;
	-moz-transition: top 0.5s;
	-ms-transition: top 0.5s;
	-o-transition: top 0.5s;
	transition: top 0.5s;
}

header .logo {
	position: absolute;
	left: 70px;
	top: 26px;
}

@media all and (max-width:1280px) {
	header .logo {
		left: 50px;
	}
}

@media (max-width: 1024px) {
	header .logo {
		left: 30px;
		top: 18px;
	}
}

@media (max-width: 768px) {
	header .logo {
		left: 12px;
		top: 12px;
	}
}

header .logo a {
	display: block;
	width: 108px;
	background-image: url(../image/svg/logo.svg);
	background-repeat: no-repeat;
	background-position: left top;
	background-size: auto 100%;
}

@media (max-width: 1024px) {
	header .logo a {
		width: 98px;
	}
}

@media (max-width: 768px) {
	header .logo a {
		width: 88px;
	}
}

header .menu {
	display: inline-block;
}

@media all and (max-width:1024px) {
	header .menu {
		display: none;
	}
}

.menu .inner {
	opacity: 1;
	-webkit-transition: opacity 0.5s;
	-moz-transition: opacity 0.5s;
	-ms-transition: opacity 0.5s;
	-o-transition: opacity 0.5s;
	transition: opacity 0.5s;
}

.menu .inner ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.menu .inner ul li {
	display: block;
	margin-left: 32px;
	height: 32px;
	text-align: center;
	float: left;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
}

.menu .inner ul li a {
	font-family: "Alibaba-PuHuiTi-Medium";
	position: relative;
	height: 32px;
	display: block;
	color: #ccc;
	text-decoration: none;
	font-size: 17px;
	line-height: 32px;
	overflow: hidden;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
}

.menu .inner ul li:hover,
.menu .inner ul li.active {}

.menu .inner ul li:hover a,
.menu .inner ul li.active a {
	color: #fff;
}

.goback {
	width: 178px;
	position: absolute;
	right: 70px;
	top: 24px;
}

@media all and (max-width:1280px) {
	.goback {
		right: 50px;
		top: 24px;
	}
}

@media all and (max-width:1024px) {
	.goback {
		width: 158px;
		top: 18px;
		right: 88px;
	}
}

@media all and (max-width:768px) {
	.goback {
		display: none;
	}
}

.handle {
	display: none;
}

@media all and (max-width:1024px) {
	.handle {
		display: block;
		position: absolute;
		top: 18px;
		right: 3%;
		width: 30px;
		height: 30px;
		-webkit-transition: all 0.5s;
		-moz-transition: all 0.5s;
		-ms-transition: all 0.5s;
		-o-transition: all 0.5s;
		transition: all 0.5s;
		transform: translate(0, 0);
	}
}

@media all and (max-width:768px) {
	.handle {
		top: 12px;
	}
}

.handle span {
	width: 26px;
	height: 2px;
	background: #ffffff;
	position: absolute;
	right: 0;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
	transform: rotate(0);
}

.handle span:nth-child(1) {
	top: 9px;
}

.click.handle span:nth-child(1) {
	transform: rotate(45deg);
	top: 12px;
}

.handle span:nth-child(2) {
	top: 18px;
}

.click.handle span:nth-child(2) {
	transform: rotate(-45deg);
	top: 12px;
}

.nav-mobile {
	display: none;
	position: fixed;
	top: 0px;
	right: 0px;
	width: 100%;
	height: 100%;
	padding: 70px 0 0 15px;
	text-align: left;
	background-color: #000;

}

@media all and (max-width:1024px) {
	.nav-mobile {
		display: block;
		-webkit-transform: translate3d(100%, 0, 0);
		-ms-transform: translate3d(100%, 0, 0);
		-o-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0);
		-webkit-transition: -webkit-transform .2s ease-in-out;
		-o-transition: -o-transform .2s ease-in-out;
		transition: transform .2s ease-in-out;
	}

	.open .nav-mobile {
		-webkit-transform: translate3d(0, 0, 0);
		-ms-transform: translate3d(0, 0, 0);
		-o-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

.nav-mobile ul {
	list-style: none;
	margin: 0;
}

.nav-mobile ul a {
	display: block;
	font-size: 20px;
	line-height: 2;
	color: #fff;
}

.nav-mobile ul ul a {
	font-size: 15px;
	line-height: 30px;
}

@media all and (max-width:1024px) {
	.content {
		-webkit-transition: -webkit-transform .2s ease-in-out;
		-o-transition: -o-transform .2s ease-in-out;
		transition: transform .2s ease-in-out;
		-webkit-transform: translate3d(0, 0, 0);
		-ms-transform: translate3d(0, 0, 0);
		-o-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}

	.open .content {
		-webkit-transform: translate3d(-100%, 0, 0);
		-ms-transform: translate3d(-100%, 0, 0);
		-o-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0);
	}
}

.container {
	padding: 0 70px;
}

@media all and (max-width:1280px) {
	.container {
		padding: 0 50px;
	}
}

@media all and (max-width:1024px) {
	.container {
		padding: 0 30px;
	}
}

@media all and (max-width:768px) {
	.container {
		padding: 0 20px;
	}
}

@media all and (max-width:520px) {
	.container {
		padding: 0 10px;
	}
}

.max-container {
	padding: 0 70px;
}

footer {
	padding: 50px 0;
	background-color: #000;
	color: #fff;
	font-size: 20px;
	line-height: 36px;
}

@media all and (max-width:660px) {
	footer {
		font-size: 16px;
		line-height: 28px;

	}
}

footer .container {
	padding: 0 140px;
}

@media all and (max-width:1280px) {
	footer .container {
		padding: 0 50px;
	}
}

@media all and (max-width:1024px) {
	footer .container {
		padding: 0 30px;
	}
}

@media all and (max-width:768px) {
	footer .container {
		padding: 0 20px;
	}
}

footer .menu {
	grid-area: 1/1/3/3;
}

@media all and (max-width:1024px) {
	footer .menu {
		display: none;
	}
}

footer .menu a {
	display: block;
	font-size: 36px;
	line-height: 62px;
	color: #fff;

}

footer .contact {
	grid-area: 1/6/2/9;

}

@media all and (max-width:1024px) {
	footer .contact {
		grid-area: 1/4/2/8;

	}
}

footer .contact .tel {
	font-size: 36px;
	letter-spacing: 1px;
	text-align: justify;

}

@media all and (max-width:660px) {
	footer .contact .tel {
		font-size: 28px;

	}
}

footer .contact .address {
	font-size: 20px;
}

@media all and (max-width:660px) {
	footer .contact .address {
		font-size: 16px;
	}
}

footer .wechat {
	grid-area: 1/9/3/12;
	text-align: right;

}

@media all and (max-width:1024px) {
	footer .wechat {
		grid-area: 1/8/3/10;

	}
}

@media all and (max-width:768px) {
	footer .wechat {
		max-width: 160px;
		font-size: 16px;

	}
}

footer .wechat span {
	display: block;
	text-align: center;
	line-height: 36px;
}

footer .links {
	grid-area: 2/6/3/10;

}

@media all and (max-width:1024px) {
	footer .links {
		grid-area: 2/4/3/10;

	}
}

footer .links a {
	display: inline-block;
	margin-left: 10px;
}

footer .other {
	grid-area: 1/3/2/7;
	font-size: 20px;

}

@media all and (max-width:1024px) {
	footer .other {
		grid-area: 1/1/2/4;
		font-size: 20px;

	}
}

footer .copyright {
	grid-area: 2/3/3/7;
}

@media all and (max-width:1024px) {
	footer .copyright {
		grid-area: 2/1/3/4;
	}
}

footer .icp {
	grid-area: 2/9/3/12;
	text-align: right;
}

@media all and (max-width:1024px) {
	footer .icp {
		display: none;
	}
}

.home {}

.theme {
	position: relative;
}


.theme .swiper-container {
	height: 100%;
}

.theme .swiper-container a {
	display: block;
	width: 100%;
	height: 100%;
}

.theme .swiper-container a img {
	display: block;
	width: 100%;
}

.overview {
	padding: 55px 0;
}

.overview h1 {
	font-size: 36px;
	color: #fff;
	line-height: 1.12;
}

.overview .text-block {
	display: flex;
	flex-direction: column;
	row-gap: 24px;
	max-width: 1024px;
}

@media all and (max-width:1280px) {
	.overview .text-block {
		max-width: 100%;
	}
}

.overview .text-block p {
	color: #fff;
	font-size: 17px;
	text-transform: none;
	line-height: 1.6;
}
@media all and (max-width:768px) {
	.overview .text-block p {
		font-size: 15px;
		text-align: justify;
	}
}
.overview .text-block .go {
	height: 35px;
}

.overview .text-block .go img {
	width: auto;
	height: 35px;
}

.filter-tag {
	padding: 30px 0 30px 0;
	opacity: 1;
	-webkit-transition: opacity 1s;
	-moz-transition: opacity 1s;
	-ms-transition: opacity 1s;
	-o-transition: opacity 1s;
	transition: opacity 1s;
}

@media all and (max-width:660px) {
	.filter-tag {
		display: none;
	}
}

.filter-tag .single-filter {
	position: relative;
	cursor: pointer;
	vertical-align: bottom;
	-webkit-transition: margin-bottom 0.5s, opacity 0.5s;
	-moz-transition: margin-bottom 0.5s, opacity 0.5s;
	-ms-transition: margin-bottom 0.5s, opacity 0.5s;
	-o-transition: margin-bottom 0.5s, opacity 0.5s;
	transition: margin-bottom 0.5s, opacity 0.5s;
	opacity: 1;
	border-bottom: 1px solid transparent;
	display: inline-block;
}

.filter-tag span {
	padding: 0 10px;
}

.filter-tag .single-filter.attivo {
	border-bottom: 1px solid #1a1a1a;
}

.filter-tag .single-filter.attivo:hover {
	border-bottom: 1px solid transparent;
}

.all-projects {
	padding: 50px 0;
	text-align: left;
}

@media all and (max-width:1280px) {
	.all-projects {
		padding: 20px 0 50px 0;
	}
}

@media all and (max-width:1024px) {
	.all-projects {
		padding: 10px 0 50px 0;
	}
}

@media all and (max-width:768px) {
	.all-projects {
		padding: 10px 0 30px 0;
	}
}

.project-list::after {
	display: block;
	content: "";
	clear: both;
}

.project-list .project {
	width: calc(33.33% - 10px);
	float: left;
	margin-right: 15px;
	margin-bottom: 40px;
	opacity: 1;
	-webkit-transition: opacity 0.5s;
	-moz-transition: opacity 0.5s;
	-ms-transition: opacity 0.5s;
	-o-transition: opacity 0.5s;
	transition: opacity 0.5s;
}

@media all and (max-width:1024px) {
	.project-list .project {

		margin-right: 20px;
		width: calc(50% - 10px);
	}
}

@media all and (max-width:768px) {
	.project-list .project {
		width: 100%;
		margin-right: 0;
	}
}

.project-list .project:nth-child(3n) {
	margin-right: 0;
}

@media all and (max-width:1024px) {
	.project-list .project:nth-child(2n) {
		margin-right: 0;
	}

	.project-list .project:nth-child(3n) {
		margin-right: 20px;
	}
}

@media all and (max-width:768px) {
	.project-list .project:nth-child(3n) {
		margin-right: 0;
	}
}

.project-list .project.animateview:nth-child(2n) {
	transition-delay: 0.2s;
	-webkit-transition-delay: 0.2s;
	-ms-transition-delay: 0.2s;
	-moz-transition-delay: 0.2s;
	-o-transition-delay: 0.2s;
}

@media all and (max-width:1024px) {
	.project-list .project:nth-child(2n) {
		margin-right: 0;
	}
}

.project-list .project.opacizzati {
	opacity: 0.1 !important;
}

.project-list .image-project {
	width: 100%;
	margin-bottom: 15px;
	position: relative;
	overflow: hidden;
}

.project-list .image-project img {
	display: block;
	width: 100%;
}

.project-list .tag {
	display: block;
	float: right;
	margin-left: 30px;
	text-align: left;
	line-height: 30px;
}

@media all and (max-width:1024px) {
	.project-list .tag {
		display: none;
	}
}

.project-list .tag a {
	cursor: pointer;
	position: relative;
}

.project-list .title {
	display: flex;
	line-height: 30px;
	float: left;
}

@media all and (max-width:1024px) {
	.project-list .title {
		width: 100%;
		float: none;
	}
}

.project-list .title span {
	position: relative;
	font-size: 22px;
	letter-spacing: 2px;
}

.project-list .title span.icon {
	display: block;
	width: 30px;
	height: 30px;
	border-radius: 15px;
	margin: 0 20px 0 0;
	position: relative;
}

.project-list .title span.icon:before {
	display: block;
	content: "";
	width: 30px;
	height: 30px;
	position: absolute;
	left: 0;
	top: 0;
	border-radius: 15px;
	background-color: #0000ff;
	background-image: url(../image/eat-icon.svg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 45% 45%;
	z-index: 2;
}

.project-list .title span.icon::after {
	display: block;
	content: "";
	width: 30px;
	height: 30px;
	position: absolute;
	left: 0;
	top: 0;
	border-radius: 15px;
	background-color: #01ffff;
	box-shadow: #01ffff 0 0 10px 3px;
	z-index: 1;
}

.project_show .project_show_head {
	position: relative;
	padding-bottom: 170px;
}

.project_show .project_show_cover {
	padding-bottom: 85px;
}

@media all and (max-width:1024px) {
	.project_show .project_show_cover {
		padding-bottom: 2em;
	}
}

.project_show .title {
	font-size: 24px;
}

@media all and (max-width:1024px) {
	.project_show .date {
		padding-bottom: 2em;
	}
}

.project_show .tags {
	margin: 25px 0;
}

.project_show .tags a {
	display: inline-block;
	margin: 0 10px;
}

.project_show .tags span {
	display: inline-block;
}

.project_show .content {
	padding: 45px 0 0;
	text-align: justify;
}

.project_show .case_show_img {
	margin-top: -130px;
	position: relative;
	padding-bottom: 4em;
}

@media all and (max-width:1024px) {
	.project_show .case_show_img {
		padding-bottom: 2em;
	}
}

@media all and (max-width:768px) {
	.project_show .case_show_img {
		padding-bottom: 1em;
	}
}

.project_show .case_show_img p {
	margin: 0 0 23px 0;
	padding: 0;
}

@media all and (max-width:1024px) {
	.project_show .case_show_img p {
		margin: 0 0 20px 0;
	}
}

@media all and (max-width:768px) {
	.project_show .case_show_img p {
		margin: 0 0 14px 0;
	}
}

@media all and (max-width:520px) {
	.project_show .case_show_img p {
		margin: 0 0 10px 0;
	}
}

@media all and (max-width:375px) {
	.project_show .case_show_img p {
		margin: 0 0 7px 0;
	}
}

.project_show .case_show_img p:last-child {
	margin-bottom: 0;
}

.cases {
	padding: 140px 0;
}

@media all and (max-width:1280px) {
	.cases {
		padding: 100px 0 0 0;
	}
}

@media all and (max-width:1024px) {
	.cases {
		padding: 80px 0 0 0;
	}
}

@media all and (max-width:768px) {
	.cases {
		padding: 60px 0 0 0;
	}
}

.case {
	text-align: center;
}

.case .case-more {
	display: inline-block;
	color: #b9b9b9;
	width: 300px;
	height: 50px;
	transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
	border-radius: 0px;
	font-size: 18px;
	text-align: center;
	text-indent: 0px;
	line-height: 50px;
	font-size: 13px;
	border: none;
	position: relative;
	margin: 0 0 140px 0;
}

.case .case-more:after {
	content: "";
	display: block;
	width: 260px;
	height: 42px;
	border: 1px solid #D9D9D9;
	position: absolute;
	bottom: 2px;
	z-index: 2;
	margin-left: 20px;
	transition: all 0.2s ease 0s;
}

.case .case-more:hover {
	color: #333
}

.case .case-more:hover:after {
	transform: scale(1.1, 1.1);
	border: 1px solid #e0e0e0;
}

.case .case-more i {
	font-family: 'simsun';
	font-size: 18px;
	text-indent: -10px;
	line-height: 50px;
	transition: all ease-out .3s;
	color: #fff;
	display: inline-block;
	opacity: 0
}

.case .case-more:hover i {
	color: #333;
	text-indent: 10px;
	opacity: 1
}



.news-list {
	width: 100%;
	position: relative;
}

.news-list .news {
	width: calc(25% - 15px);
	float: left;
	margin-bottom: 20px;
	opacity: 1;
	-webkit-transition: opacity 0.5s;
	-moz-transition: opacity 0.5s;
	-ms-transition: opacity 0.5s;
	-o-transition: opacity 0.5s;
	transition: opacity 0.5s;
}

@media all and (max-width:1024px) {
	.news-list .news {
		width: calc(33.333% - 10px);
		margin-bottom: 15px;
	}
}

@media all and (max-width:768px) {
	.news-list .news {
		width: calc(50% - 5px);
		margin-bottom: 10px;
	}
}

.news-list .news.animateview:nth-child(2n) {
	transition-delay: 0.2s;
	-webkit-transition-delay: 0.2s;
	-ms-transition-delay: 0.2s;
	-moz-transition-delay: 0.2s;
	-o-transition-delay: 0.2s;
}

.news-list .image-news {}

.news-list .image-news img {
	display: block;
	width: 100%;
}

.news-list .mask {
	display: block;
	top: 0;
	left: 0;
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 10;
	background: #333;
	opacity: .001;
}

.news-list figcaption {
	display: block;
	bottom: 1em;
	left: 1em;
	right: 1em;
	position: absolute;
	z-index: 20;
	font-size: 18px;
	text-align: left;
	color: #fff
}

.news-list figcaption .anim {
	display: block;
	opacity: 0;
	width: 100%;
	-webkit-transform: translateY(20px);
	-ms-transform: translateY(20px);
	-moz-transform: translateY(20px);
	transform: translateY(20px);
	-webkit-transition: -webkit-transform .2s ease-out, opacity linear .2s;
	-ms-transition: -ms-transform .2s ease-out, opacity linear .2s;
	-moz-transition: -moz-transform .2s ease-out, opacity linear .2s;
	transition: transform .2s ease-out, opacity linear .2s;
}

.news-list .news .anim.type {
	-webkit-transition-delay: 50ms;
	transition-delay: 50ms
}

.news-list figcaption .type {
	text-transform: uppercase;
	padding-top: 1em;
}

.news-list .news:hover .mask {
	opacity: .5
}

.news-list .news:hover .anim {
	opacity: 1;
	-webkit-transform: translateY(0);
	-ms-transform: translateY(0);
	-moz-transform: translateY(0);
	transform: translateY(0)
}

.news-show-head {
	margin: 45px 0;
	position: relative;
}

.news-show-head .date {
	margin: 45px 0;
}

.news-show-head .title {
	margin: 45px 80px 0 0;
	font-size: 24px;
	line-height: 40px;
}

@media all and (max-width:1024px) {
	.news-show-head .title {
		margin: 45px 0 0 0;
	}
}

.news-show-head .content {
	margin-top: 45px;
	text-align: justify;
	line-height: 40px;
}

.news-show .news_show_img {
	padding-bottom: 4em;
}

@media all and (max-width:768px) {
	.news-show .news_show_img {
		padding-bottom: 2em;
	}
}

.vision {
	position: relative;
}

.vision p {
	margin-bottom: 70px;
}

@media all and (max-width:1280px) {
	.vision p {
		margin-bottom: 50px;
	}
}

@media all and (max-width:1024px) {
	.vision p {
		margin-bottom: 30px;
	}
}

@media all and (max-width:768px) {
	.vision p {
		margin-bottom: 20px;
	}
}

.vision .image {
	width: 100%;

}

.view {
	padding: 224px 0;
}

@media all and (max-width:1280px) {
	.view {
		padding: 180px 0;
	}
}

@media all and (max-width:1024px) {
	.view {
		padding: 150px 0;
	}
}

@media all and (max-width:768px) {
	.view {
		padding: 120px 0;
	}
}

.view .text-block {
	max-width: 1024px;
	font-size: 20px;
	color: #333;
	margin: 10px 0 20px 0;
}

@media all and (max-width:1280px) {
	.view .text-block {
		max-width: 100%;
		font-size: 19px;
	}
}

@media all and (max-width:1024px) {
	.view .text-block {
		font-size: 18px;
	}
}

@media all and (max-width:768px) {
	.view .text-block {
		font-size: 17px;
	}
}

.view .text-block p {
	margin-bottom: 30px;
}

.view .tags {
	display: flex;
	gap: 10px;
}

.view .tags span {
	display: inline-block;
	padding: 5px 10px;
	background-color: #D9D9D9;
}

.related {
	padding: 70px auto;
	text-align: center;
}

.articles {
	padding: 70px 0 70px 0;
}

.articles .container {
	padding: 0 140px;
}

@media all and (max-width:1280px) {
	.articles .container {
		padding: 0 50px;
	}
}

@media all and (max-width:1024px) {
	.articles .container {
		padding: 0 30px;
	}
}

@media all and (max-width:768px) {
	.articles .container {
		padding: 0 20px;
	}
}

.articles .article-concise-list {
	display: flex;
}

@media all and (max-width:1280px) {
	.articles .article-concise-list {
		display: block;
	}
}

@media (max-width: 768px) {
	.articles .article-concise-list {
		display: flex;
		flex-direction: column;
	}
}

.articles .article-concise-list::after {
	display: block;
	content: "";
	clear: both;
}

.articles .article-concise-list .text-block {
	width: 25%;
}

@media all and (max-width:1280px) {
	.articles .article-concise-list .text-block {
		width: 50%;
		float: left;
		min-height: 240px;
	}
}

@media all and (max-width:768px) {
	.articles .article-concise-list .text-block {
		width: 100%;
		float: none;
		min-height: 240px;
	}
}

.articles .article-concise-list .text-block h2 {
	line-height: 56px;
}

.articles .article-concise-list .text-block ul {
	line-height: 2;
}
@media all and (max-width:768px) {
	.articles .article-concise-list .text-block ul {
	font-size: 15px;
}
}
.article-page {
	padding: 140px 0;
}

@media all and (max-width:1280px) {
	.article-page {
		padding: 120px 0 50px;
	}
}

@media all and (max-width:1024px) {
	.article-page {
		padding: 100px 0 30px;
	}
}

@media all and (max-width:768px) {
	.article-page {
		padding: 80px 0 20px;
	}
}

.article-page .container {
	padding: 0 25%;
}

@media all and (max-width:1280px) {
	.article-page .container {
		padding: 0 50px;
	}
}

@media all and (max-width:1024px) {
	.article-page .container {
		padding: 0 30px;
	}
}

@media all and (max-width:768px) {
	.article-page .container {
		padding: 0 20px;
	}
}

.article-cate {
	display: flex;
	line-height: 70px;
}

@media all and (max-width:1024px) {
	.article-cate {
		display: none;
	}
}

.article-cate h2 {
	width: 20%;
}

.article-cate p {
	width: 80%;
}

.article-cate span {
	display: inline-block;
	padding: 0 10px;
	color: #787878;
}

.article-cate a {
	display: inline-block;
	padding: 0 10px;
	color: #787878;
}

.article-cate a.active {
	color: #000;
}

.article-list {
	padding: 70px 0;
}

@media all and (max-width:1280px) {
	.article-list {
		padding: 50px 0;
	}
}

@media all and (max-width:1024px) {
	.article-list {
		padding: 30px 0;
	}
}

@media all and (max-width:768px) {
	.article-list {
		padding: 20px 0;
	}
}

.article-list .article-card {
	display: flex;
	justify-content: space-between;
	margin-bottom: 70px;

}

.article-list .article-card .text-block {
	width: 50%;
}

@media all and (max-width:768px) {
	.article-list .article-card .text-block {
		width: 55%;
	}
}

.article-list .article-card .text-block time {
	display: block;
	margin-bottom: 20px;
}

.article-list .article-card .text-block h3 {
	font-size: 18px;
	text-transform: none;
	line-height: 1.35;
	color: #787878;
	margin-bottom: 70px;
}
@media all and (max-width:1280px) {
.article-list .article-card .text-block h3 {		
	margin-bottom: 50px;

	}
}

@media all and (max-width:1024px) {
.article-list .article-card .text-block h3 {
		margin-bottom: 30px;

	}
}

@media all and (max-width:768px) {
.article-list .article-card .text-block h3 {
		margin-bottom: 20px;

	}
}
.article-list .article-card .text-block p {
	font-size: 15px;
	text-transform: none;
	line-height: 1.6;
	margin-bottom: 70px;
}
@media all and (max-width:1280px) {
.article-list .article-card .text-block p {	
	margin-bottom: 50px;

	}
}

@media all and (max-width:1024px) {
.article-list .article-card .text-block p {
		margin-bottom: 30px;

	}
}

@media all and (max-width:768px) {
.article-list .article-card .text-block p {
		margin-bottom: 20px;

	}
}
.article-list .article-card .image {
	position: relative;
	width: 40%;
	overflow: hidden;

}

.article-list .readmore {
	text-decoration: underline;
	line-height: 1.5;
}

.articles .load-more {
	display: flex;
	margin: 50px 0;
	width: auto;
	align-items: center;
	justify-content: center;
}

.articles .load-more a {
	font-size: 88px;
	line-height: 96px;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #f3f3f3;
	overflow: hidden;
	width: 96px;
	height: 96px;
	border-radius: 48px;
	transition-property: transform;
	transition-timing-function: cubic-bezier(.4, 0, .2, 1);
	transition-duration: .3s;
}

.article {
	padding: 140px 0;

}

.article .container {
	padding: 0 140px 0 360px;
}

@media all and (max-width:1280px) {
	.article .container {
		padding: 0 50px 0 50px;
	}
}

@media all and (max-width:1024px) {
	.article .container {
		padding: 0 30px 0 30px;
	}
}

@media all and (max-width:768px) {
	.article .container {
		padding: 0 20px 0 20px;
	}
}

.article .flex {
	display: flex;
}

@media all and (max-width:768px) {
	.article .flex {
		flex-direction: column;
	}

}

.article .text-block {
	width: 30%;
	color: #aeaeae;
}

.article .text-block time {
	font-size: 28px;
}

.article .text-content {
	width: 70%;
	line-height: 2;
}

@media all and (max-width:768px) {
	.article .text-content {
		width: 100%;
	}
}

.article .text-content h2.title {
	padding-bottom: 70px;
	margin-bottom: 70px;
	border-bottom: 2px solid #999;
}

@media all and (max-width:1280px) {
	.article .text-content h2.title {
		padding-bottom: 50px;
		margin-bottom: 50px;
	}
}

@media all and (max-width:1024px) {
	.article .text-content h2.title {
		padding-bottom: 30px;
		margin-bottom: 30px;
	}
}

@media all and (max-width:768px) {
	.article .text-content h2.title {
		padding-bottom: 20px;
		margin-bottom: 20px;
	}
}

.article .text-content p {
	margin: 20px 0;
}

.services {
	padding: 70px 0 70px 0;
}

.services .container {
	padding: 0 140px;
}

@media all and (max-width:1280px) {
	.services .container {
		padding: 0 50px;
	}
}

@media all and (max-width:1024px) {
	.services .container {
		padding: 0 30px;
	}
}

@media all and (max-width:768px) {
	.services .container {
		padding: 0 20px;
	}
}

.service-concise-list {
	display: flex;
}

@media (max-width: 1280px) {
	.service-concise-list {
		display: block;
	}
}

@media (max-width: 768px) {
	.service-concise-list {
		display: flex;
		flex-direction: column;
	}
}

.service-concise-list::after {
	display: block;
	content: "";
	clear: both;
}

.service-concise-list .text-block {
	width: 25%;
}

@media (max-width: 1280px) {
	.service-concise-list .text-block {
		width: 50%;
		float: left;
		min-height: 440px;
	}
}

@media all and (max-width:768px) {
	.service-concise-list .text-block {
		width: 100%;
		float: none;
		min-height: auto;
		margin-bottom: 30px;
	}
}

.service-concise-list .text-block {
	font-size: 20px;
	line-height: 2;
}

@media all and (max-width:1024px) {
	.service-concise-list .text-block {
		font-size: 18px;
	}
}

@media all and (max-width:768px) {
	.service-concise-list .text-block {
		font-size: 16px;
	}
}

.service-header {
	padding: 224px 0 140px 0;
}

@media all and (max-width:1280px) {
	.service-header {
		padding: 180px 0 70px 0;
	}
}

@media all and (max-width:1024px) {
	.service-header {
		padding: 150px 0 50px 0;
	}
}

@media all and (max-width:768px) {
	.service-header {
		padding: 120px 0 30px 0;
	}
}

.service-header .flex {
	display: flex;
}

@media all and (max-width:768px) {
	.service-header .flex {
		display: flex;
		flex-direction: column;
	}
}

.service-header h1 {
	width: 20%;
}

@media all and (max-width:1280px) {
	.service-header h1 {
		width: 50%;
	}
}

@media all and (max-width:1024px) {
	.service-header h1 {
		width: 70%;
	}
}

@media all and (max-width:768px) {
	.service-header h1 {
		width: 100%;
		margin-bottom: 30px;
	}
}

.service-header .text-block {
	line-height: 2;
	max-width: 1024px;
	font-size: 24px;
}

@media all and (max-width:768px) {
	.service-header .text-block {
		font-size: 20px;
	}
}

.service {
	padding: 70px 0;
}

@media all and (max-width:1280px) {
	.service {
		padding: 50px 0;
	}
}

@media all and (max-width:1024px) {
	.service {
		padding: 30px 0;
	}
}

@media all and (max-width:768px) {
	.service {
		padding: 20px 0;
	}
}

.service .service-block {
	margin-bottom: 140px;
}

.service .flex {
	display: flex;
	justify-content: space-between;
}

@media all and (max-width:768px) {
	.service .flex {
		flex-direction: column;
	}
}

.service .vision {
	width: 55%;
}

@media all and (max-width:1280px) {
	.service .vision {
		width: 45%;
	}
}

@media all and (max-width:1024px) {
	.service .vision {
		width: 40%;
	}
}

@media all and (max-width:768px) {
	.service .vision {
		width: 100%;
		margin-bottom: 20px;
	}
}

.service .text-block {
	display: flex;
	flex-direction: column;
	align-items: space-between;
	width: 40%;

}

@media all and (max-width:1280px) {
	.service .text-block {
		width: 50%;

	}
}

@media all and (max-width:1024px) {
	.service .text-block {
		width: 55%;

	}
}

@media all and (max-width:768px) {
	.service .text-block {
		width: 100%;

	}
}

.service .text-block h2 {
	height: 100px;
}

@media all and (max-width:1280px) {
	.service .text-block h2 {
		height: 90px;
	}
}

@media all and (max-width:1024px) {
	.service .text-block h2 {
		height: 80px;
	}
}

@media all and (max-width:768px) {
	.service .text-block h2 {
		height: 70px;
	}
}

.service .text-block .block {
	height: 100%;
	display: flex;
	align-items: center;
}

.service .text-block p {
	line-height: 2;
	font-size: 24px;
}

@media all and (max-width:1280px) {
	.service .text-block p {
		font-size: 22px;
	}
}

@media all and (max-width:1024px) {
	.service .text-block p {
		font-size: 20px;
	}
}

@media all and (max-width:768px) {
	.service .text-block p {
		font-size: 18px;
	}
}

.service .text-block .related {
	padding: 0;
	text-align: left;
}

.service .text-block .related h3 {
	line-height: 2;
}
.service .text-block .related ul {
	font-size: 15px;

}
.service .text-block .related ul li {
	width: 50%;
	display: inline-block;
	float: left;
	
}
.advslider {
	position: relative;
}

.advslider .swiper-container {
	height: 100%;
}

.advslider .swiper-container img {
	display: block;
	width: 100%;
}

.clients {
	padding: 140px 0 70px 0;
	text-align: center;
}

@media all and (max-width:1280px) {
	.clients {
		padding: 50px 0;

	}
}

@media all and (max-width:1024px) {
	.clients {
		padding: 30px 0;

	}
}

@media all and (max-width:768px) {
	.clients {
		padding: 20px 0;

	}
}

.clients .container {
	padding: 0 140px;
}

@media all and (max-width:1280px) {
	.clients .container {
		padding: 0 50px;

	}
}

@media all and (max-width:1024px) {
	.clients .container {
		padding: 0 30px;

	}
}

@media all and (max-width:768px) {
	.clients .container {
		padding: 0 20px;

	}
}

.clients h1 {
	display: inline-block;
	position: relative;
	padding-bottom: 20px;
	color: #aeaeae;
	margin-bottom: 70px;
}

@media all and (max-width:1280px) {
	.clients h1 {
		margin-bottom: 50px;
	}
}

@media all and (max-width:1024px) {
	.clients h1 {
		margin-bottom: 30px;
	}
}

@media all and (max-width:768px) {
	.clients h1 {
		margin-bottom: 20px;
	}
}

.clients h1:before {
	display: block;
	content: "";
	width: 50px;
	height: 3px;
	background-color: #aeaeae;
	position: absolute;
	left: 50%;
	margin-left: -25px;
	bottom: 0;
}

.latest {
	padding: 70px 0;
}

.latest h1 {
	position: relative;
	padding-bottom: 50px;
}

.latest .container {
	padding: 0 140px;
}

@media all and (max-width:1280px) {
	.latest .container {
		padding: 0 50px;

	}
}

@media all and (max-width:1024px) {
	.latest .container {
		padding: 0 30px;

	}
}

@media all and (max-width:768px) {
	.latest .container {
		padding: 0 20px;

	}
}

.latest li {
	margin-bottom: 50px;
}
.latest li a {
	font-size: 18px;
}
.latest li p {
	margin-top: 10px;
	font-size: 15px;
	color: #787878;
	text-align: justify;
}

.contacts {
	padding: 224px 0;
	font-size: 20px;
}

@media all and (max-width:1280px) {
	.contacts {
		padding: 180px 0;
		font-size: 18px;
	}
}

@media all and (max-width:1024px) {
	.contacts {
		padding: 120px 0;
		font-size: 16px;
	}
}

@media all and (max-width:768px) {
	.contacts {
		padding: 80px 0;
	}
}

.contacts .text-block {
	line-height: 2;
	color: #666;
	max-width: 560px;
	margin-bottom: 30px;
	text-align: justify;
}

.contacts .text-block.intro {
	color: #1a1a1a;
}

.contacts h1 {
	line-height: 1.5;
	margin-bottom: 30px;
}

.contacts .share {
	max-width: 1120px;
	margin: 70px auto 0 auto;
}

.contacts p {
	margin-bottom: 30px;
}

.about .profile {
	padding: 160px 0 70px 0;
	font-size: 20px;
	background-color: #0c08e4;
}

@media all and (max-width:1024px) {
	.about .profile {
		padding: 120px 0 50px 0;
		font-size: 20px;
	}
}

@media all and (max-width:768px) {
	.about .profile {
		padding: 100px 0 30px 0;
		font-size: 16px;
	}
}

.about .flex {
	display: flex;
}

@media all and (max-width:768px) {
	.about .flex {
		flex-direction: column;
	}
}

.about .flex .video-block {
	display: flex;
	flex-direction: column;
	width: 40%;
}

@media all and (max-width:768px) {
	.about .flex .video-block {
		width: 100%;
	}
}

.about .flex .video-block h2 {
	color: #ff0000;
}

.about .flex .video-block video {
	display: inline-block;
	width: 100%;
	max-width: 440px;
	margin: 70px auto 0 auto;

}

@media all and (max-width:1280px) {
	.about .flex .video-block video {
		max-width: 360px;

	}
}

@media all and (max-width:1024px) {
	.about .flex .video-block video {
		max-width: 300px;

	}
}

@media all and (max-width:768px) {
	.about .flex .video-block video {
		max-width: 60%;
	}
}

.about .text-block {
	line-height: 2;
	color: #fff;
	max-width: 840px;
	margin-bottom: 30px;
	text-align: justify;
}

@media all and (max-width:1280px) {
	.about .text-block {
		max-width: 660px;
	}
}

@media all and (max-width:1024px) {
	.about .text-block {
		max-width: 520px;
	}
}

@media all and (max-width:768px) {
	.about .text-block {
		max-width: 100%;
	}
}

.about .text-block a {
	color: #fff;
}

.about section {
	padding: 70px 0;

}

@media all and (max-width:1280px) {
	.about section {
		padding: 50px 0;

	}
}

@media all and (max-width:1024px) {
	.about section {
		padding: 30px 0;

	}
}

@media all and (max-width:768px) {
	.about section {
		padding: 20px 0;

	}
}