@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lora:wght@400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=EB+Garamond:wght@400;500;600;700;800&display=swap");

:root {
	--color-links: #ffffff;
	--color-discord: rgb(88, 101, 242);

	--color-zs-blue: #28c7ff;
	--navigation-hover: var(--color-zs-blue);

	--bg-dark: #101923;
	--bg-darkest: #03070c;

	--text-light: #f2f8ff;
	--text-yellow: #28c7ff;

	--text-family-lora: "Lora", sans-serif;

	--asc-blue-1: #78e7ff;
	--asc-blue-2: #29c4ff;
	--asc-blue-3: #0a92dc;
	--asc-blue-4: #0569b1;

	--asc-white: #ffffff;
	--asc-ice: #eaf8ff;
	--asc-grey: #b8c6d3;
	--asc-muted: #7f91a1;

	--asc-dark: #03070c;
	--asc-dark-2: #07111b;

	--asc-panel: rgba(8, 18, 28, 0.82);
	--asc-panel-2: rgba(10, 23, 36, 0.9);

	--asc-border: rgba(120, 231, 255, 0.22);
	--asc-border-strong: rgba(120, 231, 255, 0.55);

	--asc-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
}

/* RESET */
*,
*::before,
*::after {
	box-sizing: border-box;
}

html,
body {
	min-height: 100% !important;
	height: auto !important;
	margin: 0;
	padding: 0;
	overflow-x: hidden;
	overflow-y: auto;
}

html {
	scroll-behavior: smooth;
}

body {
	position: relative;
	color: var(--text-light);
	font-family: "Montserrat", sans-serif;
	background:
		linear-gradient(rgba(3, 7, 12, 0.14), rgba(3, 7, 12, 0.32)),
		url("/images/background/background-final.png") center top / cover fixed no-repeat !important;
	background-color: #03070c !important;
}

body::before {
	display: none !important;
}

a {
	text-decoration: none;
}

p {
	color: var(--text-light);
}

footer {
	margin-top: auto;
}

/* BOOTSTRAP OVERRIDES */
.container {
	max-width: 1350px;
}

/* HEADER / NAVIGATION */
.c-header {
	position: relative;
	z-index: 50;
	font-family: "Montserrat", sans-serif;
}

/* Hide the old top Discord strip */
.topNavigation {
	display: none !important;
}

/* Hide duplicated header if it accidentally loads twice */
.c-header + .c-header,
body > header.c-header:nth-of-type(n+2) {
	display: none !important;
}

.c-header::after {
	content: "";
	display: block;
	width: 100%;
	height: 4px;
	background: linear-gradient(
		90deg,
		transparent 0%,
		rgba(41, 196, 255, 0.25) 18%,
		#29c4ff 50%,
		rgba(41, 196, 255, 0.25) 82%,
		transparent 100%
	);
	box-shadow:
		0 0 12px rgba(41, 196, 255, 0.85),
		0 0 32px rgba(41, 196, 255, 0.5);
}

.topNavigation svg {
	color: var(--color-links);
}

.topNavigation a p:hover,
.topNavigation svg:hover {
	color: var(--color-zs-blue);
	border-bottom: 2px solid var(--color-zs-blue);
}

.home-menu {
	list-style-type: none;
	display: inline;
}

.navbar .navbar-nav .nav-link {
	font-size: 1rem;
	color: var(--color-links);
	text-transform: uppercase;
	font-weight: 700;
}

.navbar .navbar-nav .nav-link:hover {
	color: var(--navigation-hover);
}

.navbar-brand {
	margin-right: 0;
	position: relative;
	z-index: 20;
}

.navbar-brand img {
	width: 115px;
	display: block;
}

.navbar-brand img:hover {
	filter: brightness(130%);
}

.c-nav__logo {
	width: 250px;
	height: auto;
}

.c-header p {
	font-size: 14px;
	font-weight: 400;
	font-family: "Montserrat", "Roboto", sans-serif;
	line-height: 1.6;
	margin-top: 0;
	margin-bottom: 1rem;
}

.c-footer {
	font-family: "Montserrat", sans-serif;
	font-size: 12px;
	border-top: #000027;
	background-color: rgba(0, 0, 8, 0.82);
}

/* GENERAL UTILITIES */
.u-text-yellow {
	color: var(--asc-blue-2) !important;
}

.center-text {
	text-align: center;
}

h1,
h2,
h3,
h4,
h5,
.h3 {
	color: var(--text-light);
}

.u-headline {
	font-weight: 900;
	text-transform: uppercase;
	font-size: 3rem;
	font-family: "Lora", sans-serif;
	color: var(--text-light);
	text-shadow: 2px 2px 6px #000;
}

.u-seperator {
	padding: 2px;
	width: 10%;
	margin: 1rem auto 3rem;
	background: radial-gradient(
		circle,
		var(--asc-blue-2) 0%,
		rgba(41, 196, 255, 0.65) 45%,
		rgba(0, 0, 0, 0) 100%
	);
}

.content-box,
.card {
	background-color: var(--bg-dark);
	border: 1px solid rgba(120, 231, 255, 0.18);
	border-radius: 0;
	background-image: none;
}

/* BUTTONS */
.c-button {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	padding: 0.75rem 1.6rem;
	font-family: "Montserrat", sans-serif;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	font-weight: 800;
	color: var(--color-links);
	cursor: pointer;
	transition: all 0.25s ease;
	border: 0;
	border-radius: 0;
	background: linear-gradient(180deg, #6ee7ff 0%, #27c8ff 42%, #0c92db 72%, #076cad 100%);
}

.c-button_large {
	font-size: 1.15rem;
	padding: 1rem 2.4rem;
}

.c-button_primary {
	background: linear-gradient(180deg, #6ee7ff 0%, #27c8ff 42%, #0c92db 72%, #076cad 100%);
	border: 0;
	border-radius: 0;
	font-weight: 900;
	color: var(--text-light);
}

.c-button_discord {
	background: linear-gradient(180deg, #5865f2 0%, #4752c4 100%);
	border: 0;
}

button:hover,
.c-button:hover {
	box-shadow: 0 0 34px rgba(41, 196, 255, 0.35);
	filter: brightness(110%);
}

/* MAIN */
main {
	position: relative;
	isolation: auto;
	overflow: visible !important;
	min-height: 100vh;
	background: transparent !important;
}

main::before,
main::after {
	display: none !important;
}

/* ASCENDA HOMEPAGE */
.asc-page,
main.asc-page {
	position: relative;
	display: block;
	width: 100%;
	min-height: 100vh;
	height: auto;
	overflow: visible !important;
	background: transparent !important;
}

.asc-container {
	position: relative;
	z-index: 5;
	width: min(1180px, calc(100% - 32px));
	margin: 0 auto;
}

.asc-hero-overlay,
.asc-hero-fog,
.asc-feature-card::after,
.asc-image-card::after {
	pointer-events: none;
}

/* HERO */
#introduction,
#introduction.asc-hero {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 720px;
	height: auto;
	margin-top: 0;
	padding: 95px 0 115px;
	text-align: center;
	overflow: hidden;
	isolation: isolate;
	background: transparent !important;
}

.asc-hero-overlay {
	position: absolute;
	inset: 0;
	z-index: 0;
	background:
		radial-gradient(circle at 50% 38%, rgba(41, 196, 255, 0.1), transparent 28%),
		linear-gradient(
			180deg,
			rgba(3, 7, 12, 0.03) 0%,
			rgba(3, 7, 12, 0.08) 55%,
			rgba(3, 7, 12, 0.2) 100%
		) !important;
}

.asc-hero-fog {
	position: absolute;
	left: -10%;
	right: -10%;
	bottom: -140px;
	height: 320px;
	z-index: 1;
	opacity: 0.24 !important;
	background:
		radial-gradient(circle at 20% 45%, rgba(120, 231, 255, 0.12), transparent 30%),
		radial-gradient(circle at 80% 45%, rgba(255, 255, 255, 0.08), transparent 26%),
		linear-gradient(180deg, transparent, rgba(3, 7, 12, 0.35) 76%);
	filter: blur(10px);
}

.asc-eyebrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 18px;
	margin-bottom: 22px;
	color: var(--asc-blue-2);
	font-size: 14px;
	font-weight: 900;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	text-shadow: 0 0 24px rgba(41, 196, 255, 0.45);
}

.asc-eyebrow::before,
.asc-eyebrow::after {
	content: "";
	width: 72px;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--asc-blue-2), transparent);
	box-shadow: 0 0 16px rgba(41, 196, 255, 0.55);
}

.asc-hero-title {
	margin: 0;
	color: #ffffff;
	font-family: "EB Garamond", Georgia, "Times New Roman", serif;
	font-size: clamp(4.4rem, 11vw, 9.8rem);
	line-height: 0.82;
	font-weight: 800;
	letter-spacing: -0.045em;
	text-transform: uppercase;
	text-shadow:
		0 4px 0 rgba(5, 20, 30, 0.85),
		0 0 30px rgba(41, 196, 255, 0.14),
		0 12px 45px rgba(0, 0, 0, 0.9);
}

.asc-hero-subtitle {
	margin: 8px auto 0;
	padding: 0;
	color: var(--asc-blue-2);
	font-family: "Montserrat", sans-serif;
	font-size: clamp(1rem, 2vw, 1.45rem);
	font-weight: 900;
	letter-spacing: 0.32em;
	line-height: 1.2;
	text-transform: uppercase;
	text-shadow: 0 0 18px rgba(41, 196, 255, 0.35);
}

.asc-hero-copy {
	max-width: 760px;
	margin: 28px auto 0;
	padding: 0;
	color: #d1deea;
	font-size: 1.1rem;
	line-height: 1.8;
	text-shadow: 0 2px 20px rgba(0, 0, 0, 0.7);
}

.asc-hero-buttons,
.asc-card-buttons,
.asc-section-buttons {
	position: relative;
	z-index: 20;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 34px;
}

.asc-card-buttons {
	justify-content: flex-start;
	margin-top: 0;
}

/* ASCENDA BUTTONS */
.asc-btn {
	position: relative;
	z-index: 25;
	pointer-events: auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: auto;
	min-width: 170px;
	max-width: 240px;
	min-height: 54px;
	padding: 0 26px;
	border: 0;
	border-radius: 0;
	color: #ffffff !important;
	font-family: "Montserrat", sans-serif;
	font-size: 0.95rem;
	font-weight: 900;
	letter-spacing: 0.04em;
	line-height: 1;
	text-align: center;
	text-transform: uppercase;
	background: linear-gradient(180deg, #6ee7ff 0%, #27c8ff 42%, #0c92db 72%, #076cad 100%);
	box-shadow:
		inset 0 2px 0 rgba(255, 255, 255, 0.3),
		inset 0 -2px 0 rgba(0, 0, 0, 0.25),
		0 0 20px rgba(41, 196, 255, 0.18);
	cursor: pointer;
	transition: transform 180ms ease, filter 180ms ease, box-shadow 180ms ease;
}

.asc-btn:hover {
	color: #ffffff !important;
	transform: translateY(-2px);
	filter: brightness(1.08);
	box-shadow:
		inset 0 2px 0 rgba(255, 255, 255, 0.38),
		inset 0 -2px 0 rgba(0, 0, 0, 0.28),
		0 0 28px rgba(41, 196, 255, 0.32),
		0 10px 24px rgba(0, 0, 0, 0.32);
}

.asc-btn-dark {
	background: linear-gradient(180deg, #304f63 0%, #1a3b52 45%, #0b2233 100%);
}

.asc-hero-badges {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 14px;
	margin: 40px auto 0;
}

.asc-hero-badges span {
	color: #ddf3ff;
	background: rgba(5, 13, 21, 0.72);
	border: 1px solid rgba(120, 231, 255, 0.18);
	padding: 10px 16px;
	font-size: 13px;
	font-weight: 800;
	border-radius: 999px;
	backdrop-filter: blur(10px);
}

/* SECTIONS */
.asc-section,
.asc-section-alt {
	position: relative;
	display: block;
	height: auto;
	min-height: auto;
	padding: 90px 0;
	overflow: visible;
	background: transparent !important;
	backdrop-filter: none;
}

.asc-section-heading {
	max-width: 780px;
	margin: 0 auto 52px;
	text-align: center;
}

.asc-section-heading h2 {
	margin: 0;
	color: var(--asc-white);
	font-size: clamp(2.4rem, 5vw, 4.5rem);
	line-height: 0.95;
	font-weight: 900;
	letter-spacing: -0.05em;
	text-transform: uppercase;
	text-shadow: 0 8px 30px rgba(0, 0, 0, 0.75);
}

.asc-section-heading p {
	margin: 18px auto 0;
	padding: 0;
	color: var(--asc-grey);
	font-size: 1.04rem;
	line-height: 1.75;
}

.asc-about-grid {
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: 34px;
	align-items: center;
}

/* CARDS / PANELS */
.asc-card,
.asc-image-card,
.asc-feature-card,
.asc-download-card,
.asc-discord-widget,
#guides-section .card,
.asc-help-box,
.quest-panel,
.skill-panel,
.clue-panel,
.guide-panel {
	border: 1px solid rgba(120, 231, 255, 0.22) !important;
	background: linear-gradient(180deg, rgba(8, 18, 28, 0.78), rgba(4, 10, 17, 0.88)) !important;
	box-shadow:
		0 24px 70px rgba(0, 0, 0, 0.42),
		0 0 34px rgba(41, 196, 255, 0.08) !important;
}

.asc-image-card {
	position: relative;
	min-height: 410px;
	overflow: hidden;
}

.asc-image-card img {
	width: 100%;
	height: 100%;
	min-height: 410px;
	object-fit: cover;
	display: block;
	filter: saturate(0.92) contrast(1.08) brightness(0.82);
}

.asc-image-card::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, rgba(3, 7, 12, 0.08), rgba(3, 7, 12, 0.5)),
		radial-gradient(circle at 50% 0%, rgba(41, 196, 255, 0.1), transparent 40%);
}

.asc-card {
	padding: 42px;
}

.asc-card h3 {
	margin: 0 0 18px;
	color: var(--asc-white);
	font-size: 2.2rem;
	font-weight: 900;
	text-transform: uppercase;
}

.asc-card p {
	margin: 0 0 26px;
	padding: 0;
	color: var(--asc-grey);
	line-height: 1.75;
}

.asc-mini-stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
	margin-top: 30px;
}

.asc-mini-stat {
	border: 1px solid rgba(120, 231, 255, 0.16);
	background: rgba(0, 0, 0, 0.18);
	padding: 16px 12px;
	text-align: center;
}

.asc-mini-stat strong {
	display: block;
	color: var(--asc-blue-2);
	font-size: 1.5rem;
	line-height: 1;
}

.asc-mini-stat span {
	display: block;
	margin-top: 7px;
	color: var(--asc-muted);
	font-size: 11px;
	font-weight: 900;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

/* FEATURE CARDS */
.asc-feature-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
}

.asc-feature-card {
	position: relative;
	min-height: 360px;
	overflow: hidden;
	transition: 220ms ease;
}

.asc-feature-card:hover {
	transform: translateY(-6px);
	border-color: var(--asc-border-strong) !important;
}

.asc-feature-card img {
	width: 100%;
	height: 100%;
	min-height: 360px;
	object-fit: cover;
	filter: saturate(0.9) contrast(1.06) brightness(0.78);
	transition: transform 300ms ease;
}

.asc-feature-card:hover img {
	transform: scale(1.06);
}

.asc-feature-card::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, transparent 35%, rgba(3, 7, 12, 0.94)),
		radial-gradient(circle at 50% 0%, rgba(41, 196, 255, 0.08), transparent 45%);
}

.asc-feature-content {
	position: absolute;
	left: 24px;
	right: 24px;
	bottom: 24px;
	z-index: 2;
}

.asc-feature-content span {
	display: inline-block;
	margin-bottom: 10px;
	padding: 7px 12px;
	color: #021018;
	background: linear-gradient(180deg, #f7fdff 0%, #79e7ff 45%, #29c4ff 100%);
	font-size: 11px;
	font-weight: 900;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.asc-feature-content h3 {
	margin: 0;
	color: var(--asc-white);
	font-size: 1.55rem;
	font-weight: 900;
	line-height: 1.1;
	text-transform: uppercase;
}

.asc-feature-content p {
	margin: 8px 0 0;
	padding: 0;
	color: #c8d8e7;
	line-height: 1.55;
}

/* DISCORD */
#discord.asc-section {
	text-align: center;
}

.asc-discord-widget {
	max-width: 390px;
	margin: 42px auto 0;
	padding: 10px;
}

.asc-discord-widget iframe {
	width: 100%;
	min-height: 390px;
	display: block;
}

/* DOWNLOADS */
.asc-download-section {
	background: transparent !important;
}

.asc-client-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 430px));
	justify-content: center;
	gap: 24px;
	margin-top: 44px;
}

.asc-download-card {
	padding: 34px;
	text-align: center;
}

.asc-download-icon svg {
	width: 64px;
	height: 64px;
	margin-bottom: 18px;
	fill: var(--asc-blue-2);
	filter: drop-shadow(0 0 18px rgba(41, 196, 255, 0.3));
}

.asc-download-card h3 {
	margin: 0;
	color: var(--asc-white);
	font-size: 2rem;
	font-weight: 900;
	text-transform: uppercase;
}

.asc-download-card p {
	margin: 8px 0 24px;
	padding: 0;
	color: var(--asc-grey);
}

/* GUIDES PAGE */
#guides-section,
#guide-section,
.quest-guide-page,
.skill-guide-page,
.clue-guide-page {
	background: transparent !important;
}

.g-headline {
	font-weight: 900;
	text-transform: uppercase;
	font-size: 2rem;
	font-family: "Lora", sans-serif;
	color: var(--asc-blue-2) !important;
	text-shadow:
		0 0 18px rgba(41, 196, 255, 0.35),
		2px 2px 6px var(--bg-darkest);
	transition: 180ms ease;
}

.g-headline:hover {
	color: #ffffff !important;
	text-shadow:
		0 0 22px rgba(41, 196, 255, 0.65),
		2px 2px 6px var(--bg-darkest);
}

#guides-section .collapse a {
	display: block;
	width: 100% !important;
	max-width: 360px;
	margin: 0 auto;
}

#guides-section .c-button {
	position: relative;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	text-transform: none;
	min-height: 52px;
	background: linear-gradient(180deg, #6ee7ff 0%, #27c8ff 42%, #0c92db 72%, #076cad 100%) !important;
	border: 0 !important;
	border-radius: 0;
	font-weight: 700;
	color: #ffffff !important;
	box-shadow:
		inset 0 2px 0 rgba(255, 255, 255, 0.3),
		inset 0 -2px 0 rgba(0, 0, 0, 0.25),
		0 0 20px rgba(41, 196, 255, 0.16);
	cursor: pointer;
	transition: transform 180ms ease, filter 180ms ease, box-shadow 180ms ease;
}

#guides-section .c-button:hover {
	transform: translateY(-2px);
	filter: brightness(1.08);
	box-shadow:
		inset 0 2px 0 rgba(255, 255, 255, 0.38),
		inset 0 -2px 0 rgba(0, 0, 0, 0.28),
		0 0 28px rgba(41, 196, 255, 0.34),
		0 10px 24px rgba(0, 0, 0, 0.32);
}

#thumbnail,
.guide-thumbnail {
	max-height: 24px;
	max-width: 24px;
	object-fit: contain;
	margin-right: 6px;
	filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

/* INDIVIDUAL GUIDE PAGES */
#guide-image {
	max-height: 100px;
	padding: 10px;
	filter: drop-shadow(0 0 12px rgba(41, 196, 255, 0.18));
}

.guide-header {
	font-weight: 900;
	text-transform: uppercase;
	font-size: clamp(3rem, 8vw, 5rem);
	font-family: "Lora", sans-serif;
	color: #ffffff;
	text-align: center;
	margin: 0 auto 20px;
	text-shadow:
		0 0 22px rgba(41, 196, 255, 0.24),
		black 2px 2px 2px;
}

#guide-section {
	background: transparent !important;
}

#guide-section h2 {
	text-align: left;
	margin: 75px 0 0 50px;
	font-weight: bold;
	color: #29c4ff;
	text-shadow: 0 0 16px rgba(41, 196, 255, 0.28);
}

#guide-section p {
	text-align: left;
	margin-left: 55px;
	color: #d1deea;
}

#guide-section ul,
#guide-section ol {
	text-align: left;
	color: #d1deea;
}

#guide-section li {
	margin-bottom: 8px;
}

#guide-section .u-seperator {
	background: radial-gradient(circle, #29c4ff 0%, rgba(41, 196, 255, 0.6) 50%, rgba(15, 15, 15, 0.81) 100%) !important;
	box-shadow: 0 0 18px rgba(41, 196, 255, 0.28);
}

.guide-image-container {
	border: 1px solid rgba(120, 231, 255, 0.28);
	background: rgba(3, 8, 14, 0.72);
	box-shadow:
		0 18px 42px rgba(0, 0, 0, 0.42),
		0 0 20px rgba(41, 196, 255, 0.08);
}

/* HELP BOX */
.asc-help-box,
.u-discord {
	background: linear-gradient(180deg, rgba(8, 18, 28, 0.78), rgba(4, 10, 17, 0.88)) !important;
	border: 1px solid rgba(120, 231, 255, 0.24);
	border-radius: 0;
	box-shadow:
		0 22px 60px rgba(0, 0, 0, 0.45),
		0 0 24px rgba(41, 196, 255, 0.08);
}

.asc-help-box .u-headline,
.u-discord .u-headline {
	color: #29c4ff !important;
	text-shadow: 0 0 18px rgba(41, 196, 255, 0.35);
}

.asc-help-box p,
.u-discord p {
	color: #d1deea;
}

.asc-help-box .u-seperator,
.u-discord .u-seperator {
	background: radial-gradient(circle, #29c4ff 0%, rgba(41, 196, 255, 0.55) 45%, transparent 100%) !important;
}

.asc-help-box .c-button_discord,
.u-discord .c-button_discord {
	background: linear-gradient(180deg, #5865f2 0%, #4752c4 100%) !important;
	border: 0 !important;
	color: #ffffff !important;
	box-shadow: 0 0 20px rgba(88, 101, 242, 0.22);
}

.asc-help-box .c-button_discord:hover,
.u-discord .c-button_discord:hover {
	box-shadow:
		0 0 28px rgba(88, 101, 242, 0.45),
		0 10px 24px rgba(0, 0, 0, 0.32);
}

/* OLD SECTION FIXES */
#featuredContent {
	background: transparent;
}

#featuredContent::before,
#playNow::before,
#discord::before {
	display: none;
}

#playNow .card,
#download .card {
	height: auto;
	width: auto;
	max-height: none;
	max-width: none;
}

/* RESPONSIVE */
@media (max-width: 991px) {
	.asc-about-grid,
	.asc-feature-grid,
	.asc-client-grid {
		grid-template-columns: 1fr;
	}

	.asc-feature-grid,
	.asc-client-grid {
		max-width: 560px;
		margin-left: auto;
		margin-right: auto;
	}
}

@media (max-width: 768px) {
	body {
		background:
			linear-gradient(rgba(3, 7, 12, 0.18), rgba(3, 7, 12, 0.42)),
			url("/images/background/background-final.png") center top / cover scroll no-repeat !important;
	}

	#guide-section h2 {
		margin: 45px 0 0 0;
		text-align: center;
	}

	#guide-section p {
		margin-left: 0;
		text-align: center;
	}

	#guides-section .collapse a {
		max-width: 100%;
	}
}

@media (max-width: 640px) {
	#introduction.asc-hero {
		min-height: 560px;
		padding: 70px 0 80px;
	}

	.asc-eyebrow {
		font-size: 12px;
		letter-spacing: 0.18em;
	}

	.asc-eyebrow::before,
	.asc-eyebrow::after {
		width: 34px;
	}

	.asc-hero-title {
		font-size: clamp(3rem, 18vw, 4.8rem);
	}

	.asc-hero-buttons,
	.asc-card-buttons,
	.asc-section-buttons {
		flex-direction: column;
	}

	.asc-btn {
		width: 100%;
		max-width: none;
		min-height: 56px;
	}

	.asc-mini-stats {
		grid-template-columns: 1fr;
	}

	.asc-section {
		padding: 72px 0;
	}

	.asc-card {
		padding: 28px;
	}

	.asc-image-card,
	.asc-image-card img,
	.asc-feature-card,
	.asc-feature-card img {
		min-height: 320px;
	}
}