/*********************************
*                                *
*             STEPS              *
*                                *
**********************************/

.steps-num, 
.steps-text {
	font-family: 'Manrope';
	font-style: normal;
}

.steps {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	gap: 15px;
	width: 100%;
	margin: 20px 0;
}

.steps-item {
	width: 30%;
}

.steps-bg {
	display: flex;
	align-items: flex-end;
	position: relative;
	width: 100%;
	height: 260px;
}

.steps-num {
	font-weight: 800;
	font-size: 100px;
	color: #fff;
	text-shadow: 0px 0px 15px #444;
	cursor: default;
	padding-left: 50px;	
}

.steps-arrow {
	position: absolute;
	top: 0;
	width: 35px;
	height: 100%;
}

.arrow-svg {
  height: 100%;
  width: 100%;
  object-fit: fill;
  display: block;
}

.steps .steps-item:nth-child(1) .steps-bg, 
.steps .steps-item:nth-child(2) .steps-bg, 
.steps .steps-item:nth-child(3) .steps-bg {
	background-size: cover;
	background-position: center;
}

.steps-item:nth-child(1) .steps-bg .steps-arrow:nth-child(1),
.steps-item:nth-child(2) .steps-bg .steps-arrow:nth-child(1),
.steps-item:nth-child(3) .steps-bg .steps-arrow:nth-child(1),
.steps-item:nth-child(1) .steps-bg .steps-arrow:nth-child(2),
.steps-item:nth-child(2) .steps-bg .steps-arrow:nth-child(2),
.steps-item:nth-child(3) .steps-bg .steps-arrow:nth-child(2) {
	background-size: cover;
	background-position: center;
}

.steps .steps-item:nth-child(1) .steps-bg {
	background-image: url('../images/steps/step1.jpg');
}

.steps .steps-item:nth-child(2) .steps-bg {
	background-image: url('../images/steps/step2.jpg');
}

.steps .steps-item:nth-child(3) .steps-bg {
	background-image: url('../images/steps/step3.jpg');
}

.steps-item:nth-child(1) .steps-bg .steps-arrow:nth-child(1),
.steps-item:nth-child(2) .steps-bg .steps-arrow:nth-child(1),
.steps-item:nth-child(3) .steps-bg .steps-arrow:nth-child(1) {
  left: 0;
  background-image: url('../images/steps/arrow-left.svg');
}

.steps-item:nth-child(1) .steps-bg .steps-arrow:nth-child(2),
.steps-item:nth-child(2) .steps-bg .steps-arrow:nth-child(2),
.steps-item:nth-child(3) .steps-bg .steps-arrow:nth-child(2) {
  right: 0;
  background-image: url('../images/steps/arrow-right.svg');
}

.steps-text {
	display: flex;
	flex-direction: column;
	gap: 25px;
	font-weight: 300;
	font-size: 18px;
	padding-right: 30px;
}

.steps-text h3 {
	padding-top: 20px;
}

.steps-text p{
	font-weight: 200;
	font-size: 19px;
	line-height: 30px;
}

@media (max-width: 640px) {
	
	.steps-item:nth-child(1) .steps-bg .steps-arrow:nth-child(1),
	.steps-item:nth-child(2) .steps-bg .steps-arrow:nth-child(1),
	.steps-item:nth-child(3) .steps-bg .steps-arrow:nth-child(1),
	.steps-item:nth-child(1) .steps-bg .steps-arrow:nth-child(2),
	.steps-item:nth-child(2) .steps-bg .steps-arrow:nth-child(2),
	.steps-item:nth-child(3) .steps-bg .steps-arrow:nth-child(2) {
		background-image: none;
	}
	
	.steps-item {
		width: 100%;
	}
	
	.steps-num {
		padding-left: 30px;	
	}

	.steps-text {
	padding: 0 30px 30px;
	}
	

	
}