/* ---------- Services HERO ------*/

.cust-intro-wrapper {
	width: 100%;
	height: 90vh;
	position: relative;
	margin-bottom: 100px;
}

.cust-intro-img {
	position:absolute;
	left:0;
	top:0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.cust-intro-img img {
	height: 100%;
	width: 100%;
	object-fit: cover;
}

.cust-intro-overlay {
	position: absolute;
	left: 0;
	top: 0;
	width: 60%;
	height: 100%;
	background: linear-gradient(to right,#000, transparent);
	z-index: 2;
}

.cust-intro-write {
	position: absolute;
	left:5%;
	top:50%;
	transform: translateY(-50%);
	padding: 20px;
	width: 40%;
	z-index: 3;
}

.cust-intro-write p{
	color: orange;
	font-family: "Poppins", sans-serif;
	font-size: 26px;
	padding: 0;
	margin: 0;
}

.cust-intro-write p:nth-child(2){
	font-size: 22px;
	color: #fff;
	padding-top: 20px;
}


/* ---------- supp div wrapper ------ */

.cust-div1-wrapper {

	width: 100%;
	margin: 0;
	padding: 0;
	height: 70vh;
	display: flex;
	justify-content: center;
	align-items: center;
}

.cust-div1-div1,
.cust-div1-div2,
.cust-div1-div3,
.cust-div1-div4 {

	height: 100%;
	width: 25%;

}

.cust-div1-div1 {
	padding:  30px;
	margin: auto;
}

.cust-div1-div1 p:nth-child(1) {
	font-family: Poppins, sans-serif;
	font-size: 26px;
}

.cust-div1-div1 p:nth-child(2) {
	font-family: "Montserrat", sans-serif;
	font-size: 16px;
	color: #727274;
}

.cust-div1-div2,
.cust-div1-div3,
.cust-div1-div4 {
	clip-path: polygon(15% 0, 100% 0, 85% 100%, 0 100%);
	background-position: center;
	background-size: cover;
	cursor: pointer;
	transition: .5s;
	position: relative;
}
.cust-div1-div4:hover,
.cust-div1-div2:hover,
.cust-div1-div3:hover
{
	transform: scale(1.1);
}


.cust-div1-div2 .text {
	margin: 0;
	position: absolute;
	font-family: "Montserrat", sans-serif;
	font-size: 14px;
	text-align: left;
	background: rgba(254, 254, 254, .7);
	width: 100%;
	bottom: 0;
	padding: 20px 30px 20px 20px;
	padding-right: 30px;
	opacity: 0;
	transition: .5s;
}

.cust-div1-div3 .text {
	margin: 0;
	position: absolute;
	font-family: "Montserrat", sans-serif;
	font-size: 14px;
	text-align: left;
	background: rgba(254, 254, 254, .8);
	width: 100%;
	bottom: 0;
	padding: 20px 30px 20px 20px;
	opacity: 0;
	transition: .5s;
}

.cust-div1-div4 .text {
	margin: 0;
	position: absolute;
	font-family: "Montserrat", sans-serif;
	font-size: 14px;
	text-align: left;
	background: rgba(254,254,254, .8);
	width: 100%;
	bottom: 0;
	padding: 20px 30px 20px 20px;
	opacity: 0;
	transition: .5s;
}


.cust-div1-div2:hover .text,
.cust-div1-div3:hover .text,
.cust-div1-div4:hover .text {
	opacity: 1;
}

/*----------- media query --- */

@media only screen and (max-width: 414px) {

	.cust-intro-wrapper {
		margin-bottom: 0px;
	}

	.cust-intro-overlay {
		width: 80%;
	}

	.cust-intro-write {
		width: 60%;
	}


	.cust-div1-wrapper {
		height: 140vh;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		
		width: 414px;
	}

	.cust-div1-div1,
	.cust-div1-div2,
	.cust-div1-div3,
	.cust-div1-div4 {
		height: 300px;
		width: 90%;
		margin-bottom: 20px;
		padding: 0;
	}

	.cust-div1-div1 {
		padding: 25px;
		text-align: justify;
		height: 200px;
	}

.cust-div1-div1 p:nth-child(1) {
	color: #404040;
	padding: 0;
	margin: 0;
}

.cust-div1-div1 p:nth-child(2) {
	font-size: 14px;
	padding-right: 10px;
}


}