.tt-contact-page {
	background:
		radial-gradient(circle at 20% 42%, rgba(255, 255, 255, 0.9), transparent 29%),
		radial-gradient(circle at 76% 72%, rgba(255, 255, 255, 0.7), transparent 27%),
		linear-gradient(135deg, #f7f4ed, #f3efe6);
}

.tt-contact-hero {
	position: relative;
	min-height: 258px;
	overflow: hidden;
	background:
		radial-gradient(circle at 52% 45%, rgba(25, 52, 86, 0.28), transparent 35%),
		linear-gradient(135deg, #08111f 0%, #0d1b2d 52%, #081321 100%);
	color: #fff;
}

.tt-contact-hero__inner,
.tt-contact-content__inner {
	width: min(calc(100% - 64px), 1280px);
}

.tt-contact-hero__inner {
	position: relative;
	z-index: 3;
	min-height: inherit;
}

.tt-contact-breadcrumb {
	position: absolute;
	top: 29px;
	right: 0;
	display: flex;
	align-items: center;
	gap: 13px;
	color: rgba(255, 255, 255, 0.7);
	font-size: 14px;
}

.tt-contact-breadcrumb a {
	color: #fff;
	font-weight: 700;
}

.tt-contact-hero__content {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: inherit;
	padding: 70px 180px 36px;
	text-align: center;
}

.tt-contact-eyebrow {
	display: flex;
	align-items: center;
	gap: 12px;
	margin: 0 0 21px;
	font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
	font-size: 15px;
	font-weight: 500;
	letter-spacing: 1.5px;
}

.tt-contact-eyebrow i {
	width: 11px;
	height: 11px;
	border-radius: 50%;
	background: var(--tt-red);
	box-shadow: 0 0 14px rgba(230, 57, 70, 0.42);
}

.tt-contact-hero h1 {
	margin: 0;
	font-size: clamp(32px, 3.2vw, 48px);
	font-weight: 900;
	line-height: 1.25;
}

.tt-contact-hero__content > p:last-child {
	margin: 21px 0 0;
	color: rgba(255, 255, 255, 0.68);
	font-size: 20px;
	font-weight: 500;
}

.tt-contact-plus {
	position: absolute;
	z-index: 2;
	width: 25px;
	height: 25px;
	background: url("../icons/plus.svg") center / contain no-repeat;
	filter: brightness(0) invert(1);
	opacity: 0.85;
}

.tt-contact-plus--start {
	bottom: 44%;
	left: 23.5%;
}

.tt-contact-plus--end {
	right: 8%;
	bottom: 38px;
}

.tt-contact-rings {
	--tt-orbit-inner-size: 25%;
	--tt-orbit-middle-size: 50%;
	--tt-orbit-outer-size: 75%;
	position: absolute;
	top: -190px;
	left: -75px;
	width: 430px;
	aspect-ratio: 1;
	border: 1px solid rgba(255, 255, 255, 0.28);
	border-radius: 50%;
}

.tt-contact-rings > i,
.tt-contact-rings > b {
	position: absolute;
	top: 50%;
	left: 50%;
	border: 1px solid rgba(255, 255, 255, 0.28);
	border-radius: 50%;
	transform: translate(-50%, -50%);
}

.tt-contact-rings > i:nth-child(1) { width: 80%; height: 80%; }
.tt-contact-rings > i:nth-child(2) { width: 60%; height: 60%; }
.tt-contact-rings > i:nth-child(3) { width: 40%; height: 40%; }
.tt-contact-rings > i:nth-child(4) { width: 20%; height: 20%; }

.tt-contact-rings > b {
	width: 14px;
	height: 14px;
	border: 0;
	background: var(--tt-red);
	box-shadow: 0 0 0 8px rgba(230, 57, 70, 0.1);
}

.tt-contact-ring-mark {
	--tt-orbit-duration: 25s;
	--tt-orbit-delay: -2s;
	--tt-orbit-direction: 360deg;
	position: absolute;
	z-index: 3;
	top: 50%;
	left: 50%;
	width: 100%;
	aspect-ratio: 1;
	border-radius: 50%;
	animation: tt-target-orbit var(--tt-orbit-duration) linear infinite;
	animation-delay: var(--tt-orbit-delay);
	will-change: transform;
}

.tt-contact-ring-mark::before {
	position: absolute;
	top: 50%;
	right: 0;
	width: 13px;
	height: 13px;
	background: url("../icons/plus.svg") center / contain no-repeat;
	content: "";
	filter: drop-shadow(0 0 4px rgba(230, 57, 70, 0.28));
	transform: translate(50%, -50%);
}

.tt-contact-ring-mark--middle {
	--tt-orbit-duration: 20s;
	--tt-orbit-delay: -7s;
	--tt-orbit-direction: -360deg;
	width: 80%;
}

.tt-contact-ring-mark--inner {
	--tt-orbit-duration: 15s;
	--tt-orbit-delay: -5.7s;
	width: 60%;
}

.tt-contact-content {
	padding: 27px 0 64px;
	background: transparent;
}

.tt-contact-cards {
	display: grid;
	direction: ltr;
	grid-template-areas: "phone whatsapp email address";
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 28px;
}

.tt-contact-card {
	position: relative;
	display: flex;
	direction: rtl;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	min-width: 0;
	min-height: 200px;
	padding: 25px 18px 20px;
	border: 1px solid rgba(13, 19, 33, 0.15);
	border-top: 3px solid var(--tt-red);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.37);
	box-shadow: 0 8px 24px rgba(13, 19, 33, 0.025);
	text-align: center;
}

.tt-contact-card--phone { grid-area: phone; }
.tt-contact-card--whatsapp { grid-area: whatsapp; }
.tt-contact-card--email { grid-area: email; }
.tt-contact-card--address { grid-area: address; }

.tt-contact-card > .dashicons {
	width: 43px;
	height: 43px;
	margin-bottom: 9px;
	color: var(--tt-red);
	font-size: 43px;
	line-height: 1;
}

.tt-contact-card h2 {
	margin: 0 0 8px;
	font-size: 19px;
	font-weight: 800;
}

.tt-contact-card > a,
.tt-contact-card > p {
	margin: 0;
	color: #263247;
	font-size: 16px;
	font-style: normal;
	line-height: 1.8;
}

.tt-contact-card > a:hover {
	color: var(--tt-red);
}

.tt-contact-card__hours {
	position: absolute;
	right: 11px;
	bottom: 11px;
	left: 11px;
	padding: 7px 8px;
	border: 1px dashed rgba(13, 19, 33, 0.38);
	border-radius: 4px;
	font-size: 13px;
}

.tt-contact-mobile-hours {
	display: none;
}

.tt-contact-main {
	display: grid;
	direction: ltr;
	grid-template-columns: 330px minmax(0, 1fr);
	gap: 44px;
	margin-top: 18px;
}

.tt-contact-form-section {
	direction: rtl;
	grid-column: 2;
	padding-top: 13px;
}

.tt-contact-form-section > h2 {
	display: flex;
	align-items: center;
	gap: 9px;
	margin: 0 0 22px;
	font-size: 20px;
	font-weight: 800;
}

.tt-contact-form-section > h2 i {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--tt-red);
}

.tt-contact-form {
	display: grid;
	gap: 17px;
}

.tt-contact-form__row {
	display: grid;
	direction: rtl;
	grid-template-columns: 165px minmax(0, 1fr);
	align-items: center;
	gap: 16px;
}

.tt-contact-form__row > span {
	grid-column: 1;
	grid-row: 1;
	text-align: right;
	font-size: 15px;
	font-weight: 600;
}

.tt-contact-form__row > input,
.tt-contact-form__row > select,
.tt-contact-form__row > textarea {
	grid-column: 2;
	grid-row: 1;
	width: 100%;
	min-width: 0;
	border: 1px solid rgba(13, 19, 33, 0.2);
	border-radius: 5px;
	outline: none;
	background: rgba(255, 255, 255, 0.66);
	color: var(--tt-navy);
	transition: border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.tt-contact-form__row > input,
.tt-contact-form__row > select {
	height: 45px;
	padding: 0 16px;
}

.tt-contact-form__row > textarea {
	min-height: 84px;
	padding: 12px 16px;
	resize: vertical;
}

.tt-contact-form__row > input:focus,
.tt-contact-form__row > select:focus,
.tt-contact-form__row > textarea:focus {
	border-color: var(--tt-red);
	background: #fff;
	box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.09);
}

.tt-contact-form__row > input::placeholder,
.tt-contact-form__row > textarea::placeholder {
	color: rgba(13, 19, 33, 0.45);
}

.tt-contact-form__submit {
	display: inline-flex;
	grid-column: 1;
	align-items: center;
	justify-content: center;
	gap: 10px;
	direction: ltr;
	height: 47px;
	margin-right: 181px;
	border: 0;
	border-radius: 5px;
	background: linear-gradient(135deg, #ea2432, #e63946);
	color: #fff;
	cursor: pointer;
	font-size: 16px;
	font-weight: 800;
	box-shadow: 0 9px 20px rgba(230, 57, 70, 0.16);
	transition: transform 160ms ease, box-shadow 160ms ease;
}

.tt-contact-form__submit > span {
	direction: rtl;
}

.tt-contact-form__submit:hover {
	transform: translateY(-2px);
	box-shadow: 0 13px 25px rgba(230, 57, 70, 0.23);
}

.tt-contact-form__submit:disabled {
	cursor: wait;
	opacity: 0.65;
}

.tt-contact-form__submit .tt-icon {
	width: 18px;
	height: 18px;
	filter: brightness(0) invert(1);
}

.tt-contact-form__message {
	min-height: 22px;
	margin: -7px 0 0 0;
	padding-right: 181px;
	font-size: 13px;
}

.tt-contact-form__message.is-success { color: #16833c; }
.tt-contact-form__message.is-error { color: #c92331; }

.tt-form-honeypot {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
	clip: rect(0, 0, 0, 0) !important;
}

.tt-contact-guide {
	position: relative;
	display: flex;
	direction: rtl;
	grid-column: 1;
	grid-row: 1;
	flex-direction: column;
	align-items: center;
	min-height: 398px;
	padding: 37px 34px 26px;
	overflow: hidden;
	border-radius: 8px;
	background:
		radial-gradient(circle at 70% 25%, rgba(32, 70, 116, 0.36), transparent 37%),
		linear-gradient(145deg, #07111f, #10223a);
	color: #fff;
	box-shadow: 0 12px 31px rgba(13, 19, 33, 0.12);
	text-align: center;
}

.tt-contact-guide__corner {
	position: absolute;
	width: 27px;
	height: 27px;
	background: url("../icons/corner-frame.svg") center / contain no-repeat;
}

.tt-contact-guide__corner--top {
	top: 10px;
	left: 10px;
	transform: none;
}

.tt-contact-guide__corner--bottom {
	right: 10px;
	bottom: 10px;
	transform: rotate(180deg);
}

.tt-contact-guide__target {
	position: relative;
	width: 102px;
	aspect-ratio: 1;
	margin-bottom: 19px;
}

.tt-contact-guide__target i,
.tt-contact-guide__target b {
	position: absolute;
	top: 50%;
	left: 50%;
	border: 1px solid rgba(255, 255, 255, 0.86);
	border-radius: 50%;
	transform: translate(-50%, -50%);
}

.tt-contact-guide__target i:nth-child(1) { width: 100%; height: 100%; }
.tt-contact-guide__target i:nth-child(2) { width: 68%; height: 68%; }
.tt-contact-guide__target i:nth-child(3) { width: 36%; height: 36%; }

.tt-contact-guide__target b {
	width: 18px;
	height: 18px;
	border: 0;
	background: var(--tt-red);
	box-shadow: 0 0 0 8px rgba(230, 57, 70, 0.13);
}

.tt-contact-guide > p {
	margin: 0;
	padding-bottom: 18px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.25);
	font-size: 16px;
	font-weight: 600;
	line-height: 1.8;
}

.tt-contact-guide ul {
	display: grid;
	align-self: stretch;
	gap: 10px;
	margin: 18px 0 20px;
	padding: 0;
	list-style: none;
}

.tt-contact-guide li {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 8px;
	font-size: 14px;
}

.tt-contact-guide li .tt-icon {
	order: -1;
	width: 21px;
	height: 21px;
}

.tt-contact-guide__badge {
	margin-top: auto;
	padding: 9px 16px;
	border: 1px dashed rgba(255, 255, 255, 0.42);
	border-radius: 5px;
	font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
	font-size: 13px;
	letter-spacing: 1px;
}

.tt-contact-location {
	padding-top: 29px;
	border-top: 0;
	background: transparent;
}

.tt-contact-location__inner,
.tt-contact-socials__inner {
	width: min(calc(100% - 64px), 1280px);
}

.tt-contact-location h2,
.tt-contact-socials h2 {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	margin: 0 0 23px;
	font-size: 21px;
	font-weight: 800;
}

.tt-contact-location h2 i,
.tt-contact-socials h2 i {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--tt-red);
}

.tt-contact-location h2 {
	justify-content: flex-start;
	text-align: right;
}

.tt-contact-map {
	position: relative;
	height: 292px;
	margin-inline: auto;
}

.tt-contact-map iframe {
	display: block;
	width: 100%;
	height: 100%;
	border: 1px solid rgba(13, 19, 33, 0.15);
	border-radius: 9px;
	background: #e9ecef;
}

.tt-contact-map__corner {
	position: absolute;
	z-index: 2;
	width: 27px;
	height: 27px;
	background: url("../icons/corner-frame.svg") center / contain no-repeat;
	pointer-events: none;
}

.tt-contact-map__corner--top-start {
	top: -9px;
	right: -9px;
	transform: rotate(90deg);
}

.tt-contact-map__corner--top-end {
	top: -9px;
	left: -9px;
}

.tt-contact-map__corner--bottom-start {
	right: -9px;
	bottom: -9px;
	transform: rotate(180deg);
}

.tt-contact-map__corner--bottom-end {
	bottom: -9px;
	left: -9px;
	transform: rotate(-90deg);
}

.tt-contact-location__details {
	display: grid;
	direction: rtl;
	grid-template-columns: 1.4fr 1fr;
	align-items: center;
	gap: 30px;
	min-height: 69px;
	padding-inline: 18%;
}

.tt-contact-location__details p {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 10px;
	margin: 0;
	font-size: 14px;
	line-height: 1.8;
}

.tt-contact-location__details p .dashicons {
	width: 28px;
	height: 28px;
	color: var(--tt-red);
	font-size: 28px;
}

.tt-contact-location__details > a {
	display: inline-flex;
	align-items: center;
	justify-content: flex-end;
	gap: 7px;
	color: var(--tt-red);
	font-size: 14px;
	font-weight: 600;
}

.tt-contact-location__details > a .tt-icon {
	width: 15px;
	height: 15px;
	filter: brightness(0) saturate(100%) invert(33%) sepia(78%) saturate(2416%) hue-rotate(334deg) brightness(93%) contrast(93%);
	transform: none;
}

.tt-contact-socials {
	padding: 21px 0 23px;
	border-top: 1px solid rgba(13, 19, 33, 0.1);
}

.tt-contact-socials h2 {
	margin-bottom: 17px;
}

.tt-contact-socials__list {
	display: flex;
	direction: rtl;
	align-items: flex-start;
	justify-content: center;
	gap: clamp(23px, 4vw, 48px);
}

.tt-contact-social {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 7px;
	min-width: 56px;
	color: var(--tt-navy);
}

.tt-contact-social__icon {
	display: grid;
	width: 54px;
	height: 54px;
	place-items: center;
	border: 1px solid currentColor;
	border-radius: 50%;
	background: transparent;
	transition: color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

.tt-contact-social__icon img {
	width: 27px;
	height: 27px;
	filter: brightness(0) saturate(100%);
	object-fit: contain;
}

.tt-contact-social__icon b {
	font-family: Arial, sans-serif;
	font-size: 18px;
	font-weight: 700;
}

.tt-contact-social small {
	font-size: 12px;
}

.tt-contact-social:hover .tt-contact-social__icon,
.tt-contact-social:focus-visible .tt-contact-social__icon {
	border-color: var(--tt-red);
	background: var(--tt-red);
	color: #fff;
	transform: translateY(-2px);
}

.tt-contact-social:hover .tt-contact-social__icon img,
.tt-contact-social:focus-visible .tt-contact-social__icon img {
	filter: brightness(0) invert(1);
}

.tt-contact-socials__inner > p {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	margin: 13px 0 0;
	color: rgba(13, 19, 33, 0.48);
	font-size: 14px;
	text-align: center;
}

.tt-contact-socials__inner > p::before,
.tt-contact-socials__inner > p::after {
	width: 43px;
	height: 1px;
	background: rgba(13, 19, 33, 0.13);
	content: "";
}

@media (max-width: 980px) {
	.tt-contact-hero__inner,
	.tt-contact-content__inner {
		width: min(calc(100% - 40px), 760px);
	}

	.tt-contact-cards {
		grid-template-areas:
			"whatsapp phone"
			"email address";
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 20px;
	}

	.tt-contact-card__hours {
		display: none;
	}

	.tt-contact-mobile-hours {
		display: block;
		margin: 22px 0 0;
		padding: 11px 16px;
		border: 1px solid rgba(13, 19, 33, 0.65);
		border-radius: 7px;
		text-align: center;
	}

	.tt-contact-main {
		display: flex;
		flex-direction: column;
		gap: 22px;
		margin-top: 22px;
	}

	.tt-contact-form-section {
		order: 2;
	}

	.tt-contact-guide {
		order: 1;
		min-height: 250px;
	}

	.tt-contact-location__details {
		padding-inline: 5%;
	}
}

@media (max-width: 767px) {
	.tt-contact-hero {
		min-height: 315px;
	}

	.tt-contact-hero__inner,
	.tt-contact-content__inner {
		width: min(calc(100% - 32px), 560px);
	}

	.tt-contact-breadcrumb {
		top: 24px;
		right: 0;
		font-size: 13px;
	}

	.tt-contact-hero__content {
		align-items: flex-start;
		padding: 93px 0 33px;
		text-align: right;
	}

	.tt-contact-eyebrow {
		align-self: center;
		margin-bottom: 25px;
		font-size: 12px;
		letter-spacing: 1.3px;
	}

	.tt-contact-eyebrow i {
		width: 8px;
		height: 8px;
	}

	.tt-contact-hero h1 {
		align-self: center;
		font-size: clamp(30px, 8vw, 40px);
		line-height: 1.35;
		text-align: center;
	}

	.tt-contact-hero__content > p:last-child {
		align-self: center;
		margin-top: 18px;
		font-size: 17px;
	}

	.tt-contact-rings {
		top: -61px;
		left: -92px;
		width: 230px;
	}

	.tt-contact-ring-mark::before {
		width: 11px;
		height: 11px;
	}

	.tt-contact-plus--start {
		top: 55px;
		right: 17px;
		bottom: auto;
		left: auto;
		width: 24px;
		height: 24px;
	}

	.tt-contact-plus--end {
		display: none;
	}

	.tt-contact-content {
		padding: 34px 0 48px;
	}

	.tt-contact-cards {
		gap: 14px;
	}

	.tt-contact-card {
		min-height: 170px;
		padding: 24px 12px 17px;
		border-radius: 7px;
	}

	.tt-contact-card > .dashicons {
		width: 44px;
		height: 44px;
		font-size: 44px;
	}

	.tt-contact-card h2 {
		font-size: 18px;
	}

	.tt-contact-card > a,
	.tt-contact-card > p {
		font-size: 14px;
		line-height: 1.75;
	}

	.tt-contact-mobile-hours {
		margin-top: 18px;
		font-size: 14px;
	}

	.tt-contact-guide {
		display: grid;
		grid-template-columns: 175px minmax(0, 1fr);
		grid-template-rows: auto auto auto;
		align-items: center;
		min-height: 205px;
		padding: 25px 24px 20px;
		text-align: right;
	}

	.tt-contact-guide__target {
		grid-column: 1;
		grid-row: 1 / 4;
		width: 130px;
		margin: 0 auto;
	}

	.tt-contact-guide > p {
		grid-column: 2;
		grid-row: 1;
		padding: 0;
		border: 0;
		font-size: 15px;
	}

	.tt-contact-guide ul {
		display: flex;
		grid-column: 2;
		grid-row: 2;
		gap: 8px;
		margin: 13px 0;
	}

	.tt-contact-guide li {
		gap: 5px;
		padding: 7px 9px;
		border: 1px solid rgba(255, 255, 255, 0.26);
		border-radius: 5px;
		font-size: 11px;
		white-space: nowrap;
	}

	.tt-contact-guide li .tt-icon {
		width: 15px;
		height: 15px;
	}

	.tt-contact-guide__badge {
		grid-column: 2;
		grid-row: 3;
		justify-self: start;
		margin: 0;
		padding: 7px 10px;
		font-size: 10px;
	}

	.tt-contact-form-section {
		padding-top: 0;
	}

	.tt-contact-form-section > h2 {
		margin-bottom: 20px;
		font-size: 19px;
	}

	.tt-contact-form {
		gap: 13px;
	}

	.tt-contact-form__row {
		display: flex;
		flex-direction: column;
		align-items: stretch;
		gap: 6px;
	}

	.tt-contact-form__row > span {
		font-size: 14px;
	}

	.tt-contact-form__row > input,
	.tt-contact-form__row > select {
		height: 51px;
	}

	.tt-contact-form__row > textarea {
		min-height: 96px;
	}

	.tt-contact-form__submit {
		height: 56px;
		margin: 10px 0 0;
		font-size: 17px;
	}

	.tt-contact-form__message {
		margin: -3px 0 0;
		padding: 0;
	}

	.tt-contact-location {
		padding-top: 36px;
	}

	.tt-contact-location__inner,
	.tt-contact-socials__inner {
		width: min(calc(100% - 48px), 560px);
	}

	.tt-contact-location h2,
	.tt-contact-socials h2 {
		justify-content: flex-start;
		margin-bottom: 24px;
		font-size: 24px;
	}

	.tt-contact-map {
		height: 420px;
	}

	.tt-contact-map__corner {
		width: 25px;
		height: 25px;
	}

	.tt-contact-location__details {
		grid-template-columns: 1.45fr 0.8fr;
		gap: 12px;
		min-height: 90px;
		padding: 13px 0;
	}

	.tt-contact-location__details p {
		font-size: 12px;
	}

	.tt-contact-location__details p .dashicons {
		width: 27px;
		height: 27px;
		font-size: 27px;
	}

	.tt-contact-location__details > a {
		font-size: 12px;
		white-space: nowrap;
	}

	.tt-contact-socials {
		padding: 35px 0 31px;
	}

	.tt-contact-socials h2 {
		justify-content: center;
	}

	.tt-contact-socials__list {
		justify-content: space-between;
		gap: 8px;
	}

	.tt-contact-social {
		min-width: 0;
		gap: 9px;
	}

	.tt-contact-social__icon {
		width: clamp(50px, 14vw, 66px);
		height: clamp(50px, 14vw, 66px);
	}

	.tt-contact-social__icon img {
		width: 31px;
		height: 31px;
	}

	.tt-contact-social small {
		font-size: 11px;
	}

	.tt-contact-socials__inner > p {
		margin-top: 28px;
		font-size: 13px;
		line-height: 1.8;
	}

	.tt-contact-socials__inner > p::before,
	.tt-contact-socials__inner > p::after {
		display: none;
	}
}

@media (max-width: 520px) {
	.tt-contact-guide {
		grid-template-columns: 112px minmax(0, 1fr);
		padding-inline: 15px;
	}

	.tt-contact-guide__target {
		width: 100px;
	}

	.tt-contact-guide ul {
		gap: 4px;
	}

	.tt-contact-guide li {
		padding-inline: 5px;
		font-size: 9px;
	}

	.tt-contact-location__inner,
	.tt-contact-socials__inner {
		width: calc(100% - 32px);
	}

	.tt-contact-map {
		height: 340px;
	}

	.tt-contact-location__details {
		grid-template-columns: 1.55fr 0.9fr;
	}

	.tt-contact-location__details > a {
		justify-content: flex-start;
		font-size: 11px;
	}

	.tt-contact-socials__list {
		gap: 5px;
	}

	.tt-contact-social__icon {
		width: clamp(44px, 14vw, 58px);
		height: clamp(44px, 14vw, 58px);
	}

	.tt-contact-social__icon img {
		width: 25px;
		height: 25px;
	}
}

@media (max-width: 390px) {
	.tt-contact-card {
		min-height: 155px;
		padding-inline: 8px;
	}

	.tt-contact-card h2 {
		font-size: 16px;
	}

	.tt-contact-card > a,
	.tt-contact-card > p {
		font-size: 12px;
	}
}
