.catalog_ref a{
	color: #399CA7;
	font-size: 17px;
}

.steps{
	max-width: 900px;
	display: grid;
	margin: 35px auto 40px auto;
	display: grid;
	grid-template-columns: 40px 1fr 40px 1fr 40px 1fr;
	grid-column-gap: 15px;
	grid-row-gap: 35px;
	justify-content: center;
}
.step{
	display: flex;
}
.step_number{
	font-size: 20px;
	width: 40px;
	height: 40px;
	border: 3px solid #399CA7;
	border-radius: 25px;
	display: flex;
	background-color: white;
}
.step_number span{
	margin: auto;
}
.step_description{
/*	margin-left: 15px;*/
}
.step_title{
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 5px;
}
.step_text ul li{
	margin: 0 0 5px 5px;
	list-style: none;
}


.colors{
	max-width: 800px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	grid-column-gap: 25px;
	justify-content: center;
}
.grid_item{
	justify-content: center;
	margin: 20px auto;
}
.grid_item p{
	text-align: center;
	margin-bottom: 5px;
	font-size: 18px;
	font-weight: bold;
}
.grid_item img{
	max-width: 100%;
	height: 200px;
	object-fit: cover;
	border-radius: 15px
}


@media (max-width:767px){
	.grid_item img{
		height: 200px;
	}
	.colors{
		grid-template-columns: 1fr 1fr;
	}
	.steps{
		grid-template-columns: 30px 1fr;
		grid-column-gap: 7px;
	}
	.step_number{
		width: 30px;
		height: 30px;
	}
}
