#services-block .items_services {
	gap: 30px;
	display: grid;
	justify-items: center;
	grid-template-columns: repeat(2, 1fr);
	transition: all 0.3s ease-in;
}
#services-block .item_block {
	padding: 20px;
	border-radius: 10px;
	background-color: var(--39);
	gap: 30px;
/*	max-width: calc(50% - 20px);*/
	width: 100%;
	transition: all 0.3s ease-in;
}
#services-block .item_block .left_side {
	flex-direction: column;
	max-width: 264px;
	transition: all 0.3s ease-in;
}
#services-block .item_block h5 {
	margin-bottom: 20px;
	transition: all 0.3s ease-in;
}
#service-block .post_content p {
	font-size: inherit;
	line-height: inherit;
	letter-spacing: inherit;
	transition: all 0.3s ease-in;
}
#services-block .item_block .post_price {
	background: linear-gradient(90deg, #F66D3E 0.03%, rgba(246, 109, 62, 0.00) 99.97%);
	padding: 6px 20px;
	margin: 30px 0;
	transition: all 0.3s ease-in;
}
#services-block .item_block .right_side {
	width: 100%;
	height: 100%;
	max-width: 226px;
	min-width: 226px;
	transition: all 0.3s ease-in;
}
#services-block .item_block .right_side img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 10px;
	transition: all 0.3s ease-in;
}
#services-block .bottom {
	gap: 10px;
	align-items: center;
	transition: all 0.3s ease-in;
} 
#services-block .bottom .text {
	width: 51px;
	transition: all 0.3s ease-in;
}

/* MEDIA */

@media (max-width: 1150px) {
	#services-block .items_services {
		justify-content: center;
		gap: 15px;
		transition: all 0.3s ease-in;
	}
	#services-block .item_block {
		max-width: 100%;
		transition: all 0.3s ease-in;
	}
	#services-block .item_block .left_side {
		max-width: 100%;
		transition: all 0.3s ease-in;
	}
	#services-block .bottom {
		gap: 10px;
		align-items: flex-start;
		transition: all 0.3s ease-in;
		flex-direction: column-reverse;
	} 
	#services-block .bottom .text {
		width: 100%;
		transition: all 0.3s ease-in;
	}
}
@media (max-width: 1080px) {
	#services-block .items_services {
	grid-template-columns: 1fr;
	transition: all 0.3s ease-in;
}
}
@media (max-width: 797px) {
	#services-block .item_block .post_price {
		margin: 15px 0;
		transition: all 0.3s ease-in;
	}
}
/*@media (max-width: 595px) {
	#services-block .item_block .right_side {
		transition: all 0.3s ease-in;
		display: none;
	}
}*/
@media (max-width: 520px) {
	#services-block .item_block .left_side{
		width: 80%;
	}
}
@media (max-width: 500px) {
	#services-block .item_block{
		flex-wrap: wrap;
	}
	#services-block .items_services{
		align-items: center;
		justify-items: none;
	}
	#services-block .item_block .right_side{
		margin: 0 auto;
	}
}