.about-us{
	
}
.about-us .inner{
	max-width: 1440px;
	margin: 0 auto;
	padding: var(--section-padding-horizontal);
}
.about-us .inner .title{
	max-width: 848px;
	width: 100%;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-top: 30px;
	gap: 30px;
}
.about-us .inner .title h1{
	font-weight: normal;
	font-size: 14px;
	color: var(--theme-default-text-color);
}
.about-us .inner .title h2{
	font-size: var(--page-title-font-size);
	letter-spacing: var(--page-title-letter-spacing);
	font-weight: normal;
	text-align: center;
	line-height: var(--font-heading-line-height);
	color: var(--theme-default-text-color);
}
.about-us .inner .images-with-content{
	margin-top: 56px;
	display: flex;
	flex-direction: column;
	gap: 56px;
}
.images-with-content-imgs{
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	grid-template-rows: 1fr;
	aspect-ratio: 2/1;
	gap: 16px;
}
.images-with-content-imgs .item{
	display: block;
	border-radius: var(--border-radius-block);
	overflow: hidden;
	grid-column: 1 / 13;
	grid-row: 1 / 1;
	width: 100%;
	height: 100%;
	position: relative;
}
.images-with-content-imgs .item img{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.images-with-content-imgs .item:nth-child(1){
	grid-column: 1 / 6;
	grid-row: 1 / 1;
}
.images-with-content-imgs .item:nth-child(2){
	grid-column: 6 / 13;
	grid-row: 1 / 1;
}
.about-us .inner .images-with-content dl{
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	grid-template-rows: auto;
	gap: 16px;
}
.about-us .inner .images-with-content dl dt{
	display: flex;
	flex-direction: column;
	row-gap: 1.2rem;
	grid-column: 1 / 6;
}
.about-us .inner .images-with-content dl dt p{
	font-size: 12px;
	color: var(--theme-default-text-color);
}
.about-us .inner .images-with-content dl dt h2{
	font-weight: normal;
	font-size: var(--page-title-font-size);
	letter-spacing: var(--page-title-letter-spacing);
	line-height: var(--font-heading-line-height);
	color: var(--theme-default-text-color);
}

.about-us .inner .images-with-content dl dd{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: auto;
	grid-column: 6 / 12;
	gap: 20px;
}
.about-us .inner .images-with-content dl dd .item{
	grid-column: 1 / 2;
}
.about-us .inner .images-with-content dl dd .item p{
	font-size: 16px;
	color: rgba(var(--color-foreground-secondary));
}
.about-us .inner .images-with-content dl dd .item:nth-child(2){
	grid-column: 2 / 3;
}

.story{
	padding-top: var(--section-padding-top);
}
.story .inner{
	width: 100%;
	max-width: 1440px;
	margin: 0 auto;
	padding: var(--section-padding-horizontal);
}
.story .inner h2{
	font-weight: normal;
	font-size: var(--title-font-size);
	letter-spacing: var(--title-letter-spacing);
	color: var(--theme-default-text-color);
}
.story .inner .steps-wrapper{
	margin-top: 40px;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	gap: 40px;
	align-items: flex-start;
}
.story .inner .steps-wrapper .setps-items{
	position: sticky;
	top: calc(var(--header-height) + 16px);
	display: flex;
	flex-direction: column;
	width: 21.5625%;
}
.story .inner .steps-wrapper .setps-items:before{
	content: "";
	display: block;
	position: absolute;
	z-index: 1;
	left: 0;
	width: 2px;
	height: 100%;
	background-color: rgba(0,0,0, .15);
}
.story .inner .steps-wrapper .setps-items .line{
	position: absolute;
	top: 0;
	z-index: 3;
	width: 2px;
	background-color: #666B6F;
	height: 100%;
	max-height: 0px;
	transition: top .7s cubic-bezier(.4, 0, .25, 1), max-height .7s cubic-bezier(.4, 0, .25, 1);
}
.story .inner .steps-wrapper .setps-items ul li{
	padding: 29px 8px 29px 40px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	opacity: .5;
	cursor: pointer;
}
.story .inner .steps-wrapper .setps-items ul li.active{
	opacity: 1;
}
.story .inner .steps-wrapper .setps-items ul li h5{
	font-size: 16px;
	color: var(--theme-default-text-color);
}
.story .inner .steps-wrapper .setps-items ul li p{
	font-size: 14px;
	color: rgb(var(--color-foreground-secondary));
}
.story .inner .steps-wrapper .content{
	width: 74.6875%;
	display: flex;
	flex-direction: column;
}
.story .inner .steps-wrapper .content ul li{
	display: flex;
	flex-direction: column;
	gap: 24px;
	margin-top: 64px;
}
.story .inner .steps-wrapper .content ul li:first-child{
	margin-top: 0;
}
.story .inner .steps-wrapper .content ul li .setpe{
	padding-left: 12px;
	position: relative;
	display: none;
	flex-direction: column;
	gap: 16px;
}
.story .inner .steps-wrapper .content ul li .setpe h5{
	font-weight: normal;
	font-size: 16px;
	color: var(--theme-default-text-color);
}
.story .inner .steps-wrapper .content ul li .setpe p{
	max-width: 416px;
	color: rgb(var(--color-foreground-secondary));
	font-size: 14px;
}
.story .inner .steps-wrapper .content ul li .setpe:before{
	content: "";
	display: block;
	position: absolute;
	z-index: 1;
	left: 0;
	width: 2px;
	height: 100%;
	background-color: rgba(0,0,0, .15);
}
.story .inner .steps-wrapper .content ul li .info{
	display: flex;
	flex-direction: column;
	gap: 40px;
}
.story .inner .steps-wrapper .content ul li .info .img-box{
	position: relative;
	padding-bottom: 50%;
	border-radius: var(--border-radius-block);
	overflow: hidden;	
}
.story .inner .steps-wrapper .content ul li .info .img-box img{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.story .inner .steps-wrapper .content ul li .info .text{
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
}
.story .inner .steps-wrapper .content ul li .info .text h3{
	max-width: 416px;
	font-size: var(--title-font-size);
	letter-spacing: var(--title-letter-spacing);
	font-weight: normal;
	color: var(--theme-default-text-color);
}
.story .inner .steps-wrapper .content ul li .info .text p{
	max-width: 416px;
	font-size: 16px;
}
.story .inner .steps-wrapper .content ul li .info .text .description{
	font-size: 16px;
	color: rgb(var(--color-foreground-secondary));
}
.story .inner .steps-wrapper .content ul li .info .text .description p:first-child{
	margin-bottom: 20px;
}

.advantage{
	padding-top: var(--section-padding-top);
}
.advantage .outer{
	background-color: #262D33;
	padding-top: var(--section-padding-top);
	padding-bottom: var(--section-padding-top);
}
.advantage .inner{
	width: 100%;
	max-width: 1440px;
	margin: 0 auto;
	padding: var(--section-padding-horizontal);
}
.advantage .inner ul{
	display: flex;
	flex-direction: row;
	justify-content: center;
	flex-wrap: wrap;
	gap: 32px 16px;
}
.advantage .inner ul li{
	width: calc(33.333333% - (16px * 2) / 3);
	display: flex;
	flex-direction: row;
	padding: 40px;
	background-color: #fff;
	border-radius: var(--border-radius-block);
}
.advantage .inner ul li:before{
	content: '';
	display: block;
	width: 0;
	padding-bottom: 100.0%;
}
.advantage .inner ul li .text{
	display: flex;
	flex-direction: column;
	gap: 16px;
	justify-content: space-between;
}
.advantage .inner ul li .text h3{
	font-size: var(--page-title-font-size);
	letter-spacing: var(--page-title-letter-spacing);
	font-weight: normal;
	line-height: var(--font-heading-line-height);
}
.advantage .inner ul li .text p{
	font-size: 14px;
	color: rgb(var(--color-foreground-secondary));
}

@media screen and (max-width: 1300px) {
	
}

@media screen and (max-width: 1024px) {
	.about-us .inner .images-with-content{
		gap: 32px;
	}
	.about-us .inner .images-with-content dl dd{
		display: flex;
		flex-direction: column;
		    grid-column: 6 / 13;
	}
	.about-us .inner .images-with-content dl dd .item p{
		font-size: 14px;
	}
	
	.story .inner .steps-wrapper .setps-items{
		display: none;
	}
	.story .inner .steps-wrapper .content{
		width: 100%;
	}
	.story .inner .steps-wrapper .content ul li{
		margin-top: 32px;
	}
	.story .inner .steps-wrapper .content ul li .setpe{
		display: flex;
	}
	.story .inner .steps-wrapper .content ul li .info{
		gap: 24px;
	}
	.story .inner .steps-wrapper .content ul li .info .text{
		display: flex;
		flex-direction: column;
		gap: 16px;
	}
	
	.advantage .inner ul li{
		width: calc(50% - 16px / 2);
	}
}

@media screen and (max-width: 767px) {
	.about-us .inner .title{
		margin-top: 24px;
		gap: 24px;
	}
	
	.images-with-content-imgs{
		display: flex;
		flex-direction: column;
	}
	.images-with-content-imgs .item{
		height: auto;
	}
	.images-with-content-imgs .item img{
		position: static;
		height: auto;
	}
	
	.about-us .inner .images-with-content{
		gap: 24px;
	}
	.about-us .inner .images-with-content dl{
		display: flex;
		flex-direction: column;
	}
	
	.story .inner .steps-wrapper .content ul li .setpe p{
		font-size: 12px;
	}
	.story .inner .steps-wrapper .content ul li .info .text p{
		font-size: 14px;
	}
}

@media screen and (max-width: 600px){
	.advantage .inner ul li{
		width: 100%;
	}
}