* {
	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: 88px;
}
h2 {
font-size: 40px;
}
h3 {
font-size: 16px;
}
img {
	display: block;
	padding: 0;
	margin: 0;
	width: 100%;
	height: auto;
}

ul {
	list-style: none;
}

::selection {
	background: #efefef;
}

::-moz-selection {
	background: #efefef;
}

.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;
}

.flex-col {
	display: flex;
	flex-direction: column;
	height: 100%;
}
.grap {
	gap: 40px;
}
.row {
flex-direction: row;
}
main#main {
	padding: 0;
	min-height: 100vh;
}

header {
	padding: 20px 45px;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	background: #fff;
	z-index: 1;
	width: 100%;
	-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:1024px) {
	header {
		padding: 15px 2%;
		width: 96%;
	}
}

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 {
	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 {
	float: left;
}

header .logo a {
	display: block;
	width: 180px;
	height: 45px;
	background-image: url(../image/svg/logo.svg);
	background-repeat: no-repeat;
	background-position: left top;
	background-size: auto 100%;
}

@media all and (max-width:1024px) {
	header .logo a {
		width: 180px;
		height: 30px;
	}
}

.menu {
	float: right;
}

@media all and (max-width:1024px) {
	.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: 45px;
	height: 45px;
	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: 45px;
	display: block;
	color: #4d4948;
	text-decoration: none;
	font-size: 15px;
	line-height: 45px;
	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;
	letter-spacing: 1px;
}

.menu .inner ul li:hover,
.menu .inner ul li.active {}

.menu .inner ul li:hover a,
.menu .inner ul li.active a {
	color: #000;
}

.handle {
	display: none;
}

@media all and (max-width:1024px) {
	.handle {
		display: block;
		position: absolute;
		top: 16px;
		right: 2%;
		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);
	}
}

.handle span {
	width: 26px;
	height: 2px;
	background: #4d4948;
	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: 60px;
	right: 0px;
	width: 100%;
	padding-right: 25px;
	text-align: right;
}

@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: 17px;
	line-height: 34px;
}

.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(-40%, 0, 0);
		-ms-transform: translate3d(-40%, 0, 0);
		-o-transform: translate3d(-40%, 0, 0);
		transform: translate3d(-40%, 0, 0);
	}
}

main {
	margin-top: 85px;
}

@media all and (max-width:1024px) {
	main {
		margin-top: 60px;
	}
}

.container {
	padding: 0 256px;
}
.max-container {
	padding: 0 156px;
}

footer {
	background-color: #151515;
}
footer .contact {
	position: relative;
	background-color: #000;
	padding: 200px 0;
	color: #787878;

}
footer .contact h2 {
	margin-bottom: 40px;
	color: #fff;
}
footer .contact h3 {
	font-size: 14px;
	line-height: 1.48;
	margin-bottom: 16px;
}

footer .online {
	display: flex;
	align-items: center;
	gap: 40px;
	width: 100%;

}
footer .online .submit {
	
	width: auto;
	display: flex;
	width: auto;
}
footer .online .submit a {
	position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  padding: 16px 80px;
	overflow: hidden;
  border-radius: 48px;
  transition-property: transform;
  transition-timing-function: cubic-bezier(.4,0,.2,1);
  transition-duration: .3s;

}
footer .mailto a  {	
	color: #fff;
	width: -moz-max-content;
	width: max-content;
	padding: 0;
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	appearance: none;
	border-style: none;
	background-color: transparent;
	transition-property: all;
	transition-duration: .3s;
	transition-timing-function: cubic-bezier(.4, 0, .2, 1);

}
footer .mailto a:before {
	position: absolute;
	bottom: 0;
	left: 0;
	display: block;
	height: 1px;
	width: 0;
	transition-property: width;
	transition-duration: .3s;
	transition-timing-function: cubic-bezier(.4, 0, .2, 1);
	content: "";
	background: currentcolor
}

footer .mailto a:focus:before,
footer .mailto a:hover:before {
	width: 100%
}


footer .info {
	gap: 120px;
	color: #fff;
}
footer .keywords h3 {
	line-height: 1.48;
	color: #787878;
	margin-bottom: 16px;

}

footer .principle {
	display: flex;
	gap: 24px !important;

}
footer .features {
	display: flex;
	gap: 16px !important;
	margin-top: 50px;
}
footer .features .w-auto {
	width: auto;
	max-width: 168px;
}
footer .features .w-auto img {
	display: block;
	max-width: 100%;
  height: auto;
}

footer .keywords {
	position: sticky;
	top: 0;
	padding: 80px 0;
}

footer .keywords h3 {
	line-height: 1.48;
	color: #787878;
	margin-bottom: 16px;

}

footer .keywords ul {
	display: flex;
	flex-wrap: wrap;
	row-gap: 12px;
	column-gap: 24px;

}
footer .keywords ul li {
	display: flex;
	align-items: center;
	position: relative;

}

footer .keywords ul li a {
	font-size: 18px;
	color: #fff;
	width: -moz-max-content;
	width: max-content;
	padding: 0;
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	appearance: none;
	border-style: none;
	background-color: transparent;
	transition-property: all;
	transition-duration: .3s;
	transition-timing-function: cubic-bezier(.4, 0, .2, 1);

}

footer .keywords ul li a:before {
	position: absolute;
	bottom: 0;
	left: 0;
	display: block;
	height: 1px;
	width: 0;
	transition-property: width;
	transition-duration: .3s;
	transition-timing-function: cubic-bezier(.4, 0, .2, 1);
	content: "";
	background: currentcolor
}

footer .keywords ul li a:focus:before,
footer .keywords ul li a:hover:before {
	width: 100%
}

footer .copyright {
	padding: 0 0 50px 0;
	font-size: 14px;
	line-height: 1.48;
	color: #787878;
}

.theme {
	position: relative;
	height: calc(100vh - 80px);
}

@media all and (max-width:1024px) {
	.theme {
		height: calc(100vh - 60px);
	}
}

.theme .swiper-container {
	height: 100%;
}

.theme .swiper-container a {
	display: block;
	width: 100%;
	height: 100%;
}

.theme .swiper-container a img {
	display: block;
	position: absolute;
	width: 100%;
	min-height: 100%;
	top: 0;
	left: 50%;
	-webkit-transform: translate3d(-50%, 0, 0);
	-ms-transform: translate3d(-50%, 0, 0);
	transform: translate3d(-50%, 0, 0);
}
.overview {
	padding: 224px 0;
	background-color: #000;
}
.overview h3 {
	font-size: 24px;
  text-transform: none;
  line-height: 1.35;
  color: #787878;
}
.overview h1 {
	font-size: 88px;
	color: #fff;
	line-height: 1.12;
    letter-spacing: -3px;
}
.overview .text-block {	
	display: flex;
	flex-direction: column;
	row-gap: 24px;
	max-width: 1280px;
}
.overview .text-block p {
	color: #787878;
	font-size: 20px;
  text-transform: none;
  line-height: 1.6;
}

.overview .advantage {
	display: flex;
	align-items: flex-start;
	flex-direction: row;
	gap: 48px;
	color: #fff;
	margin-top: 50px;

}
.overview .advantage p {
	font-size: 88px;
    line-height: 1.12;
    letter-spacing: -3px;
}
.overview .advantage span {
	font-size: 20px;
  text-transform: none;
  line-height: 1.6;
  text-wrap: nowrap;

}
.brief {
	padding: 160px 0;
}
.brief .content {
	display: grid;
	grid-template-columns: repeat(2,minmax(0,1fr));
	gap: 160px;

}
.brief .content .content-block {
  line-height: 1.6;
	text-align: justify;
}
.brief .content .content-block p {
	margin-bottom: 24px;
}

.team {
	padding: 200px 0 120px 0;
	background-color: #f6f6f6;
}
.team .content {
	display: grid;
	grid-template-columns: repeat(2,minmax(0,1fr));
	gap: 160px;

}
.team .content .sticky {
	position: sticky;
	top: 200px;
}
.team .rich-text {
	display: flex;
	flex-direction: column;
	gap: 80px;
}
.team .rich-text h3 {
	margin-bottom: 24px;
}
.team .rich-text p {
	line-height: 1.6;
	margin-bottom: 24px;
	text-align: justify;
}
.team .rich-text img {
	border-radius: 16px;
}
.clients {
	padding: 120px 0;
}
.clients h3 {
  text-transform: none;
  line-height: 1.35;
  color: #787878;
}
.clients h1 {
	font-size: 88px;
	color: #fff;
	line-height: 1.12;
    letter-spacing: -3px;
}
.clients .text-block {	
	display: flex;
	flex-direction: column;
	row-gap: 24px;
	max-width: 1280px;
}
.clients .text-block p {
	color: #787878;
	font-size: 20px;
  text-transform: none;
  line-height: 1.6;
}
.clients .list {
	display: grid;
	width: 100%;
	overflow: hidden;
	border-radius: 16px;
	grid-template-columns: repeat(6,minmax(0,1fr));
	border: 1px solid #f3f3f3;

}
.clients .list li {
	display: flex;
	position: relative;
	padding: 24px;
	cursor: pointer;
	align-items: center;
	justify-content: center;
	transition-property: color,background-color,border-color,text-decoration-color,fill,stroke;
  transition-timing-function: cubic-bezier(.4,0,.2,1);
  transition-duration: .15s;
}
.clients .list li::before {
	display: block;
	content: "";
	width: 1px;
	height: 100%;
	position: absolute;
	top: 0;
	right: 0;
	background-color: #f3f3f3;
}
.clients .list li::after {
	display: block;
	content: "";
	width: 100%;
	height: 1px;
	position: absolute;
	top: 0;
	right: 0;
	background-color: #f3f3f3;
}
.clients .list li:nth-child(6n)::before {
	display: none;
	max-width: 100%;
	height: auto;
}
.clients .list li img {
	display: block;
}
.service {
	padding: 200px 0 120px 0;
	background-color: #f6f6f6;
}
.service .content {
	display: grid;
	grid-template-columns: repeat(2,minmax(0,1fr));
	gap: 160px;

}
.service .content .sticky {
	position: sticky;
	top: 200px;
}
.service .rich-text {
	display: flex;
	flex-direction: column;
	gap: 80px;
}
.service .rich-text h3 {
	font-size: 20px;
	margin-bottom: 24px;
}
.service .rich-text p {
	line-height: 1.6;
	margin-bottom: 24px;
	text-align: justify;
}
.service .rich-text img {
	border-radius: 16px;
}

.intro {
	padding: 200px 0 96px 0;
}
.intro .rich-text {
	display: flex;
	flex-direction: row-reverse;
	justify-content: space-between;
	align-items: flex-start;
	gap: 0;

}
.intro .rich-text .text-block {
	display: flex;
	flex-direction: column;
	gap: 24px;
	max-width: 744px;

}
.intro .rich-text .text-block h3 {
  text-transform: none;
  line-height: 1.35;
  color: #787878;
}
.intro .rich-text .text-block h1 {
	font-size: 88px;
	line-height: 1.12;
    letter-spacing: -3px;
}
.intro .rich-text .text-block p {
	font-size: 20px;
  text-transform: none;
  line-height: 1.6;
}
.intro .rich-text .image {
	position: relative;
	width: 512px;
	height: 348px;

}
.advantages {
}

.advantages .text-block {
	display: flex;
	flex-direction: column;
	padding-top: 200px;

}
.advantages .content {
	display: grid;
	gap: 24px;
	grid-template-columns: repeat(2,minmax(0,1fr));
	padding-top: 200px;
}
.advantages .content .flex-col {
	  gap: 24px;
	  justify-content: space-between;
	  min-height: 300px;
	  border: 1px solid #f3f3f3;
	  border-radius: 16px;
	  padding: 24px;

}
.advantages .content p {
  line-height: 1.6;
}


.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;
}
.project-list::after {
	display: block;
	content: "";
	clear: both;
}
.project-list .project {
	width: calc(33.33% - 20px);
	float: left;
	margin-right: 30px;
	margin-bottom: 30px;
	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 {
		width: calc(50% - 15px);
	}
}

@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(3n) {
		margin-right: 30px;
	}
}

@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: 10px;
	position: relative;
	overflow: hidden;
}

.project-list .image-project img {
	display: block;
	width: 100%;
}

.project-list .tag {
	display: block;
	float: right;
	font-size: 13px;
	text-align: right;
	line-height: 23px;
}

@media all and (max-width:1024px) {
	.project-list .tag {
		display: none;
	}
}

.project-list .tag a {
	cursor: pointer;
	position: relative;
}

.project-list .title {
	width: 40%;
	float: left;
	color: #1a1a1a;
}

@media all and (max-width:1024px) {
	.project-list .title {
		width: 100%;
		float: none;
	}
}

.project-list .title span {
	position: relative;
	font-size: 18px;
	min-height: 44px;
}

.project-list .title span:before {
	content: '';
	position: absolute;
	width: 0;
	height: 2px;
	left: 0;
	bottom: -10px;
	background: #555;
	-webkit-transition: width 0.5s;
	-moz-transition: width 0.5s;
	-ms-transition: width 0.5s;
	-o-transition: width 0.5s;
	transition: width 0.5s;
}

.project-list a:hover .title span:before {
	width: 100%;
}

.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;
}



.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;
	overflow: hidden;
	min-height: 800px;
}
.vision .image {
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;

}
.vision .image-block {
	position: relative;
	height: 100%;
}
.vision img {
	display: block;
	position: absolute;
  height: 100%;
  width: 100%;
  max-width: 100%;
  inset: 0px;
  object-fit: cover;
  color: transparent;
}

.view {
	padding: 224px 0;
}
.view h3 {
	font-size: 24px;
  text-transform: none;
  line-height: 1.35;
  color: #787878;
}
.view h1 {
	font-size: 88px;
	line-height: 1.12;
    letter-spacing: -3px;
}
.view .text-block {	
	display: flex;
	flex-direction: column;
	row-gap: 24px;
	max-width: 1280px;
}
.view .text-block p {
	color: #787878;
	font-size: 20px;
  text-transform: none;
  line-height: 1.6;
}

.case {
	padding: 120px 0 120px 0;
}
.case .content {
	display: grid;
	grid-template-columns: repeat(8,minmax(0,1fr));
	align-items: flex-start;
	min-height: calc(100vh - 128px);

}
.case .content .side {
	grid-column-start: 1;
	grid-column-end: 4;
	column-gap: 120px;
	padding-right: 80px;
}
.case .content .sticky {
	position: sticky;
	top: 120px;
	column-gap: 120px;
	justify-content: flex-start !important;
	min-height: calc(100vh - 128px);
}
.case .sticky .tags {
	display: flex;
	padding-bottom: 64px;
	align-items: flex-start;
	flex-direction: column;
	row-gap: 8px;
	margin-top: 300px;

}
.case .rich-text {
	display: flex;
	grid-column-start: 4;
	grid-column-end: 9;
	flex-direction: column;
}

.case .rich-text .tags span {
	display: block;
}
.case .rich-text h3 {
	margin-bottom: 24px;
}
.case .rich-text p {
	line-height: 1.6;
	margin-bottom: 24px;
	text-align: justify;
}


.articles {
	padding: 200px 0 96px 0;
}
.articles .article {
	display: flex;
	flex-direction: row-reverse;
	justify-content: space-between;
	align-items: flex-start;
	gap: 0;

}
.articles .article .text-block {
	display: flex;
	flex-direction: column;
	gap: 16px;
	max-width: 744px;

}
.articles .article .text-block h3 {
	font-size: 18px;
  text-transform: none;
  line-height: 1.35;
  color: #787878;
}
.articles .article .text-block h1 {
	font-size: 88px;
	line-height: 1.12;
    letter-spacing: -3px;
}
.articles .article .text-block p {
	font-size: 20px;
  text-transform: none;
  line-height: 1.6;
}
.articles .article .image {
	position: relative;
	width: 512px;
	  border-radius: 16px;
  overflow: hidden;

}
.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;
}