/* =============================================================================================
	BASE STYLES AND LAYOUT
============================================================================================= */

/* ------------------------------------------------------------------------ CSS Variables */

:root {
	--white: #fff;
	--off-white: #F8F8F8;
	--black: #111;
	--black-dk: #191B23;
	--error: #e6004c;
	--grey-dark: #212121;
	--grey-lt: #eee;
	--green: #00c2a8;
	--green-dark: #00847A; /* normal text on white — 4.58:1 */
	--green-dark-lg: #009A85; /* large bold text on white — 3.52:1 */
	--blue-navy: #2c3e50;
	--blue: #007DC4;
	--footer-text: #b8c4c6;
	--orange: #E67E22;

	--header-height: 85px;
	--header-height-scroll: 76px;
	--section-p: 4rem;
	--section-p-sm: 3rem;
	--card-p: 2rem;

	--font-family: "Inter", sans-serif;
	--header-family: "Inter Tight", sans-serif;;
	
	--font-x-small: clamp(0.625rem, 0.5417rem + 0.3704vw, 0.875rem); /*10-14*/
	--font-small: clamp(0.875rem, 0.7917rem + 0.3704vw, 1.125rem); /*14-18*/
	--font-regular: clamp(1rem, 0.9167rem + 0.3704vw, 1.25rem);   /*16-20*/
	--font-medium: clamp(1.25rem, 1.1667rem + 0.3704vw, 1.5rem);  /*20-24*/
	--font-large: clamp(1.75rem, 1.6667rem + 0.3704vw, 2rem);     /*28-32*/
	--font-xlarge: clamp(2.25rem, 2rem + 1.1111vw, 3rem);         /*36-48*/
	--font-xxlarge: clamp(2.75rem, 2.1rem + 2.8vw, 4.5rem);       /*44-72*/
	--font-banner: clamp(3.25rem, 2.45rem + 3.6vw, 5.75rem); /*52-92*/
	
	
	
	--fw-400: 400;
	--fw-500: 500;
	--fw-600: 600;
	--fw-700: 700;
	--lh-16: 1.6;
	--lh-13: 1.3;

	--standard-transition: all .25s ease;
}

@media (min-width: 1400px) {
	:root {
		--section-p: 5rem;
		--section-p-sm: 4rem;
		--card-p: 3rem;
	}
}


/* ------------------------------------------------------------------------ Page Styles & Resets */

html {
  scroll-behavior: auto;
  scroll-padding-top: calc(var(--header-height-scroll) + var(--section-p-sm));
}

html.lenis {
  height: auto;
}

html.lenis body {
  height: auto;
}

html.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

body {
	font: var(--fw-400) 100%/var(--lh-16) var(--font-family);
	font-size: var(--font-regular);
	color: var(--black);
	background-color: var(--white);
	text-wrap: pretty;
} 

@media (min-width: 992px) {
	body {
		padding-top: var(--header-height);
	} 
}

/* ------------------------------------------------------------------------ Keyboard Accessibility */

.skip-link { 
	position:absolute; 
	left:-10000px; 
	top:0; 
	width:1px; 
	height:1px; 
	overflow:hidden;
	background-color: var(--grey-dk);
	color: var(--white);
	font-size: 0.875rem;
	text-decoration:none;
	z-index: 1050;
	padding:0.5rem 0.625rem; 
} 

.skip-link:focus, .skip-link.sr-only-focusable:active, .skip-link.sr-only-focusable:focus {
	position: absolute; 
	outline: none; 
	left:0;
	outline: none; 
	width:auto; 
	height:auto;
} 

.skip-link:hover {
	color: var(--white);
	background-color: var(--grey-md);
}

a:focus, .btn:focus {
	outline: solid thin rgba(0, 0, 0, 0.5);
	box-shadow: none;
} 

.sidenav__header-link:focus, .card__header-link:focus {
	outline: solid thin rgba(255, 255, 255, 0.5);
}

a:hover, a:active { outline: none !important; } /*...not with mouse (kinda) */


/* ------------------------------------------------------------------------ Headers */

h1, h2, h3,
.h1, .h2, .h3  {
	font-family: var(--header-family);
	margin-bottom: 1rem;
	line-height: var(--lh-13);
}	

h1.hero-head {
	font-size: var(--font-banner);
	font-weight: 800;
	margin-bottom: 1rem;
}

h1.hero-head span {
	display: block;
	line-height: 1.12;
	text-align: center;
}

h1.hero-head .h2 {
	font-weight: 800;
}

h1, .h1 {
	font-weight: var(--fw-600);	
}
	
h2, .h2 {
	font-size: var(--font-xlarge);
	font-weight: var(--fw-600);	
	color: var(--blue-navy);
	line-height: 1.15;
}
		
h3, .h3 { 
}	

h2, h3  { 
}

hr + h2, 
hr + h3, 
section h2:first-child,
section h3:first-child {
	margin-top: 0;
}

h2 + h3 {
	margin-top: 3rem;
}

.gradient-font {
	color: #cb981a;
	background-image: linear-gradient(270deg,rgba(0, 194, 168, 1) 0%, rgba(2, 48, 71, 1) 100%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	line-height: 1 !important;
    margin-bottom: 0.15em;
	display: block;
}

h2 span:not(.highlight) {
	color: var(--blue-navy);
}

.subheading {
	font-family: var(--header-family);
	font-size: var(--font-small);
	font-weight: var(--fw-600);
	text-transform: uppercase;
	letter-spacing: 0.45em;
	color: var(--green-dark);
	margin-bottom: 0.75rem;
}

.subheading + h2 {
	margin-top: 0;
}

.highlight {
	color: var(--orange);
}

@media (min-width: 992px) {
	h1.hero-head span {
		text-align: left;
	}
}


/* ------------------------------------------------------------------------ Lists */

ul, .list { 
	list-style: none; 
	list-style-position: outside;
	padding-left: 0;
}

ul li, .list__item {	
    padding: 0 0 0.25rem 1.125em;
	background: url(../images/arrow-grey.svg) no-repeat left 0.375em;
	background-size: 0.75em 0.75em;
}

ul ul, .list__sub-list {
	margin-top: 0.25rem;
}


ul ol {
	padding-left: 1.375rem;
	margin-top: 0.25rem;
}

ul ol li {
	background-image: none;
	padding-left: 0;
}

li p {
	margin-bottom: 0;
}
		
ol {
	padding-left: 1rem;
}	

ol li {padding-bottom: 0.25rem;}

ol ol {
	padding-left: 2.25rem;
	margin-top: 0.25rem;
}

ol ul {margin-top: 0.25rem;}
		
li:last-child { 
	padding-bottom:0;
}
		
					
/* ------------------------------------------------------------------------ Other Base Text Styles */

.color-inherit {
	color: inherit;
}	

.lead,
.intro-text {
	font-size: 1.25rem;
}

.note {
	font-size: .875rem;
}

.font-white {
	color: var(--white);
}


sup, sub {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sup { 
	top: -0.5em; 
}

sub { 
	bottom: -0.25em; 
}

.nav-link,
.dropdown-item,
label,
table,
.btn,
.cta__heading {
	line-height: var(--lh-13);
}


@media (min-width: 1400px) {	
	p,
	.p,
	li,
	label,
	table,
	.btn {
		font-size: 1.125rem;
	}

	.lead {
		font-size:1.375rem;
	}

	.note {
		font-size: 1rem;
	}	
}

	
/* ------------------------------------------------------------------------ Links */

a { 
	color: var(--grey-md); 
	font-weight: var(--fw-700);
	transition: var(--standard-transition);
	text-decoration: underline;
}	

a:hover {
	color: var(--grey-dk);
	text-decoration: none;
}

.a--no-underline {
	text-decoration: none;
}

.a--no-underline:hover {
	text-decoration: underline;
}

main a { 
	word-wrap: break-word; 
}

a img {
	border: none;
	-webkit-backface-visibility: hidden;
    -webkit-transform: translateZ(0) scale(1.0, 1.0);
	transition: var(--standard-transition);
}				

a img:hover { 
	opacity: .9;
}	



/* ------------------------------------------------------------------------ Button Styles */

.btn {
	margin-top: 1rem; 
	padding: .625rem 1.5rem;
	border-radius:0;
	cursor: pointer;
}

.header__call {
	display: flex;
	align-items: center;
	list-style: none;
}

.btn-call {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	padding: 0.75rem 1.75rem;
	margin: 0.75rem 0 0;
	font-size: 1.0625rem;
	font-weight: var(--fw-600);
	line-height: 1.2;
	color: var(--white);
	text-decoration: none;
	background-color: var(--blue-navy);
	border: 2px solid var(--blue-navy);
	border-radius: 3.125em;
	white-space: nowrap;
	box-shadow: 0 4px 14px rgba(44, 62, 80, 0.22);
	transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.btn-call::before {
	content: "";
	flex-shrink: 0;
	width: 0.95rem;
	height: 0.95rem;
	background-image: url("../images/btn-call.svg");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	filter: brightness(0) invert(1);
}

.btn-call:hover,
.btn-call:focus {
	color: var(--white);
	text-decoration: none;
	background-color: color-mix(in srgb, var(--blue-navy) 85%, var(--black));
	border-color: color-mix(in srgb, var(--blue-navy) 85%, var(--black));
	box-shadow: 0 6px 18px rgba(44, 62, 80, 0.32);
}

@media (min-width: 992px) {
	.header__call {
		margin-left: 0.5rem;
	}

	.btn-call {
		margin: 0;
		padding: 0.75rem 1.75rem;
		font-size: 1.125rem;
	}

	.btn-call::before {
		width: 1.05rem;
		height: 1.05rem;
	}
}

.btn-primary {
	position: relative;
	display: inline-flex;
	align-items: center;
	background-color: var(--orange);
	color: var(--white);
	border: solid 2px var(--orange);
	border-radius: 3.125em;
	font-weight: var(--fw-700);
	text-transform: uppercase;
	transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.btn-primary::before {
	content: "";
	position: absolute;
	inset: 0;
	border: 2px solid var(--orange);
	border-radius: inherit;
	opacity: 0;
	pointer-events: none;
	transition: inset 0.4s ease, opacity 0.4s ease;
}

.btn-primary::after {
	content: '';
	display: inline-block;
	flex-shrink: 0;
	width: 22px;
	height: 11px;
	margin-left: 0.5em;
	vertical-align: middle;
	background: url('../images/arrow-btn.svg') center / contain no-repeat;
	transition: opacity 0.25s ease;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-check:active+.btn-primary,
.btn-check:checked+.btn-primary,
.btn-primary.active,
.btn-primary:active,
.show>.btn-primary.dropdown-toggle { 
	color: var(--white);
	background-color: color-mix(in srgb, var(--orange) 85%, var(--blue-navy));
	border-color: color-mix(in srgb, var(--orange) 85%, var(--blue-navy));
	box-shadow: none;
}

.btn-primary:hover::before,
.btn-primary:focus::before,
.btn-check:active+.btn-primary::before,
.btn-check:checked+.btn-primary::before,
.btn-primary.active::before,
.btn-primary:active::before,
.show>.btn-primary.dropdown-toggle::before {
	inset: -6px;
	opacity: 0.5;
}

.btn-secondary {
	background-color: transparent;
	color: var(--white);
	border: solid 2px var(--green);
	border-radius: 3.125em;
	transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.btn-secondary::after {
	content: '';
	display: inline-block;
	width: 22px;
	height: 11px;
	margin-left: 0.5em;
	background-color: var(--white);
	mask-image: url('../images/arrow-btn.svg');
	mask-size: cover;
	mask-repeat: no-repeat;
	mask-position: center;
	-webkit-mask-image: url('../images/arrow-btn.svg');
	-webkit-mask-size: cover;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	transition: background-color 0.25s ease;
}

.btn-secondary:hover,
.btn-secondary:focus,
.btn-check:active+.btn-secondary,
.btn-check:checked+.btn-secondary,
.btn-secondary.active,
.btn-secondary:active,
.show>.btn-secondary.dropdown-toggle {
	color: var(--green);
	background-color: transparent;
	border-color: var(--green);
	box-shadow: none;
}

.btn-secondary:hover::after,
.btn-secondary:focus::after,
.btn-check:active+.btn-secondary::after,
.btn-check:checked+.btn-secondary::after,
.btn-secondary.active::after,
.btn-secondary:active::after,
.show>.btn-secondary.dropdown-toggle::after {
	background-color: var(--green);
}


@media (min-width: 1400px) {	
	.btn {
		padding: .75rem 2rem;
	}
}


/* ------------------------------------------------------------------------ Images */
	
img {
	max-width: 100%;
	height: auto!important; 
}

.img--float-left, .img--float-right { 
	margin: .5rem 0 1rem 0;	
}


.cta__icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
	transition: var(--standard-transition);
}

.sec--offer .cta__icon-svg {
	display: block;
	width: 100%;
	height: 100%;
	transition: var(--standard-transition);
}

@media (min-width: 768px) {	
	.img--float-left {
		float: left;
		margin: .5rem 3rem .375rem 0;
		max-width: 38%;
	}
		
	.img--float-right {
		float: right;
		margin: .5rem 0 .375rem 3rem;
		max-width: 38%;
	}
}	

	
/* ------------------------------------------------------------------------ SVG's */

svg {
	width: 1rem;
	height: 1rem;
}	
	

/* ------------------------------------------------------------------------ Horizontal Rules */

hr, .hr { 
	margin: 1.5rem auto;
}	

@media (min-width: 1400px) {
	hr, .hr {
		margin: 3rem auto;
	}
}	


/* ------------------------------------------------------------------------ Additional Utility Classes/Bootstrap Overrides */

.pt-section,
.py-section {
	padding-top: var(--section-p);
}

.pb-section,
.py-section {
	padding-bottom: var(--section-p);
}

.pe-section,
.px-section {
	padding-right: var(--section-p);
}

.ps-section,
.px-section {
	padding-left: var(--section-p);
}


.pt-section-sm,
.py-section-sm {
	padding-top: var(--section-p-sm);
}

.pb-section-sm,
.py-section-sm {
	padding-bottom: var(--section-p-sm);
}

.pe-section-sm,
.px-section-sm {
	padding-right: var(--section-p-sm);
}

.ps-section-sm,
.px-section-sm {
	padding-left: var(--section-p-sm);
}


.mt-section,
.my-section {
	margin-top: var(--section-p);
}

.mb-section,
.my-section {
	margin-bottom: var(--section-p);
}

.me-section,
.mx-section {
	margin-right: var(--section-p);
}

.ms-section,
.mx-section {
	margin-left: var(--section-p);
}


.mt-section-sm,
.my-section-sm {
	margin-top: var(--section-p-sm);
}

.mb-section-sm,
.my-section-sm {
	margin-bottom: var(--section-p-sm);
}

.me-section-sm,
.mx-section-sm {
	margin-right: var(--section-p-sm);
}

.ms-section-sm,
.mx-section-sm {
	margin-left: var(--section-p-sm);
}


.mt-4b,
.my-4b {
	margin-top: 2rem;
}

.mb-4b,
.my-4b {
	margin-bottom: 2rem;
}

.me-4b,
.mx-4b {
	margin-right: 2rem;
}

.ms-4b,
.mx-4b {
	margin-left: 2rem;
}


.sticky-top {
    top: calc(var(--header-height-scroll) + var(--section-p-sm));
}


/*For videos embedded through rte*/
.embeditem {
    position: relative;
    width: 100%;
    --bs-aspect-ratio: calc(9 / 16* 100%);
}

.embeditem::before {
    display: block;
    padding-top: var(--bs-aspect-ratio);
    content: "";
}

.embeditem>* {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


@media (min-width: 1400px) {
	.g-xxl-6,.gx-xxl-6 {
	    --bs-gutter-x: 5rem
	}

	.g-xxl-6,.gy-xxl-6 {
	    --bs-gutter-y: 5rem
	}

	.g-xxl-7,.gx-xxl-7 {
	    --bs-gutter-x: 7rem
	}

	.g-xxl-7,.gy-xxl-7 {
	    --bs-gutter-y: 7rem
	}
}



/* =============================================================================================
	HEADER
============================================================================================= */

.print-header { 
	display:none; 
}
	
.logo { 
	flex: 1;
	display: block;
}

.logo__img {
	max-width: 8rem; 
	width: 100%;
	padding-block: 0.25rem;
	transition: var(--standard-transition);
}

.header--scroll .logo__img {
	max-width: 8rem; 
}

.header { 
	z-index: 1040;
}

.navbar--fixed-top {
	padding: 1.25rem 1rem;
	transition: var(--standard-transition);
}

.header__mobile {
	padding-top: 1.125rem !important;
	padding-bottom: 1.125rem !important;
}


@media (min-width: 992px) {

	.logo__img {
		max-width: 10rem;
	}
	
	.header--scroll .navbar--fixed-top {
	    padding: 0.625rem 1rem;
	    background-color: rgba(255,255,255,.75) !important;
		backdrop-filter: blur(8px);
	}

}


/* ------------------------------------------------------------------------ Seach Area */

.search-trigger {
	cursor: pointer;
	padding-top: .5rem;
	width: 14rem;
	background-color: var(--grey-md);
    border-color: var(--grey-md);
    padding: .625rem 1.25rem;
    color: var(--white);
    text-transform: uppercase;
    font-weight: var(--fw-700);
}

.search-trigger__icon {
	width: 2.5rem;
	height: 2rem;
    align-self: center;
    justify-self: end;
    border-radius: 50%;
  	background: url(../images/search-icon-reverse.svg) no-repeat center;
  	background-size: 1.375rem;
  	transition: var(--standard-transition);
}


@media (min-width: 992px) {	
	.search-trigger {
		cursor: pointer;
		border-top: none;
		padding: 0;
		background-color: transparent;
    	border:0;
    	width: auto;
	}

	.search-trigger__icon {
		height: 2.5rem;
		background-image: url(../images/search-icon.svg);
		background-size: 1.375rem;
	}

	.search-trigger:hover .search-trigger__icon {
		background-color: var(--black);
		background-image: url(../images/search-icon-reverse.svg);
		background-size: 1.375rem;
	}
}


/* ------------------------------------------------------------------------ Search Full Screen */

.modal--search .modal-content {
	background-color: var(--black);
}

.modal--search .modal-header {
	border-bottom: 0;
}

.modal--search .container {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: inline-block;
	text-align:center;
}

.modal--search input[type="search"] {	
	color: var(--black);
    background-color: var(--white);
    border-color: var(--white);
    border:0;
    font-weight: var(--fw-500);
	font-size: 1.5rem;	
	padding-left: 2rem;
	padding-right: 2rem;
	text-align: center;
}

.modal--search input[type="search"]:placeholder { 
  	color: var(--grey-lt);
}

.modal--search .btn {
	text-align: center;
	margin-top: 2rem;
}


@media (min-width: 992px) {	
	.modal--search .container {
		width: 75%;
	}

	.modal--search  .logo__img {
		max-width: 24rem;
	}
}

@media (min-width: 1200px) {	
	.modal--search .container {
		width: 50%;
	}
}

@media (min-width: 1400px) {	
	.modal--search .container {
		width: 50%;
	}

	.modal--search input[type="search"] {		
		font-size: 2.5rem;
	}
}


/* ------------------------------------------------------------------------ Navbar Nav */

.navbar {
	border-bottom: 1px solid var(--grey-lt);
}

.navbar-nav li {
	padding: 0;
	background-image: none;
}

.navbar-nav .nav-link {
	color: var(--black);
	padding: .375rem 1.5rem .375rem 0;
	font-size: 1.125rem;
	position: relative;
}

.navbar-nav .nav-item.active .nav-link {
    color: var(--grey-dk);
}

.icon-arrow {
	padding: 0 .5rem;
}

.navbar-nav .dropdown-menu {	
	background-color: var(--white);
	margin:0 0 .5rem 0;
	padding:0;
	box-shadow: none;
	border: 0;
	border-radius: 0;
}

.navbar-nav .dropdown-menu li > .dropdown-item.active {
	color: var(--grey-dk);
	font-weight: var(--fw-700);
}

.dropdown-item.active, .dropdown-item:active {
	color: var(--grey-dk);
	background-color: transparent;
}

.dropdown-item.active {
	font-weight: var(--fw-700);
}

.navbar-nav .dropdown-menu li:hover > .dropdown-item.active, .navbar-nav .dropdown-item:hover {
	background-color: transparent;
	text-decoration: underline;
	color: var(--grey-md);
}


.navbar-nav .dropdown-item {
	padding: .25rem 0 .25rem 1rem;
	white-space: wrap;
}

.navbar-nav .megamenu .dropdown-item {
	padding-left: 0;
}

.navbar-nav .dropdown-item:focus {
	background-color: var(--white);
	color: inherit;
}

.navbar-nav .dropdown-menu .dropdown-menu {
	background-color: var(--white);
	padding-left: 1rem;
}

.icon-arrow:after {
    content: "+";
    margin-left: .5rem;
    margin-top: -.25rem;
    opacity: 1;
    font-size: 1rem;
}

.g-2b {
    --bs-gutter-y: 0.75rem;
}

.dropdown-toggle::after{
    display:none;
}

.dropdown-toggle .icon-arrow {
    position: absolute;
    right: 0;
}


@media (min-width: 992px) {	
	.navbar {
		margin-top: 0; 
	}

	.navbar--fixed-top {
		position: fixed;
	    top: 0;
	    right: 0;
	    left: 0;
	    z-index: 1030;
	}

	.navbar-nav .nav-link {
		padding: .5rem 0!important;
		margin-right: 1.5rem;
		border-bottom: 0;
	}

	.navbar-nav .nav-item:last-child .nav-link {
		margin-right:0; 
	}

	.navbar-nav .nav-item.active:hover .nav-link, .navbar-nav .nav-link:hover {
	    color: var(--grey-md);
	}

	.navbar-nav .dropdown-menu, .navbar-nav .dropdown-menu .dropdown-menu {
		padding: .75rem 0;
		min-width: 15rem !important;
	}

	.navbar-nav .dropdown-item {
		padding: .25rem 1.5rem;
	}

	.navbar-nav .megamenu .dropdown-item {
		padding-left: 0;
	}

	.navbar-nav .dropdown-menu li.active:hover .dropdown-item, .navbar-nav .dropdown-item:hover {
		color: var(--grey-md);
	}

	.dropdown-menu>li:hover {
	    background-color: transparent;
	}

	.navbar-nav .megamenu {   
	    padding: 1rem 0;
	    margin-top: -1rem !important;
	} 

	.dropdown-toggle:after {
	 	display: none;
	}
}

@media (min-width: 1400px) {
	.navbar-nav .nav-link {
		margin-right: 2rem;
	}
}


/* ------------------------------------------------------------------------ Side Nav */

.sidenav li {
	padding: 0;
	background-image: none;
}

.sidenav .nav-link {
	padding: .25rem 0;
	font-weight: var(--fw-400);
	color: var(--black);
}

.sidenav .nav-link:hover {
    text-decoration: underline;
    color: var(--grey-md);
}

.sidenav .nav-link.active {
	color: var(--grey-dk);
	font-weight: var(--fw-700);
}

.sidenav .submenu {
	margin: 0 0 .5rem 0;
    padding: 0 0 0 1rem;
}

.sidenav .icon-arrow.show::after {
    content: '-';
    font-size: 1.125rem;
}

.sidenav .icon-arrow::after {
    content: "+";
    margin-left: .5rem;
    margin-top: -.25rem;
    opacity: 1;
    font-size: 1rem;
}


@media all and (max-width: 991px) and (min-width: 0px) {	
	.sidenav {
		border: 1px solid var(--grey-md);
		padding: 1.5rem 2rem;
	}
}



/* ------------------------------------------------------------------------ Bootstrap Menu Off Canvas Mobile */

body.offcanvas-active {
	overflow:hidden;
}

.offcanvas-header { 
	display:none;
}

.offcanvas-header .btn-close {
	width: 1.75em;
    height: 1.5em;
    background-position: center .5rem;
}

.screen-darken {
	height: 100%;
	width:0%;
	z-index: 30;
	position: fixed;
	top: 0;
	right: 0;
	opacity:0;
	visibility:hidden;
	background-color: rgba(0, 0, 0, 0.5);
	transition:opacity .2s linear, visibility 0.2s, width 2s ease-in;
}

.screen-darken.active {
	z-index:10; 
	transition:opacity .3s ease, width 0s;
    opacity:1;
    width:100%;
    visibility:visible;
}


@media all and (max-width: 991px) {
	.offcanvas-header { 
		padding: 0;	
		display:block;
	}

	.mobile-offcanvas {
		visibility: hidden;
		transform:translateX(-100%);
	    border-radius:0; 
		display:block;
	    position: fixed;
	    top: 0; left:0;
	    height: 100%;
	    z-index: 1200;
	    width:100%;
	    overflow-y: scroll;
	    overflow-x: hidden;
	    transition: visibility .3s ease-in-out, transform .3s ease-in-out;
	}

	.mobile-offcanvas.show {
		visibility: visible;
    	transform: translateX(0);
	}

	.mobile-offcanvas .container, .mobile-offcanvas .container-fluid {
		display: block;
	}
}	


/* ------------------------------------------------------------------------ Navbar Toggler */

.navbar-toggler {
	padding: 0;
	border: none;
	cursor: pointer;
	border-radius: 0;
}

.navbar-toggler:focus {
	box-shadow: 0 0 0 0.1rem;
}

.navbar-toggler-icon {
    background-image: url(../images/menu-icon.svg);
    width: 1.25em;
    height: 1.25em;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
	background-image: url(../images/menu-icon-open.svg);
}


@media (min-width: 992px) {
	.navbar-toggler {
		display: none;
	}
}



/* =============================================================================================
	MAIN CONTENT AREA
============================================================================================= */

.container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl, .container-xxxl {
	--bs-gutter-x: 5rem;
}

@media (min-width: 576px){ 
	.container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl, .container-xxxl {
		--bs-gutter-x: 1.5rem;
	}
}

@media (min-width: 992px) {
	.container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl, .container-xxxl {
		--bs-gutter-x: calc(1.5rem + 1em);
	}
}

@media (min-width: 1400px){ 
	.container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl, .container-xxxl {
	    max-width: 1440px;
		--bs-gutter-x: calc(2rem + 1em);
	}
}

@media (min-width: 1680px){ 
	.container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl, .container-xxxl {
	    max-width: 1440px;
		--bs-gutter-x: calc(2rem + 1em);
	}
}

/* ------------------------------------------------------------------------ Video Banner */

.sec--hero-vid {
    position: relative;
    min-height: auto;
    overflow-x: clip;
    overflow-y: visible;
	background-color: var(--off-white);
    background-size: cover;
    background-position: center;
}

.sec--hero-home,
.sec--hero-vid.sec--hero-home {
	position: relative;
	min-height: 100vh;
	min-height: 100dvh;
	height: 100vh;
	height: 100dvh;
	display: flex;
	align-items: center;
	overflow: hidden;
	background-color: var(--blue-navy);
	background-image: url(../images/home-hero.jpg);
	background-size: cover;
	background-position: center right;
	background-repeat: no-repeat;
	color: var(--white);
}

.sec--hero-home::after {
	display: none;
}

.hero-home__texture {
	display: none;
}

.sec--hero-home .hero-content {
	z-index: 4;
	width: 100%;
}

.hero-home__copy {
	position: relative;
	padding: 0;
}

.hero-home__veil {
	display: none;
}

.hero-home__copy-inner {
	position: relative;
	z-index: 1;
}

.sec--hero-home .hero__title,
.sec--hero-home .hero__subtitle,
.sec--hero-home .hero__lead {
	text-align: left;
	color: var(--white);
}

.sec--hero-home .hero__title {
	font-size: clamp(3.25rem, 2.4rem + 3.5vw, 5.75rem);
	line-height: 1.02;
	margin-bottom: 0.85rem;
}

.sec--hero-home .hero__subtitle {
	color: var(--green);
	font-size: clamp(1.85rem, 1.6rem + 0.9vw, 2.5rem);
}

.sec--hero-home .hero__lead {
	color: rgba(255, 255, 255, 0.9);
	margin-left: 0;
	margin-right: 0;
	font-size: clamp(1.05rem, 1rem + 0.25vw, 1.2rem);
}

@media (max-width: 991.98px) {
	.sec--hero-home,
	.sec--hero-vid.sec--hero-home {
		min-height: 28rem;
		height: auto;
		background-position: center center !important;
	}

	.hero-home__copy {
		padding: 0;
	}

	.hero-home__veil {
		display: none;
	}
}

.sec--hero-vid::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	background-image:
		radial-gradient(rgba(44, 62, 80, 0.2) 1.25px, transparent 1.25px),
		radial-gradient(rgba(0, 194, 168, 0.08) 1px, transparent 1px);
	background-size: 20px 20px, 20px 20px;
	background-position: 0 0, 10px 10px;
	mask-image: linear-gradient(
		180deg,
		rgba(0, 0, 0, 0.7) 0%,
		rgba(0, 0, 0, 1) 30%,
		rgba(0, 0, 0, 1) 70%,
		rgba(0, 0, 0, 0.65) 100%
	);
}

/* Home hero overlay: full coverage on mobile, left-to-right fade on desktop */
.sec--hero-home.sec--hero-vid::before {
	z-index: 2;
	background-image: none;
	background-color: transparent;
	background-size: auto;
	background-position: 0 0;
	mask-image: none;
	background: rgba(25, 27, 35, 0.82);
}

@media (min-width: 992px) {
	.sec--hero-home.sec--hero-vid::before {
		background: linear-gradient(
			90deg,
			rgba(25, 27, 35, 0.94) 0%,
			rgba(25, 27, 35, 0.86) 22%,
			rgba(25, 27, 35, 0.58) 42%,
			rgba(25, 27, 35, 0.22) 62%,
			rgba(25, 27, 35, 0) 82%
		);
	}
}

/* Hero laptop graphic */
.hero__graphic {
	position: relative;
	width: 100%;
	max-width: 20rem;
	margin: 0 auto;
	pointer-events: none;
	overflow: visible;
}

.sec--hero-vid .hero-content .col-lg-6:last-child {
	overflow-x: clip;
}

.hero__graphic-inner {
	position: relative;
	width: 100%;
	line-height: 0;
}

.hero__laptop {
	display: block;
	width: 100%;
	height: auto;
}

.hero__mobile-left {
	position: absolute;
	left: -2%;
	top: 14%;
	width: 34%;
	height: auto;
	z-index: 2;
	animation: heroFloatBob 2.6s ease-in-out 0.35s infinite;
	will-change: transform;
}

.hero__card-top {
	position: absolute;
	top: -6%;
	left: 44%;
	width: 34%;
	height: auto;
	z-index: 3;
	animation: heroFloatBob 2.2s ease-in-out infinite;
	will-change: transform;
}

@keyframes heroFloatBob {
	0%,
	100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-8px);
	}
}

@media (prefers-reduced-motion: reduce) {
	.hero__card-top,
	.hero__mobile-left {
		animation: none;
	}
}

/* Animated gradient mesh */
.mesh {
    position: absolute;
    inset: 0;
    z-index: 2;
    overflow: hidden;
    background: transparent;
    pointer-events: none;
}

.mesh__orb {
    position: absolute;
    left: 50%;
    filter: blur(80px);
    will-change: transform, opacity;
    pointer-events: none;
}

.mesh__orb--1 {
    top: -27%;
    width: 140%;
    height: 55%;
    transform: translateX(-50%);
    border-radius: 50%;
    opacity: 0.8;
    background: radial-gradient(ellipse at center top, rgba(0, 194, 168, 0.48) 0%, rgba(0, 194, 168, 0.24) 40%, rgba(255, 255, 255, 0) 74%);
    animation: bannerShadowTop 22s ease-in-out infinite alternate;
}

.mesh__orb--2 {
	top: 12%;
	right: -4%;
	left: auto;
	width: min(58vw, 34rem);
	height: min(72vh, 38rem);
	transform: none;
	border-radius: 50%;
	opacity: 0.95;
	filter: blur(64px);
	background: radial-gradient(ellipse at center, rgba(0, 194, 168, 0.62) 0%, rgba(0, 194, 168, 0.32) 38%, rgba(0, 194, 168, 0.08) 58%, rgba(255, 255, 255, 0) 74%);
	animation: bannerShadowRight 24s ease-in-out infinite alternate;
}

.mesh__orb--3 {
    bottom: -40%;
    width: 140%;
    height: 55%;
    transform: translateX(-50%);
    border-radius: 50%;
    opacity: 0.82;
    background: radial-gradient(ellipse at center bottom, rgba(0, 194, 168, 0.4) 0%, rgba(0, 194, 168, 0.22) 42%, rgba(255, 255, 255, 0) 74%);
    animation: bannerShadowBottom 26s ease-in-out infinite alternate;
}

@keyframes bannerShadowTop {
    0% { transform: translateX(-50%) translateY(0) scale(1); opacity: 0.65; }
    100% { transform: translateX(-50%) translateY(5%) scale(1.04); opacity: 0.85; }
}

@keyframes bannerShadowBottom {
    0% { transform: translateX(-50%) translateY(0) scale(1); opacity: 0.7; }
    100% { transform: translateX(-50%) translateY(-5%) scale(1.04); opacity: 0.9; }
}

@keyframes bannerShadowRight {
    0% { transform: translateY(0) scale(1); opacity: 0.78; }
    100% { transform: translateY(5%) scale(1.06); opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
    .mesh__orb {
        animation: none;
    }
}

/* Overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    background: linear-gradient(
        90deg,
        rgba(248, 248, 248, 0.9) 0%,
        rgba(248, 248, 248, 0.78) 22%,
        rgba(248, 248, 248, 0.32) 42%,
        rgba(248, 248, 248, 0) 55%
    ),
    linear-gradient(
        180deg,
        rgba(0, 194, 168, 0.22) 0%,
        rgba(0, 194, 168, 0.08) 32%,
        rgba(0, 194, 168, 0.08) 68%,
        rgba(0, 194, 168, 0.24) 100%
    );
    pointer-events: none;
}

.sec--hero-vid .container {
    position: relative;
    z-index: 4;
}

/* Desktop video */
.desktop-video {
    position: relative;
}

.sec--hero__video {
    width: 100%;
    height: auto;
    border-radius: 20px;
    display: block;
}

/* Mobile background video hidden */
.hero-vid,
.desktop-video {
    display: none !important;
}

/* Mobile */
@media (max-width: 991.98px) {

    .sec--hero-vid:not(.sec--hero-home) {
        background: none;
    }

    .mesh__orb--2 {
        top: auto;
        bottom: 6%;
        right: -10%;
        width: 85vw;
        height: 48vh;
        opacity: 0.85;
    }

    .hero__graphic {
        max-width: 16rem;
    }

    .hero__mobile-left {
        left: 2%;
        top: 16%;
        width: 32%;
    }

    .hero__card-top {
        top: -4%;
        left: 42%;
        width: 36%;
    }

    .mesh {
        opacity: 1;
        mix-blend-mode: normal;
    }

    .sec--hero-vid {
        min-height: auto;
    }

    .hero-head,
    .sec--hero-vid p {
        text-align: center;
    }
}

/* ------------------------------------------------------------------------ Sections */

.section { 
	padding: var(--section-p) 0;
}

.sec--hero-vid.section {
	padding-top: calc(var(--header-height) + 1.25rem);
	padding-bottom: 1.75rem;
}

.sec--hero-home.section {
	padding-top: 2.5rem;
	padding-bottom: 3rem;
}

@media (min-width: 992px) {
	.sec--hero-vid.section {
		padding-top: calc(var(--header-height) + 1.5rem);
		padding-bottom: 2.25rem;
	}

	.sec--hero-home.section {
		/* Cancel body header padding so the photo reaches the top under the nav */
		margin-top: calc(var(--header-height) * -1);
		padding-top: calc(var(--header-height) + 3rem);
		padding-bottom: 4rem;
	}
}

.sec--hero-vid + .section {
	padding-top: var(--section-p-sm);
}

.sec--hero-home + .section {
	padding-top: var(--section-p);
}

.sec--dark {
	background-color: var(--black-dk);
	color: var(--white);
}

.sec--dark h2,
.sec--dark p {
	color: var(--white);
}

.sec--dark .highlight {
	color: var(--blue);
}

.sec--lt {
	background-color: var(--grey-lt);
}

.sec--cta {
	position: relative;
	overflow: hidden;
	background-image: none;
	color: var(--white);
}

.sec--cta__bg {
	position: absolute;
	left: 0;
	width: 100%;
	height: 200%;
	top: -50%;
	background: center / cover no-repeat;
	z-index: 0;
	pointer-events: none;
	will-change: transform;
}

.sec--cta__bg::after {
	content: "";
	position: absolute;
	inset: 0;
	background-color: var(--green-dark);
	opacity: 0.9;
	pointer-events: none;
}

.sec--cta--programmatic .sec--cta__bg {
	background-image: url(../images/programmatic-hero.jpg);
}

.sec--cta--google .sec--cta__bg {
	background-image: url(../images/google-ads-management.jpg);
}

.sec--cta--social .sec--cta__bg {
	background-image: url(../images/social-media-parallax.jpg);
}

.sec--cta--ai .sec--cta__bg {
	background-image: url(../images/ai-parallax.jpg);
}

.sec--cta > .container {
	position: relative;
	z-index: 2;
}

.sec--cta h2,
.sec--cta p {
	color: var(--white);
}

.sec--navy {
	position: relative;
	overflow: hidden;
	background: linear-gradient(
		155deg,
		color-mix(in srgb, var(--blue-navy) 50%, #000814) 0%,
		var(--blue-navy) 26%,
		color-mix(in srgb, var(--blue-navy) 88%, #01202e) 52%,
		var(--blue-navy) 74%,
		color-mix(in srgb, var(--blue-navy) 48%, #000a10) 100%
	);
	color: var(--white);
}

.sec--navy::before,
.sec--navy::after {
	content: '';
	position: absolute;
	border-radius: 50%;
	filter: blur(72px);
	pointer-events: none;
	z-index: 0;
}

.sec--navy::before {
	width: min(55vw, 36rem);
	height: min(55vw, 36rem);
	top: -18%;
	left: -8%;
	background: radial-gradient(
		circle,
		color-mix(in srgb, var(--blue-navy) 40%, rgba(0, 194, 168, 0.32)) 0%,
		color-mix(in srgb, var(--blue-navy) 25%, transparent) 48%,
		transparent 68%
	);
}

.sec--navy::after {
	width: min(50vw, 32rem);
	height: min(50vw, 32rem);
	bottom: -22%;
	right: -6%;
	background: radial-gradient(
		circle,
		color-mix(in srgb, var(--blue-navy) 70%, #000) 0%,
		color-mix(in srgb, var(--blue-navy) 20%, transparent) 55%,
		transparent 72%
	);
}

.sec--navy > .container {
	position: relative;
	z-index: 1;
}

.sec--navy h2,
.sec--navy p:not(.subheading) {
	color: var(--white);
}

.sec--navy .subheading {
	color: var(--green);
}

.sec--navy .cta {
	background-color: rgba(0, 194, 168, 0.1);
	border: 2px solid rgba(255, 255, 255, 0.1);
	color: var(--white);
	box-shadow: 0 6px 32px rgba(0, 0, 0, 0.14);
	transition: background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.sec--navy .cta:hover {
	color: var(--white);
	background-color: rgba(0, 194, 168, 0.18);
	border-color: rgba(0, 194, 168, 0.45);
	box-shadow: 0 10px 36px rgba(0, 0, 0, 0.2);
	transform: translateY(-0.25rem);
}

.sec--navy .cta__heading {
	color: var(--white);
	transition: color 0.25s ease;
}

.sec--navy .cta__text {
	color: rgba(255, 255, 255, 0.88);
	transition: color 0.25s ease;
}

.sec--navy .cta:hover .cta__heading {
	color: var(--green);
}

.sec--navy .cta:hover .cta__text {
	color: var(--white);
}

/* ------------------------------------------------------------------------ What We Do (copy + 2x2) */

.sec--offer .offer-grid {
	width: 100%;
	margin: 0;
}

.sec--offer .offer-copy .subheading {
	color: var(--green);
}

.sec--offer .offer-copy h2,
.sec--offer .offer-copy p {
	color: var(--white);
}

.sec--offer .offer-copy p {
	color: rgba(255, 255, 255, 0.88);
}

.sec--offer .offer-item {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	width: 100%;
	height: 100%;
	text-align: left;
	color: var(--white);
	background: linear-gradient(
		160deg,
		rgba(255, 255, 255, 0.08) 0%,
		rgba(0, 0, 0, 0.18) 100%
	);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 12px;
	box-shadow: none;
	padding: 1.15rem 1.2rem 1.25rem;
}

.sec--offer .offer-item .cta__icon {
	height: 2.75rem;
	width: 2.25rem;
	margin: 0 0 0.65rem;
	flex-shrink: 0;
}

.sec--offer .offer-item .cta__heading {
	color: var(--white);
	text-align: left;
	width: 100%;
	margin-bottom: 0.35rem;
	font-size: clamp(1.1rem, 1.5vw, 1.35rem);
}

.sec--offer .offer-item .cta__text {
	color: rgba(255, 255, 255, 0.82);
	text-align: left;
	width: 100%;
	flex-grow: 0;
	margin-bottom: 0;
	font-size: 0.95rem;
	line-height: 1.45;
}

.sec--offer .offer-item .cta__icon-svg path,
.sec--offer .offer-item .cta__icon-svg circle {
	fill: var(--green);
}

.sec--offer .offer-item .cta__icon-svg {
	transition: none;
}

@media (max-width: 991.98px) {
	.sec--offer .offer-copy {
		margin-bottom: 0.5rem;
	}
}

/* ------------------------------------------------------------------------ Service Hero (pill) */

.sec--pill {
	position: relative;
	overflow-x: clip;
	overflow-y: hidden;
	padding-top: 1.25rem;
	padding-bottom: 0;
	background-color: var(--off-white);
}

.sec--pill > .container {
	overflow-x: clip;
}

.sec--pill .row > [class*="col-"] {
	min-width: 0;
}

.sec--pill .btn {
	margin-bottom: 1.25rem;
}

@media (min-width: 992px) {
	.sec--pill .btn {
		margin-bottom: calc(var(--section-p) + 1rem);
	}
}

.hero__title {
	font-size: var(--font-xxlarge);
	font-weight: var(--fw-600);
	color: var(--blue-navy);
	line-height: 1.08;
	margin-bottom: 1rem;
}

.hero__title--typing {
	display: grid;
}

.hero__title--typing > .hero__typing-sizer,
.hero__title--typing > .hero__typing {
	grid-area: 1 / 1;
}

.hero__typing-sizer {
	visibility: hidden;
	user-select: none;
	pointer-events: none;
}

.hero__typing {
	display: inline;
}

.hero__typing.is-typing::after {
	content: "";
	display: inline-block;
	width: 2px;
	height: 0.92em;
	margin-left: 3px;
	vertical-align: -0.06em;
	background-color: currentColor;
	animation: heroTypingCursor 0.75s step-end infinite;
}

.hero__typing.is-done::after {
	content: none;
}

@keyframes heroTypingCursor {
	0%, 100% { opacity: 1; }
	50% { opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
	.hero__typing.is-typing::after {
		animation: none;
		opacity: 0;
	}
}

.hero__image {
	width: 100%;
	max-width: 100%;
	aspect-ratio: 3 / 2;
	border-radius: 1rem;
	background: url(../images/callout-image.jpg) center / cover no-repeat;
	box-shadow: 0 16px 48px rgba(2, 48, 71, 0.16);
}

.sec--pill .row > .col-lg-6 + .col-lg-6 {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	min-width: 0;
	overflow-x: clip;
}

.sec--pill .hero__image {
	flex: 0 0 auto;
	width: 100%;
	max-width: 100%;
	min-width: 0;
	aspect-ratio: unset;
	min-height: 14rem;
	height: 14rem;
	margin-top: 0;
	margin-bottom: -5rem;
	box-shadow: 0 16px 40px -10px rgba(2, 48, 71, 0.16);
}

.hero__image--programmatic {
	background-image: url(../images/hero-programmatic.jpg);
}

.hero__image--google {
	background-image: url(../images/google-ads-hero.jpg);
}

.hero__image--social {
	background-image: url(../images/social-media-hero.jpg);
}

.hero__image--ai {
	background-image: url(../images/professional-ai-hero.jpg);
}

.hero__image--about {
	background-image: url(../images/about-hero.jpg);
}

.hero__image--home {
	background-image: url(../images/banner-home.jpg);
}

.hero__image--review {
	background-image: url(../images/consultation.jpg);
}

@media (min-width: 992px) {
	.sec--pill .row {
		align-items: flex-start;
	}
}

@media (min-width: 768px) {
	.sec--pill .hero__image {
		min-height: 28rem;
		height: 28rem;
		margin-bottom: -12rem;
	}
}

@media (min-width: 992px) {
	.sec--pill {
		padding-bottom: 0;
	}

	.sec--pill .hero__image {
		min-height: 46rem;
		height: 46rem;
		margin-bottom: -18rem;
		border-radius: 1.25rem;
	}
}

@media (min-width: 1200px) {
	.sec--pill .hero__image {
		min-height: 52rem;
		height: 52rem;
		margin-bottom: -20rem;
		border-radius: 1.5rem;
	}
}





.sec--logos {
	background-color: var(--white);
	overflow-x: clip;
}

.sec--logos .container {
	margin-bottom: 2.5rem;
}

.sec--logos h2 {
	margin-bottom: 1rem;
}

.sec--logos p:last-child {
	margin-bottom: 0;
}

.sec--specialties {
	background-color: var(--white);
	overflow-x: clip;
}

.sec--specialties .row > [class*="col-"] {
	min-width: 0;
	overflow: visible;
}

.sec--specialties--navy {
	background-color: var(--blue-navy);
}

.sec--specialties--navy .specialties__title {
	color: var(--white);
}

.sec--specialties--navy .specialties__title .highlight {
	color: var(--green);
}

.specialties__title {
	font-family: var(--header-family);
	font-size: var(--font-large);
	font-weight: var(--fw-600);
	color: var(--blue-navy);
	margin-bottom: 2rem;
}

.specialties__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	width: 100%;
	max-width: 100%;
	min-width: 0;
	height: 100%;
	text-align: center;
}

.sec--specialties--navy .specialties__heading {
	color: var(--white);
}

.sec--specialties--navy .specialties__text {
	color: rgba(255, 255, 255, 0.88);
}

.sec--specialties--divided .specialties__grid {
	--bs-gutter-x: 0;
}

.sec--specialties--divided .specialties__grid > [class*="col-"] {
	padding-top: 1.5rem;
	padding-bottom: 1.5rem;
}

.sec--specialties--divided .specialties__grid > [class*="col-"]:not(:first-child) {
	border-top: 1px solid rgba(255, 255, 255, 0.25);
}

@media (min-width: 768px) {
	.sec--specialties--divided .specialties__grid > [class*="col-"]:not(:first-child) {
		border-top: none;
		border-left: 1px solid rgba(255, 255, 255, 0.25);
		padding-left: 1.5rem;
	}

	.sec--specialties--divided .specialties__grid > [class*="col-"]:not(:last-child) {
		padding-right: 1.5rem;
	}
}

@media (min-width: 992px) {
	.sec--specialties--divided .specialties__grid > [class*="col-"] {
		padding-top: 0;
		padding-bottom: 0;
	}

	.sec--specialties--divided .specialties__grid > [class*="col-"]:not(:first-child) {
		padding-left: 2rem;
	}

	.sec--specialties--divided .specialties__grid > [class*="col-"]:not(:last-child) {
		padding-right: 2rem;
	}
}

.specialties__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 3.25rem;
	height: 3.25rem;
	margin: 0 auto 1rem;
	flex-shrink: 0;
}

.specialties__icon img {
	display: block;
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
}

.specialties__heading {
	font-family: var(--header-family);
	font-size: var(--font-regular);
	font-weight: var(--fw-600);
	color: var(--blue-navy);
	margin-bottom: 0.75rem;
}

.specialties__text {
	font-size: var(--font-small);
	line-height: var(--lh-15);
	color: var(--grey-dark);
}

@media (min-width: 992px) {
	.specialties__title {
		margin-bottom: 2.5rem;
	}
}

@media (min-width: 992px) {
	.sec--pill {
		padding-top: calc(var(--section-p) + 1rem);
		padding-bottom: 0;
	}

	.sec--pill .row > .col-lg-6 + .col-lg-6 {
		display: flex;
		flex-direction: column;
	}

	.hero__image {
		flex: 1 1 auto;
		width: 100%;
		min-height: 12rem;
		aspect-ratio: unset;
		border-radius: 1.25rem;
	}
}

.hero__subtitle {
	font-family: var(--header-family);
	font-size: var(--font-large);
	font-weight: var(--fw-600);
	color: var(--green-dark-lg);
	line-height: var(--lh-13);
	margin-top: 0;
	margin-bottom: 1.5rem;
}

.hero__lead {
	font-size: var(--font-regular);
	color: var(--grey-dark);
	max-width: 42rem;
	margin-bottom: 0;
}

.sec--hero-vid .hero__title,
.sec--hero-vid .hero__subtitle,
.sec--hero-vid .hero__lead {
	text-align: center;
}

.sec--hero-vid .hero__lead {
	margin-left: auto;
	margin-right: auto;
}

.sec--hero-home .hero__title,
.sec--hero-home .hero__subtitle,
.sec--hero-home .hero__lead {
	text-align: left;
}

.sec--hero-home .hero__lead {
	margin-left: 0;
	margin-right: 0;
}

@media (min-width: 992px) {
	.sec--hero-vid .hero__title,
	.sec--hero-vid .hero__subtitle,
	.sec--hero-vid .hero__lead {
		text-align: left;
	}

	.sec--hero-vid .hero__lead {
		margin-left: 0;
		margin-right: 0;
	}
}

@media (min-width: 768px) {
	.hero__image {
		border-radius: 1.25rem;
	}
}

@media (min-width: 1200px) {
	.hero__image {
		border-radius: 1.5rem;
	}
}

/* Fixed hero — scroll first, then pin for scroll-over (service pages) */
.hero-pin {
	position: relative;
	overflow-x: clip;
	max-width: 100%;
}

.hero-pin__spacer {
	display: none;
	pointer-events: none;
}

@media (min-width: 992px) {
	.hero-pin.is-pinned .hero-pin__spacer {
		display: block;
		height: var(--hero-pin-height, 0);
	}

	.hero-pin.is-pinned .sec--pill {
		position: fixed;
		top: var(--hero-pin-top, 0);
		left: 0;
		right: 0;
		z-index: 1;
		overflow-x: clip;
		max-width: 100%;
		background-color: var(--off-white);
	}

	.hero-pin.is-pinned ~ .section {
		position: relative;
		z-index: 2;
	}

	body:has(.hero-pin) .footer {
		position: relative;
		z-index: 3;
	}
}

@media (prefers-reduced-motion: reduce) {
	.hero-pin.is-pinned .hero-pin__spacer {
		display: none;
	}

	.hero-pin.is-pinned .sec--pill {
		position: relative;
		top: auto;
	}
}

/* ------------------------------------------------------------------------ Strategy Review */

.sec--review {
	background-color: var(--white);
	overflow-x: clip;
}

.sec--review .row > [class*="col-"] {
	min-width: 0;
}

.sec--review h3 {
	font-family: var(--header-family);
	font-size: var(--font-medium);
	font-weight: var(--fw-600);
	color: var(--blue-navy);
}

.sec--review .btn {
	width: auto;
}

.review__media {
	min-height: 16rem;
	border-radius: 1.5rem;
	overflow: hidden;
	background: url(../images/consultation.jpg) center / cover no-repeat;
	box-shadow: 0 10px 32px rgba(2, 48, 71, 0.1);
}

.review__media--ai {
	background-image: url(../images/ai-visibility-review.jpg);
}

.review__media--about {
	background-image: url(../images/consultation.jpg);
}

@media (max-width: 991.98px) {
	.sec--review .row > [class*="col-"]:first-child {
		order: 2;
	}

	.sec--review .row > [class*="col-"]:last-child {
		order: 1;
	}

	.review__media {
		width: 100%;
		min-height: 14rem;
	}
}

@media (min-width: 992px) {
	.sec--review .row > [class*="col-"]:first-child {
		display: flex;
		flex-direction: column;
	}

	.review__media {
		flex: 1 1 auto;
		min-height: 100%;
		border-radius: 2rem;
	}
}

/* ------------------------------------------------------------------------ Campaign Management */

.sec--split {
	background-color: var(--white);
	overflow-x: clip;
}

.sec--split .row > [class*="col-"] {
	min-width: 0;
}

@media (max-width: 991.98px) {
	.sec--split ul {
		display: inline-block;
		text-align: left;
	}
}

.split__image {
	max-width: 100%;
	border-radius: 1.5rem;
	overflow: hidden;
	box-shadow: 0 10px 32px rgba(2, 48, 71, 0.1);
}

.split__image img {
	display: block;
	width: 100%;
	max-width: 100%;
	height: auto !important;
	aspect-ratio: 4 / 5;
	object-fit: cover;
}

@media (max-width: 991.98px) {
	.split__image {
		width: 100%;
		max-width: 100%;
	}

	.split__image img {
		aspect-ratio: 16 / 10;
	}
}

@media (min-width: 992px) {
	.split__image {
		border-radius: 2rem;
	}
}

/* ------------------------------------------------------------------------ About / Team */

.sec--team {
	background-color: var(--white);
	overflow-x: clip;
}

.team__intro {
	margin-bottom: 2.5rem;
}

.team__intro p:last-child {
	margin-bottom: 0;
}

.team__grid > [class*="col-"] {
	display: flex;
}

.team__card {
	display: flex;
	flex-direction: column;
	width: 100%;
	margin: 0;
}

.team__media {
	position: relative;
	width: 100%;
	border-radius: 1.25rem;
	overflow: hidden;
	box-shadow: 0 10px 32px rgba(2, 48, 71, 0.1);
}

.team__photo {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 4 / 5;
	object-fit: cover;
}

.team__caption {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1rem 1.25rem;
	background: linear-gradient(180deg, rgba(2, 48, 71, 0) 0%, rgba(2, 48, 71, 0.72) 45%, rgba(2, 48, 71, 0.94) 100%);
	text-align: left;
}

.team__caption-text {
	min-width: 0;
}

.team__name {
	font-family: var(--header-family);
	font-size: var(--font-regular);
	font-weight: var(--fw-600);
	color: var(--white);
	margin-bottom: 0.2rem;
}

.team__title {
	font-size: var(--font-small);
	line-height: var(--lh-15);
	color: rgba(255, 255, 255, 0.88);
	margin-bottom: 0;
}

.team__linkedin {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 50%;
	background-color: var(--white);
	transition: transform 0.2s ease, background-color 0.2s ease;
}

.team__linkedin:hover {
	background-color: var(--grey-lt);
	transform: scale(1.05);
}

.team__linkedin img {
	display: block;
	width: 1.15rem;
	height: 1.15rem;
}

@media (min-width: 992px) {
	.team__intro {
		margin-bottom: 3rem;
	}

	.team__media {
		border-radius: 1.5rem;
	}

	.team__caption {
		padding: 1.25rem 1.5rem;
	}
}

/* ------------------------------------------------------------------------ Dark Gradient */

.sec--stat {
	position: relative;
	overflow: hidden;
	background: linear-gradient(155deg, #001018 0%, var(--blue-navy) 35%, #0a5f74 58%, #012435 100%);
	color: var(--white);
}

.sec--stat--navy {
	background: linear-gradient(
		155deg,
		color-mix(in srgb, var(--blue-navy) 55%, #000814) 0%,
		var(--blue-navy) 38%,
		color-mix(in srgb, var(--blue-navy) 90%, #011018) 72%,
		color-mix(in srgb, var(--blue-navy) 70%, #000) 100%
	);
}

.sec--stat--navy::before {
	background: radial-gradient(circle, rgba(0, 194, 168, 0.14) 0%, rgba(0, 194, 168, 0) 68%);
}

.sec--stat::before {
	content: '';
	position: absolute;
	width: min(60vw, 40rem);
	height: min(60vw, 40rem);
	top: -20%;
	right: -10%;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(0, 194, 168, 0.24) 0%, rgba(0, 194, 168, 0) 68%);
	filter: blur(48px);
	pointer-events: none;
	z-index: 0;
}

.sec--stat > .container {
	position: relative;
	z-index: 1;
}

.sec--stat h2,
.sec--stat h3,
.sec--stat p {
	color: var(--white);
}

.sec--stat > .container > .row:first-child > .col-lg-8 > p:first-of-type {
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 0;
}

.stat__tagline {
	margin-top: 1.5rem;
	margin-bottom: 0;
	font-size: var(--font-regular);
	font-style: italic;
	color: rgba(255, 255, 255, 0.85);
}

.sec--stat--navy .stat__tagline {
	font-size: var(--font-medium);
	font-weight: var(--fw-600);
	margin-top: 1rem;
}

.sec--stat--navy .stat__blocks {
	margin-top: 1.25rem;
}

.stat__blocks {
	margin-top: 2rem;
}

.stat__block {
	display: flex;
	flex-direction: column;
	width: 100%;
	height: 100%;
	padding: 1.75rem 1.5rem;
	border-radius: 1.5rem;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(0, 194, 168, 0.2);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.stat__block-icon {
	display: block;
	width: 2.5rem;
	height: 2.5rem;
	object-fit: contain;
	margin-bottom: 1rem;
}

.sec--stat .stat__block-num {
	color: var(--green);
	font-size: var(--font-xlarge);
}

.stat__block-num {
	font-family: var(--header-family);
	font-weight: var(--fw-700);
	color: var(--green);
	line-height: 1;
	margin-top: 0;
	margin-bottom: 0.875rem;
}

.stat__block-text {
	flex-grow: 1;
	margin-bottom: 1.5rem;
	font-size: var(--font-small);
	line-height: var(--lh-15);
	color: rgba(255, 255, 255, 0.92);
}

.stat__block .btn {
	align-self: flex-start;
}

.sec--stat--divided .stat__tagline {
	margin-top: 1.5rem;
	margin-bottom: 0;
	font-style: italic;
	font-weight: var(--fw-600);
	color: rgba(255, 255, 255, 0.9);
}

.sec--stat--divided .stat__blocks {
	--bs-gutter-x: 0;
	margin-top: 1.5rem;
	align-items: flex-start;
}

.sec--stat--divided .stat__blocks > [class*="col-"] {
	align-items: flex-start;
}

.sec--stat--divided .stat__block {
	align-items: center;
	text-align: center;
	height: auto;
	padding: 1.5rem 1.25rem;
	background: none;
	border: none;
	border-radius: 0;
	box-shadow: none;
}

.sec--stat--divided .stat__block-num {
	margin-bottom: 0.75rem;
}

.sec--stat--divided .stat__block-text {
	flex-grow: 0;
	margin-bottom: 1.25rem;
}

.sec--stat--divided .stat__block .btn {
	align-self: center;
	margin-top: 0;
}

.sec--stat--divided .stat__blocks > [class*="col-"] {
	padding-top: 1.5rem;
	padding-bottom: 1.5rem;
}

.sec--stat--divided .stat__blocks > [class*="col-"]:not(:first-child) {
	border-top: 1px solid rgba(0, 194, 168, 0.35);
}

@media (min-width: 768px) {
	.sec--stat--divided .stat__blocks > .col-md-6:nth-child(1),
	.sec--stat--divided .stat__blocks > .col-md-6:nth-child(2) {
		border-top: none;
	}

	.sec--stat--divided .stat__blocks > .col-md-6:nth-child(1) {
		padding-right: 1.5rem;
	}

	.sec--stat--divided .stat__blocks > .col-md-6:nth-child(2) {
		border-left: 1px solid rgba(0, 194, 168, 0.35);
		padding-left: 1.5rem;
	}

	.sec--stat--divided .stat__blocks > .col-md-6:nth-child(3) {
		border-top: 1px solid rgba(0, 194, 168, 0.35);
		padding-top: 1.5rem;
	}
}

@media (min-width: 992px) {
	.sec--stat--divided .stat__tagline {
		margin-top: 2rem;
	}

	.sec--stat--divided .stat__blocks {
		margin-top: 2rem;
	}

	.sec--stat--divided .stat__blocks > [class*="col-"] {
		padding-top: 0;
		padding-bottom: 0;
		border-top: none;
	}

	.sec--stat--divided .stat__blocks > [class*="col-"]:not(:first-child) {
		border-left: 1px solid rgba(0, 194, 168, 0.35);
		padding-left: 2rem;
	}

	.sec--stat--divided .stat__blocks > [class*="col-"]:not(:last-child) {
		border-right: none;
		padding-right: 2rem;
	}

	.sec--stat--divided .stat__blocks > .col-md-6:nth-child(1),
	.sec--stat--divided .stat__blocks > .col-md-6:nth-child(2),
	.sec--stat--divided .stat__blocks > .col-md-6:nth-child(3) {
		border-top: none;
		border-right: none;
		padding-top: 0;
	}
}

.sec--stat--navy .stat__block--row {
	flex-direction: row;
	align-items: flex-start;
	gap: 1rem;
}

.sec--stat--navy .stat__block-icon {
	flex-shrink: 0;
	width: 3rem;
	height: 3rem;
	margin-bottom: 0;
	object-fit: contain;
}

.sec--stat--navy .stat__block-body {
	flex: 1;
	min-width: 0;
}

.sec--stat--navy .stat__block-num {
	margin-bottom: 0.5rem;
	font-size: var(--font-large);
}

.sec--stat--navy .stat__block-text {
	margin-bottom: 0;
}

@media (min-width: 992px) {
	.stat__tagline {
		margin-top: 2rem;
	}

	.sec--stat--navy .stat__tagline {
		margin-top: 1.25rem;
	}

	.stat__blocks {
		margin-top: 2.5rem;
	}

	.sec--stat--navy .stat__blocks {
		margin-top: 1.5rem;
	}
}

/* ------------------------------------------------------------------------ Team */

.sec--plug {
	background-color: var(--white);
	overflow-x: clip;
}

.sec--plug--lt {
	background-color: var(--off-white);
}

.sec--platforms {
	overflow: visible;
}

.sec--platforms .social-platforms,
.sec--platforms .social-platforms__grid {
	overflow: visible;
}

.sec--platforms .plug__items h2 {
	margin-bottom: 1rem;
}

.sec--platforms .social-platforms__icon {
	background-color: var(--white);
}

/* ------------------------------------------------------------------------ AI Platforms */

.sec--ai-platforms {
	background-color: var(--grey-lt);
	overflow-x: clip;
}

.sec--ai-platforms .plug__items h2 {
	margin-bottom: 1rem;
}

.ai-platforms__grid {
	margin-top: 2.5rem;
}

.ai-platforms__grid > [class*="col-"] {
	display: flex;
}

.ai-platforms__item {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	width: 100%;
	height: 100%;
	text-align: left;
	padding: 1.5rem;
	border-radius: 1.25rem;
	background-color: var(--white);
	border: 1px solid rgba(2, 48, 71, 0.08);
	box-shadow: 0 10px 32px rgba(2, 48, 71, 0.08);
}

.ai-platforms__logo {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	width: 3rem;
	height: 3rem;
	margin-bottom: 1rem;
	flex-shrink: 0;
}

.ai-platforms__logo img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.ai-platforms__title {
	font-family: var(--header-family);
	font-size: var(--font-medium);
	font-weight: var(--fw-600);
	color: var(--blue-navy);
	margin-bottom: 0.75rem;
}

.ai-platforms__text {
	margin-bottom: 0;
	font-size: var(--font-small);
	line-height: var(--lh-15);
	color: var(--grey-dark);
}

@media (min-width: 992px) {
	.ai-platforms__grid {
		margin-top: 3rem;
	}

	.ai-platforms__item {
		padding: 1.75rem 1.75rem 2rem;
		border-radius: 1.5rem;
	}

	.ai-platforms__logo {
		width: 3.25rem;
		height: 3.25rem;
		margin-bottom: 1.25rem;
	}
}

.plug__columns > [class*="col-"] {
	display: flex;
	flex-direction: column;
	min-width: 0;
}

.plug__intro-col {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	height: 100%;
}

@media (max-width: 991.98px) {
	.sec--plug .plug__intro-col {
		align-items: center;
		text-align: center;
	}

	.sec--plug .plug__intro-col .btn {
		align-self: center;
	}
}

.intro-icon {
	width: 3.5rem;
	height: 3.5rem;
	margin-bottom: 1rem;
	animation: heroFloatBob 2.4s ease-in-out infinite;
	will-change: transform;
}

.intro-icon--lg {
	width: 4.5rem;
	height: 4.5rem;
}

@media (min-width: 992px) {
	.intro-icon--lg {
		width: 6.5rem;
		height: 6.5rem;
	}
}

.intro-icon img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

@media (prefers-reduced-motion: reduce) {
	.intro-icon {
		animation: none;
	}
}

.plug__intro-col .lead {
	margin-bottom: 0;
}

.plug__intro-col .btn {
	align-self: flex-start;
	width: auto;
	margin-top: 1.5rem;
}

.plug__panel {
	display: flex;
	flex-direction: column;
	border-radius: 16px;
	overflow: hidden;
	background-color: var(--white);
	box-shadow: 0 12px 40px rgba(2, 48, 71, 0.14);
}

.plug__panel--solo {
	flex: 0 0 auto;
	min-height: auto;
	width: 100%;
}

@media (min-width: 992px) {
	.plug__columns {
		align-items: center;
	}

	.plug__columns > .col-lg-6:last-child {
		justify-content: center;
	}
}

.plug__panel-media {
	min-height: 12rem;
	background: url(../images/callout-image.jpg) center / cover no-repeat;
}

.plug__panel-body {
	padding: 2rem 1.75rem;
}

.plug__cards-title {
	font-family: var(--header-family);
	font-size: var(--font-large);
	font-weight: var(--fw-600);
	color: var(--blue-navy);
	line-height: var(--lh-13);
	margin-top: 0;
	margin-bottom: 1rem;
}

.plug__cards-list {
	gap: 0.75rem;
}

.plug__cards-item {
	padding: 0;
	background: none;
	border: none;
	font-size: var(--font-small);
	line-height: var(--lh-16);
	color: var(--grey-dark);
}

.plug__checklist {
	gap: 0.75rem;
}

.plug__checklist-item {
	padding: 0;
	background: none;
	font-size: var(--font-small);
	line-height: var(--lh-16);
	color: var(--grey-dark);
}

.plug__check-icon {
	flex-shrink: 0;
	display: block;
	width: 1.375rem;
	height: 1.375rem;
	margin-top: 0.1em;
	background: url(../images/checkmark-icon.svg) center / contain no-repeat;
}

.plug__visual {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
	align-items: center;
	gap: 0;
}

.plug__img-wrap {
	border-radius: 1.5rem;
	overflow: hidden;
	box-shadow: 0 10px 32px rgba(2, 48, 71, 0.1);
}

.plug__img-wrap img {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 5;
	object-fit: cover;
}

.plug__card {
	position: relative;
	z-index: 1;
	align-self: center;
	margin-left: -2.5rem;
	padding: 2rem 1.75rem;
	border-radius: 1.5rem;
	background-color: var(--white);
	border: 1px solid rgba(0, 194, 168, 0.12);
	box-shadow: 0 12px 40px rgba(2, 48, 71, 0.12);
}

.plug__card h3 {
	margin-bottom: 1rem;
}

.plug__list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.plug__list li {
	padding: 0 0 0.75rem;
	background: none;
	font-size: var(--font-small);
	line-height: var(--lh-15);
	color: var(--grey-dark);
}

.plug__list li:last-child {
	padding-bottom: 0;
}

.plug__rule {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 2.5rem 0;
}

.plug__rule::before {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	top: 50%;
	height: 1px;
	background-color: rgba(0, 194, 168, 0.18);
}

.plug__rule-icon {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 3.5rem;
	height: 3.5rem;
	padding: 0.625rem;
	border-radius: 50%;
	background-color: var(--white);
	border: 1px solid rgba(0, 194, 168, 0.18);
}

.plug__rule-icon img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.plug__items h2 {
	margin-bottom: 1rem;
}

.plug__intro {
	max-width: 42rem;
	margin: 0 auto 0;
	font-size: var(--font-regular);
	line-height: var(--lh-15);
	color: var(--grey-dark);
}

.social-platforms {
	--social-platform-icon-size: 4.5rem;
	position: relative;
	margin-top: 2.5rem;
	overflow: visible;
}

.social-platforms__grid {
	position: relative;
	overflow: visible;
}

.social-platforms__grid > [class*="col-"] {
	display: flex;
	position: relative;
	z-index: 1;
}

.social-platforms__item {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	text-align: center;
}

.social-platforms__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: var(--social-platform-icon-size);
	height: var(--social-platform-icon-size);
	margin-bottom: 1.25rem;
	border: 2px solid rgba(0, 194, 168, 0.45);
	border-radius: 50%;
	background-color: var(--off-white);
	position: relative;
	z-index: 1;
}

.social-platforms__icon img {
	display: block;
	width: 2rem;
	height: 2rem;
	object-fit: contain;
}

.social-platforms__title {
	font-family: var(--header-family);
	font-size: var(--font-medium);
	font-weight: var(--fw-600);
	color: var(--blue-navy);
	margin-bottom: 0.75rem;
}

.social-platforms__text {
	margin-bottom: 0;
	font-size: var(--font-small);
	line-height: var(--lh-15);
	color: var(--grey-dark);
}

@media (max-width: 991.98px) {
	.social-platforms {
		--social-platform-icon-size: 4rem;
	}

	.social-platforms__icon img {
		width: 1.75rem;
		height: 1.75rem;
	}
}

@media (min-width: 992px) {
	.social-platforms {
		--social-platform-icon-size: 5rem;
		margin-top: 3rem;
	}

	.social-platforms__grid > .col-lg-3:not(:last-child)::after {
		content: '';
		position: absolute;
		top: calc(var(--social-platform-icon-size) / 2);
		left: 50%;
		width: 100%;
		height: 2px;
		background-color: rgba(0, 194, 168, 0.45);
		transform: translateY(-50%);
		z-index: 0;
		pointer-events: none;
	}

	.social-platforms__icon {
		margin-bottom: 1.5rem;
	}

	.social-platforms__icon img {
		width: 2.25rem;
		height: 2.25rem;
	}
}

.plat {
	position: relative;
	width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	margin-top: 2.5rem;
	padding: 1rem 0 0.5rem;
	overflow-x: clip;
	overflow-y: visible;
	--plat-fade: var(--off-white);
}

.plat::before,
.plat::after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	width: min(10vw, 6rem);
	z-index: 2;
	pointer-events: none;
}

.plat::before {
	left: 0;
	background: linear-gradient(90deg, var(--plat-fade) 0%, transparent 100%);
}

.plat::after {
	right: 0;
	background: linear-gradient(270deg, var(--plat-fade) 0%, transparent 100%);
}

.sec--plug--lt .plat {
	--plat-fade: var(--off-white);
}

.sec--campaigns {
	overflow-x: clip;
}

.sec--campaigns .plug__items {
	margin-bottom: 0;
}

.sec--campaigns .plug__items h2 {
	margin-bottom: 0.75rem;
}

.sec--campaigns .plug__items p {
	max-width: 42rem;
	margin: 0 auto;
	font-size: var(--font-small);
	line-height: var(--lh-15);
	color: var(--grey-dark);
}

.plat--campaigns {
	--plat-fade: var(--grey-lt);
	margin-top: 1rem;
	padding-top: 0;
}

.plat--campaigns .plat__swiper {
	padding-top: 0;
}

.plat--campaigns .plat__card--light {
	background: var(--white);
	color: var(--blue-navy);
	border-radius: 1.5rem;
	box-shadow: 0 12px 40px rgba(2, 48, 71, 0.14);
	min-height: auto;
	width: 100%;
}

.plat--campaigns .plat__card--light::before {
	display: none;
}

.plat--campaigns .plat__card-inner {
	min-height: auto;
	padding: 1.5rem;
	width: 100%;
}

.plat--campaigns .plat__content {
	width: 100%;
	max-width: none;
	text-align: left;
}

.plat--campaigns .plat__title {
	color: var(--blue-navy);
	font-size: var(--font-large);
	margin-bottom: 0.75rem;
}

.plat--campaigns .plat__content p {
	color: var(--grey-dark);
	margin-bottom: 1rem;
}

.plat--campaigns .plat__link:hover {
	color: var(--blue-navy);
}

.plat--campaigns .plat__link:hover::after {
	filter: none;
}

.plat--campaigns .plat__btn,
.plat--campaigns .plat__btn.swiper-button-next,
.plat--campaigns .plat__btn.swiper-button-prev {
	background-color: var(--green);
	background-image: url(../images/arrow-white.svg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: 1rem 1rem;
	border-color: transparent;
}

.plat--campaigns .plat__btn:hover,
.plat--campaigns .plat__btn.swiper-button-next:hover,
.plat--campaigns .plat__btn.swiper-button-prev:hover {
	background-color: var(--green-dark);
}

@media (max-width: 991.98px) {
	.plat--campaigns .plat__swiper {
		padding-bottom: 4.25rem;
	}

	.plat.plat--campaigns .plat__btn,
	.plat.plat--campaigns .plat__btn.swiper-button-next,
	.plat.plat--campaigns .plat__btn.swiper-button-prev {
		top: auto;
		bottom: 0;
		margin: 0;
	}

	.plat.plat--campaigns .plat__btn--prev,
	.plat.plat--campaigns .plat__btn.swiper-button-prev {
		left: calc(50% - 3.5rem);
		right: auto;
		transform: rotate(180deg);
	}

	.plat.plat--campaigns .plat__btn--next,
	.plat.plat--campaigns .plat__btn.swiper-button-next {
		left: calc(50% + 0.5rem);
		right: auto;
		transform: none;
	}

	.plat.plat--campaigns .plat__btn--prev:hover,
	.plat.plat--campaigns .plat__btn.swiper-button-prev:hover {
		transform: rotate(180deg) translateX(-0.2rem);
	}

	.plat.plat--campaigns .plat__btn--next:hover,
	.plat.plat--campaigns .plat__btn.swiper-button-next:hover {
		transform: translateX(0.2rem);
	}
}

@media (min-width: 768px) {
	.plat--campaigns .plat__card-inner {
		padding: 1.75rem;
	}
}

@media (min-width: 992px) {
	.plat--campaigns {
		margin-top: 2em;
	}

	.plat--campaigns .plat__card-inner {
		padding: 2rem;
	}

	.plat--campaigns .plat__card--light {
		border-radius: 1rem;
	}
}

.plat--inset {
	width: 100%;
	margin-left: 0;
	margin-right: 0;
	margin-top: 0;
	padding: 0.75rem 0 1rem;
}

.plat--inset::before,
.plat--inset::after {
	width: min(12%, 3rem);
}

.plat--inset .plat__card--review {
	min-height: 12rem;
}

.plat--inset .plat__card--review .plat__card-inner {
	min-height: 12rem;
	padding: 1.5rem 1.25rem;
}

.plat--inset .plat__card--review .plat__quote {
	font-size: var(--font-small);
}

.plat--inset .plat__card--review .review__icon {
	width: 2rem;
	height: 2rem;
}

.plat--inset .plat__btn--prev {
	left: 0;
}

.plat--inset .plat__btn--next {
	right: 0;
}

.plat__swiper {
	position: relative;
	z-index: 1;
	padding: 0.75rem 0 1rem;
	overflow: visible;
}

.plat__swiper .swiper-wrapper {
	align-items: center;
}

.plat__swiper .swiper-slide {
	height: auto;
}

.plat__card {
	position: relative;
	min-height: 22rem;
	height: 100%;
	border-radius: 1.5rem;
	overflow: hidden;
	background: url(../images/callout-image.jpg) center / cover no-repeat;
	color: var(--white);
	isolation: isolate;
	transform-origin: center center;
	transition: opacity 0.45s ease, transform 0.45s ease;
	will-change: opacity, transform;
}

.plat__card::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(
		135deg,
		rgba(2, 48, 71, 0.94) 0%,
		rgba(3, 65, 86, 0.9) 45%,
		rgba(10, 95, 116, 0.86) 100%
	);
	z-index: 0;
}

.plat__card--instagram::before {
	background: linear-gradient(135deg, rgba(2, 48, 71, 0.92) 0%, rgba(0, 194, 168, 0.55) 100%);
}

.plat__card--tiktok::before {
	background: linear-gradient(135deg, rgba(2, 48, 71, 0.94) 0%, rgba(251, 133, 0, 0.35) 100%);
}

.plat__card--pinterest::before {
	background: linear-gradient(135deg, rgba(2, 48, 71, 0.94) 0%, rgba(230, 0, 76, 0.28) 100%);
}

.plat__card--linkedin::before {
	background: linear-gradient(135deg, rgba(2, 48, 71, 0.94) 0%, rgba(10, 95, 116, 0.75) 100%);
}

.plat__card--review {
	min-height: 16rem;
}

.plat__card--review .plat__card-inner {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	gap: 1rem;
	min-height: 16rem;
	padding: 2rem 1.75rem;
}

.plat__card--review .plat__content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 1rem;
}

.plat__card--review .review__icon {
	width: 2.5rem;
	height: 2.5rem;
}

.plat__card--review .plat__quote {
	margin: 0;
	font-size: var(--font-regular);
	line-height: var(--lh-15);
	font-style: normal;
	font-weight: var(--fw-400);
	color: var(--white);
}

.plat__card-inner {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 22rem;
	padding: 2rem 1.75rem;
}

.plat__content {
	text-align: left;
}

.plat__title {
	font-family: var(--header-family);
	font-size: clamp(1.75rem, 1.5rem + 1vw, 2.5rem);
	font-weight: var(--fw-600);
	color: var(--white);
	line-height: 1.1;
	margin-bottom: 1rem;
}

.plat__content p {
	margin-bottom: 1.25rem;
	font-size: var(--font-small);
	line-height: var(--lh-15);
	color: rgba(255, 255, 255, 0.9);
}

.plat__link {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-family: var(--header-family);
	font-size: var(--font-small);
	font-weight: var(--fw-600);
	color: var(--orange);
	text-decoration: none;
	transition: var(--standard-transition);
}

.plat__link::after {
	content: "";
	width: 1rem;
	height: 1rem;
	background: url(../images/arrow-orange.svg) no-repeat center / contain;
	transition: var(--standard-transition);
}

.plat__link:hover {
	color: var(--white);
}

.plat__link:hover::after {
	transform: translateX(0.25rem);
	filter: brightness(0) invert(1);
}

.plat__highlight {
	background: rgba(0, 194, 168, 0.35);
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 1.25rem;
	padding: 1.5rem;
	backdrop-filter: blur(8px);
	text-align: left;
}

.plat__quote {
	font-size: var(--font-small);
	line-height: var(--lh-15);
	color: var(--white);
	margin-bottom: 1.25rem;
}

.plat__meta {
	display: flex;
	align-items: center;
	gap: 0.875rem;
}

.plat__avatar {
	flex-shrink: 0;
	display: grid;
	place-items: center;
	width: 3rem;
	height: 3rem;
	border-radius: 0.75rem;
	background: rgba(255, 255, 255, 0.12);
}

.plat__avatar img {
	display: block;
	width: 1.75rem;
	height: 1.75rem;
	object-fit: contain;
}

.plat__meta-text {
	display: flex;
	flex-direction: column;
	gap: 0.125rem;
	text-align: left;
}

.plat__meta-text strong {
	font-family: var(--header-family);
	font-size: var(--font-small);
	font-weight: var(--fw-700);
	color: var(--white);
}

.plat__meta-text span {
	font-size: var(--font-x-small);
	color: rgba(255, 255, 255, 0.78);
}

.plat__btn {
	position: absolute;
	top: 50%;
	z-index: 4;
	width: 3rem;
	height: 3rem;
	margin: 0;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 50%;
	background: rgba(2, 48, 71, 0.92) url(../images/arrow-orange.svg) no-repeat center;
	background-size: 1rem 1rem;
	cursor: pointer;
	transition: transform 0.2s ease, background-color 0.2s ease;
}

.plat__btn::after {
	display: none;
}

.plat__btn--prev {
	left: clamp(0.75rem, 4vw, 2.5rem);
	transform: translateY(-50%) rotate(180deg);
}

.plat__btn--next {
	right: clamp(0.75rem, 4vw, 2.5rem);
	transform: translateY(-50%);
}

.plat__btn--prev:hover {
	transform: translateY(-50%) translateX(-0.25rem) rotate(180deg);
	background-color: var(--blue-navy);
}

.plat__btn--next:hover {
	transform: translateY(-50%) translateX(0.25rem);
	background-color: var(--blue-navy);
}

@media (min-width: 768px) {
	.plat__card-inner {
		padding: 2.25rem 2.5rem;
		min-height: 24rem;
	}

	.plat__card {
		min-height: 24rem;
		border-radius: 1.75rem;
	}
}

@media (min-width: 992px) {
	.plat {
		margin-top: 3rem;
		padding: 1.25rem 0 0.5rem;
	}

	.plat__card-inner {
		padding: 2rem 1.75rem;
		min-height: auto;
	}

	.plat__card {
		min-height: 22rem;
		border-radius: 2rem;
	}

	.plat__highlight {
		padding: 1.5rem;
	}
}

@media (min-width: 1400px) {
	.plat__card-inner {
		padding: 2.25rem 2rem;
		min-height: 24rem;
	}

	.plat__card {
		min-height: 24rem;
	}

	.plat__highlight {
		padding: 1.75rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	.plat__card {
		transition: opacity 0.45s ease;
		transform: none !important;
	}
}

.plug__grid {
	display: grid;
	grid-template-columns: 1fr;
}

.plug__grid--2x2 {
	grid-template-columns: 1fr;
}

.plug__grid--2x2 .plug__item:not(:last-child) {
	border-bottom: 1px solid rgba(0, 194, 168, 0.15);
}

@media (min-width: 576px) {
	.plug__grid--2x2 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.plug__grid--2x2 .plug__item:not(:last-child) {
		border-bottom: none;
	}

	.plug__grid--2x2 .plug__item:nth-child(odd) {
		border-right: 1px solid rgba(0, 194, 168, 0.15);
	}

	.plug__grid--2x2 .plug__item:nth-child(-n+2) {
		border-bottom: 1px solid rgba(0, 194, 168, 0.15);
	}
}

.plug__grid--5 {
	grid-template-columns: 1fr;
}

@media (min-width: 576px) {
	.plug__grid--5 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.plug__grid .plug__item:nth-child(odd) {
		border-right: 1px solid rgba(0, 194, 168, 0.15);
	}

	.plug__grid .plug__item:nth-child(even) {
		border-right: none;
	}
}

@media (min-width: 992px) {
	.plug__grid--5 {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.plug__grid .plug__item:nth-child(odd),
	.plug__grid .plug__item:nth-child(even) {
		border-right: 1px solid rgba(0, 194, 168, 0.15);
	}

	.plug__grid .plug__item:nth-child(3n) {
		border-right: none;
	}
}

@media (min-width: 1200px) {
	.plug__grid--5 {
		grid-template-columns: repeat(5, minmax(0, 1fr));
	}

	.plug__grid .plug__item:nth-child(3n) {
		border-right: 1px solid rgba(0, 194, 168, 0.15);
	}

	.plug__grid .plug__item:last-child {
		border-right: none;
	}
}

.plug__item {
	padding: 1.5rem 1.25rem;
	text-align: center;
}

.plug__item-title {
	font-family: var(--header-family);
	font-size: var(--font-medium);
	font-weight: var(--fw-600);
	color: var(--blue-navy);
	margin-bottom: 0.75rem;
}

.plug__item p {
	margin-bottom: 0;
	font-size: var(--font-small);
	line-height: var(--lh-15);
	color: var(--grey-dark);
}

@media (min-width: 576px) {
	.plug__item:nth-child(odd) {
		border-right: 1px solid rgba(0, 194, 168, 0.15);
	}
}

@media (min-width: 992px) {
	.plug__panel:not(.plug__panel--solo) {
		display: grid;
		grid-template-columns: 38fr 62fr;
		grid-template-rows: 1fr;
		align-items: stretch;
	}

	.plug__panel:not(.plug__panel--solo) .plug__panel-media {
		min-height: 100%;
		align-self: stretch;
	}

	.plug__panel-body {
		padding: 2.5rem 2rem;
	}

	.plug__visual {
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	}

	.plug__img-wrap,
	.plug__card {
		border-radius: 2rem;
	}

	.plug__card {
		margin-left: -3.5rem;
		padding: 2.25rem 2rem;
	}

	.plug__img-wrap img {
		aspect-ratio: 4 / 5.5;
	}

	.plug__rule {
		margin: 3.5rem 0;
	}

	.plug__grid--2x2 .plug__item {
		border-right: none;
	}

	.plug__grid--2x2 .plug__item:nth-child(odd) {
		border-right: 1px solid rgba(0, 194, 168, 0.15);
	}

	.plug__item {
		border-right: 1px solid rgba(0, 194, 168, 0.15);
	}

	.plug__item:last-child {
		border-right: none;
	}
}

@media (max-width: 991.98px) {
	.plug__visual {
		grid-template-columns: 1fr;
		max-width: 24rem;
		margin-left: auto;
		margin-right: auto;
	}

	.plug__card {
		margin-left: 0;
		margin-top: -2rem;
		width: calc(100% - 2rem);
		justify-self: center;
	}
}

/* ------------------------------------------------------------------------ Banner */

.sec--hero-vid {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center 0;
    position: relative;
    min-height: auto;
    overflow-x: clip;
    overflow-y: visible;
}

/* Keep after .sec--hero-vid so full-window height is not reset to auto */
.sec--hero-vid.sec--hero-home {
	min-height: 100vh;
	min-height: 100dvh;
	height: 100vh;
	height: 100dvh;
	overflow: hidden;
	background-position: center right;
}

@media (max-width: 991.98px) {
	.sec--hero-vid.sec--hero-home {
		min-height: 28rem;
		height: auto;
		background-position: center center !important;
	}
}

.hero-vid {
    position: absolute;
    top: -10%;
    left: 0;
    width: 100%;
    height: 120%;
    object-fit: cover;
    z-index: 0;
    will-change: transform;
}

.hero-content {
    position: relative;
    z-index: 4;
    will-change: transform, opacity;
}

.sec--hero-vid .hero-content > .row {
	--bs-gutter-y: 1.25rem;
}

.sec--hero-vid p {
	margin-bottom: 1.25rem;
}

@media (min-width: 992px) {
	.sec--hero-vid .hero-content > .row {
		--bs-gutter-y: 1.5rem;
	}

	.sec--hero-vid p {
		margin-bottom: 1.5rem;
	}
}

@media (min-width: 992px) {
	.hero__graphic {
		max-width: 100%;
	}

	.hero__mobile-left {
		left: 0;
		top: 12%;
		width: 32%;
	}

	.hero__card-top {
		top: -3%;
		left: 55%;
		width: 32%;
	}
}

@media (min-width: 1400px) {
	.hero__graphic {
		max-width: 36rem;
	}
}


/* ------------------------------------------------------------------------ Banner With Background Video */

.sec--hero--video video {
    display: none;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.sec--hero--video {
    overflow: hidden;
    background: url(../images/banner-home-mobile.jpg) no-repeat top center;
    background-size: cover;
    position: relative;
}


@media (min-width: 992px) {	
	.sec--hero--video {
		overflow: hidden;
        background: url(../images/banner-home.jpg) no-repeat top center;
        background-size: cover;
        position: relative;
	}

	.sec--hero--video video {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

/* ------------------------------------------------------------------------ Pill Block */

.pill--grey {
	background-color: var(--off-white);
	border-radius: 6.25em;
	padding: 2em 4em;
}


/* ------------------------------------------------------------------------ Callouts (Calls to Action) */

.cta {
	display: flex;
	flex-direction: column;
	font-weight: var(--fw-400);
	position: relative;
	color: inherit;
	background: #fff;
    height: 100%;
    width: 100%;
    padding: 1.25em;
    border-radius: 10px;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.cta:hover {
	color: inherit;
}

.cta:hover .cta__icon img,
.cta:hover .cta__icon-svg {
	transform: scale(1.05);
}


.cta__heading {
	margin: 1rem 0 .5rem 0;
	font-weight: var(--fw-700);
	text-align: center;
	transition: var(--standard-transition);
}

.cta:hover .cta__heading {
	color: var(--grey-md);
}

.cta__text {
	text-align: center;
	flex-grow: 1;
	margin-bottom: 0;
}


/* ------------------------------------------------------------------------ Stacked Callouts */

.cta--stacked:before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.25);
	z-index: 1;
	transition: var(--standard-transition);
}

.cta--stacked:hover:before {
	background: rgba(0,0,0,0.5);
}

.cta--stacked .cta__heading {
	position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    color: var(--white);
    text-align: center;
    width: 100%;
    margin: 0;
    padding: 0 1.5rem;
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
	z-index: 2;
}

.cta--stacked:hover .cta__heading {
	color: var(--white);
	transform: translate(-50%,-60%);
}


/* ------------------------------------------------------------------------ Callouts with Icons */

.cta__icon {
	height: 4rem;
	width: 3rem;
	margin: 0 auto;
	transition: var(--standard-transition);
}

.cta__icon.ratio {
	overflow: visible;
}

.cta:hover .cta__icon {
	transform: translateY(-.5rem);
}

.cta:hover .cta__icon img,
.cta:hover .cta__icon-svg {
	transform: scale(1);
}


/* ------------------------------------------------------------------------ Cards */

.card {
	border-radius: 0;
	border: 0;
}

.card--border {
	border:  2px solid var(--grey-lt);
}

.card-body {
	padding: var(--card-p);
}

.card a {
	text-decoration: none;
	color: inherit;
	transition: var(--standard-transition);
}

/* ------------------------------------------------------------------------ Email Trail Icon */

.email-trail-icon {
	display: block;
	width: 10rem;
	max-width: 100%;
	margin-bottom: 1rem;
}

.trail__svg {
	display: block;
	width: 100%;
	height: auto;
	overflow: visible;
}

.trail__trail-bg {
	fill: var(--white);
}

.trail__trail-cap,
.trail__dash {
	fill: none;
	stroke: var(--green);
	stroke-miterlimit: 10;
	opacity: 0;
}

.trail__dash {
	stroke-dashoffset: 0;
}

.trail__dash--1 {
	stroke-dasharray: 0 0 4.89 200;
}

.trail__dash--2 {
	stroke-dasharray: 0 9.78 4.89 200;
}

.trail__dash--3 {
	stroke-dasharray: 0 19.56 4.89 200;
}

.trail__dash--4 {
	stroke-dasharray: 0 29.34 4.89 200;
}

.trail__dash--5 {
	stroke-dasharray: 0 39.12 4.89 200;
}

.trail__dash--6 {
	stroke-dasharray: 0 48.9 4.89 200;
}

.trail__dash--7 {
	stroke-dasharray: 0 58.68 4.89 200;
}

.trail__email {
	fill: var(--orange);
	transform-box: fill-box;
	transform-origin: center;
	opacity: 0;
}

.contact-intro.visible {
	--email-trail-start: 1.2s;
}

.contact-intro.visible .trail__trail-cap--start {
	animation: emailTrailFadeIn 0.16s ease var(--email-trail-start) forwards;
}

.contact-intro.visible .trail__dash--1 {
	animation: emailTrailFadeIn 0.16s ease calc(var(--email-trail-start) + 0.08s) forwards;
}

.contact-intro.visible .trail__dash--2 {
	animation: emailTrailFadeIn 0.16s ease calc(var(--email-trail-start) + 0.16s) forwards;
}

.contact-intro.visible .trail__dash--3 {
	animation: emailTrailFadeIn 0.16s ease calc(var(--email-trail-start) + 0.24s) forwards;
}

.contact-intro.visible .trail__dash--4 {
	animation: emailTrailFadeIn 0.16s ease calc(var(--email-trail-start) + 0.32s) forwards;
}

.contact-intro.visible .trail__dash--5 {
	animation: emailTrailFadeIn 0.16s ease calc(var(--email-trail-start) + 0.4s) forwards;
}

.contact-intro.visible .trail__dash--6 {
	animation: emailTrailFadeIn 0.16s ease calc(var(--email-trail-start) + 0.48s) forwards;
}

.contact-intro.visible .trail__dash--7 {
	animation: emailTrailFadeIn 0.16s ease calc(var(--email-trail-start) + 0.56s) forwards;
}

.contact-intro.visible .trail__trail-cap--end {
	animation: emailTrailFadeIn 0.16s ease calc(var(--email-trail-start) + 0.64s) forwards;
}

.contact-intro.visible .trail__email {
	animation: emailTrailEmailIn 0.35s ease calc(var(--email-trail-start) + 0.72s) forwards, emailTrailBob 2.2s ease-in-out calc(var(--email-trail-start) + 1.07s) infinite;
}

@keyframes emailTrailFadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@keyframes emailTrailEmailIn {
	from {
		opacity: 0;
		transform: translateX(-14px);
	}

	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes emailTrailBob {
	0%,
	100% {
		transform: translateX(0) translateY(0);
	}

	50% {
		transform: translateX(0) translateY(-5px);
	}
}

@media (prefers-reduced-motion: reduce) {
	.contact-intro.visible .trail__trail-cap,
	.contact-intro.visible .trail__dash,
	.contact-intro.visible .trail__email {
		animation: none;
		opacity: 1;
	}
}

/* ------------------------------------------------------------------------ Get Started Card */

.contact-head {
	max-width: 62rem;
	margin: 0 auto 3rem;
}

.contact-card {
	display: flex;
	flex-direction: column;
	border-radius: 16px;
	overflow: hidden;
	background-color: var(--white);
	box-shadow: 0 12px 40px rgba(2, 48, 71, 0.14);
}

.contact-card__media {
	position: relative;
	min-height: 0;
}

.contact-card__image {
	display: none;
}

.contact-card__overlay {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	height: 100%;
	min-height: inherit;
	padding: 2.5rem 2rem;
	color: var(--grey-dark);
	background: linear-gradient(
		155deg,
		color-mix(in srgb, var(--green) 4%, var(--white)) 0%,
		color-mix(in srgb, var(--green) 10%, var(--white)) 45%,
		color-mix(in srgb, var(--green) 18%, var(--white)) 100%
	);
	overflow: hidden;
	border-bottom: 1px solid rgba(2, 48, 71, 0.12);
}

.contact-card__overlay h2 {
	color: var(--blue-navy);
	margin-bottom: 1rem;
}

.contact-card__overlay p {
	margin-bottom: 1.25rem;
	color: var(--grey-dark);
}

.contact-card__overlay p:last-of-type {
	margin-bottom: 2rem;
}

.contact-card__overlay .trail__trail-bg {
	fill: transparent;
}

.contact-card__content {
	display: flex;
	flex-direction: column;
	flex: 1;
}

.contact-card__contact {
	list-style: none;
	padding: 0;
	margin: auto 0 0;
}

.contact-card__contact li {
	padding: 0 0 0.85rem 1.75rem;
	color: var(--blue-navy);
	background: url(../images/arrow-grey.svg) no-repeat left 0.35em;
	background-size: 0.7rem 0.7rem;
}

.contact-card__contact a {
	color: var(--blue-navy);
	text-decoration: none;
}

.contact-card__contact a:hover {
	color: var(--green-dark);
}

.contact-card__form {
	padding: 2rem;
}

.contact-card__form-fields .form-label {
	font-size: var(--font-x-small);
	color: var(--grey-dark);
	margin-bottom: 0.35rem;
}

.contact-card__form-fields .form-control {
	border: 1px solid var(--grey-lt);
	border-radius: 10px;
	padding: 0.625rem 0.75rem;
	background-color: var(--white);
	box-shadow: none;
}

.contact-card__form-fields .form-control::placeholder {
	font-size: var(--font-x-small);
	color: var(--grey-md);
	opacity: 1;
}

.contact-card__form-fields .form-control:focus {
	border-color: var(--green);
	box-shadow: none;
}

.contact-card__form-fields textarea.form-control {
	margin-top: 0;
}

@media (min-width: 992px) {
	.contact-card {
		flex-direction: row;
		align-items: stretch;
	}

	.contact-card__media {
		flex: 0 0 38%;
		min-height: 34rem;
	}

	.contact-card__overlay {
		padding: 3rem 2.5rem;
		border-bottom: none;
		border-right: 1px solid rgba(2, 48, 71, 0.12);
	}

	.contact-card__form {
		flex: 1;
		padding: 3rem;
	}
}

.strategy-form {
	background-color: var(--white);
	border-radius: 16px;
	padding: 2rem 1.5rem;
	box-shadow: 0 12px 40px rgba(2, 48, 71, 0.1);
}

.strategy-path {
	margin: 1.75rem 0 2.5rem;
}

.strategy-path img {
	display: block;
	width: min(100%, 22rem);
	height: auto;
}

@media (min-width: 768px) {
	.strategy-form {
		padding: 2.5rem 2.5rem 2.75rem;
	}
}

@media (min-width: 992px) {
	.strategy-path {
		margin-bottom: 3.5rem;
	}
}

.strategy-interest {
	margin: 0;
	padding: 0;
	border: 0;
	min-width: 0;
}

.strategy-interest legend.form-label {
	float: none;
	width: auto;
	padding: 0;
	margin-bottom: 0.75rem;
	font-size: var(--font-x-small);
	color: var(--grey-dark);
}

.strategy-interest__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.65rem 1rem;
}

.strategy-interest .form-check-label {
	font-size: var(--font-x-small);
	color: var(--grey-dark);
}

.contact-card__form-fields .form-check-label {
	font-size: var(--font-x-small);
	color: var(--grey-dark);
}

.strategy-interest.is-invalid .invalid-feedback {
	display: block;
}

.sec--thanks {
	min-height: min(70vh, 40rem);
	display: flex;
	align-items: center;
}

.sec--thanks .intro-icon {
	margin-bottom: 1.5rem;
}

/* ------------------------------------------------------------------------ Services Landing */

.services-landing__title {
	margin-bottom: 1rem;
}

.services-landing__lead {
	color: var(--grey-dark);
}

.services-landing__grid {
	padding-top: 2.15rem;
	--bs-gutter-y: 2.75rem;
}

@media (min-width: 768px) {
	.services-landing__grid {
		--bs-gutter-y: 3.25rem;
	}
}

.services-landing__grid > [class*="col-"] {
	min-width: 0;
}

.services-landing__card {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	width: 100%;
	height: 100%;
	padding: 2.5rem 1.5rem 1.85rem;
	border-radius: 1.25rem;
	background-color: var(--white);
	border: 1px solid rgba(2, 48, 71, 0.08);
	box-shadow: 0 10px 32px rgba(2, 48, 71, 0.08);
	text-decoration: none;
	color: inherit;
	overflow: visible;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.services-landing__card:hover,
.services-landing__card:focus-visible {
	border-color: rgba(0, 194, 168, 0.28);
	box-shadow: 0 14px 36px rgba(2, 48, 71, 0.12);
	transform: translateY(-2px);
}

.services-landing__icon.intro-icon {
	width: 3.25rem;
	height: 3.25rem;
	margin: -3.35rem 0 1rem;
	flex-shrink: 0;
	z-index: 1;
}

.services-landing__icon img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
}

.services-landing__grid > [class*="col-"]:nth-child(1) .services-landing__icon {
	animation-duration: 2.6s;
	animation-delay: 0s;
}

.services-landing__grid > [class*="col-"]:nth-child(2) .services-landing__icon {
	animation-duration: 2.2s;
	animation-delay: -0.7s;
}

.services-landing__grid > [class*="col-"]:nth-child(3) .services-landing__icon {
	animation-duration: 2.8s;
	animation-delay: -1.4s;
}

.services-landing__grid > [class*="col-"]:nth-child(4) .services-landing__icon {
	animation-duration: 2.35s;
	animation-delay: -0.35s;
}

.services-landing__name {
	font-family: var(--header-family);
	font-size: var(--font-medium);
	font-weight: var(--fw-600);
	color: var(--blue-navy);
	line-height: 1.25;
	margin-bottom: 0.75rem;
}

.services-landing__card:hover .services-landing__name,
.services-landing__card:focus-visible .services-landing__name {
	color: var(--green-dark);
}

.services-landing__text {
	margin-bottom: 1.25rem;
	font-size: var(--font-small);
	line-height: var(--lh-15);
	color: var(--grey-dark);
	flex-grow: 1;
}

.services-landing__cta {
	font-size: var(--font-x-small);
	font-weight: var(--fw-600);
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--green-dark);
}

@media (min-width: 992px) {
	.services-landing__grid {
		padding-top: 2.75rem;
		--bs-gutter-y: 3.75rem;
	}

	.services-landing__card {
		padding: 3rem 1.85rem 2.1rem;
		border-radius: 1.5rem;
	}

	.services-landing__icon.intro-icon {
		width: 4.75rem;
		height: 4.75rem;
		margin: -4.5rem 0 1.15rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	.services-landing__icon.intro-icon {
		animation: none;
	}
}

/* ------------------------------------------------------------------------ Careers */

.careers-openings__title {
	margin-bottom: 1rem;
}

.careers-openings__lead {
	margin-bottom: 2rem;
}

.careers-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 1rem;
}

.careers-list__entry {
	padding: 0;
	background: none;
}

.careers-list__item {
	display: grid;
	gap: 0.4rem;
	padding: 1.5rem 1.5rem 1.6rem;
	border-radius: 1.25rem;
	background-color: var(--white);
	border: 1px solid rgba(2, 48, 71, 0.08);
	box-shadow: 0 10px 32px rgba(2, 48, 71, 0.08);
	text-decoration: none;
	color: inherit;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.careers-list__item:hover,
.careers-list__item:focus-visible {
	border-color: rgba(0, 194, 168, 0.28);
	box-shadow: 0 14px 36px rgba(2, 48, 71, 0.12);
	transform: translateY(-2px);
}

.careers-list__title {
	font-family: var(--header-family);
	font-size: var(--font-large);
	font-weight: var(--fw-600);
	color: var(--blue-navy);
	line-height: 1.2;
}

.careers-list__item:hover .careers-list__title,
.careers-list__item:focus-visible .careers-list__title {
	color: var(--green-dark);
}

.careers-list__meta {
	font-size: var(--font-small);
	color: var(--grey-dark);
}

.careers-list__cta {
	font-size: var(--font-x-small);
	font-weight: var(--fw-600);
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--green-dark);
	margin-top: 0.45rem;
}

@media (min-width: 992px) {
	.careers-list__item {
		padding: 1.75rem 1.85rem 1.85rem;
		border-radius: 1.5rem;
	}
}

.sec--job {
	padding-bottom: 2.5rem;
}

.job__back {
	margin-bottom: 1.25rem;
}

.job__back a {
	font-size: var(--font-small);
	font-weight: var(--fw-600);
	text-decoration: none;
	color: var(--green-dark);
}

.job__back a:hover,
.job__back a:focus-visible {
	color: var(--blue-navy);
}

.job__meta {
	list-style: none;
	padding: 0;
	margin: 1.5rem 0 0;
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem 1.5rem;
	font-size: var(--font-small);
	color: var(--grey-dark);
}

.job__body h3 {
	margin-top: 2rem;
	margin-bottom: 0.85rem;
	font-family: var(--header-family);
	font-size: var(--font-medium);
	font-weight: var(--fw-600);
	color: var(--blue-navy);
}

.job__body ul {
	margin-bottom: 0;
}

@media (max-width: 575.98px) {
	.strategy-interest__grid {
		grid-template-columns: 1fr;
	}
}

/* ------------------------------------------------------------------------ Soft Fade-in */

.js .anim-fade:not(.visible) {
	opacity: 0;
	transform: translateY(24px);
}

.anim-fade.visible {
	opacity: 1;
	transform: translateY(0);
	transition: opacity 0.85s ease, transform 0.85s ease;
}

.js .anim-stagger:not(.visible) > * {
	opacity: 0;
	transform: translateY(24px);
}

.anim-stagger.visible > * {
	opacity: 1;
	transform: translateY(0);
	transition: opacity 0.85s ease, transform 0.85s ease;
}

.anim-stagger.visible > *:nth-child(1) { transition-delay: 0ms; }
.anim-stagger.visible > *:nth-child(2) { transition-delay: 250ms; }
.anim-stagger.visible > *:nth-child(3) { transition-delay: 500ms; }
.anim-stagger.visible > *:nth-child(4) { transition-delay: 750ms; }
.anim-stagger.visible > *:nth-child(5) { transition-delay: 1000ms; }
.anim-stagger.visible > *:nth-child(6) { transition-delay: 1250ms; }

.anim-stagger--team.visible > *:nth-child(1) { transition-delay: 0ms; }
.anim-stagger--team.visible > *:nth-child(2) { transition-delay: 220ms; }
.anim-stagger--team.visible > *:nth-child(3) { transition-delay: 440ms; }
.anim-stagger--team.visible > *:nth-child(4) { transition-delay: 660ms; }
.anim-stagger--team.visible > *:nth-child(5) { transition-delay: 880ms; }
.anim-stagger--team.visible > *:nth-child(6) { transition-delay: 1100ms; }

.anim-stagger--sync.visible > * {
	transition-delay: 0ms;
}

.js .anim-stagger--icons:not(.visible) > * {
	opacity: 1;
	transform: none;
}

.js .anim-stagger--icons:not(.visible) > * .social-platforms__icon {
	opacity: 0;
	transform: translateY(16px) scale(0.92);
}

.anim-stagger--icons.visible > * .social-platforms__icon {
	opacity: 1;
	transform: translateY(0) scale(1);
	transition: opacity 0.65s ease, transform 0.65s ease;
}

.anim-stagger--icons.visible > *:nth-child(1) .social-platforms__icon { transition-delay: 0ms; }
.anim-stagger--icons.visible > *:nth-child(2) .social-platforms__icon { transition-delay: 180ms; }
.anim-stagger--icons.visible > *:nth-child(3) .social-platforms__icon { transition-delay: 360ms; }
.anim-stagger--icons.visible > *:nth-child(4) .social-platforms__icon { transition-delay: 540ms; }

@media (prefers-reduced-motion: reduce) {
	.js .anim-fade:not(.visible),
	.anim-fade.visible,
	.js .anim-stagger:not(.visible) > *,
	.anim-stagger.visible > *,
	.anim-stagger--team.visible > *,
	.anim-stagger--sync.visible > *,
	.js .anim-stagger--icons:not(.visible) > * .social-platforms__icon,
	.anim-stagger--icons.visible > * .social-platforms__icon {
		opacity: 1;
		transform: none;
		transition: none;
	}
}

/* ------------------------------------------------------------------------ Fade Cards */

.js .cta-group .row:not(.anim-on) .anim-card {
	opacity: 0;
	transform: translateY(40px);
}

.cta-group .row.anim-on .anim-card {
	opacity: 1;
	transform: translateY(0);
	transition: opacity 0.8s ease, transform 0.8s ease;
}

.cta-group .row.anim-on .anim-card:nth-child(1) { transition-delay: 0ms; }
.cta-group .row.anim-on .anim-card:nth-child(2) { transition-delay: 350ms; }
.cta-group .row.anim-on .anim-card:nth-child(3) { transition-delay: 700ms; }
.cta-group .row.anim-on .anim-card:nth-child(4) { transition-delay: 1050ms; }

.cta-group .row.anim-on.anim-on--now .anim-card {
	transition-delay: 0ms !important;
}

.cta-group .row.anim-on .anim-card:nth-child(1) .cta__icon img,
.cta-group .row.anim-on .anim-card:nth-child(1) .cta__icon-svg {
    animation-delay: 0.8s;
}

.cta-group .row.anim-on .anim-card:nth-child(2) .cta__icon img,
.cta-group .row.anim-on .anim-card:nth-child(2) .cta__icon-svg {
    animation-delay: 1.15s;
}

.cta-group .row.anim-on .anim-card:nth-child(3) .cta__icon img,
.cta-group .row.anim-on .anim-card:nth-child(3) .cta__icon-svg {
    animation-delay: 1.5s;
}

.cta-group .row.anim-on .anim-card:nth-child(4) .cta__icon img,
.cta-group .row.anim-on .anim-card:nth-child(4) .cta__icon-svg {
    animation-delay: 1.85s;
}

@keyframes iconPulse {
    0%, 90%, 100% {
        transform: scale(1);
    }
    93% {
        transform: scale(1.12);
    }
    96% {
        transform: scale(0.96);
    }
}

.cta-group .row.anim-on .anim-card .cta__icon img,
.cta-group .row.anim-on .anim-card .cta__icon-svg {
    animation: iconPulse 5s infinite;
    transform-origin: center;
    transition: none;
}
/* ------------------------------------------------------------------------ Infinite Logo Carousel (https://codepen.io/studiojvla/pen/qVbQqW) */

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-19rem * 10));
  }
}

.logo-slider {
  --logos-per-row: 2;
  overflow: hidden;
  position: relative;
  width: 100%;
  container-type: inline-size; /* sizes slides from .logo-slider width */
}

.logo-slider:hover .slide-track {
 	animation-play-state: paused;
 }

.logo-slider::before, .logo-slider::after {
	background: linear-gradient(to right, #FFFFFF 0%, rgba(236, 236, 237, 0) 100%);
	content: "";
	width: 11rem;
	height: 100%;
	position: absolute;
	z-index: 2;
}

.logo-slider::after {
	right: 0;
	top: 0;
	transform: rotateZ(180deg);
}

.logo-slider::before {
	left: 0;
	top: 0;
}

.logo-slider .slide-track {
   /* animation: scroll 40s linear infinite;
	display: flex;
	width: calc(19rem * 20);*/
	  display: flex;
  width: max-content; /* let JS + clones set real width */
}

.logo-slider .slide-track:first-child {
	margin-bottom: 1.25rem;
}

.logo-slider .slide-track--reverse {
    animation: scroll 40s linear infinite reverse;
}

.logo-slider .slide {
	flex: 0 0 calc(100cqw / var(--logos-per-row));
  width: calc(100cqw / var(--logos-per-row));
  height: auto;
  box-sizing: border-box;
}

.card--logo {
	aspect-ratio: 1 / .61;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}

.card--logo a {
	width: 100%;
    display: flex;
    justify-content: center;
}

.card--logo img {
	max-width: 90%;
	filter: grayscale(100%);
}

.logo-slider .slide .card--logo {
	margin: 0 1rem;
}

@media (min-width: 600px) {
  .logo-slider {
    --logos-per-row: 3;
  }
}
/* tablets/desktop: 4 logos */
@media (min-width: 768px) {
  .logo-slider {
    --logos-per-row: 4;
  }
}
/* large screens: 7 logos */
@media (min-width: 1200px) {
  .logo-slider {
    --logos-per-row: 7;
  }
}

@media screen and (prefers-reduced-motion: reduce) {
    /* Disable animations and transitions for the element */
    .logo-slider .slide-track,
    .logo-slider .slide-track--reverse {
        animation: none !important;
        transition: none;
      }
}

/* ------------------------------------------------------------------------ List Group */

.list-group {
    border-radius: 0;
    border: 0;
}

.list-group-item {
    padding: 0 0 0 1.5rem;
    color: var(--black);
    background-color: transparent;
    border: 0;
    border-bottom: 1px solid var(--grey-lt);
	background: url(../images/arrow-grey.svg) no-repeat left center;
	background-size: .75rem;
}

.list-group-item:last-child {
    padding-bottom: 0;
}


.list-group-item--no-links {
	padding: .75rem .25rem .75rem 1.5rem;
	font-weight: var(--fw-500);
}

.list-group-item a {
    color: inherit;
    font-weight: var(--fw-500);
    transition: var(--standard-transition);
    padding: .75rem 0;
    display:block;
    text-decoration: none;
}

.list-group__link:hover, .list-group-item a:hover {
	transform: translateX(1rem);
    text-decoration: underline;
}

/* ------------------------------------------------------------------------ Accordions */

.accordion-button {
	border: 1px solid transparent;
}

.accordion-button:not(.collapsed) {
    color: var(--black);
    background-color: var(--grey-lt);
}

.accordion-button:not(.collapsed)::after { 
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:focus {
    outline: solid thin rgba(0, 0, 0, 0.5);
    box-shadow: none;
    border: 1px solid transparent;
}

.accordion-flush .accordion-item:last-child {
	border-bottom: 2px solid var(--grey-lt);
}

.accordion-flush .accordion-button {
	padding: 1rem .5rem;
}

.accordion-flush .accordion-body {
    padding: var(--card-p);
}


/* ------------------------------------------------------------------------ Tables */

/*Override table inline styles*/

.table[style] {
	width:100% !important;
	height:auto !important;
}

.table td[style],
.table th[style] {
	height:auto !important;
}


.table {
	margin-bottom: 0;
}

.table td, .table th {
    border-bottom: 1px solid var(--grey-lt);
    padding: 1rem .5rem;
    vertical-align: middle;
}

.table th {
    font-weight: var(--fw-500);
}

.table thead th {
    font-weight: var(--fw-700);
    text-transform: uppercase;
}


/* ------------------------------------------------------------------------ Pagination */

.pagination {
	flex-wrap: wrap;
	align-items: center;
}

.page-item {
	background-image: none;
	padding: 0;
	margin: 0 0.5rem 0 0;
}

.page-link {
	width: 3rem;
    height: 3rem;
    border-radius: 50% !important;
    background: var(--grey-dk) url(../images/arrow-white.svg) no-repeat center;
    background-size: .875rem;
    transition: var(--standard-transition);
}

#prevPage {
	transform: rotate(180deg);
	margin-right:.25rem;
	background-position: 1.125rem center;
}

#nextPage {
	margin-left:.25rem;
	background-position: 1.125rem center;
}

.page-link:hover {
    z-index: 2;
    background-color: transparent;
    background-color: var(--grey-dk);
}

#prevPage:hover {
	transform: translateX(-.5rem) rotate(180deg);
}

#nextPage:hover {
	transform: translateX(.5rem);
}

.page-item .form-select {
    padding: 0.25rem 2.25rem 0.25rem 0.75rem;
    height: 2.75rem;
    width: 5rem;
}

	
/* ------------------------------------------------------------------------ Forms */
	
.required-input {
	color: var(--error) !important;
	font-size: 0.875rem;
	font-weight: var(--fw-700);
}

legend {
	font-size: 1rem;
}

.form-control, .form-select {
	border-radius: 10px;
	border-color: var(--grey-lt);
	padding: .625rem .75rem;
	color: var(--black);
	font-size: 1rem;
}

.form-control::placeholder,
.form-select::placeholder {
	font-size: var(--font-x-small);
	color: var(--grey-md);
	opacity: 1;
}

.form-control-lg.form-control--file {
	font-size: 1rem;
}

.form-control:focus, .form-select:focus, .form-check-input:focus {
    color: var(--black);
    border-color: var(--grey-lt);
    outline: 0;
    box-shadow: 0 0 0 0.125rem rgb(0 0 0 / 25%);
}


.form-check-input {
    border: 1px solid var(--grey-lt);
}

.form-check-input[type=checkbox] {
    border-radius: 0;
}

.form-check-input:checked {
    background-color: var(--grey-dk);
    border-color: var(--grey-dk);
}

.checkbox-link {
    padding-left: 1.5rem;
}


.form-switch .form-check-input {
    border-radius: 2em;
}

.form-switch .form-check-input:focus {
	background-image: url(data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e);
}

.form-text {
    margin-top: .5rem;
    font-size: .875rem;
    color: var(--grey-md);
}


@media (min-width: 1400px) {
	legend,
	.form-control, 
	.form-select,
	.form-control-lg.form-control--file,
	.form-check-label {
		font-size: 1.125rem;
	}

	.form-check-input {
	    margin-top: .313rem;
	}

	.form-text {
	    margin-top: .5rem;
	    font-size: 1rem;
	    color: var(--grey-md);
	}	
}


/* ------------------------------------------------------------------------ Swiper */

.swiper-pagination-bullet {
	background: var(--white);
	width: 1rem;
	height: 1rem;
	opacity: 1;
}

.swiper-pagination-bullet-active {
	background: var(--grey-md);
}

.swiper-button-next, .swiper-button-prev {
	width: 3rem;
	height: 3rem;
	background: url(../images/arrow-white.svg) no-repeat left center;
	transition: var(--standard-transition);
}

.swiper-button-next {
	right: 1rem;
}

.swiper-button-prev {
	transform: rotate(180deg);
	left: 1rem;
}

.swiper-button-next:hover {
	transform: translateX(.5rem);
}

.swiper-button-prev:hover {
	transform: translateX(-.5rem) rotate(180deg);
}

.swiper-button-next:after, .swiper-button-prev:after {
	display: none;
}

.plat .plat__btn.swiper-button-next,
.plat .plat__btn.swiper-button-prev {
	width: 3rem;
	height: 3rem;
	margin-top: 0;
	background: rgba(2, 48, 71, 0.92) url(../images/arrow-orange.svg) no-repeat center;
	background-size: 1rem 1rem;
}

.plat .plat__btn.swiper-button-prev {
	transform: translateY(-50%) rotate(180deg);
}

.plat .plat__btn.swiper-button-next {
	transform: translateY(-50%);
}

.plat .plat__btn.swiper-button-prev:hover {
	transform: translateY(-50%) translateX(-0.25rem) rotate(180deg);
}

.plat .plat__btn.swiper-button-next:hover {
	transform: translateY(-50%) translateX(0.25rem);
}

.plat.plat--campaigns .plat__btn.swiper-button-next,
.plat.plat--campaigns .plat__btn.swiper-button-prev {
	background-color: var(--green);
	background-image: url(../images/arrow-white.svg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: 1rem 1rem;
	border-color: transparent;
}

.plat.plat--campaigns .plat__btn.swiper-button-next:hover,
.plat.plat--campaigns .plat__btn.swiper-button-prev:hover {
	background-color: var(--green-dark);
}


/* ------------------------------------------------------------------------ Service Blocks */

.service-blocks {
	display: grid;
	grid-template-columns: 1fr 1fr;
    column-gap: 2em;
	grid-row-gap: 2em;
}

.service-blocks .service {
	background-color: var(--team-dark-shade);
	border-radius: 3.125em;
	padding: 2em;
	color: var(--white);
}

/* ------------------------------------------------------------------------ To Top */

.to-top {
	position: fixed;
	opacity: 0;
	bottom: 1rem;
	right: 1rem;
	text-align: center;
	width: 3rem;
	height: 3rem;
	cursor: pointer;
	background: var(--grey-dk) url(../images/arrow-white.svg) no-repeat center;
	background-size: 1rem;
	border-radius: 50%;
	z-index: 10;
	visibility: hidden;
	transform: rotate(-90deg);
	transition: var(--standard-transition);
}

.to-top:hover {
	background-color: var(--grey-md)
}

.to-top.show {
	opacity: 1;
	visibility: visible;
}


			
/* =============================================================================================
	FOOTER
============================================================================================= */

.print-footer { 
	display:none;
}

.footer { 
	margin-top: auto!important;
	padding: var(--section-p) 0;
	background-color: var(--blue-navy);
	color: var(--footer-text);
	font-size: var(--font-small);
	line-height: 1.65;
	position: relative;
}

.footer h2 {
	font-family: var(--header-family);
	font-size: var(--font-medium);
	font-weight: var(--fw-700);
	color: var(--white);
	line-height: var(--lh-13);
	margin-bottom: 1.25rem;
}

.footer p {
	font-size: var(--font-small);
	color: var(--footer-text);
	margin-bottom: 0.75rem;
}

.footer p:last-child {
	margin-bottom: 0;
}

.footer a {
	color: var(--footer-text);
	text-decoration: none;
	transition: color 0.2s ease;
}

.footer a:hover {
	color: var(--white);
	text-decoration: none;
}

.footer .copyright,
.footer .note {
	font-size: var(--font-x-small);
	color: color-mix(in srgb, var(--footer-text) 85%, var(--white));
}

.footer .row {
	row-gap: 2.5rem;
}

.footer [class*="col-"]:last-child {
	text-align: left;
}

.rkd {
	display: inline-block;
	width: 5.625rem;
}

.footer__logos {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 1.25rem;
	margin-bottom: 1rem;
}

.footer__logo,
.footer .rkd {
	width: 4.25rem;
}

.footer__logos .rkd__img {
	display: block;
	width: 100%;
	height: auto;
}

.footer__canadian {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 0;
}

.footer__canadian-icon {
	display: block;
	width: 1.125rem;
	height: auto;
	flex-shrink: 0;
}

.footer__services {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.footer__services a {
	display: block;
	font-size: var(--font-small);
	line-height: var(--lh-16);
	color: var(--footer-text);
	text-decoration: none;
}

.footer__services a:hover {
	color: var(--white);
	text-decoration: none;
}

.footer__link {
	margin-right: 1rem;
	text-transform: uppercase;
	text-decoration: none;
}	

.footer__link:hover {
	text-decoration: underline;
}

.js .footer .row:not(.anim-on) [class*="col-"] {
	opacity: 0;
	transform: translateY(16px);
}

.footer .row.anim-on [class*="col-"] {
	opacity: 1;
	transform: translateY(0);
	transition: opacity 0.8s ease, transform 0.8s ease;
}

.footer .row.anim-on [class*="col-"]:nth-child(1) { transition-delay: 0ms; }
.footer .row.anim-on [class*="col-"]:nth-child(2) { transition-delay: 150ms; }
.footer .row.anim-on [class*="col-"]:nth-child(3) { transition-delay: 300ms; }
.footer .row.anim-on [class*="col-"]:nth-child(4) { transition-delay: 450ms; }

.footer .row.anim-on.anim-on--now [class*="col-"] {
	transition-delay: 0ms !important;
}
		
.social__icon {
	display: inline-block;
	width: 3rem;
	height: 3rem;
	padding: .5rem;
	margin: 0 .5rem 0 0;
	background-color: var(--grey-lt);
	border-radius: 50%;
	background-size: 2rem 2rem;
	transition: var(--standard-transition);
}

.social__icon:hover {
	transform: translateY(-.5em);
}