.single_solution_section {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	margin-bottom: 140px;
}

.single_solution_section:nth-child(even) {
	flex-direction: row-reverse;
}

.single_solution_section_col_content {
	width: 50%;
	padding-right: 100px;
}

.single_solution_section_col_content2{
	width: 50%;
}

.single_solution_section:nth-child(even) .single_solution_section_col_content {
	padding-left: 100px;
	padding-right: 0;
}

.single_solution_section_title {
	margin-bottom: 30px;
}

.single_solution_section_col_img {
	width: 100%;
}

.single_solution_section_col_img img {
	width: 100%;
	display: block;
	transform: translate(100px, 0px);
	opacity: 0;
	transition: 0.9s;
}

.single_solution_section:first-child .single_solution_section_col_img img {
	transition: 0.9s 0.3s;
}

.single_solution_section:nth-child(even) .single_solution_section_col_img img {
	transform: translate(-200px, 0px);
}

.single_solution_section:nth-child(odd) .single_solution_section_col_img img {
	transform: translate(200px, 0px);
}

.single_solution_section .single_solution_section_col_img img.inc_animated {
	transform: translate(0px, 0px);
	opacity: 1;
}

.single_solution_section_btn {
	margin-top: 40px;
	display: inline-block;
}

.btn_solutions_resp{
	display: none;
}

@media screen and (max-width: 1300px) {

	.single_solution_section_col_content {
		padding-right: 50px;
	}

	.single_solution_section:nth-child(even) .single_solution_section_col_content {
		padding-left: 50px;
	}

}

@media screen and (max-width: 991px) {

	.single_solution_section {
		margin-bottom: 80px;
	}

	.single_solution_section_col_content {
		width: 100%;
		padding-right: 0;
		padding-left: 0 !important;
	}

	.single_solution_section_col_img {
		width: 100%;
		margin-top: 50px;
	}

	.single_solution_section_col_img img {
		max-width: 600px;
	}

	.btn_solutions{
		display: none;
	}

	.btn_solutions_resp{
		display: block;
	}

	.single_solution_section_col_content2 {
		width: 100%;
		display: flex;
		flex-direction: column-reverse;
	  }

}