@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@100..900&display=swap');
@import url("columns.css");
/*
xs = 540px
sm = 670px
md = 992px
lg = 1200px 
*/

/* reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}
* {
  margin: 0;
  padding: 0;
  font: inherit;
}
*:focus-visible {
  outline: 2px solid hsl(var(--clr-secondary));
}
img,
picture,
svg,
video {
  display: block;
  max-width: 100%;
}
strong, b {
	font-weight: bold;
}
i, em {
	font-style: italic;
}
/* reset */
:root {
	--clr-text: hsl(0, 0%, 12%);
	--clr-primary: hsl(213, 45%, 29%);
	--clr-primary-lighter: hsl(213, 45%, 36%);
	--clr-primary-darker: hsl(213, 45%, 23%);
	--clr-secondary: hsl(195, 90%, 58%);
	--clr-secondary-lighter: hsl(195, 90%, 63%);
	--clr-secondary-darker: hsl(195, 90%, 52%);
	--clr-highlight: hsl(47, 84%, 52%);
	--clr-highlight-lighter: hsl(47, 84%, 57%);
	--clr-highlight-darker: hsl(47, 84%, 47%);
	--clr-primary-op-10: hsl(213, 45%, 29%, .1);
	--clr-secondary-op-10: hsl(195, 90%, 58%, .1);
	--clr-highlight-op-10: hsl(47, 84%, 52%, .1);
	--clr-primary-20-op: hsl(213, 45%, 29%, .2);
	--clr-secondary-op-20: hsl(195, 90%, 58%, .2);
	--clr-highlight-op-20: hsl(47, 84%, 52%, .2);
	--clr-primary-op-50: hsl(213, 45%, 29%, .5);
	--clr-secondary-op-50: hsl(195, 90%, 58%, .5);
	--clr-highlight-op-50: hsl(47, 84%, 52%, .5);
	--clr-primary-50: hsl(213, 45%, 95%);
	--clr-secondary-50: hsl(195, 90%, 95%);
	--clr-highlight-50: hsl(47, 84%, 95%);
	--hero-min-height: 600px;
	--hero-height: 80vh;
	--main-font: "Lexend", sans-serif;
	--transition-all: all .2s ease-in-out;
	--header-height: 50vh;
	--header-min-height: 400px;
	--max-width: 1200px;
}
/* container */
.content-grid {
  --content-width: var(--max-width);
  --gap: clamp(1rem, 6vw, 3rem);
  --full: minmax(var(--gap), 1fr);
  --content: min(var(--content-width), 100% - var(--gap) * 2);
  --popout: minmax(0, 2rem);
  --feature: minmax(0, 5rem);

  display: grid;
  grid-template-columns:
    [full-start] var(--full)
    [feature-start] var(--feature)
    [popout-start] var(--popout)
    [content-start] var(--content) [content-end]
    var(--popout) [popout-end]
    var(--feature) [feature-end]
    var(--full) [full-end];
}
.content-grid > * {
  grid-column: content;
  /* outline: 1px solid red; */
}
.popout {
  grid-column: popout;
}
.feature {
  grid-column: feature;
}
.full {
  grid-column: full;
}

/* defaults */
body, input, button,
textarea, select, option {
	font-family: var(--main-font);
	color: var(--clr-text);
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
	-webkit-text-shadow: rgba(0, 0, 0, 0.01) 0 0 1px;
	text-shadow: rgba(0, 0, 0, 0.01) 0 0 1px;
}
body {
	background: #fff;
}
select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;       /* Remove default arrow */
	background: url(../img/arrow-down.svg) no-repeat calc(100% - 1em) 50%;   /* Add custom arrow */
}
select::-ms-expand {
    display: none; /* Hide the default arrow in Internet Explorer 10 and Internet Explorer 11 */
}
/* Target Internet Explorer 9 to undo the custom arrow */
@media screen and (min-width:0\0) {
    select {
        background: none\9;
        padding: 5px\9;
    }
}
input,
textarea,
select {
	border-radius: 0px;
	border: none;
	background-color: #eee;
	padding: .5em 1em;
	margin-bottom: 5px;
	margin-right: 5px;
	box-sizing: border-box;
	width: 100%;
	display: block;
}
textarea {
	height: 100px;
}
input[type=checkbox] {
	margin-right: 10px;
}
input[type=submit],
button[type=submit] {
	color: #fff;
	background: var(--clr-primary);
	font-family: var(--title-font);
	padding: 10px 40px;
	cursor: pointer;
	border: none;
	box-sizing: border-box;
	transition: background-color .3s;
}
input[type=submit]:hover,
button[type=submit]:hover {
	background: var(--clr-secondary);
}
html {
	scroll-behavior: smooth;
}
h1, h2, h3, h4 {
	line-height: 1.2;
	margin-bottom: 1rem;
}
hr {
	height: 1px;
	display: block;
	margin: 1rem 0;
	color: #666;
	background-color: currentColor;
	border: 0;
}
p {
	margin-bottom: 1em;
}
b {
	font-weight: 500;
}
a {
	color: var(--clr-primary);
	text-decoration: none;
	
	-webkit-transition: var(--transition-all);
	-moz-transition: var(--transition-all);
	transition: var(--transition-all);
}
a:hover {
	color: var(--clr-secondary);
}
.prose {
	font-size: 1.2rem;
}
.prose h2,
.prose h3,
.prose h4,
.prose h5,
.prose h6 {
	font-weight: bold;
}
.prose h2 {
	font-size: 2rem;
}
.prose h3 {
	font-size: 1.5rem;
	color: var(--clr-primary);
}
.prose h4 {
	font-size: 1.4rem;
	color: var(--clr-secondary);
}
.prose h5 {
	font-size: 1.3rem;
}
.prose ul,
.prose ol {
	margin-left: 1.5rem;
	margin-bottom: 1.5rem;
}
.prose ul ul,
.prose ol ol,
.prose ol ul,
.prose ul ol {
	margin-left: 1.5rem;
	margin-bottom: .5rem;
}
.prose ul li::marker,
.prose ol li::marker {
	color: var(--clr-primary);
}
.prose img {
	border-radius: 3px;
	margin-bottom: 1rem;
}
blockquote {
	border-left: 1px solid var(--clr-secondary);
	padding-left: 2rem;
	margin-block: 1rem;
	color: #666;
}
/* utilities */
.clearfix:before, .clearfix:after {
	content: "";
	display: table;
}
.clearfix:after {
	clear: both;
}
.clearfix {
	zoom: 1;
}
.maxwidth {
	max-width: var(--max-width);
	margin: auto;
}
.maxwidth-960 {
	max-width: 960px;
	margin: auto;
}
.sticky {
	position: sticky;
	top: 5rem;
}
.centered {
	text-align: center;
}
.text-mid {
	color: #666;
}
.text-light {
	color: #aaa;
}
.text-primary {
	color: var(--clr-primary);
}
.text-white {
	color: #fff;
}
.text-secondary {
	color: var(--clr-secondary);
}
.text-highlight {
	color: var(--clr-highlight);
}
.text-lg {
	font-size: 1.2rem;
}
.text-xl {
	font-size: 1.4rem;
	line-height: 1.4;
}
.text-2xl {
	font-size: 1.5rem;
	line-height: 1.3;
}
.text-3xl {
	font-size: 1.6rem;
	line-height: 1.2;
}
.text-bold {
	font-weight: bold;
}
.text-300 {
	font-weight: 300;
}
.text-bolder {
	font-weight: 600;
}
.bg-primary {
	background-color: var(--clr-primary);
}
.bg-primary-darker {
	background-color: var(--clr-primary-darker);
}
.bg-primary-lighter {
	background-color: var(--clr-primary-lighter);
}
.bg-primary-50 {
	background-color: var(--clr-primary-50);
}
.bg-primary-100 {
	background-color: var(--clr-primary-100);
}
.bg-secondary {
	background-color: var(--clr-secondary);
}
.bg-highlight {
	background-color: var(--clr-highlight);
}
.bg-highlight-darker {
	background-color: var(--clr-highlight-darker);
}
.bg-highlight-lighter {
	background-color: var(--clr-highlight-lighter);
}
.bg-highlight-50 {
	background-color: var(--clr-highlight-50);
}
.bg-highlight-100 {
	background-color: var(--clr-highlight-100);
}
.bg-secondary-darker {
	background-color: var(--clr-secondary-darker);
}
.bg-secondary-lighter {
	background-color: var(--clr-secondary-lighter);
}
.bg-secondary-50 {
	background-color: var(--clr-secondary-50);
}
.bg-secondary-100 {
	background-color: var(--clr-secondary-100);
}
.bg-light {
	background-color: #f6f6f6;
}
.bg-dark {
	background-color: #333;
}
.bg-white {
	background-color: #fff;
}
.home-section.bg-motif {
	background-image: url("../img/bg-1.svg");
	background-position: right bottom;
	background-repeat: no-repeat;
	background-size: max(300px, 20vw);
	padding-bottom: 15rem;
}
.uppercase {
	text-transform: uppercase;
}
.text-balance {
	text-wrap: balance;
}
.text-pretty {
	text-wrap: pretty;
}
.text-center {
	text-align: center;
}
.page-section {
	padding-block: 2rem;
}
.home-section {
	padding: 4em 1em;
}
main {
	position: relative;
}
label {
	display: block;
	margin-top: 1em;
}
.list-none {
	list-style: none;
}
/* styling */
header {
	padding: 1rem 0;
	-webkit-transition: var(--transition-all);
	-moz-transition: var(--transition-all);
	transition: var(--transition-all);
}
header ul {
	list-style: none;
}
.header-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
header .logo {
	display: block;
	width: 200px;
}
header .logo img {
	display: block;
	width: 100%;
	height: auto;
	-webkit-transition: var(--transition-all);
	-moz-transition: var(--transition-all);
	transition: var(--transition-all);
}
header nav a {
	color: var(--clr-primary);
}
header nav a:hover {
	color: var(--clr-secondary);
}
.btn-app {
	display: inline-block;
	background-color: #333;
	border-radius: .5rem;
	padding: .2rem 0;
	cursor: pointer;
}
.btn-app img {
	height: 3rem;
}
.btn-app:hover {
	background-color: var(--clr-primary);
}
.btn {
	display: inline-flex;
	background-color: var(--clr-secondary);
	color: white;
	text-transform: uppercase;
	font-size: .9em;
	text-align: center;
	padding: 1em 1.7em;
	place-content: center;
	transition: var(--transition-all);
}
.btn:hover {
	color: white !important;
	background-color: var(--clr-primary);
}
.hero {
	min-height: var(--hero-min-height);
	height: var(--hero-height);
	position: relative;
	overflow: hidden;
	display: grid;
}
.hero > .heroslider {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top center;
	mix-blend-mode: multiply;
}
.heroslider img {
	width: 100%;
	min-height: var(--hero-min-height);
	height: var(--hero-height);
	object-fit: cover;
	object-position: center;
}
.hero::before {
	content: "";
	position: absolute;
	z-index: -1;
	inset: 0;
	background: linear-gradient(90deg, var(--clr-secondary), transparent);
	mix-blend-mode: multiply;
}
.heroslider .flex-control-nav {
	position: absolute;
	inset: 0;
	top: auto;
	z-index: 99;
}
.video-container{
	position: absolute;
	inset: 0;
	width: 100vw;
	height: 100%;
	opacity: .5;
}
.video-container iframe {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100vw;
	height: 100vh;
	transform: translate(-50%, -50%);
	pointer-events: none;
}
@media (min-aspect-ratio: 16/9) {
	.video-container iframe {
		height: 56.25vw;
	}
}
@media (max-aspect-ratio: 16/9) {
	.video-container iframe {
		width: 177.78vh;
	}
}
.headline {
	font-weight: bold;
	color: #fff;
	inset: 0;
	align-items: center;
	z-index: 2;
	isolation: isolate;
}
.headline h1 {
	max-width: 24ch;
	font-size: 4rem;
	text-wrap: balance; 
}
.home-section {
	padding: 4em 1em;
}
.page-cta-ribbon {
	background-color: var(--clr-secondary-lighter);
}
.page-cta-ribbon {
	position: relative;
}
.page-cta-ribbon a {
	display: flex;
	position: relative;
	inset: 0;
	align-items: center;
	justify-items: start;
	color: #fff;
	padding: 1em 2.5em 1em 1em;
	width: 100%;
	box-sizing: border-box;
	font-weight: bold;
	font-size: 2em;
	line-height: 1;
	text-wrap: balance;
	z-index: 2;
	background-color: var(--clr-secondary-lighter);
}
.page-cta-ribbon a::after {
	content: "\2192";
	margin-left: 1em;
	transition: var(--transition-all);
}
.page-cta-ribbon a:hover {
	background-color: var(--clr-secondary-darker);
}
.page-cta-ribbon a:hover::after {
	transform: translateX(5px);
}
.service-tile a {
	padding: 2rem;
	margin-block: 1rem;
	background-color: #fff;
	color: #000;
	display: grid;
	margin-bottom: 2rem;
	font-size: 1.2rem;
	font-weight: bold;
	align-items: center;
	grid-template-columns: 1fr 2fr;
	gap: 1rem;
	line-height: 1.2;
}
.service-tile a:hover {
	background-color: var(--clr-secondary-op-20);
}
.section-testimonial {
	background: var(--clr-primary) url("../img/quote.svg") no-repeat left top;
	color: white;
	padding-block: 6em;
}
.service-section img {
	margin-inline: auto;
	height: 200px;
	margin-block: 1rem;
}
.blog-tile {
	display: grid;
	gap: .75rem;
	margin-block: 1rem;
	font-size: 1.2rem;
	font-weight: 500;
	line-height: 1.2;
}
.blog-tile img {
	object-fit: cover;
	width: 100%;
	height: 150px;
	border-radius: 5px;
	background-color: #fff;
}
@supports (aspect-ratio: 1) {
	.blog-tile img {
		height: auto;
		aspect-ratio: 3 / 2;
	}
}
.blog-meta {
	font-size: .75rem;
	text-transform: uppercase;
	color: #666;
}
.page-header .blog-meta {
	font-size: 1rem;
}
.staff-tile {
	font-weight: 500;
	line-height: 1.2;
	margin-block: 1rem;
}
.staff-tile h3 {
	font-size: 1.25rem;
	font-weight: 500;
}
.staff-tile img {
	object-fit: cover;
	width: 280px;
	height: 280px;
	border-radius: 5px;
	margin-bottom: 1rem;
}
@supports (aspect-ratio: 1) {
	.staff-tile img {
		height: auto;
		aspect-ratio: 1;
	}
}
.staff-title {
	text-transform: uppercase;
	color: var(--clr-secondary);
	font-size: 1rem;
}
.events-section {
	padding: 2rem;
	margin-block: 1rem;
	min-height: 300px;
	position: relative;
}
.events-section {
	line-height: 1;
}
.events-section .flex-control-nav {
	position: absolute;
    bottom: 1.5rem;
}
.events-section .flex-direction-nav {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
}
.events-section .flex-direction-nav li {
    position: static;
}
.about-tile {
	display: grid;
	gap: .5rem;
	padding: 2rem;
	color: #000;
	margin-top: 1rem;
}
.about-tile img {
	height: 150px;
	margin-bottom: 1rem;
}
.story-stats {
	position: relative;
	background: var(--clr-primary) url('../img/biker.png') no-repeat;
	background-size: cover;
	background-position: center;
	padding-block: 40vh 2rem;
}
.story-stats .story-stats-box {
	padding: 2rem;
	line-height: 1;
	position: relative;
}
.story-stats .story-stats-box::before {
	content: "";
	position: absolute;
	inset: 0;
	background-color: var(--clr-primary);
	mix-blend-mode: multiply;
}
.story-stats .story-stats-box > .row {
	position: relative;
}
/* brands scroller */
@keyframes scroll {
    to {
        transform: translate(calc(-50% - 2rem));
    }
}
.section-brands {
    background-color: hsl(var(--clr-gray-50),.4);
}
.scroller {
    max-width: 960px;
	padding-block: 1em;
}
.scroller__inner {
    padding-block: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
}
.scroller__inner img {
	width: 120px;
    height: 70px;
    object-fit: contain;
}
.scroller[data-animated="true"] {
    overflow: hidden;
    -webkit-mask: linear-gradient(90deg, transparent, white 5%, white 95%, transparent);
    mask: linear-gradient(90deg, transparent, white 5%, white 95%, transparent);
}
.scroller[data-animated="true"] .scroller__inner {
    width: max-content;
    flex-wrap: nowrap;
    animation: scroll var(--_animation-duration, 160s) var(--_animation-direction, forwards) linear infinite;
}
.scroller[data-direction="right"] {
    --_animation-direction: reverse;
}
.scroller[data-direction="left"] {
    --_animation-direction: forwards;
}
.scroller[data-speed="fast"] {
    --_animation-duration: 60s;
}
.scroller[data-speed="slow"] {
    --_animation-duration: 180s;
}
/* accordion */
.accordion-group {
	margin-block: 2rem;
}
.accordion-group .accordion-button {
	display: flex;
	text-align-last: left;
	width: 100%;
	margin-top: 1rem;
	border: none;
	background-color: var(--clr-secondary);
	color: #fff;
	box-shadow: 2px 2px 5px #0001;
	padding: .8rem 1rem .5rem;
	font-weight: bold;
	font-size: 1rem;
	text-align: left;
	line-height: 1.2;
}
.accordion-group .accordion-button:not(.inert):hover {
	cursor: pointer;
}
.accordion-group .accordion-button:not(.inert):hover::after {
	color: var(--clr-primary);
}
.accordion-group .accordion-button.active {
	color: var(--clr-primary);
}
.accordion-group .accordion-button:not(.inert)::after {
	content: "+";
	margin-left: auto;
}
.accordion-group .accordion-button.active:not(.inert)::after {
	content: "-";
}
.accordion-group .accordion-content {
	display: none;
	padding: 1rem;
}
/*  */
footer {
	background-color: #333;
	color: #eee;
	padding: 2em 1em;
	text-align: center;
	position: relative;
}
footer .logo img {
	width: 150px;
	height: auto;
	filter: brightness(10);
}
footer .footer-menu {
	padding-block: 1em;
}
footer .footer-menu a {
	color: #eee;
}
footer .footer-menu a:hover {
	color: var(--clr-secondary-lighter);
}
footer .footer-menu ul {
	list-style: none;
}
footer .footer-menu > ul > li {
	padding: .5em 0;
}
footer .footer-menu > ul > li > a {
	color: #eee;
}
footer .socials {
	margin-block: 1em;
	display: none;
}
footer .socials a {
	color: #eee;
	display: inline-block;
	padding-inline: .5em;
}
footer .socials a:hover {
	color: #fff;
}
footer .socials .fab {
	font-size: 1.5rem;
}
.copyright {
	padding-block: 2em;
}
.page-header {
	background-color: var(--clr-secondary-darker);
	color: #fff;
	overflow: hidden;
	align-items: center;
	align-content: center;
	padding-block: 5rem;
}
.page-header.community {
	background-color: var(--clr-secondary-50);
	color: var(--clr-primary);
}
.breadcrumbs {
	text-transform: uppercase;
	margin-bottom: .5rem;
	position: relative;
	z-index: 1;
}
.breadcrumbs a {
	color: inherit;
}
.page-header h1 {
	font-weight: bold;
	font-size: 2rem;
	line-height: 1;
}
.page-header h2 {
	font-size: 2.5rem;
	line-height: 1.2;
	text-wrap: balance;
}
.section-contact {
	padding-block: 4em;
}
ul.flex-direction-nav {
	display: flex;
}
ul.flex-direction-nav .flex-nav-next,
ul.flex-direction-nav .flex-nav-prev {
    width: 40px;
    height: 40px;
    cursor: pointer;
    list-style: none;
}
ul.flex-direction-nav .flex-nav-next a,
ul.flex-direction-nav .flex-nav-prev a {
    display: block;
    text-align: left;
    text-indent: -1000px;
    overflow: hidden;
    width: 20px;
    height: 20px;
    transform: rotate(45deg);
    top: 8px;
    left: 10px;
    opacity: .5;
    z-index: 9;
}
ul.flex-direction-nav .flex-nav-next a:hover,
ul.flex-direction-nav .flex-nav-prev a:hover {
    opacity: 1;
}
ul.flex-direction-nav .flex-nav-next a {
    border-right: 6px solid #fff;
    border-top: 6px solid #fff;
    border-bottom: none;
    border-left: none;
}
ul.flex-direction-nav .flex-nav-prev a {
    border-left: 6px solid #fff;
    border-bottom: 6px solid #fff;
    border-top: none;
    border-right: none;
}
.flex-control-nav {
    text-align: center;
}
.flex-control-nav li {
    display: inline-block;
    padding: 3px;
}
.flex-control-nav li a {
    display: block;
    text-align: left;
    text-indent: -1000px;
    overflow: hidden;
    height: 10px;
    width: 10px;
    background-color: #fff5;
    border-radius: 10px;
}
.flex-control-nav li a.flex-active {
    width: 20px;
}
.flex-control-nav li a.flex-active,
.flex-control-nav li a:hover {
    background-color: #fff;
}
/* work */
.work-wrapper > div,
.work-wrapper > a {
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #eee;
}
.work-wrapper > div > img,
.work-wrapper > a > img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.work-wrapper {
	display: grid;
	grid-gap: 1rem;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	grid-auto-rows: 200px;
	grid-auto-flow: dense;
	margin-block: 3rem;
}
.work-wrapper .work-wide {
	grid-column: span 2;
}
.work-wrapper .work-tall {
	grid-row: span 2;
}
.work-wrapper .work-big {
	grid-column: span 2;
	grid-row: span 2;
}
@media only screen and (max-width: 1199px) {
	html {
		font-size: .9rem;
	}
	header {
		position: relative;
		z-index: 98;
		isolation: isolate;
	}
	header nav {
		position: fixed;
        inset: 0;
		margin-top: 80px;
        padding: 20px;
		padding-top: 100px;
        background-color: #fff;
        overflow: auto;
        transform: translateY(20px);
        opacity: 0;
        visibility: 0;
        pointer-events: none;
        z-index: -1;
		overscroll-behavior: contain;
        -webkit-transition: var(--transition-all);
        -moz-transition: var(--transition-all);
        transition: var(--transition-all);
	}
	.menu-active header nav {
		transform: translateY(0px);
		opacity: 1;
		visibility: visible;
		pointer-events: all;
	}
	.nav-toggle {
		width: 45px;
		height: 45px;
		overflow: hidden;
		text-indent: -1000px;
		display: inline-block;
		position: relative;
	}
	.nav-toggle:before,
	.nav-toggle:after {
		content: "";
		position: absolute;
		display: block;
		height: 1px;
		left: 0;
		right: 0;
		margin: auto;
		transition: .3s all ease-in-out;
		width: 75%;
	}
	.nav-toggle:before {
		background-color: var(--clr-primary);
		top: 50%;
		transform: translateY(-50%);
	}
	.nav-toggle:after {
		background-color: var(--clr-primary);
		top: 25%;
		transform: translateY(-50%);
		box-shadow: 0 23px 0 var(--clr-primary);
	}
	.menu-active .nav-toggle:after {
		top: 50%;
		transform: translateY(-50%);
		box-shadow: 0 0 0 var(--clr-primary);
	}
	header nav a {
		display: block;
		padding: .2em 0;
	}
	header nav > ul > li {
		font-size: 1.2rem;
		margin-bottom: .5em;
		font-weight: bold;
	}
	header nav > ul > li > ul {
		margin-left: .5em;
		font-size: 1rem;
		line-height: 1.8;
	}
	.search-toggle {
		display: none;
	}
	.menu-featured {
		display: none;
	}
}
@media only screen and (min-width: 670px) {
	.home-section.bg-motif {
		padding-bottom: 5rem;
	}
	.service-tile a {
		grid-template-columns: 1fr;
		grid-template-rows: 100px 100px;
		align-items: start;
		gap: 2rem;
		font-size: 1.5rem;
	}
	.service-tile a img {
		height: 100px;
		width: 100%;
		object-fit: contain;
		object-position: left;
	}
	.page-cta-ribbon .maxwidth {
		display: flex;
	}
	footer {
		padding-left: 1em;
		padding-right: 1em;
	}
	footer .footer-menu > ul {
		text-align: center;
		display: flex;
		gap: 1em;
		place-content: center;
	}
}
@media only screen and (min-width: 992px) {
}
@media only screen and (min-width: 1200px) {
	.text-xl {
		font-size: 1.4rem;
	}
	.text-2xl {
		font-size: 1.6rem;
	}
	.text-3xl {
		font-size: 1.8rem;
	}
	header {
		/* position: absolute; */
		z-index: 9;
		top: 0;
		left: 0;
		right: 0;
		isolation: isolate;
	}
	header .logo {
		width: 250px;
	}
	.nav-toggle {
		display: none;
	}
	header > .header-wrapper {
		display: flex;
		align-items: center;
	} 
	header nav {
		display: flex;
		align-items: center;
		position: relative;
		/* font-size: 1.2rem; */
		flex: 1;
	}
	header nav > ul {
		margin-left: auto;
        margin-right: 2em;
	}
	header nav > ul > li  {
		display: inline-block;
		position: relative;
		isolation: isolate;
		vertical-align: middle;
	}
	header nav > ul > li  a {
		display: block;
		padding: 1em;
		white-space: nowrap;
		font-weight: bold;
	}
	header ul li:hover > a {
		color: var(--clr-primary)!important;
	}
	header nav ul ul {
		isolation: isolate;
		visibility: hidden;
		pointer-events: none;
		opacity: 0;
		position: absolute;
		top: 80%;
		left: 0;
		font-size: .85rem;
		transition: var(--transition-all);
	}
	header nav ul li:hover ul,
	header nav ul li:focus-within ul {
		visibility: visible;
		pointer-events: all;
		top: 100%;
		opacity: 1;
		transform: translateY(0px);
		transition: var(--transition-all);
	}
	header nav ul ul a {
		display: block;
		padding: .5em 1em;
	}
	.btn-app img {
		height: 2.5rem;
	}
	.headline h1 {
		font-size: 5rem;
	}
	.page-header h1 {
		font-size: 3rem;
	}
	.mission-vision {
		padding: 4rem;
	}
	footer .footer-info {
		display: flex;
		text-align: left;
		justify-content: space-between;
		align-items: center;
	}
	footer .logos {
        display: flex;
        gap: 3em;
        padding-block: 2em;
	}
	footer .footer-menu a {
		padding: .5em 1em;
	}
	footer .footer-menu {
		margin-left: auto;
	}
	.modal-box {
		flex-direction: row;
		top: 150px;
		bottom: 150px;
		min-height: 320px;
	}
	.modal-box .staff-narration,
	.modal-box .partner-narration {
		max-width: 50%;
	}
	a.close-modal {
		left: auto;
		bottom: auto;
		top: 100px;
		right: 40px;
	}
	.page-cta-ribbon a {
		padding: 2em 5.5em 2em 3em;
	}
}
@media only screen and (min-width: 1600px) {
	:root {
		--max-width: 1400px;
	}
}