.export-info {
	padding: 40px 20px;
	background-color: #f8f8f8;
}

.export-info__content {
	display: flex;
	gap: 40px;
	align-items: center;
	flex-wrap: wrap;
	justify-content: center;
}

.export-info__circle-images {
	position: relative;
	width: 25em;
	height: 25em;
	border-radius: 50%;
	overflow: hidden;
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: 1fr 1fr;
	gap: 4px;
	background: white;
	box-sizing: border-box;
}


.export-info__image {
	background-size: cover;
	background-position: center;
}

.export-info__image--top-left {
	background-image: url('../assets/images/about/almonds.jpg');
}

.export-info__image--top-right {
	background-image: url('../assets/images/about/cashew.jpg');
}

.export-info__image--bottom-left {
	background-image: url('../assets/images/about/makhana.jpg');
}

.export-info__image--bottom-right {
	background-image: url('../assets/images/about/pistachios.jpg');
}

.export-info__center-image {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 200px;
	height: 200px;
	transform: translate(-50%, -50%);
	background-image: url('../assets/images/about/pulses.jpg');
	background-size: cover;
	border-radius: 50%;
	z-index: 10;
	border: 4px solid white;
}

.export-info__text-content {
	max-width: 600px;
}

.export-info__heading {
	color: #1a5d34;
	font-size: 28px;
	margin-bottom: 20px;
}

.export-info__highlights {
	background-color: #fff;
	padding: 10px 20px;
	border-radius: 10px;
	margin-bottom: 20px;
}

.export-info__highlight {
	font-size: 16px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.export-info__highlight img {
	width: 40px;
}

.export-info__checkmarkAndText {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.export-info__paragraph {
	font-size: 14px;
	margin-bottom: 15px;
	line-height: 1.5;
	color: #444;
	text-align: justify;
}

.export-info__brands {
	display: flex;
	align-items: center;
	gap: 20px;
	justify-content: center;
	flex-wrap: wrap;
}

.export-info__brands-title {
	font-weight: bold;
}

.export-info__brand-logo {
	height: 40px;
}

hr.custom_divider {
	border: 0;
	height: 0;
	margin-top: 8px;
	margin-bottom: 8px;
	box-shadow: 0 0 2px 1px #b0ef8f;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
	.export-info__circle-images {
		width: 80vw;
		height: 80vw;
		margin: 2em auto;
	}

	.export-info__center-image{
		height: 9em;
		width: 9em;
	}

}