
/*Hero Section*/


.hero-wrap{
	background: url(../imgs/hero-bg.jpg);
	background-size: contain;
	background-position: bottom right;
	background-repeat: no-repeat;
}
.hero-wrap .hero-content{
	background-color: var(--priColor);
	width:55%;
	padding: 100px 15% 100px 5%;
	clip-path: polygon(0 0, 75% 0, 100% 100%, 0% 100%);
	color: white;
}
.hero-wrap .hero-content h3{
	font-size: 22px;
	color: var(--secColor);
	margin-bottom: 20px;
}
.hero-wrap .hero-content h1{
	font-size: 40px;
	margin-bottom: 20px;
}
.hero-wrap .hero-content p{
	font-size: 18px;
}

/*About Section*/

.about-sec-wrap{
	padding: 5%;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
}
.about-sec-wrap .about-sec-img{
	width: 50%;
		position: relative;
	}
.about-sec-wrap .about-sec-img:before{
	content: '';
	position: absolute;
	top:-7%;
	left:-5%;
	clip-path: polygon(0 0, 75% 0, 100% 100%, 0% 100%);
	background-color: var(--priColor);
	width: 100%;
	height: 100%;
	z-index: -1;
}
.about-sec-wrap .about-sec-img img{
	width: 100%;
	object-fit: cover;
	height: 100%;
}

.about-sec-wrap .about-sec-content{
	width: 50%;
	padding: 5%;
}
.about-content h2{
	position: relative;
}
.about-sec-content p{
	margin-bottom: 20px;
	line-height: 1.7;
}

.about-sec-content a{
	background-color: var(--priColor);
	color: white;
	padding: 15px 30px;
	text-decoration: none;
	line-height: 1.7;
	background: var(--priColor);
  transition: all .5s linear;
}
.about-sec-content a:hover{
background-color: var(--secColor);
}

/*Services Section*/

.services-wrap{
	padding: 5%;


}
.service-content{
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.service-content p{
	margin-bottom: 20px;
}

.service-out{
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
}
.service-in{
	align-self: stretch;
	width:40%;
	margin: 5% 2%;
	text-align: center;
	padding: 5% 2% 3%;
	box-shadow: 0 15px 30px rgb(0,0,0,0.15);
	position: relative;
	border-bottom:5px solid var(--priColor);
}

.service-in .service-img{
	position: absolute;
	top:-40px;
	left:50%;
	transform: translateX(-50%);
	width: 80px;
	height: 80px;
	border-radius: 50%;
	padding: 3%;
	background-color: var(--priColor);
}
.service-in .service-img img{
	width: 100%;
}
.service-in h3{
	margin-bottom: 20px;
}
.service-in p{
	margin-bottom: 30px;
}
.service-in a{
	text-decoration: none;
	background-color: var(--priColor);
	color:white;
	padding: 10px 15px;
}
.service-in:hover .service-img{
	background-color: var(--secColor);
}
.service-in:hover{
	border-bottom:5px solid var(--secColor);
}
.service-in:hover > a{
	color: white;
	background-color: var(--secColor);
}


/*Expertise Section*/


.expertise-wrap{
	padding: 5%;
	
}
.expertise-content{
	margin-bottom: 20px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
}
.expertise-list{
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
}
.expertise{
	align-self: stretch;
	margin: 2%;
	width: 35%;
	display: flex;
	flex-direction: column;
	background-color: var(--secColor);
}
.expert-img{
	width: 100%;
	height: 320px;
	overflow: hidden;

}
.expert-img img{
	width:100%;
	height: 100%;
	object-fit: cover;
	transition: 0.5s all;
	transform: scale(1.1);
}
.expertise:hover > .expert-img img{
	transform: scale(1.2);
}
.expert-content{
	text-align: center;
	color:white;
}
.expert-content h3{
	
	color: white;
	padding: 20px 10px;
	width: 100%;
}
.expertise:hover{
	box-shadow: 0 15px 30px rgb(0,0,0,0.25);

}
/*Client Section*/

.clients-wrap{
	padding: 5%;
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.clients-wrap h2{
	text-align: center;
}
.clients-wrap .clients{
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;

}
.clients .client-img{
	width: 22%;
	border: 1px solid #ddd;
	height: 120px;
	align-items: center;
	display: flex;
	justify-content: center;
	padding: 10px 20px;
	margin:20px 1.5%;
} 
.clients .client-img img{
	object-fit: contain;
	max-width: 100%;
	height: 100%;
}
