/* MS Container Solutions — design tokens & base */

:root {
	--tat-primary: #0A1D3F;
	--tat-accent: #CE1126;
	--tat-white: #FFFFFF;
	--tat-light: #FAFAFA;
	--tat-dark: #101828;
	--tat-muted: #667085;
	--tat-border: #E4E7EC;
	--tat-container: 1300px;
	--tat-radius: 4px;
	--tat-font-body: "DM Sans", system-ui, sans-serif;
	--tat-font-display: "Barlow Condensed", "Arial Narrow", sans-serif;
	--tat-header-h: 78px;
	--tat-shadow: 0 18px 50px rgba(16, 24, 40, 0.1);
	--tat-section-y: clamp(3.5rem, 7vw, 5.25rem);
	--tat-pad-x: clamp(20px, 3vw, 28px);
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	overflow-x: clip;
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
}

body {
	margin: 0;
	font-family: var(--tat-font-body);
	font-size: clamp(1rem, 0.96rem + 0.2vw, 1.125rem);
	line-height: 1.7;
	color: var(--tat-dark);
	background: var(--tat-white);
	-webkit-font-smoothing: antialiased;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	color: var(--tat-primary);
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
	transition: color 0.2s ease;
}

a:hover {
	color: var(--tat-accent);
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
	outline: 2px solid var(--tat-accent);
	outline-offset: 3px;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--tat-font-display);
	font-weight: 700;
	line-height: 1.12;
	color: var(--tat-primary);
	margin: 0 0 0.55em;
	letter-spacing: 0.01em;
}

p {
	margin: 0 0 1em;
}

ul, ol {
	margin: 0 0 1em;
	padding-left: 1.2em;
}

.tat-container {
	width: 100%;
	max-width: var(--tat-container);
	margin-inline: auto;
	padding-inline: var(--tat-pad-x);
}

.tat-main {
	min-height: 40vh;
}

.tat-section {
	padding: var(--tat-section-y) 0;
}

.tat-section--light {
	background: var(--tat-light);
}

.tat-section--warm {
	background: var(--tat-light);
}

.tat-section--dark {
	background: var(--tat-primary);
	color: rgba(255, 255, 255, 0.88);
}

.tat-section--dark p {
	color: rgba(255, 255, 255, 0.84);
}

.tat-section__title--light {
	color: var(--tat-white);
}

.tat-section--dark {
	background: var(--tat-dark);
	color: #E4E7EC;
}

.tat-section--navy,
.tat-section--brown {
	background: var(--tat-primary);
	color: #F2F4F7;
}

.tat-section__head {
	max-width: 920px;
	margin-bottom: clamp(28px, 4vw, 48px);
}

.tat-section__head--wide {
	max-width: 960px;
}

.tat-section__head--center {
	max-width: 920px;
	margin-inline: auto;
	text-align: center;
	margin-bottom: clamp(32px, 5vw, 52px);
}

.tat-section__title {
	font-size: clamp(2rem, 1.4rem + 2.2vw, 3.15rem);
	margin-bottom: 0.4em;
}

.tat-section__title--light {
	color: var(--tat-white);
}

.tat-section__lead {
	color: var(--tat-muted);
	font-size: 1.05rem;
	margin: 0;
	max-width: 58ch;
}

.tat-section__head--center .tat-section__lead {
	margin-inline: auto;
}

.tat-badge {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--tat-primary);
	margin-bottom: 16px;
}

.tat-badge--on-dark {
	color: #ffffff;
	padding: 9px 18px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.25);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}

.tat-badge__dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #CE1126;
}

/* Pill section labels (homepage + shared) */
.tat-section-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: fit-content;
	max-width: 100%;
	padding: 9px 18px;
	margin-bottom: 14px;
	border-radius: 999px;
	background: rgba(206, 17, 38, 0.14);
	border: 1px solid rgba(206, 17, 38, 0.4);
	color: #0A1D3F;
	font-family: var(--tat-font-display);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	line-height: 1;
	white-space: nowrap;
}

.tat-section-badge--on-dark {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.28);
	color: #ffffff;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}

.tat-section__head--center .tat-section-badge,
.tat-section__head--center .tat-badge {
	margin-inline: auto;
}

.tat-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 14px 26px;
	font-family: var(--tat-font-body);
	font-size: 0.92rem;
	font-weight: 600;
	border-radius: var(--tat-radius);
	border: 2px solid transparent;
	text-decoration: none;
	cursor: pointer;
	transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.tat-btn:hover {
	transform: translateY(-2px);
	text-decoration: none;
}

.tat-btn--primary {
	background: var(--tat-accent);
	color: var(--tat-white);
}

.tat-btn--primary:hover {
	background: #A50E1F;
	color: var(--tat-white);
}

.tat-btn--accent,
.tat-btn--gold {
	background: var(--tat-accent);
	color: #ffffff;
	box-shadow: 0 10px 28px rgba(206, 17, 38, 0.28);
}

.tat-btn--accent:hover,
.tat-btn--gold:hover {
	background: #A50E1F;
	color: #ffffff;
}

.tat-btn--outline {
	background: transparent;
	color: var(--tat-primary);
	border-color: rgba(10, 29, 63, 0.28);
}

.tat-btn--outline:hover {
	background: var(--tat-primary);
	color: var(--tat-white);
	border-color: var(--tat-primary);
}

.tat-btn--outline-light {
	background: transparent;
	color: var(--tat-white);
	border-color: rgba(255, 255, 255, 0.55);
}

.tat-btn--outline-light:hover {
	background: var(--tat-white);
	color: var(--tat-dark);
	border-color: var(--tat-white);
}

.tat-btn--glass {
	background: rgba(255, 255, 255, 0.12);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	color: var(--tat-white);
	border-color: rgba(255, 255, 255, 0.35);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.tat-btn--glass:hover {
	background: rgba(255, 255, 255, 0.2);
	color: var(--tat-white);
	border-color: var(--tat-accent);
}

.tat-btn--lg {
	padding: 16px 32px;
	font-size: 0.98rem;
	min-height: 52px;
}

.tat-text-link {
	font-weight: 600;
	text-decoration: none;
	color: inherit;
	border-bottom: 0;
	background-image: linear-gradient(var(--tat-accent), var(--tat-accent));
	background-size: 0 1px;
	background-position: 0 100%;
	background-repeat: no-repeat;
	transition: background-size 0.3s ease, color 0.2s ease;
}

.tat-text-link:hover,
.tat-text-link:focus-visible {
	color: inherit;
	background-size: 100% 1px;
}

.tat-img-placeholder {
	width: 100%;
	aspect-ratio: 3 / 2;
	background:
		linear-gradient(135deg, rgba(10, 29, 63, 0.12), rgba(206, 17, 38, 0.18)),
		repeating-linear-gradient(
			-45deg,
			transparent,
			transparent 12px,
			rgba(10, 29, 63, 0.04) 12px,
			rgba(10, 29, 63, 0.04) 24px
		);
	border-radius: var(--tat-radius);
}

.tat-logo-text,
.custom-logo-link img,
.custom-logo-link {
	display: block;
	text-decoration: none;
}

.tat-logo-text {
	font-family: var(--tat-font-display);
	font-size: 1.55rem;
	font-weight: 700;
	color: var(--tat-primary);
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.custom-logo-link img {
	height: 48px;
	width: auto;
}

.tat-card {
	background: var(--tat-white);
	border: 1px solid var(--tat-border);
	border-radius: var(--tat-radius);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.tat-card:hover {
	border-color: rgba(206, 17, 38, 0.55);
	transform: translateY(-4px);
	box-shadow: var(--tat-shadow);
}

.tat-card__media {
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background: var(--tat-light);
}

.tat-card__img,
.tat-card__media .tat-img-placeholder {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 0;
	aspect-ratio: auto;
	transition: transform 0.55s ease;
}

.tat-card:hover .tat-card__img {
	transform: scale(1.03);
}

.tat-card__body {
	padding: 22px 20px 24px;
	display: flex;
	flex-direction: column;
	flex: 1;
}

.tat-card__title {
	font-size: 1.4rem;
	margin-bottom: 8px;
}

.tat-card__title a {
	color: inherit;
	text-decoration: none;
}

.tat-card__text {
	color: var(--tat-muted);
	font-size: 0.95rem;
	flex: 1;
}

.tat-card__actions {
	margin-top: 14px;
}

.tat-entry__content {
	max-width: 760px;
}

.tat-entry__meta {
	color: var(--tat-muted);
	font-size: 0.92rem;
}

.tat-entry__thumb {
	margin: 0 0 24px;
}

.tat-entry__thumb img {
	width: 100%;
	border-radius: var(--tat-radius);
}

@media (max-width: 768px) {
	body {
		padding-bottom: 0;
	}

	.tat-footer {
		background: #101828;
	}

	.tat-footer__bottom {
		background: #0A1D3F;
	}
}

/* Button rows — keep two CTAs on one line where practical */
.tat-hero__actions,
.tat-cta__actions,
.tat-hero__actions--row {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	gap: 12px;
}

@media (max-width: 380px) {
	.tat-hero__actions,
	.tat-cta__actions,
	.tat-hero__actions--row {
		flex-wrap: wrap;
	}
}

.tat-hero__actions .tat-btn,
.tat-cta__actions .tat-btn,
.tat-hero__actions--row .tat-btn {
	flex: 0 1 auto;
	white-space: nowrap;
}

/* Premium image frame for split sections */
.tat-media-frame {
	position: relative;
	z-index: 1;
}

.tat-media-frame::before {
	content: "";
	position: absolute;
	inset: 14px -12px -12px 14px;
	border: 1px solid var(--tat-accent);
	border-radius: var(--tat-radius);
	z-index: 0;
	pointer-events: none;
}

.tat-media-frame .tat-split__img,
.tat-media-frame .tat-coverage__img,
.tat-media-frame .tat-img-placeholder {
	position: relative;
	z-index: 2;
	box-shadow: 0 18px 40px rgba(16, 24, 40, 0.12);
}

.tat-media-frame--on-dark::before {
	border-color: rgba(206, 17, 38, 0.55);
}

/* Scenic full-bleed page hero */
.tat-page-hero--scenic {
	position: relative;
	min-height: clamp(460px, 62vh, 640px);
	display: flex;
	align-items: flex-end;
	overflow: hidden;
	background: var(--tat-dark);
	padding: 0;
}

.tat-page-hero--scenic .tat-page-hero__media {
	position: absolute;
	inset: 0;
}

.tat-page-hero--scenic .tat-page-hero__bg,
.tat-page-hero--scenic .tat-page-hero__media .tat-img-placeholder {
	width: 100%;
	height: 100%;
	object-fit: cover;
	aspect-ratio: auto;
	border-radius: 0;
}

.tat-page-hero__overlay {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(16, 24, 40, 0.82) 0%, rgba(16, 24, 40, 0.55) 48%, rgba(16, 24, 40, 0.28) 100%),
		linear-gradient(0deg, rgba(16, 24, 40, 0.55) 0%, transparent 55%);
}

.tat-page-hero__inner {
	position: relative;
	z-index: 2;
	width: 100%;
	padding-block: clamp(72px, 10vw, 120px) clamp(56px, 7vw, 88px);
}

.tat-page-hero__content {
	max-width: 740px;
}

.tat-page-hero__title {
	color: var(--tat-white);
	font-size: clamp(2.1rem, 1.55rem + 2.2vw, 3.45rem);
	max-width: min(22rem, 100%);
	margin-bottom: 16px;
	line-height: 1.12;
	text-wrap: balance;
}

.tat-page-hero__lead {
	color: rgba(255, 255, 255, 0.88);
	font-size: 1.08rem;
	max-width: 48ch;
	margin-bottom: 28px;
}

.tat-page-hero--scenic .tat-section-badge,
.tat-page-hero--scenic .tat-hero__badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: fit-content;
	max-width: 100%;
	padding: 9px 18px;
	margin-bottom: 18px;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, 0.28);
	background: rgba(255, 255, 255, 0.08);
	color: #ffffff;
	font-family: var(--tat-font-display);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	line-height: 1;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	white-space: nowrap;
}

.tat-page-hero--scenic .tat-hero__badge::before {
	content: none;
}

/* Shared scenic CTA */
.tat-cta,
.tat-cta--scenic {
	position: relative;
	overflow: hidden;
	color: var(--tat-white);
	padding: clamp(56px, 7vw, 88px) 0;
	min-height: clamp(400px, 42vh, 520px);
	display: flex;
	align-items: center;
	text-align: center;
	background: var(--tat-primary);
}

.tat-cta__bg {
	position: absolute;
	inset: 0;
}

.tat-cta__img,
.tat-cta__bg .tat-img-placeholder {
	width: 100%;
	height: 100%;
	object-fit: cover;
	aspect-ratio: auto;
	border-radius: 0;
}

.tat-cta--scenic::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(180deg, rgba(16, 24, 40, 0.72), rgba(10, 29, 63, 0.82));
}

.tat-cta__inner {
	position: relative;
	z-index: 2;
	max-width: 780px;
	margin-inline: auto;
	width: 100%;
}

.tat-cta__title {
	color: var(--tat-white);
	font-size: clamp(2.1rem, 1.5rem + 2.4vw, 3.2rem);
	max-width: 28ch;
	margin-inline: auto;
	margin-bottom: 14px;
}

.tat-cta__text {
	max-width: 48ch;
	margin: 0 auto 24px;
	color: rgba(255, 255, 255, 0.88);
}

.tat-cta__actions {
	justify-content: center;
	margin-bottom: 0;
}

/* Centered FAQ — Al Rehmat dual column */
.tat-faqs--centered .tat-section__head {
	margin-bottom: 36px;
}

.tat-section__head--wide {
	max-width: 920px;
}

.tat-faqs__narrow {
	max-width: 1100px;
	margin-inline: auto;
}

.tat-faqs__dual {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px 20px;
	max-width: 1200px;
	margin-inline: auto;
	width: 100%;
	align-items: start;
}

.tat-faqs__col {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.tat-faq {
	border: 1px solid var(--tat-border);
	border-radius: var(--tat-radius);
	background: var(--tat-white);
	margin-bottom: 0;
	overflow: hidden;
	transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.tat-faqs--dual-layout .tat-faq {
	margin-bottom: 0;
}

.tat-faq__q {
	list-style: none;
	cursor: pointer;
	padding: 24px 56px 24px 28px;
	font-weight: 600;
	color: var(--tat-primary);
	position: relative;
	background: var(--tat-white);
	line-height: 1.35;
}

.tat-faq__q::-webkit-details-marker {
	display: none;
}

.tat-faq__q::after {
	content: "+";
	position: absolute;
	right: 22px;
	top: 50%;
	transform: translateY(-50%);
	color: var(--tat-accent);
	font-size: 1.5rem;
	font-weight: 400;
	line-height: 1;
	transition: transform 0.28s ease, opacity 0.28s ease;
}

.tat-faq[open] {
	border-color: rgba(206, 17, 38, 0.4);
}

.tat-faq[open] .tat-faq__q::after {
	content: "−";
	transform: translateY(-50%) scale(1.05);
}

.tat-faq__a {
	padding: 0 28px 30px;
	color: var(--tat-muted);
	background: var(--tat-white);
	line-height: 1.7;
}

.tat-faq__a p {
	margin: 0;
	padding-top: 6px;
	font-size: 0.98rem;
}

@media (max-width: 900px) {
	.tat-faqs__dual {
		grid-template-columns: 1fr;
	}

	.tat-faq__q {
		padding: 20px 48px 20px 20px;
	}

	.tat-faq__a {
		padding: 0 20px 20px;
	}
}

.tat-section__head--center {
	text-align: center;
	max-width: 920px;
	margin-inline: auto;
}

.tat-section__head--center .tat-section__lead {
	margin-inline: auto;
}

/* Text-only guidance blocks */
.tat-guidance {
	text-align: center;
}

.tat-guidance__inner {
	max-width: 960px;
	margin-inline: auto;
}

.tat-guidance__inner p {
	max-width: 62ch;
	margin-inline: auto;
}

/* Animated accent underline on text links (not buttons) */
.tat-footer a:not(.tat-btn):not(.tat-footer__logo),
.tat-main a.tat-text-link,
.tat-main .tat-entry__content a:not(.tat-btn),
.tat-footer__credit a {
	color: inherit;
	text-decoration: none;
	background-image: linear-gradient(var(--tat-accent), var(--tat-accent));
	background-size: 0 1px;
	background-position: 0 100%;
	background-repeat: no-repeat;
	transition: background-size 0.3s ease, color 0.2s ease;
}

.tat-footer a:not(.tat-btn):not(.tat-footer__logo):hover,
.tat-footer a:not(.tat-btn):not(.tat-footer__logo):focus-visible,
.tat-main a.tat-text-link:hover,
.tat-main a.tat-text-link:focus-visible,
.tat-main .tat-entry__content a:not(.tat-btn):hover,
.tat-footer__credit a:hover,
.tat-footer__credit a:focus-visible {
	color: inherit;
	background-size: 100% 1px;
}

.tat-text-link {
	border-bottom: 0;
}

/* Shared form controls (Contact + Quick Quote) */
.tat-form__actions {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	gap: 12px;
	margin-top: 8px;
	padding-top: 18px;
	border-top: 1px solid var(--tat-border);
}

.tat-form__note {
	margin: 0;
	max-width: 42ch;
	font-size: 0.88rem;
	color: var(--tat-muted);
	text-align: center;
}

.tat-form__span-2 {
	grid-column: 1 / -1;
}

.tat-btn--block {
	width: 100%;
	max-width: 420px;
}

.tat-qty {
	display: inline-flex;
	align-items: stretch;
	width: 100%;
	border: 1px solid var(--tat-border);
	border-radius: var(--tat-radius);
	overflow: hidden;
	background: var(--tat-white);
	min-height: 48px;
}

.tat-qty__btn {
	width: 46px;
	border: 0;
	background: var(--tat-light);
	color: var(--tat-primary);
	font-size: 1.2rem;
	font-weight: 700;
	cursor: pointer;
	line-height: 1;
}

.tat-qty__btn:hover {
	background: rgba(206, 17, 38, 0.12);
	color: var(--tat-accent);
}

.tat-qty__input {
	flex: 1;
	min-width: 0;
	border: 0 !important;
	border-radius: 0 !important;
	text-align: center;
	min-height: 46px !important;
	box-shadow: none !important;
	-moz-appearance: textfield;
}

.tat-qty__input::-webkit-outer-spin-button,
.tat-qty__input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.tat-form-errors {
	margin: 0 0 16px;
	padding: 0 0 0 1.1em;
	color: #8a1f1f;
	font-size: 0.92rem;
}

.tat-form label {
	display: block;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	margin-bottom: 6px;
	color: var(--tat-primary);
}

.tat-form input,
.tat-form select,
.tat-form textarea {
	width: 100%;
	min-height: 48px;
	padding: 12px 14px;
	border: 1px solid var(--tat-border);
	border-radius: var(--tat-radius);
	font: inherit;
	background: var(--tat-white);
	color: var(--tat-dark);
}

.tat-form textarea {
	min-height: 120px;
}

.tat-form input:focus,
.tat-form select:focus,
.tat-form textarea:focus {
	outline: 2px solid var(--tat-accent);
	outline-offset: 1px;
	border-color: var(--tat-accent);
}

.tat-form__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px 18px;
}

.tat-form-notice--success {
	background: #edf7ed;
	color: #1e6b3a;
	border: 1px solid rgba(30, 107, 58, 0.2);
	padding: 14px 16px;
	border-radius: var(--tat-radius);
	margin-bottom: 18px;
	font-weight: 600;
}

.tat-form-notice--error {
	background: #fdeeee;
	color: #8a1f1f;
	border: 1px solid rgba(138, 31, 31, 0.18);
	padding: 14px 16px;
	border-radius: var(--tat-radius);
	margin-bottom: 12px;
	font-weight: 600;
}

@media (max-width: 900px) {
	.tat-form__grid {
		grid-template-columns: 1fr;
	}

	.tat-btn--block {
		max-width: none;
	}
}

/* Honeypot — never visible */
.tat-hp {
	position: absolute !important;
	left: -10000px !important;
	top: auto !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
	opacity: 0 !important;
	pointer-events: none !important;
}

/* Reveal animations */
.tat-reveal {
	opacity: 0;
	transform: translateY(22px);
	transition: opacity 0.55s ease, transform 0.55s ease;
}

.tat-reveal.is-inview {
	opacity: 1;
	transform: none;
}

@media (prefers-reduced-motion: reduce) {
	.tat-reveal {
		opacity: 1;
		transform: none;
		transition: none;
	}
}

/* Overlay service / location card links — white text + accent underline */
.tat-svc-card__link,
.tat-loc-card .tat-svc-card__link {
	color: #fff;
	text-decoration: none;
	background-image: linear-gradient(#CE1126, #CE1126);
	background-position: 0 100%;
	background-repeat: no-repeat;
	background-size: 0 2px;
	transition: background-size 0.3s ease, color 0.2s ease;
}

.tat-svc-card__link:hover,
.tat-svc-card:hover .tat-svc-card__link,
.tat-loc-card .tat-svc-card__link:hover,
.tat-loc-card:hover .tat-svc-card__link {
	color: #fff;
	background-size: 100% 2px;
}

.tat-svc-card__link::after,
.tat-loc-card .tat-svc-card__link::after {
	color: #fff;
}
