.tech-image-gallery {
	padding: 60px 0;
	background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}
.gallery-container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 20px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 25px;
}
.gallery-item {
	position: relative;
	/* border-radius: 12px; */
	overflow: hidden;
	/* box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1); */
	transition: all 0.4s ease;
	cursor: pointer;
	/* background: #fff; */
	/* border: 3px solid #fff; */
}
.gallery-image {
	width: 100%;
	overflow: hidden;
	position: relative;
}
.gallery-image img {
	width: 100%;
	transition: transform 0.4s ease;
}
.gallery-item .gallery-image:hover img {
	transform: scale(1.05);
}
@media screen and (max-width: 1200px) {
	.gallery-container {
		grid-template-columns: repeat(3, 1fr);
		gap: 20px;
	}
}
@media screen and (max-width: 1024px) {
	.gallery-container {
		grid-template-columns: repeat(3, 1fr);
		gap: 20px;
	}
}
@media screen and (max-width: 768px) {
	.tech-image-gallery {
		padding: 40px 0;
	}
	.gallery-container {
		padding: 0 15px;
		grid-template-columns: repeat(2, 1fr);
		gap: 15px;
	}
	.gallery-item {
		border-radius: 10px;
	}
}
@media screen and (max-width: 480px) {
	.tech-image-gallery {
		padding: 30px 0;
	}
	.gallery-container {
		padding: 0 10px;
		grid-template-columns: 1fr;
		gap: 15px;
	}
	.gallery-item {
		border-radius: 8px;
	}
}
.e_richText-45 p {
	text-align: left;
	text-indent: 2em !important;
	line-height: 2;
	font-size: 16px;
	color: rgb(105, 105, 105);
	margin-bottom: 1em;
}