/*
 Theme Name:   Akron
 Theme URI:    https://hotlaunch.com
 Description:  Child theme for Hotlaunch
 Author:       Hotlaunch Team
 Author URI:   https://hotlaunch.com
 Template:     generatepress
 Version:      1.0
*/

/* scroll header */
.hl-scroll-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	background: var(--base-3);
	transition: box-shadow 0.3s ease;
}

/* Desktop only: allow hide-on-scroll transform */
@media (min-width: 1025px) {

	.hl-scroll-header {
		transition:
			transform 0.3s ease,
			box-shadow 0.3s ease;
		will-change: transform;
	}

	.hl-scroll-header.is-hidden {
		transform: translateY(-100%);
	}
}

/* Optional subtle separation once page has scrolled */
.hl-scroll-header.is-scrolled {
	box-shadow: 0 4px 20px rgb(0 0 0 / 8%);
}

/* Tablet/mobile:
   do not establish a transformed containing block */
@media (max-width: 1024px) {

	.hl-scroll-header {
		transform: none !important;
		will-change: auto !important;
	}

	.hl-scroll-header.is-hidden {
		transform: none !important;
	}
}

/* WordPress admin bar */
.admin-bar .hl-scroll-header {
	top: 32px;
}

@media (max-width: 782px) {
	.admin-bar .hl-scroll-header {
		top: 46px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.hl-scroll-header {
		transition: none;
	}
}
/* end scroll header */

/* mobile menu */

/* end mobile menu */

/* sub menus */
@media (min-width: 1025px) {

	.gb-navigation .gb-sub-menu {
		background-color: #181818;
		border-radius: 8px;
		padding: 8px;
		box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16);
		overflow: hidden;
	}

	.gb-navigation .gb-sub-menu .gb-menu-link {
		color: #ffffff;
		padding: 11px 16px;
		border-left: 3px solid transparent;
		border-radius: 5px;
		transition:
			background-color 0.18s ease,
			border-color 0.18s ease,
			color 0.18s ease;
	}

	.gb-navigation .gb-sub-menu .gb-menu-link:hover,
	.gb-navigation .gb-sub-menu .gb-menu-link:focus-visible {
		background-color: #333333;
		color: #ffffff;
		border-left-color: #ea0a2a;
	}
}

@media (max-width: 1024px) {

	.gb-navigation .gb-sub-menu {
		background-color: #181818;
		padding: 6px 0;
	}

	.gb-navigation .gb-sub-menu .gb-menu-link {
		color: #ffffff;
		background-color: transparent;
		border-left: 3px solid #ea0a2a;
		padding-left: 18px;
		transition:
			background-color 0.18s ease,
			color 0.18s ease;
	}

	.gb-navigation .gb-sub-menu .gb-menu-link:hover,
	.gb-navigation .gb-sub-menu .gb-menu-link:focus-visible {
		background-color: #333333;
		color: #ffffff;
	}
}
/* end sub menus */

.hl-text-light {
	color: var(--base-2);
}
.hl-bg-default {
	background-color: var(--base);
}

.hl-bg-alt {
	background-color: var(--base-2);
}

.hl-bg-subtle {
	background-color: var(--base-3);
}
.hl-service-grid {
	width: 100%;
	padding-inline: 1rem;
	box-sizing: border-box;
}

.hl-service-grid > .gbp-section__inner {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
	width: 100%;
/*	max-width: 1200px;*/
	margin-inline: auto;
	align-items: stretch;
}

.hl-service-card {
	display: flex;
	flex-direction: column;
	height: 100%;
	background-color: var(--base);
	border: 1.5px solid #000000;
	border-radius: 16px;
	padding: 28px;
	color: #2b2b2b;
}

.hl-service-number {
	margin: 0 0 12px;
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #2b2b2b;
}

.hl-service-card h3 {
	margin: 0 0 14px;
	font-size: 1.65rem;
	line-height: 1.2;
	color: #D70321;
}

.hl-service-card > p:not(.hl-service-number) {
	font-size: 1.2rem;
	line-height: 1.6;
}

.hl-service-outcome {
	margin-bottom: 0;
}

.hl-service-link {
	display: inline-flex;
	align-self: flex-start;
	margin-top: auto;
	padding-top: 18px;
	font-size: 1.2rem;
	font-weight: 600;
	line-height: 1.4;
	color: #2b2b2b;
	text-decoration: none;
}

.hl-service-link:hover,
.hl-service-link:focus-visible {
	color: #D70321;
	text-decoration: underline;
}

.hl-service-link:focus-visible {
	outline: 2px solid #D70321;
	outline-offset: 4px;
}

@media (max-width: 1024px) {
	.hl-service-grid > .gbp-section__inner {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	.hl-service-grid > .gbp-section__inner {
		grid-template-columns: 1fr;
	}
}
/* secondary hero */
.secondary-hero {
	position: relative;
	display: flex;
	align-items: center;
	width: 100%;
	min-height: 720px;
	padding-block: clamp(5rem, 8vw, 8rem);
	background-size: cover;
	background-position: center center;
	overflow: hidden;
}

.secondary-hero .hl-container {
	position: relative;
	z-index: 1;
}

.secondary-hero__content {
	width: min(100%, 620px);
}

/* Tablet */
@media (max-width: 1024px) {
	.secondary-hero {
		min-height: 560px;
		background-position: 62% center;
	}

	.secondary-hero__content {
		width: 50%;
		max-width: 500px;
	}
}

/* Mobile */
@media (max-width: 767px) {
	.secondary-hero {
		min-height: 700px;
		padding-block: 3.5rem;
		background-position: 64% center;
	}

	.secondary-hero__content {
		width: 100%;
		max-width: none;
	}
}
@media (max-width: 767px) {
	.secondary-hero::after {
		content: "";
		position: absolute;
		inset: 0;
		background: rgba(0, 0, 0, 0.12);
		pointer-events: none;
		z-index: 0;
	}

	.secondary-hero > * {
		position: relative;
		z-index: 1;
	}
}

@media (min-width: 2300px) {
	.secondary-hero {
		min-height: 1100px;
	}
}

/* services-sub hero */
.services-sub-hero {
	position: relative;
	display: flex;
	align-items: center;
	width: 100%;
	min-height: 720px;
	padding-block: clamp(5rem, 8vw, 8rem);
	background-size: cover;
	background-position: top top;
	overflow: hidden;
}

.services-sub-hero .hl-container {
	position: relative;
	z-index: 1;
}

.services-sub-hero__content {
	width: min(100%, 620px);
}

/* Tablet */
@media (max-width: 1024px) {
	.services-sub-hero {
		min-height: 560px;
		background-position: 62% center;
	}

	.services-sub-hero__content {
		width: 50%;
		max-width: 500px;
	}
}

/* Mobile */
@media (max-width: 767px) {
	.services-sub-hero {
		min-height: 700px;
		padding-block: 3.5rem;
		background-position: 64% center;
	}

	.services-sub-hero__content {
		width: 100%;
		max-width: none;
	}
}
@media (max-width: 767px) {
	.services-sub-hero::after {
		content: "";
		position: absolute;
		inset: 0;
		background: rgba(0, 0, 0, 0.12);
		pointer-events: none;
		z-index: 0;
	}

	.services-sub-hero > * {
		position: relative;
		z-index: 1;
	}
}

@media (min-width: 2300px) {
	.services-sub-hero {
		min-height: 1200px;
		background-position: center top;
	}
}
/* service jump list */
.hl-service-jump-list {
	font-size: 1.2rem;
}

/* hl-results-chart */


.hl-results-chart img {
  display: block;
  width: 100%;
  margin-top:1.2rem;	
  height: auto;
  border: 2px solid #a3a3a3;
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

/* hl-client-map */
.hl-client-map {
  display: block;
  width: 100%;
  height: auto;
  max-width: 900px;
  margin-inline: auto;
}

/* footer */
.hl-footer-wordmark {
	position: absolute !important;
	left: 50% !important;
	bottom: -3rem !important;
	transform: translateX(-50%) !important;
	width: 100% !important;
	max-width: 1500px !important;
	height: auto !important;
	opacity: 0.15 !important;
	pointer-events: none !important;
	z-index: 0 !important;
}

@media (max-width: 1024px) {
	.hl-footer-wordmark {
		bottom: 0 !important;
		width: 110% !important;
		opacity: 0.06 !important;
	}
}

@media (max-width: 767px) {
	.hl-footer-wordmark {
		display: none !important;
	}
}


.site-footer a {
	color: var(--contrast);
}

.site-footer a:hover,
.site-footer a:focus {
	color: var(--accent);
}

.footer-brandmark {
	overflow: hidden;
	transform: translateY(6px);
}

.footer-brandmark img {
	display: block;
	width: 100%;
	transform: translateY(6px);
}

/* fade-in */
.hl-fade-in {
	opacity: 0;
	transform: translateY(20px);
	transition:
		opacity 0.6s ease,
		transform 0.6s ease;
}

.hl-fade-in.is-visible {
	opacity: 1;
	transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
	.hl-fade-in {
		opacity: 1;
		transform: none;
		transition: none;
	}
}
/* hide animation from mobile 
@media (max-width: 767px) {
	.hl-fade-in {
		opacity: 1;
		transform: none;
		transition: none;
	}
}
*/
/* font fix */
.gbp-section__tagline-alt {
    font-family: inherit !important;
}

@font-face {
	font-family: "Outfit Fallback";
	src: local("Arial");
	size-adjust: 104%;
	ascent-override: 95%;
	descent-override: 25%;
	line-gap-override: 0%;
}

@font-face {
	font-family: "General Sans Fallback";
	src: local("Arial");
	size-adjust: 101%;
	ascent-override: 92%;
	descent-override: 24%;
	line-gap-override: 0%;
}

body,
button,
input,
select,
textarea {
	font-family: "General Sans", "General Sans Fallback", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: "Outfit", "Outfit Fallback", sans-serif;
}