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