.block_grid_step{
	background-color: #F0F7F7;
	position: relative;
	padding-top: 30px;
	padding-bottom:40px;
}
.step_main{
	display:flex;
	display:-webkit-flex;
	flex-direction:row;
	-webkit-flex-direction:row;
	justify-content:space-around;
	-webkit-justify-content:space-around;
	margin-top:20px;
}
.step{
	border-radius: 7px;
	background-color: #D5EAE9;
	-webkit-transform:scale(0.8);
	opacity:0;
	transform:scale(0.8);
	-webkit-transition:-webkit-transform 1s cubic-bezier(0.6,0.2,0.1,1) 0s,opacity 1s cubic-bezier(0.6,0.2,0.1,1) 0s;
	transition:transform 1s cubic-bezier(0.6,0.2,0.1,1) 0s,opacity 1s cubic-bezier(0.6,0.2,0.1,1) 0s;
}
.step_active{
	-webkit-transform:scale(1);
	opacity:1;
	transform:scale(1);
	-webkit-transition:-webkit-transform 1s cubic-bezier(0.6,0.2,0.1,1) 0s,opacity 1s cubic-bezier(0.6,0.2,0.1,1) 0s;
	transition: transform 1s cubic-bezier(0.6,0.2,0.1,1) 0s,opacity 1s cubic-bezier(0.6,0.2,0.1,1) 0s;
}
.step_block_up{
	background-color: #bab2fc;
	border-radius: 7px 7px 0px 0px;
	border-bottom: 0px;
	width:100%;
	height:130px;
	display:flex;
	display:-webkit-flex;
	justify-content:center;
	-webkit-justify-content:center;
	align-items:center;
	-webkit-align-items:center;
	position:relative;
}
.circle_block{
	font: 200 48px/54px Circe;
	color: #272733;
	width: 100px;
	height: 100px;
	background: #D5EAE9;
	border-radius: 50%;
	text-align:center;
	line-height:100px;
}
.circle_block:after{
	content: "";
	position: absolute;
	left: 50%;
	margin-left:-58px;
	top: 50%;
	margin-top:-58px;
	width: 115px;
	height: 115px;
	border: 1px solid hsla(0, 0%, 100%, .28);
	border-radius: 50%;
}
.step_block_content{
	padding: 20px 13px 13px;
}
.step_block_content_h{
	font-size: 26px;
	line-height: 28px;
	font-weight:bold;
	color: #272733;
	font-family: 'Roboto Condensed', sans-serif;
	padding-bottom:10px;
}
.step_block_content_text{
	font-family: 'Roboto Condensed', sans-serif;
	color: #272733;
	line-height:27px;
	font-size:17px;
	/*padding-bottom:10px;*/
}
.step_block_text_time{
	padding-top:10px;
	margin-top:10px;
	color: hsla(0, 0%, 53%, .8);
	border-top: 1px solid hsla(0, 0%, 81%, .43);
	font-family: 'Roboto Condensed', sans-serif;
	color: #272733;
}








.grid {
  margin-top:30px;
  display: grid;
  grid-template-areas: "a b c"
  										"d e f";
  grid-column-gap:30px;
  grid-row-gap:30px;
  margin-left:20px;
  margin-right:20px;
  background:#F0F7F7;
}
@media (max-width: 1200px) {
	.grid {
	  grid-template-areas: "a b" "c d" "e f";
	  grid-column-gap:60px;
	  grid-row-gap:60px;
	  margin-left:90px;
	  margin-right:90px;
	}
	.step_block_content_h{
		font-size: 22px;
	}
}
@media (max-width: 950px) {
	.grid {
	  grid-template-areas: "a" "b" "c" "d" "e" "f";
	  grid-column-gap:40px;
	  grid-row-gap:40px;
	  margin-left:90px;
	  margin-right:90px;
	}
	.step_block_content_h{
		font-size: 26px;
	}
}

.grid__item:nth-child(1) {
  grid-area: a;
}

.grid__item:nth-child(2) {
  grid-area: b;
}

.grid__item:nth-child(3) {
  grid-area: c;
}
.grid__item:nth-child(4) {
  grid-area: d;
}

.grid__item:nth-child(5) {
  grid-area: e;
}

.grid__item:nth-child(6) {
  grid-area: f;
}
.base{
	width:100px;
}










.grid__item:nth-child(1) .step_block_up{
	background-color: rgba(69,54,110,1.00);
}
.grid__item:nth-child(2) .step_block_up{
	background-color: #5fd6a5;
}
.grid__item:nth-child(3) .step_block_up{
	background-color: #ff8288;
}
.grid__item:nth-child(4) .step_block_up{
	background-color: rgba(254,209,107,1.00);
}
.grid__item:nth-child(5) .step_block_up{
	background-color: rgba(52,148,186,1.00);
}
.grid__item:nth-child(6) .step_block_up{
	background-color: rgba(51,126,61,1.00);
}





@font-face {
font-family: 'Roboto Condensed'; 
src: url(../css/RobotoCondensed-Light.ttf) format("truetype"); 
font-style: normal; 
font-weight:lighter; 
} 