/* Section Four - Product Grid */
.section-four-products {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	justify-content: center;
	gap: 0.6rem;
	margin-top: 1.5rem;
	margin-bottom: 1.5rem;
}
.section-four-product {
    flex: 1 1 0;
    min-width: 240px;
    max-width: 240px;
    text-align: center;
}
.section-four-product-title {
	margin-bottom: 12px;
	color: var(--blue);
	font-size: 1.15rem;
	font-weight: 700;
	font-family: var(--font-family-heading);
	line-height: 1.4;
}
.section-four-product-image img {
	/* max-height: 13rem; */
	width: 100%;
	object-fit: contain;
	display: block;
	margin: 0 auto;
}
.section-four .content > .text p {
    padding: 0 10rem;
}
.section-four .button-wrap {
    margin-top: 2.5em;
}

/******products-pages-csss*********/
.section-one.products-inner-section .content > .text p {
	/* margin-bottom: 1.35rem; */
	/* font-size: 1.23rem; */
	/* font-weight: bold; */
}
.section-one.products-inner-section .button-wrap {
    margin: 0;
}
/******products-section-four*********/
.section-four {
    padding-bottom: 2rem;
}
.section-four.last {
    padding-bottom: 6rem;
}
.section-four .content {
	padding-top: 3rem;
	padding-bottom: 3rem;	
    border-radius: 0.55rem;
    background-color: var(--white);
    box-shadow: 0px 0px 7px rgb(0 4 69 / 16%);
}
/* Responsive */
@media (max-width: 991px) {
	.section-four-products {
		gap: 20px;
	}
	.section-four-product {
		flex: 1 1 calc(50% - 20px);
		min-width: 140px;
	}
	.section-four {
		padding-bottom: 1rem;
	}
	.section-four .content > .text p {
		padding: 0 0rem;
	}
	.section-four .text {
		padding: 0 1rem; /*for products page */
	}
	.section-four .content {
		padding-top: 1.5rem;
		padding-bottom: 2rem;
	}
}

@media (max-width: 575px) {
	.section-four-products {
		gap: 16px;
	}
	.section-four-product {
		flex: 1 1 calc(50% - 16px);

		min-width: initial;
		max-width: initial;
		flex: initial;
	}
	.section-four-product-image img {
		max-height: 300px;
		border: 5px solid #fff;
	}
	.section-four-product-title {
		/* font-size: 0.85rem; */
		/* line-height: normal; */
	}
}

/* Mobile Slick Slider */
@media (max-width: 767px) {
	.section-four-products.slick-initialized {
		display: block;
        width: calc(100% + 32px);
		overflow: visible;
		margin-left: -16px;
        margin-right: 0;
	}
	.section-four-products.slick-initialized .section-four-product {
		min-width: 0 !important;
		max-width: none !important;
		flex: none;
	}
	.section-four .content {
		overflow: hidden;
	}
}
