@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;700&display=swap');

:root{
	--bg1:#EEF2F5;
	--yellow:#FAE01A;
	--red:#DC2C1D;
	--textcolor:#009FC9;
	--black:#000000;
	--white:#FFFFFF;
}


html,
body {
	font-size: 16px;
	font-family: 'Poppins', sans-serif;    
	height: 100%;
	color: #000;
}

.min-height-200{
	min-height: 200px;
}

.min-height-400{
	min-height: 400px;
}

.yellow{
	content:" ";
	min-height: 200px;
	height: 100%;
	background:var(--bg1);
	background-image: -webkit-linear-gradient(30deg, var(--yellow) 60%, #00000000 2%);	
	
}
.bg1{
	background: var(--bg1);
}
.mobile-service{
	content:" ";	
	height: 100%;
	background:var(--red);
}
.mobile-service img{
	-webkit-clip-path: polygon(0% 0%, 0% 250%, 100% 50%, 70% 0);
	clip-path: polygon(0% 0%, 0% 250%, 100% 50%, 70% 0);	
	min-height: 450px;
	object-fit: cover;
}
.red{
	background:var(--red);
	border-top: 5px solid var(--white);	
	border-bottom: 5px solid var(--white);	
}
.title{
	font-size: 3rem;
	font-weight: 700;
}
.subtitle{
	font-size: 2rem;
	font-weight: bold;
}
.text-content{
	font-size: 24px;
	line-height: 31.05px;
	font-weight: 700;
}
.content-box{
	display: flex;
	justify-content:space-around;
	min-height: 250px;
	flex-direction: column;
	padding: 50px 0;
	align-items: center;
	text-transform: uppercase;
	text-align: center;
}
.c-blue{
	color: var(--textcolor);
	font-weight: 700;
}
.c-red{
	color:var(--red);
	font-weight: 700;
}
a{
	text-decoration: none;
}
.content-box h1.c-blue{
	font-size:3rem;
}
.content-box h1.c-red{
	font-size: 3rem;
}
.content-box p.c-blue{
	font-size:1.5rem;
}
.bg-yellow{
	background: var(--yellow);
}
@media (max-width: 768px) {
	.min-height-200{
		min-height: 100px;
	}
	.yellow{
		content: " ";
		min-height: 0px;
		height: 80%;
		background: var(--bg1);
		background-image: -webkit-linear-gradient(
			30deg
			, var(--yellow) 96%, #00000000 2%);
	}
	.mobile-service img{
		min-height: 0;
	}
	.title{
		font-size: 2rem;
	}
	.subtitle{
		font-size: 1.5rem;
	}
	.text-content{
		font-size:20px;
		line-height: 24.73px;
	}


}