.payment {
	display: flex;
	flex-direction: row-reverse;
	gap: 40px;
}
.payment__main {
	flex: 1 1 auto;
	min-width: 0;
}
.payment__img {
	flex: 0 0 400px;
}
.payment__img-inner {
	width: 100%;
	padding-top: 100%;
	position: relative;
	border-radius: 16px;
	overflow: hidden;
	background-color: var(--color-gray-05);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}
@media (max-width: 1240px) {
	.payment {
		flex-direction: column;
	}
	.payment__img {
		display: none;
	}
}