.whatWeDo {
	width: 100%;
	min-height: 100vh;
}
.whatWeDo h1{
	text-align: center;
	font-weight: bold;
}
.background {
	width: 100%;
	min-height: 70vh;
	background-image: url(../images/bg3-whatWeDo.jpg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	background-color: rgba(0,0,0,0.1);
}
.background h1 {
	width: 100%;
	text-align: center;
	color: #fff;
	line-height: 44px;
	padding: 20px 10px;
	position: relative;
	top: 100px;
}
.whatWeDoContent {
	width: 70%;
	min-height: 15vh;
	margin-left: 15%;
	border-radius: 7px;
	padding: 30px 10px;
	background-color: #ffbb99;
	position: relative;
	top: -50px;
}
.whatWeDoContent h2 {
	text-align: center;
	line-height: 40px;
}
@media screen and (max-width: 1024px) {
	.background {
		min-height: 40vh;
	}
	.whatWeDoContent {
		min-height: 8vh;
	}
}
@media screen and (max-width: 600px) {
	.background {
		min-height: 70vh;
	}
	.whatWeDoContent {
		width: 96%;
		margin-left: 2%;
		top: -65px;
	}
}
@media screen and (max-width: 350px) {
	.background {
		min-height: 90vh;
	}
	.whatWeDoContent {
		min-height: 4vh;
		padding: 5px 5px;
		top: -35px;
	}
	.whatWeDoContent h2 {
		line-height: 32px;
	}
}

.whatWeDoContent2 {
	width: 90%;
	min-height: 80vh;
	margin-left: 5%;
	display: flex;
	flex-wrap: wrap;
}
.whatWeDoContentRight {
	width: 50%;
	padding: 2%;
}
.whatWeDoContentRight img {
	width: 100%;
	border-radius: 6px;
	transition: 1s;
}
.whatWeDoContentRight img:hover {
	transform: scale(1.1);
}
.whatWeDoContentLeft {
	width: 50%;
	padding: 2%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.whatWeDoContentLeft h1 {
	text-align: center;
	line-height: 50px;
}
@media screen and (max-width: 1024px) {
	.whatWeDoContentRight, .whatWeDoContentLeft {
		width: 100%;
	}
}

.whatWeDoStatement {
	width: 70%;
	margin-left: 15%;
	padding: 20px 10px;
	border-radius: 7px;
	background-color: #ffbb99;
	box-shadow: 5px 8px 5px 0px rgba(0,0,0,0.7);
	transition: 0.3s;

}
.whatWeDoStatement:hover {
	transform: scaleY(1.1);
}
.whatWeDoStatement h1 {
	text-align: center;
	line-height: 44px;
}
@media screen and (max-width: 800px) {
	.whatWeDoStatement {
		width: 96%;
		margin-left: 2%;
	}
}