:root {
	--c52-contact-bg: #020914;
	--c52-contact-bg-2: #061321;
	--c52-contact-card: #081726;
	--c52-contact-card-2: #0b1c2d;
	--c52-contact-line: rgba(255, 255, 255, 0.09);
	--c52-contact-text: #ffffff;
	--c52-contact-muted: #96a5b7;
	--c52-contact-blue: #087cff;
	--c52-contact-cyan: #21c2c8;
}

html {
	scroll-behavior: smooth;
}

.c52-contact-page {
	background: var(--c52-contact-bg);
	color: var(--c52-contact-text);
	overflow: hidden;
}

.c52-contact-page,
.c52-contact-page * {
	box-sizing: border-box;
}

.c52-contact-page a {
	text-decoration: none;
}

#formularz {
	scroll-margin-top: 125px;
}

/* HERO */

.c52-contact-hero {
	position: relative;
	min-height: 690px;
	display: flex;
	align-items: center;
	padding: 105px 0;
	background-image:
		linear-gradient(
			90deg,
			rgba(2, 9, 20, 0.96) 0%,
			rgba(2, 9, 20, 0.91) 43%,
			rgba(3, 14, 27, 0.74) 72%,
			rgba(3, 14, 27, 0.62) 100%
		),
		linear-gradient(
			180deg,
			rgba(2, 9, 20, 0.16) 0%,
			rgba(2, 9, 20, 0.08) 58%,
			rgba(2, 9, 20, 0.88) 100%
		),
		var(--c52-contact-hero-image);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	isolation: isolate;
}

.c52-contact-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background:
		linear-gradient(
			90deg,
			rgba(2, 9, 20, 0.22),
			transparent 55%,
			rgba(8, 124, 255, 0.08)
		);
	pointer-events: none;
}

.c52-contact-hero::after {
	content: "";
	position: absolute;
	inset: auto 0 0;
	height: 160px;
	background: linear-gradient(to bottom, transparent, var(--c52-contact-bg));
	pointer-events: none;
	z-index: -1;
}

.c52-contact-hero__grid {
	position: absolute;
	inset: 0;
	z-index: -2;
	opacity: 0.24;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
	background-size: 65px 65px;
	mask-image: linear-gradient(to right, transparent 3%, #000 52%, transparent);
}

.c52-contact-hero__glow {
	position: absolute;
	border-radius: 50%;
	filter: blur(95px);
	pointer-events: none;
	z-index: -1;
}

.c52-contact-hero__glow--blue {
	width: 380px;
	height: 380px;
	top: 80px;
	right: 4%;
	background: rgba(8, 124, 255, 0.17);
}

.c52-contact-hero__glow--cyan {
	width: 240px;
	height: 240px;
	left: 4%;
	bottom: 0;
	background: rgba(33, 194, 200, 0.08);
}

.c52-contact-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 23px;
	color: #2697ff;
	font-size: 0.74rem;
	font-weight: 800;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.c52-contact-eyebrow > span {
	width: 33px;
	height: 3px;
	background: linear-gradient(90deg, var(--c52-contact-blue), var(--c52-contact-cyan));
}

.c52-contact-hero h1 {
	max-width: 850px;
	margin: 0;
	color: #fff;
	font-size: clamp(3.2rem, 4vw, 4.6rem);
	font-weight: 900;
	line-height: 0.94;
	letter-spacing: -0.06em;
	text-transform: uppercase;
}

.c52-contact-hero h1 strong {
	color: var(--c52-contact-blue);
	font-weight: inherit;
}

.c52-contact-hero__content > p {
	max-width: 720px;
	margin: 31px 0 0;
	color: #b3bfcc;
	font-size: 1.07rem;
	line-height: 1.8;
}

.c52-contact-hero__buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 36px;
}

.c52-contact-btn {
	min-height: 54px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	padding: 0 25px;
	border: 1px solid transparent;
	border-radius: 2px;
	font-size: 0.82rem;
	font-weight: 800;
	letter-spacing: 0.035em;
	text-transform: uppercase;
	transition:
		transform 0.2s ease,
		background-color 0.2s ease,
		border-color 0.2s ease,
		box-shadow 0.2s ease,
		color 0.2s ease;
}

.c52-contact-btn svg {
	width: 18px;
	height: 18px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.c52-contact-btn--primary {
	border-color: var(--c52-contact-cyan);
	background: var(--c52-contact-cyan);
	color: #001319;
	box-shadow: 0 14px 34px rgba(33, 194, 200, 0.2);
}

.c52-contact-btn--primary:hover {
	transform: translateY(-2px);
	background: #37d6dc;
	border-color: #37d6dc;
	color: #001319;
	box-shadow: 0 18px 42px rgba(33, 194, 200, 0.3);
}

.c52-contact-btn--outline {
	border-color: rgba(255, 255, 255, 0.62);
	background: rgba(255, 255, 255, 0.02);
	color: #fff;
}

.c52-contact-btn--outline:hover {
	transform: translateY(-2px);
	border-color: #2697ff;
	background: rgba(8, 124, 255, 0.1);
	color: #fff;
}

.c52-contact-benefits {
	display: flex;
	flex-wrap: wrap;
	gap: 14px 26px;
	margin-top: 31px;
	color: #a2afbd;
	font-size: 0.84rem;
}

.c52-contact-benefits span {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.c52-contact-benefits i {
	width: 20px;
	height: 20px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(33, 194, 200, 0.42);
	border-radius: 50%;
	color: var(--c52-contact-cyan);
	font-size: 0.7rem;
	font-style: normal;
}

/* HERO CARD */

.c52-contact-hero-card {
	position: relative;
	max-width: 430px;
	margin-left: auto;
	padding: 42px;
	border: 1px solid rgba(63, 152, 255, 0.25);
	border-radius: 14px;
	background:
		linear-gradient(145deg, rgba(12, 31, 51, 0.96), rgba(4, 15, 27, 0.96));
	box-shadow:
		0 35px 85px rgba(0, 0, 0, 0.42),
		inset 0 1px 0 rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(16px);
	overflow: hidden;
}

.c52-contact-hero-card::before {
	content: "";
	position: absolute;
	width: 210px;
	height: 210px;
	right: -105px;
	top: -110px;
	border-radius: 50%;
	background: rgba(8, 124, 255, 0.12);
	filter: blur(20px);
}

.c52-contact-hero-card__top {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	gap: 9px;
	margin-bottom: 30px;
	color: #b7c3d0;
	font-size: 0.76rem;
	font-weight: 700;
}

.c52-contact-status-dot {
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: #25d67c;
	box-shadow: 0 0 16px rgba(37, 214, 124, 0.85);
}

.c52-contact-hero-card__icon {
	position: relative;
	z-index: 1;
	width: 68px;
	height: 68px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 27px;
	border: 1px solid rgba(38, 151, 255, 0.25);
	border-radius: 13px;
	background: rgba(8, 124, 255, 0.1);
	color: #2697ff;
}

.c52-contact-hero-card__icon svg,
.c52-contact-card-heading__icon svg,
.c52-contact-detail__icon svg,
.c52-contact-privacy svg {
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.c52-contact-hero-card__icon svg {
	width: 29px;
	height: 29px;
}

.c52-contact-hero-card__label {
	position: relative;
	z-index: 1;
	display: block;
	margin-bottom: 8px;
	color: #2697ff;
	font-size: 0.7rem;
	font-weight: 800;
	letter-spacing: 0.11em;
	text-transform: uppercase;
}

.c52-contact-hero-card h2 {
	position: relative;
	z-index: 1;
	margin: 0;
	color: #fff;
	font-size: clamp(1.7rem, 3vw, 2.3rem);
	font-weight: 800;
	line-height: 1.13;
	letter-spacing: -0.035em;
}

.c52-contact-hero-card p {
	position: relative;
	z-index: 1;
	margin: 17px 0 24px;
	color: #93a3b5;
	font-size: 0.91rem;
	line-height: 1.72;
}

.c52-contact-hero-card > a {
	position: relative;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: #fff;
	font-size: 0.91rem;
	font-weight: 800;
	overflow-wrap: anywhere;
}

.c52-contact-hero-card > a:hover {
	color: var(--c52-contact-cyan);
}

.c52-contact-hero-card__lines {
	position: absolute;
	right: 25px;
	bottom: 22px;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 7px;
	opacity: 0.42;
}

.c52-contact-hero-card__lines span {
	display: block;
	height: 2px;
	background: #2697ff;
}

.c52-contact-hero-card__lines span:nth-child(1) {
	width: 55px;
}

.c52-contact-hero-card__lines span:nth-child(2) {
	width: 38px;
}

.c52-contact-hero-card__lines span:nth-child(3) {
	width: 22px;
}

/* CONTACT MAIN */

.c52-contact-main {
	padding: 105px 0 70px;
	background:
		radial-gradient(circle at 0 25%, rgba(8, 124, 255, 0.07), transparent 25%),
		var(--c52-contact-bg);
}

.c52-contact-heading {
	display: grid;
	grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
	align-items: end;
	gap: 55px;
	margin-bottom: 49px;
}

.c52-contact-heading h2 {
	max-width: 720px;
	margin: 0;
	color: #fff;
	font-size: clamp(2.5rem, 4.7vw, 4.6rem);
	font-weight: 900;
	line-height: 0.99;
	letter-spacing: -0.05em;
	text-transform: uppercase;
}

.c52-contact-heading h2 strong {
	display: block;
	color: var(--c52-contact-blue);
	font-weight: inherit;
}

.c52-contact-heading > p {
	max-width: 550px;
	margin: 0 0 3px;
	color: var(--c52-contact-muted);
	font-size: 0.98rem;
	line-height: 1.82;
}

/* CARDS */

.c52-contact-form-card,
.c52-contact-details-card {
	position: relative;
	padding: 43px;
	border: 1px solid var(--c52-contact-line);
	background:
		linear-gradient(145deg, rgba(10, 26, 43, 0.98), rgba(5, 15, 27, 0.98));
	box-shadow: 0 28px 75px rgba(0, 0, 0, 0.34);
	overflow: hidden;
}

.c52-contact-form-card::before,
.c52-contact-details-card::before {
	content: "";
	position: absolute;
	inset: 0 auto auto 0;
	width: 100%;
	height: 3px;
	background: linear-gradient(
		90deg,
		var(--c52-contact-blue),
		var(--c52-contact-cyan),
		transparent
	);
}

.c52-contact-card-heading {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 15px;
}

.c52-contact-card-heading span {
	display: block;
	margin-bottom: 9px;
	color: #2697ff;
	font-size: 0.67rem;
	font-weight: 900;
	letter-spacing: 0.12em;
}

.c52-contact-card-heading h3 {
	margin: 0;
	color: #fff;
	font-size: clamp(1.65rem, 2.4vw, 2.15rem);
	font-weight: 800;
	letter-spacing: -0.03em;
}

.c52-contact-card-heading__icon {
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 50px;
	border: 1px solid rgba(38, 151, 255, 0.22);
	background: rgba(8, 124, 255, 0.08);
	color: #2697ff;
}

.c52-contact-card-heading__icon svg {
	width: 21px;
	height: 21px;
}

.c52-contact-card-intro {
	margin: 0 0 29px;
	color: var(--c52-contact-muted);
	font-size: 0.91rem;
	line-height: 1.75;
}

/* CONTACT FORM 7 */

.c52-contact-form .wpcf7 {
	margin: 0;
}

.c52-contact-form form {
	margin: 0;
}

.c52-contact-form p {
	margin: 0 0 0px;
}

.c52-contact-form label {
	display: block;
	color: #dbe3ec;
	font-size: 0.75rem;
	font-weight: 800;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.c52-contact-form .wpcf7-form-control-wrap {
	display: block;
	margin-top: 8px;
}

.c52-contact-form input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]),
.c52-contact-form select,
.c52-contact-form textarea {
	width: 100%;
	min-height: 54px;
	padding: 13px 15px;
	border: 1px solid rgba(255, 255, 255, 0.11);
	border-radius: 2px;
	outline: none;
	background: rgba(0, 7, 15, 0.46);
	color: #fff;
	font: inherit;
	font-size: 0.91rem;
	transition:
		border-color 0.2s ease,
		background-color 0.2s ease,
		box-shadow 0.2s ease;
}

.c52-contact-form textarea {
	min-height: 155px;
	resize: vertical;
}

.c52-contact-form input::placeholder,
.c52-contact-form textarea::placeholder {
	color: #667689;
	opacity: 1;
}

.c52-contact-form select {
	color-scheme: dark;
}

.c52-contact-form input:focus,
.c52-contact-form select:focus,
.c52-contact-form textarea:focus {
	border-color: #2697ff;
	background: rgba(5, 19, 34, 0.92);
	box-shadow: 0 0 0 4px rgba(8, 124, 255, 0.11);
}

.c52-contact-form input[type="checkbox"],
.c52-contact-form input[type="radio"] {
	accent-color: var(--c52-contact-blue);
}

.c52-contact-form input[type="submit"],
.c52-contact-form button[type="submit"],
.c52-contact-form .wpcf7-submit {
	min-height: 54px;
	padding: 0 27px;
	border: 1px solid var(--c52-contact-cyan);
	border-radius: 2px;
	background: var(--c52-contact-cyan);
	color: #001319;
	font-size: 0.8rem;
	font-weight: 900;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	box-shadow: 0 13px 32px rgba(33, 194, 200, 0.19);
	transition:
		transform 0.2s ease,
		background-color 0.2s ease,
		box-shadow 0.2s ease;
}

.c52-contact-form input[type="submit"]:hover,
.c52-contact-form button[type="submit"]:hover,
.c52-contact-form .wpcf7-submit:hover {
	transform: translateY(-2px);
	background: #37d6dc;
	box-shadow: 0 17px 40px rgba(33, 194, 200, 0.29);
}

.c52-contact-form .wpcf7-list-item {
	margin-left: 0;
}

.c52-contact-form .wpcf7-acceptance label {
	display: flex;
	align-items: flex-start;
	gap: 9px;
	color: #97a6b6;
	font-size: 0.77rem;
	font-weight: 500;
	line-height: 1.55;
	letter-spacing: 0;
	text-transform: none;
}

.c52-contact-form .wpcf7-not-valid-tip {
	margin-top: 6px;
	color: #ff8484;
	font-size: 0.76rem;
}

.c52-contact-form .wpcf7-response-output {
	margin: 20px 0 0 !important;
	padding: 13px 15px !important;
	border-width: 1px !important;
	color: #dce5ee;
	font-size: 0.83rem;
}

.c52-contact-form-error {
	padding: 16px;
	border: 1px solid rgba(255, 95, 95, 0.35);
	background: rgba(255, 95, 95, 0.08);
	color: #ffb3b3;
	font-size: 0.9rem;
}

.c52-contact-privacy {
	display: flex;
	align-items: flex-start;
	gap: 13px;
	margin-top: 27px;
	padding: 16px 18px;
	border: 1px solid rgba(33, 194, 200, 0.13);
	background: rgba(33, 194, 200, 0.045);
}

.c52-contact-privacy > svg {
	width: 36px;
	height: 36px;
	padding: 9px;
	flex: 0 0 36px;
	border-radius: 50%;
	background: rgba(33, 194, 200, 0.1);
	color: var(--c52-contact-cyan);
}

.c52-contact-privacy strong,
.c52-contact-privacy span {
	display: block;
}

.c52-contact-privacy strong {
	margin-bottom: 3px;
	color: #eaf0f6;
	font-size: 0.81rem;
}

.c52-contact-privacy span {
	color: #8494a5;
	font-size: 0.75rem;
	line-height: 1.55;
}

/* CONTACT DETAILS */

.c52-contact-details {
	border-top: 1px solid var(--c52-contact-line);
}

.c52-contact-detail {
	position: relative;
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 19px 0;
	border-bottom: 1px solid var(--c52-contact-line);
	color: inherit;
}

a.c52-contact-detail:hover .c52-contact-detail__icon {
	transform: translateY(-2px);
	border-color: rgba(33, 194, 200, 0.38);
	background: rgba(33, 194, 200, 0.08);
	color: var(--c52-contact-cyan);
}

a.c52-contact-detail:hover .c52-contact-detail__arrow {
	color: #2697ff;
	transform: translate(2px, -2px);
}

.c52-contact-detail__icon {
	width: 47px;
	height: 47px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 47px;
	border: 1px solid rgba(8, 124, 255, 0.2);
	background: rgba(8, 124, 255, 0.075);
	color: #2697ff;
	transition:
		transform 0.2s ease,
		border-color 0.2s ease,
		background-color 0.2s ease,
		color 0.2s ease;
}

.c52-contact-detail__icon svg {
	width: 19px;
	height: 19px;
}

.c52-contact-detail__content {
	min-width: 0;
	flex: 1;
}

.c52-contact-detail__content small,
.c52-contact-detail__content strong,
.c52-contact-detail__content em {
	display: block;
}

.c52-contact-detail__content small {
	margin-bottom: 3px;
	color: #718195;
	font-size: 0.66rem;
	font-weight: 800;
	font-style: normal;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.c52-contact-detail__content strong {
	color: #fff;
	font-size: 0.94rem;
	font-weight: 800;
	overflow-wrap: anywhere;
}

.c52-contact-detail__content em {
	margin-top: 3px;
	color: #7e8fa1;
	font-size: 0.7rem;
	font-style: normal;
}

.c52-contact-detail__arrow {
	color: #506176;
	font-size: 0.94rem;
	transition:
		color 0.2s ease,
		transform 0.2s ease;
}

.c52-contact-response {
	display: flex;
	gap: 14px;
	margin-top: 27px;
	padding: 19px;
	border: 1px solid rgba(37, 214, 124, 0.13);
	background: rgba(37, 214, 124, 0.04);
}

.c52-contact-response > span {
	width: 10px;
	height: 10px;
	flex: 0 0 10px;
	margin-top: 5px;
	border-radius: 50%;
	background: #25d67c;
	box-shadow: 0 0 16px rgba(37, 214, 124, 0.7);
}

.c52-contact-response strong {
	display: block;
	margin-bottom: 5px;
	color: #fff;
	font-size: 0.82rem;
}

.c52-contact-response p {
	margin: 0;
	color: #8191a3;
	font-size: 0.74rem;
	line-height: 1.6;
}

/* CTA */

.c52-contact-cta {
	padding: 15px 0 105px;
	background: var(--c52-contact-bg);
}

.c52-contact-cta__inner {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 45px;
	padding: 58px 65px;
	background:
		linear-gradient(118deg, #087cef 0%, #0861c9 50%, #064386 100%);
	box-shadow: 0 28px 75px rgba(0, 76, 165, 0.25);
	overflow: hidden;
}

.c52-contact-cta__inner::before,
.c52-contact-cta__inner::after {
	content: "";
	position: absolute;
	border: 1px solid rgba(255, 255, 255, 0.13);
	border-radius: 50%;
}

.c52-contact-cta__inner::before {
	width: 380px;
	height: 380px;
	right: -150px;
	top: -250px;
}

.c52-contact-cta__inner::after {
	width: 240px;
	height: 240px;
	right: 80px;
	bottom: -200px;
}

.c52-contact-cta__inner > div,
.c52-contact-cta__inner > a {
	position: relative;
	z-index: 1;
}

.c52-contact-cta__inner > div > span {
	display: block;
	margin-bottom: 13px;
	color: rgba(255, 255, 255, 0.72);
	font-size: 0.69rem;
	font-weight: 900;
	letter-spacing: 0.14em;
}

.c52-contact-cta h2 {
	margin: 0;
	color: #fff;
	font-size: clamp(2.2rem, 4.2vw, 4rem);
	font-weight: 900;
	line-height: 1;
	letter-spacing: -0.05em;
	text-transform: uppercase;
}

.c52-contact-cta h2 strong {
	display: block;
	color: #bff7f8;
	font-weight: inherit;
}

.c52-contact-cta p {
	max-width: 680px;
	margin: 17px 0 0;
	color: rgba(255, 255, 255, 0.8);
	font-size: 0.94rem;
	line-height: 1.72;
}

.c52-contact-btn--light {
	min-width: 210px;
	border-color: #fff;
	background: #fff;
	color: #061326;
}

.c52-contact-btn--light:hover {
	transform: translateY(-2px);
	background: #ddfcfd;
	border-color: #ddfcfd;
	color: #061326;
}

/* RESPONSIVE */

@media (max-width: 1199.98px) {
	.c52-contact-hero h1 {
		font-size: clamp(3.2rem, 4vw, 4.4rem);
	}

	.c52-contact-hero-card {
		padding: 36px;
	}
}

@media (max-width: 991.98px) {
	.c52-contact-hero {
		min-height: auto;
		padding: 85px 0 70px;
	}

	.c52-contact-hero-card {
		max-width: 620px;
		margin: 15px 0 0;
	}

	.c52-contact-heading {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.c52-contact-heading > p {
		max-width: 760px;
	}

	.c52-contact-form-card,
	.c52-contact-details-card {
		height: auto !important;
	}

	.c52-contact-cta__inner {
		align-items: flex-start;
		flex-direction: column;
	}

	.c52-contact-btn--light {
		min-width: 0;
	}
}

@media (max-width: 767.98px) {
	.c52-contact-hero {
		padding: 70px 0 55px;
	}

	.c52-contact-hero h1 {
		font-size: clamp(2.75rem, 13.7vw, 4.5rem);
		line-height: 0.96;
	}

	.c52-contact-hero__content > p {
		margin-top: 24px;
		font-size: 0.98rem;
		line-height: 1.7;
	}

	.c52-contact-hero__buttons {
		flex-direction: column;
	}

	.c52-contact-hero__buttons .c52-contact-btn {
		width: 100%;
	}

	.c52-contact-benefits {
		display: grid;
		grid-template-columns: 1fr;
		gap: 11px;
	}

	.c52-contact-hero-card {
		padding: 31px 25px;
	}

	.c52-contact-main {
		padding: 75px 0 50px;
	}

	.c52-contact-heading {
		margin-bottom: 36px;
	}

	.c52-contact-heading h2 {
		font-size: clamp(2.35rem, 11vw, 3.7rem);
	}

	.c52-contact-form-card,
	.c52-contact-details-card {
		padding: 31px 24px;
	}

	.c52-contact-cta {
		padding-bottom: 75px;
	}

	.c52-contact-cta__inner {
		padding: 42px 27px;
	}

	.c52-contact-cta__inner > a {
		width: 100%;
	}
}

@media (max-width: 575.98px) {
	.c52-contact-eyebrow {
		font-size: 0.65rem;
	}

	.c52-contact-hero h1 {
		font-size: clamp(2.55rem, 14.8vw, 3.75rem);
	}

	.c52-contact-card-heading {
		gap: 14px;
	}

	.c52-contact-card-heading__icon {
		width: 45px;
		height: 45px;
		flex-basis: 45px;
	}

	.c52-contact-form-card,
	.c52-contact-details-card {
		padding: 28px 19px;
	}

	.c52-contact-detail__icon {
		width: 42px;
		height: 42px;
		flex-basis: 42px;
	}

	.c52-contact-detail__arrow {
		display: none;
	}
}


@media (max-width: 767.98px) {
	.c52-contact-hero {
		background-position: 63% center;
	}
}

@media (prefers-reduced-motion: reduce) {
	.c52-contact-page *,
	.c52-contact-page *::before,
	.c52-contact-page *::after {
		scroll-behavior: auto !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
}
