@charset "utf-8";
/* CSS Document */
html{
	box-sizing: border-box;
}

*, *:before, *:after {
  box-sizing: inherit;
}

*{
	margin: 0px;
	padding: 0px;
	box-sizing: border-box;
	font-family: sans-serif;
}

body{
	width: 100%;
	background-color: #fff;
}

.partner{
	width: 100%;
	background-color: #fff;
	font-size:18px;
}

.partner .p {
    
    font-size:18px;
    
}

.title h1{
    text-align: center;
    padding-top: 20px;
    font-size: 42px;
    color: #fff;
}


.title1 h1{
	text-align: center;
	padding-top: 80px;
	font-size: 42px;
	color: #04AA6D;
}

.title1 h1::after{
	content: "";
	height: 4px;
	width: 350px;
	background-color: #04AA6D;
	display: block;
	margin: auto;
}

.title h1::after{
	content: "";
	height: 4px;
	width: 350px;
	background-color: #fff;
	display: block;
	margin: auto;
}
.services{
	width: 100%;
	display:flex;
	justify-content: space-between;
	align-items: center;
	margin: 70px auto;
	text-align: center;
    font-size:18px;
}

.services p{ 
    font-size:16px;
}


.card{
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-direction: column;
	margin: 2px 20px;
	padding: 20px 20px;
	background-color: #4EB8DF;
	border-radius: 10px;
	cursor: pointer;
	color:#fff;
}

.card h2{
	font-size:24px;
	color:#c94f4f;
	margin-bottom: 2px;
}

.card p{ 
    font-size:16px;
}

.section{
	background-color:#04AA6D;
	color: #fff;
	padding: 2px 2px;
}

.card:hover{
	background-color: #8D8E8F;
	transition: 0.4s ease;
}
.card1{
	width: 50%;
	display: flex;
	float:right;
	flex-direction: column;
	margin: 20px 100px;
	margin-top:0px;
	padding: 2px 2px;
	background-color: #efefef;
	border-radius: 0px;
	cursor: pointer;
}
.card .icon{
	font-size: 35px;
	margin-bottom: 10px;
}

.card1 .icon1{
	font-size: 35px;
	margin-bottom: 10px;
}

.card1 h2{
	font-size:28px;
	color:#c94f4f;
	margin-bottom: 20px;
}



.card1 p{
	font-size: 20px;
	margin-bottom: 30px;
	line-height: 1.5;
	color:#5e5e5e;
}

.button{
	font-size: 15px;
	text-decoration: none;
	color:#fff;
	background-color: #2c677c;
	padding: 8px 5px;
	border-radius: 2px;
	letter-spacing: 1px;
}
.button:hover{
	background-color: #c94f4f;
	color:#fff;
	transition: 0.4s ease;
}

@media screen and (max-width:1024px){
	.services{
		display:flex;
		flex-direction: column;
	}
	.card{
		width: 90%;
		display: flex;
		flex-direction: column;
		font-size:16px;
		text-align:center;
	}
	.card hr{
	    width:280px;
	    text-align:center;
	}
		.card1{
		width: 90%;
		display: flex;
		flex-direction: column;
		font-size:16px;
		text-align:center;
	}
	.card1 hr{
	    width:400px;
	    text-align:center;
	}
	
	}
