@charset "UTF-8";
.fees .list {
		list-style: none;
		margin: 0;
		padding: 0;
		display: grid;
		gap: 5px;
		flex: 0 0 auto;
		width: 100%;
}
.fees .el {
		list-style: none;
		margin: 0;
		padding: 50px 30px;
		background: var(--white);
		border-radius: 10px;
		flex: 0 0 auto;
		width: 100%;
		backface-visibility: hidden;
		will-change: transform;
		transform: translate3d(0, 0, 0);
		transition: transform 1s var(--move-timing);
}
@media only screen and (min-width: 745px) and (max-width: 1023px) {
		.fees .list {
				grid-template-columns: repeat(2, 1fr);
		}
}
@media only screen and (max-width: 1023px) {
		.fees .list.js_detect-scroll .el {
				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.5s;
		}
		.fees .list.js_detect-scroll:not(.visible) .el {
				opacity: 0 !important;
				pointer-events: none !important;
				transform: translate3d(0, var(--distance), 0);
		}
		.fees .list.js_detect-scroll .el:nth-child(1) {
				transition-delay: 0.1s;
		}
		.fees .list.js_detect-scroll .el:nth-child(2) {
				transition-delay: 0.2s;
		}
		.fees .list.js_detect-scroll .el:nth-child(3) {
				transition-delay: 0.3s;
		}
		.fees .list.js_detect-scroll .el:nth-child(4) {
				transition-delay: 0.4s;
		}
}
@media only screen and (min-width: 1024px) {
		.fees .list {
				grid-template-columns: repeat(3, 1fr);
		}
		.fees .el {
				padding: 50px;
		}
		.fees .el:nth-child(1) {
				transform: translate3d(0, calc(var(--distance) - var(--distance) * var(--percent)), 0);
		}
		.fees .el:nth-child(2) {
				transform: translate3d(0, calc(var(--distance) * 2 - var(--distance) * 2 * var(--percent)), 0);
		}
		.fees .el:nth-child(3) {
				transform: translate3d(0, calc(var(--distance) * 3 - var(--distance) * 3 * var(--percent)), 0);
		}
}
.fees .el img {
		height: 160px;
		width: auto;
		max-width: 100%;
		object-fit: contain;
		object-position: center;
		margin: 0 0 40px 0;
}
.fees .el .h3 {
		font-size: 30px;
		line-height: 1.2;
		margin: 0 0 20px 0;
}
.fees .el .text {
		font-size: 16px;
		line-height: 1.4;
		color: var(--blackgrey);
}
.fees .inner-title .text {
		max-width: 23.7em;
}
@media only screen and (min-width: 1024px) {
		.fees .inner-title {
				margin-bottom: 50px;
		}
		.fees .inner-title .text {
				font-size: 20px;
		}
		.fees .el img {
				margin-top: -20px;
		}
}