*{
	margin: 0;
	padding: 0;
	font-family: Arial, Helvetica, sans-serif;
	box-sizing: border-box;
}

.container{
	margin: auto;
	padding: 8px;
	width: 36%;
}
.header{
	display: flex;
	justify-content: space-between;
	width: 100%;
}
.header p{
    font-size: 10px;
    font-weight: 795;
    padding: 5px 0px;
}
hr{
	width: 100%;
	margin-top: 7px;
	border: 1px solid  rgba(95, 112, 204, 1);
}
.heading{
	width: 100%;
	text-align: center;
	font-size: 26px;
	margin: 8px 0px;
    padding: 5px;
	color: rgb(19, 31, 154, 1);
}
.sub-header{
	width: 100%;
	display: flex;
	justify-content: space-between;
	margin: 12px 0;
	gap: 15px;
    height: 107px;
}
.service{
	background-color: rgba(93, 182, 250, 1);
	padding: 10px;
	flex: 1;
   	
}
.service h6{
	text-align: center;
	font-size: 10px;
	margin-top: 3px;
	color: rgba(14, 61, 115, 1);
	
}
.service hr{
	width: 40%;
	border: 1px solid white;
	margin: 10px auto;
	color: rgba(186, 223, 245, 1);
}
.service p{
	font-size: 9px;
	font-weight: 600;
	margin: 5px;
	text-align: center;
	color: rgba(52, 100, 151, 1);
}
.ministry{
	background-color: rgba(5, 10, 47, 1);
	padding: 10px;
	color: white;
	flex: 1;
}
.ministry h6{
	text-align: center;
	margin-top: 3px;
	font-weight: bold;
	color: rgba(215, 222, 236, 1);
}
.ministry hr{
	width: 40%;
	border: 1px solid white;
	margin: 10px auto;
	color: rgba(136, 140, 158, 1);
}
.ministry p{
	font-size: 9px;
	font-weight: 600;
	margin: 5px;
	text-align: center;
	color: rgba(186, 190, 195, 1);
}
.hero-section{
	width: 100%;
	margin-top: 10px;
    background-image: url('https://readleadmag.com/wp-content/uploads/2024/01/LEAD-Blog-Banner-4.png');
	height: 175px;
	background-size: cover;
	overflow: hidden;
	background-position: center;
	background-repeat: no-repeat;
}

.bottom-section{
	width: 100%;
	margin: 15px 0;
	display: flex;
	justify-content: space-between;
	gap: 5px;
}
.text{
	width: 65%;
	color: #3399ff;
}
.text h2{
	font-size: 16.8px;
	color: rgba(14, 25, 131, 1);
}
.text p{
	color: black;
	margin-top: 15px;
	font-size: 15px;
	font-weight: 520;
}
.sub-text{
	width: 100%;
	display: flex;
	color: black;
	gap: 20px;
}
.sub-text p{
	width: 100%;
	font-size: 8.5px;
	line-height: 13px;
}
.image{
	width: 33%;
}
.image img{
	width: 176px; 
    height: 100px;
    object-fit: cover;
    overflow: hidden;
}
.pastor-info{
	background-color: rgba(93, 182, 250, 1);
	padding: 8px;
	
}
.pastor-info h6{
	text-align: center;
	margin-top: 3px;
	color: rgba(14, 61, 115, 1);
	
}
.pastor-info hr{
	width: 40%;
	border: 1px solid white;
	margin: 10px auto;
	color: rgba(186, 223, 245, 1);
}
.pastor-info p{
	font-size: 9px;
	font-weight: 600;
	margin: 4px;
	text-align: center;
	color: rgba(52, 100, 151, 1);
}
.footer{
	width: 100%;
	margin-top: 18px;
	font-size: 12px;
	display: flex;
	justify-content: space-between;
}

/* Responsive for tablet */
@media(max-width: 1024px){
	.container{
		width: 55%;
	}
	.header p{
		font-size: 15px;
	}
	.heading{
		margin: 0px;
		padding: 10px;
		font-size: 30px;
	}
	.sub-header{
		height: 125px;
	}
	.service h6{
		font-size: 12px;
	}
	.service p{
		font-size: 10px;
	}
	.ministry h6{
		font-size: 12px;
	}
	.ministry p{
		font-size: 10px;
	}
	.hero-section{
		height: 195px;
	}
	.text h2{
		font-size: 1.25rem;
	}
	.text p{
		font-size: 1.2rem;
	}
	.sub-text p{
		font-size: 0.6rem;
	}
	.image{
		overflow: hidden;
	}
	.image img{
		height: 114px;
	}
	.pastor-info{
		padding: 15px 10px;
	}
	.pastor-info p{
		font-size: 11px;
	}
	.footer{
		font-size: 1rem;
	}
}

/* Responsive for mobile */
@media(max-width: 768px){
	.container{
		width: 85%;
	}
	.header p{
		font-size: 9px;
	}
	.heading{
		font-size: 20px;
		padding: 10px;
	}
	.sub-header{
		margin: 10px 0;
		height: 115px;
	}
	.service{
		padding: 10px 0;
	}
	.service h6{
		font-size: 8px;
	}
	.service p{
		font-size: 8px;
	}
	.ministry h6{
		font-size: 8px;
	}
	.ministry p{
		font-size: 8px;
	}
	.hero-section{
		height: 145px;
	}
	.bottom-section{
		margin: 10px 0;
	}
	.text h2{
		font-size: 0.7rem;
	}
	.text p{
		font-size: 0.45rem;
		line-height: 1.2em;
	}
	.image img{
		width: 100%;
		height: 80px;
	}
	.pastor-info{
		padding: 10px 0px;
	}
	.pastor-info h6{
		font-size: 0.55rem;
	}
	.pastor-info p{
		font-size: 7px;
	}
	.footer{
		font-size: 0.6rem;
	}
}
