
section {
	margin-block: 100px;
}

@media screen and (max-width: 992px) {
	section {
		margin-block: 64px;
	}
}

section.grey {
	background-color: #f4f5f7;
	margin: 0;
	padding-block: 100px;
}

@media screen and (max-width: 992px) {
	section.grey {
		padding-block: 64px;
	}
}

@media screen and (max-width: 460px) {
	section.grey {
		padding-block: 40px;
	}
}

.section-container {
	max-width: 1366px;
	padding-inline: 25px;
	margin-inline: auto;
}

@media screen and (max-width: 576px) {
	.section-container {
		padding-inline: 16px;
	}
}

.eyebrow {
	color: #30466d;
	font-weight: 700;
	font-size: 12px;
	line-height: 110%;
	letter-spacing: 9.5%;
	vertical-align: middle;
	text-transform: uppercase;
	margin-bottom: 16px;
}

p {
	margin: 0;
	font-weight: 400;
	font-size: 15px;
	line-height: 176%;
	color: #5e5e5e;
}

h1, h2 {
	font-size: 40px;
	line-height: 47px;
	font-weight: 300;
	color: #424242;
	margin: 0;
}

h1 span, h2 span {
	color: #30466d;
	font-weight: 700;
}

@media screen and (max-width: 992px) {
	h1 br, h2 br {
		display: none;
	}
}

@media screen and (max-width: 768px) {
	h1, h2 {
		font-size: 32px;
		line-height: 120%;
	}
}

h3 {
	font-weight: 700;
	font-size: 20px;
	line-height: 120%;
	letter-spacing: 0;
	color: #30466d;
}

@media screen and (max-width: 768px) {
	h3 {
		font-size: 18px;
	}
}

a.button {
	max-width: -moz-fit-content;
	max-width: fit-content;
	min-height: 39px;
	padding: 11px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	border: 1px solid transparent;
	gap: 20px;
	font-weight: 500;
	font-size: 13px;
	line-height: 130%;
	letter-spacing: 9.5%;
	vertical-align: middle;
	text-transform: uppercase;
	transition: background-color .3s ease-in-out, color .3s ease-in-out;
}

a.button-primary {
	background-color: #30466d;
	border-color: #30466d;
	color: #fff;
}

a.button-primary:hover {
	background-color: #142c56;
}

a.button-secondary {
	background-color: #fff;
	border-color: #30466d;
	color: #30466d;
}

a.button-secondary:hover {
	background-color: #30466d;
	color: #fff;
}

a.button.cta-button {
	background-color: transparent;
	border-color: #fff;
	color: #fff;
	flex-shrink: 0;
}

a.button.cta-button:hover {
	background-color: #fff;
	color: #30466d;
}

.cta-block {
	background: linear-gradient(110.42deg, #30466d 9.86%, #234d97 58.33%);
	padding: 38px 55px;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
}

@media screen and (max-width: 992px) {
	.cta-block {
		padding: 32px;
		flex-wrap: wrap;
	}
}

@media screen and (max-width: 768px) {
	.cta-block {
		padding: 24px;
	}
}

.cta-block .cta-title h2 {
	color: #fff;
	font-weight: 600;
	margin-bottom: 16px;
}

.cta-block .cta-title p {
	color: #fff;
}

.comparison-hero {
	margin-block: 24px 80px;
	position: relative;
}

@media screen and (max-width: 992px) {
	.comparison-hero {
		margin-block: 32px 64px;
	}
}

@media screen and (max-width: 576px) {
	.comparison-hero {
		margin-block: 24px 40px;
	}
}

.comparison-hero__breadcrumbs {
	margin-block-end: 48px;
	font-weight: 500;
}

.comparison-hero__breadcrumbs a {
	font-weight: 700;
}

@media screen and (max-width: 992px) {
	.comparison-hero__breadcrumbs {
		display: none;
	}
}

.comparison-hero__wrapper {
	display: grid;
	grid-template-columns: 6fr 5fr;
	gap: 120px;
}

@media screen and (max-width: 1280px) {
	.comparison-hero__wrapper {
		gap: 64px;
	}
}

@media screen and (max-width: 992px) {
	.comparison-hero__wrapper {
		grid-template-columns: 1fr;
		gap: 32px;
	}
}

@media screen and (max-width: 576px) {
	.comparison-hero__wrapper {
		gap: 24px;
	}
}

.comparison-hero__wrapper:has(.comparison-hero__block .meta-wrapper.list) {
	align-items: center;
}

.comparison-hero__block {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 40px;
}

@media screen and (max-width: 576px) {
	.comparison-hero__block {
		gap: 24px;
	}
}

.comparison-hero__block.block-title .title-wrapper h1 {
	margin-bottom: 16px;
}

@media screen and (max-width: 768px) {
	.comparison-hero__block.block-title .title-wrapper h1 {
		margin-bottom: 8px;
	}
}

.comparison-hero__block.block-title .title-wrapper p {
	font-size: 16px;
}

.comparison-hero__block.block-title .title-wrapper p a {
	font-weight: 600;
	text-decoration: underline;
}

.comparison-hero__block.block-title .title-wrapper p a:hover {
	text-decoration: none;
}

.comparison-hero__block.block-title .buttons-wrapper {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 16px;
}

.comparison-hero__block .hero-bg-image {
	display: block;
	width: 1097px;
	height: 820px;
	-o-object-fit: cover;
	object-fit: cover;
	position: absolute;
	right: -100px;
	top: -162px;
	z-index: -1;
}

@media screen and (max-width: 768px) {
	.comparison-hero__block .hero-bg-image {
		display: none;
	}
}

.comparison-hero__block.block-image .image-wrapper img {
	width: 100%;
	height: 100%;
}

.comparison-hero__block.block-meta .meta-wrapper.list {
	background-color: #f4f5f7;
	padding: 32px;
}

.comparison-hero__block.block-meta .meta-wrapper.list .meta-item {
	padding-block: 8px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.comparison-hero__block.block-meta .meta-wrapper.list .meta-item:not(:last-child) {
	border-bottom: 1px solid #e0e0e0;
	margin-bottom: 10px;
}

.comparison-hero__block.block-meta .meta-wrapper.list .meta-title {
	color: rgba(48, 70, 109, .6);
	font-weight: 600;
	font-size: 14px;
	line-height: 120%;
}

.comparison-hero__block.block-meta .meta-wrapper.list .meta-text {
	color: #30466d;
	font-weight: 600;
	font-size: 14px;
	line-height: 120%;
}

.comparison-hero__block.block-meta .meta-wrapper.grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: 1fr;
	gap: 16px;
}

.comparison-hero__block.block-meta .meta-wrapper.grid .meta-item {
	padding: 36px;
	background-color: #f4f5f7;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 12px;
}

@media screen and (max-width: 576px) {
	.comparison-hero__block.block-meta .meta-wrapper.grid .meta-item {
		padding: 24px;
	}
}

.comparison-hero__block.block-meta .meta-wrapper.grid .meta-title {
	color: #30466d;
	font-weight: 600;
	font-size: 26px;
	line-height: 120%;
	text-align: center;
}

@media screen and (max-width: 576px) {
	.comparison-hero__block.block-meta .meta-wrapper.grid .meta-title {
		font-size: 20px;
	}
}

.comparison-hero__block.block-meta .meta-wrapper.grid .meta-text {
	font-weight: 400;
	font-size: 12px;
	line-height: 130%;
	text-transform: uppercase;
	text-align: center;
}

.comparison-metrics {
	margin-block: 0;
	border-top: 1px solid #e0e0e0;
	border-bottom: 1px solid #e0e0e0;
}

.comparison-metrics__wrapper {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
}

@media screen and (max-width: 576px) {
	.comparison-metrics__wrapper {
		grid-template-columns: 1fr;
	}
}

.comparison-metrics__wrapper .metric {
	padding: 36px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 12px;
}

@media screen and (max-width: 576px) {
	.comparison-metrics__wrapper .metric {
		padding: 24px;
	}
}

.comparison-metrics__wrapper .metric:not(:last-child) {
	border-right: 1px solid #e0e0e0;
}

@media screen and (max-width: 576px) {
	.comparison-metrics__wrapper .metric:not(:last-child) {
		border-right: none;
		border-bottom: 1px solid #e0e0e0;
	}
}

.comparison-metrics__wrapper .metric-title {
	color: #30466d;
	font-weight: 600;
	font-size: 28px;
	line-height: 120%;
	text-align: center;
}

@media screen and (max-width: 576px) {
	.comparison-metrics__wrapper .metric-title {
		font-size: 20px;
	}
}

.comparison-metrics__wrapper .metric-text {
	font-weight: 400;
	font-size: 12px;
	line-height: 130%;
	text-transform: uppercase;
	text-align: center;
}

.comparison-about {
	margin-block: 0;
	padding-block: 16px;
}

.comparison-about.grey {
	background-color: #f4f5f7;
	margin-block: 0;
	padding-block: 16px;
}

.comparison-about__wrapper {
	display: flex;
	align-items: center;
	gap: 16px;
	flex-wrap: wrap;
}

.comparison-about__wrapper .about-item {
	font-weight: 700;
	font-size: 12px;
	line-height: 100%;
	color: #adb5c4;
	padding-left: 6px;
}

.comparison-about__wrapper .about-item::marker {
	content: "• ";
	color: #30466d;
}

.comparison-proof {
	margin-block: 0;
	padding-block: 24px;
	background-color: #f4f5f7;
}

@media screen and (max-width: 576px) {
	.comparison-proof {
		padding-block: 16px;
	}
}

.comparison-proof__wrapper {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
}

.comparison-proof__wrapper .proof-item {
	font-weight: 600;
	font-size: 12px;
	line-height: 100%;
	color: #313131;
	padding: 10px;
	background-color: #fff;
	border: 1px solid rgba(24, 47, 85, .1);
}

.comparison-proof__wrapper .proof-item b {
	font-weight: 700;
}

.comparison-proof__wrapper .proof-item.proof-link {
	transition: background-color .3s ease-in-out;
}

.comparison-proof__wrapper .proof-item.proof-link:hover {
	background-color: rgba(24, 47, 85, .05);
}

.comparison-logos {
	padding-bottom: 8px;
	border-bottom: 1px solid #e0e0e0;
}

.comparison-logos .title {
	margin-bottom: 24px;
}

.comparison-logos .subtitle {
	max-width: 800px;
	margin-bottom: 32px;
}

.comparison-logos__wrapper {
	display: grid;
	grid-template-columns: repeat(8, 1fr);
	-moz-column-gap: 48px;
	column-gap: 48px;
	row-gap: 24px;
	flex-wrap: wrap;
	padding-block: 24px;
}

@media screen and (max-width: 992px) {
	.comparison-logos__wrapper {
		grid-template-columns: repeat(4, 1fr);
		-moz-column-gap: 24px;
		column-gap: 24px;
	}
}

@media screen and (max-width: 576px) {
	.comparison-logos__wrapper {
		grid-template-columns: repeat(2, 1fr);
	}
}

.comparison-logos__wrapper .logo-item {
	transition: box-shadow .3s ease-in-out;
	height: 71px;
}

@media screen and (max-width: 992px) {
	.comparison-logos__wrapper .logo-item {
		box-shadow: 0 1px 10px 0 rgba(20, 44, 86, .1);
	}
}

.comparison-logos__wrapper .logo-item img {
	width: 100%;
	height: 100%;
	-o-object-fit: contain;
	object-fit: contain;
}

@media screen and (min-width: 992px) {
	.comparison-logos__wrapper .logo-item:hover {
		box-shadow: 0 1px 10px 0 rgba(20, 44, 86, .1);
	}
}

.comparison-text__wrapper {
	max-width: 879px;
}

.comparison-text__wrapper h2 {
	margin-bottom: 48px;
}

@media screen and (max-width: 768px) {
	.comparison-text__wrapper h2 {
		margin-bottom: 24px;
	}
}

.comparison-text__wrapper .text-content p:not(:last-child) {
	margin-bottom: 32px;
}

@media screen and (max-width: 768px) {
	.comparison-text__wrapper .text-content p:not(:last-child) {
		margin-bottom: 16px;
	}
}

.comparison-text__wrapper .text-content blockquote {
	margin: 0;
	padding: 24px 32px;
	background-color: rgba(48, 70, 109, .1);
	border-left: 4px solid #30466d;
}

@media screen and (max-width: 768px) {
	.comparison-text__wrapper .text-content blockquote {
		padding: 26px 24px;
	}
}

.comparison-text__wrapper .text-content blockquote:has(~p) {
	margin-bottom: 32px;
}

@media screen and (max-width: 768px) {
	.comparison-text__wrapper .text-content blockquote:has(~p) {
		margin-bottom: 16px;
	}
}

.comparison-text__list {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
	margin-top: 48px;
}

@media screen and (max-width: 768px) {
	.comparison-text__list {
		margin-top: 24px;
	}
}

.comparison-text__list .text-item {
	font-weight: 600;
	font-size: 12px;
	line-height: 100%;
	color: #313131;
	padding: 10px;
	background-color: #fff;
	border: 1px solid rgba(24, 47, 85, .1);
}

.comparison-text__list .text-item b {
	font-weight: 700;
}

.comparison-text__list .text-item.text-link {
	transition: background-color .3s ease-in-out;
}

.comparison-text__list .text-item.text-link:hover {
	background-color: rgba(24, 47, 85, .05);
}

.comparison-grid__title {
	margin-bottom: 48px;
}

@media screen and (max-width: 768px) {
	.comparison-grid__title {
		margin-bottom: 24px;
	}
}

.comparison-grid__title h2 {
	margin-bottom: 24px;
}

.comparison-grid__items {
	display: grid;
	grid-template-rows: 1fr;
	gap: 20px;
}

.comparison-grid__items:has(~.comparison-grid__bottom) {
	margin-bottom: 48px;
}

@media screen and (max-width: 768px) {
	.comparison-grid__items:has(~.comparison-grid__bottom) {
		margin-bottom: 24px;
	}
}

.comparison-grid__items.two-cols {
	grid-template-columns: repeat(2, 1fr);
}

@media screen and (max-width: 576px) {
	.comparison-grid__items.two-cols {
		grid-template-columns: 1fr;
	}
}

.comparison-grid__items.two-cols.three-items {
	grid-template-columns: repeat(2, 1fr);
}

@media screen and (max-width: 576px) {
	.comparison-grid__items.two-cols.three-items {
		grid-template-columns: 1fr;
	}
}

.comparison-grid__items.two-cols.three-items .grid-item:last-child {
	grid-column: 1/3;
}

@media screen and (max-width: 576px) {
	.comparison-grid__items.two-cols.three-items .grid-item:last-child {
		grid-column: auto;
	}
}

.comparison-grid__items.three-cols {
	grid-template-columns: repeat(3, 1fr);
	row-gap: 32px;
	-moz-column-gap: 20px;
	column-gap: 20px;
}

@media screen and (max-width: 768px) {
	.comparison-grid__items.three-cols {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media screen and (max-width: 576px) {
	.comparison-grid__items.three-cols {
		grid-template-columns: 1fr;
	}
}

.comparison-grid__items.four-cols {
	grid-template-columns: repeat(4, 1fr);
}

@media screen and (max-width: 768px) {
	.comparison-grid__items.four-cols {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media screen and (max-width: 576px) {
	.comparison-grid__items.four-cols {
		grid-template-columns: 1fr;
	}
}

.comparison-grid__items:has(.with-small-number-left) {
	row-gap: 48px;
	-moz-column-gap: 20px;
	column-gap: 20px;
}

.comparison-grid__items .grid-item {
	display: flex;
	flex-direction: column;
	gap: 32px;
	justify-content: space-between;
}

@media screen and (max-width: 768px) {
	.comparison-grid__items .grid-item {
		gap: 24px;
	}
}

.comparison-grid__items .grid-item.with-padding {
	padding: 32px 24px;
}

@media screen and (max-width: 768px) {
	.comparison-grid__items .grid-item.with-padding {
		padding: 24px 16px;
	}
}

.comparison-grid__items .grid-item.white {
	background-color: #fff;
}

.comparison-grid__items .grid-item.grey {
	background-color: #f4f5f7;
}

.comparison-grid__items .grid-item.border-bottom {
	border-bottom: 1px solid #d7d7d7;
}

.comparison-grid__items .grid-item.border-all {
	border: 1px solid rgba(196, 198, 207, .2);
}

.comparison-grid__items .grid-item.with-none .item-content h3 {
	font-size: 18px;
	margin-bottom: 24px;
}

.comparison-grid__items .grid-item.with-small-number-left {
	flex-direction: row;
	-moz-column-gap: 18px;
	column-gap: 18px;
	padding-bottom: 20px;
}

.comparison-grid__items .grid-item.with-small-number-left .small-number-left {
	font-weight: 700;
	font-size: 18px;
	line-height: 120%;
	letter-spacing: 0;
	color: rgba(48, 70, 109, .24);
}

.comparison-grid__items .grid-item.with-small-number-top {
	justify-content: flex-start;
	-moz-column-gap: 18px;
	column-gap: 18px;
	padding-bottom: 20px;
}

.comparison-grid__items .grid-item.with-small-number-top .small-number-top {
	font-weight: 700;
	font-size: 18px;
	line-height: 120%;
	letter-spacing: 0;
	color: rgba(48, 70, 109, .24);
}

.comparison-grid__items .grid-item.with-label .label {
	padding: 6px 8px 4px;
	color: #30466d;
	font-weight: 600;
	font-size: 12px;
	line-height: 100%;
	letter-spacing: 0;
	text-transform: uppercase;
	background-color: rgba(48, 70, 109, .2);
	width: -moz-fit-content;
	width: fit-content;
}

.comparison-grid__items .grid-item.with-big-number .big-number {
	color: #30466d;
	font-weight: 600;
	font-size: 40px;
	line-height: 120%;
	letter-spacing: 0;
	text-transform: uppercase;
}

@media screen and (max-width: 768px) {
	.comparison-grid__items .grid-item.with-big-number .big-number {
		font-size: 32px;
	}
}

.comparison-grid__items .grid-item.with-custom-icon .custom-icon svg {
	width: 32px;
	height: 32px;
}

.comparison-grid__items .grid-item.with-custom-icon .item-content h3 {
	font-size: 18px;
	margin-bottom: 24px;
}

.comparison-grid__items .grid-item.with-icon-check .icon-check svg {
	width: 32px;
	height: 32px;
}

.comparison-grid__items .grid-item.content-center {
	align-items: center;
}

.comparison-grid__items .grid-item.content-center h3 {
	text-align: center;
}

.comparison-grid__items .grid-item.content-center p {
	text-align: center;
}

.comparison-grid__items .grid-item .item-content h3 {
	margin-bottom: 12px;
}

.comparison-grid__items .grid-item .item-content p a {
	color: #30466d;
	font-weight: 700;
	font-size: 15px;
	line-height: 176%;
	letter-spacing: 0;
}

.comparison-grid__items .grid-item .item-content p a:hover {
	text-decoration: underline;
}

.comparison-grid__items .grid-item .item-button {
	margin-left: auto;
}

.comparison-grid__bottom .bottom-content {
	max-width: 782px;
	margin-inline: auto;
	background-color: rgba(48, 70, 109, .1);
	border-left: 4px solid #30466d;
	padding: 32px 24px;
}

@media screen and (max-width: 768px) {
	.comparison-grid__bottom .bottom-content {
		padding: 24px 16px;
	}
}

.comparison-grid__bottom .bottom-content p a {
	color: #30466d;
	font-weight: 700;
	font-size: 15px;
	line-height: 176%;
	letter-spacing: 0;
}

.comparison-grid__bottom .bottom-content p a:hover {
	text-decoration: underline;
}

.comparison-grid__bottom .bottom-link {
	margin-inline: auto;
}

.comparison-grid__bottom .bottom-list {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}

.comparison-grid__bottom .bottom-list__item {
	padding: 10px;
	font-weight: 500;
	font-size: 12px;
	line-height: 130%;
	letter-spacing: 0;
	color: #313131;
	background-color: #f9f9fb;
	border: 1px solid rgba(24, 47, 85, .1);
	transition: border-color .3s ease-in-out;
}

.comparison-grid__bottom .bottom-list__link {
	color: #30466d;
	font-weight: 600;
}

.comparison-grid__bottom .bottom-list__link:hover {
	border-color: #30466d;
}

.comparison-grid__bottom .bottom-text {
	max-width: 1000px;
}

.comparison-grid__bottom .bottom-text p a {
	color: #30466d;
	font-weight: 700;
	font-size: 15px;
	line-height: 176%;
	letter-spacing: 0;
}

.comparison-grid__bottom .bottom-text p a:hover {
	text-decoration: underline;
}

.comparison-complex__title {
	margin-bottom: 48px;
}

@media screen and (max-width: 768px) {
	.comparison-complex__title {
		margin-bottom: 24px;
	}
}

.comparison-complex__title h2 {
	margin-bottom: 24px;
}

.comparison-complex__content {
	padding: 56px 48px;
	margin-bottom: 32px;
	background-color: #fff;
}

@media screen and (max-width: 768px) {
	.comparison-complex__content {
		padding: 32px 24px;
	}
}

.comparison-complex__content.grey {
	background-color: #f4f5f7;
}

.comparison-complex__content.grey .bricks .brick {
	background-color: #fff;
}

.comparison-complex__content .content {
	margin-bottom: 24px;
}

.comparison-complex__content .content h3 {
	margin-bottom: 12px;
}

.comparison-complex__content .content p:not(:last-child) {
	margin-bottom: 12px;
}

.comparison-complex__content .content p a {
	color: #30466d;
	font-weight: 700;
	font-size: 15px;
	line-height: 176%;
	letter-spacing: 0;
}

.comparison-complex__content .content p a:hover {
	text-decoration: underline;
}

.comparison-complex__content .bricks {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
}

@media screen and (max-width: 992px) {
	.comparison-complex__content .bricks {
		flex-wrap: wrap;
	}
}

.comparison-complex__content .bricks .brick {
	flex: 1 1 0;
	padding: 32px 24px;
	background-color: #f4f5f7;
}

@media screen and (max-width: 992px) {
	.comparison-complex__content .bricks .brick {
		flex: 1 1 250px;
		padding: 16px 24px;
	}
}

.comparison-complex__content .bricks .brick p {
	text-align: center;
	letter-spacing: 0;
}

.comparison-complex__content .bricks .brick p.brick-title {
	font-size: 16px;
	line-height: 120%;
	font-weight: 700;
	color: #30466d;
}

.comparison-complex__content .bricks .brick p.brick-text {
	font-weight: 400;
	font-size: 12px;
	line-height: 176%;
	text-transform: uppercase;
	color: #5e5e5e;
}

.comparison-complex__items {
	display: grid;
	grid-template-rows: 1fr;
	gap: 20px;
}

.comparison-complex__items.two-cols {
	grid-template-columns: repeat(2, 1fr);
}

@media screen and (max-width: 576px) {
	.comparison-complex__items.two-cols {
		grid-template-columns: 1fr;
	}
}

.comparison-complex__items.three-cols {
	grid-template-columns: repeat(3, 1fr);
	row-gap: 32px;
	-moz-column-gap: 20px;
	column-gap: 20px;
}

@media screen and (max-width: 768px) {
	.comparison-complex__items.three-cols {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media screen and (max-width: 576px) {
	.comparison-complex__items.three-cols {
		grid-template-columns: 1fr;
	}
}

.comparison-complex__items .complex-item {
	display: flex;
	flex-direction: column;
	gap: 32px;
	justify-content: space-between;
}

@media screen and (max-width: 768px) {
	.comparison-complex__items .complex-item {
		gap: 24px;
	}
}

.comparison-complex__items .complex-item.with-padding {
	padding: 32px 24px;
}

@media screen and (max-width: 768px) {
	.comparison-complex__items .complex-item.with-padding {
		padding: 24px 16px;
	}
}

.comparison-complex__items .complex-item.white {
	background-color: #fff;
}

.comparison-complex__items .complex-item.grey {
	background-color: #f4f5f7;
}

.comparison-complex__items .complex-item.border-bottom {
	border-bottom: 1px solid #d7d7d7;
}

.comparison-complex__items .complex-item.border-all {
	border: 1px solid rgba(196, 198, 207, .2);
}

.comparison-complex__items .complex-item.with-none .item-content h3 {
	font-size: 18px;
	margin-bottom: 24px;
}

.comparison-complex__items .complex-item.with-label .label {
	padding: 6px 8px 4px;
	color: #30466d;
	font-weight: 600;
	font-size: 12px;
	line-height: 100%;
	letter-spacing: 0;
	text-transform: uppercase;
	background-color: rgba(48, 70, 109, .2);
	width: -moz-fit-content;
	width: fit-content;
}

.comparison-complex__items .complex-item.with-custom-icon .custom-icon svg {
	width: 32px;
	height: 32px;
}

.comparison-complex__items .complex-item.with-custom-icon .item-content h3 {
	font-size: 18px;
	margin-bottom: 24px;
}

.comparison-complex__items .complex-item .item-content h3 {
	margin-bottom: 12px;
}

.comparison-complex__items .complex-item .item-content p a {
	color: #30466d;
	font-weight: 700;
	font-size: 15px;
	line-height: 176%;
	letter-spacing: 0;
}

.comparison-complex__items .complex-item .item-content p a:hover {
	text-decoration: underline;
}

.comparison-complex__items .complex-item .item-button {
	margin-left: auto;
}

.comparison-complex__bottom {
	margin-top: 48px;
}

@media screen and (max-width: 768px) {
	.comparison-complex__bottom {
		margin-top: 24px;
	}
}

.comparison-complex__bottom .bottom-content {
	max-width: 782px;
	margin-inline: auto;
	background-color: rgba(48, 70, 109, .1);
	border-left: 4px solid #30466d;
	padding: 32px 24px;
}

@media screen and (max-width: 768px) {
	.comparison-complex__bottom .bottom-content {
		padding: 24px 16px;
	}
}

.comparison-complex__bottom .bottom-content p a {
	color: #30466d;
	font-weight: 700;
	font-size: 15px;
	line-height: 176%;
	letter-spacing: 0;
}

.comparison-complex__bottom .bottom-content p a:hover {
	text-decoration: underline;
}

.comparison-complex__bottom .bottom-link {
	margin-inline: auto;
}

.comparison-complex__bottom .bottom-list {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}

.comparison-complex__bottom .bottom-list__item {
	padding: 10px;
	font-weight: 500;
	font-size: 12px;
	line-height: 130%;
	letter-spacing: 0;
	color: #313131;
	background-color: #f9f9fb;
	border: 1px solid rgba(24, 47, 85, .1);
	transition: border-color .3s ease-in-out;
}

.comparison-complex__bottom .bottom-list__link {
	color: #30466d;
	font-weight: 600;
}

.comparison-complex__bottom .bottom-list__link:hover {
	border-color: #30466d;
}

.comparison-complex__bottom .bottom-text {
	max-width: 1000px;
}

.comparison-complex__bottom .bottom-text p a {
	color: #30466d;
	font-weight: 700;
	font-size: 15px;
	line-height: 176%;
	letter-spacing: 0;
}

.comparison-complex__bottom .bottom-text p a:hover {
	text-decoration: underline;
}

.comparison-table__title {
	margin-bottom: 48px;
}

@media screen and (max-width: 768px) {
	.comparison-table__title {
		margin-bottom: 24px;
	}
}

.comparison-table__title h2 {
	margin-bottom: 16px;
}

.comparison-table h3 {
	margin-bottom: 28px;
}

@media screen and (max-width: 768px) {
	.comparison-table h3 {
		margin-bottom: 16px;
	}
}

.comparison-table__wrapper .table-wrapper {
	margin: 0;
	overflow: scroll;
}

.comparison-table__wrapper table {
	border-spacing: 0;
	width: 100%;
	border-collapse: collapse;
}

.comparison-table__wrapper table thead {
	background: #30466d;
}

.comparison-table__wrapper table thead th {
	padding: 24px 20px;
	text-align: center;
	font-weight: 700;
	font-size: 16px;
	line-height: 120%;
	color: #fff;
	border: none;
	text-transform: uppercase;
}

@media screen and (max-width: 768px) {
	.comparison-table__wrapper table thead th {
		padding: 16px;
		border: 1px solid rgba(188, 188, 188, .3);
	}
}

.comparison-table__wrapper table tbody tr td {
	padding: 24px 20px;
	border-bottom: 1px solid rgba(188, 188, 188, .3);
	font-size: 16px;
	line-height: 120%;
	color: #6f6f6f;
}

.grey .comparison-table__wrapper table tbody tr td {
	background: #fff;
}

@media screen and (max-width: 768px) {
	.comparison-table__wrapper table tbody tr td {
		padding: 16px;
		border: 1px solid rgba(188, 188, 188, .3);
	}
}

.comparison-table__wrapper table tbody tr td > span {
	font-size: 12px;
	background: rgba(17, 94, 103, .1);
	color: #115e67;
	padding: 6px 8px 4px;
	text-transform: uppercase;
	white-space: nowrap;
}

.comparison-table__wrapper table tbody tr td:not(:last-child) {
	border-right: 1px solid rgba(188, 188, 188, .3);
}

.comparison-table__footer .footer-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}

@media screen and (max-width: 992px) {
	.comparison-table__footer .footer-cards .footer-card:first-child {
		grid-column: 1/3;
	}
}

@media screen and (max-width: 768px) {
	.comparison-table__footer .footer-cards .footer-card:first-child {
		grid-column: auto;
	}
}

@media screen and (max-width: 992px) {
	.comparison-table__footer .footer-cards {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media screen and (max-width: 768px) {
	.comparison-table__footer .footer-cards {
		grid-template-columns: 1fr;
	}
}

.comparison-table__footer .footer-card {
	background-color: #f4f5f7;
	padding: 20px 16px;
}

.comparison-table__footer .footer-card .card-title {
	color: #30466d;
	font-weight: 600;
	font-size: 20px;
	line-height: 120%;
	letter-spacing: 0;
	text-transform: uppercase;
	margin-bottom: 12px;
}

.comparison-table__footer .footer-card .card-text {
	font-size: 12px;
	text-transform: uppercase;
}

.comparison-listing__title {
	margin-bottom: 48px;
}

@media screen and (max-width: 768px) {
	.comparison-listing__title {
		margin-bottom: 32px;
	}
}

.comparison-listing__title h2 {
	margin-bottom: 16px;
	max-width: 980px;
}

.comparison-listing__title .listing-subtitle {
	max-width: 760px;
}

.comparison-listing__rows {
	max-width: 900px;
	margin-inline: auto;
}

.comparison-listing__row {
	display: flex;
	align-items: center;
	-moz-column-gap: 48px;
	column-gap: 48px;
	padding: 48px 32px;
	background: #f4f5f7;
}

.grey .comparison-listing__row {
	background: #fff;
}

.comparison-listing__row:not(:last-child) {
	margin-bottom: 24px;
}

@media screen and (max-width: 768px) {
	.comparison-listing__row:not(:last-child) {
		margin-bottom: 16px;
	}
}

@media screen and (max-width: 768px) {
	.comparison-listing__row {
		flex-wrap: wrap;
		row-gap: 24px;
		padding: 32px 24px;
	}
}

.comparison-listing .row-title {
	font-weight: 600;
	font-size: 32px;
	line-height: 1;
	background: #30466d;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 64px;
	height: 64px;
}

@media screen and (max-width: 768px) {
	.comparison-listing .row-title {
		font-size: 24px;
		width: 56px;
		height: 56px;
	}
}

.comparison-listing .row-text p {
	font-size: 16px;
}

.comparison-listing .row-text p:not(:last-child) {
	margin-bottom: 20px;
}

.comparison-listing .row-text a {
	color: #30466d;
	font-weight: 700;
	line-height: 130%;
	text-decoration: underline;
}

.comparison-listing .row-text a:hover {
	text-decoration: none;
}

.comparison-listing .row-text ul {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.comparison-listing .row-text ul li {
	padding: 10px;
	background-color: #f9f9fb;
	font-weight: 700;
	font-size: 12px;
	line-height: 130%;
	color: #313131;
	border: 1px solid rgba(24, 47, 85, .1);
	transition: background-color .3s ease-in-out;
}

.comparison-listing .row-text ul li:has(a):hover {
	background-color: rgba(24, 47, 85, .05);
}

.comparison-listing .row-text ul li a {
	color: #30466d;
	text-decoration: none;
	font-size: 12px;
}

.comparison-faq {
	padding: 0;
	background: none;
}

.comparison-cta {
	margin-block-start: 48px;
}

@media screen and (max-width: 992px) {
	.comparison-cta {
		margin-block-start: 48px;
	}
}
