.steps {
	padding-bottom: 90px;
}

@media (max-width: 478px) {
	.steps {
		padding-bottom: 20px;
	}
}

.steps__list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	position: relative;
}

.steps__list::before {
	content: '';
	position: absolute;
	top: -20px;
	left: -25px;
	background-image: url('./../img/icons/planes.svg');
	background-position: center center;
	background-repeat: no-repeat;
	width: 100%;
	height: 380px;
	background-size: contain;
	z-index: 3;
	pointer-events: none;
}

.step-item {
	background-color: var(--white);
	border: 1px solid var(--border-color);
	border-radius: 20px 20px 10px 10px;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	padding: 30px;
	border-radius: 36px;
}

.step-item:first-child {
	z-index: 4;
}

.step-item__number {
	font-size: clamp(2.75rem, 2.1707rem + 2.439vw, 4rem);
	font-weight: 700;
	color: var(--primary);
	margin-bottom: 36px;
	line-height: 1;
}

.step-item__title {
	font-size: clamp(1.125rem, 0.9512rem + 0.7317vw, 1.5rem);
	font-weight: 700;
	margin-bottom: 15px;
}

.step-item__description {
	line-height: 1.3;
	max-width: 275px;
}

@media (max-width: 1200px) {
	.step-item {
		padding: 20px;
	}

	.step-item__description {
		max-width: 300px;
	}
}

@media (max-width: 960px) {
	.step-item__number {
		margin-bottom: 20px;
	}
}

@media (max-width: 768px) {
	.steps__list::before {
		background-image: url('./../img/icons/planes-mobile.svg');
		z-index: 6;
		height: calc(100% + 40px);
		width: 100%;
		left: 0;
		background-position: center right;
	}

	/* .step-item:nth-child(2) {
		z-index: 6;
		position: relative;
	} */

	.steps__list {
		grid-template-columns: 1fr;
	}

	.step-item__description {
		max-width: 100%;
	}

	.step-item__header {
		display: flex;
		align-items: center;
		gap: 20px;
	}

	.step-item__title {
		max-width: 150px;
	}
}