/**** Services Page Style ****/

.banner-section {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: bottom center;
	padding: 108px 0px;
}
.banner-content .banner-tagline {
	border: 1px solid #32267F;
	max-width: 300px;
	margin: 0 auto;
	padding: 5px;
}
.banner-content h1{
	font-size: 60px;
	font-weight: 800;
	max-width: 800px;
	display: block;
	margin-left: auto;
	margin-right: auto;
}
.banner-content p{
	font-size: 24px;
	max-width: 800px;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.white-layer {
	position: relative;
}

.white-layer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(250, 250, 250, 0.9);
  z-index: 1;
}

.white-layer > * {
  position: relative;
  z-index: 2;
}


/* Blog Section */

.blog-post-card {
	position: relative;
	display: flex;
	flex-direction: column;
	height: 100%;
	overflow: hidden;
	border-radius: 11px;
	box-shadow: 0 4px 3px #00000040;
	transition: transform 0.3s ease;
}

.blog-post-card:hover {
	transform: translateY(-6px);
}

.blog-post-card-img {
	aspect-ratio: 16/9;
	object-fit: cover;
	border-top-left-radius: 11px;
	border-top-right-radius: 11px;
}
.blog-post-card-body {
	display: flex;
	flex-direction: column;
}

.blog-post-card-title {
	font-weight: 900;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.blog-post-card-text {
	font-weight: 400;
	font-size: 18px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

/* Subscription Section */

.subscription-section {
	background: linear-gradient(to right, #fffdfe 0%, #f6f9fe 50%, #c9e5ff 100%);
}

.subscription-bg h2 {
	font-weight: 900;
	line-height: 1.4;
}
.subscription-bg p {
	font-size: 20px;
	max-width: 500px;
}

.subscription-card {
	border-radius: 12px;
	box-shadow: 0 5px 3px #00000040;	
}

.subscription-card .form-label {
	font-size: 20px;
	color: #989995;
	font-weight: 300;
}
.subscription-card .form-control {
	font-size: 18px;
	line-height: 30px;
	border: 1px solid #32267f40;
}
.subscription-card .form-control:hover,
.subscription-card .form-control:focus {
	box-shadow: 2px 5px 3px #32267F40;
}

.subscription-card button {
	font-size: 20px;
	font-weight: 500;
	padding: 10px 20px;
	border: none;
	background-color: #32267F;
	color: #ffffff;
	border-radius: 12px;
}
.subscription-card button:hover {
	background-color: #000000;
}


@media (max-width: 1399px) {
	.banner-section {
		padding: 80px 0 60px;
	}
	.banner-content h1{
		font-size: 50px;
	}
}
@media (max-width: 1120px) {
	.banner-content h1{
		font-size: 44px;
	}
	.banner-content p {
	  font-size: 22px;
	}
	
	.banner-content .banner-tagline {
		max-width: 275px;
	}
}
@media (max-width: 991px) {
	.subscription-bg p {
		display: block;
		margin: 0 auto 1rem;
	}
}
@media (max-width: 767px) {
	.banner-section {
		padding: 70px 0 50px;
	}
	.banner-content h1{
		font-size: 42px;
	}
	.banner-content p {
	  font-size: 20px;
	}
	.banner-content .banner-tagline {
		max-width: 250px;
		padding: 4px;
	}
}
@media (max-width: 575px) {
	.banner-content h1{
		font-size: 40px;
	}
	.banner-content p {
	  font-size: 18px;
	}
	.banner-content .banner-tagline {
		max-width: 225px;
		padding: 3px;
	}
	
	.subscription-bg p {
		font-size: 18px;
	}
	.subscription-card .form-label {
		font-size: 18px;
		margin-bottom: 3px;
	}
	.subscription-card .form-control {
		font-size: 17px;
	}
	.subscription-card button {
		font-size: 17px;
		padding: 8px 20px;
		border-radius: 8px;
	}
}