.ns-flex-cta {
	box-sizing: border-box;
	padding: 0 0 60px !important;
	background: var(--ns-flex-cta-background, #f4f4f4);
	font-family: "Barlow", sans-serif;
}

.ns-flex-cta *,
.ns-flex-cta *::before,
.ns-flex-cta *::after {
	box-sizing: border-box;
}

.ns-flex-cta__container {
	width: calc(100% - 40px);
	max-width: 1170px;
	margin-inline: auto;
}

.ns-flex-cta__content {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 70px;
}

.ns-flex-cta__content.has-top-border {
	padding-top: var(--ns-flex-cta-top-border-spacing-mobile, 74px);
	border-top: 1px dotted var(--ns-flex-cta-top-border-color, #707070);
}

.ns-flex-cta__content.has-bottom-border {
	padding-bottom: var(--ns-flex-cta-bottom-border-spacing-mobile, 0px);
	border-bottom: 1px dotted var(--ns-flex-cta-bottom-border-color, #707070);
}

.ns-flex-cta__item {
	display: flex;
	flex-direction: column;
	align-items: start;
	text-align: center;
	width: max-content;
	margin-inline: auto;
}

.ns-flex-cta__title {
	margin: 0 0 var(--ns-flex-cta-title-margin-bottom-mobile, 13px) !important;
	color: var(--ns-flex-cta-title-color, #231f20);
	font-family: inherit;
	font-size: 36px;
	font-weight: 700;
	line-height: 48px;
}

.ns-flex-cta__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
	gap: 20px;
	min-height: 65px;
	padding: 10px 36px;
	border: 1px solid var(--ns-flex-cta-button-background, #da1d52);
	border-radius: 7px;
	background-color: var(--ns-flex-cta-button-background, #da1d52);
	box-shadow: 0 10px 23px color-mix(in srgb, var(--ns-flex-cta-button-background, #da1d52) 25%, transparent);
	color: var(--ns-flex-cta-button-color, #fff);
	font-family: inherit;
	font-size: 24px;
	font-weight: 600;
	line-height: 1.25;
	text-decoration: none;
	transition: border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.ns-flex-cta__button.has-icon {
	padding: 10px 23px 10px 28px;
}

@media (hover: hover) {
	.ns-flex-cta__button:hover {
		border-color: var(--ns-flex-cta-button-background, #da1d52);
		background-color: var(--ns-flex-cta-button-hover-background, transparent);
		box-shadow: inset 0 0 0 1px var(--ns-flex-cta-button-background, #da1d52);
		color: var(--ns-flex-cta-button-background, #da1d52);
		text-decoration: none;
	}
}

.ns-flex-cta__button:active {
	border-color: var(--ns-flex-cta-button-active-background, #900632);
	background-color: var(--ns-flex-cta-button-active-background, #900632);
	box-shadow: inset 0 0 0 1px var(--ns-flex-cta-button-active-background, #900632);
	color: var(--ns-flex-cta-button-color, #fff);
}

.ns-flex-cta__button:focus-visible {
	outline: 3px solid var(--ns-flex-cta-focus-color, #231f20);
	outline-offset: 4px;
}

.ns-flex-cta .ns-flex-cta__button-icon {
	display: block;
	width: 18px;
	max-width: none;
	height: 18px;
	margin: 0;
	object-fit: contain;
	color: currentColor;
	transition: transform 180ms ease;
}

.ns-flex-cta__button:hover .ns-flex-cta__button-icon,
.ns-flex-cta__button:focus .ns-flex-cta__button-icon {
	transform: translateX(4px);
}

.ns-flex-cta__button:active .ns-flex-cta__button-icon {
	transform: translateX(2px);
}

.ns-flex-cta__note {
	margin: 15px 0 0 !important;
	color: var(--ns-flex-cta-note-color, #231f20);
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif, 'Helvetica', 'Arial', sans-serif;
	font-size: 15px;
	font-weight: 400;
	line-height: 16px;
	opacity: 0.502;
}

@media (max-width: 767px) {
	.ns-flex-cta__note.is-centered-mobile {
		align-self: center;
		width: 100%;
		text-align: center;
	}
}

@media (min-width: 768px) {
	.ns-flex-cta__title {
		margin-bottom: var(
			--ns-flex-cta-title-margin-bottom-tablet,
			var(--ns-flex-cta-title-margin-bottom-mobile, 13px)
		) !important;
	}

	.ns-flex-cta__content.has-top-border {
		padding-top: var(--ns-flex-cta-top-border-spacing-tablet, var(--ns-flex-cta-top-border-spacing-mobile, 74px));
	}

	.ns-flex-cta__content.has-bottom-border {
		padding-bottom: var(--ns-flex-cta-bottom-border-spacing-tablet, var(--ns-flex-cta-bottom-border-spacing-mobile, 0px));
	}
}

@media (min-width: 1200px) {
	.ns-flex-cta__title {
		margin-bottom: var(
			--ns-flex-cta-title-margin-bottom-desktop,
			var(
				--ns-flex-cta-title-margin-bottom-tablet,
				var(--ns-flex-cta-title-margin-bottom-mobile, 13px)
			)
		) !important;
	}

	.ns-flex-cta__note.is-centered-desktop {
		align-self: center;
		width: 100%;
		text-align: center;
	}

	.ns-flex-cta__content.has-top-border {
		padding-top: var(--ns-flex-cta-top-border-spacing-desktop, var(--ns-flex-cta-top-border-spacing-tablet, var(--ns-flex-cta-top-border-spacing-mobile, 74px)));
	}

	.ns-flex-cta__content.has-bottom-border {
		padding-bottom: var(--ns-flex-cta-bottom-border-spacing-desktop, var(--ns-flex-cta-bottom-border-spacing-tablet, var(--ns-flex-cta-bottom-border-spacing-mobile, 0px)));
	}
}

@media (max-width: 700px) {
	.ns-flex-cta__title {
		font-size: 36px;
		line-height: 48px;
	}

	.ns-flex-cta__button {
		font-size: 18px;
	}

	.ns-flex-cta__button {
		min-height: 55px;
	}

	.ns-flex-cta__item {
		max-width: 100%;
	}

	.ns-flex-cta__button.big-on-mobile {
		font-size: 24px;
		min-height: 62px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.ns-flex-cta__button {
		transition: none;
	}
}
