.marketplace {
	
}

.marketplace-banner {
	margin-bottom: 30px;
}

.marketplace__grid {
	display: flex;
	flex-wrap: wrap;
	gap: 30px 10px;
	margin-bottom: 30px;
}

.marketplace__action {
	display: flex;
	justify-content: center;
	margin-bottom: 120px;
}

.marketplace__action .two_row_text {
	display: inline-block;
	line-height: 1.3;
}

.card-marketplace {
	flex: 1 0 0;
	max-width: 100%;
	width: 100%;
}

.card-marketplace__pic {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 165px;
	height: 165px;
	margin: 0 auto 10px;
	border: 3px solid #ffcc00;
	border-radius: 50%;
}

.card-marketplace__icon {

}

.card-marketplace__article {
	text-align: center;
}

.card-marketplace__title {
	text-transform: uppercase;
	color: #0d6ee2;
	font-weight: 600;
}

.card-marketplace__descr {

}

.marketplace-steps {
	margin-bottom: 60px;
}

.marketplace-steps__title {
	margin-bottom: 30px;
	text-align: center;
	text-transform: uppercase;
	color: #0d6ee2;
	font-weight: 700;
	font-size: 30px;
}

.marketplace-steps__grid {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 180px;
}

.step-marketplace {
	position: relative;
	display: flex;
	align-items: center;
	gap: 15px;
}

.step-marketplace:not(:last-child):after {
	content: '';
	position: absolute;
	display: block;
	width: 140px;
	height: 1px;
	top: 45px;
	left: calc(100% + 20px);
	border-bottom: 1px dashed #0d6ee2;
}

.step-marketplace__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 90px;
	width: 90px;
	height: 90px;
	background-color: #0d6ee2;
	border-radius: 50%;
}

.step-marketplace__icon-text {
	color: #ffcc00;
	font-size: 25px;
}

.step-marketplace__content {

}

.step-marketplace__title {
	text-transform: uppercase;
	color: #333333;
	font-weight: 600;
}

.step-marketplace__descr {
	color: #818489;
}

.marketplace-conditions {
	margin-bottom: 60px;
}

.marketplace-conditions__title {
	display: flex;
	align-items: center;
	gap: 20px;
	margin-bottom: 10px;
}

.marketplace-conditions__title-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 90px;
	width: 90px;
	height: 90px;
	border-radius: 50%;
	background-color: #eceff1;
}

.marketplace-conditions__title-text {
	text-transform: uppercase;
	font-size: 20px;
}

.marketplace-conditions__content {
	padding-left: 18px;
}

.marketplace-conditions__content ul {
	list-style-type: disc;
}

@media only screen and (max-width: 1500px) {
	.card-marketplace {
		flex: 1 0 calc(100% / 3 - 10px);
		max-width: calc(100% / 3 - 10px);
	}
}

@media only screen and (max-width: 1300px) {
	.marketplace-steps__grid {
		gap: 50px
	}

	.step-marketplace:not(:last-child):after {
		width: 30px;
		left: calc(100% + 10px);
	}
}

@media only screen and (max-width: 1024px) {
	.card-marketplace__pic {
		width: 100px;
		height: 100px;
	}

	.card-marketplace__icon {
		width: 60%;
	}

	.step-marketplace__icon {
		flex: 0 0 60px;
		width: 60px;
		height: 60px;
	}

	.marketplace-conditions__title-icon {
		flex: 0 0 60px;
		width: 60px;
		height: 60px;
	}

	.step-marketplace:not(:last-child):after {
		display: none;
	}

	.marketplace-steps__grid {
		flex-direction: column;
		align-items: flex-start;
		gap: 15px;
	}

	.marketplace-steps__title {
		font-size: 22px;
	}

	.marketplace__action {
		margin-bottom: 60px;
	}
}

@media only screen and (max-width: 768px) {
	.card-marketplace {
		flex: 1 0 calc(50% - 10px);
		max-width: calc(50% - 10px);
	}
}

@media only screen and (max-width: 480px) {
	.card-marketplace {
		flex: 1 0 100%;
		max-width: 100%;
	}
}