/* Global S */
	body {
		background-color: #F7FAFD;
	}
	.let-us-prove-section, footer {
		background-color: var(--primary-dark-blue);
	}
	.gap-15 {
		height: 15px;
	}
	.gap-30 {
		height: 30px;
	}
	.gap-50 {
		height: 50px;
	}
/* Global E */

/* Blog list card S */
	.post-grid-list {
	    display: flex;
	    flex-wrap: wrap;
	    gap: 30px;
	}
	.post-grid-list .blog-card {
	    width: calc(33.33% - 20px);
	    background: #ffffff;
	    box-shadow: 0px 70px 59px -10px rgba(0, 0, 0, 0.02), 0px 4px 20px -10px rgba(0, 0, 0, 0.12);
	    border: 1px solid #e8e9ea;
	    border-radius: 1rem;
	    overflow: hidden;
	    display: flex;
	    flex-direction: column;
	}
	.post-grid-list .blog-card .blog-img-block {
		display: block;
	}
	.post-grid-list .blog-card .blog-img-block img {
	    aspect-ratio: 100 / 63;
	    display: block;
	    object-fit: cover;
	}
	.blog-card .blog-content-block {
		padding: 25px;
		display: flex;
		flex-direction: column;
		flex-grow: 1;
	}
	.blog-card .blog-content-block .content-top {
		flex-grow: 1;
	}
	.post-div .category {
		display: inline-block;
	    padding: 6px 12px;
	    background: var(--secondary--purple-100);
	    color: var(--secondary-color);
	    line-height: normal;
	    font-size: 12px;
	    font-weight: 600;
	    border-radius: 30px;
        margin-bottom: 15px;
	}
	.blog-card .blog-content-block .blog-title a {
		display: block;
		font-size: 18px;
		color: var(--heading-color);
		font-weight: 600;
		line-height: 1.4;
	}
	.blog-card .blog-content-block p {
		font-size: 15px;
		margin-bottom: 15px;
	}
	.blog-card .blog-content-block .date {
		font-size: 14px;
	}
/* Blog list card E */

/* Footer S */
	.bottom-bar-wrap {
	    z-index: 2;
    	position: relative;
    	background-image: url("../images/6551094cf6654b9490fa1ad7_Curve.svg");
	}
	.cta_abs {
		z-index: 0;
	}
/* Footer E */

/* Blog Details S */
	.blog-detail h1 {
	    font-size: 40px;
	    font-weight: 600;
	    line-height: 1.2;
	}
	.blog-detail .blog-meta {
	    font-size: 14px;
    	margin-bottom: 30px;
	}
	.blog-detail .blog-img-block {
		margin-bottom: 30px;
	}
	.blog-detail .blog-img-block img {
		display: block;
		border-radius: 30px;
		width: 100%;
	}
	.blog-detail .blog-content {
		padding-top: 20px;
		max-width: 1000px;
		margin: auto;
	}

	.recent-title-block {
	    display: flex;
	    align-items: center;
	    justify-content: space-between;
	    margin-bottom: 30px;
	}
	.recent-title-block .title {
		font-size: 28px;
		font-weight: 600;
		color: var(--heading-color);
	}

	.blog-content p {
		margin-bottom: 15px;
	}
	.blog-content :is(h1, h2, h3, h4, h5, h6) {
		font-weight: 600;
		margin-bottom: 15px;
	}
	.blog-content :is(ol, ul) {
		margin-left: 20px;
		margin-bottom: 15px;
	}
	.blog-content :is(ol, ul) li + li {
		margin-top: 10px;
	}
	.blog-content ul {
		list-style-type: disc;
	}
	.blog-content ol {
		list-style-type: decimal;
	}
	.blog-content ol.lower-alpha {
		list-style-type: lower-alpha;
	}
/* Blog Details E */