/* Mobile first, Breakpoints: 600px, 950px, 1500px */
/* HERO */
.hero {
	background-color: #c4e9f2;
	width: 100%;
}

.hero .wrapper {
	display: flex;
	flex-direction: row;
	gap: 10px;
	margin: auto;
	max-width: 1400px;
}

.hero .hero-content {
	display: flex;
	padding: 32px 16px;
	flex-direction: column;
	align-items: flex-start;
	gap: 16px;
}

.hero .hero-header {
	color: #1b365d;
	font-feature-settings: "liga" off, "clig" off;
	font-family: "Source Sans Pro";
	font-size: 24px;
	font-style: normal;
	font-weight: 700;
	line-height: 120%;
}

.hero .hero-paragraph {
	align-self: stretch;
	color: #1b365d;
	font-feature-settings: "liga" off, "clig" off;
	font-family: "Source Sans Pro";
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 120%;
}

.hero .hero-button {
	display: flex;
	padding: 8px 32px;
	align-items: flex-start;
	gap: 10px;
	border-radius: 30px;
	background: linear-gradient(180deg, #c5e86c 0%, #5aa701 100%);
}

.hero .hero-button-text {
	color: var(--Corporate-Gray-100, #fff);
	text-align: center;
	font-feature-settings: "liga" off, "clig" off;
	font-family: Roboto;
	font-size: 16px;
	font-style: normal;
	font-weight: 700;
	line-height: 32px;
	text-transform: uppercase;
}

.hero .hero-image {
	background-image: url("/assets/images/virtual/comparison-hero.png");
	background-size: cover;
	width: 100%;
	display: none; /* don't show hero image on mobile */
}

/* MAIN CONTENT */

.main-content {
	display: flex;
	flex-direction: column;
	width: 100%;
	background-color: white;
}

.content-container {
	display: flex;
	max-width: 1045px;
	padding: 16px;
	flex-direction: column;
	align-self: auto;
	gap: 60px;
}

.section {
	display: flex;
	max-width: 828px;
	flex-direction: column;
}

.intro-header {
	color: #1b365d;
	text-align: center;
	font-feature-settings: "liga" off, "clig" off;
	font-family: "Source Sans Pro";
	font-size: 22px;
	font-style: normal;
	font-weight: 700;
	line-height: 120%; /* 26.4px */
	padding-bottom: 24px;
	margin: 0px;
}

.intro-p {
	color: #262626;
	font-feature-settings: "liga" off, "clig" off;
	font-family: "Source Sans Pro";
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 150%; /* 28.5px */
}

.bg-gray {
	background-color: #f8f8f8;
}

.container {
	margin: auto;
}

/* Table styling */
.comparison-table {
	width: 100%;
	border-collapse: collapse;
	margin: 20px 0;
	table-layout: fixed; /* Allows the table to adjust based on content */
	overflow-x: auto;
	display: block;
	text-align: center;
	color: #3a3a3a;
	font-feature-settings: "liga" off, "clig" off;
	font-family: "Source Sans Pro";
	font-size: 19px;
	font-style: normal;
	font-weight: 400;
}

.comparison-table th,
.comparison-table td {
	padding: 12px;
	word-wrap: break-word;
	font-size: 14px;
	text-align: center;
	vertical-align: middle;
}

.comparison-table thead th {
	text-align: center;
	font-weight: 700; /* Bold font */
	font-size: 18px; /* Slightly larger font for header cells */
}

.comparison-table td {
	font-size: 16px; /* Body text font size */
	color: #333333; /* Dark gray text color */
	border: 1px solid #e0e0e0; /* Light gray border color */
}

/* Row-specific background colors */
.comparison-table tbody tr:nth-child(odd) {
	background-color: #ffffff;
}

.comparison-table tbody tr:nth-child(even) {
	background-color: #f8f8f8;
}

.first-column {
	background-color: #dcefa8;
	width: 20%;
}

.custom-table th:nth-child(2),
.custom-table th:nth-child(3),
.custom-table td:nth-child(2),
.custom-table td:nth-child(3) {
	width: 40%; /* Adjust as needed for equal-width columns */
}

.table-header-image {
	text-align: center; /* Centers the image inside the div */
	margin: 0 auto; /* Centers the div if its width is less than the container */
	position: sticky;
	width: auto;
}

.table-header-image img {
	display: block; /* Removes bottom space from the image */
	margin: 0 auto; /* Centers the image inside its container */
}

/* Key similarities */
.key-row {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 24px;
	padding-bottom: 24px;
}

.key-content {
	display: flex;
	flex-direction: column;
}

.key-header {
	color: #1b365d;
	font-feature-settings: "liga" off, "clig" off;
	font-family: "Source Sans Pro";
	font-size: 19px;
	font-style: normal;
	font-weight: 700;
	line-height: 120%; /* 22.8px */
}

.key-paragraph {
	color: #3a3a3a;
	font-feature-settings: "liga" off, "clig" off;
	font-family: "Source Sans Pro";
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 150%; /* 28.5px */
}

.key-image {
	display: flex;
	width: 396px;
	height: 246.623px;
	padding: 10.661px;
	flex-direction: column;
	align-items: center;
	gap: 10.661px;
	justify-content: center;
}

/* FOOTER */

.cta-section {
	padding-top: 40px;
	padding-bottom: 40px;
	margin-left: auto;
	margin-right: auto;
	max-width: 60%;
}

.cta {
	position: relative;
	display: flex;
	width: 100%;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
	padding: 20px;
	gap: 8px;
	flex-direction: column;
	justify-content: space-between;
	flex-wrap: nowrap;
	align-items: center;
	border-top-left-radius: 15px;
	border-top-right-radius: 15px;
	border-bottom-left-radius: 15px;
	border-bottom-right-radius: 15px;
	background-color: #1b365d;
	background-image: url("/assets/images/virtual/cta-pattern.svg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: 100% 0px;
}

.cta-wrapper {
	position: relative;
	z-index: 20;
	-webkit-box-flex: 0;
	-webkit-flex: 0 auto;
	-ms-flex: 0 auto;
	flex: 0 auto;
}

.cta-headline {
	color: #fff;
	font-feature-settings: "liga" off, "clig" off;
	font-family: Roboto;
	font-size: 14px;
	font-style: normal;
	font-weight: 500;
	line-height: 130%;
	text-align: center;
}

.cta-btn {
	color: white;
	position: relative;
	min-width: 100px;
	padding: 13px 10px;
	border-style: solid;
	border-width: 1px;
	border-color: #fff;
	border-radius: 500px;
	background-color: transparent;
	text-align: center;
	max-width: 70%;
	font-family: Roboto;
	font-size: 12px;
	letter-spacing: 0.5px;
	text-transform: uppercase;
}

.cta-btn:hover {
	-webkit-transition: ease all 0.5s;
	transition: ease all 0.5s;
	border-color: #ffffff;
	background-color: #ffffff;
	color: #1b365d;
	text-decoration: none;
}

/*** BREADCRUMBS ***/
.breadcrumb-section {
	padding-top: 20px;
	padding-right: 5%;
	padding-left: 5%;
	overflow: hidden;
	background-color: white;
}

.breadcrumbs {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: center;
	text-transform: none;
	font-family: Roboto;
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
	line-height: 26px;
}

.breadcrumbs-arrow {
	padding: 1px 8px 0;
}

/* RESPONSIVE DESIGN */

/* When it's bigger than 600px  */
@media screen and (min-width: 600px) {
	.hero .hero-header {
		font-size: 36px;
	}
	.hero .hero-paragraph {
		font-size: 20px;
	}

	.hero .hero-content {
		padding: 40px;
	}

	.content-container {
		align-self: center;
		gap: 80px;
		padding: 40px;
	}

	.intro-header {
		font-size: 28px;
	}

	.intro-p {
		font-size: 19px;
	}

	.table-header-image {
		width: 50%;
	}

	.cta {
		padding: 36px 80px;
		gap: 20px;
	}

	.cta-headline {
		font-size: 20px;
	}

	.cta-btn {
		font-size: 16px;
		min-width: 225px;
	}
}

/* When it's bigger than 950px */
@media screen and (min-width: 950px) {
	.hero .hero-image {
		display: block;
	}

	.breadcrumb-section {
		padding-left: 10%;
	}

	.hero .hero-content {
		min-width: 60%;
		padding-left: 100px;
	}

	.key-row {
		display: flex;
		flex-direction: row;
		justify-content: center;
		align-items: center;
		gap: 72px;
		align-self: stretch;
	}

	.key-row:nth-child(even) {
		flex-direction: row-reverse;
	}

	.key-content {
		max-width: 50%;
	}
	.key-paragraph {
		font-size: 19px;
	}

	.cta {
		flex-direction: row;
	}

	.cta-headline {
		text-align: left;
	}
}

/* When it's bigger than 1500px */
@media screen and (min-width: 1500px) {
	.breadcrumb-section {
		padding-left: 15%;
	}
}
