@charset "UTF-8";
.about-title .h1 {
		max-width: 11.48em;
}
@media only screen and (min-width: 1024px) {
		.about-title .h1 {}
		.about-title .text {
				font-size: 18px;
				max-width: 35.277em;
				align-self: center;
		}
}
.about-list {
		list-style: none;
		margin: 0 auto;
		padding: 0;
		display: flex;
		flex-direction: column;
		gap: 10px;
		font-weight: 300;
}
.about-list li {
		list-style: none;
		margin: 0;
		flex: 0 0 auto;
		width: 100%;
		padding: 20px 20px 40px 20px;
		background: var(--white);
		border-radius: 10px;
		position: relative;
		display: flex;
		flex-direction: column;
}
.about-list .pic {
		display: block;
		width: 206px;
		height: 206px;
		position: relative;
		margin: -9px 0 12px -32px;
}
.about-list .pic img {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		object-fit: contain;
		object-position: center;
		backface-visibility: hidden;
		will-change: transform;
		transition: transform 1s var(--move-timing);
		transform: scale(calc(0.8 + 0.2 * var(--percent)));
}
.about-list .h2 {
		position: relative;
		font-weight: 300;
}
.about-list .text {
		max-width: 28.46em;
		position: relative;
}
@media only screen and (min-width: 740px) {
		.about-list li {
				justify-content: center;
				min-height: 400px;
		}
		.about-list li:nth-child(odd) {
				padding-right: 50%;
		}
		.about-list li:nth-child(even) {
				padding-left: 50%;
		}
		.about-list .pic {
				position: absolute;
				pointer-events: none;
				top: 50%;
				transform: translate3d(0, -50%, 0);
				width: 50%;
				height: 100%;
				min-width: 256px;
				max-height: 256px;
		}
		.about-list li:nth-child(odd) .pic {
				right: 0;
		}
		.about-list li:nth-child(even) .pic {
				left: 0;
		}
}
@media only screen and (min-width: 1024px) {
		.about-list {
				font-size: 18px;
		}
		.about-list .h2 {
				font-size: 2.75rem;
				margin-bottom: 20px;
		}
		.about-list .pic {
				width: calc(100% - 650px);
		}
}
@media only screen and (min-width: 1280px) {
		.about-list {
				font-size: 24px;
		}
		.about-list li {
				padding: 80px;
				min-height: 552px;
		}
		.about-list li:nth-child(odd) {
				padding-right: 511px;
		}
		.about-list li:nth-child(even) {
				padding-left: 511px;
		}
		.about-list .pic {
				width: calc(100% - 760px);
				min-width: 480px;
				max-height: 480px;
		}
}
/*animations*/
.about-list li > *:not(.pic) {
		backface-visibility: hidden;
		transition-property: transform, opacity;
		transition-duration: 1.5s;
		transition-timing-function: var(--move-timing);
		transform: translate3d(0, 0, 0);
		transition-delay: 0.2s;
}
.about-list li:not(.visible) > *:not(.pic) {
		opacity: 0 !important;
		pointer-events: none !important;
		transform: translate3d(0, var(--distance), 0);
}
.about-list li > .text {
		transition-delay: 0.3s;
}