/*
Theme Name: All American Recycling
Version: 2.0
Description: Customizable responsive accessible Wordpress child theme created by CyberOptik
Author: CyberOptik
Author URI: https://www.cyberoptik.net/
Template: optik-theme-6
*/





/******************************************************************************
 * * *  IMPORTS & VARIABLES  * * * * * * * * * * * * * * * * * * * * * * * * *
******************************************************************************/

@import url("../optik-theme-6/style.css");

/* Medium */
@font-face {
	font-family: 'Montserrat';
	font-weight: 500;
	src: url('fonts/montserrat/montserrat-medium.woff2');
}

/*Regular Italic */
@font-face {
	font-family: 'Montserrat';
	font-style: italic;
	src: url('fonts/montserrat/montserrat-mediumitalic.woff2');
}

/* Semi Bold */
@font-face {
	font-family: 'Montserrat';
	font-weight: 600;
	src: url('fonts/montserrat/montserrat-semibold.woff2');
}

/* Bold */
@font-face {
	font-family: 'Montserrat';
	font-weight: 700;
	src: url('fonts/montserrat/montserrat-bold.woff2');
}




/* Add font imports here */





/******************************************************************************
 * * *  STRUCTURAL ELEMENTS  * * * * * * * * * * * * * * * * * * * * * * * * * 
******************************************************************************/



/***  UNIVERSAL STYLES  ***/

html {
	font-size: 16px;
	font-weight: 500;
}

body {
	line-height: 1.6em;
	font-family: var(--wp--custom--font--1);
	color: var(--wp--custom--dark--2);
}

:is(.has-primary-background-color,
	.has-primary-main-background-color,
	.has-primary-dark-background-color,
	.has-secondary-background-color,
	.has-secondary-main-background-color,
	.has-secondary-dark-background-color) {
	color: white !important;
}

/***  BACK TO TOP BUTTON  ***/

.btt-button [class*="fa"] {
	border-radius: var(--wp--custom--radius--xs);
	background-color: var(--wp--custom--primary--main);
	font-weight: 300;
	color: white;
}

.btt-button:hover [class*="fa"] {
	background-color: var(--wp--custom--primary--dark);
	color: white;
}





/******************************************************************************
 * * *  CONTENT STYLES  * * * * * * * * * * * * * * * * * * * * * * * * * * * *
******************************************************************************/



/***  TEXT & LINKS  ***/

a {
	color: var(--wp--custom--primary--main);
}

a:hover {
	color: var(--wp--custom--primary--light);
}

.main-wrap a:not([class]),
.cta-bar a:not([class]) {
	border-bottom: 1px dotted;
}

.main-wrap a:not([class]):not(:has(img)):hover,
.cta-bar a:not([class]):hover {
	border-bottom-style: solid;
}

:is(.has-primary-background-color,
	.has-primary-dark-background-color,
	.has-secondary-background-color,
	.has-secondary-dark-background-color) a:not(.wp-block-button__link) {
	color: var(--wp--custom--light--1);
}

:is(.has-primary-background-color,
	.has-primary-dark-background-color) a:not(.wp-block-button__link):hover {
	color: var(--wp--custom--secondary--light);
}

:is(.has-secondary-background-color,
	.has-secondary-dark-background-color) a:not(.wp-block-button__link):hover {
	color: var(--wp--custom--primary--light);
}



/***  HEADINGS  ***/

h1,
h2,
h3,
h4,
h5,
h6,
.heading-1,
.heading-2,
.heading-3,
.heading-4,
.heading-5,
.heading-6 {
	font-weight: 600;
	color: var(--wp--custom--secondary--dark);
}

:is(.has-primary-background-color,
	.has-primary-main-background-color,
	.has-primary-dark-background-color,
	.has-secondary-background-color,
	.has-secondary-main-background-color,
	.has-secondary-dark-background-color) :is(h1, h2, h3, h4, h5, h6,
	.heading-1,
	.heading-2,
	.heading-3,
	.heading-4,
	.heading-5,
	.heading-6) {
	color: white !important;
}

h1,
.heading-1 {
	font-size: 4.5em;
	font-weight: 700;
}

h2,
.heading-2 {
	font-size: 3em;
	font-weight: 700;
}

h3,
.heading-3 {
	font-size: 1.75em;
}

h4,
.heading-4 {
	font-size: 1.25em;
	letter-spacing: .5px;
}

h5,
.heading-5 {
	font-size: 1em;
	letter-spacing: .5px;
}

h6,
.heading-6 {
	font-size: 0.85em;
}


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

	h1,
	.heading-1 {
		font-size: 3.5em;
	}

	h2,
	.heading-2 {
		font-size: 2.5em;
	}
}

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

	h1,
	.heading-1 {
		font-size: 2.3em;
	}

	h2,
	.heading-2 {
		font-size: 2em;
	}
}


/***  BORDERS & DIVIDERS  ***/

hr,
.divider {
	display: block;
	width: 100%;
	height: 1px;
	border: 0;
	border-top: 1px solid #e2e2e2;
	margin: 2.5em auto;
	padding: 0;
}



/***  BUTTONS  ***/

.button,
.wp-block-button__link,
.button-outline,
.is-style-outline .wp-block-button__link {
	padding: 0.75em 2.25em;
	border-color: var(--wp--custom--primary--main);
	border-radius: var(--wp--custom--radius--xs);
	background-color: var(--wp--custom--primary--main);
	color: white;
	border-width: 2px;
	text-transform: uppercase;
	letter-spacing: .5px;
	font-size: .9em;
}

.button:hover,
.wp-block-button__link:hover,
.button-outline:hover,
.is-style-outline .wp-block-button__link:hover {
	border-color: var(--wp--custom--primary--dark);
	background-color: var(--wp--custom--primary--dark);
	color: white;
	transform: translateY(-3px);
}

.button [class*="fa"],
.wp-block-button__link [class*="fa"],
.button:hover [class*="fa"],
.wp-block-button__link:hover [class*="fa"] {
	color: inherit !important;
}

/* Outlined Button */

.button-outline,
.is-style-outline .wp-block-button__link {
	background: none;
	color: var(--wp--custom--primary--main);
}

.button-outline:hover,
.is-style-outline .wp-block-button__link:hover {
	border-color: var(--wp--custom--secondary--main);
	background: none;
	color: var(--wp--custom--secondary--main);
}



/***  ICONS  ***/

.fa {
	font-weight: 300;
}

/* Icon Colors */

.fa,
.fas,
.far,
.fal,
.fab {
	color: var(--wp--custom--primary--main);
}

a .fa,
a .fas,
a .far,
a .fal,
a .fab {
	color: var(--wp--custom--primary--main);
}

a:hover .fa,
a:hover .fas,
a:hover .far,
a:hover .fal,
a:hover .fab {
	color: var(--wp--custom--secondary--main);
}

/* Icon Backgrounds */

.fa-bg {
	background-color: var(--wp--custom--primary--main);
	color: white;
}

a .fa-bg {
	background-color: var(--wp--custom--primary--main);
	color: white;
}

a:hover .fa-bg {
	background-color: var(--wp--custom--secondary--main);
	color: white;
}

/* Icon Borders */

.fa-br {
	border-color: var(--wp--custom--primary--main);
}

a .fa-br {
	border-color: var(--wp--custom--primary--main);
}

a:hover .fa-br {
	border-color: var(--wp--custom--secondary--main);
}



/***  LISTS  ***/

.arrow-list li:before,
.check-list li:before,
.check-circle-list li:before,
.icon-list li:before,
.contact-list li:before,
.arrow-list li [class*="fa"],
.check-list li [class*="fa"],
.check-circle-list li [class*="fa"],
.icon-list li [class*="fa"],
.contact-list li [class*="fa"] {
	color: var(--wp--custom--primary--main);
}

/*lists*/
.has-primary-dark-background-color [class*="is-style-"][class*="-list"] li:before,
.has-primary-dark-background-color [class*="is-style-"][class*="-list-item"]:before,
.has-primary-main-background-color [class*="is-style-"][class*="-list"] li:before,
.has-primary-main-background-color [class*="is-style-"][class*="-list-item"]:before {
	color: var(--wp--custom--secondary--light);
}

.has-secondary-main-background-color [class*="is-style-"][class*="-list"] li:before,
.has-secondary-main-background-color [class*="is-style-"][class*="-list-item"]:before,
.has-secondary-dark-background-color [class*="is-style-"][class*="-list"] li:before,
.has-secondary-dark-background-color [class*="is-style-"][class*="-list-item"]:before {
	color: var(--wp--custom--primary--light);
}

@media (min-width:601px) and (max-width:900px) {
	.tablet-list-2 {
		columns: 2;
	}
}



/***  FORMS  ***/

/* Inputs */

input[type="text"],
input[type="email"],
input[type="number"],
input[type="password"],
input[type="search"],
input[type="tel"],
input[type="url"],
input[type="date"],
input[type="datetime-local"],
input[type="month"],
input[type="time"],
input[type="week"],
textarea,
select,
.filter-reset {
	border-radius: var(--wp--custom--radius--xs);
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="number"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
input[type="date"]:focus,
input[type="datetime-local"]:focus,
input[type="month"]:focus,
input[type="time"]:focus,
input[type="week"]:focus,
textarea:focus,
select:focus {
	border-color: var(--wp--custom--primary--main);
}

/* Buttons */

input[type="submit"],
input[type="reset"],
input[type="button"],
form button {
	border-color: var(--wp--custom--primary--main);
	background-color: var(--wp--custom--primary--main);
	border-radius: var(--wp--custom--radius--xs);
	color: white;
}

input[type="Submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover,
form button:hover {
	border-color: var(--wp--custom--primary--light);
	background-color: var(--wp--custom--primary--light);
	color: white;
}

input[type="Submit"]:active,
input[type="reset"]:active,
input[type="button"]:active,
form button:active {
	border-color: var(--wp--custom--primary--dark);
	background-color: var(--wp--custom--primary--dark);
	color: white;
}





/******************************************************************************
 * * *  HEADER STYLES  * * * * * * * * * * * * * * * * * * * * * * * * * * * * 
******************************************************************************/



/***  SCROLL BAR  ***/

.scroll-bar {
	background-color: white;
}

.scroll-logo {
	max-height: 50px;
}


/***  TOP BAR  ***/

.top-bar {
	background-color: transparent;
	padding-bottom: 0;
}

.top-bar .widget_nav_menu {
	text-align: right;
	font-size: .9em;
	text-transform: uppercase;
	letter-spacing: .5px;
}

.top-bar-widget .menu a {
	border: 1px solid var(--wp--custom--primary--main);
	border-radius: var(--wp--custom--radius--xs);
}

.top-bar-widget .menu a:hover {
	background-color: var(--wp--custom--primary--main);
	color: white;
}

@media screen and (max-width:600px) {
	.top-bar .widget_nav_menu {
		text-align: center;
		font-size: .8em;
		margin-bottom: 15px;
	}
}

/***  HEADER  ***/

/*transparent-header*/
.header-wrap {
	position: absolute;
	z-index: 99;
	background: linear-gradient(180deg, rgb(255 255 255 / 81%) 47%, rgb(255 255 255 / 0%) 100%);
}

.header-logo {
	max-height: 70px;
}

.header-masthead {
	padding-top: 0;
}

.top-bar-container,
.header-container,
.scroll-bar-container {
	max-width: 1920px;
}

/* Menu Button */

.header .menu-button [class*="fa"],
.header .menu-button:hover [class*="fa"] {
	color: var(--wp--custom--dark--1);
}

.header .menu-button.active [class*="fa"] {
	background-color: var(--wp--custom--primary--main);
	color: white;
}



/***  NAVBAR  ***/

.navbar {}



/***  NAV MENUS  ***/
@media screen and (max-width:1306px) {
	.nav-menu {
		font-size: .9em;
	}

	.nav-menu>li {
		padding: 0 5px;
	}
}

.nav-menu>li>a,
.nav-menu>li>span,
.nav-menu>li>button {
	color: var(--wp--custom--dark--2);
}

.nav-menu>li:last-of-type,
.nav-menu>li:last-of-type a {
	padding-right: 0;
}

.single-post .nav-menu>li.posts-link>a,
.category .nav-menu>li.posts-link>a,
.single-service .nav-menu>li.services-link>a,
.single-career .nav-menu>li.careers-link>a,
.single-resource .nav-menu>li.resources-link>a,
.nav-menu>li.current-menu-ancestor>a,
.nav-menu>li.current-menu-ancestor>span,
.nav-menu>li.current-menu-ancestor>button,
.nav-menu>li.current-menu-item>a,
.nav-menu>li.current-menu-item>span,
.nav-menu>li.current-menu-item>button,
.nav-menu>li:hover>a,
.nav-menu>li:hover>span,
.nav-menu>li:hover>button {
	color: var(--wp--custom--primary--main);
}

/* Nav Button */

.nav-menu>li.nav-button {
	background-color: transparent !important;
}

.nav-menu>li.nav-button>a {
	margin-left: 10px;
	margin-right: 10px;
	background-color: var(--wp--custom--primary--main);
	border-radius: var(--wp--custom--radius--xl);
	color: white;
}

.nav-menu>li.nav-button>a:hover {
	background-color: var(--wp--custom--primary--light);
}

/* Dropdowns */
.nav-menu li ul li:first-child {
	padding-top: 8px;
}

.nav-menu li ul li:last-child {
	padding-bottom: 8px;
}

.nav-menu li ul>li>a,
.nav-menu li ul>li>span,
.nav-menu li ul>li>button {
	color: var(--wp--custom--dark--3);
}

.single-careers .nav-menu li ul li.careers-link>a,
.nav-menu li ul li.current-menu-item>a,
.nav-menu li ul li.current-menu-item>span,
.nav-menu li ul li.current-menu-item>button,
.nav-menu li ul li:hover>a,
.nav-menu li ul li:hover>span,
.nav-menu li ul li:hover>button {
	color: var(--wp--custom--primary--main);
}

/* Nested Dropdowns */

.nav-menu li ul li ul {
	top: -8px;
}



/***  HIDDEN NAV  ***/

.hidden-menu .sub-menu {
	padding-left: 7px;
}

.hidden-menu li a {
	color: var(--wp--custom--dark--3);
}

.hidden-menu li.current-menu-item>a {
	color: var(--wp--custom--primary--main);
}





/******************************************************************************
 * * *  BODY STYLES  * * * * * * * * * * * * * * * * * * * * * * * * * * * * * 
******************************************************************************/



/***  BANNER  ***/

.banner {
	background-color: var(--wp--custom--light--3);
	background: linear-gradient(180deg, rgb(255 255 255) 0%, rgb(29 36 92) 80%);
	color: var(--wp--custom--dark--1);
	text-align: left;
	text-shadow: 1px 1px 20px #00000080;
}

.banner:before {
	background-attachment: fixed;
}


.banner-container {
	padding-top: 85px;
}



.banner-inner {
	padding-top: var(--wp--custom--spacer--lg);
	padding-bottom: var(--wp--custom--spacer--lg);
}

.banner-viewheight .banner-inner {
	padding-top: calc(var(--wp--custom--spacer--lg) + 140px);
	padding-bottom: var(--wp--custom--spacer--lg);
}

.banner :is(h1, h2, h3, h4, h5, h6) {
	color: white;
}

.banner a {
	color: var(--wp--custom--primary--light);
}

.banner a:hover {
	color: white;
}

.custom-banner {
	text-shadow: 1px 1px 20px #00000080;
}

.custom-banner .wp-block-cover__background {
	background: linear-gradient(180deg, rgb(255 255 255) 0%, rgb(29 36 92) 80%);
}

.custom-banner .wp-block-group {
	padding-top: 85px !important;
}



/***  HEADLINE BAR  ***/

.headline-bar {}



/***  ENTRY NAVBAR  ***/

.entry-menu>li>a {
	color: var(--wp--custom--dark--3);
}

.entry-menu>li.current-menu-item>a,
.entry-menu>li:hover>a {
	color: var(--wp--custom--primary--main);
}



/***  MAIN  ***/

.main {
	padding-top: var(--wp--custom--spacer--xxl);
	padding-bottom: var(--wp--custom--spacer--xxl);
}



/***  ARCHIVE  ***/

/* Entry Cols */

.entry-cols .entry-link {
	border-radius: var(--wp--custom--radius--xs);
	background-color: var(--wp--custom--light--2);
	overflow: hidden;
	color: var(--wp--custom--dark--2);
}

.entry-cols .entry-link:hover {
	transform: translateY(-3px);
}

.entry-cols .entry-icon-wrap:first-child {
	padding: 30px 30px 0;
}

.entry-cols .entry-icon svg {
	width: 60px;
	fill: var(--wp--custom--primary--main);
}

.entry-cols .entry-text-wrap {
	padding: 30px;
}

.includes-link-text .entry:not(.col-full) .entry-text-wrap {
	padding-bottom: 80px;
}

.entry-cols .entry:not(.col-full) .entry-link-text-wrap {
	left: 30px;
	bottom: 30px;
}

.entry-cols .entry-link .entry-link-text {
	color: var(--wp--custom--primary--main);
}

.entry-cols .entry-link:hover .entry-link-text {
	color: var(--wp--custom--primary--light);
}

img[src*="/images/thumb-default.png"] {
	background-color: var(--wp--custom--light--1);
}

/* Archive Pagination */

.archive-pagination a {
	border-radius: var(--wp--custom--radius--xl);
	border-color: var(--wp--custom--light--1);
	color: var(--wp--custom--primary--main);
}

.archive-pagination a:hover {
	border-color: var(--wp--custom--primary--light);
	color: var(--wp--custom--primary--light);
}

.archive-pagination a [class*="fa"],
.archive-pagination a:hover [class*="fa"] {
	color: inherit !important;
	transition: all 0ms ease-in-out;
}



/***  SINGLE  ***/





/******************************************************************************
 * * *  FOOTER STYLES  * * * * * * * * * * * * * * * * * * * * * * * * * * * * 
******************************************************************************/



/***  CTA BAR  ***/

.cta-bar {
	padding-top: var(--wp--custom--spacer--lg);
	padding-bottom: var(--wp--custom--spacer--lg);
	background-color: var(--wp--custom--secondary--dark);
}

.cta-bar h1,
.cta-bar h2,
.cta-bar h3,
.cta-bar h4,
.cta-bar h5,
.cta-bar h6 {
	color: white;
}




/***  FOOTER  ***/

.footer {
	padding-top: 0;
	padding-bottom: 0;
	background-color: var(--wp--custom--secondary--dark);
	color: white;
	font-size: 0.9em;
}

.footer-container {
	padding-left: 0;
	padding-right: 0;
	max-width: unset;
	padding-bottom: var(--wp--custom--spacer--md);
}

.footer a {
	border-bottom: 1px dotted;
}

.footer a:hover {
	border-bottom-style: solid;
}

.footer ul li:before {
	font-weight: 700;
}

.footer .location-cols {
	gap: 0;
	padding-top: 0;
	padding-bottom: 0;
}

.footer .wp-block-group {
	border-top: 1px solid var(--wp--custom--light--2);
	border-bottom: 1px solid var(--wp--custom--light--2);
}

.footer .location-cols .wp-block-column {
	padding-top: var(--wp--custom--spacer--lg);
	padding-bottom: var(--wp--custom--spacer--lg);
}

.footer .location-cols .wp-block-column:nth-last-of-type(2) {
	border-left: 1px solid var(--wp--custom--light--2);
	border-right: 1px solid var(--wp--custom--light--2);
}

@media screen and (max-width:900px) {
	.footer .location-cols .wp-block-column:nth-last-of-type(2) {
		border-left: none;
		border-right: none;
		border-top: 1px solid var(--wp--custom--light--2);
		border-bottom: 1px solid var(--wp--custom--light--2);
	}
}

.footer .location-cols .wp-block-heading {
	text-align: center;
}

.footer .location-cols ul {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}


/***  6.3 BOTTOM BAR  ***/

.bottom-bar {
	background-color: var(--wp--custom--secondary--dark);
	font-size: 0.9em;
	color: white;
}

/* Menus */

.bottom-bar a {
	color: var(--wp--custom--light--3);
	border-bottom: 1px dotted;
}

.bottom-bar a:hover {
	color: var(--wp--custom--primary--light);
	border-bottom-style: solid;
}





/******************************************************************************
 * * *  7 CUSTOM STYLES  * * * * * * * * * * * * * * * * * * * * * * * * * * * 
******************************************************************************/

/* Add custom theme styles here */



/***  ICON CARDS  ***/

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

.icon-cards .wp-block-column {
	background-color: var(--wp--custom--light--2);
	padding: var(--wp--custom--spacer--md) var(--wp--custom--spacer--sm);
	transition: all 350ms ease-in-out;
}

.icon-cards .wp-block-column:hover {
	background-color: var(--wp--custom--primary--main);
	color: white;
}

.icon-cards .wp-block-column .wp-block-heading,
.icon-cards .wp-block-column .wp-block-heading a {
	color: var(--wp--custom--primary--main);
	border-bottom: none;
	transition: all 350ms ease-in-out;
}

.icon-cards .wp-block-column:hover .wp-block-heading,
.icon-cards .wp-block-column:hover .wp-block-heading a,
.icon-cards .wp-block-column:hover .wp-block-heading a:hover {
	color: white;
}

.icon-cards .wp-block-outermost-icon-block {
	justify-content: center;
}

.icon-cards .wp-block-heading:not(:first-child) {
	margin-top: 0.25em;
	font-size: 1.45em;
}

/*media text*/
.wp-block-media-text:not(.has-media-on-the-right) .wp-block-media-text__content {
	padding-right: 0;
}

.wp-block-media-text.has-media-on-the-right .wp-block-media-text__content {
	padding-left: 0;
}

@media screen and (max-width:600px) {
	.wp-block-media-text .wp-block-media-text__content {
		padding-left: 0;
		padding-right: 0;
	}
}

.wp-block-social-link {
	border-radius: var(--wp--custom--radius--xs);
}

/*THEME FIX*/

.wp-block-group.alignfull>* {
	padding-left: var(--wp--custom--spacer--lg);
	padding-right: var(--wp--custom--spacer--lg);
	max-width: 1520px;
}

@media screen and (max-width: 900px) {
	.wp-block-group.alignfull>* {
		padding-left: var(--wp--custom--spacer--md);
		padding-right: var(--wp--custom--spacer--md);
	}
}

/*home banner video*/
@media screen and (max-width:600px) {
	.home-banner-cols {
		flex-direction: column;
		align-items: flex-start;
	}
}

body.home .play-video~.wp-block-embed {
	display: none;
}

/* Play button */
.play-video svg {
	cursor: pointer;
	transition: all 300ms ease-in-out;
}

.play-video:hover svg {
	fill: var(--wp--custom--primary--main) !important;
	transform: translateY(-3px);
}

/* Popup */
.video-popup {
	display: none;
	position: fixed;
	inset: 0;
	z-index: 99999;
}

.video-popup-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, .8);
	z-index: -1;
}

.video-popup-content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: min(90vw, 1000px);
	aspect-ratio: 16 / 8.45;
}

.video-popup-frame,
.video-popup-frame iframe {
	width: 100%;
	height: 100%;
	display: block;
	border: 0;
}

.video-popup-close {
	position: absolute;
	top: -45px;
	right: 0;
	background: none;
	border: none;
	color: white;
	font-size: 2.5em;
	line-height: 1;
	cursor: pointer;
	padding: 0;
	transition: all 300ms ease-in-out;
}

.video-popup-close:hover {
	color: var(--wp--custom--primary--light);
}

/* Mobile */
@media (max-width: 767px) {
	.video-popup-content {
		width: 95vw;
	}
}

/*cards*/
.is-style-cards .wp-block-column {
	background-color: white;
	padding-left: var(--wp--custom--spacer--xs);
	padding-right: var(--wp--custom--spacer--xs);
	padding-top: var(--wp--custom--spacer--md);
	padding-bottom: var(--wp--custom--spacer--xl);
	position: relative;
	transition: all 300ms ease-in-out;
	box-shadow: var(--wp--custom--shadow--2);
}

.is-style-cards .wp-block-column:hover {
	box-shadow: var(--wp--custom--shadow--1);
}

.is-style-cards .wp-block-column .wp-block-buttons {
	position: absolute;
	bottom: 30px;
	width: calc(100% - 40px);
}

.is-style-cards .wp-block-column:hover .wp-block-button__link {
	border-color: var(--wp--custom--primary--dark);
	background-color: var(--wp--custom--primary--dark);
	color: white;
	transform: translateY(-3px);
}

/*card cover*/
.is-style-card {
	position: relative;
}

.is-style-card .wp-block-cover .wp-block-cover__background {
	transition: all 300ms ease-in-out;
}

.is-style-card .wp-block-cover:hover .wp-block-cover__background {
	opacity: .8;
}


.is-style-card:hover .wp-block-button__link {
	border-color: var(--wp--custom--primary--dark);
	background-color: var(--wp--custom--primary--dark);
	color: white;
	transform: translateY(-3px);
}

.is-style-card .wp-block-buttons {
	position: absolute;
	bottom: 30px;
	left: 20px;
	width: calc(100% - 40px);
	pointer-events: none;
}

/*overlap-img-right*/
.overlap-img-right {
	position: relative;
	z-index: 1;
}

.overlap-img-right .wp-block-column:last-of-type img {
	margin-bottom: -60px;
}

@media screen and (max-width:900px) {
	.overlap-img-right {
		text-align: center;
	}

	.overlap-img-right .wp-block-buttons {
		justify-content: center;
	}

	.overlap-img-right .wp-block-column:first-of-type {
		padding-bottom: 0 !important;
	}

	.overlap-img-right .wp-block-column:last-of-type img {
		max-height: 60vh;
	}
}

/*membership-gallery*/
.membership-gallery .wp-block-image {
	margin-bottom: 0 !important;
	width: auto !important;
	max-width: 150px !important;
}

@media screen and (max-width:600px) {
	.membership-gallery .wp-block-image {
		max-width: 78px !important;
	}
}

.membership-gallery {
	justify-content: center;
}

.membership-gallery .wp-block-image img {
	max-height: 100px;
	object-fit: contain;
}

/*recycling-services-cols*/
@media (min-width:601px) and (max-width:900px) {
	.limit-50-cols .wp-block-column {
		max-width: 50%;
	}
}