.conf-module {
	background: var(--module-bg, var(--conf-page-bg));
	box-sizing: border-box;
	color: var(--module-text, var(--conf-muted));
	font-family: var(--conf-font);
	margin-block: 0;
	overflow: hidden;
}

.conf-module__inner {
	box-sizing: border-box;
	margin-inline: auto;
	max-width: var(--conf-content);
	padding-inline: clamp(20px, 4.7vw, 60px);
	width: 100%;
}

.conf-module__kicker {
	color: var(--module-accent, var(--conf-green));
	font-size: var(--conf-h6-size);
	font-weight: var(--conf-h6-weight);
	letter-spacing: var(--conf-h6-spacing);
	line-height: var(--conf-h6-line);
	margin: 0 0 22px;
	text-transform: uppercase;
}

.conf-module h2 {
	color: var(--module-heading, var(--conf-ink));
	font-size: var(--conf-h2-size);
	font-weight: var(--conf-h2-weight);
	letter-spacing: 0;
	line-height: var(--conf-h2-line);
	margin: 0;
}

.conf-module h3 {
	color: var(--module-heading, var(--conf-ink));
	font-size: var(--conf-h5-size);
	font-weight: var(--conf-h5-weight);
	line-height: var(--conf-h5-line);
}

.conf-module p {
	font-size: var(--conf-body-size);
	line-height: var(--conf-body-line);
}

.conf-module__button {
	align-items: center;
	background: var(--conf-button-bg);
	border-radius: var(--conf-button-radius);
	color: var(--conf-button-text);
	display: inline-flex;
	font-size: var(--conf-button-size, 14px);
	font-weight: 500;
	gap: 16px;
	letter-spacing: 0;
	margin-top: 28px;
	padding: var(--conf-button-y) var(--conf-button-x);
	text-decoration: none;
	transition:
		background-color var(--conf-motion-duration) ease,
		transform var(--conf-motion-duration) ease;
}

.conf-module__button:hover,
.conf-module__button:focus-visible {
	background: var(--conf-button-hover);
	color: var(--conf-button-text);
	transform: translateY(-2px);
}

.conf-content-panel {
	padding-block: var(--conf-section-space);
}

.conf-content-panel__inner {
	align-items: center;
	display: grid;
	gap: clamp(48px, 8vw, 110px);
	grid-template-columns: minmax(260px, .85fr) minmax(0, 1.15fr);
	min-height: var(--module-min-height, 620px);
}

.conf-content-panel.is-image-right .conf-content-panel__media {
	order: 2;
}

.conf-content-panel.is-image-right .conf-content-panel__content {
	order: 1;
}

.conf-content-panel.is-image-none .conf-content-panel__inner,
.conf-content-panel.is-layout-text-only .conf-content-panel__inner {
	grid-template-columns: minmax(0, 760px);
	justify-content: center;
}

.conf-content-panel.is-layout-balanced .conf-content-panel__inner {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.conf-content-panel.is-layout-asymmetric.is-image-none .conf-content-panel__inner {
	grid-template-columns: minmax(230px, .72fr) minmax(0, 1.35fr);
}

.conf-content-panel.is-layout-asymmetric.is-image-none .conf-content-panel__content {
	grid-column: 2;
}

.conf-content-panel.is-layout-asymmetric.is-image-none.is-button-side .conf-content-panel__side {
	align-self: end;
	grid-column: 1;
	grid-row: 1;
	padding-bottom: clamp(20px, 5vw, 64px);
}

.conf-content-panel.is-layout-asymmetric.is-image-none.is-button-side .conf-content-panel__content {
	grid-column: 2;
	grid-row: 1;
}

.conf-content-panel__side .conf-module__button {
	justify-content: center;
	min-height: 82px;
	min-width: min(250px, 100%);
}

.conf-content-panel__media {
	align-self: stretch;
	min-height: 420px;
	position: relative;
}

.conf-content-panel__image {
	height: 100%;
	inset: 0;
	object-fit: cover;
	position: absolute;
	width: 100%;
}

.conf-content-panel__content {
	color: var(--module-text);
	max-width: 700px;
}

.conf-content-panel__lead {
	color: var(--module-accent, var(--conf-lead-color));
	font-size: var(--conf-lead-size) !important;
	font-style: italic;
	font-weight: 500;
	line-height: var(--conf-lead-line) !important;
	margin: 28px 0;
	max-width: 34ch;
}

.conf-content-panel__body {
	color: inherit;
}

.conf-content-panel__body p {
	margin-block: 0 18px;
}

.conf-intro-profile {
	padding-block: 60px 120px;
}

.conf-intro-profile__inner {
	align-items: center;
	display: grid;
	gap: 0;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.conf-intro-profile__media {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	min-height: 597px;
	position: relative;
}

.conf-intro-profile__media-primary,
.conf-intro-profile__media-secondary {
	box-sizing: border-box;
	min-height: 597px;
	position: relative;
}

.conf-intro-profile__media-secondary {
	padding-top: 105px;
}

.conf-intro-profile__media-secondary .conf-intro-profile__image {
	top: 105px;
}

.conf-intro-profile__image {
	height: 492px;
	inset: 0 0 auto;
	object-fit: cover;
	position: absolute;
	width: 100%;
}

.conf-intro-profile__media-cta {
	align-items: center;
	background: var(--module-accent);
	bottom: 0;
	box-sizing: border-box;
	color: #fff;
	display: flex;
	font-size: 13px;
	font-weight: 600;
	justify-content: space-between;
	letter-spacing: 1.5px;
	min-height: 105px;
	padding: 28px 36px;
	position: absolute;
	text-decoration: none;
	text-transform: uppercase;
	width: 100%;
}

.conf-intro-profile__media-cta:hover,
.conf-intro-profile__media-cta:focus-visible {
	color: #fff;
}

.conf-intro-profile__content {
	box-sizing: border-box;
	padding: 0 0 0 45px;
	position: relative;
	top: 32px;
}

.conf-intro-profile__content h2 {
	font-size: var(--conf-h2-size);
	line-height: var(--conf-h2-line);
	max-width: 13ch;
}

.conf-intro-profile__body {
	margin-top: 26px;
	max-width: 62ch;
}

.conf-intro-profile__link,
.conf-services-module__more {
	align-items: center;
	color: var(--module-heading, var(--conf-ink));
	display: inline-flex;
	font-size: 13px;
	font-weight: 600;
	gap: 22px;
	letter-spacing: 1.5px;
	margin-top: 30px;
	text-decoration: none;
	text-transform: uppercase;
}

.conf-intro-profile__link span,
.conf-services-module__more span {
	color: var(--module-accent);
}

.conf-intro-profile__icon {
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	height: 60px;
	position: absolute;
	right: 0;
	top: -94px;
	width: 69px;
}

.conf-intro-profile__icon--handshake {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 80 80' fill='none' stroke='%2300925c' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 31l13-13 14 5 8-4 14 8 13 15-12 16-13 1-7-4-7 1-23-23z'/%3E%3Cpath d='M24 47l13 11M31 40l16 14M39 34l16 13M22 18l-9 10M58 27l8-10'/%3E%3C/svg%3E");
}

.conf-intro-profile__icon--building {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 80 80' fill='none' stroke='%2300925c' stroke-width='2.4'%3E%3Cpath d='M16 68V18h33v50M49 31h15v37M10 68h60M25 28h8M25 39h8M25 50h8M25 61h8M55 41h5M55 51h5M55 61h5'/%3E%3C/svg%3E");
}

.conf-intro-profile__icon--people {
	background-color: var(--module-accent, var(--conf-blue));
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 80 80' fill='none' stroke='%23ffffff' stroke-width='3' stroke-linecap='round'%3E%3Ccircle cx='40' cy='25' r='10'/%3E%3Ccircle cx='20' cy='31' r='7'/%3E%3Ccircle cx='60' cy='31' r='7'/%3E%3Cpath d='M22 65c1-16 7-24 18-24s17 8 18 24M6 64c1-12 5-19 14-19M74 64c-1-12-5-19-14-19'/%3E%3C/svg%3E");
	background-size: 48px 48px;
	border-radius: 50%;
	height: 72px;
	width: 72px;
}

.conf-intro-profile__icon--none {
	display: none;
}

.conf-services-module {
	--module-accent: var(--conf-blue);
	padding-block: 0 120px;
}

.conf-services-module__intro {
	margin: 0 0 clamp(60px, 8vw, 105px) auto;
	max-width: 590px;
}

.conf-services-module__intro p {
	margin: 0;
}

.conf-services-module__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.conf-services-module__item {
	background: var(--conf-page-bg);
	border-top: 1px solid rgba(21, 30, 48, .08);
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-height: 286px;
	padding: 40px 30px;
	position: relative;
	transition:
		background-color var(--conf-motion-duration) ease,
		color var(--conf-motion-duration) ease,
		transform var(--conf-motion-duration) ease;
}

.conf-services-module__item:hover {
	background: var(--conf-green);
	color: #fff;
	transform: translateY(-4px);
	z-index: 1;
}

.conf-services-module__number {
	color: var(--conf-green);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 2px;
}

.conf-services-module__item h3 {
	margin: 0;
	max-width: 18ch;
}

.conf-services-module__item:hover h3,
.conf-services-module__item:hover .conf-services-module__number {
	color: inherit;
}

.conf-services-module__icon {
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	height: 42px;
	left: 50%;
	position: absolute;
	top: clamp(38px, 5vw, 68px);
	transform: translateX(-50%);
	width: 42px;
}

.conf-service-icon--document .conf-services-module__icon {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48' fill='none' stroke='%2300925c' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M13 5h16l7 7v31H13z'/%3E%3Cpath d='M29 5v8h7M19 22h11M19 28h11M19 34h8'/%3E%3C/svg%3E");
}

.conf-service-icon--calendar .conf-services-module__icon {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48' fill='none' stroke='%2300925c' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='7' y='11' width='34' height='31' rx='2'/%3E%3Cpath d='M7 19h34M15 6v10M33 6v10M14 27h5M23 27h5M32 27h3M14 34h5M23 34h5'/%3E%3C/svg%3E");
}

.conf-service-icon--card .conf-services-module__icon {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48' fill='none' stroke='%2300925c' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='5' y='10' width='38' height='28' rx='4'/%3E%3Cpath d='M5 19h38M12 30h11'/%3E%3C/svg%3E");
}

.conf-service-icon--person .conf-services-module__icon {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48' fill='none' stroke='%2300925c' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='24' cy='14' r='8'/%3E%3Cpath d='M10 43c1-11 6-17 14-17s13 6 14 17M17 28l7 7 7-7'/%3E%3C/svg%3E");
}

.conf-service-icon--folder .conf-services-module__icon {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48' fill='none' stroke='%2300925c' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 13h15l4 5h17l-5 24H10z'/%3E%3Cpath d='M10 18h32'/%3E%3C/svg%3E");
}

.conf-service-icon--home .conf-services-module__icon {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48' fill='none' stroke='%2300925c' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 23 24 8l17 15M12 21v21h24V21M20 42V29h8v13'/%3E%3C/svg%3E");
}

.conf-services-module__item:hover .conf-services-module__icon {
	filter: brightness(0) invert(1);
}

.conf-services-module__feature {
	align-items: center;
	background: var(--module-tile, var(--conf-soft));
	box-sizing: border-box;
	display: flex;
	grid-column: span 2;
	min-height: 286px;
	padding: 45px 30px;
}

.conf-services-module__feature h2 {
	font-size: var(--conf-h2-size);
	line-height: var(--conf-h2-line);
	max-width: 15ch;
}

.conf-services-module__blank {
	background: var(--module-tile, var(--conf-soft));
	margin-left: 0;
	min-height: 286px;
}

.conf-services-module__question {
	align-items: flex-start;
	background-color: var(--conf-ink);
	background-position: center;
	background-size: cover;
	box-sizing: border-box;
	color: #fff;
	display: flex;
	flex-direction: column;
	justify-content: center;
	grid-column: span 2;
	min-height: 286px;
	padding: 38px 35px;
}

.conf-services-module__question h3 {
	color: inherit;
	font-size: clamp(24px, 3vw, 40px);
	line-height: 1.08;
	margin: 0 0 38px;
	max-width: 8ch;
	width: 45%;
}

.conf-services-module__question a {
	color: inherit;
	font-size: clamp(20px, 2vw, 28px);
	font-weight: 600;
	text-decoration: none;
	width: 45%;
}

.conf-services-module__more {
	align-items: flex-end;
	box-sizing: border-box;
	justify-content: space-between;
	margin: 0;
	min-height: 286px;
	padding: 40px 30px;
}

.conf-stats-showcase {
	background: var(--conf-page-bg);
	overflow: visible;
	padding-bottom: 0;
}

.conf-stats-showcase__blue {
	background:
		linear-gradient(125deg, rgba(255, 255, 255, .05) 25%, transparent 25%) 0 0 / 64px 64px,
		linear-gradient(305deg, rgba(255, 255, 255, .04) 25%, transparent 25%) 0 0 / 64px 64px,
		var(--module-bg);
	color: var(--module-text);
	min-height: 416px;
}

.conf-stats-showcase__inner {
	display: grid;
	grid-template-columns: minmax(0, 3fr) minmax(300px, 1fr);
	min-height: 416px;
	padding-block: 0;
	position: relative;
}

.conf-stats-showcase__numbers {
	align-items: center;
	display: grid;
	gap: clamp(28px, 5vw, 70px);
	grid-template-columns: repeat(3, minmax(0, 1fr));
	padding-right: clamp(30px, 7vw, 100px);
}

.conf-stats-showcase__number strong {
	color: inherit;
	display: block;
	font-size: clamp(52px, 6vw, 84px);
	font-weight: 400;
	letter-spacing: -3px;
	line-height: 1;
}

.conf-stats-showcase__number span {
	display: block;
	font-size: 12px;
	letter-spacing: 1px;
	line-height: 1.5;
	margin-top: 16px;
	text-transform: uppercase;
}

.conf-stats-showcase__card {
	background: var(--module-card);
	box-shadow: 0 26px 80px rgba(21, 30, 48, .12);
	box-sizing: border-box;
	color: var(--conf-muted);
	min-height: 516px;
	padding: 48px 35px;
	position: absolute;
	right: clamp(20px, 4vw, 50px);
	top: 0;
	width: min(280px, calc(100% - 40px));
	z-index: 2;
}

.conf-stats-showcase__card::after {
	background: var(--module-accent);
	bottom: 48px;
	content: "";
	height: 72px;
	left: 50%;
	position: absolute;
	width: 1px;
}

.conf-stats-showcase__card h3 {
	font-size: 21px;
	line-height: 1.22;
	margin: 30px 0 18px;
}

.conf-stats-showcase__card p {
	margin: 0;
}

.conf-stats-showcase__ring {
	align-items: center;
	background: conic-gradient(var(--module-accent) calc(var(--module-percentage) * 1%), #e8edf4 0);
	border-radius: 50%;
	display: flex;
	height: 122px;
	justify-content: center;
	position: relative;
	width: 122px;
}

.conf-stats-showcase__ring::after {
	background: var(--module-card);
	border-radius: inherit;
	content: "";
	inset: 8px;
	position: absolute;
}

.conf-stats-showcase__ring strong {
	color: var(--conf-ink);
	font-size: 37px;
	font-weight: 400;
	position: relative;
	z-index: 1;
}

.conf-stats-showcase__ring small {
	font-size: 16px;
}

.conf-media-social {
	min-height: 387px;
	padding-block: 0;
}

.conf-media-social__inner {
	display: grid;
	grid-template-columns: 1fr 2fr 1fr;
	min-height: 387px;
	padding-top: 0;
	position: relative;
}

.conf-media-social__copy {
	align-self: center;
	padding-right: 30px;
}

.conf-media-social__copy h2 {
	font-size: clamp(32px, 4vw, 56px);
	line-height: 1.08;
}

.conf-media-social__copy > div {
	margin-top: 0;
}

.conf-media-social__media {
	min-height: 300px;
}

.conf-media-social__image {
	height: 100%;
	max-height: 300px;
	object-fit: cover;
	width: 100%;
}

.conf-media-social__card {
	align-items: flex-end;
	align-self: end;
	background: var(--module-card);
	box-sizing: border-box;
	color: #fff;
	display: flex;
	justify-content: space-between;
	margin-left: 0;
	min-height: 130px;
	padding: 34px 26px 34px 40px;
	text-decoration: none;
	transform: none;
}

.conf-media-social__card:hover,
.conf-media-social__card:focus-visible {
	color: #fff;
}

.conf-media-social__card span {
	max-width: 13ch;
}

.conf-media-social__card strong {
	align-items: center;
	background: var(--module-accent);
	display: flex;
	font-size: 20px;
	height: 42px;
	justify-content: center;
	width: 42px;
}

.conf-consultation-cta {
	background:
		radial-gradient(circle at 15% 12%, rgba(0, 146, 92, .07) 0 2px, transparent 3px) 0 0 / 28px 28px,
		linear-gradient(135deg, rgba(0, 146, 92, .035), transparent 46%),
		var(--module-bg);
	min-height: 516px;
	padding-block: 107px 85px;
}

.conf-consultation-cta__inner {
	text-align: center;
}

.conf-consultation-cta h2 {
	font-size: var(--conf-h2-size);
	line-height: var(--conf-h2-line);
	margin-inline: auto;
	max-width: 17ch;
}

.conf-consultation-cta h2 strong {
	color: var(--module-accent);
	font-weight: inherit;
}

.conf-consultation-cta__body {
	margin: 28px auto 0;
	max-width: 650px;
}

.conf-consultation-cta .conf-module__button {
	background: var(--module-accent);
}

.conf-consultation-cta__form {
	margin: 48px auto 0;
	max-width: 648px;
}

.conf-consultation-cta__form input {
	background: #fff;
	border: 1px solid #dce2eb;
	border-radius: 0;
	box-sizing: border-box;
	color: var(--conf-ink);
	font: inherit;
	height: 42px;
	padding: 0 12px;
	width: 100%;
}

.conf-consultation-cta__form button {
	background: var(--module-accent);
	border: 0;
	border-radius: 0;
	color: #fff;
	cursor: pointer;
	font-size: 12px;
	height: 49px;
	letter-spacing: .5px;
	margin-top: 19px;
	padding: 0 24px;
	text-transform: uppercase;
}

.conf-quick-links {
	background: var(--module-bg);
	color: var(--module-text);
	overflow: visible;
}

.conf-quick-links__inner {
	display: grid;
	grid-template-columns: minmax(0, 3fr) minmax(360px, 2fr);
	max-width: none;
	min-height: 180px;
	padding: 0;
}

.conf-quick-links__nav {
	align-items: center;
	display: grid;
	gap: 24px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	padding-inline: 60px 40px;
}

.conf-quick-links__item {
	align-items: center;
	color: inherit;
	display: flex;
	gap: 14px;
	min-height: 90px;
	position: relative;
	text-decoration: none;
}

.conf-quick-links__item:hover,
.conf-quick-links__item:focus-visible {
	color: #fff;
}

.conf-quick-links__item .conf-services-module__icon {
	filter: brightness(0) invert(1);
	flex: 0 0 24px;
	height: 24px;
	left: auto;
	position: relative;
	top: auto;
	transform: none;
	width: 24px;
}

.conf-quick-links__contact {
	align-items: center;
	background: var(--module-contact);
	box-sizing: border-box;
	color: #fff;
	display: grid;
	grid-template-columns: minmax(110px, .8fr) minmax(150px, 1.2fr);
	margin-top: 0;
	min-height: 180px;
	padding: clamp(32px, 4vw, 54px);
	text-decoration: none;
}

.conf-quick-links__contact:hover,
.conf-quick-links__contact:focus-visible {
	color: #fff;
}

.conf-quick-links__contact span {
	font-size: 14px;
	line-height: 1.5;
}

.conf-quick-links__contact strong {
	font-size: clamp(22px, 2.6vw, 34px);
	font-weight: 400;
	white-space: nowrap;
}

.conf-stats-module {
	background-color: var(--conf-dark);
	color: var(--module-text);
	min-height: var(--module-height);
	position: relative;
}

.conf-stats-module__image {
	height: 100%;
	inset: 0;
	object-fit: cover;
	position: absolute;
	width: 100%;
}

.conf-stats-module__overlay {
	background: var(--conf-ink);
	inset: 0;
	position: absolute;
}

.conf-stats-module__grid {
	align-items: center;
	display: grid;
	gap: 40px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	min-height: var(--module-height);
	position: relative;
	z-index: 1;
}

.conf-stats-module__item {
	border-top: 1px solid color-mix(in srgb, var(--module-text) 45%, transparent);
	padding-top: 22px;
}

.conf-stats-module__item strong {
	color: inherit;
	display: block;
	font-size: clamp(48px, 6vw, 86px);
	font-weight: 400;
	letter-spacing: -3px;
	line-height: 1;
}

.conf-stats-module__item span {
	display: block;
	font-size: 13px;
	letter-spacing: 1px;
	margin-top: 12px;
	text-transform: uppercase;
}

.conf-vimeo-module {
	background: var(--module-bg);
	margin-inline: auto;
	max-width: var(--conf-content);
	position: relative;
	width: calc(100% - clamp(32px, 10vw, 128px));
}

.conf-vimeo-module iframe {
	height: 100%;
	inset: 0;
	position: absolute;
	width: 100%;
}

.conf-vimeo-module.is-ratio-21-9 {
	aspect-ratio: 21 / 9;
}

.conf-vimeo-module.is-ratio-16-9 {
	aspect-ratio: 16 / 9;
}

.conf-vimeo-module.is-ratio-4-3 {
	aspect-ratio: 4 / 3;
}

.conf-contact-module {
	padding-block: var(--conf-section-space);
}

.conf-contact-module__grid {
	align-items: start;
	display: grid;
	gap: clamp(48px, 8vw, 110px);
	grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr);
}

.conf-contact-module__form h2 {
	margin-bottom: 22px;
}

.conf-contact-module__intro {
	margin-bottom: 38px;
}

.conf-contact-module__details {
	background: var(--module-panel);
	box-sizing: border-box;
	color: var(--module-panel-text);
	padding: clamp(34px, 5vw, 58px);
}

.conf-contact-module__details h3,
.conf-contact-module__details p,
.conf-contact-module__details a {
	color: inherit;
}

.conf-contact-module__details h3 {
	font-size: var(--conf-h3-size);
	line-height: var(--conf-h3-line);
	margin: 0 0 24px;
}

.conf-contact-module__details p {
	margin-block: 0 24px;
}

.conf-contact-module__details a {
	text-decoration-color: var(--conf-green);
	text-underline-offset: 4px;
}

@media (prefers-reduced-motion: no-preference) {
	.conf-animate-fade-up > .conf-module__inner,
	.conf-animate-fade-up .conf-intro-profile__media,
	.conf-animate-fade-up .conf-intro-profile__content,
	.conf-animate-fade-up .conf-stats-showcase__number,
	.conf-animate-fade-up .conf-stats-showcase__card,
	.conf-animate-fade-up .conf-stats-showcase__media,
	.conf-animate-fade-up .conf-media-social__copy,
	.conf-animate-fade-up .conf-media-social__media,
	.conf-animate-fade-up .conf-media-social__card,
	.conf-animate-stagger .conf-services-module__item,
	.conf-animate-stagger .conf-services-module__feature,
	.conf-animate-stagger .conf-services-module__question,
	.conf-animate-stagger .conf-quick-links__item,
	.conf-animate-stagger .conf-quick-links__contact {
		animation: conf-module-fade-up var(--conf-motion-duration) cubic-bezier(.22, 1, .36, 1) both;
		animation-play-state: var(--conf-motion-state);
	}

	.conf-animate-fade-up .conf-intro-profile__content,
	.conf-animate-fade-up .conf-stats-showcase__number:nth-child(2),
	.conf-animate-fade-up .conf-media-social__media,
	.conf-animate-stagger .conf-quick-links__item:nth-child(2) { animation-delay: 90ms; }
	.conf-animate-fade-up .conf-stats-showcase__number:nth-child(3),
	.conf-animate-fade-up .conf-media-social__card,
	.conf-animate-stagger .conf-quick-links__item:nth-child(3) { animation-delay: 180ms; }
	.conf-animate-fade-up .conf-stats-showcase__card,
	.conf-animate-stagger .conf-quick-links__contact { animation-delay: 260ms; }
	.conf-animate-fade-up .conf-stats-showcase__media { animation-delay: 340ms; }

	.conf-animate-stagger .conf-services-module__grid > :nth-child(2) { animation-delay: 70ms; }
	.conf-animate-stagger .conf-services-module__grid > :nth-child(3) { animation-delay: 140ms; }
	.conf-animate-stagger .conf-services-module__grid > :nth-child(4) { animation-delay: 210ms; }
	.conf-animate-stagger .conf-services-module__grid > :nth-child(5) { animation-delay: 280ms; }
	.conf-animate-stagger .conf-services-module__grid > :nth-child(6) { animation-delay: 350ms; }
	.conf-animate-stagger .conf-services-module__grid > :nth-child(7) { animation-delay: 420ms; }
	.conf-animate-stagger .conf-services-module__grid > :nth-child(8) { animation-delay: 490ms; }
}

@keyframes conf-module-fade-up {
	from { opacity: 0; transform: translateY(24px); }
	to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 900px) {
	.conf-content-panel__inner,
	.conf-intro-profile__inner,
	.conf-content-panel.is-layout-balanced .conf-content-panel__inner,
	.conf-content-panel.is-layout-asymmetric.is-image-none .conf-content-panel__inner,
	.conf-contact-module__grid {
		grid-template-columns: 1fr;
		min-height: auto;
	}

	.conf-content-panel.is-layout-asymmetric.is-image-none .conf-content-panel__content {
		grid-column: auto;
	}

	.conf-content-panel.is-layout-asymmetric.is-image-none.is-button-side .conf-content-panel__side,
	.conf-content-panel.is-layout-asymmetric.is-image-none.is-button-side .conf-content-panel__content {
		grid-column: auto;
		grid-row: auto;
	}

	.conf-content-panel.is-image-right .conf-content-panel__media,
	.conf-content-panel.is-image-right .conf-content-panel__content {
		order: initial;
	}

	.conf-services-module__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.conf-services-module__blank {
		margin-left: 0;
	}

	.conf-intro-profile__media {
		min-height: 580px;
	}

	.conf-intro-profile__content {
		top: 0;
		transform: none;
	}

	.conf-stats-showcase__inner,
	.conf-quick-links__inner {
		grid-template-columns: 1fr;
	}

	.conf-stats-showcase__numbers {
		padding-right: 0;
	}

	.conf-stats-showcase__card {
		margin: 48px 0 -160px auto;
		position: relative;
		right: auto;
		top: auto;
	}

	.conf-stats-showcase__media {
		margin-top: 100px;
		padding-right: clamp(20px, 4vw, 50px);
	}

	.conf-media-social__inner {
		grid-template-columns: minmax(220px, .8fr) minmax(0, 1.2fr);
	}

	.conf-media-social__card {
		grid-column: 2;
		margin-left: auto;
		min-width: min(300px, 100%);
	}

	.conf-quick-links__inner {
		padding-right: clamp(20px, 4vw, 50px);
	}

	.conf-quick-links__contact {
		margin-left: auto;
		width: min(520px, 100%);
	}
}

@media (max-width: 600px) {
	.conf-content-panel,
	.conf-intro-profile,
	.conf-services-module,
	.conf-media-social,
	.conf-consultation-cta,
	.conf-contact-module {
		padding-block: var(--conf-section-space-mobile);
	}

	.conf-content-panel__media {
		min-height: 320px;
	}

	.conf-services-module__grid,
	.conf-stats-showcase__numbers,
	.conf-stats-module__grid {
		grid-template-columns: 1fr;
	}

	.conf-services-module__item,
	.conf-services-module__feature,
	.conf-services-module__blank,
	.conf-services-module__question {
		min-height: 240px;
	}

	.conf-services-module__feature,
	.conf-services-module__question {
		grid-column: auto;
	}

	.conf-services-module__question h3,
	.conf-services-module__question a {
		width: 60%;
	}

	.conf-vimeo-module {
		width: calc(100% - 32px);
	}

	.conf-intro-profile__media {
		grid-template-columns: 1fr;
		min-height: auto;
	}

	.conf-intro-profile__media-primary,
	.conf-intro-profile__media-secondary {
		min-height: 500px;
	}

	.conf-intro-profile__media-primary .conf-intro-profile__image {
		height: 395px;
	}

	.conf-intro-profile__media-secondary {
		padding-top: 0;
	}

	.conf-intro-profile__media-secondary .conf-intro-profile__image {
		height: 500px;
		top: 0;
	}

	.conf-intro-profile__icon {
		height: 54px;
		top: -8px;
		width: 54px;
	}

	.conf-intro-profile__content {
		padding-right: 0;
		top: 0;
		transform: none;
	}

	.conf-intro-profile__content h2 {
		max-width: 10ch;
	}

	.conf-stats-showcase__number {
		border-top: 1px solid rgba(255, 255, 255, .24);
		padding-top: 20px;
	}

	.conf-stats-showcase__card {
		margin-inline: auto;
	}

	.conf-media-social__inner {
		display: block;
		padding-top: 0;
	}

	.conf-media-social__copy {
		padding: 0 0 46px;
	}

	.conf-media-social__media {
		min-height: 360px;
	}

	.conf-media-social__card {
		margin-left: 30px;
		margin-top: -20px;
		position: relative;
		transform: none;
	}

	.conf-quick-links__nav {
		grid-template-columns: 1fr;
		padding-block: 30px;
	}

	.conf-quick-links__item {
		border-bottom: 1px solid rgba(255, 255, 255, .12);
	}

	.conf-quick-links__contact {
		grid-template-columns: 1fr;
		margin: 0;
		min-height: 180px;
	}
}

/*
 * Responsive composition
 *
 * These rules deliberately sit after the original component breakpoints. They
 * keep every Gutenberg module fluid when editors add longer Italian copy and
 * remove the desktop-only fixed heights that caused mobile overlaps.
 */
@media (max-width: 900px) {
	.conf-module h2 {
		font-size: clamp(32px, 5.8vw, 46px);
		line-height: 1.08;
		overflow-wrap: anywhere;
		text-wrap: balance;
	}

	.conf-module h3,
	.conf-module a,
	.conf-module p {
		overflow-wrap: anywhere;
	}

	.conf-intro-profile {
		padding-block: 72px 82px;
	}

	.conf-intro-profile__inner {
		gap: 54px;
	}

	.conf-intro-profile__media {
		min-height: 520px;
	}

	.conf-intro-profile__content {
		padding-left: 0;
	}

	.conf-services-module {
		padding-bottom: 82px;
	}

	.conf-services-module__intro {
		margin: 0 0 52px;
		max-width: 64ch;
	}

	.conf-services-module__blank {
		display: none;
	}

	.conf-services-module__item,
	.conf-services-module__feature,
	.conf-services-module__question,
	.conf-services-module__more {
		min-height: 220px;
	}

	.conf-services-module__feature,
	.conf-services-module__question {
		grid-column: span 2;
	}

	.conf-stats-showcase__blue,
	.conf-stats-showcase__inner {
		min-height: 0;
	}

	.conf-stats-showcase__inner {
		display: block;
		padding-block: 60px;
	}

	.conf-stats-showcase__card {
		margin: 42px 0 0;
		min-height: 0;
		position: relative;
		right: auto;
		top: auto;
		width: 100%;
	}

	.conf-stats-showcase__card::after {
		bottom: 30px;
		height: 42px;
	}

	.conf-media-social {
		min-height: 0;
		padding-block: 64px;
	}

	.conf-media-social__inner {
		min-height: 0;
	}

	.conf-quick-links__inner {
		padding-right: 0;
	}

	.conf-quick-links__contact {
		width: 100%;
	}
}

@media (max-width: 600px) {
	.conf-module__inner {
		padding-inline: 20px;
	}

	.conf-module h2,
	.conf-intro-profile__content h2,
	.conf-services-module__feature h2,
	.conf-consultation-cta h2 {
		font-size: clamp(30px, 9vw, 38px) !important;
		line-height: 1.08 !important;
		max-width: none;
		overflow-wrap: anywhere;
		text-wrap: balance;
	}

	.conf-module h3 {
		line-height: 1.25;
	}

	.conf-module p {
		font-size: clamp(15px, 4.1vw, 17px);
		line-height: 1.65;
	}

	.conf-module__kicker {
		font-size: 11px;
		letter-spacing: .13em;
		line-height: 1.5;
		margin-bottom: 16px;
	}

	.conf-intro-profile {
		padding-block: 54px 64px;
	}

	.conf-intro-profile__inner {
		display: block;
	}

	.conf-intro-profile__media {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		margin-bottom: 46px;
		min-height: 350px;
	}

	.conf-intro-profile__media-primary,
	.conf-intro-profile__media-secondary {
		min-height: 350px;
	}

	.conf-intro-profile__media-primary .conf-intro-profile__image {
		height: 286px;
	}

	.conf-intro-profile__media-secondary {
		padding-top: 58px;
	}

	.conf-intro-profile__media-secondary .conf-intro-profile__image {
		height: 292px;
		top: 58px;
	}

	.conf-intro-profile__media-cta {
		font-size: 10px;
		letter-spacing: 1px;
		min-height: 64px;
		padding: 16px;
	}

	.conf-intro-profile__content {
		padding: 0;
	}

	.conf-intro-profile__icon {
		display: block;
		height: 52px;
		margin: 0 0 22px auto;
		position: relative;
		right: auto;
		top: auto;
		width: 52px;
	}

	.conf-intro-profile__body {
		margin-top: 20px;
	}

	.conf-intro-profile__link,
	.conf-services-module__more {
		font-size: 11px;
		gap: 14px;
		letter-spacing: 1.1px;
		margin-top: 24px;
	}

	.conf-services-module {
		padding-block: 0 64px;
	}

	.conf-services-module__intro {
		margin-bottom: 34px;
	}

	.conf-services-module__grid {
		grid-template-columns: 1fr;
	}

	.conf-services-module__item,
	.conf-services-module__feature,
	.conf-services-module__question {
		grid-column: auto;
		min-height: 164px;
	}

	.conf-services-module__item {
		padding: 24px 20px;
	}

	.conf-services-module__item h3 {
		font-size: 18px;
		line-height: 1.3;
		max-width: 15ch;
	}

	.conf-services-module__icon {
		height: 34px;
		top: 24px;
		width: 34px;
	}

	.conf-services-module__feature {
		min-height: 198px;
		padding: 32px 20px;
	}

	.conf-services-module__question {
		min-height: 224px;
		padding: 32px 20px;
	}

	.conf-services-module__question h3 {
		font-size: clamp(27px, 8vw, 34px);
		margin-bottom: 28px;
		max-width: 10ch;
		width: min(70%, 260px);
	}

	.conf-services-module__question a {
		font-size: clamp(18px, 5.7vw, 24px);
		width: min(75%, 280px);
	}

	.conf-services-module__more {
		min-height: 88px;
		padding: 24px 20px;
	}

	.conf-stats-showcase__inner {
		padding-block: 48px;
	}

	.conf-stats-showcase__numbers {
		gap: 28px;
	}

	.conf-stats-showcase__number {
		padding-top: 18px;
	}

	.conf-stats-showcase__number:first-child {
		border-top: 0;
		padding-top: 0;
	}

	.conf-stats-showcase__number strong {
		font-size: clamp(44px, 14vw, 58px);
		letter-spacing: -2px;
	}

	.conf-stats-showcase__number span {
		font-size: 11px;
		margin-top: 10px;
	}

	.conf-stats-showcase__card {
		box-shadow: 0 18px 48px rgba(21, 30, 48, .1);
		margin: 34px 0 0;
		padding: 30px 24px 70px;
	}

	.conf-stats-showcase__ring {
		height: 100px;
		width: 100px;
	}

	.conf-stats-showcase__ring strong {
		font-size: 31px;
	}

	.conf-stats-showcase__card h3 {
		font-size: 20px;
		margin: 24px 0 14px;
	}

	.conf-stats-showcase__card p {
		font-size: 15px;
	}

	.conf-media-social {
		padding-block: 54px 64px;
	}

	.conf-media-social__copy {
		padding: 0 0 28px;
	}

	.conf-media-social__media {
		min-height: 240px;
	}

	.conf-media-social__image {
		height: 240px;
		max-height: none;
	}

	.conf-media-social__card {
		margin: -16px 0 0 20px;
		min-height: 112px;
		min-width: 0;
		padding: 24px;
		width: calc(100% - 20px);
	}

	.conf-consultation-cta {
		min-height: 0;
		padding-block: 64px;
	}

	.conf-consultation-cta__body {
		margin-top: 20px;
	}

	.conf-consultation-cta__form {
		margin-top: 32px;
	}

	.conf-consultation-cta__form input,
	.conf-consultation-cta__form button {
		height: 52px;
	}

	.conf-consultation-cta__form button {
		margin-top: 12px;
		width: 100%;
	}

	.conf-quick-links__inner {
		display: block;
		min-height: 0;
	}

	.conf-quick-links__nav {
		display: block;
		padding: 18px 20px;
	}

	.conf-quick-links__item {
		min-height: 70px;
	}

	.conf-quick-links__contact {
		display: block;
		min-height: 0;
		padding: 28px 20px 30px;
	}

	.conf-quick-links__contact span {
		display: block;
		margin-bottom: 10px;
	}

	.conf-quick-links__contact strong {
		display: block;
		font-size: clamp(25px, 8vw, 32px);
		white-space: normal;
	}
}

@media (max-width: 380px) {
	.conf-module__inner {
		padding-inline: 16px;
	}

	.conf-module h2,
	.conf-intro-profile__content h2,
	.conf-services-module__feature h2,
	.conf-consultation-cta h2 {
		font-size: clamp(28px, 9vw, 34px) !important;
	}

	.conf-intro-profile__media {
		min-height: 320px;
	}

	.conf-intro-profile__media-primary,
	.conf-intro-profile__media-secondary {
		min-height: 320px;
	}

	.conf-intro-profile__media-primary .conf-intro-profile__image {
		height: 264px;
	}

	.conf-intro-profile__media-secondary .conf-intro-profile__image {
		height: 262px;
	}

	.conf-intro-profile__media-cta {
		min-height: 56px;
		padding: 12px;
	}
}
