/*
 * Theme Name: 321 Base Theme
 * Theme URI: https://www.321webmarketing.com/
 * Author: 321 Web Marketing
 * Author URI: https://www.321webmarketing.com/
 * Description: 321 inspired theme for the Genesis Framework.
 * Version: 1.0.01
 * License: GPL-3.0-or-later
 * License URI: http://www.gnu.org/licenses/gpl-3.0.html
 * Text Domain: tto-base-theme
 * Domain Path: /languages
 * Template: genesis
 */

@charset 'UTF-8';

/* # Table of Contents

- Elements
- Structural
- Accessibility
- Header
- Footer
- Utility
- Blocks
- Custom CSS

*/

/*** Custom Font BadaBoom ***/

@font-face {
  font-family: 'BadaBoom';
  src: url('assets/fonts/BadaBoom/BADABB__.woff2') format('woff2'),
       url('assets/fonts/BadaBoom/BADABB__.woff') format('woff'),
       url('assets/fonts/BadaBoom/BADABB__.TTF') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* ## Elements
--------------------------------------------- */

html {
	line-height: 1.15;
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
    box-sizing: border-box;
    max-width: 100vw;
	font-size: 62.5%;
	overflow-x: hidden;
}

body {
    background-color: #ffffff;
    max-width: 100vw;
    color: #000;
    font-family: "Rubik", sans-serif;
    font-size: 2rem;
    font-weight: 400;
    line-height: 2.8rem;
    -webkit-font-smoothing: antialiased;
    -moz-font-smoothing: grayscale;
    margin: 0;
    overflow-x: visible;
    --junk-red: #bf2026;
    --junk-light-green: #93c20b;
    --junk-dark-green: #607f06;
    --junk-polygon: polygon(0 4rem, 100% 0, 100% calc(100% - 4rem), 0% 100%);
}

article,
aside,
footer,
header,
nav,
section,
figcaption,
figure,
main {
	display: block;
}

pre {
	font-family: monospace, monospace;
	font-size: 1.8rem;
}

*::-moz-selection {
	background-color: #393e4b;
	color: #ffffff;
}

*::selection {
	background-color: #393e4b;
	color: #ffffff;
}

h1 {
	font-size: 4.8rem;
	font-weight: 700;
	line-height: 1.2;
	margin: 0 0 3rem;
}

h2 {
	font-size: 4rem;
	font-weight: 500;
	line-height: 5.7rem;
    margin: 6rem 0 3rem;
    color: #102534;
}

h3 {
	font-size: 3.2rem;
	font-weight: 500;
	line-height: 3.3rem;
    margin: 6rem 0 3rem;
}

h4 {
	font-size: 2.4rem;
	font-weight: 500;
	line-height: 1.5;
    margin: 6rem 0 3rem;
}

h5 {
	font-size: 2.2rem;
	font-weight: 300;
	line-height: 1.4;
    margin: 6rem 0 3rem;
}

h6 {
	font-size: 1.8rem;
	font-weight: 600;
	line-height: 1.5;
    margin: 6rem 0 3rem;
	text-transform: uppercase;
}

p {
	margin: 0 0 2.5rem;
	padding: 0;
}

p:last-child {
	margin: 0;
}

a {
	color: #000;
	word-wrap: break-word;
	pointer-events: all;
	cursor: pointer;
	text-decoration: none;
	transition: 0.25s ease-in-out all
}

a:hover,
a:focus {
	color: #979797;
}

button,
a.button,
input[type='submit'] {
    background-color: var(--junk-red);
    border-radius: 0.6rem;
    color: #ffffff;
    cursor: pointer;
    font-size: 1.8rem;
    font-weight: 500;
    padding: 1.6rem 2.8rem;
    text-decoration: none;
    display: inline-block;
    width: auto;
    height: auto;
    line-height: 2.1rem;
    box-shadow: 0px 3px 7px 0px #00000027;
    transition: 0.25s ease-in-out all;
    text-transform: uppercase;
    border: 1px solid var(--junk-red);
}

button:hover,
button:focus,
a.button:hover,
a.button:focus,
input[type='submit']:hover,
input[type='submit']:focus {
	filter: brightness(1.15);
    box-shadow: 0px 3px 7px 0px #00000054;
}

button.white,
a.button.white {
    background-color: #ffffff;
    color: #2C4F69;
    border-color: #ffffff;
}

button.outline,
a.button.outline {
	border: 1px solid #049948;
	background: transparent;
	color: #049948;
	box-shadow: 0 1rem 2rem -0.5rem rgba(57, 62, 75, 0.1);
}

button.outline:hover,
button.outline:focus,
a.button.outline:hover,
a.button.outline:focus {
	background: #049948;
	color: #fff;
}

button.large,
a.button.large {
	font-size: 18px;
	font-size: 1.8rem;
}

ol,
ul {
	margin: 0 0 4rem 4rem;
	padding: 0;
}

ol ol,
ul ul,
ol ul,
ul ol {
	margin: 0 0 0 4rem;
	padding: 0;
}

ul li {
	list-style-type: disc;
}

li li {
	list-style-type: circle;
}

ol li {
	list-style-type: decimal;
}

ol li li {
	list-style-type: lower-alpha;
}


hr {
	border: 0;
	border-collapse: collapse;
	border-bottom: 1px solid #f0f1f2;
	clear: both;
	padding: 1em 0 0;
	margin: 0 0 2em;
}

b,
strong {
	font-weight: 600;
}

sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sub {
	bottom: -0.5rem;
}

sup {
	top: -1rem;
}

img {
	display: block;
	max-width: 100%;
}

*:first-child {
	margin-top: 0;
	padding-top: 0;
}

*:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
}

/* ## Structural
--------------------------------------------- */

.wrap,
.basic-page .content-sidebar-wrap,
.blog .wrap > .wp-block-genesis-blocks-gb-columns > .gb-layout-column-wrap,
.entry-content > .wp-block-genesis-blocks-gb-columns > .gb-layout-column-wrap,
.entry-content > .gb-block-container > .gb-container-inside {
	width: var(--theme-wrap-width);
	max-width: var(--theme-wrap-max-width);
	margin: 0 auto;
}

.blog .wrap > .wp-block-genesis-blocks-gb-columns,
.entry-content > .wp-block-genesis-blocks-gb-columns,
.entry-content > .gb-block-container {
	padding: var(--theme-section-padding) 0;
}

.entry-content > .wp-block-genesis-blocks-gb-columns.no-padding-top,
.entry-content > .gb-block-container.no-padding-top {
	padding-top: 0 !important;
}

.entry-content > .wp-block-genesis-blocks-gb-columns.no-padding-bottom,
.entry-content > .gb-block-container.no-padding-bottom {
	padding-bottom: 0 !important;
}

.entry-content > .wp-block-genesis-blocks-gb-columns.no-padding,
.entry-content > .gb-block-container.no-padding {
	padding-top: 0 !important;
	padding-bottom: 0 !important;
}

@media (max-width: 767px) {
	.wrap,
	.basic-page .content-sidebar-wrap,
    .blog .wrap > .wp-block-genesis-blocks-gb-columns > .gb-layout-column-wrap,
	.entry-content > .wp-block-genesis-blocks-gb-columns > .gb-layout-column-wrap,
	.entry-content > .gb-block-container > .gb-container-inside {
		width: 100%;
		max-width: 100%;
		margin: 0;
		padding: 0 var(--theme-wrap-padding-mobile);
	}

	.entry-content > .wp-block-genesis-blocks-gb-columns > .gb-layout-column-wrap {
        display: flex;
        flex-direction: column;
        gap: 6rem;
    }

    .entry-content > .wp-block-genesis-blocks-gb-columns.wrap-reverse > .gb-layout-column-wrap {
        flex-direction: column-reverse;
    }

    .blog .wrap > .wp-block-genesis-blocks-gb-columns,
	.entry-content > .wp-block-genesis-blocks-gb-columns,
	.entry-content > .gb-block-container {
		padding: var(--theme-section-padding-mobile) 0;
	}
}



/* ## Accessibility
--------------------------------------------- */

.screen-reader-text,
.screen-reader-text span,
.screen-reader-shortcut,
.wp-custom-logo .site-title,
.wp-custom-logo .site-description {
	position: absolute !important;
	clip: rect(0, 0, 0, 0);
	height: 0.1rem;
	width: 0.1rem;
	background-color: #fff !important;
	color: #000 !important;
	border: 0;
	overflow: hidden;
}

.screen-reader-text:focus,
.screen-reader-shortcut:focus {
	clip: auto !important;
	height: auto;
	width: auto;
	display: block;
	padding: 10px 20px;
	padding: 1rem 2rem;
	z-index: 100000;
	text-decoration: none;
	box-shadow: 0 0 0.2rem 0.2rem rgba(57, 62, 75, 0.1);
}

.more-link {
	position: relative;
	font-style: normal;
}

.genesis-skip-link {
	margin: 0;
}

.genesis-skip-link li {
	height: 0;
	width: 0;
	list-style: none;
}



/* ## Header
--------------------------------------------- */

.top-nav-bar {
    background-color: #f5f5f5;
	position: relative;
	display: flex;
	padding: 1.25rem 0;
    border-bottom: 1px solid #dbdbdb;
	z-index: 101;
}

.top-nav-bar > .wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 6rem;
}

.top-nav-bar > .wrap.left {
	justify-content: flex-start;
}

.top-nav-bar > .wrap.right {
	justify-content: flex-end;
}

.nav-top > .wrap {
	width: 100%;
	max-width: 100%;
	margin: 0;
}

.nav-top .menu {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	gap: 3rem;
	height: 100%;
	pointer-events: all;
	opacity: 1;
	transition: 0.25s ease-in-out opacity;
}

.nav-top .menu.fade-out {
	pointer-events: none;
	opacity: 0;
}

.nav-top .menu > .menu-item {
    display: flex;
    align-items: center;
}

.nav-top .menu > .menu-item > a,
.top-nav-bar p {
    font-size: 1.4rem;
    font-weight: 500;
	line-height: 1.3;
}

.site-header {
	background-color: #fff;
    position: sticky;
    width: 100%;
    top: 0;
    left: 0;
    padding: 1rem 0;
    box-shadow: 0px 2px 2px 0px #0000001F;
    border-bottom: 5px solid var(--junk-light-green);
	transition: 0.25s ease-in-out padding, 0.25s ease-in-out box-shadow;
	z-index: 100;
}

.site-header.shrink {
    padding: 0.5rem 0;
	box-shadow: 0px 4px 22.4px 0px #0000001A;
}

.logged-in.admin-bar .site-header {
	top: 32px;
}

@media (max-width: 782px) {
	.logged-in.admin-bar .site-header {
		top: 46px;
	}
}

@media (max-width: 600px) {
	.logged-in.admin-bar .site-header {
		top: 0;
	}
}

.site-header > .wrap {
	display: flex;
	align-items: stretch;
	gap: 3rem;
    max-width: 1280px;
    width: 95%;
}

.title-area {
	display: flex;
	align-items: center;
	width: 20rem;
	margin: 0;
	padding: 0;
}

.title-area a {
	position: relative;
	display: flex;
	width: 100%;
	height: fit-content;
	max-height: 100px;
}

.title-area a img {
    object-fit: contain;
    object-position: left center;
    width: 100%;
    height: auto;
    max-height: 90px;
}


.title-area a img {
    object-fit: contain;
    object-position: left center;
    width: 100%;
    height: auto;
    max-height: 95px;
    transition: 0.25s ease-in-out max-height;
}

.site-header.shrink .title-area a img {
    max-height: 70px;
}

/* .title-area a img.primary {
	opacity: 1;
	transition: 0.25s ease-in-out opacity;
}

.title-area a img.secondary {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	opacity: 0;
	transition: 0.25s ease-in-out opacity;
}

.site-header.shrink .title-area a img.primary {
	opacity: 0;
}

.site-header.shrink .title-area a img.secondary {
	opacity: 1;
} */

.nav-primary {
	display: flex;
    align-items: center;
	gap: 3rem;
    width: 100%;
	transition: none;
}

.nav-primary > .wrap {
	display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 3rem;
	width: 100%;
	max-width: 100%;
	height: 100%;
	margin: 0;
}

.nav-primary .menu {
    flex: 1;
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	gap: 3.2rem;
	height: 100%;
	margin: 0;
	pointer-events: all;
	opacity: 1;
	transition: 0.25s ease-in-out opacity;
}

.nav-primary .menu.fade-out {
	pointer-events: none;
	opacity: 0;
}

.nav-primary .menu > .menu-item {
    display: flex;
    align-items: center;
	gap: 0.5rem;
    padding: 2.8rem 0;
	transition: 0.25s ease-in-out all;
}

.nav-primary .menu > .menu-item:first-child {
    margin-left: auto;
}

.nav-primary .menu > .menu-item:last-child {
    margin-right: auto;
}

.site-header.shrink .nav-primary .menu > .menu-item {
    padding: 2.75rem 0;
}

.nav-primary .menu > .menu-item > a {
    font-size: 1.4rem;
    font-weight: 500;
	line-height: 2.5rem;
    color: #000000;
    transition: 0.25s ease-in-out color;
    text-transform: uppercase;
}

.nav-primary .menu > .menu-item > a > span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-primary .menu > .menu-item > a > span > .chevron-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.4rem;
    height: 1.4rem;
    padding: 0 0 0.25rem;
    transition: none;
}

.nav-primary + .widget-area {
    display: none;
}

.primary-menu-ctas .gb-layout-column-wrap {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.primary-menu-ctas .gb-block-layout-column {
	flex: 1 1 fit-content;
}

.primary-menu-ctas .phone-number-block a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #000;
    font-size: 1.5rem;
    font-weight: 600;
}

.primary-menu-ctas .phone-number-block a .phone-icon {
    display: flex;
    width: 1.5rem;
    height: 1.5rem;
}

.primary-menu-ctas a.button {
    margin: 0;
    font-size: 1.5rem;
    line-height: 2.5rem;
    box-shadow: none;
    padding: 1rem 1.5rem;
}

.mobile-menu-logo {
	display: none;
}

.site-header .progress-bar-container {
	position: absolute;
	background-color: transparent;
	display: block;
	width: 100%;
	height: 4px;
	top: auto;
	bottom: 0;
	left: 0;
}

.site-header .progress-bar {
	background-color: #000;
    display: block;
    width: 0%;
    height: 100%;
    transition: none;
}

/* ## Footer
--------------------------------------------- */









.site-footer > .wrap {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

.footer-credits p {
    font-size: 1.4rem;
    line-height: 2.1rem;
    color: #000;
}

.footer-credits p .separator {
	font-size: 2rem;
	line-height: 0;
	margin: 0 0 0.25rem;
}



/* ## Utility
--------------------------------------------- */













/* ## Blocks
--------------------------------------------- */

/* Breadcrumbs */

.custom-breadcrumbs .breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.8rem;
    margin: 0 0 6rem;
    padding: 0;
}

.custom-breadcrumbs .breadcrumb > span {
    display: flex;
    color: #000;
    font-size: 1.5rem;
    font-weight: 500;
}

.custom-breadcrumbs .breadcrumb > a {
    display: flex;
}

/* Button */

.custom-button {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: fit-content;
}

.custom-button.align-left {
	align-items: flex-start;
}

.custom-button.align-right {
	align-items: flex-end;
}

/* Client Logos */

/* Consultation Steps */

/* Custom Image */

/* Home Page Video */

/* Menu Widget */

/* Recent Articles */

/* Search Widget */

.search-widget {
	position: relative;
}

.search-widget[data-search-type="menu"] .search-widget--form {
    position: absolute;
	min-width: 300px;
    right: calc(100% + 3rem);
    pointer-events: none;
	opacity: 0;
    transition: 0.25s ease-in-out opacity;
    z-index: -99;
}

.search-widget[data-search-type="menu"][data-menu-active="true"] .search-widget--form {
	pointer-events: all;
	opacity: 1;
	z-index: 99;
}

.search-widget .search-widget--toggle {
    display: flex;
    width: 30px;
    height: 30px;
}

.search-widget .search-widget--toggle span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 2rem;
	pointer-events: all;
	cursor: pointer;
	opacity: 1;
	transition: 0.25s ease-in-out all;
}

.search-widget .search-widget--toggle span.hide {
	position: absolute;
    top: 0;
    left: 0;
	pointer-events: none;
	cursor: default;
	opacity: 0;
}

.search-widget[data-menu-active="true"] .search-widget--toggle span.show {
	pointer-events: none;
	cursor: default;
	opacity: 0;
}

.search-widget[data-menu-active="true"] .search-widget--toggle span.hide {
	pointer-events: all;
	cursor: pointer;
	opacity: 1;
}

.search-widget .search-form {
    display: flex;
    flex-wrap: wrap;
    row-gap: 1rem;
	width: fit-content;
}

.search-widget .search-form-label {
	flex: 1 1 100%;
	font-size: 1.5rem;
	font-weight: 600;
	line-height: 1.2;
}

.search-widget .submit-container {
    background-color: #000;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
}

.search-widget .submit-container .search-form-cta {
	display: flex;
}

.search-widget .submit-container svg {
    color: #fff;
	width: 1.6rem;
    height: 1.6rem;
}

.search-widget .submit-container input[type='submit'] {
	background-color: transparent;
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
}

.search-widget input[type='submit'].hidden {
	display: none;
}

/* Socials */

.custom-socials {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
    width: fit-content;
}

.custom-social--link {
    display: block;
    width: 100%;
    height: 100%;
    line-height: 1;
}

.custom-social--link svg {
    aspect-ratio: 1 / 1;
    color: #2C4F69;
    width: 3.2rem;
    height: 3.2rem;
    transition: 0.25s ease-in-out all;
}

.custom-social--link:hover svg {
    color: #979797;
}

/* body.single,
body.blog {
    overflow-x: visible;
} */

.single-post-container,
.blog-archive-container {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 6rem;
}

.single-post-container .content,
.blog-archive-container .content {
    flex: 1 1 calc(72.5% - 3rem);
    width: 100%;
}

.single-post-container .sidebar,
.blog-archive-container .sidebar {
    flex: 1 1 calc(27.5% - 3rem);
    width: 100%;
}

.single .entry {
    padding: 0;
}

.single .sidebar:not(.fixed) .widget:first-of-type,
.blog .sidebar:not(.fixed) .widget:first-of-type {
    position: sticky;
    top: 0;
    left: 0;
}

@media (max-width: 895px) {

    /* body.single,
    body.blog {
        overflow-x: hidden;
    } */

    .single-post-container,
    .blog-archive-container {
        flex-direction: column;
    }

    .single-post-container .content,
    .single-post-container .sidebar,
    .blog-archive-container .content,
    .blog-archive-container .sidebar {
        flex: auto;
    }

    .single .sidebar:not(.fixed) .widget:first-of-type,
    .blog .sidebar:not(.fixed) .widget:first-of-type {
        position: unset;
    }
}


/* Single Team Member Page */
.single-team-member {
    color: #000;
    line-height: 1.6;
    font-size: 16px;
}

.team-member {
    display: flex;
    flex-wrap: wrap;
    max-width: 1280px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.team-headshot-area {
    flex: 1 1 300px;
    margin-right: 20px;
    text-align: center;
}

.team-headshot-area img {
    max-width: 100%;
    height: auto;
    border: solid 2px #000;
    padding: 3rem;
}

.team-info {
    flex: 2 1 300px;
}

.team-member-name {
    font-size: 2em;
    font-weight: bold;
    margin-bottom: 10px;
    color: #000;
}

.team-member-role {
    font-size: 1.2em;
    color: #000;
    margin-bottom: 20px;
}

.team-member-bio {
    font-size: 1em;
    margin-bottom: 20px;
    color: #000;
}

.team-contact-area {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 20px 0 0 0;
}

div.team-contact-area .team-contact a {
    color: #000;
    text-decoration: none;
    font-size: 1.4em;
    display: flex;
    gap: 1rem;
    align-items: center;
    transition: color 0.3s ease;
}

.team-contact a span {
    margin-left: 5px;
}

.team-contact a:hover {
    color: #979797;
}

.team-socials-area {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 20px;
}

.team-social {
    margin: 0 10px;
}

div.team-socials-area div.team-social a {
    color: #000;
    font-size: 1.5em;
    transition: color 0.3s ease;
}

.team-social a:hover {
    color: #979797;
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

@media (max-width: 800px) {
    .team-member {
        flex-direction: column;
        align-items: center;
    }

    .team-headshot-area {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .team-info {
        text-align: center;
    }
}

/* Team Archive Page */
.team-member-archive {
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

.team-member-items {
    order: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4rem;
}

.team-member-archive .team-member--link {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

.team-member-archive .team-member--link:hover {
    transform: translateY(-2px);
    box-shadow: none
}

.team-member-archive .team-member--content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 3rem;
}

.team-member-archive .team-member--content-name h2 {
    margin: 0 0 1rem;
    font-size: 2rem;
    letter-spacing: 0;
    word-spacing: 0;
    text-align: center;
    color: #000;
}

.team-member-archive .team-member--content-role p {
    font-size: 1.7rem;
    line-height: 1.4;
    text-align: center;
    color: #000;
}

.team-member-none {
    grid-column: 1 / span 4;
}

.team-member-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: 3rem;
    column-gap: 6rem;
    padding: 0 0 5rem;
    border-bottom: 1px solid var(--mfe-dark-grey);
}

.team-member-filter {
    flex: 1;
    max-width: 400px;
}

.team-member-filter.dept label {
    justify-content: flex-end;
}

.team-member-filter input,
.team-member-filter select {
    margin: 0;
}

@media (max-width: 767px) {
    .team-member-items {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-member-none {
        grid-column: 1 / span 2;
    }

    .team-member-filters {
        flex-direction: column;
    }

    .team-member-filter.dept label {
        justify-content: flex-start;
    }
}

@media (max-width: 600px) {
    .team-member-items {
        grid-template-columns: auto;
    }

    .team-member {
        width: 100%;
        margin: 0 auto;
    }

    .team-member-archive .team-member--headshot img {
        object-fit: cover;
        width: 100%;
        max-height: 270px;
    }

    .team-member-none {
        grid-column: auto;
    }
}

/* Events Archive Page*/
.events-archive {
    position: relative;
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 12rem 0 10rem;
}

.at-content-archive:not(:first-of-type) {
    margin: 12rem 0 0;
}

.at-content-archive--wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6rem;
    margin: 6rem 0 0;
}

@media (max-width: 1095px) {
    .at-content-archive .at-content-archive--wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .at-content-archive .at-content-archive--wrapper {
        grid-template-columns: none;
    }
}

.at-content-box {
    border: 1px solid #cdd9dc;
    box-shadow: -14px 14px 0px #f3f5f6;
    overflow: hidden;
}

.at-content-box {
    display: block;
    width: 100%;
    height: 100%;
    padding: 4rem;
}

.at-content-box .at-content-box--thumbnail {
    margin: -4rem -4rem 4rem;
    overflow: hidden;
}

.at-content-box .at-content-box--thumbnail img {
    aspect-ratio: 2 / 1;
    object-fit: cover;
    object-position: center center;
    width: 100%;
    height: 100%;
    transition: 0.25s ease-in-out all;
}

.at-content-box--inner {
    height: fit-content;
}

.at-content-box .at-content-box--title > * {
    transition: 0.25s ease-in-out all;
}

.at-content-box .at-content-box--date p {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    gap: 0.6rem;
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0 0 1.5rem;
    color: #000;
}

.at-content-box .at-content-box--cta {
    margin: 2rem 0 0;
}

div.at-content-box--title h3 {
    color: #000;
}

div.at-content-box--description p {
    color: #000;
}

div.at-content-box--cta a.read-more-button {
    color: #000;
}

a.read-more-button {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.at-event-flyer {
    width: 500px;
    max-width: 50%;
    margin: 0 0 3rem 3rem;
}

.single.has-toc .entry-content {
    display: flex;
    flex-wrap: wrap;
    column-gap: 4rem;
}

.single.has-toc .entry-content > .table-of-contents {
    flex: 1 1 calc(40% - 11rem);
    border: solid 1px #000;
    background: #f1f1f1;
    padding: 2rem;
    margin: 2rem;
}

.single.has-toc .entry-content > .table-of-contents + p {
    order: -1;
    flex: 1 1 calc(60% - 2rem);
    word-break: break-word;
}

.single.has-toc .entry-content >  .table-of-contents h2 {
    font-size: 2.5rem;
    text-align: center;
}

/* Blog */

.blog-archive--heading > .wrap {
	width: 100%;
	max-width: 100%;
	margin: 0;
	padding: 0;
}

.blog-archive--wrapper {
    padding: var(--theme-section-padding) 0 0;
}

.blog-recent-articles--wrapper,
.articles-archive,
.videos-archive {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    row-gap: 6rem;
    column-gap: 3rem;
}

body .blog-pagination {
    margin: 8rem 0 0;
}

body .blog-pagination ul {
    display: flex;
    flex-wrap: wrap;
	justify-content: center;
	gap: 1.5rem;
	margin: 0;
}

body .blog-pagination ul li {
	list-style-type: none;
    display: flex;
}

body .blog-pagination ul li a,
body .blog-pagination ul li span {
	background-color: var(--junk-red);
	border: 2px solid var(--junk-red);
	padding: 8px 17px;
	border-radius: 0.6rem;
	color: #fff;
    text-decoration: none !important;
}

body .blog-pagination ul li a:hover,
body .blog-pagination ul li span {
	background-color: transparent;
	color: var(--junk-red);
}

.recent-article--image {
	position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.recent-article--image-container {
    aspect-ratio: 16 / 9;
    width: 100%;
    border: 3px solid var(--junk-red);
    border-radius: 15px;
    max-height: 250px;
    overflow: hidden;
}

.recent-article--image-container img {
	object-fit: cover;
    object-position: center center;
	width: 100%;
	height: 100%;
	transition: 0.25s ease-in-out all;
}

.recent-article--link:hover .recent-article--image-container img {
	transform: scale(1.1);
}

.recent-article--image-date {
    background-color: var(--junk-dark-green);
    display: inline-flex;
    margin: 0 10% -2rem 0;
    padding: 0.8rem 1.6rem;
    border-radius: 50px;
    transform: translateY(-50%);
}

.recent-article--image-date p {
    color: #fff;
    font-size: 1.5rem;
    line-height: 1;
}

.recent-article--content-info-title h2,
.recent-article--content-info-title h3 {
    color: #000;
    font-size: 2.4rem;
    font-weight: 600;
    line-height: 1.4;
    margin: 2rem 0 1rem;
	transition: 0.25s ease-in-out all;
}

.recent-article--link:hover .recent-article--content-info-title h2,
.recent-article--link:hover .recent-article--content-info-title h3 {
	color: var(--junk-red);
}

.recent-article--content-info-date p {
    color: #555;
    font-size: 1.5rem;
    margin: 0 0 2rem;
}

.recent-article--content-info-description p {
    font-size: 1.8rem;
}

.recent-article--link {
    display: flex;
    flex-direction: column;
    height: 100%;
	color: unset !important;
}

.recent-article--content {
    flex: 1;
	display: flex;
    flex-direction: column;
	gap: 2rem;
}

.recent-article--content-cta {
    flex: 1;
    display: flex;
    align-items: flex-end;
}

.recent-article--content-cta p {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    color: var(--junk-red);
    font-weight: 500;
	transition: 0.25s ease-in-out all;
}

.recent-article--link:hover .recent-article--content-cta p {
    gap: 1.75rem;
}

@media (max-width: 991px) {
	.blog-recent-articles--wrapper,
    .articles-archive,
    .videos-archive {
    	grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 767px) {
	.blog-archive--wrapper {
		padding: var(--theme-section-padding-mobile) 0;
	}

	body .blog-pagination {
		margin: 6rem 0 0;
	}

    .blog-recent-articles--wrapper,
    .articles-archive,
    .videos-archive {
		display: flex;
		flex-direction: column;
	}
}

/* Recent Articles Block */

.recent-articles {
    width: 100%;
}

.recent-articles--items-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin: 0 auto;
    width: 90%;
    max-width: 1280px;
}

@media (max-width: 1095px) {
    .recent-articles--items-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .recent-articles--items-wrapper {
        grid-template-columns: auto;
        gap: 5vw;
        max-width: 400px;
    }
}

.search-no-results .recent-articles--items-wrapper {
    grid-template-columns: auto;
}

.search-no-results .recent-articles--items-wrapper .wp-block-button {
    text-align: left;
}

.front-page .content .fp7-content .recent-articles .entry-header {
    padding: 4rem;
}

.recent-articles .entry-content p {
    display: none;
}

.recent-articles .entry-image-link {
    width: 100%;
    margin: 0;
    border-radius: 0;
}

div.recent-articles div.entry-content a.entry-image-link img {
    aspect-ratio: 2 / 1;
    object-fit: cover;
    object-position: center center;
    width: 100%;
    height: auto;
    border-radius: unset;
    margin-bottom: unset;
    box-shadow: unset;
}

.recent-articles .entry-header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 4rem 4rem 4rem;
}

.recent-articles .entry-header .entry-title {
    margin: 0;
}

.recent-articles .entry-header .entry-title a {
    font-size: 2.4rem;
    line-height: 1.4;
}

.recent-articles .entry-header .entry-title a:hover {
    color: var(--mg-primary-blue);
}

.recent-articles .entry-content a {
    background-image: none;
    background-color: transparent;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    max-width: 100%;
    color: var(--mg-primary-blue);
    font-weight: 600;
    text-align: left;
    padding: 0;
}

.recent-articles .entry-content a:hover {
    gap: 1.75rem;
    opacity: 0.88;
}

/* Recent Articles Container */

.recent-articles-container {
    text-align: center;
}

.recent-articles-container .wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 0;
}

.recent-articles-container .wrap:before,
.recent-articles-container .wrap:after {
    display: none;
}

.recent-articles-container .widget {
    width: 100%;
}

.recent-articles-container .pricing-table {
    margin-right: 5vw;
    margin-left: 5vw;
}

.recent-articles-container hr {
    max-width: 88vw;
    margin-right: auto;
    margin-left: auto;
}

.recent-articles-container ul blockquote {
    padding-right: calc(2em + 5vw);
    padding-left: calc(2em + 5vw);
}

/* Recent Articles Container (rac) Content */

.rac-content {
    margin: 6rem 0;
}

.home .content .rac-content .entry.post {
    display: flex;
    flex-direction: column-reverse;
    width: 100%;
    margin: 0;
    padding: 0;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0px 6px 13px -4px rgba(0, 0, 0, 0.22);
    overflow: hidden;
}

/* Home Page Video */

.video-background-block {
    display: flex;
    align-items: center;
    justify-content: center;
    /* min-height: 100vh; */
    width: 100%;
    overflow: hidden;
    background-color: #000;
    opacity: inherit;
    padding: var(--theme-section-padding) 0;
}

.video-background-block video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-width: 100%;
    min-height: 100%;
    height: auto;
    z-index: 0;
    object-fit: cover;
}

.block-view .video-overlay {
    position: unset;
    z-index: 2;
    text-align: center;
    color: inherit;
    width: 90%;
    max-width: 982px;
    margin: 0 auto;
}

.block-view .center-center {
    top: 50%;
    left: 50%;
}

.block-view .center-right {
    top: 50%;
    right: 10%;
    left: auto;
    transform: translate(0, -50%);
    text-align: right;
}

.block-view .center-left {
    top: 50%;
    left: 10%;
    right: auto;
    transform: translate(0, -50%);
    text-align: left;
}

.block-view .center-top {
    top: 10%;
    left: 50%;
    transform: translate(-50%, 0);
    text-align: center;
}

.block-view .center-bottom {
    bottom: 10%;
    left: 50%;
    transform: translate(-50%, 0);
    text-align: center;
}

.block-view .top-left {
    top: 10%;
    left: 10%;
    transform: translate(0, 0);
    text-align: left;
}

.block-view .top-right {
    top: 10%;
    right: 10%;
    left: auto;
    transform: translate(0, 0);
    text-align: right;
}

.block-view .bottom-left {
    bottom: 10%;
    left: 10%;
    top: auto;
    transform: translate(0, 0);
    text-align: left;
}

.block-view .bottom-right {
    bottom: 10%;
    right: 10%;
    top: auto;
    left: auto;
    transform: translate(0, 0);
    text-align: right;
}

.video-overlay .cta-button {
    background-color: #64c64e;
    padding: 1rem 2rem;
    color: white;
    text-decoration: none;
    border-radius: 0.25rem;
    font-weight: bold;
}

.full-width-content .alignfull {
    position: relative;
    left: 50%;
    width: 100vw;
    max-width: none;
    margin-left: -50vw;
}

.content-sidebar .full-width-content .alignfull,
.sidebar-content .full-width-content .alignfull {
    max-width: calc(100% + 12rem);
}

/* News */

.news-archive h1.entry-title {
    border-bottom: 2px solid #929baf;
    padding-bottom: 1.2rem;
    margin-bottom: 0.5rem;
}

.news-post .entry-content h2 {
    font-size: 1.5rem;
}

h2.news-post--header {
    font-weight: 900;
    margin-bottom: 0.3rem;
    line-height: 1.35;
}

.news-post--meta {
    display: block;
    margin: 0 0 1.5rem;
    padding: 0 2px;
}

time.news-post--date {
    font-weight: 600;
    font-size: 0.9rem;
    color: #444;
}

.news-archive article.ews-post {
    border-bottom: 1px solid #cccccc;
    padding: 2rem 0 1rem;
}

.news-archive article.news-post:last-of-type {
    border-bottom: none;
}

/* client logos block */

.client-logos-slider {
    position: relative;
    margin: 0 auto;
    max-width: 1280px;
    padding: 10rem 10rem;
}

.client-logos-slider .swiper {
    display: flex;
    position: relative;
    align-items: center;
}

.client-logos-slider .swiper-controls {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.client-logos-slider .swiper .swiper-wrapper {
    display: flex;
    align-items: center;
}

/* Swiper navigation buttons */
.client-logos-slider .swiper-button-next,
.client-logos-slider .swiper-button-prev {
    width: 44px;
    height: 44px;
    z-index: 10;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.3s ease;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0
}

.client-logos-slider .swiper-button-next::after,
.client-logos-slider .swiper-button-prev::after {
    font-size: 20px;
    color: white;
}

.client-logos-slider .swiper-button-next {
    top: calc(50% - 22px);
    align-self: center;
}

.client-logos-slider .swiper-button-prev {
    top: calc(50% - 22px);
    align-self: center;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    opacity: 1;
}

@media (max-width: 768px) {

    .client-logos-slider .swiper-button-next,
    .client-logos-slider .swiper-button-prev {
        width: 35px;
        height: 35px;
    }

    .client-logos-slider .swiper-button-next::after,
    .client-logos-slider .swiper-button-prev::after {
        font-size: 16px;
    }

    .client-logos-slider .swiper-button-next {
        margin-right: 0;
        align-self: center;
    }

    .client-logos-slider .swiper-button-prev {
        margin-left: 0;
        align-self: center;
    }
}

.client-logos-slider .swiper .swiper-pagination-lock {
    display: unset;
}

.client-logos-slider .swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: unset;
        top: unset;
}

/* Custom image */

.custom-image--wrapper {
    position: relative;
}

.custom-image {
    position: relative;
    display: block;
    border-radius: 16px;
    max-width: 100%;
    background: #fff;
    box-shadow: 0px 10px 28px -7px rgb(0 0 0 / 35%);
}

.custom-image.image-center {
    margin: 0 auto;
}

.custom-image.image-right {
    margin: 0 0 0 auto;
}

.custom-image.image-left {
    margin: 0 auto 0 0;
}

.custom-image img {
    object-fit: cover;
    object-position: center;
    width: 100%;
    opacity: 1;
}

img.custom-image--img-secondary {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.custom-image--tagline {
    display: inline-block;
    position: absolute;
    right: -12.5%;
    top: 20px;
    background: #657d9f;
    color: #fff;
    text-align: center;
    z-index: 3;
    border-radius: 25px;
    padding: 3px 15px;
    font-size: 1.6rem;
    font-weight: 600;
    text-transform: uppercase;
}

.custom-image--tagline.left {
    left: -12.5%;
    right: auto;
}

.custom-image--graphic img {
    display: block;
    box-shadow: none;
}

.custom-image--graphic {
    display: block;
    position: absolute;
}

.custom-image--graphic.custom-image--graphic-left {
    bottom: 10%;
    left: -20%;
    z-index: 10;
}

.custom-image--graphic.custom-image--graphic-right {
    top: 10%;
    right: -20%;
    z-index: -1;
}

.custom-image--graphic svg {
    font-size: 15rem;
}

@media (max-width: 896px) {
    .custom-image--tagline {
        display: none !important;
    }
}

/* Centered Copy Block */

section.browser-view {
    padding: 5rem;
    margin: 6rem auto;
    max-width: 1280px;
    position: relative;
    border: 5px solid transparent;
    box-shadow: 0 4px 16px -2px rgba(0, 0, 0, 0.12);
    border-radius: 0;
    overflow: hidden;
}

@media (max-width: 1300px) {
    .section.browser-view {
        margin: 6rem;
    }
}

.browser-view .cta-inner {
    text-align: center;
}

.browser-view .cta-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.browser-view .cta-section p {
    margin-bottom: 2rem;
    font-size: 1.125rem;
    line-height: 1.7;
}

section.browser-view .cta-inner h2 {
    margin: 1rem 0 3rem;
}

.browser-view .cta-image {
    max-width: 80px;
    height: auto;
    margin-bottom: 2rem;
    position: absolute;
}

.browser-view .bottom-right {
    top: auto;
    bottom: 3rem;
    left: auto;
    right: 3rem;
}

.browser-view .bottom-left {
    top: auto;
    bottom: 3rem;
    left: 3rem;
    right: auto;
}

.browser-view .top-left {
    top: 3rem;
    bottom: auto;
    left: 3rem;
    right: auto;
}

.browser-view .top-right {
    top: 3rem;
    bottom: auto;
    left: auto;
    right: 3rem;
}

/* Static Copy Left Right */

.two-column-content-block {
    padding: 8rem;
}

.block-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}

.column-left,
.column-right {
    flex-basis: 48%;
    box-sizing: border-box;
}

.align-left {
    text-align: left;
}

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

.align-right {
    text-align: right;
}

@media screen and (max-width: 768px) {

    .column-left,
    .column-right {
        flex-basis: 100%;
        text-align: center;
    }
}

.two-column-content-block {
    padding: 8rem;
    position: relative;
}

section.two-column-content-block:before {
    clip-path: polygon(0 0, 56% 0, 44% 100%, 0 100%);
    content: '';
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}

section.two-column-content-block:after {
    content: '';
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -2;
}

/* After content CTA */

.after-content-cta--section {
    background-color: #f7f9fc;
    padding: 40px;
    border-radius: 8px;
    max-width: 1280px;
    margin: 30px auto;
    text-align: center;
    box-shadow: 0px 10px 28px -7px rgb(0 0 0 / 35%);
}

.after-content-cta--title span {
    font-size: 1.8em;
    color: #333;
    font-weight: bold;
    margin-bottom: 20px;
    display: inline-block;
}

.after-content-cta--buttons-row {
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.after-content-cta--button-wrap {
    display: inline-block;
}

.after-content-cta--button {
    background-color: #007bff;
    color: white;
    font-size: 1.2em;
    font-weight: bold;
    padding: 12px 35px;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.after-content-cta--button:hover {
    background-color: #0056b3;
    transform: translateY(-3px);
}

@media (max-width: 1300px) {
    .after-content-cta--section {
        margin: 3rem;
    }
}

@media (max-width: 768px) {
    .after-content-cta--buttons-row {
        flex-direction: column;
        gap: 15px;
    }

    .after-content-cta--button {
        width: 100%;
    }
}

/* Mid Content CTA */

.mid-content-cta {
    background-color: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 40px 20px;
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.mid-content-cta--inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: start;
}

.mid-content-cta--image {
    flex-shrink: 0;
}

.mid-content-cta--image img {
    max-width: 175px;
    height: auto;
    margin-right: 20px;
    border-radius: 4px;
}

.mid-content-cta--copy {
    flex-grow: 1;
    max-width: 50rem;
    text-align: center;
}

.mid-content-cta--copy p {
    margin: 0;
    font-size: 16px;
    color: #333;
    line-height: 1.5;
    padding-right: 20px;
}

.mid-content-cta--button {
    flex-shrink: 0;
}

.mid-content-cta--button a.button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
}

.mid-content-cta--button i.fa-solid {
    margin-left: 8px;
    font-size: 14px;
}

.mid-content-cta-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

@media (max-width: 1300px) {
    .mid-content-cta {
        margin: 3rem;
    }
}

/* Form CTA Block */

.form-cta-block {
    position: relative;
    padding: 50px;
    background-size: cover;
    background-position: center;
    color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: left;
}

.form-cta-container {
    display: flex;
    max-width: 1280px;
    width: 100%;
}

@media (max-width: 867px) {
    .form-cta-container {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5rem;
    }
}

.form-cta-left {
    flex: 1;
    margin-right: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.form-cta-left h2 {
    font-size: 2rem;
    color: #000;
    margin-bottom: 20px;
}

.form-cta-image {
    margin-bottom: 20px;
}

.circular-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid white;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.form-cta-right {
    flex: 1;
    padding-left: 20px;
    display: flex;
    align-items: start;
    justify-content: flex-start;
}

.form-cta-right form {
    width: 100%;
}

.form-cta-extra-info {
    color: #000;
    text-align: center;
}

.form-cta-extra-info p {
    margin-bottom: 10px;
}

/* Phone Number CTA */

.phone-number-block {
    display: flex;
    align-items: center;
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: inherit;
    font-size: 16px;
}

.phone-link i {
    margin-right: 8px;
    font-size: 18px;
    color: #000;
}

/* .phone-link .phone-number {
    font-size: 16px;
    color: #000;
} */

/* Email CTA */

.email-cta-block {
    display: flex;
    align-items: center;
}

.email-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: inherit;
    font-size: 16px;
}

.email-link i {
    margin-right: 8px;
    font-size: 18px;
    color: #000;
}

.email-link .email-address {
    font-size: 16px;
    color: #000;
}

/* Mega Menu */

@media (min-width: 896px) {
    li:not(.mega-menu) .menu-item {
        padding: 0.25em 0.6em;
        height: auto;
        list-style-type: none;
    }
}

.widget-area.footer-widget-area ul {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

@media (min-width: 896px) {

    .mega-menu ul.sub-menu:first-of-type {
        width: 50vw;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .mega-menu ul.sub-menu:first-of-type > li {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-flex: 0;
        -ms-flex-positive: 0;
        flex-grow: 0;
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        justify-content: center;
    }

    .mega-menu ul.sub-menu:first-of-type ul.sub-menu {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        position: relative;
        margin: 0;
        /* padding: 0.5rem 0 0.5rem 4px; */
        padding: 0.5rem 0;
        left: auto;
        top: auto;
        width: 100% !important;
        background-color: transparent;
        -webkit-box-shadow: none;
        box-shadow: none;
        border: none !important;
    }

    .mega-menu ul.sub-menu:first-of-type ul.sub-menu > li {
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        padding: 0;
        line-height: 1;
    }

    .mega-menu ul.sub-menu:first-of-type ul.sub-menu > li a {
        font-size: 1.4rem;
        font-weight: 400;
        padding: 4px 0;
        margin-left: 3px;
    }

    .mega-menu ul.sub-menu:first-of-type ul.sub-menu:before {
        display: none;
    }

    .mega-menu.menu-item.menu-item-has-children > .sub-menu {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .mega-menu ul.sub-menu:first-of-type > li > a:first-child {
        font-size: 2.2rem;
        line-height: 2.7rem;
        font-weight: 500;
        padding: 0.25rem 0;
        text-transform: none;
        border-bottom: 1.5px solid var(--junk-light-green);
    }

    .is_ie .mega-menu.menu-item.menu-item-has-children:hover .sub-menu {
        display: block !important;
    }

    .is_ie .mega-menu > .sub-menu > li {
        max-width: 45% !important;
        width: 100% !important;
        display: inline-block !important;
    }
}

@media (min-width: 896px) {
     .site-header > .wrap {
        position: relative;
    }

     .site-header .nav-primary,
     .site-header .nav-primary > .wrap,
     .site-header .nav-primary ul.menu,
     .site-header .nav-primary ul.menu > li.menu-item.mega-menu {
        position: initial;
    }

     .site-header .nav-primary ul.menu li.menu-item.mega-menu > ul.sub-menu {
        min-width: 850px;
        max-width: 850px;
    }

     .site-header .nav-primary ul.menu li.menu-item.mega-menu > ul.sub-menu > li.menu-item {
        flex: 1 1 30%;
        max-width: calc(100% / 2);
    }

}

.mega-menu ul.sub-menu ul.sub-menu {
    position: unset !important;
    opacity: 1 !important;
}


/* Mega Menu Custom Layout */
@media (min-width: 896px) {
    .mega-menu-container {
      position: absolute;
      top: 100%;
      left: 0;
      width: 100vw;
      background: #fff;
      display: none;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
      z-index: 1000;
    }
  
    .menu-item.mega-menu:hover .mega-menu-container {
      display: block;
    }
  
    .mega-menu-wrap {
      display: flex;
      justify-content: space-between;
      padding: 4rem;
      max-width: 1280px;
      margin: 0 auto;
    }
  
    .mega-menu-wrap--menu {
      flex: 1 1 60%;
    }
  
    .mega-menu-wrap--menu .sub-menu {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.5rem;
      list-style: none;
      margin: 0;
      padding: 0;
    }
  
    .mega-menu-wrap--menu .sub-menu li a {
      font-weight: bold;
      font-size: 1.4rem;
      color: #000;
      text-decoration: none;
      transition: color 0.2s ease-in-out;
    }
  
    .mega-menu-wrap--menu .sub-menu li a:hover {
      color: #1a78f6;
    }
  
    .mega-menu-wrap--cta {
      flex: 1 1 60%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 1.5rem;
    }
  
    .mega-menu-wrap--cta p {
      margin: 0;
      color: #333;
      line-height: 1.5;
    }
  
    .mega-menu-wrap--cta .mega-menu-callout p {
        background-color: #000;
        background-clip: text;
        color: #fff;
        font-size: 3.6rem;
        font-weight: 700;
        line-height: 1.2;
        margin: 0;
        text-align: center;
        text-shadow: 0px 3px 5px rgba(0, 0, 0, 0.27);
    }
  
    .mega-menu-wrap--cta .mega-menu-copy p {
      font-size: 1.4rem;
      color: #555;
    }
  
    .mega-menu-wrap--cta .mega-menu-action a.button {
        background: var(--junk-dark-green);
        transition: background 0.3s ease;
        border: none;
    }
  
    .mega-menu-wrap--cta .mega-menu-action a.button:hover {
      background: #ffffff;
      color: #000;
    }
  }

  @media (min-width: 896px) {
    .menu > .menu-item.mega-menu {
      position: relative;
    }
  
    .menu > .menu-item.mega-menu .mega-menu-container {
      position: absolute;
      top: 100%;
      /* left: 0; */
      width: 100%;
      background: #fff;
      z-index: 999;
      box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
    }
  
    .mega-menu-wrap {
      display: flex;
      padding: 3rem;
      max-width: 1280px;
      margin: 0 auto;
    }
  
    .mega-menu-wrap--menu {
      flex: 0 0 60%;
    }
  
    .mega-menu-wrap--cta {
      position: relative;
    }
  
    .mega-menu-wrap--cta p {
      margin: 0 0 1rem;
    }
  
    .mega-menu-wrap--cta .button {
      display: inline-block;
      background: var(--junk-red);
      color: #fff;
      padding: 2.1rem 1.5rem;
      text-decoration: none;
      border-radius: 6px;
    }
  
    .mega-menu-wrap--cta .button:hover {
      background: var(--junk-red);
    }
  
    .mega-menu-wrap--menu .sub-menu {
      display: flex;
      /* flex-direction: column; */
      gap: 0.75rem;
    }
  
    .mega-menu-wrap--menu .sub-menu li a {
      font-weight: bold;
      color: #111;
      text-decoration: none;
    }
  
    .mega-menu-wrap--menu .sub-menu li a:hover {
      color: var(--junk-red);
    }
   
  }


@media (min-width: 896px) {
    .nav-primary .menu > .menu-item > a:hover {
        color: var(--junk-red);
    }

    .menu > .menu-item-has-children > .sub-menu,
    .menu > .menu-item-has-children > .mega-menu-container {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        left: -9999px;
        opacity: 0;
        pointer-events: none;
        transition: 0.25s ease-in-out opacity, 0s 0.25s ease-in-out left;
    }

    .menu > .menu-item-has-children:hover > .sub-menu,
    .menu > .menu-item-has-children:hover > .mega-menu-container {
        left: 0;
        opacity: 1;
        pointer-events: all;
        transition: 0.25s ease-in-out opacity, 0s ease-in-out left;
    }

    .menu-item.mega-menu .sub-menu {
        position: static !important;
        right: auto;
        opacity: 1;
        pointer-events: auto;
        display: block !important;
        column-count: 2;
        gap: 3rem;
        padding: 0;
    }

    .menu-item.mega-menu .sub-menu li:not(:first-child) {
        margin-top: 4rem;
    }
}

@media (min-width: 896px) {
    .mega-menu-container .mega-menu-wrap .mega-menu-wrap--menu .sub-menu:before {
        display: none;
    }

    .mega-menu-container .mega-menu-wrap .mega-menu-wrap--menu .sub-menu svg {
        display: block;
        color: var(--junk-red);
    }

    .mega-menu-container {
      width: 100vw;
      left: 0;
      right: 0;
      position: absolute;
    }
  
    .mega-menu-wrap {
      width: 100%;
      max-width: none;
      padding: 0;
      display: flex;
    }
  
    .mega-menu-wrap--menu {
      flex: 1 1 100%;
      width: 100%;
      max-width: 100%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 4rem;
      padding: 6rem 5rem 7rem;
    }
  
    .mega-menu-wrap--menu .sub-menu {
      width: 100% !important;
      max-width: 100% !important;
      display: flex !important;
      height: auto;
      flex-wrap: wrap;
      padding: 0;
      box-shadow: none;
      gap: 2rem 0;
    }
  
    .mega-menu-wrap--menu .sub-menu > li {
      flex: 1 1 100%;
      max-width: 100%;
      padding: 0;
    }
}


  @media (max-width: 895px) {
    /* Hide mega menu CTA-style layout only */
    .mega-menu-wrap--cta,
    .mega-menu-ctas,
    .mega-menu-thumbnail,
    .mega-menu-callout,
    .mega-menu-copy,
    .mega-menu-action {
      display: none !important;
    }
  
    /* Ensure submenus are allowed to show */
    .mega-menu-container .sub-menu {
      display: block !important;
      position: relative;
      opacity: 1;
      pointer-events: auto;
      padding: 0;
      background: none;
      box-shadow: none;
      border: none;
    }
  }



/* Sub Menu */

.nav-primary .menu-item ul.sub-menu li a:before {
    display: none;
}

.nav-primary ul:not(.sub-menu) .menu-item.menu-item-has-children a:after {
    display: none;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f078";
}

.nav-primary ul:not(.sub-menu) .menu-item.menu-item-has-children a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    justify-content: center;
}

/* .nav-primary ul:not(.sub-menu) .menu-item.menu-item-has-children a svg {
    width: .7em;
    margin-left: 0.5rem;
    -webkit-transform: translateY(1px);
    -ms-transform: translateY(1px);
    transform: translateY(1px);
} */

.nav-primary ul.sub-menu .menu-item.menu-item-has-children a:after,
.nav-primary ul.sub-menu .menu-item a:after {
    display: none;
    content: "" !important;
}

.nav-primary .menu-item a:hover:before,
.nav-primary .menu-item a:focus:before,
.nav-primary .menu-item a:active:before {
    left: 0;
    right: 0;
}

.nav-primary .sub-menu a {
    font-weight: 500;
    font-size: 1.4rem;
    text-transform: uppercase;
    color: #3e3e3e;
}

.nav-primary .sub-menu a:hover {
    color: #979797;
}


.sub-menu {
    display: none;
    clear: both;
}

.sub-menu:before,
.sub-menu:after {
    content: '';
    position: absolute;
    display: block;
    clear: both;
}

.sub-menu:before {
    content: '';
    position: absolute;
    top: -5px;
    top: -0.5rem;
    height: 10px;
    height: 1rem;
    width: 10px;
    width: 1rem;
    background-color: rgba(0, 0, 0, 0.97);
    border-top: 1px solid rgba(0, 0, 0, 0.97);
    border-left: 1px solid rgba(0, 0, 0, 0.97);
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    z-index: 98;
    opacity: 1;
    -webkit-transition-delay: 0.3s;
    -o-transition-delay: 0.3s;
    transition-delay: 0.3s;
    display: none;
}

.sub-menu .sub-menu:before {
    content: '';
    position: absolute;
    top: -5px;
    top: 2rem;
    left: 30px;
    left: -0.5rem;
    height: 10px;
    height: 1rem;
    width: 10px;
    width: 1rem;
    background-color: rgba(8, 52, 91, 0.97);
    border-top: none;
    border-bottom: 1px solid rgba(8, 52, 91, 0.97);
    border-left: 1px solid rgba(8, 52, 91, 0.97);
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    z-index: 98;
    opacity: 1;
    -webkit-transition-delay: 0.3s;
    -o-transition-delay: 0.3s;
    transition-delay: 0.3s;
}

.sub-menu .menu-item {
    /* width: 100%; */
    width: fit-content;
    height: auto;
    padding: 0.5em 0;
}

.sub-menu .menu-item:first-of-type {
    margin-top: 1em;
}

.sub-menu a {
    padding-left: 0.618em;
}

.sub-menu .sub-menu {
    padding-left: 1em;
}

.nav-secondary .sub-menu .menu-item {
    height: auto;
}

.sub-menu-toggle {
    position: absolute;
    right: 4em;
    height: auto;
    top: 0.1em;
    background: none;
    padding: 1em;
    margin: 0 -1em;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.sub-menu-toggle:hover,
.sub-menu-toggle:focus {
    background: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

/* .sub-menu-toggle svg {
    color:#000;
}

.menu-item-has-children .sub-menu-toggle:focus {
    transform: rotate(-90deg);
    transition: transform 0.3s ease;
} */

/* @media (min-width: 896px) {
    .menu-item.menu-item-has-children:hover > .sub-menu {
        display: block;
    }
} */

@media (min-width: 896px) {

    .menu-item-has-children .sub-menu-toggle:hover {
        transform: rotate(180deg);
        transition: transform 0.3s ease;
    }

    .sub-menu {
        background-color: rgba(255, 255, 255, 1);
        top: 100%;
        position: absolute;
        margin-left: -1em;
        min-width: 20rem;
        z-index: 99;
        padding: 2rem;
        border-radius: 3px;
        -webkit-box-shadow: 0px 10px 28px -7px rgba(0, 0, 0, 0.2);
        box-shadow: 0px 10px 28px -7px rgba(0, 0, 0, 0.2);
    }

    .nav-primary .menu > .menu-item:first-child .sub-menu {
        min-width: 25rem;
    }

    .nav-primary .sub-menu a {
        color: #000;
    }

    .sub-menu:before {
        display: block;
    }

    .sub-menu .menu-item {
        padding: 0.5em 1em;
        height: auto;
    }

    li:not(.mega-menu) .menu-item {
        padding: 0;
        height: auto;
    }

    .sub-menu {
        display: flex;
        /* right: -9999px; */
        pointer-events: none;
        opacity: 0;
        /* transition: 0.25s ease-in-out opacity, 0s 0.25s ease-in-out right; */
    }

    .menu-item:hover > .sub-menu {
		/* right: 0; */
        /* left: -3em; */
		pointer-events: all;
        opacity: 1;
		transition: 0.25s ease-in-out opacity, 0s ease-in-out right;
	}

    .mega-menu:hover > .sub-menu {
        right: 0;
        left: unset;
        pointer-events: all;
        opacity: 1;
        transition: 0.25s ease-in-out opacity, 0s ease-in-out right;
    }

    .sub-menu .menu-item:first-of-type {
        margin-top: 0;
    }

    .sub-menu a {
        padding: 0;
        position: relative;
        word-wrap: break-word;
        color: #fff;
    }

    .sub-menu .sub-menu {
        margin: -0.1rem 0 0 19.9rem;
        padding-left: 0;
        left: -0.1rem;
        top: -0.5em;
        border: 1px solid #eceef1;
    }

    .sticky-header .shrink .nav-secondary ul ul.sub-menu .menu-item {
        height: auto;
    }

    .sub-menu-toggle {
        display: none;
    }

}


.widget_nav_menu ul:not(.sub-menu) {
    display: block;
    margin-left: 0;
}

@media (max-width: 895px) {
    .nav-primary ul:not(.sub-menu) .menu-item.menu-item-has-children a svg {
        display: none;
    }
}

.nav-primary ul.menu > li.menu-item > ul.sub-menu:before {
    content: "";
    display: none !important;
    position: absolute;
    top: -10px;
    right: var(--submenu-before-right, 0);
    width: 10px;
    height: 10px;
    background: black;
    transform: rotate(45deg);
}

@media (min-width: 896px) {
    .nav-primary ul.menu.has-pseudo > li.menu-item > ul.sub-menu:before {
        display: block;
    }
}

/* Mobile Menu */

.menu-toggle {
	background-color: transparent !important;
    position: unset;
    display: none;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin: 0;
    padding: 0;
    border: none !important;
	box-shadow: none !important;
}

.menu-toggle span,
.menu-toggle span:before,
.menu-toggle span:after {
    background-color: #000;
    position: relative;
    width: 26px;
    height: 3px;
    float: none;
    border-radius: 3px;
    transition: 0s 0.2s ease-in-out background-color;
}

.site-header .menu-toggle:not(.active) span {
	transition: 0.2s ease-in-out background-color;
}

.menu-toggle span:before {
    content: '';
    position: absolute;
    display: block;
    top: -0.8rem;
    transition: top 0.2s 0.2s, transform 0.2s 0s, background-color 0.2s 0s;
    transition-timing-function: ease-in-out;
}

.menu-toggle span:after {
    content: '';
    position: absolute;
    display: block;
    bottom: -0.8rem;
    transition: bottom 0.2s 0.2s, transform 0.2s 0s, -webkit-transform 0.2s 0s, background-color 0.2s 0s;
    transition-timing-function: ease-in-out;
}

.menu-toggle.active span {
    background-color: transparent;
    transition: 0.2s 0s ease-in-out background-color;
}

.menu-toggle.active span:before {
    background-color: #fff;
    top: 0;
    transform: rotate(45deg);
    transition: top 0.2s 0s, transform 0.2s 0.2s, background-color 0.2s 0s;
}

.menu-toggle.active span:after {
    background-color: #fff;
    bottom: 0;
    transform: rotate(-45deg);
    transition: bottom 0.2s 0s, transform 0.2s 0.2s, background-color 0.2s 0s;
}

.menu-toggle {
    background-color: transparent;
	display: none;
    border: none;
}

.menu-toggle span,
.menu-toggle span:before,
.menu-toggle span:after {
	background-color: #000;
	width: 3rem;
	height: 3.5px;
	border-radius: 50px;
}

.menu-toggle span:before {
	top: 0.8rem;
}

.menu-toggle span:after {
	bottom: 0.8rem;
}

.sub-menu-toggle {
	display: none;
}

 .menu-item-has-children {
     position: relative;
 }

@media (max-width: 1295px) {
	.site-header > .wrap,
    .nav-primary > .wrap {
		gap: min(3rem, 2.4vw);
	}

	.title-area {
		width: min(11.8rem, 9.1vw);
	}

	.nav-primary .menu {
		gap: min(3.2rem, 2.5vw);
	}

	.nav-primary .menu > .menu-item > a {
		font-size: min(1.4rem, 1.1vw);
	}


    .nav-primary .menu > .menu-item > a > span > .chevron-icon {
        width: min(1.4rem, 1.1vw);
        height: min(1.4rem, 1.1vw);
    }

    .nav-primary .menu > .menu-item > .mega-menu-container > .mega-menu-wrap > .mega-menu-wrap--menu > .sub-menu > .menu-item > a {
        font-size: min(2rem, 2vw);
        line-height: 2rem;
    }

    .mega-menu-wrap--menu .mega-sub-menu-title {
        font-size: min(2.4rem, 1.9vw);
    }

    .mega-menu-wrap--menu .sub-menu {
        gap: 1rem 0;
    }

	/* .nav-primary .menu > .menu-item > a > span {
		gap: min(1rem, 0.9vw);
	} */

    .primary-menu-ctas .gb-layout-column-wrap {
        gap: min(2rem, 1.7vw);
    }

    .primary-menu-ctas .phone-number-block a {
        font-size: min(1.5rem, 1.2vw);
    }

    .primary-menu-ctas .phone-number-block a .phone-icon {
        width: min(1.5rem, 1.2vw);
        height: min(1.5rem, 1.2vw);
    }

    .mega-menu-callout {
        padding: min(7rem, 5.4vw);
    }

    .mega-menu-wrap--cta .mega-menu-callout p {
        font-size: min(3.6rem, 2.8vw);
    }

	.nav-primary .primary-menu-ctas .custom-button a.button {
		font-size: min(1.5rem, 1.1vw);
		padding: min(1rem, 0.8vw) min(1.5rem, 1.2vw);
        transition: 0.25s ease-in-out background-color, 0.25s ease-in-out color, 0.25s ease-in-out border-color;
	}
}

@media (max-width: 895px) {
	.site-header > .wrap {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
		gap: 2rem;
	}

	.title-area {
		width: 20rem;
		max-width: 30vw;
	}

	.menu-toggle,
	.sub-menu-toggle {
		display: flex;
	}

    .nav-primary {
        background-color: var(--junk-red);
        position: fixed !important;
		width: 93vw;
        max-width: 40rem;
        height: 100vh;
        top: 0;
        left: auto;
		right: -100%;
		box-shadow: none;
        pointer-events: none;
        overflow: hidden;
		transition: 0.4s ease-in-out right, 0.4s ease-in-out box-shadow;
    }

    .nav-primary.active {
        right: 0;
        pointer-events: all;
		box-shadow: 0 3px 7px -1px rgba(0, 0, 0, 0.3);
    }

	.nav-primary > .wrap {
		display: flex;
		flex-direction: column;
		justify-content: flex-start;
		gap: 4rem;
		width: 100%;
		max-width: 100%;
		height: 100%;
		margin: 0;
		padding: min(11rem, 14vh) 0 min(6rem, 8.5vh);
	}

	.nav-primary .menu {
		flex: 0 1 fit-content;
		display: flex;
		flex-wrap: wrap;
		gap: 2rem;
		height: auto;
		margin: 0;
        padding: 0 calc(4rem - 7px) 4rem 4rem;
        border-bottom: 1px solid #ececec;
        overflow-y: scroll;
    }

    .nav-primary ul.menu::-webkit-scrollbar {
        -webkit-appearance: none;
        appearance: none;
        width: 7px;
    }

    .nav-primary ul.menu::-webkit-scrollbar-thumb {
        border-radius: 5px;
        background-color: rgba(255, 255, 255, 0.3);
        -webkit-box-shadow: 0 0 1px rgba(255, 255, 255, 0.3);
        box-shadow: 0 0 1px rgba(255, 255, 255, 0.3);
    }

	.nav-primary .menu > .menu-item {
		flex: 1 1 100%;
        flex-wrap: wrap;
		row-gap: 0;
        column-gap: 3rem;
        min-height: 40px;
		padding: 0 !important;
    }

	.nav-primary .menu > .menu-item > a {
		flex: 1 1 calc(100% - 3rem - 40px);
        justify-content: flex-start !important;
		color: #fff !important;
		font-size: 1.6rem;
		font-weight: 700;
		letter-spacing: 0;
	}

	.nav-primary .menu > .menu-item > a > span > .chevron-icon {
		display: none;
	}

	.nav-primary .menu > .menu-item > .sub-menu,
    .nav-primary .menu > .menu-item > .mega-menu-container {
		position: unset;
		display: flex;
        flex-direction: column;
        gap: 2rem;
		width: 100%;
		max-height: 0;
		margin: 0;
		overflow: hidden;
		transition: 0.4s ease-in-out max-height;
	}

	.nav-primary .menu > .menu-item > .sub-menu-toggle {
		flex: 1 1 40px;
        position: unset;
		background-color: transparent;
		display: flex;
		align-items: center;
		justify-content: center;
		width: 40px;
		height: 40px;
		margin: 0;
		padding: 0;
		border-radius: 1rem;
        border: none;
		transition: 0.4s ease-in-out background-color;
	}

	.nav-primary .menu > .menu-item > .sub-menu-toggle > .sub-menu-icon {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 2rem;
		height: 2rem;
		color: #fff;
		font-size: 2rem;
		transition: 0.4s ease-in-out transform;
	}

	.nav-primary .menu > .menu-item > .sub-menu-toggle[aria-expanded="true"] > .sub-menu-icon {
		transform: rotate(-180deg);
	}

	.nav-primary .menu > .menu-item > .sub-menu-toggle[aria-expanded="true"] {
		background-color: #e33f45;
	}

    .nav-primary .menu > .menu-item > .mega-menu-container > .mega-menu-wrap > .mega-menu-wrap--menu > span {
        display: none;
    }

    .nav-primary .menu > .menu-item > .mega-menu-container > .mega-menu-wrap > .mega-menu-wrap--menu > .sub-menu {
        position: unset;
		display: flex !important;
        flex-direction: column;
        gap: 2rem;
		width: 100%;
		margin: 0;
        padding: 0;
		overflow: hidden;
    }

	.nav-primary .menu > .menu-item > .sub-menu > .menu-item,
    .nav-primary .menu > .menu-item > .mega-menu-container > .mega-menu-wrap > .mega-menu-wrap--menu > .sub-menu > .menu-item {
		display: flex;
        padding: 0;
	}

	.nav-primary .menu > .menu-item > .sub-menu > .menu-item:first-child,
    .nav-primary .menu > .menu-item > .mega-menu-container > .mega-menu-wrap > .mega-menu-wrap--menu > .sub-menu > .menu-item:first-child {
		margin-top: 2rem;
	}

	.nav-primary .menu > .menu-item > .sub-menu > .menu-item:last-child,
    .nav-primary .menu > .menu-item > .mega-menu-container > .mega-menu-wrap > .mega-menu-wrap--menu > .sub-menu > .menu-item:last-child {
		margin-bottom: 2rem;
	}

	.nav-primary .menu > .menu-item > .sub-menu > .menu-item > a,
	.nav-primary .menu > .menu-item > .mega-menu-container > .mega-menu-wrap > .mega-menu-wrap--menu > .sub-menu > .menu-item > a {
		color: #fff;
		font-size: 1.5rem;
		font-weight: 500;
		padding-left: 1rem;
	}

	.nav-primary .menu > .menu-item > .sub-menu > .menu-item.menu-item-has-children {
		display: flex;
		flex-direction: column;
		gap: 2rem;
	}

	.nav-primary .menu > .menu-item > .sub-menu > .menu-item.menu-item-has-children:not(:first-child) {
		margin-top: 1rem;
	}

	.nav-primary .menu > .menu-item > .sub-menu > .menu-item.menu-item-has-children > p,
	.nav-primary .menu > .menu-item > .sub-menu > .menu-item.menu-item-has-children > a {
		color: #fff;
		font-size: 1.5rem;
		font-weight: 900;
		margin: 0;
		width: fit-content;
		border-bottom: 1px solid;
	}

	.nav-primary .menu > .menu-item > .sub-menu > .menu-item.menu-item-has-children > .sub-menu-toggle {
		display: none;
	}

	.nav-primary .menu > .menu-item > .sub-menu > .menu-item > .sub-menu {
		display: flex;
		flex-direction: column;
		gap: 1rem;
	}

	.primary-menu-ctas {
		padding: 0 4rem;
	}

    .primary-menu-ctas .gb-layout-column-wrap {
        flex-direction: column;
        gap: 2rem;
    }

    /* .phone-number-block {
        justify-content: center;
    } */

    .primary-menu-ctas .phone-number-block a {
        color: #fff;
        font-size: 1.6rem;
    }

    .primary-menu-ctas .phone-number-block a:hover,
    .primary-menu-ctas .phone-number-block a:focus {
        color: #dbdbdb;
    }

	.nav-primary .primary-menu-ctas .custom-button a.button {
		background-color: #fff;
		color: #000;
		font-size: 1.6rem;
		padding: 1.4rem 2.2rem;
		border-color: #000;
        width: 100%;
        justify-content: center;
	}

	.nav-primary .primary-menu-ctas .custom-button a.button:hover,
	.nav-primary .primary-menu-ctas .custom-button a.button:focus {
		background-color: #dbdbdb;
	}

    .nav-primary + .widget-area {
        flex: 1;
        display: flex;
        justify-content: flex-end;
    }

    .mobile-menu-ctas a.button {
        font-size: 1.5rem;
        padding: 1rem 1.5rem;
        box-shadow: none;
    }

    .mobile-menu-ctas a.button svg {
        width: 1.5rem;
        height: 1.5rem;
    }
}

@media (max-width: 767px) {
	.site-header > .wrap {
		width: 100%;
		max-width: 100%;
		margin: 0;
		padding: 0 var(--theme-wrap-padding-mobile);
	}
}

 /* Confirmation block */

 .confirmation-block {
     text-align: center;
 }

 .confirmation-block svg {
     font-size: 15rem;
     color: #008000;
 }

 .confirmation-page .custom-socials {
     margin: 0 auto;
     padding: 3rem;
 }

 /* Front Page Banner */

 section.fp1 {
     display: -webkit-box;
     display: -ms-flexbox;
     display: flex;
     padding: 4rem 7%;
     overflow: hidden;
     min-height: 400px;
     background-size: cover;
     background-position: top;
     position: relative;
     z-index: 10;
     align-items: center;
 }


 .fp1-image::after {
     content: "";
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background-color: rgb(16 16 16 / 40%);
     z-index: 1;
 }

 .fp1-image img {
     opacity: 0;
     -webkit-transition: .4s all ease-in-out;
     -o-transition: .4s all ease-in-out;
     transition: .4s all ease-in-out;
     width: 100%;
     height: 100%;
     object-fit: cover;
     object-position: center center;
 }

 .fp1-image {
     position: absolute;
     height: 100%;
     width: 100%;
     top: 0;
     left: 0;
 }

 .fp1-image.transitioning {
     -webkit-animation: kenburnsBig 15s infinite;
     animation: kenburnsBig 15s infinite;
 }

 .fp1-image.transitioning:not(.active) img {
     opacity: 0;
 }

 .fp1-image.active img {
     opacity: 1;
     z-index: 3;
 }

 .fp1-overlay {
     position: absolute;
     display: block;
     height: 100%;
     width: 100%;
     top: 0;
     left: 0;
     z-index: 2;
     -webkit-transition: 0.24s ease-in-out all;
     -o-transition: 0.24s ease-in-out all;
     transition: 0.24s ease-in-out all;
     filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='rgba(0, 0, 0, 0.9)', endColorstr='rgba(0, 0, 0, 0)');
     background-image: -ms-linear-gradient(left, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.85) 25%, rgba(0, 0, 0, 0.6) 35%, rgba(0, 0, 0, 0.01) 50%);
     background: -o-linear-gradient(left, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.85) 25%, rgba(0, 0, 0, 0.6) 35%, rgba(0, 0, 0, 0.01) 50%);
     background: linear-gradient(to right, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.85) 25%, rgba(0, 0, 0, 0.6) 35%, rgba(0, 0, 0, 0.01) 50%);
 }

 .fp1-overlay.is-active {
     background: -o-linear-gradient(left, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.85) 25%, rgba(0, 0, 0, 0.6) 35%, rgba(0, 0, 0, 0.01) 50%, rgba(0, 0, 0, 0.6) 65%, rgba(0, 0, 0, 0.85) 75%, rgba(0, 0, 0, 0.9) 100%);
     background: linear-gradient(to right, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.85) 25%, rgba(0, 0, 0, 0.6) 35%, rgba(0, 0, 0, 0.01) 50%, rgba(0, 0, 0, 0.6) 65%, rgba(0, 0, 0, 0.85) 75%, rgba(0, 0, 0, 0.9) 100%);
 }

 .fp1-content {
     color: #fff;
     display: -webkit-box;
     display: -ms-flexbox;
     display: flex;
     width: 100%;
     z-index: 5;
     -webkit-box-align: end;
     -ms-flex-align: end;
     align-items: flex-end;
     justify-content: flex-start;
 }

 .fp1-content__left {
     -webkit-box-flex: 1;
     -ms-flex: 1 50%;
     flex: 1 50%;
 }

 .fp1-content__right {
     max-width: 450px;
     display: -webkit-box;
     display: -ms-flexbox;
     display: flex;
     text-align: left;
     z-index: 9;
 }

 section.fp1.fp1-mobile {
     display: none;
     text-align: center;
     -webkit-box-align: end;
     -ms-flex-align: end;
     align-items: flex-end;
     min-height: 400px;
     color: #fff;
     background-position: 91% 50%;
 }

 section.fp1-mobile.fp1 > div {
     text-shadow: 0px 1px 2px rgba(255, 255, 255, 0.16);
 }

 @media (min-width: 992px) {
     section.fp1 {
         min-height: 450px;
     }
 }

 @media (min-width: 1200px) {
     .fp1-image {
         top: 0;
     }

     section.fp1 {
         min-height: 550px;
     }
 }

 @media (min-width: 1400px) {

     section.fp1 {
         min-height: 500px;
     }
 }

 @media (min-width: 1700px) {

     section.fp1 {
         min-height: 600px;
     }
 }

 .fp1-banner-container {
     position: absolute;
     width: 100%;
     height: 100%;
     top: 0;
     left: 0;
     z-index: 1;
 }

 .fp1-banner-container img {
     position: absolute;
     top: 50%;
     left: 50%;
     min-width: 100%;
     min-height: 100%;
     transform: translate(-50%, -50%);
     z-index: 0;
     object-fit: cover;
 }

 .fp1-banner-container .carousel,
 .fp1-banner-container .carousel-inner,
 .fp1-banner-container .carousel-item {
     width: 100%;
     height: 100%;
 }

 .fp1-banner-container .carousel-item > img {
     animation: tto-zoom 20s forwards;
     object-fit: cover;
     object-position: center center;
     width: 100%;
     height: 100%;
 }


@keyframes tto-zoom {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.3);
    }
}

.fp1 {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    background-color: inherit;
    opacity: inherit;
}

.overlay-content {
    position: absolute;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    color: inherit;
}

.fp1 .center-center {
    top: 50%;
    left: 50%;
}

.fp1 .center-right {
    top: 50%;
    right: 10%;
    left: auto;
    transform: translate(0, -50%);
    text-align: right;
}

.fp1 .center-left {
    top: 50%;
    left: 10%;
    right: auto;
    transform: translate(0, -50%);
    text-align: left;
}

.fp1 .center-top {
    top: 10%;
    left: 50%;
    transform: translate(-50%, 0);
    text-align: center;
}

.fp1 .center-bottom {
    bottom: 10%;
    left: 50%;
    transform: translate(-50%, 0);
    text-align: center;
}

.fp1 .top-left {
    top: 10%;
    left: 10%;
    transform: translate(0, 0);
    text-align: left;
}

.fp1 .top-right {
    top: 10%;
    right: 10%;
    left: auto;
    transform: translate(0, 0);
    text-align: right;
}

.fp1 .bottom-left {
    bottom: 10%;
    left: 10%;
    top: auto;
    transform: translate(0, 0);
    text-align: left;
}

.fp1 .bottom-right {
    bottom: 10%;
    right: 10%;
    top: auto;
    left: auto;
    transform: translate(0, 0);
    text-align: right;
}

/*** Testimonials ***/

.testimonial-item {
    clear: both;
    -webkit-transition: all 0.75s cubic-bezier(0, 1, 0.5, 1);
    transition: all 0.75s cubic-bezier(0, 1, 0.5, 1);
}

.testimonial-item--copy {
    text-align: left;
    margin: 0 2rem 0 0;
}

.testimonial-item--copy p {
    margin: 0 0 1.5rem;
    font-size: 1.7rem;
}

.testimonial-item--name {
    display: block;
    padding-top: 1rem;
    font-weight: 600;
    text-align: left;
    font-size: 1.8rem;
}

.testimonial-item--icon {
    position: absolute;
    right: 1rem;
    top: 0.5rem;
    font-size: 3rem;
    color: #03c3f2;
}

.testimonial-item.testimonial-list-item {
    margin: 0 0 5rem;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.25), 0 2rem 2rem -1rem rgba(35, 44, 57, 0.05);
}

blockquote.testimonial-item--copy::before {
    font-size: 5rem;
    font-weight: 700;
    color: #03c3f2;
    left: -40px;
    top: -15px;
    display: none;
}

/*** Reviews ***/

.review-items-wrapper {
    margin: 6rem;
}

.review-item {
    background-color: #ffffff;
    padding: 2em 2.2em 2em;
    border-radius: 4px;
    box-shadow: 0 2rem 2rem -1rem rgba(35, 44, 57, 0.05);
    clear: both;
    -webkit-transition: all 0.75s cubic-bezier(0, 1, 0.5, 1);
    transition: all 0.75s cubic-bezier(0, 1, 0.5, 1);
    border-top: 3px solid #03c3f2;
    position: relative;
    min-height: 250px;
}

.review-item:first-child {
    padding: 2em 2.2em 2em;
}

.review-item--copy {
    text-align: left;
    margin: 0 2rem 0 0;
}

.review-item--copy p {
    margin: 0 0 1.5rem !important;
    font-size: 1.7rem;
}

.review-item--copy {
    margin-top: 2rem !important;
}

.review-item--name {
    display: block;
    padding-top: 1rem;
    font-weight: 600;
    text-align: left;
    font-size: 1.8rem;
}

.review-item--icon {
    position: absolute;
    right: 1rem;
    top: 0.5rem;
    font-size: 3rem;
    color: #03c3f2;
}

.review-item.review-list-item {
    margin: 0 0 5rem;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.25), 0 2rem 2rem -1rem rgba(35, 44, 57, 0.05);
}

blockquote.review-item--copy::before {
    font-size: 5rem;
    font-weight: 700;
    color: #03c3f2;
    left: -40px;
    top: -15px;
    display: none;
}

/*** Carriers ***/

.brand-partner {
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.15);
    margin: 0 0 4rem;
    position: relative;
}

.brand-partner::before {
    content: "";
    display: block;
    height: 4px;
    background-color: #20CC75;
    width: 35%;
    margin: 0 auto;
}

.brand-partner--logo {
    padding: 1rem 2rem;
}

.brand-partner--content {
    text-align: center;
    padding: 1rem 2rem 3rem;
}

.brand-partner:last-child {
    padding-bottom: 3rem;
}

.brand-partner--name {
    font-size: 1.8rem;
    letter-spacing: -.03em;
    font-weight: 800;
    color: #444;
    margin: 0;
}

a.brand-partner--phone {
    display: block;
    color: #444;
}

a.brand-partner--phone:hover {
    color: #20CC75;
}

a.brand-partner--cta.button {
    font-weight: 500;
    border-width: 1px !important;
}

.brand-partner--button-container {
    margin-top: 2rem;
}

.brand-partner--button-container.with-pdf {
    display: flex;
    justify-content: center;
    align-items: center;
}

.brand-partner--button-container.with-pdf a {
    font-size: 1.4rem;
    padding: 8px 30px;
    line-height: 1.4;
}

.brand-partner--button-container.with-pdf a:first-child {
    margin-right: 1rem;
}

.brand-partner--contact-info {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 26px;
}

.brand-partner--contact-info a {
    font-weight: 500;
}

.brand-partner--logo {
    padding: 1rem 2rem;
    min-height: 203px;
    height: 200px;
    display: flex;
    align-items: center;
}

.brand-partner--logo img {
    height: 200px;
    object-fit: cover;
    object-position: center;
}

span.dot-separater {
    padding: 0 5px;
    font-size: 3rem;
    line-height: .1;
    vertical-align: middle;
}

/* Interactive list */

section.inner-page-section.interactive-list > .inner-page-section--wrapper {
    position: relative;
    padding: 6rem 13rem 6rem 13rem;
    z-index: 1;
}

@media (max-width: 767px) {
    section.inner-page-section.interactive-list > .inner-page-section--wrapper {
        padding: 6rem 3rem 6rem 8rem;
    }
}

section.inner-page-section.interactive-list > .inner-page-section--wrapper:before {
    content: '';
    background-color: transparent;
    position: absolute;
    display: block;
    width: 50%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
    pointer-events: none;
}

section.inner-page-section.interactive-list > .inner-page-section--wrapper .wrap {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
    z-index: 3;
}

.entry-content .interactive-list-section--heading h2 {
    color: #243846;
    font-size: 5rem;
    font-weight: 800;
    line-height: 1;
    margin: 2rem 0 3.5rem;
    padding: 0 4rem 0 6vw;
}

.interactive-list-copy {
    position: relative;
    width: 100%;
    height: fit-content;
}

.interactive-list-copy .list-item-content {
    position: absolute;
    background-color: #fff;
    padding: 4rem;
    box-shadow: 0 6px 12px 0 rgba(0, 0, 0, 0.2);
    border-radius: 0;
    top: 0;
    left: 0;
    opacity: 0;
    transition: none;
    pointer-events: none;
    width: 100%;
    height: auto !important;
}

.interactive-list-copy .list-item-content.active {
    position: relative;
    opacity: 1;
    transition: 0.3s ease-in-out all;
    pointer-events: all;
}

.interactive-list-copy .list-item-content img {
    margin: 0 auto 3rem;
}

.entry-content ul.interactive-list {
    margin: 0;
}

.entry-content ul.interactive-list > li.list-item {
    background-color: #fff;
    border-radius: 0;
    color: #000;
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1;
    list-style-type: none;
    cursor: pointer;
    border-left: 3px solid #06c3f2;
    transition: 0.3s ease-in-out all;
}

.entry-content ul.interactive-list > li.list-item:not(:last-of-type) {
    margin-bottom: 1.6rem;
}

ul.interactive-list li.list-item .list-item-info {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.list-item-info .list-item-info--left-icon {
    width: 50px;
    height: 50px;
}

.list-item-info .list-item-info--left-icon img {
    width: 100%;
    height: 100%;
}

.list-item-info .list-item-info--left-icon p.list-item--number {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    color: #777;
    font-size: 1.7rem;
    font-weight: 700;
}

.list-item-info .list-item-info--left-icon p.list-item--number span {
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 70%;
    height: 70%;
    font-size: 80%;
    font-weight: 800;
    line-height: 1;
    padding: 0;
    border: 3px solid #06c3f2;
    border-radius: 50%;
}

.list-item-info .list-item-info--right-title h3 {
    color: #243846;
    font-size: 1.8rem;
    font-weight: 800;
}

.interactive-list-section--right {
    position: relative;
    z-index: 1;
}


.interactive-list-section--right:before {
    content: '';
    background-color: #fff;
    position: absolute;
    display: none;
    width: 200vw;
    height: 100%;
    top: 0;
    left: -100vw;
    z-index: 2;
}

.interactive-list-section--right .interactive-list-copy {
    position: relative;
    z-index: 3;
}

.interactive-list-section--right-content .list-item-content p {
    margin: unset;
}

@media (min-width: 992px) {
    section.inner-page-section.interactive-list.light-background > .inner-page-section--wrapper:before {
        background-color: #f5f5f5;
    }

    .interactive-list-section--right-background {
        content: '';
        background-color: transparent;
        position: absolute;
        display: block;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        z-index: 2;
        pointer-events: none;
    }
}

@media (max-width: 991px) {
    section.inner-page-section.interactive-list > .inner-page-section--wrapper {
        padding-bottom: 0;
    }

    section.inner-page-section.interactive-list > .inner-page-section--wrapper:before {
        width: 100%;
    }

    section.inner-page-section.interactive-list > .inner-page-section--wrapper .wrap {
        display: flex;
        flex-direction: column;
        padding: 0 1vw;
    }

    .interactive-list-section--left {
        padding: 0 0 9rem;
    }

    .entry-content .interactive-list-section--heading h2 {
        padding: 0;
    }

    .interactive-list-section--right {
        padding: 9rem 0;
    }

    .interactive-list-copy .list-item-content {
        width: 100%;
        padding: 5rem;
        display: none;
        top: 0 !important;
    }
}

@media (max-width: 600px) {
    .interactive-list-section--left {
        padding: 0 0 6rem;
    }

    .interactive-list-section--right {
        padding: 0;
    }
}

.interactive-list {
    background-color: #f2f2f2;
}

.interactive-list-container {
    padding: 0 4rem 0 0;
}

.interactive-list svg {
    color: #000;
}

.interactive-list svg:hover {
    opacity: 0.5;
}

.interactive-list-section--button a {
    background-color: #000;
    display: flex;
    align-items: center;
    gap: 1rem;
    height: fit-content;
    justify-content: space-evenly;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'ArialNovaCondensed', sans-serif;
    line-height: 1;
    padding: 1.3rem 2.7rem;
    letter-spacing: 1.1px;
    word-spacing: 1.6px;
    border: none;
    border-radius: 0;
    box-shadow: none;
    text-transform: uppercase;
    filter: none;
    transition: 0.25s ease-in-out filter;
}

.interactive-list-section--button svg {
    color: #fff;
}

.interactive-list-section--button a:hover {
    opacity: 0.5;
}

.interactive-list-section--a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #000;
}

.interactive-list-section--a:hover {
    opacity: 0.5;
}

.list-item-info--right-description {
    display: flex;
    align-items: normal;
    gap: 0.5rem;
}

.list-item-info--right-description-icon {
    display: none;
}

@keyframes slide-in {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.list-item:hover .list-item-info--right-description-icon {
    display: inline-block;
    animation: slide-in 1s ease forwards;
}

.list-item:hover .list-item {
    transform: translateY(-2px);
}

.list-item-info {
    width: 100%;
    padding: 0 2rem;
}

.list-item-info--right-description {
    display: flex;
    align-items: normal;
    justify-content: space-between;
    width: 100%;
    gap: 0.5rem;
}

.list-item-info--right {
    width: 100%;
}

.interactive-list-block-heading {
    padding: 2rem 13rem 0;
    background: #f2f2f2;
}

@media (max-width: 991px) {
    .interactive-list-block-heading {
        padding: 2rem 5rem 0;
        background: #f2f2f2;
    }
}

.interactive-list-block-heading h2 {
    font-size: 3rem;
}

.list-item-info--right-description p {
    margin: 0;
}

.moving-copy-container {
    display: block;
    width: 100%;
    height: 100%;
}

.moving-copy {
    position: sticky;
    top: 0;
    left: 0;
    height: fit-content;
}

/* Timeline */

.bt-story {
    position: relative;
    display: flex;
    flex-direction: column;
    max-width: 1280px;
    margin: 0 auto;
    padding: 8rem;
    z-index: 1;
}

.bt-story:before {
    display: block;
    content: '';
    position: absolute;
    border-left: 3px dashed #f2f2f2;
    width: 3px;
    height: 100%;
    top: 3rem;
    left: calc(50% - 1.5px);
    z-index: -1;
}

.bt-story--item {
    position: relative;
    width: 50%;
    padding: 0 calc(8rem + 1.5px) 0 0;
    z-index: 2;
}

.bt-story--item:nth-of-type(2n + 1) {
    margin-left: auto;
    padding: 0 0 0 calc(8rem + 1.5px);
}

.bt-story--item {
    position: relative;
}

.bt-story--item:before {
    content: '';
    background-color: white;
    border: 3px solid #06c3f2;
    position: absolute;
    display: block;
    width: 40px;
    height: 40px;
    top: calc(5rem + 20px);
    right: -20px;
    border-radius: 50%;
    z-index: 3;
}

.bt-story--item:nth-of-type(2n + 1):before {
    left: -20px;
    right: auto;
}


.bt-story--item-index {
    position: absolute;
    top: calc(5rem + 20px);
    right: -20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 600;
    color: #000;
    z-index: 4;
}

.bt-story--item:nth-of-type(2n + 1) .bt-story--item-index {
    left: -20px;
    right: auto;
}

@media (max-width: 767px) {
    .bt-story--item .bt-story--item-index {
        left: 5px;
        right: auto;
    }

    .bt-story--item-index {
        top: calc(3rem + 4px);
    }

    .bt-story--item:nth-of-type(2n + 1) .bt-story--item-index {
        left: 5px;
        right: auto;
    }
}

.site-container .entry-content .bt-story .bt-story--item .bt-story--item-inner {
    background-color: #f2f2f2;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 3rem;
    border-radius: 0;
    box-shadow: 0px 3px 7px -1px rgba(0, 0, 0, 0.27);
    overflow: hidden;
}

.bt-story--item-year h3 {
    font-size: 2rem;
    font-weight: 400;
    font-family: 'ArialNovaBold';
    margin: 0;
    letter-spacing: 0.2px;
}

.bt-story--item-milestone p {
    font-size: 1.5rem;
    line-height: 1.6;
}

@media (max-width: 767px) {

    .bt-story {
        gap: 6rem;
        margin: 6rem auto 0;
        padding: 6rem;
    }

    .bt-story:before {
        left: 83px;
    }

    .bt-story--item,
    .bt-story--item:nth-of-type(2n+1) {
        width: 100%;
        padding: 0 0 0 5rem;
    }

    .bt-story--item:before,
    .bt-story--item:nth-of-type(2n + 1):before {
        top: 33.2px;
        left: 5px;
        right: auto;
    }
}

/* Inner Page Header */

section.inner-page-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 4rem 7%;
    overflow: hidden;
    min-height: 400px;
    background-size: cover;
    background-position: top;
    position: relative;
    z-index: 10;
    align-items: center;
}


.inner-page-header-image::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgb(16 16 16 / 40%);
    z-index: 1;
}

.inner-page-header-image img {
    opacity: 0;
    -webkit-transition: .4s all ease-in-out;
    -o-transition: .4s all ease-in-out;
    transition: .4s all ease-in-out;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.inner-page-header-image {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
}

.inner-page-header-image.transitioning {
    -webkit-animation: kenburnsBig 15s infinite;
    animation: kenburnsBig 15s infinite;
}

.inner-page-header-image.transitioning:not(.active) img {
    opacity: 0;
}

.inner-page-header-image.active img {
    opacity: 1;
    z-index: 3;
}

.inner-page-header-overlay {
    position: absolute;
    display: block;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 2;
    -webkit-transition: 0.24s ease-in-out all;
    -o-transition: 0.24s ease-in-out all;
    transition: 0.24s ease-in-out all;
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='rgba(0, 0, 0, 0.9)', endColorstr='rgba(0, 0, 0, 0)');
    background-image: -ms-linear-gradient(left, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.85) 25%, rgba(0, 0, 0, 0.6) 35%, rgba(0, 0, 0, 0.01) 50%);
    background: -o-linear-gradient(left, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.85) 25%, rgba(0, 0, 0, 0.6) 35%, rgba(0, 0, 0, 0.01) 50%);
    background: linear-gradient(to right, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.85) 25%, rgba(0, 0, 0, 0.6) 35%, rgba(0, 0, 0, 0.01) 50%);
}

.inner-page-header-overlay.is-active {
    background: -o-linear-gradient(left, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.85) 25%, rgba(0, 0, 0, 0.6) 35%, rgba(0, 0, 0, 0.01) 50%, rgba(0, 0, 0, 0.6) 65%, rgba(0, 0, 0, 0.85) 75%, rgba(0, 0, 0, 0.9) 100%);
    background: linear-gradient(to right, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.85) 25%, rgba(0, 0, 0, 0.6) 35%, rgba(0, 0, 0, 0.01) 50%, rgba(0, 0, 0, 0.6) 65%, rgba(0, 0, 0, 0.85) 75%, rgba(0, 0, 0, 0.9) 100%);
}

.inner-page-header-content {
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    z-index: 5;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    justify-content: flex-start;
}

.inner-page-header-content__left {
    -webkit-box-flex: 1;
    -ms-flex: 1 50%;
    flex: 1 50%;
}

.inner-page-header-content__right {
    max-width: 450px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    text-align: left;
    z-index: 9;
}

section.inner-page-header.inner-page-header-mobile {
    display: none;
    text-align: center;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    min-height: 400px;
    color: #fff;
    background-position: 91% 50%;
}

section.inner-page-header-mobile.inner-page-header > div {
    text-shadow: 0px 1px 2px rgba(255, 255, 255, 0.16);
}

.inner-page-header-banner-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.inner-page-header-banner-container img {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    z-index: 0;
    object-fit: cover;
}

.inner-page-header-banner-container .carousel,
.inner-page-header-banner-container .carousel-inner,
.inner-page-header-banner-container .carousel-item {
    width: 100%;
    height: 100%;
}

.inner-page-header-banner-container .carousel-item > img {
    animation: tto-zoom 20s forwards;
    object-fit: cover;
    object-position: center center;
    width: 100%;
    height: 100%;
}


@keyframes tto-zoom {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.3);
    }
}

.inner-page-header {
    position: relative;
    height: 50vh;
    width: 100%;
    overflow: hidden;
    background-color: inherit;
    opacity: inherit;
}

.inner-page-header .overlay-content {
    position: absolute;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    color: inherit;
}

.inner-page-header .center-center {
    top: 50%;
    left: 50%;
}

.inner-page-header .center-right {
    top: 50%;
    right: 10%;
    left: auto;
    transform: translate(0, -50%);
    text-align: right;
}

.inner-page-header .center-left {
    top: 50%;
    left: 10%;
    right: auto;
    transform: translate(0, -50%);
    text-align: left;
}

.inner-page-header .center-top {
    top: 10%;
    left: 50%;
    transform: translate(-50%, 0);
    text-align: center;
}

.inner-page-header .center-bottom {
    bottom: 10%;
    left: 50%;
    transform: translate(-50%, 0);
    text-align: center;
}

.inner-page-header .top-left {
    top: 10%;
    left: 10%;
    transform: translate(0, 0);
    text-align: left;
}

.inner-page-header .top-right {
    top: 10%;
    right: 10%;
    left: auto;
    transform: translate(0, 0);
    text-align: right;
}

.inner-page-header .bottom-left {
    bottom: 10%;
    left: 10%;
    top: auto;
    transform: translate(0, 0);
    text-align: left;
}

.inner-page-header .bottom-right {
    bottom: 10%;
    right: 10%;
    top: auto;
    left: auto;
    transform: translate(0, 0);
    text-align: right;
}

/* Background slider */

.slider-img {
    height: 400px;
    object-fit: cover;
    width: 100%;
    display: block;
}

.thumbnails {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.thumbnail {
    width: 60px;
    height: 60px;
    margin: 0 10px;
    border: 2px solid transparent;
    cursor: pointer;
    opacity: 0.6;
    object-fit: cover;
    transition: opacity 0.3s, border-color 0.3s;
}

.thumbnail.active {
    border-color: #03c3f2;
    opacity: 1;
}

.thumbnail:hover {
    opacity: 0.8;
}

.slider-item {
    display: none;
}

.slider-item.active {
    display: block;
}

.unique-slider {
    padding: 8rem 0;
}

/* Address block */

.address-block {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.address-block .address-block--item {
    display: flex;
    gap: 2rem;
}

.address-block svg {
    color: #004dbe;
    font-size: 2.1rem;
    padding: 0.5rem 0 0;
}

.address-block p,
.address-block a {
    font-size: 1.9rem;
    margin: 0;
}

.address-block a {
    color: #004dbe;
    font-weight: 600;
    text-decoration: none;
    transition: 0.25s ease-in-out all;
}

.address-block a:hover {
    opacity: 0.78;
}

/* Services list */

.tto-services-list ul {
    margin: 0;
}

.tto-services-list ul li {
    list-style-type: none;
}

.tto-services-list ul li a {
    display: inline-block;
    color: #004dbe;
    font-size: 1.9rem;
    font-weight: 600;
    line-height: 1.9;
    white-space: pre-wrap;
    padding-left: 2rem;
    text-indent: -2rem;
    text-decoration: none;
    transition: 0.25s ease-in-out all;
}

.tto-services-list ul li a:hover {
    opacity: 0.78;
}

/* Service boxes */

.service-boxes-section--heading {
    max-width: 760px;
    margin: 0 auto;
}

.service-boxes-section--items {
    margin: 6rem 0 0;
}

.service-boxes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
}

.service-box .service-box--link {
    background-color: #fff;
    display: block;
    width: 100%;
    height: 100%;
    padding: 5rem;
    border: 1px solid #dbdbdb;
    border-radius: 0.4rem;
    box-shadow: 0px 4px 9px -2px rgba(0, 0, 0, 0.27);
    overflow: hidden;
}

.service-box .service-box--link:hover {
    box-shadow: none;
    transform: translateY(-2px);
}

.service-box--icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 2.5rem;
}

.service-box--icon svg {
    color: var(--mg-primary-orange);
    font-size: 6rem;
}

.service-box--title {
    margin: 0 0 2rem;
}

.service-box--title h3 {
    font-size: 2.2rem;
    margin: 0;
    text-align: center;
    transition: 0.25s ease-in-out all;
}

.service-box--copy p {
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.9;
    text-align: center;
}

.service-box--link:hover .service-box--title h3 {
    color: #06c3f2;
}


/* ## Custom CSS
--------------------------------------------- */

/* Variables (Edit First!) */

:root {
	--theme-wrap-width: 90%;
	--theme-wrap-max-width: 1280px;
	--theme-wrap-padding-mobile: 5vw;
	--theme-section-padding: 10rem;
	--theme-section-padding-mobile: 8rem;
}

.mega-menu-action {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, -20px);
    max-width: 263px;
    width: 100%;
}

.sub-menu .menu-item a > span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.mega-sub-menu-title {
    color: var(--junk-red);
    font-size: 2.4rem;
    font-weight: 500;
}

.mega-menu-thumbnail {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.mega-menu-thumbnail:before {
    content: '';
    background-color: #fff;
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0.3;
    z-index: 0;
}

.mega-menu-thumbnail img {
    position: relative;
    object-fit: cover;
    object-position: center center;
    width: 100%;
    height: 100%;
    filter: blur(1px);
    z-index: -2;
}

.custom-button a.button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
}

a.button.green {
    background-color: #fff;
    color: #000;
    border: 1px solid var(--junk-dark-green);
}

a.button.green:hover {
    background-color: #dbdbdb;
}

a.button.white:hover {
    background: transparent;
    border-color: #2C4F69;
}

body.home .hrs-junk .heading-ch--junk h2 {
    font-size: 3.6rem;
    line-height: 4.6rem;
}

.wp-block-cover.good-cause-global a.button.white:hover {
    border-color: #ffffff;
    color: #ffffff;
}

.space-bottom-25 {
    margin-bottom: 2.5rem;
}

.space-bottom-25 > .gb-layout-column-wrap {
    gap: 4rem;
}

.services-offered-global {
    margin-bottom: 5rem;
}

.hero-left--junk h2,
.hero-left--junk h3 {
    margin: 0;
}

.home .site-inner main > .wp-block-genesis-blocks-gb-columns {
    padding: 10rem 0;
}

main > .wp-block-genesis-blocks-gb-columns > .gb-layout-column-wrap {
  max-width: var(--theme-wrap-max-width);
  width: var(--theme-wrap-width);
  margin: 0 auto;
}

.video-background-block h1 {
    font-weight: 500;
    line-height: 7.8rem;
    margin-bottom: 2.8rem;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.17);
}

.video-background-block p {
    line-height: 3.3rem;
    margin-bottom: 2.8rem;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.17);
}

.video-background-block .custom-button {
    gap: 2rem;
    flex-direction: row;
}

.video-background-block .custom-button a.button {
    box-shadow: 0px 4px 12px 0px #00000054;
}

.video-background-block .review-text {
    /* background: #00000036;
    backdrop-filter: blur(16.399999618530273px); */
    line-height: 39.6px;
    margin-top: 50px;
    display: inline-block;
    padding: 1px 59px;
    text-shadow: 2px 5px rgba(0, 0, 0, 0.17);
}

/* .video-background-block .custom-button a.button:nth-child(odd) {
    background: var(--junk-dark-green);
    color: #ffffff;
    border: 1px solid var(--junk-dark-green);
}

.video-background-block .custom-button a.button:hover {
    background: #ffffff;
    border-color: #ffffff;
}

.video-background-block .custom-button a.button:nth-child(odd):hover {
    color: #000;
} */

.home .site-inner main > .wp-block-genesis-blocks-gb-columns.red-bar--junk {
    padding: 2.6rem 0;
}

.red-bar--junk p {
    font-size: 26px;
    line-height: 39px;
    font-weight: 500;
}

.overline-ch--junk span {
    font-size: 1.5rem;
    line-height: 1.7rem;
    letter-spacing: 2px;
    font-weight: 500;
    text-transform: uppercase;
    color: #2C4F69;
    display: block;
    margin-bottom: 1.5rem;
}

.heading-ch--junk h2 {
    font-size: 4.8rem;
    line-height: 5.7rem;
    font-weight: 500;
    color: #102534;
}

.contact-cta--junk .heading-ch--junk h2 {
    text-shadow: 0px 3px 7px rgba(255, 255, 255, 0.87);
}

.text-ch--junk p {
    color: #2C4F69;
    font-size: 1.6rem;
    line-height: 2.4rem;
    margin: 2rem 0 0;
}

.icon-content-boxes--section {
    padding: 5rem 0;
}

.icon-content-boxes--section .gb-layout-column-wrap {
    gap: 1.5em;
}

.icon-content-boxes--section .gb-block-layout-column-inner {
    height: 100%;
}

.icon-content-box {
    background: #F0F0F0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    height: 100%;
    padding: 0 2rem 3rem;
    position: relative;
}

.icb-step--junk {
    background: var(--junk-red);
    padding: 0.2rem 1.4rem;
    margin-top: -1.2rem;
}

.icb-step--junk span {
    color: #ffffff;
    font-size: 2rem;
    line-height: 3.3rem;
    font-weight: 700;
    font-family: "Inter", sans-serif;
}

.icb-image--junk {
    width: 70px;
    height: 70px;
    background: var(--junk-red);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icb-heading--junk h3 {
    color: var(--junk-red);
    font-size: 3.2rem;
    line-height: 3.3rem;
    font-weight: 400;
    font-family: 'BadaBoom', sans-serif;
    margin-bottom: 16px;
}

.icb-heading--junk h3 sup {
    font-size: 1rem;
    font-family: 'Rubik';
    font-weight: 500;
    top: -22px;
}

.icb-copy--junk p {
    color: #000;
    font-size: 1.6rem;
    line-height: 2.8rem;
    text-align: center;
}

main > .charity-partners-section > .gb-layout-column-wrap,
.entry-content .charity-partners-section > .gb-layout-column-wrap {
    max-width: 100%;
    width: 100%;
}

.charity-partners-section .heading-ch--junk h2,
.geo-locations-section h2,
.team-reviews-section h2 {
    font-size: 3.3rem;
    line-height: 4.4rem;
}

.charity-partners-section .client-logos-slider {
    max-width: unset;
    padding: 5rem 0;
    pointer-events: none;
}

.charity-partners-section .swiper-wrapper {
    transition-timing-function: linear !important;
}

.charity-partners-section .client-logos-slider .swiper-image {
    object-fit: contain;
    object-position: center center;
    margin: 0 auto;
    height: 80px;
    filter: grayscale(100%);
}

.junk-service-box {
    min-height: 370px;
    display: flex;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: 6px;
    margin-top: 2rem;
}

.junk-service-box-link {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    width: 100%;
    padding: 25px;
    border: 1.5px solid #b5b5b5;
    border-radius: 6px;
    box-shadow: 0px 0px 0 rgba(0, 0, 0, 0);
    z-index: 1;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 20%, rgba(0, 0, 0, 0.6) 100%);
}

.service-box-title {
    color: #FFFFFF;
    font-size: 3.3rem;
    line-height: 4.4rem;
    font-weight: 500;
    margin-bottom: 0;
}

.service-box-tagline,
.service-box-copy p {
    color: #ffffff;
    font-size: 1.6rem;
    line-height: 2.8rem;
}

.junk-service-box-link:hover {
    box-shadow: 0px 12px 33px rgba(0, 0, 0, 0.25);
    background-color: rgba(191, 32, 38, 0.85);
}

/* .junk-service-box-link:hover .service-box-hover {
    display: block;
} */

.service-box-hover {
    max-height: 0;
    overflow: hidden;
    transition: 0.3s ease-in-out max-height;
}

.home .site-inner main > .wp-block-genesis-blocks-gb-columns.home-polygon--junk {
    clip-path: var(--junk-polygon);
    padding: 12rem 0;
}

.home .site-inner main > .wp-block-genesis-blocks-gb-columns.team-reviews-section,
.home .site-inner main > .wp-block-genesis-blocks-gb-columns.team-reviews-section > .gb-layout-column-wrap {
    width: 100%;
    max-width: 100%;
    margin: 0;
}

.home .site-inner main > .wp-block-genesis-blocks-gb-columns.team-reviews-section .duo-buttons--junk > .gb-layout-column-wrap {
    margin: 0 auto 6rem;
}

.junk-testimonials {
    margin: 0 0 1.5rem;
}

@media (min-width: 768px) {
    .junk-testimonials {
        width: 2000px;
        margin: 0 50% 1.5rem;
        transform: translateX(-50%);
    }
}

.junk-testimonial-card {
    background: #ffffff;
    border: 1px solid #B8B8B8;
    border-radius: 7px;
    padding: 3rem;
    margin: 2rem 0 10rem;
    min-height: 315px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 2rem;
    width: 100%;
}

.junk-testimonial-content .quote-icon {
    margin-bottom: 1.5rem;
}

.junk-testimonial-content .review-text {
    color: #102534;
    font-size: 2.2rem;
    line-height: 3.3rem;
}

.junk-testimonial-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.jtf-info {
    color: #58778d;
}

.junk-testimonial-name {
    color: #2C4F69;
}

body .swiper-pagination-bullet {
    background: var(--junk-light-green);
    opacity: 50%;
}

body .swiper-pagination-bullet-active {
    opacity: inherit;
}

.content-heading--junk {
    margin-bottom: 1rem;
}

/* .home .site-inner main > .wp-block-genesis-blocks-gb-columns.home-trucks-section {
    padding: 15rem 0 42rem;
} */

/* .home .site-inner main > .wp-block-genesis-blocks-gb-columns.featured-in {
    padding-bottom: 0;
} */

.home-trucks-section .custom-button {
    margin-top: 4rem;
}

.home .site-inner main > .wp-block-genesis-blocks-gb-columns.contact-cta--junk {
    max-width: 1280px;
    margin: 0 auto;
    width: 90%;
    padding: 10rem 20rem 10rem 6rem;
    margin-top: -350px;
    margin-bottom: 8rem;
    background: #ffffff;
}

main > .wp-block-genesis-blocks-gb-columns.contact-cta--junk > .gb-layout-column-wrap {
    max-width: unset;
    width: unset;
}

.content-heading--junk.text-white .heading-ch--junk h2,
.content-heading--junk.text-white .text-ch--junk p {
    color: #ffffff;
}

.geo-locations-section > .gb-layout-column-wrap > .gb-block-layout-column:last-child > .gb-block-layout-column-inner {
    display: flex;
    flex-direction: column;
    gap: 6rem;
}

/* .geo-block {
    margin-bottom: 3rem;
}

.geo-md-dc .geo-block {
    margin-bottom: 0;
} */

.geo-block .geo-area {
    font-size: 2.2rem;
    line-height: 1;
    font-weight: 500;
    color: #2C4F69;
    margin-bottom: 3rem;
    position: relative;
}

/* .geo-block .geo-area:after {
    position: absolute;
    content: '';
    right: 0;
    left: 40px;
    bottom: 1px;
    height: 1px;
    background-color: #EDEDED;
}

.geo-area span {
    border-bottom: 1px solid #2C4F69;
} */

.geo-area span a {
    color: #2C4F69;
}

.geo-area span a:hover {
    color: var(--junk-red);
}

.geo-list {
    margin: 0;
    column-width: 160px;
    column-count: 3;
}

.geo-list li {
    list-style-type: none;
}

.geo-list li:not(:first-child) {
    margin-top: 1.5rem;
}

.geo-list li,
.geo-list li a,
.entry-content .geo-list li,
.entry-content .geo-list li a {
    color: #2C4F69;
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.95rem;
}

.geo-list li a:hover {
    text-decoration: underline;
}

.team-reviews-section .duo-buttons--junk .gb-layout-column-wrap {
    max-width: 400px;
}

.team-reviews-section .duo-buttons--junk .custom-button a {
    padding: 1.5rem 2rem;
}

.team-review-body {
    background: #ffffff;
    border-radius: 6px;
    border-bottom-left-radius: 0;
    box-shadow: 0px 12px 15px 0px #0000000D;
    display: grid;
    grid-template-columns: 1fr 40%;
    padding: 2.5rem 0 0 2.5rem;
    justify-content: space-between;
    align-items: center;
    gap: 2.5rem;
}

.team-review-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
    height: 100%;
    padding: 0 0 2.5rem;
}

.team-review-text {
    color: #333333;
    font-size: 2rem;
    line-height: 3.3rem;
}

.team-member-image {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.team-review-footer {
    background: var(--junk-dark-green);
    padding: 2rem 2.5rem 1rem;
    margin-top: -5px;
    position: relative;
    z-index: -1;
    max-width: 95%;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #fff;
    line-height: 2.4rem;
}

@media (max-width: 991px) {
    .team-review-body {
        display: flex;
        flex-direction: column;
        padding: 2.5rem 2.5rem 0;
    }

    .team-review-content {
        padding: 0;
    }
}

.service-box-button {
    background: #ffffff;
    color: #2C4F69;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
    border-radius: 6px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 220px;
    padding: 12px 25px;
    margin-top: 15px;
    border: 1px solid #ffffff;
}

.service-box-button:hover {
    background: transparent;
    color: #ffffff;
}

body:not(.home) .site-inner .wp-block-genesis-blocks-gb-columns .custom-button {
    margin-top: 4rem;
}

body .site-inner .wp-block-genesis-blocks-gb-columns.inner-banner-area .custom-button {
    margin: 0;
}

.home-trucks-section .text-ch--junk p {
    max-width: 550px;
    width: 100%;
}

.junk-testimonial-image img {
    width: 100%;
    max-width: 100px;
}

.ib-image--junk img {
    width: 100%;
    height: 315px;
    object-fit: cover;
}

body:not(.home) .site-inner .process-section--junk .custom-button {
    margin: 0;
}

.good-cause-global .content-heading--junk {
    max-width: 800px;
    margin: 0 auto 4rem;
}

.good-cause-global .content-heading--junk .overline-ch--junk span {
    color: #ffffff;
}

.inner-banner-area figure {
    position: relative;
}

.inner-banner-area figure:before {
    content: "";
    position: absolute;
    top: 30px;
    left: -25px;
    height: 100%;
    width: 100%;
    background: var(--junk-light-green);
    z-index: -1;
    clip-path: var(--junk-polygon);
}

.inner-banner-area figure img {
    width: 100%;
    margin-bottom: 3rem;
    clip-path: var(--junk-polygon);
    height: 710px;
    object-fit: cover;
    object-position: center;
}

.inner-banner-area .hero-left--junk .gb-container-content,
.wp-block-genesis-blocks-gb-column.hero-left--junk > .gb-block-layout-column-inner {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.moving-copy-container > .gb-block-layout-column-inner {
    height: 100%;
}

.breadcrumbs {
    display: flex;
    align-items: center;
    font-size: 1.6rem;
    line-height: 3.3rem;
    flex-wrap: wrap;
    gap: .5rem 1.5rem;
}

.inner-banner-area .breadcrumb-item a {
    color: #2C4F69;
}

.inner-banner-area .breadcrumbs svg {
    color: var(--junk-red);
}

.inner-banner-area .breadcrumb-item p {
    color: var(--junk-red);
    font-size: 1.6rem;
}

.inner-banner-area h1 {
    font-size: 6rem;
    line-height: 7rem;
    font-weight: 500;
    color: #000000;
    margin-bottom: 0;
}

.inner-banner-area p {
    line-height: 2.8rem;
    margin-bottom: 0;
}

.entry-content > .wp-block-genesis-blocks-gb-columns.pricing-cta--junk {
    padding: 6.1rem 0;
}

.pricing-cta--junk h2 {
    font-size: 3.6rem;
    line-height: 100%;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2.5rem;
}

/*.pricing-cta--junk .custom-button a {
    background-color: var(--junk-red);
    border: 1px solid var(--junk-red);
    box-shadow: 0px 4px 12px 0px #00000054;
}

.pricing-cta--junk .custom-button a:hover {
    background-color: #ffffff;
    border-color: #ffffff;
    color: var(--junk-red);
}*/

.services-space-bottom,
.ib-image--junk {
    margin-bottom: 3rem;
}

.ib-heading--junk {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.ib-heading--junk h3 {
    font-size: 3.2rem;
    line-height: 3.3rem;
    font-weight: 500;
    margin-bottom: 0;
}

.ib-heading--junk svg {
    color: var(--junk-red);
    height: 1.5em;
}

.image-box--junk a:hover,
.image-box--junk a:hover h3 {
    color: var(--junk-red);
}

.wp-block-genesis-blocks-gb-columns.process-section--junk {
    padding-bottom: 0;
}

.wp-block-cover.good-cause-global {
    clip-path: var(--junk-polygon);
}

.wp-block-genesis-blocks-gb-columns.inner-polygon--junk {
    clip-path: var(--junk-polygon);
    padding: 15rem 0;
}

.page-header + .inner-polygon--junk {
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 4rem), 0% 100%);
    padding-top: var(--theme-section-padding);
}

ul.red-circle-list li {
    list-style-type: none;
    position: relative;
    color: #2C4F69;
    font-size: 2.4rem;
    line-height: 100%;
    margin-bottom: 2rem;
}

ul.red-circle-list li:before {
    content: "";
    background: url(/wp-content/uploads/2025/10/list-icon.png);
    background-repeat: no-repeat;
    width: 24px;
    height: 24px;
    position: absolute;
    left: -40px;
    top: 4px;
}

.wp-block-cover.cover-image--junk {
    margin-top: -100px;
    position: relative;
    z-index: -1;
}

.wp-block-genesis-blocks-gb-columns.max-96--junk .gb-layout-column-wrap {
    width: 100%;
    max-width: 996px;
    margin: 0 auto;
    padding: 5.5rem 6rem;
    box-shadow: 0px 4px 64.5px 0px #0000002E;
    background: #ffffff;
    margin-top: -350px;
}

.max-96--junk h2 {
    font-size: 4rem;
    line-height: 100%;
    margin-bottom: 2.5rem;
}

.medium-text {
    font-weight: 500;
}

.text-column--junk p {
    font-size: 2.4rem;
    line-height: 3.3rem;
}

.image-column--junk .wp-block-image img {
    filter: grayscale(1);
    margin: 0;
}

.junk-icon-box {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 4rem 3rem;
    background: #ffffff;
    height: 100%;
    border-radius: 2rem;
    box-shadow: 0px 8px 46px 0px #0000001F;
}

.junk-ib-icon svg {
    color: var(--junk-red);
    font-size: 4rem;
}

.junk-ib-heading h3 {
    color: var(--junk-red);
}

.entry-content .wp-block-list li:last-child {
    margin-bottom: 0;
}

.entry-content p a,
.entry-content ul li a {
    color: var(--junk-red);
}

.entry-content p a:hover,
.entry-content ul li a:hover {
    color: #979797;
    text-decoration: underline;
}

.entry-content > .wp-block-genesis-blocks-gb-columns.max-96--junk,
.entry-content > .wp-block-genesis-blocks-gb-columns.our-people {
    padding-bottom: 0;
}

.column-inner-center > .gb-layout-column-wrap {
    gap: 0 2.5rem;
}

.column-inner-center .gb-block-layout-column-inner {
    display: flex;
    justify-content: center;
}

p.pink-bg {
    background: #FCE8E9;
    padding: 0.8rem 4.5rem;
    max-width: 650px;
    margin: 6rem auto 0;
    font-weight: 500;
}

.f-24 {
    font-size: 2.4rem;
    line-height: 3.3rem;
}

.wp-block-genesis-blocks-gb-columns.junk-today {
    margin-top: -80px;
}

.wp-block-genesis-blocks-gb-columns .wp-block-image .alignright,
.wp-block-genesis-blocks-gb-columns .wp-block-image .alignleft {
    margin: unset;
}

.our-people .duo-buttons--junk .gb-layout-column-wrap {
    margin: 0;
}

.wp-block-genesis-blocks-gb-columns.junk-bed {
    margin-top: 5rem;
}

.junk-bed .wp-block-image {
    margin-bottom: 0;
}

.junk-bed .wp-block-image:first-child img {
    margin-left: 20rem;
}

.junk-bed .wp-block-image:last-child img {
    margin-bottom: 5rem;
}

.entry-content > .wp-block-genesis-blocks-gb-columns.epic-trucks {
    padding-top: 0;
    color: #ffffff;
}

.epic-trucks h2 {
    color: #ffffff;
}

.entry-content .wp-block-list li {
    line-height: 3.3rem;
    margin-bottom: 8px;
}

.entry-content > .wp-block-genesis-blocks-gb-columns.truck-images-section {
    padding-bottom: 27rem;
}

.entry-content > .wp-block-genesis-blocks-gb-columns.epic-trucks {
    padding-top: 0;
    color: #ffffff;
    margin-top: -220px;
}

.wp-block-genesis-blocks-gb-columns.epic-trucks .gb-layout-column-wrap {
    max-width: 1190px;
    background: #102534;
    clip-path: var(--junk-polygon);
    padding: 12rem 10rem 12rem;
}

.wp-block-genesis-blocks-gb-columns.jrs-grid-section {
    margin-top: 4rem;
}

.jrs-grid-section .gb-layout-column-wrap .gb-block-layout-column {
    display: flex;
}

.before-footer-widgets {
    padding: 10rem 0;
}

.contact-cta--junk {
    box-shadow: 0px 8px 46px 0px #0000001F;
    border-radius: 2rem;
    padding: 10rem 10rem 10rem 10rem;
    position: relative;
    border: 1.5px solid #dbdbdb;
}

.client-testimonials-section {
    overflow: hidden;
}

.home .site-inner main > .client-testimonials-section {
    padding-bottom: 0;
}

.contact-cta--junk:after {
    content: "";
    background: url('/wp-content/uploads/2025/09/Junk-Image.png');
    background-repeat: no-repeat;
    max-width: 251px;
    height: 455px;
    width: 100%;
    position: absolute;
    bottom: -100px;
    right: 380px;
    pointer-events: none;
    z-index: 1;
}

.contact-cta--junk > .gb-layout-column-wrap {
    position: unset;
    display: flex;
    justify-content: space-between;
}

.contact-cta--junk > .gb-layout-column-wrap > .wp-block-genesis-blocks-gb-column:first-child {
    max-width: 510px;
    width: 100%;
    z-index: 3;
}

.contact-cta--junk > .gb-layout-column-wrap > .wp-block-genesis-blocks-gb-column:last-child {
    max-width: 300px;
    width: 100%;
}

.duo-buttons--junk .gb-layout-column-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.duo-buttons--junk .gb-layout-column-wrap .gb-block-layout-column {
    flex: 1 1 fit-content;
}

.duo-buttons--junk .custom-button a {
    font-size: 1.8rem;
    padding: 2rem 3.6rem;
}

.duo-buttons--junk {
    margin: 3rem 0 0;
}

.wp-block-genesis-blocks-gb-columns.office-hours-area {
    text-align: center;
    padding: 4rem;
    margin-bottom: 3rem;
}

.contact-cta--junk .office-hours-area .wp-block-image {
    margin-bottom: 3rem;
}

.contact-cta--junk .office-hours-area h3 {
    color: #2C4F69;
    font-size: 1.4rem;
    line-height: 100%;
    letter-spacing: 2px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 0 3rem;
}

.contact-cta--junk .location-hours--item p {
    display: flex;
    justify-content: space-between;
    color: #2C4F69;
    font-size: 1.6rem;
    line-height: 2.4rem;
}

.contact-cta--junk h4 {
    color: #2C4F69;
    font-size: 1.6rem;
    line-height: 2.4rem;
    font-weight: 400;
    margin: 0;
}

.custom-link--junk a {
    font-size: 1.6rem;
    line-height: 2.4rem;
    color: var(--junk-red);
    font-weight: 500;
}

.custom-link--junk a:hover {
    text-decoration: underline;
}

.hero-right--junk .gform_wrapper {
    border: 1px solid #BABABA;
    padding: 3.3rem 3.3rem;
    border-radius: 0.6rem;
    background: #ffffff;
    position: relative;
}

.hero-right--junk .gform_wrapper:before {
    content: "";
    position: absolute;
    top: 25px;
    left: -25px;
    height: 100%;
    width: 100%;
    background: var(--junk-light-green);
    z-index: -1;
    border-radius: 0.6rem;
}

.hero-right--junk .gform_wrapper.gravity-theme .gfield_label {
    color: #3B3B3B;
    font-weight: 400;
    text-transform: capitalize;
}

.wp-block-genesis-blocks-gb-columns.contact-map {
    height: 445px;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    position: relative;
    margin-top: 7.5rem;
}

body:not(.home) .site-inner .wp-block-genesis-blocks-gb-columns.contact-map .custom-button {
    margin-top: 0;
}

.icon-link-box {
    background: #ffffff;
    border: 1px solid #A6A6A6;
    padding: 1.7rem 1.3rem;
    box-shadow: 0px 6px 24.5px 0px #0000001F;
    border-radius: 1.2rem;
    display: inline-flex;
    gap: 2rem;
    align-items: center;
    z-index: 1;
}

.icon-link-box svg {
    color: var(--junk-light-green);
    font-size: 4rem;
}

.icon-link-box p {
    color: #2C4F69;
}

.icon-link-box.maryland {
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    margin-top: 50px;
}

.icon-link-box.virginia {
    position: absolute;
    bottom: -30px;
    left: 25px;
}

.icon-link-box.washington {
    position: absolute;
    right: 50px;
    bottom: -15px;
}

.junk-step-box {
    background: #ffffff;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2.5rem;
}

.jsb-step--junk {
    background: var(--junk-red);
    color: #ffffff;
    padding: 0 3.5rem;
    font-size: 2.4rem;
    line-height: 5.7rem;
    font-weight: 500;
}

.jsb-heading--junk h3 {
    font-size: 3.6rem;
    color: #102534;
    line-height: 5.7rem;
}

.jsb-copy--junk p {
    color: #2C4F69;
}

.junk-step-column .wp-block-image img {
    object-fit: cover;
    object-position: center center;
    width: 100%;
    height: 300px;
}

.quote-section blockquote p {
    font-size: 3.8rem;
    line-height: 4.8rem;
    max-width: 1000px;
    margin: 0 auto 2rem;
    color: #2C4F69;
}

/* Team CSS */

.junk-team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin: 6rem 0 0;
}

.junk-team-member {
    display: flex;
    flex-direction: column;
    width: 100%;
    position: relative;
    border-radius: 6px;
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.12);
    overflow: hidden;
    background-color: #fff;
    transition: all 0.3s ease-in-out;
    z-index: 1;
}

.junk-team-member:hover {
    box-shadow: 0px 10px 14px rgba(0, 0, 0, 0.24);
}

.flip-card {
    perspective: 1000px;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-inner {
    position: relative;
    width: 100%;
    padding-bottom: 100%;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.flip-card-back {
    transform: rotateY(180deg);
}

.member-content {
    padding: 2rem 2rem;
    display: flex;
    flex-direction: column;
    height: 100%;
    gap: 1.5rem;
}

.junk-team-member .member-name {
    color: var(--junk-red);
    font-size: 3.2rem;
    line-height: 3.3rem;
    font-weight: 400;
    font-family: 'BadaBoom', sans-serif;
    margin: 0;
}

.junk-team-member .member-position {
    font-size: 1.8rem;
    font-weight: 700;
    color: #102534;
    font-style: italic;
    margin: 0;
    height: 100%;
}

.junk-team-member .member-social {
    display: flex;
}

.junk-team-member .member-content .member-social a {
    color: var(--junk-red);
    line-height: 1;
    border: 1px solid #ECECEC;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    border-right: none;
    padding: 1rem;
}

.junk-team-member .member-content .member-social a:hover {
    color: var(--junk-light-green);
}

.junk-team-member .member-content .member-social a:last-child {
    border-right: 1px solid #ECECEC;
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
}

.junk-team-member .member-content .member-social a:first-child {
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

.junk-team-member .member-content .member-social svg {
    font-size: 3rem;
}

.junk-contact-box {
    background: #ffffff;
    border: 1px solid #000000;
    border-radius: 2rem;
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    max-width: 570px;
    width: 100%;
}

.junk-contact-box .contact-box-title {
    color: #2C4F69;
}

.junk-contact-box .contact-box-right,
.junk-contact-box .cbl-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.junk-contact-box .contact-description {
    color: #2C4F69;
    font-weight: 500;
}

.junk-contact-box .contact-icon svg {
    color: #93C20B;
    font-size: 3.4rem;
}

.junk-contact-box .contact-link {
    color: #BF2026;
    text-decoration: underline;
    font-size: 2.2rem;
    line-height: 100%;
    font-weight: 500;
}

.junk-contact-box .contact-link:hover {
    color: #979797;
    text-decoration: none;
}

.junk-contact-box .contact-box-left {
    display: flex;
    gap: 2rem;
    align-items: center;
    width: 100%;
    max-width: 250px;
}

.junk-contact-box .contact-box-right {
    width: 100%;
    max-width: 260px;
    border-left: 1px solid #D7D7D7;
    padding-left: 2rem;
}


/* FAQs CSS */

body .sp-easy-accordion > .sp-ea-single > .ea-header a .ea-expand-icon {
    float: right !important;
    color: #ffffff !important;
    font-size: 2.2rem !important;
}

body .sp-easy-accordion > .sp-ea-single {
    background: var(--junk-dark-green) !important;
    border-radius: 5px;
}

body .sp-easy-accordion > .sp-ea-single > .ea-header a {
    color: #ffffff !important;
    font-size: 2.6rem;
    line-height: 3rem;
    padding: 1.5rem 1.5rem 1.5rem 3rem !important;
}

body .sp-easy-accordion > .sp-ea-single > .sp-collapse > .ea-body {
    background: #F2F5F3;
    color: #000000;
}

body .sp-ea-one.sp-easy-accordion .sp-ea-single .ea-body {
    padding: 3rem 3rem;
}

.sp-easy-accordion strong {
    color: var(--junk-red);
}

.sp-easy-accordion ul li {
    list-style-type: none;
    position: relative;
    margin-bottom: 1rem;
}

.sp-easy-accordion ul li:last-child {
    margin-bottom: 0;
}

.sp-easy-accordion ul li:before {
    content: "";
    background: url(/wp-content/uploads/2025/10/list-icon.png);
    background-repeat: no-repeat;
    width: 20px;
    height: 20px;
    position: absolute;
    left: -35px;
    top: 5px;
    background-size: contain;
}

.faq-review-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
    margin-top: 2rem;
}

.faq-review-badges .badges img {
    max-width: 100px;
    width: 100%;
}

.wp-block-genesis-blocks-gb-columns.social-reviews-badges .gb-layout-column-wrap {
    max-width: 600px;
    margin: 0 auto;
}

.junk-testimonials-grid {
    margin: 5rem 0;
}

.junk-testimonials-grid .testimonial-grid-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.junk-testimonials-grid .testimonial-grid-item {
    flex: 1 1 calc(33.333% - 20px);
    display: flex;
}

.testimonial-grid-wrapper .junk-testimonial-card {
    margin: 0;
}

.gform_wrapper.gravity-theme .gfield.form-content-section {
    border-bottom: 1px solid #ccc;
    padding-bottom: 1rem;
}

.gfield.form-content-section h3 {
    margin-bottom: 1.8rem;
    font-size: 2.8rem;
    line-height: 3rem;
}

.gfield.form-content-section p {
    color: #2C4F69;
    font-size: 18px;
}

.our-people .content-heading--junk {
    margin-bottom: 0;
}

.site-footer {
    padding: 7.5rem 0;
}

.site-footer-widgets section:first-child {
    padding-bottom: 6rem;
    border-bottom: 1px solid #EDEDED;
}

.site-footer .heading-ch--junk h2 {
    font-size: 3.3rem;
    line-height: 3.95rem;
    margin-top: 1.5rem;
}

.site-footer-widgets section:last-child {
    padding: 6rem 0 12rem;
}

.site-footer h3 {
    font-size: 1.6rem;
    line-height: 1.56rem;
    font-weight: 500;
    letter-spacing: 0.1rem;
    text-transform: uppercase;
    color: #102534;
    margin-bottom: 2rem;
}

.site-footer .menu {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin: 0;
}

.site-footer .menu li {
    list-style-type: none;
}

.site-footer .menu li a {
    display: inline-flex;
    font-size: 1.4rem;
    line-height: 1.95rem;
    letter-spacing: 1px;
    color: #000;
}

.site-footer .menu li a:hover {
    color: #979797;
    text-decoration: underline;
}

.site-footer .custom-socials {
    margin: 1rem 0 0;
}

.site-footer .phone-number-block {
    margin: 0 0 -2rem;
}

.site-footer .phone-number-block a {
    display: flex;
    gap: 1.2rem;
    color: #000;
    font-weight: 500;
}

.site-footer .phone-number-block a:hover {
    opacity: 0.78;
}

.site-footer .address-block:not(:first-of-type) {
    margin: 1.5rem 0 0;
}

.site-footer-credits .wrap {
    padding: 0 2rem;
}

.site-footer-credits .menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-direction: row;
    gap: 2rem;
}

.site-footer-credits .menu li a {
    font-size: 1.4rem;
    line-height: 2.1rem;
}

.site-footer .content-heading--junk {
    margin-bottom: 0;
}

.home .site-footer-widgets section:first-child {
    display: none;
}

.community-p > .gb-layout-column-wrap .wp-block-genesis-blocks-gb-column {
    display: flex;
}

.community-p .junk-icon-box {
    align-items: center;
    text-align: center;
}

.community-p .junk-ib-image img {
    height: 70px;
}

.community-p .junk-ib-copy {
    flex: 1 0 auto;
}

.junk-ib-link a {
    color: var(--junk-red);
}

.junk-ib-link a:hover {
    color: #979797;
    text-decoration: underline;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

.junk-culture-gallery {
    display: flex;
    flex-direction: column;
    gap: 10px;
    overflow: hidden;
}

.junk-culture-gallery .swiper {
    width: 100%;
}

.junk-culture-gallery .swiper:nth-child(even) .swiper-wrapper {
    animation-direction: reverse;
}

.junk-culture-gallery .swiper-wrapper {
    display: flex;
    transition: transform 0s linear !important;
    animation-name: marquee;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.junk-culture-gallery .swiper-slide {
    width: auto !important;
}

.junk-culture-gallery .swiper-slide img {
    display: block;
    height: 200px;
    width: auto;
    border-radius: 0.6rem;
}

@media screen and (min-device-width: 1280px) and (max-device-width: 1366px) { 

    .contact-cta--junk:after {
        right: 380px;
        bottom: -135px;
    }

    .contact-cta--junk {
        padding: 7.5rem 6.5rem 7.5rem 6.5rem;
    }

}

@media only screen and (max-width: 1279px) {

    .inner-banner-area h1 {
        font-size: 5rem;
        line-height: 6rem;
    }

    .contact-cta--junk {
        padding: 7.5rem 6.5rem 7.5rem 6.5rem;
    }

    .contact-cta--junk:after {
        bottom: -130px;
        right: 330px;
    }

    /* .nav-primary .menu > .menu-item > .mega-menu-container > .mega-menu-wrap > .mega-menu-wrap--menu > .sub-menu > .menu-item > a {
        font-size: min(1.8rem, 1.8vw);
        line-height: 1.8rem;
    } */
/* 
    .menu-item.mega-menu .sub-menu {
        padding: 2rem 3rem;
    } */

}

@media only screen and (max-width: 1023px) {

    .inner-banner-area h1 {
        font-size: 4rem;
        line-height: 5rem;
    }

    .inner-banner-area figure:before {
        top: 20px;
        left: -15px;
    }

    .inner-banner-area p {
        font-size: 2rem;
        line-height: 3rem;
    }

    button,
    a.button,
    input[type='submit'] {
        font-size: 1.6rem;
        padding: 2rem 2rem;
        line-height: 2rem;
    }

}

@media only screen and (max-width: 767px) {

    .inner-banner-area > .gb-layout-column-wrap {
        gap: 2em;
    }

    .inner-banner-area figure:before,
    .hero-right--junk .gform_wrapper:before {
        display: none;
    }

    .inner-banner-area figure img {
        height: 300px;
    }

    .community-p .gb-layout-column-wrap {
        gap: 2em;
    }

    .icon-link-box.virginia {
        bottom: -15px;
        left: 10px;
    }

    .icon-link-box.washington {
        right: 10px;
        bottom: -15px;
    }

}

/* Steve CSS */

.footer-logo-block .wp-block-image {
    max-width: 150px;
}

.wp-block-genesis-blocks-gb-columns.has-border-bottom {
    border-bottom: 1.5px solid #dbdbdb;
}

.benefits-grid:not(:first-child) {
    margin: 6rem 0 0;
}

.benefits-grid > .gb-layout-column-wrap {
    grid-template-areas: unset;
    gap: 6rem;
}

.benefits-grid > .gb-layout-column-wrap > .gb-block-layout-column {
    grid-area: unset;
}

@media (max-width: 991px) {
    .benefits-grid > .gb-layout-column-wrap {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .benefits-grid > .gb-layout-column-wrap {
        display: flex;
        flex-direction: column;
    }
}

.page-header {
    background-position: center center;
}

.page-header:before {
    background-color: #102534;
    opacity: 0.75;
}

.page-header > .gb-layout-column-wrap > .gb-block-layout-column > .gb-block-layout-column-inner {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.page-header .breadcrumbs {
    justify-content: center;
}

.page-header .breadcrumbs a {
    font-weight: 500;
}

.page-header .breadcrumbs a:not(:hover):not(:focus) {
    color: #fff;
}

.page-header h1 {
    font-size: 4.8rem;
    margin: 0;
    text-align: center;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.17);
}

.page-header h1 + p {
    margin: 1rem 0 0;
    text-align: center;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.17);
}

@media (max-width: 1195px) {
    .junk-team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .contact-cta--junk,
    .home .site-inner main > .wp-block-genesis-blocks-gb-columns.contact-cta--junk {
        padding: 10rem 6rem;
    }

    .contact-cta--junk:after {
        display: none;
    }

    .junk-team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .junk-contact-box {
        flex-direction: column;
        gap: 3rem;
        max-width: 100%;
    }

    .junk-contact-box .contact-box-right {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid #D7D7D7;
        padding-top: 2rem;
        max-width: 100%;
    }

    .junk-contact-box .contact-box-left {
        flex-direction: column;
        max-width: 100%;
        align-items: flex-start;
        gap: 1rem;
    }

    .site-footer-widgets > .wrap > .widget > .widget-wrap > .wp-block-columns {
        display: grid;
        grid-template-columns: 275px 1fr;
    }

    .site-footer-widgets .footer-menu-block {
        grid-row: 1 / span 2;
        grid-column: 2;
    }
}

@media (max-width: 767px) {
    body {
        font-size: 1.8rem;
    }

    .page-header h1 {
        font-size: 4rem;
    }

    h2 {
        font-size: 3.6rem;
        line-height: 4.6rem;
    }

    h3 {
        font-size: 2.8rem;
    }

    h4 {
        font-size: 2.2rem;
    }

    h5 {
        font-size: 2rem;
    }

    h6 {
        font-size: 1.6rem;
    }

    .video-background-block {
        min-height: 0;
        padding: var(--theme-section-padding-mobile) 0;
    }

    .video-background-block:before {
        opacity: 0.5 !important;
    }

    .video-background-block h1 {
        font-size: 3.8rem !important;
        line-height: 1.3;
        margin: 0 0 2rem;
        text-align: left;
    }

    .video-background-block p {
        text-align: left;
    }

    .video-background-block .review-text {
        margin: 5rem 0 0;
        padding: 0;
        text-align: left;
    }

    .video-background-block .custom-button {
        justify-content: left;
        flex-wrap: wrap;
    }

    .video-background-block .custom-button a.button {
        padding: 1.5rem 1rem;
    }

    .home-trucks-section > .gb-layout-column-wrap {
        display: flex;
        flex-direction: column;
        gap: 6rem;
    }

    .home-trucks-section > .gb-layout-column-wrap > .gb-block-layout-column:last-child .gb-block-layout-column:not(:first-child) {
        margin: 5vw 0 0;
    }

    .home-trucks-section img {
        object-fit: cover;
        object-position: center center;
        width: 100%;
        max-height: 225px;
    }

    .junk-team-grid {
        grid-template-columns: auto;
        gap: var(--theme-wrap-padding-mobile);
        max-width: 300px;
        margin: 0 auto;
    }

    .contact-cta--junk,
    .home .site-inner main > .wp-block-genesis-blocks-gb-columns.contact-cta--junk {
        padding: 8rem 4rem;
    }

    .contact-cta--junk > .gb-layout-column-wrap {
        flex-direction: column;
        gap: 6rem;
    }

    .heading-ch--junk h2 {
        font-size: 3.6rem;
    }

    .contact-cta--junk .heading-ch--junk h2 {
        text-shadow: none;
    }

    .duo-buttons--junk .custom-button a {
        font-size: 1.6rem;
        padding: 1.8rem 3.2rem;
    }

    ul.red-circle-list li {
        font-size: 2rem;
    }

    .icon-content-box.arrow-exist:after {
        display: none !important;
    }

    .team-reviews-section > .gb-layout-column-wrap {
        display: flex;
        flex-direction: column;
        gap: 6rem;
    }

    .site-footer {
        padding: 8rem 0 6rem;
    }

    .site-footer-widgets > .wrap > .widget > .widget-wrap > .wp-block-columns {
        display: flex;
        flex-direction: column;
    }

    .site-footer-widgets .footer-menu-block {
        display: none;
    }

    .site-footer-widgets section:first-child {
        padding-bottom: 6rem;
    }

    .site-footer-widgets section:last-child {
        padding: 6rem 0;
    }

    .review-badges--junk {
        margin: 3rem 0 0;
    }

    .site-footer-credits .menu {
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    .footer-credits p {
        margin: 0 0 3rem;
    }
}

.single .header-section {
	background-color: #102534;
	position: relative;
	display: grid;
    padding: var(--theme-section-padding) 0;
	overflow: hidden;
	z-index: 1;
}

.single .header-section:before {
	content: '';
	background-color: #102534;
	position: absolute;
	display: block;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	opacity: 0.75;
	z-index: 3;
}

.single .header-section--image {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
}

.single .header-section--image img {
    object-fit: cover;
    object-position: center center;
    width: 100%;
    height: 100%;
}

.single .header-section > .wrap {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 3rem;
	max-width: 960px;
    height: 100%;
    z-index: 4;
}

.single .custom-breadcrumbs .breadcrumb {
    margin: 0;
}

.single .entry-header h1 {
    color: #fff;
    text-align: center;
    text-shadow: 0px 3px 5px rgba(0, 0, 0, 0.27);
}

.single .entry-meta .entry-meta--inner {
    display: flex;
	flex-wrap: wrap;
    align-items: center;
    justify-content: center;
	row-gap: 0.5rem;
    column-gap: 2rem;
	color: #fff;
    font-size: 1.8rem;
    text-shadow: 0px 3px 5px rgba(0, 0, 0, 0.27);
}

.single .entry-meta .entry-meta--inner span {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.single .entry-meta .entry-meta--inner .entry-meta--separator {
    font-size: 2.2rem;
    line-height: 0;
}

.single .entry-meta .entry-meta--inner svg {
	filter: drop-shadow(0px 3px 5px rgba(0, 0, 0, 0.27));
}

.single.content-sidebar .content-sidebar-wrap {
	display: grid;
    grid-template-columns: calc(100% - 4rem - 380px) 380px;
    gap: 6rem;
	width: var(--theme-wrap-width);
	max-width: var(--theme-wrap-max-width);
	margin: 0 auto;
    padding: var(--theme-section-padding) 0;
}

.single .entry-before {
    margin: 0 0 6rem;
}

.single .entry-after {
    margin: 6rem 0 0;
}

.single .entry-before .share-sidebar > div,
.single .entry-after .share-sidebar > div {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.single .entry-before .share-sidebar .sharrre,
.single .entry-after .share-sidebar .sharrre {
    margin: 0;
}

.sidebar .sidebar-content {
	display: flex;
    flex-direction: column;
    gap: 6rem;
	border: 0;
	box-shadow: none;
}

.sidebar-content .gb-container-content p strong {
	color: #000;
	font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 2rem;
}

.sidebar-content .recent-articles {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.sidebar-content .recent-article--link {
    display: grid;
    grid-template-columns: 135px 1fr;
    width: 100%;
    border: 1px solid #cdcdcd;
    border-radius: 0.6rem;
    box-shadow: 0px 4px 9px -3px rgba(0, 0, 0, 0.17);
    overflow: hidden;
}

.sidebar-content .recent-article--image {
    overflow: hidden;
}

.sidebar-content .recent-article--image img {
    object-fit: cover;
    object-position: center center;
    width: 100%;
    height: 100%;
    transition: 0.25s ease-in-out all;
}

.sidebar-content .recent-article--link:hover .recent-article--image img {
	transform: scale(1.1);
}

.sidebar-content .recent-article--content {
    gap: 1rem;
    padding: 2.4rem;
}

.sidebar-content .recent-article--content-title {
    font-size: 1.8rem;
    font-weight: 500;
}

.sidebar-content .recent-article--content-date {
    color: #555;
    font-size: 1.5rem;
}

.sidebar-content .custom-button {
    margin: 3rem 0 0;
}

.sidebar-content .custom-button a.button {
    font-size: 1.6rem;
    padding: 1.4rem 2.8rem;
}

@media (max-width: 991px) {
	.single.content-sidebar .content-sidebar-wrap {
		display: flex;
		flex-direction: column;
	}
}

@media (max-width: 767px) {
	.single .header-section {
		min-height: 0;
		padding: var(--theme-section-padding-mobile) 0;
	}

	.single .header-section > .wrap {
		padding-bottom: 2rem;
	}

	.single.content-sidebar .content-sidebar-wrap {
		width: 100%;
		max-width: 100%;
		margin: 0;
		padding: var(--theme-section-padding-mobile) var(--theme-wrap-padding-mobile);
	}
}

.pricing-boxes:not(:first-child) {
    margin-top: 4rem;
}

.pricing-boxes > .gb-layout-column-wrap {
    gap: 4rem;
}

.pricing-boxes .junk-icon-box {
    border-bottom: 5px solid var(--junk-light-green);
    border-radius: 0;
    box-shadow: none;
}

.pricing-boxes .junk-ib-icon {
    display: flex;
    justify-content: center;
}

.pricing-boxes .junk-icon-box h3 {
    font-size: 2.8rem;
    text-align: center;
}

.pricing-boxes .junk-icon-box p {
    font-size: 1.8rem;
    text-align: center;
}

@media (max-width: 767px) {
    .pricing-boxes .junk-ib-icon {
        justify-content: flex-start;
    }
    .pricing-boxes .junk-icon-box h3,
    .pricing-boxes .junk-icon-box p {
        text-align: left;
    }
}

.review-badges--junk > .gb-layout-column-wrap {
    gap: 4rem;
}

.review-badges--junk .wp-block-image {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 120px;
    margin: 0 auto;
}

.review-badges--junk .wp-block-image img {
    object-fit: contain;
    object-position: center center;
    width: 100%;
    height: 100%;
}

@media (max-width: 767px) {
    .review-badges--junk .wp-block-image {
        margin: 0;
    }

    .geo-locations-section > .gb-layout-column-wrap {
        display: flex;
        flex-direction: column-reverse;
        gap: 6rem;
    }

    .wp-block-genesis-blocks-gb-columns.jrs-grid-section > .gb-layout-column-wrap {
        display: flex;
        flex-direction: column;
        gap: 4rem;
    }
}

@media (max-width: 600px) {
    .geo-md-dc > .gb-layout-column-wrap {
        display: flex;
        flex-direction: column;
        gap: 6rem;
        margin: 6rem 0 0;
    }
}

.article-content.inner-polygon--junk,
.service-areas.inner-polygon--junk {
    clip-path: polygon(0 4rem, 100% 0, 100% 100%, 0% 100%);
    padding-bottom: var(--theme-section-padding);
}

.news-archive--entries,
.news-archive--videos,
.news-archive--articles {
    margin: 6rem 0;
}

.news-archive--entries {
    margin-bottom: 0;
}

.sub-menu .drop-down-icon {
    display: none;
}

@media (max-width: 767px) {
    .review-us-section > .gb-layout-column-wrap {
        display: flex;
    }
}

@media (max-width: 600px) {
    .review-us-section > .gb-layout-column-wrap {
        display: flex;
        flex-direction: column;
    }

    .review-badges--junk > .gb-layout-column-wrap {
        display: flex;
        /* flex-wrap: wrap; */
        gap: 4rem;
        justify-content: center;
    }

    .review-us-section .content-heading--junk {
        margin: 0 0 1rem;
        text-align: center;
    }

    .review-us-section .custom-link--junk {
        margin: 0 0 4rem;
        text-align: center;
    }

    .review-badges--junk > .gb-layout-column-wrap > .gb-block-layout-column {
        width: auto;
    }
}






/* Inspector */

.service-area > .gb-layout-column-wrap {
    grid-template-columns: repeat(20, 1fr);
    gap: 0;
}

.service-area > .gb-layout-column-wrap > .gb-block-layout-column {
    display: contents;
    grid-column: 1 / span 11;
}

.service-areas > .gb-layout-column-wrap > .gb-block-layout-column > .gb-block-layout-column-inner {
    display: flex
;
    flex-direction: column;
    gap: var(--theme-section-padding);
}

.service-area > .gb-layout-column-wrap > .gb-block-layout-column:first-child > .gb-block-layout-column-inner {
    z-index: 2;
    grid-row: 1;
    grid-column: 1 / span 12;
}

.service-area > .gb-layout-column-wrap > .gb-block-layout-column:last-child > .gb-block-layout-column-inner {
    z-index: 1;
    grid-row: 1;
    grid-column: 9 / span 12;
}

.service-area.wrap-reverse > .gb-layout-column-wrap > .gb-block-layout-column:last-child > .gb-block-layout-column-inner {
	z-index: 3;
}

.google-map-embed {
    display: flex;
    border: 2px solid #dbdbdb;
    overflow: hidden;
}

.google-map-embed, .google-map-embed--wrapper, .google-map-embed--wrapper iframe {
    width: 100%;
    height: 100%;
}

.junk-service-area {
    background-color: #fff;
	display: flex;
    flex-direction: column;
    gap: 4rem;
    margin: 8rem 0;
    padding: 4rem;
    border: 3px solid #93C20B;
}

.junk-service-area--heading {
    display: flex;
    flex-wrap: wrap-reverse;
    align-items: center;
    justify-content: space-between;
    row-gap: 3rem;
    column-gap: 6rem;
}

.junk-service-area--heading-text h3 {
    font-size: 4rem;
}

.junk-service-area--heading-phone a {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #bf2026;
    font-weight: 500;
}

.junk-service-area--content {
    display: flex;
    flex-direction: column;
	gap: 1rem;
}

.junk-service-area--content-link a {
    display: flex;
    align-items: center;
	width: fit-content;
    gap: 1.5rem;
	color: #000;
    font-size: 2.6rem;
    font-weight: 600;
}

.junk-service-area--heading-phone .button {
    display: flex;
}

.junk-service-area--content-link a:hover {
		opacity: 0.75;
}

.junk-service-area--content-link svg {
    color: #bf2026;
}

.junk-service-area--content-address {
    margin: 3rem 0 0;
}

@media (max-width: 991px) {
    .service-area > .gb-layout-column-wrap {
        display: flex;
        flex-direction: column;
        gap: 6rem;
    }

    .service-area.wrap-reverse > .gb-layout-column-wrap {
        flex-direction: column-reverse;
    }

    .junk-service-area {
        margin: 0;
    }

    .google-map-embed--wrapper iframe {
        height: 300px;
    }
}

@media (max-width: 767px) {
    .junk-service-area--heading-phone a {
        background-color: #bf2026;
        justify-content: center;
        width: 60px;
        height: 60px;
        color: #fff;
        border-radius: 27px;
    }

    .junk-service-area--heading-phone a:hover {
        filter: brightness(1.1);
    }

    .junk-service-area--heading-phone .text {
        display: none;
    }

    .junk-service-area--heading-phone svg {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 512px) {
    .junk-service-area {
        display: flex;
        flex-direction: column;
        gap: 4rem;
    }

    .junk-service-area--content-link a {
        display: inline;
    }
}

.service-locations > .gb-layout-column-wrap > .gb-block-layout-column > .gb-block-layout-column-inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6rem;
}

.service-locations .gb-block-container {
    grid-row: 1;
    grid-column: 1 / span 2;
}

.service-locations .geo-block {
    margin: 0;
}

.service-locations .geo-block:nth-child(2) {
    grid-row: 2;
    grid-column: 1 / span 2;
}

.service-locations .geo-block:nth-child(3) {
    grid-row: 3;
    grid-column: 1;
}

.service-locations .geo-block:nth-child(4) {
    grid-row: 4;
    grid-column: 1;
}

.service-locations .geo-list {
    column-count: 2;
}

.service-locations .geo-block:nth-child(2) .geo-list {
    column-count: 4;
}

.service-locations .wp-block-image {
    grid-row: 3 / span 2;
    grid-column: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 991px) {
    .service-locations > .gb-layout-column-wrap > .gb-block-layout-column > .gb-block-layout-column-inner {
        display: flex;
        flex-direction: column;
        gap: 6rem;
    }

    .service-locations .geo-list {
        grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)) !important;
    }
}

.staggered-images {
    width: calc(100% + 5vw);
}

.staggered-images img {
    aspect-ratio: 4 / 5;
	object-fit: cover;
    object-position: center center;
    width: 100%;
    height: 100%;
    width: 100%;
    margin: 0 0 5rem;
	border: 1.5px solid #dbdbdb;
    border-radius: 6px;
}

.staggered-images > .gb-layout-column-wrap > .gb-block-layout-column:last-child img {
    margin: 5rem 0 0;
}

.office-hours-area img {
    filter: grayscale(1);
}

@media (min-width: calc(1280px / 0.9)) {
    .staggered-images {
        width: calc(50vw - 0.5em);
    }
}

@media (min-width: 1800px) {
    .staggered-images {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .staggered-images {
        width: 100%;;
    }

    .staggered-images img {
        aspect-ratio: unset;
        margin: 0 !important;
    }
}

.max-960 > .gb-layout-column-wrap > .gb-block-layout-column {
    max-width: 960px;
    margin: 0 auto;
}

@media (min-width: 896px) {
    .mega-menu-callout {
        display: flex;
        padding: 7rem;
    }
}

/* WCAG */

p[style*='color:#93c20b'],
p[style*='color: #93c20b'] {
    color: var(--junk-dark-green) !important;
}

.entry-content > .wp-block-genesis-blocks-gb-columns[style*='background-color:#93c20b'],
.entry-content > .wp-block-genesis-blocks-gb-columns[style*='background-color: #93c20b'] {
    background-color: #f5f5f5 !important;
}

.wp-block-cover.good-cause-global {
    background-color: #bf2026;
}

.wp-block-genesis-blocks-gb-columns.contact-map h2 {
    background-color: #000;
    background-clip: text;
}

.single .share-filled .twitter .share {
    background-color: #067ca7;
}

/* Browser & Mobile */

.entry-content > .wp-block-genesis-blocks-gb-columns:not(.gb-has-custom-background-color):last-child {
    padding-bottom: 0;
}

.review-badges--junk:not(:first-child) {
    margin-top: 6rem;
}

.junk-step-sec > .gb-layout-column-wrap {
    gap: 3rem;
}

.junk-step-sec .gb-block-layout-column-inner {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    width: 100%;
    height: 100%;
}

.junk-step-column .wp-block-image:only-child,
.junk-step-column .wp-block-image:only-child img {
    height: 100%;
}

.junk-step-column > .gb-layout-column-wrap > .gb-block-layout-column > .gb-block-layout-column-inner {
    display: flex;
    flex-direction: column;
    gap: var(--theme-section-padding);
}

.video-background-block .review-text svg {
    margin-right: 0.5rem;
}

.home .site-inner main > .red-bar--junk + .wp-block-genesis-blocks-gb-columns {
    padding: 5rem 0 1rem;
}

.service-areas h2 {
    margin: 0;
}

.footer-group > .gb-layout-column-wrap {
    display: grid;
    grid-template-columns: 230px repeat(3, auto) 22%;
    gap: 7rem;
}

.footer-group .gb-block-layout-column:first-child > .gb-block-layout-column-inner {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.footer-group .gb-block-layout-column:first-child .wp-block-image,
.footer-group .gb-block-layout-column:first-child .wp-block-image img {
    max-width: 150px;
    margin: 0;
}

.footer-group .address-block .address-block--item {
    display: flex;
    gap: 1.2rem;
}

.footer-group .address-block p,
.footer-group .address-block a {
    color: #000;
    font-size: 1.6rem;
}

.footer-group .address-block a {
    font-weight: 500;
}

.footer-group .address-block svg {
    color: #000;
    width: 16px;
    height: 16px;
}

.footer-group .custom-button a.button {
    font-size: 1.5rem;
    line-height: 2.5rem;
    box-shadow: none;
    padding: 1rem 1.5rem;
}

.review-badges--junk {
    max-width: 850px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .video-background-block .custom-button a.button {
        border-color: var(--junk-light-green);
        border-width: 3px;
        background-color: transparent;
    }

    .video-background-block .custom-button a.button:hover {
        background-color: rgba(255, 255, 255, 0.18);
    }
}

@media (max-width: 991px) {
    .footer-group {
        overflow: unset;
    }
    
    .footer-group > .gb-layout-column-wrap {
        grid-template-columns: 1fr repeat(3, 17%);
        grid-template-areas: unset !important;
    }

    .footer-group > .gb-layout-column-wrap > .gb-block-layout-column {
        grid-area: unset !important;
    }
}

@media (max-width: 895px) {
    .primary-menu-ctas .phone-number-block a .phone-icon {
        width: 1.6rem;
        height: 1.6rem;
    }

    .footer-group > .gb-layout-column-wrap {
        grid-template-columns: auto;
    }

    .footer-group > .gb-layout-column-wrap > .gb-block-layout-column:not(:first-child):not(:last-child) {
        display: none;
    }
}

@media (max-width: 767px) {
    .services-space-bottom {
        margin: 6rem 0;
    }

    .services-space-bottom > .gb-layout-column-wrap,
    .services-space-bottom + .wp-block-genesis-blocks-gb-columns > .gb-layout-column-wrap {
        gap: 6rem;
    }

    .ib-image--junk img {
        max-height: 250px;
    }

    .page-header + .inner-polygon--junk {
        padding-top: var(--theme-section-padding-mobile);
    }

    .article-content.inner-polygon--junk,
    .service-areas.inner-polygon--junk {
        padding-bottom: var(--theme-section-padding-mobile);
    }

    .junk-bed .wp-block-image:first-child img {
        margin-left: 0;
    }

    .wp-block-genesis-blocks-gb-columns.epic-trucks .gb-layout-column-wrap {
        padding-left: var(--theme-wrap-padding-mobile);
        padding-right: var(--theme-wrap-padding-mobile);
    }

    .wp-block-genesis-blocks-gb-columns.inner-polygon--junk {
        padding: 12rem 0;
    }

    .contact-cta--junk > .gb-layout-column-wrap .wp-block-genesis-blocks-gb-column:last-child {
        max-width: 100%;
    }

    .junk-testimonials-grid .testimonial-grid-wrapper {
        flex-direction: column;
    }

    .junk-step-column > .gb-layout-column-wrap > .gb-block-layout-column > .gb-block-layout-column-inner {
        gap: var(--theme-section-padding-mobile);
    }

    .junk-step-sec.wrap-reverse > .gb-layout-column-wrap {
        display: flex;
        flex-direction: column-reverse;
    }

    .junk-step-column .wp-block-image img {
        max-height: 250px;
    }

    .footer-group .address-block p,
    .footer-group .address-block a {
        font-size: 1.9rem;
    }

    .footer-group .custom-button a.button {
        font-size: 1.7rem;
        margin: 0 0 3rem;
    }

    .icon-content-boxes--section > .gb-layout-column-wrap {
        display: flex;
        flex-direction: column;
    }
}

.geo-locations-section > .gb-layout-column-wrap {
    gap: 6rem;
}

.styled-image .wp-block-image {
    width: 100%;
}

.styled-image .wp-block-image:before {
    content: '';
    background-color: var(--junk-light-green);
    position: absolute;
    width: calc(100% - 5rem);
    height: calc(100% - 5rem);
    top: auto;
    bottom: -2.5rem;
    left: auto;
    right: 0;
    z-index: -1;
}

.styled-image.wrap-reverse .wp-block-image:before {
    right: 2.5rem;
}

.styled-image .wp-block-image .aligncenter {
    display: flex;
    width: 100%;
    margin: 0;
    padding: 0 2.5rem;
}


.styled-image.wrap-reverse .wp-block-image .aligncenter {
    padding: 0 5rem 0 0;
}

.styled-image .wp-block-image img {
    aspect-ratio: 13 / 8;
    width: 100%;
    object-fit: cover;
    object-position: center center;
}