
/*banner*/
.banner__about__us{
	background-image: url('../img/banner-aboutUs.jpg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	width: 100%;
	height: 300px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	z-index: 1;
}
.banner__about__us h1{
	font-size: 45px;
	color: #fff;
	font-weight: normal;
	letter-spacing: 1px;
	text-transform: uppercase;
}
.banner__about__us::before{
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background-color: #434a544d;
	z-index: -1;
}
/*end banner*/

/*section text*/
.section__text{
	padding-top: 50px;
}
.main__section__text{
	width: 90%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: 0 auto;
}
.text__w50{
	width: 50%;
	padding: 0 15px;
}
.text__w25{
	width: 25%;
	padding: 0 15px;
}

.text__w50 h1{
	font-size: 40px;
	font-weight: 600;
	color: #666666;
	line-height: 1.3;
	letter-spacing: 1px;
}
.text__w25 p{
	font-size: 14px;
	color: #7e7e7e;
	letter-spacing: 1px;
	margin-bottom: 20px;
}
/*end section text*/

/*section image*/
.section__image{
	padding: 50px 0;
}
.main__section__image{
	width: 90%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: 0 auto;
}
.list__about__image{
	width: 32%;
	margin-bottom: 20px;
	position: relative;
}
.list__about__image img{
	width: 100%;
	height: auto;
	object-fit: cover;
	display: block;
}
.list__about__image::before{
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 60%;
	background: linear-gradient(to bottom, rgba(101,100,96,0) 0%,rgba(101,100,96,0.65) 100%);
}
.text__img{
	position: absolute;
	bottom: 33px;
	left: 50%;
	transform: translateX(-50%);
	text-align: center;
	z-index: 2;
}
.text__img h3{
	font-size: 20px;
	font-weight: normal;
	letter-spacing: 1px;
	color: #fff;
	margin-bottom: 12px;
}
.text__img p{
	font-size: 13px;
	color: #fff;
	letter-spacing: 1px;
}
/*end section image*/

/*section report*/
.section__report{
	background-image: url('../img/banner-exp.jpg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	background-attachment: fixed;
	padding: 100px 74px;
	position: relative;
	z-index: 1;
}
.section__report::before{
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to bottom, rgba(101,100,96,0.1) 0%,rgba(101,100,96,0.6) 60%,rgba(101,100,96,0.8) 100%);
	z-index: -1;
}
.report__content{
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 80px;
}
.report__content__text{
	width: 50%;
	display: flex;
	align-items: center;
	text-align: center;
	gap: 25px;

}
.report__content__text p{
	font-size: 40px;
	color: #fff;
	letter-spacing: 1px;
	text-transform: uppercase;
}
.report__content__text img{
	width: 55px;
	height: 55px;
	object-fit: cover;
}

.report__number{
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 20px;
	font-size: 50px;
	font-weight: 700;
	color: #fff;
	text-align: center;
}
.number{
	text-align: center;
	padding: 15px 50px;
	display: flex;
	flex-direction: column; 
	align-items: center;
}
.report__number p{
	font-size: 15px;
	font-weight: 400;
	letter-spacing: 2px;
	text-transform: uppercase;
}
/*end section report*/


/*section activity*/
.section__activity{
	padding: 50px 0;
}
.main__activity{
	width: 90%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: 0 auto;
	padding: 0 100px;
}
.list__activity{
	width: 48%;
	display: flex;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 30px;
}
.list__activity .activity__image{
	width: 20%;
	min-width: 100px;
}
.list__activity img{
	width: 100%;
	aspect-ratio: 1/1;
	object-fit: cover;
}
.list__activity .activity__content{
	flex: 1;
}
.activity__content p{
	font-size: 14px;
	color: #7e7e7e;
	letter-spacing: 1px;
	margin-bottom: 15px;
}
.activity__content a{
	font-size: 14px;
	color: #fff;
	padding: 5px 12px;
	background-color: #49524f;
	text-transform: uppercase;
	display: inline-block;
}
.all__services{
	display: block;
	margin: 0 auto;
	padding: 15px 35px;
	background-color: #2C3E50;
	font-size: 11px;
	font-weight: 700;
	color: #fff;
	letter-spacing: 2px;
	text-transform: uppercase;
	width: max-content;
}
/*end section activity*/


@media only screen and (max-width: 991px){
	.section__report{
		padding: 70px 20px;
	}
	.text__w50, .text__w25{
		width: 100%;
		padding: 0;
	}
	.text__w50 h1{
		margin-bottom: 20px;
		font-size: 30px;
	}
	.text__w50 h1,
	.text__w25 p{
		text-align: center;
	}
	.list__about__image,
	.list__activity{
		width: 100%;
	}
	.report__content{
		gap: 40px;
	}
	.report__content__text{
		width: 80%;
		flex-direction: column;
	}
	.report__number{
		flex-direction: column;
	}
	.main__activity{
		padding: 0;
	}
}

@media only screen and (max-width: 767.98px){

	.banner__about__us h1{
		font-size: 40px;
	}
	.report__content__text{
		width: 100%;
	}
}