/**
 * WhoWeAre Component Styles
 * Converted from WhoWeAre.module.scss for WordPress
 */

.whoWeAreSection {
	width: 100%;
	background-color: #ffffff;
	position: relative;
}

.whoWeAreSection .whoWeAreSectionTopOverlay {
	background: url("../images/top_element.svg");
	background-size: contain;
	background-position: center;
	background-repeat: repeat-x;
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 35px;
}

.whoWeAreSection .whoWeAreSectionTopOverlay::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 35px;
	background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), #ffffff);
}

@media (max-width: 1024px) {
	.whoWeAreSection {
		padding: 80px 0 0;
	}
}

@media (max-width: 768px) {
	.whoWeAreSection {
		padding: 60px 0 0;
	}
}

.whoWeAreContainer {
	width: 100%;
	display: flex;
	flex-direction: column;
}

/* Top Section */
.topSection {
	display: flex;
	gap: 20px;
	justify-content: space-between;
	align-items: flex-start;
}

.topSection .top_sectionHeading {
	color: var(--lightBlue, #A3DBE8);
	font-family: var(--font-bold, 'Raleway-Bold', sans-serif);
	font-size: 20px;
	line-height: 1.3;
	font-weight: 700;
	text-transform: uppercase;
	transform: unset !important;
}

.topSection .mainTitle {
	max-width: 970px;
}

/* Content Section */
.contentSection {
	display: flex;
	gap: 20px;
	align-items: center;
	justify-content: space-between;
	width: 100%;
}

.contentSection .imageWrapper {
	width: 48%;
	height: auto;
	position: relative;
	overflow: hidden;
	border-radius: 15px;
}

.contentSection .imageWrapper img {
	width: 100%;
	height: auto;
	object-fit: cover;
	display: block;
	min-height: inherit;
}

.contentSection .textContent {
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 43%;
}


.contentSection .textContent .textBlock .description {
	color: #454545;
	font-family: var(--font-medium, 'Raleway-Medium', sans-serif);
	font-size: 16px;
	line-height: 1.6;
	font-weight: 500;
}

@media (max-width: 1440px) {
	.contentSection .textContent {

		width: 46%;
	}
}

@media (max-width: 1280px) {
	.topSection .mainTitle {
		max-width: 970px;
		width: 70%;
	}
}

@media (max-width: 1024px) {
	.contentSection .textContent .textBlock .description {
		font-size: 15px;
	}
}

@media (max-width: 768px) {
	.contentSection .textContent .textBlock .description {
		font-size: 14px;
		line-height: 1.6;
	}
}

.contentSection .textContent .buttonWrapper {
	margin-top: 10px;
}

@media (max-width: 768px) {
	.contentSection .textContent .buttonWrapper {
		margin-top: 5px;
	}
}


@media (max-width: 820px) {

	.contentSection .imageWrapper {
		width: 100%;
	}

	.contentSection {
		flex-wrap: wrap;
	}

	.contentSection .textContent {
		width: 100%;
	}

	.topSection .mainTitle {
		width: 100%;
	}

	.topSection .mainTitle {
		width: 100%;
	}

	.topSection {
		flex-wrap: wrap;
	}

	.topSection .top_sectionHeading {
		margin-bottom: 0px;
	}
}

@media (max-width: 700px) {
	.topSection .top_sectionHeading {
		font-size: 14px;
	}

	.topSection .top_sectionHeading {
		margin-bottom: 0;
		transform: unset !important;
	}
}