﻿/* Reference-style editorial module: light, compact and image-led. */
.editorial-section {
	padding: 76px 24px 82px;
	background: #fff;
}

.editorial-inner {
	max-width: 1700px;
	margin: 0 auto;
}

.editorial-heading {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 360px;
	gap: 130px;
	align-items: start;
	margin-bottom: 34px;
	padding: 0 8px;
}

.editorial-title .eyebrow {
	margin: 0 0 10px;
	color: #92a6ad;
	font-size: 10px;
	letter-spacing: 2.5px;
}

.editorial-title h2 {
	margin: 0;
	font-size: 36px;
	line-height: 1.18;
	letter-spacing: 1px;
	font-weight: 500;
	color: #21323a;
}

.editorial-intro {
	padding-top: 4px;
}

.editorial-intro p {
	margin: 0 0 12px;
	color: #7e8e94;
	font-size: 13px;
	line-height: 1.8;
}

.editorial-intro a {
	color: #477d92;
	font-size: 11px;
	letter-spacing: 0.5px;
	border-bottom: 1px solid #b7d4df;
	padding-bottom: 4px;
}

.editorial-intro a span {
	font-size: 14px;
	margin-left: 4px;
}

.editorial-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.editorial-card {
	display: block;
	min-width: 0;
}

.editorial-media {
	position: relative;
	aspect-ratio: 1.82/1;
	overflow: hidden;
	background: #173d52;
	border-radius: 4px;
}

.editorial-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.7s ease;
}

.editorial-card:hover .editorial-media img {
	transform: scale(1.045);
}

.editorial-shade {
	display: none;
}

.editorial-card-copy {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
	padding: 17px 19px;
	color: #fff;
}

.editorial-card-copy p {
	margin: 0;
	font-size: 9px;
	letter-spacing: 2px;
	color: #d6f5fc;
}

.editorial-card-copy h3 {
	margin: 5px 0 9px;
	font-size: 21px;
	line-height: 1.28;
	letter-spacing: 1px;
	font-weight: 500;
	color: #fff;
	text-shadow: 0 1px 9px rgba(0, 0, 0, 0.55);
}

.editorial-card-copy span {
	font-size: 10px;
	border: 1px solid rgba(255, 255, 255, 0.72);
	border-radius: 999px;
	padding: 4px 9px;
	color: #fff;
	background: rgba(0, 0, 0, 0.16);
	text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
}

.editorial-card-copy b {
	font-size: 13px;
	font-weight: 400;
	margin-left: 4px;
}

.editorial-people {
	display: flex;
	align-items: center;
	gap: 11px;
	margin-top: 24px;
}

.editorial-avatars {
	display: flex;
	align-items: center;
	padding-left: 6px;
}

.editorial-avatars img,
.editorial-avatars span {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	border: 2px solid #fff;
	object-fit: cover;
	margin-left: -6px;
}

.editorial-avatars span {
	display: flex;
	align-items: center;
	justify-content: center;
	background: #dcecf1;
	color: #477d92;
	font-size: 17px;
	line-height: 1;
}

.editorial-people > p {
	margin: 0 !important;
	color: #8a9aa0 !important;
	font-size: 10px !important;
	line-height: 1.45 !important;
}

.editorial-people > p b {
	color: #477d92;
	font-weight: 500;
}

@media (max-width: 800px) {
	.editorial-section {
		padding: 58px 16px 62px;
	}

	.editorial-heading {
		grid-template-columns: 1fr;
		gap: 18px;
		margin-bottom: 22px;
	}

	.editorial-title h2 {
		font-size: 30px;
	}

	.editorial-grid {
		grid-template-columns: 1fr;
		gap: 14px;
	}

	.editorial-media {
		aspect-ratio: 1.7/1;
	}

	.editorial-card-copy {
		padding: 15px 16px;
	}

	.editorial-card-copy h3 {
		font-size: 20px;
	}
}

.intro-band {
	min-height: 600px;
	background: transparent;
}

.intro-band > img {
	opacity: 1;
	transform: none;
}

.intro-content {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	max-width: none;
	margin: 0;
	padding: 40px 24px;
	text-shadow: 0 2px 18px rgba(0, 0, 0, 0.38);
}

.intro-content h2 {
	font-size: 46px;
	color: #fff;
}

.intro-content > p:not(.eyebrow) {
	color: #fff;
}

.intro-content .btn {
	background: #9a6f50;
	border-color: rgba(255, 255, 255, 0.7);
	text-shadow: none;
}

.intro-content .btn:hover {
	background: #c49b78;
	color: #fff;
}

.editorial-section {
	background: #fff;
}

.editorial-title h2 {
	color: #303b3c;
}

.editorial-intro p {
	color: #6e797b;
}

.editorial-intro a {
	color: #8c6249;
	border-color: #cfb39c;
}

.editorial-people > p b {
	color: #8c6249;
}

.editorial-card-copy h3 {
	color: #fff;
}

.editorial-card-copy span {
	background: rgba(0, 0, 0, 0.18);
}

@media (max-width: 800px) {
	.intro-band {
		min-height: 480px;
	}

	.intro-content {
		padding: 88px 20px;
	}

	.intro-content h2 {
		font-size: 34px;
		letter-spacing: 3px;
	}

	.intro-content > p:not(.eyebrow) {
		font-size: 15px;
	}
}

.domestic-section {
	padding: 84px 24px 92px;
	background: #fbfaf7;
}

.domestic-inner {
	max-width: 1700px;
	margin: 0 auto;
}

.domestic-heading {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin: 0 0 30px;
}

.domestic-heading h2 {
	margin: 0 0 8px;
	color: #303b3c;
	font-size: 34px;
	font-weight: 500;
	letter-spacing: 1px;
}

.domestic-heading p {
	margin: 0;
	color: #7c8584;
	font-size: 14px;
}

.domestic-heading > a {
	color: #8c6249;
	font-size: 12px;
	border-bottom: 1px solid #cfb39c;
	padding-bottom: 6px;
}

.domestic-heading > a span {
	font-size: 16px;
	margin-left: 5px;
}

.domestic-layout {
	display: grid;
	grid-template-columns: minmax(0, 1.06fr) minmax(0, 1fr);
	gap: 20px;
}

.domestic-feature {
	position: relative;
	display: block;
	min-height: 510px;
	overflow: hidden;
	background: #ddd6cc;
}

.domestic-feature img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.7s ease;
}

.domestic-feature:hover img {
	transform: scale(1.035);
}

.domestic-feature:after {
	content: "";
	position: absolute;
	inset: 35% 0 0;
	background: linear-gradient(180deg, transparent, rgba(17, 20, 19, 0.72));
}

.domestic-feature-copy {
	position: absolute;
	z-index: 1;
	left: 34px;
	right: 30px;
	bottom: 30px;
	color: #fff;
}

.domestic-feature-copy p {
	margin: 0 0 9px;
	font-size: 12px;
	letter-spacing: 1px;
}

.domestic-feature-copy h3 {
	margin: 0 0 16px;
	font-size: 32px;
	line-height: 1.3;
	font-weight: 500;
	letter-spacing: 1px;
}

.domestic-feature-copy span {
	font-size: 12px;
}

.domestic-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px;
}

.domestic-card {
	display: grid;
	grid-template-rows: 1fr auto;
	min-width: 0;
	background: #fff;
	border-bottom: 1px solid #e2ddd5;
	transition: transform 0.25s ease;
}

.domestic-card:hover {
	transform: translateY(-3px);
}

.domestic-card img {
	width: 100%;
	height: 205px;
	object-fit: cover;
}

.domestic-card > div {
	padding: 14px 15px 16px;
}

.domestic-card h3 {
	margin: 0 0 5px;
	color: #303b3c;
	font-size: 16px;
	font-weight: 500;
}

.domestic-card p {
	margin: 0 0 9px;
	color: #7e8787;
	font-size: 12px;
}

.domestic-card b {
	color: #a86e4e;
	font-size: 13px;
	font-weight: 500;
}

@media (max-width: 800px) {
	.domestic-section {
		padding: 58px 16px 64px;
	}

	.domestic-heading {
		display: block;
		margin-bottom: 22px;
	}

	.domestic-heading > a {
		display: inline-block;
		margin-top: 15px;
	}

	.domestic-layout {
		grid-template-columns: 1fr;
		gap: 14px;
	}

	.domestic-feature {
		min-height: 390px;
	}

	.domestic-feature-copy {
		left: 22px;
		bottom: 22px;
	}

	.domestic-feature-copy h3 {
		font-size: 26px;
	}

	.domestic-list {
		gap: 12px;
	}

	.domestic-card img {
		height: 135px;
	}

	.domestic-card > div {
		padding: 11px 10px 13px;
	}

	.domestic-card h3 {
		font-size: 14px;
	}

	.domestic-card p {
		font-size: 11px;
	}
}

.domestic-card {
	grid-template-columns: 42% 1fr;
	grid-template-rows: none;
	min-height: 172px;
	border: 1px solid #e8e3da;
}

.domestic-card img {
	height: 100%;
	min-height: 170px;
}

.domestic-card > div {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 16px 17px;
}

.domestic-card h3 {
	font-size: 15px;
	line-height: 1.45;
}

.domestic-card p {
	line-height: 1.6;
}

.custom-routes-section {
	padding: 86px 24px 96px;
	background: #eee9e1;
}

.custom-routes-inner {
	max-width: 1700px;
	margin: 0 auto;
}

.custom-routes-heading {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-bottom: 30px;
}

.custom-routes-heading h2 {
	margin: 0 0 8px;
	color: #303b3c;
	font-size: 34px;
	font-weight: 500;
	letter-spacing: 1px;
}

.custom-routes-heading p {
	margin: 0;
	color: #7c8584;
	font-size: 14px;
}

.custom-routes-heading > a {
	color: #8c6249;
	font-size: 12px;
	border-bottom: 1px solid #cfb39c;
	padding-bottom: 6px;
}

.custom-routes-heading > a span {
	font-size: 16px;
	margin-left: 5px;
}

.custom-routes-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.custom-route {
	display: grid;
	grid-template-columns: 38% 1fr;
	min-height: 178px;
	background: #fff;
	color: inherit;
	border: 1px solid #e3ddd4;
	transition: transform 0.25s ease;
}

.custom-route:hover {
	transform: translateY(-3px);
}

.custom-route img {
	width: 100%;
	height: 100%;
	min-height: 176px;
	object-fit: cover;
}

.custom-route > div {
	padding: 22px 20px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.custom-route span {
	color: #9b745a;
	font-size: 11px;
	margin-bottom: 8px;
}

.custom-route h3 {
	margin: 0 0 8px;
	color: #303b3c;
	font-size: 18px;
	line-height: 1.45;
	font-weight: 500;
}

.custom-route p {
	margin: 0;
	color: #7e8787;
	font-size: 12px;
	line-height: 1.6;
}

.blue-band {
	max-width: none;
	width: 100%;
	margin: 0;
	padding-left: max(24px, calc((100vw - 1700px) / 2));
	padding-right: max(24px, calc((100vw - 1700px) / 2));
}

.blue-band .section-title,
.blue-band .route-grid {
	max-width: 1700px;
	margin-left: auto;
	margin-right: auto;
}

.blue-band .more {
	margin-left: auto;
	margin-right: auto;
}

@media (max-width: 800px) {
	.domestic-card {
		grid-template-columns: 40% 1fr;
		min-height: 140px;
	}

	.domestic-card img {
		min-height: 138px;
	}

	.domestic-card > div {
		padding: 11px 12px;
	}

	.custom-routes-section {
		padding: 58px 16px 64px;
	}

	.custom-routes-heading {
		display: block;
		margin-bottom: 22px;
	}

	.custom-routes-heading > a {
		display: inline-block;
		margin-top: 15px;
	}

	.custom-routes-grid {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.custom-route {
		min-height: 138px;
	}

	.custom-route img {
		min-height: 136px;
	}

	.custom-route > div {
		padding: 15px;
	}

	.custom-route h3 {
		font-size: 16px;
	}
}

.travel-guide-section {
	padding: 84px 24px 94px;
	background: #f4f5f3;
}

.travel-guide-inner {
	max-width: 1700px;
	margin: 0 auto;
}

.travel-guide-heading {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-bottom: 30px;
}

.travel-guide-heading h2 {
	margin: 0 0 8px;
	color: #292f30;
	font-size: 34px;
	font-weight: 500;
	letter-spacing: 1px;
}

.travel-guide-heading p {
	margin: 0;
	color: #747c7b;
	font-size: 14px;
}

.travel-guide-heading > a {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	color: #596866;
	font-size: 12px;
	padding-bottom: 4px;
}

.travel-guide-heading > a img,
.travel-guide-copy span img {
	width: 14px;
	height: 14px;
	display: inline-block;
	object-fit: contain;
	filter: brightness(0) saturate(100%) invert(39%) sepia(8%) saturate(463%)
		hue-rotate(119deg);
}

.travel-guide-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
}

.travel-guide-card {
	display: flex;
	flex-direction: column;
	background: #fff;
	color: inherit;
	min-width: 0;
	border: 0;
	box-shadow: 0 9px 28px rgba(37, 47, 45, 0.11);
	transition:
		transform 0.25s ease,
		box-shadow 0.25s ease;
}

.travel-guide-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 14px 34px rgba(37, 47, 45, 0.16);
}

.travel-guide-card > img {
	width: 100%;
	height: 230px;
	object-fit: cover;
}

.travel-guide-copy {
	padding: 20px 20px 22px;
}

.travel-guide-meta {
	margin: 0 0 10px;
	color: #687976;
	font-size: 11px;
	letter-spacing: 1px;
}

.travel-guide-copy h3 {
	margin: 0 0 10px;
	color: #292f30;
	font-size: 19px;
	line-height: 1.45;
	font-weight: 500;
}

.travel-guide-copy > p:not(.travel-guide-meta) {
	margin: 0 0 18px;
	color: #737d7b;
	font-size: 13px;
	line-height: 1.75;
}

.travel-guide-copy span {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: #596866;
	font-size: 12px;
}

.travel-guide-copy span img {
	width: 13px;
	height: 13px;
}

@media (max-width: 800px) {
	.travel-guide-section {
		padding: 58px 16px 64px;
	}

	.travel-guide-heading {
		display: block;
		margin-bottom: 22px;
	}

	.travel-guide-heading > a {
		display: inline-flex;
		margin-top: 15px;
	}

	.travel-guide-grid {
		grid-template-columns: 1fr;
		gap: 14px;
	}

	.travel-guide-card > img {
		height: 210px;
	}

	.travel-guide-copy {
		padding: 17px 16px 19px;
	}
}

.domestic-feature-copy span {
	display: flex;
	align-items: baseline;
	gap: 18px;
}

.domestic-feature-copy span strong {
	font-size: 34px;
	font-weight: 600;
	letter-spacing: 0.3px;
}

.domestic-feature-copy span strong small,
.domestic-feature-copy span strong em {
	font-size: 13px;
	font-weight: 400;
	font-style: normal;
}

.domestic-feature-copy span > em {
	font-style: normal;
	font-size: 12px;
}

.domestic-card {
	border: 0;
	box-shadow: 0 7px 22px rgba(43, 51, 49, 0.09);
}

.domestic-card:hover {
	box-shadow: 0 11px 28px rgba(43, 51, 49, 0.15);
}

.domestic-card b {
	font-size: 25px;
	font-weight: 600;
	letter-spacing: 0.2px;
}

.domestic-card b small,
.domestic-card b em {
	font-size: 12px;
	font-weight: 400;
	font-style: normal;
}

.domestic-card p {
	min-height: 38px;
}

.domestic-feature-copy span em {
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.domestic-feature-copy span em img {
	width: 16px;
	height: 16px;
	object-fit: contain;
	filter: brightness(0) invert(1);
}

.editorial-intro > a {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	border: 0;
	padding: 0;
}

.editorial-intro > a img {
	width: 17px;
	height: 17px;
	object-fit: contain;
	filter: brightness(0) saturate(100%) invert(44%) sepia(8%) saturate(472%)
		hue-rotate(119deg);
}

.editorial-card-copy span {
	display: inline-flex;
	align-items: center;
	gap: 7px;
}

.editorial-card-copy span img {
	width: 17px;
	height: 17px;
	object-fit: contain;
	filter: brightness(0) invert(1);
}

.custom-route {
	background: transparent;
	box-shadow: none;
}

.custom-route:hover {
	transform: none;
	box-shadow: none;
}

.custom-route img {
	height: 210px;
	min-height: 210px;
}

.custom-route > div {
	padding: 30px 4px 8px;
}

.custom-route-step-no {
	left: 4px;
}

.custom-route h3 {
	margin-bottom: 7px;
}

.custom-route p {
	max-width: 310px;
}

@media (max-width: 800px) {
	.custom-route {
		display: grid;
		grid-template-columns: 36% 1fr;
		min-height: 140px;
	}

	.custom-route img {
		height: 140px;
		min-height: 140px;
	}

	.custom-route > div {
		padding: 22px 14px 16px;
	}

	.custom-route-step-no {
		left: -23px;
	}
}

.travel-guide-inner {
	max-width: 1200px !important;
}

.travel-guide-heading {
	display: block;
	text-align: center;
}

.travel-guide-heading > a {
	justify-content: center;
	margin-top: 16px;
}

.city-explore-section {
	padding: 82px 24px 92px;
	background: #fff;
}

.city-explore-inner {
	max-width: 1200px;
	margin: 0 auto;
}

.city-explore-heading {
	text-align: center;
	margin-bottom: 28px;
}

.city-explore-heading h2 {
	margin: 0 0 8px;
	color: #123746;
	font-size: 34px;
	font-weight: 500;
	letter-spacing: 1px;
}

.city-explore-heading > p:last-child {
	margin: 0;
	color: #66808c;
	font-size: 14px;
}

.city-tabs {
	display: flex;
	justify-content: center;
	gap: 26px;
	margin-bottom: 28px;
}

.city-tab {
	min-width: 70px;
	padding: 9px 12px;
	border: 0;
	border-bottom: 2px solid transparent;
	background: transparent;
	color: #5e747d;
	font-size: 14px;
	cursor: pointer;
	transition: all 0.25s ease;
}

.city-tab:hover,
.city-tab.is-active {
	border-bottom-color: #ef6f23;
	background: transparent;
	color: #ef6f23;
}

.city-panel {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 20px;
}

.city-feature {
	position: relative;
	min-height: 500px;
	overflow: hidden;
	background: #123746;
	color: #fff;
}

.city-feature > img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.7s ease;
}

.city-feature:hover > img {
	transform: scale(1.04);
}

.city-feature:after {
	content: "";
	position: absolute;
	inset: 28% 0 0;
	background: linear-gradient(180deg, transparent, rgba(7, 25, 33, 0.82));
}

.city-feature-copy {
	position: absolute;
	z-index: 1;
	left: 30px;
	right: 28px;
	bottom: 28px;
}

.city-feature-copy p {
	margin: 0 0 10px;
	font-size: 12px;
	letter-spacing: 1px;
	color: #d5eff6;
}

.city-feature-copy h3 {
	margin: 0 0 12px;
	font-size: 28px;
	line-height: 1.35;
	font-weight: 500;
	letter-spacing: 1px;
}

.city-feature-copy p[data-city-feature-description] {
	max-width: 410px;
	margin-bottom: 17px;
	color: #e7f5f7;
	font-size: 13px;
	line-height: 1.7;
	letter-spacing: 0;
}

.city-feature-copy strong {
	color: #ffad00;
	font-size: 27px;
	font-weight: 600;
}

.city-feature-copy strong small {
	font-size: 12px;
	font-weight: 400;
}

.city-deals-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	grid-template-rows: repeat(2, minmax(0, 1fr));
	gap: 20px;
}

.city-deal {
	display: flex;
	flex-direction: column;
	min-width: 0;
	background: #f7fbfc;
	border: 0;
	transition: transform 0.25s ease;
}

.city-deal:hover {
	transform: translateY(-3px);
	box-shadow: none;
}

.city-deal > img {
	width: 100%;
	aspect-ratio: 1 / 0.4;
	object-fit: cover;
}

.city-deal > div {
	padding: 13px 0 15px;
}

.city-deal p {
	margin: 0 0 5px;
	color: #3aaed1;
	font-size: 11px;
	letter-spacing: 1px;
}

.city-deal h3 {
	margin: 0 0 9px;
	color: #123746;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.45;
}

.city-deal span {
	color: #f26a21;
	font-size: 19px;
	font-weight: 600;
}

.city-deal span::first-letter {
	font-size: 13px;
}

.city-deal span {
	white-space: nowrap;
}

.city-deal.is-updating {
	animation: cityFade 0.25s ease;
}

@keyframes cityFade {
	from {
		opacity: 0.35;
		transform: translateY(5px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (max-width: 800px) {
	.city-explore-section {
		padding: 58px 16px 64px;
	}

	.city-explore-heading h2 {
		font-size: 28px;
	}

	.city-tabs {
		gap: 6px;
		overflow-x: auto;
		justify-content: center;
		padding-bottom: 4px;
		margin-bottom: 20px;
	}

	.city-tab {
		flex: 0 0 auto;
		min-width: 72px;
		padding: 9px 14px;
		font-size: 13px;
	}

	.city-panel {
		grid-template-columns: 1fr;
		gap: 14px;
	}

	.city-feature {
		min-height: 360px;
	}

	.city-feature-copy {
		left: 21px;
		right: 20px;
		bottom: 21px;
	}

	.city-feature-copy h3 {
		font-size: 24px;
	}

	.city-deals-grid {
		gap: 12px;
		grid-template-columns: repeat(1, minmax(0, 1fr));
		grid-template-rows: repeat(1, minmax(0, 1fr));
	}

	.city-deal > img {
	}

	.city-deal > div {
		padding: 11px 11px 13px;
	}

	.city-deal h3 {
		font-size: 14px;
	}

	.city-deal span {
		font-size: 16px;
	}
}

.travel-benefits-section,
.domestic-section,
.custom-routes-section,
.travel-guide-section,
.city-explore-section {
	background: #fff !important;
}

.travel-benefit-card,
.city-deal {
	border: 0 !important;
	box-shadow: none;
}

.travel-benefit-card:hover,
.city-deal:hover {
	box-shadow: none;
}

.travel-benefits-heading > a,
.domestic-heading > a,
.custom-routes-heading > a,
.travel-guide-heading > a {
	color: #147da8;
}

.travel-benefits-heading > a {
	border-bottom-color: #147da8;
}

.custom-routes-grid:before {
	background: #236487 !important;
}

.custom-routes-stepper:before {
	background: #236487;
}

.travel-benefits-section .benefit-icon {
	background: #edf4f8;
	color: #147da8;
}

.travel-benefits-section .travel-benefit-card strong,
.city-deal span {
	color: #147da8;
}

.city-tab:hover,
.city-tab.is-active {
	border-bottom-color: #147da8;
	color: #147da8;
}

.city-deal {
	background: #fff;
}

.city-explore-section .city-explore-heading > p:last-child,
.travel-benefits-heading > div > p:last-child {
	color: #687d87;
}

.intro-content .btn {
	border-color: #1b6ca8;
}

.custom-route-step .custom-route-step-no {
	border-color: #fff;
}

.travel-benefits-section .benefit-icon {
	background: #fff;
}

.site-header .search {
	border-color: rgba(255, 255, 255, 0.45);
}

.site-header .nav {
	border-bottom-color: rgba(255, 255, 255, 0.24);
}

.editorial-section,
.travel-benefits-section,
.city-explore-section,
.custom-routes-section,
.travel-guide-section,
.domestic-section {
	background: #fff !important;
}

.travel-guide-card,
.travel-benefit-card,
.domestic-card,
.city-deal {
	box-shadow: none !important;
	border-color: transparent !important;
}

.travel-guide-card:hover,
.travel-benefit-card:hover,
.domestic-card:hover,
.city-deal:hover {
	box-shadow: none !important;
}

.travel-benefit-card {
	align-items: flex-start;
}

.travel-benefit-card .benefit-icon {
	display: block;
	flex: 0 0 30px;
	width: 30px;
	height: 30px;
	margin: 2px 0 0;
	object-fit: contain;
	background: transparent !important;
	filter: brightness(0) saturate(100%);
}

.travel-benefits-section {
	padding-top: 62px;
}

.travel-benefits-grid {
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 30px;
}

.travel-benefit-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	gap: 0;
	min-height: 150px;
	padding: 0 12px;
	text-align: center;
}

.travel-benefit-card .benefit-icon {
	flex: 0 0 34px;
	width: 34px;
	height: 34px;
	margin: 0 0 15px;
}

.travel-benefit-card h3 {
	margin: 0 0 8px;
	font-size: 17px;
	line-height: 1.4;
}

.travel-benefit-card p {
	margin: 0;
	max-width: 210px;
	font-size: 13px;
	line-height: 1.7;
}

.benefits-note {
	text-align: center;
}

@media (max-width: 800px) {
	.travel-benefits-section {
		padding-top: 50px;
	}

	.travel-benefits-grid {
		grid-template-columns: 1fr 1fr;
		gap: 28px 12px;
	}

	.travel-benefit-card {
		padding: 0 6px;
	}

	.travel-benefit-card h3 {
		font-size: 15px;
	}

	.travel-benefit-card p {
		font-size: 12px;
		line-height: 1.65;
	}
}

.home-page .site-header {
	background: #fff;
	color: #33454d;
	box-shadow: 0 1px 0 rgba(16, 49, 62, 0.08);
}

.home-page .header-smoke-canvas {
	display: none;
}

.home-page .head-inner {
	height: 92px;
}

.home-page .brand strong {
	color: #243b45;
}

.home-page .brand small {
	color: #84959c;
}

.home-page .search {
	border: 2px solid #3d7ee8;
	background: #fff;
	color: #33454d;
}

.home-page .search::placeholder {
	color: #a1adb2;
}

.home-page .nav {
	background: #fff;
	border-bottom: 1px solid #edf0f2;
}

.home-page .nav a {
	color: #40545d;
}

.home-page .nav a:hover,
.home-page .nav a.active {
	background: #3d7ee8;
	color: #fff;
	box-shadow: none;
}

.home-page .intro-band {
	min-height: 570px;
}

.home-page .intro-band > img {
	filter: none;
}

.home-page .intro-band:after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(
		90deg,
		rgba(12, 31, 43, 0.18),
		rgba(12, 31, 43, 0.08) 50%,
		rgba(12, 31, 43, 0.24)
	);
}

.home-page .intro-content {
	padding: 40px 24px;
}

.home-page .intro-content:before {
	content: "";
	position: absolute;
	width: min(680px, 88vw);
	height: 220px;
	background: rgba(8, 25, 35, 0.5);
	z-index: -1;
}

.home-page .intro-content h2 {
	font-size: 46px;
	font-weight: 600;
	letter-spacing: 6px;
}

.home-page .intro-content .btn {
	background: #3d7ee8;
	border-color: #3d7ee8;
	padding: 11px 44px;
}

.home-page .intro-content .btn:hover {
	background: #2868d0;
	color: #fff;
}

.home-page .section-title h2 {
	letter-spacing: 4px;
}

.home-page .domestic-section,
.home-page .city-explore-section,
.home-page .custom-routes-section,
.home-page .travel-guide-section,
.home-page .travel-benefits-section,
.home-page .editorial-section {
	padding-top: 70px;
	padding-bottom: 76px;
}

.editorial-section {
	background:
		linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)),
		url("../images/travel-05.jpg") center/cover no-repeat !important;
}

.travel-benefits-section {
	background:
		linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)),
		url("../images/travel-06.jpg") center/cover no-repeat !important;
}

.city-explore-section {
	background:
		linear-gradient(rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.88)),
		url("../images/travel-10.jpg") center/cover no-repeat !important;
}

.custom-routes-section {
	background:
		linear-gradient(rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.88)),
		url("../images/travel-04.jpg") center/cover no-repeat !important;
}

.travel-guide-section {
	background:
		linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)),
		url("../images/travel-03.jpg") center/cover no-repeat !important;
}

.domestic-section {
	background:
		linear-gradient(rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.86)),
		url("../images/travel-12.jpg") center/cover no-repeat !important;
}

.editorial-section,
.travel-benefits-section,
.city-explore-section,
.custom-routes-section,
.travel-guide-section,
.domestic-section {
	background: #fff !important;
}

.travel-guide-card,
.travel-benefit-card,
.domestic-card,
.city-deal {
	box-shadow: none !important;
}

.travel-guide-card:hover,
.travel-benefit-card:hover,
.domestic-card:hover,
.city-deal:hover {
	box-shadow: none !important;
}

.travel-benefit-card {
	background: #fff;
}

.travel-guide-card {
	background: #fff;
}

.city-deal {
	background: #fff;
}

.editorial-card-copy span {
	border: 0;
	border-radius: 0;
	background: transparent;
	padding: 0;
}

.editorial-card-copy h3 {
	letter-spacing: 1px;
}

.travel-benefits-heading h2,
.city-explore-heading h2,
.domestic-heading h2,
.custom-routes-heading h2,
.travel-guide-heading h2 {
	letter-spacing: 0;
}

.domestic-section {
	background: #f5fbfe;
}

.domestic-heading h2,
.custom-routes-heading h2,
.travel-guide-heading h2 {
	color: #123746;
}

.domestic-heading p,
.custom-routes-heading p,
.travel-guide-heading p {
	color: #66808c;
}

.domestic-heading > a,
.custom-routes-heading > a {
	color: #147da8;
}

.domestic-card {
	background: #fff;
	box-shadow: 0 7px 22px rgba(20, 80, 120, 0.1);
}

.domestic-card:hover {
	box-shadow: 0 11px 28px rgba(20, 80, 120, 0.18);
}

.domestic-card b {
	color: #147da8;
}

.domestic-feature-copy span strong {
	color: #fff;
}

.custom-routes-section {
	background: #eaf5fa;
}

.custom-routes-grid:before {
	background: #7bc9df;
}

.custom-route-step-no {
	background: #eaf5fa;
	border-color: #eaf5fa;
	color: #147da8;
}

.custom-route > div > span:not(.custom-route-step-no) {
	color: #147da8;
}

.custom-route h3 {
	color: #123746;
}

.custom-route p {
	color: #66808c;
}

.travel-guide-section {
	background: #f5fbfe;
}

.travel-guide-card {
	background: #fff;
	box-shadow: 0 9px 28px rgba(20, 80, 120, 0.1);
}

.travel-guide-card:hover {
	box-shadow: 0 14px 34px rgba(20, 80, 120, 0.17);
}

.travel-guide-heading > a,
.travel-guide-copy span {
	color: #147da8;
}

.travel-guide-meta {
	color: #3aaed1;
}

.travel-guide-copy h3 {
	color: #123746;
}

.travel-guide-copy > p:not(.travel-guide-meta) {
	color: #66808c;
}

.travel-guide-heading > a img,
.travel-guide-copy span img {
	filter: none;
}

.editorial-intro > a {
	color: #147da8;
}

.editorial-intro > a img {
	filter: none;
}

.editorial-card-copy span img {
	filter: brightness(0) invert(1);
}

.intro-content .btn {
	background: #1b6ca8;
	border-color: #7bc9df;
}

.intro-content .btn:hover {
	background: #5ad2f4;
	color: #031c26;
}

.domestic-heading > a,
.custom-routes-heading > a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	border: 0;
	padding: 0;
	color: #47595a;
}

.domestic-heading > a img,
.custom-routes-heading > a img {
	width: 19px;
	height: 19px;
	object-fit: contain;
	opacity: 0.78;
}

.home-section .more {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: max-content;
	margin: 28px auto 0;
	color: #47595a;
	border: 0;
	padding: 0;
}

.home-section .more img {
	width: 19px;
	height: 19px;
	object-fit: contain;
	opacity: 0.78;
}

.custom-routes-section {
	background: #f7f8f6;
}

.custom-routes-grid {
	position: relative;
	gap: 28px;
}

.custom-routes-grid:before {
	content: "";
	position: absolute;
	left: 16.5%;
	right: 16.5%;
	top: 34px;
	height: 1px;
	background: #b8c7c5;
}

.custom-route {
	position: relative;
	display: flex;
	flex-direction: column;
	min-height: 0;
	background: #fff;
	border: 0;
	box-shadow: 0 8px 24px rgba(43, 51, 49, 0.1);
	transition:
		transform 0.25s ease,
		box-shadow 0.25s ease;
}

.custom-route:hover {
	box-shadow: 0 12px 30px rgba(43, 51, 49, 0.15);
}

.custom-route img {
	width: 100%;
	height: 190px;
	min-height: 190px;
	object-fit: cover;
	order: 0;
}

.custom-route > div {
	position: relative;
	padding: 30px 22px 24px;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	order: 1;
}

.custom-route-step-no {
	position: absolute;
	top: -22px;
	left: 22px;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	display: flex !important;
	align-items: center;
	justify-content: center;
	background: #f7f8f6;
	color: #315d72;
	border: 6px solid #f7f8f6;
	font-size: 13px;
	letter-spacing: 1px;
	margin: 0 !important;
	z-index: 1;
}

.custom-route > div > span:not(.custom-route-step-no) {
	color: #687976;
	font-size: 11px;
	margin-bottom: 8px;
}

.custom-route h3 {
	font-size: 19px;
}

.custom-route p {
	font-size: 13px;
}

.custom-routes-heading > a {
	border: 0;
	padding-bottom: 0;
}

@media (max-width: 800px) {
	.domestic-feature-copy span strong {
		font-size: 23px;
	}

	.domestic-card b {
		font-size: 17px;
	}

	.custom-routes-grid {
		gap: 16px;
	}

	.custom-routes-grid:before {
		left: 22px;
		right: auto;
		top: 22px;
		width: 1px;
		height: calc(100% - 44px);
	}

	.custom-route {
		display: grid;
		grid-template-columns: 36% 1fr;
		min-height: 140px;
	}

	.custom-route img {
		height: 100%;
		min-height: 140px;
	}

	.custom-route > div {
		padding: 22px 14px 16px;
	}

	.custom-route-step-no {
		top: 12px;
		left: -23px;
		width: 34px;
		height: 34px;
		border-width: 4px;
		font-size: 11px;
	}

	.custom-route h3 {
		font-size: 16px;
	}
}

.custom-routes-section {
	background: #eaf5fa !important;
}

.custom-routes-grid:before {
	background: #7bc9df !important;
}

.custom-route {
	background: transparent !important;
	border: 0 !important;
	box-shadow: none !important;
	transition: none !important;
}

.custom-route:hover {
	transform: none !important;
	box-shadow: none !important;
}

.custom-route img {
	height: 210px;
	min-height: 210px;
}

.custom-route > div {
	padding: 30px 4px 8px;
}

.custom-route-step-no {
	left: 4px;
	background: #eaf5fa;
	border-color: #eaf5fa;
	color: #147da8;
}

.custom-route > div > span:not(.custom-route-step-no) {
	color: #147da8;
}

.custom-route h3 {
	color: #123746;
}

.custom-route p {
	color: #66808c;
}

@media (max-width: 800px) {
	.custom-route {
		display: grid;
		grid-template-columns: 36% 1fr;
		min-height: 140px;
	}

	.custom-route img {
		height: 140px;
		min-height: 140px;
	}

	.custom-route > div {
		padding: 22px 14px 16px;
	}

	.custom-route-step-no {
		left: -23px;
	}
}

.custom-routes-stepper {
	position: relative;
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 18px;
	padding-top: 12px;
}

.custom-routes-stepper:before {
	content: "";
	position: absolute;
	top: 34px;
	left: 9%;
	right: 9%;
	height: 1px;
	background: #9ed5e5;
}

.custom-route-step {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	color: inherit;
}

.custom-route-step .custom-route-step-no {
	position: static;
	width: 46px;
	height: 46px;
	margin: 0 0 22px !important;
	border: 5px solid #eaf5fa;
	border-radius: 50%;
	display: flex !important;
	align-items: center;
	justify-content: center;
	background: #147da8;
	color: #fff;
	font-size: 17px;
	font-weight: 500;
	box-shadow: 0 0 0 1px #79c4da;
	transition:
		background 0.25s ease,
		transform 0.25s ease;
}

.custom-route-step:hover .custom-route-step-no {
	background: #ef6f23;
	transform: scale(1.08);
}

.custom-route-step > div {
	padding: 0 5px;
}

.custom-route-step > div > span {
	display: block;
	margin-bottom: 7px;
	color: #147da8;
	font-size: 11px;
	letter-spacing: 1px;
}

.custom-route-step h3 {
	margin: 0 0 8px;
	color: #123746;
	font-size: 17px;
	font-weight: 500;
	line-height: 1.4;
}

.custom-route-step p {
	margin: 0;
	color: #66808c;
	font-size: 12px;
	line-height: 1.7;
}

.custom-route-step:last-child .custom-route-step-no {
	background: #ef6f23;
	box-shadow: 0 0 0 1px #f2a06f;
}

@media (max-width: 800px) {
	.custom-routes-stepper {
		display: grid;
		grid-template-columns: 1fr;
		gap: 0;
		padding: 0 0 0 52px;
	}

	.custom-routes-stepper:before {
		top: 24px;
		bottom: 24px;
		left: 22px;
		right: auto;
		width: 1px;
		height: auto;
	}

	.custom-route-step {
		min-height: 112px;
		display: block;
		text-align: left;
	}

	.custom-route-step .custom-route-step-no {
		position: absolute;
		top: 0;
		left: -52px;
		width: 40px;
		height: 40px;
		margin: 0 !important;
		font-size: 15px;
	}

	.custom-route-step > div {
		padding: 1px 0 25px;
	}

	.custom-route-step h3 {
		font-size: 16px;
	}

	.custom-route-step p {
		font-size: 12px;
	}

	.custom-route-step:last-child {
		min-height: 0;
	}
}

.travel-benefits-section {
	padding: 72px 24px 76px;
	background: #fff8f0;
}

.travel-benefits-inner {
	max-width: 1360px;
	margin: 0 auto;
}

.travel-benefits-heading {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-bottom: 30px;
}

.benefits-eyebrow {
	margin: 0 0 9px;
	color: #ef7b2d;
	font-size: 11px;
	letter-spacing: 3px;
}

.travel-benefits-heading h2 {
	margin: 0 0 8px;
	color: #263c42;
	font-size: 32px;
	font-weight: 500;
	letter-spacing: 1px;
}

.travel-benefits-heading > div > p:last-child {
	margin: 0;
	color: #7a8788;
	font-size: 14px;
}

.travel-benefits-heading > a {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	color: #e5671d;
	font-size: 12px;
	padding-bottom: 5px;
	border-bottom: 1px solid #f2b17e;
}

.travel-benefits-heading > a img {
	width: 17px;
	height: 17px;
	object-fit: contain;
	filter: sepia(1) saturate(5) hue-rotate(335deg);
}

.travel-benefits-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
}

.travel-benefit-card {
	display: flex;
	gap: 14px;
	min-height: 145px;
	padding: 23px 20px;
	background: #fff;
	border: 1px solid #f6dfca;
	box-shadow: 0 8px 22px rgba(196, 112, 45, 0.08);
	transition:
		transform 0.25s ease,
		box-shadow 0.25s ease;
}

.travel-benefit-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 28px rgba(196, 112, 45, 0.15);
}

.benefit-icon {
	flex: 0 0 34px;
	width: 34px;
	height: 34px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: #fff0df;
	color: #ef6f23;
	font-size: 20px;
	line-height: 1;
}

.travel-benefit-card h3 {
	margin: 1px 0 8px;
	color: #303b3c;
	font-size: 17px;
	font-weight: 500;
}

.travel-benefit-card p {
	margin: 0;
	color: #7b8585;
	font-size: 13px;
	line-height: 1.75;
}

.travel-benefit-card strong {
	color: #ef6f23;
	font-size: 16px;
	font-weight: 600;
}

.benefits-note {
	margin: 17px 0 0;
	color: #a69b90;
	font-size: 11px;
}

@media (max-width: 800px) {
	.travel-benefits-section {
		padding: 54px 16px 58px;
	}

	.travel-benefits-heading {
		display: block;
		margin-bottom: 22px;
	}

	.travel-benefits-heading h2 {
		font-size: 28px;
	}

	.travel-benefits-heading > a {
		display: inline-flex;
		margin-top: 15px;
	}

	.travel-benefits-grid {
		grid-template-columns: 1fr 1fr;
		gap: 11px;
	}

	.travel-benefit-card {
		display: block;
		min-height: 0;
		padding: 17px 14px;
	}

	.benefit-icon {
		margin-bottom: 12px;
	}

	.travel-benefit-card h3 {
		font-size: 15px;
	}

	.travel-benefit-card p {
		font-size: 12px;
		line-height: 1.65;
	}
}

.editorial-section,
.travel-benefits-section,
.city-explore-section,
.custom-routes-section,
.travel-guide-section,
.domestic-section {
	background: #fff !important;
}

.travel-guide-card,
.travel-benefit-card,
.domestic-card,
.city-deal {
	box-shadow: none !important;
	border-color: transparent !important;
}

.travel-guide-card:hover,
.travel-benefit-card:hover,
.domestic-card:hover,
.city-deal:hover {
	box-shadow: none !important;
}

.custom-routes-grid:before,
.custom-routes-stepper:before {
	background: #236487 !important;
}

.editorial-card-copy span {
	border: 0;
	border-radius: 0;
	background: transparent;
	padding: 0;
}

.intro-content .btn {
	border-color: #1b6ca8;
}

.custom-route-step .custom-route-step-no {
	border-color: #fff;
}

.travel-benefits-section .benefit-icon {
	background: #fff;
}

.site-header .search {
	border-color: rgba(255, 255, 255, 0.45);
}

.site-header .nav {
	border-bottom-color: rgba(255, 255, 255, 0.24);
}
