@charset "UTF-8";
.clientele .inner-title .h1 {
		max-width: 12.803em;
}
.clientele .inner-title .text {
		max-width: 21.208em;
}
@media only screen and (min-width: 1024px) {
		.clientele .inner-title .h1 {
				width: 44.8125rem;
				font-size: 3.5rem;
		}
		.clientele .inner-title .text {
				margin: 0;
		}
}
.clientele-list {
		list-style: none;
		margin: 0;
		padding: 0;
		display: flex;
		flex-direction: column;
		gap: 17px;
		font-size: 16px;
}
.clientele-list li {
		list-style: none;
		margin: 0;
		flex: 0 0 auto;
		width: 100%;
		padding: 25px 25px 40px 25px;
		background: var(--white);
		border-radius: 10px;
		position: relative;
		display: flex;
		flex-direction: column;
}
.clientele-list li.dark {
		background: #020C1C;
		color: var(--white);
}
.clientele-list li.dark a {
		color: var(--white);
}
.clientele-list .pic {
		display: block;
		width: 220px;
		height: 220px;
		position: relative;
		margin: 0 0 34px -10px;
}
.clientele-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)));
}
.clientele-list .h2 {
		position: relative;
		font-weight: normal;
		font-size: 24px;
		line-height: 1.3;
		margin: 0 0 20px 0;
		max-width: 9em;
}
.clientele-list .text {
		max-width: 28.458em;
		position: relative;
}
.clientele-list .link {
		margin: 40px 0 0 0;
}
@media only screen and (min-width: 740px) {
		.clientele-list li {
				padding-right: 236px;
				justify-content: center;
				min-height: 400px;
		}
		.clientele-list .pic {
				position: absolute;
				pointer-events: none;
				top: 50%;
				transform: translate3d(0, -50%, 0);
				width: calc(100% - 575px);
				right: 0;
				height: 100%;
				min-width: 226px;
				max-height: 226px;
		}
}
@media only screen and (min-width: 1024px) {
		.clientele-list {
				font-size: 24px;
				font-weight: 300;
		}
		.clientele-list .h2 {
				font-size: 3.5rem;
				font-weight: 300;
				line-height: 1.1;
		}
		.clientele-list .pic {
				width: calc(100% - 690px);
		}
}
@media only screen and (min-width: 1280px) {
		.clientele-list li {
				min-height: 352px;
		}
		.clientele-list li {
				padding: 120px 500px 120px 80px;
				min-height: 588px;
		}
		.clientele-list .pic {
				width: calc(100% - 650px);
				min-width: 400px;
				max-height: 400px;
		}
}
@media only screen and (min-width: 1350px) {
		.clientele-list .pic {
				transform: translate3d(9%, -50%, 0);
		}
}
/*animations*/
.clientele-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;
}
.clientele-list li:not(.visible) > *:not(.pic) {
		opacity: 0 !important;
		pointer-events: none !important;
		transform: translate3d(0, var(--distance), 0);
}
.clientele-list li > .text {
		transition-delay: 0.3s;
}