/*!
Theme Name: Women at Work Painters
Author: Apex
Version: 1.0.0
Tested up to: 8.2
Requires PHP: 8.2
Text Domain: womenatwork
*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600;700;800&display=swap');

:root {
	--text: #484848;
	--accent-1: #75c457;
	--accent-2: #532996;
	--container: 1200px;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

b, strong {
	font-weight: 600;
}

body {
	font-family: 'Montserrat', 'Open Sans', sans-serif;
	line-height: 1.6;
	color: var(--text);
}

img {
	display: block;
	max-width: 100%;
	height: auto;
	/*width: auto;*/
}

img:not([width]) {
	width: auto;
}

img.full-width {
	width: 100%;
}

iframe {
	max-width: 100%;
	aspect-ratio: 1.7777;
}

.h1, h1 {
	font-size: 38px;
	font-size: clamp(1.5rem, 0.665rem + 2.672vi, 2.375rem);
	line-height: 38px;
	font-weight: 400;
}

.h2, h2 {
	font-size: clamp(1.6rem, 4vw, 2rem);
	line-height: 1.15;
	font-weight: 400;
}

.h3, h3 {
	font-size: 24px;
	line-height: 24px;
	font-weight: 400;
}

.h4, h4 {
	font-size: 18px;
	line-height: 32px;
	font-weight: 400;
}

.h5, h5 {
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 7px;
}

h1:not(:last-child),
h2:not(:last-child),
h3:not(:last-child) {
	margin-bottom: 35px;
}

.slider-content h1,
h4:not(:last-child) {
	margin-bottom: 16px;
}

.bold {
	font-weight: 600;
}

.lead {
	color: #3c3c3c;
	font-size: 130%;
}

.center {
	text-align: center;
}

.white {
	color: #fff;
}

.green {
	color: var(--accent-1);
}

.purple {
	color: var(--accent-2);
}

p {
	line-height: 24px;
}

a {
	color: var(--accent-1);
	text-decoration: none;
	transition: color .25s;
}

a:hover {
	color: var(--accent-2);
}

.content > a:not(:last-child),
ol:not(:last-child),
ul:not(:last-child),
p:not(:last-child) {
	margin-bottom: 27px;
}

ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

/* Lists inside editable page content */
.content ul,
.wysiwyg-content ul,
.page-content .container ul {
	list-style: disc;
	padding-left: 2em;
}

.content ol,
.wysiwyg-content ol,
.page-content .container ol {
	list-style: decimal;
	padding-left: 2em;
}

.content li,
.wysiwyg-content li,
.page-content .container li {
	margin-bottom: 0.1em;
}

.img-caption__wrapper:not(:last-child) {
	margin-bottom: 1rem;
}

.content img:not(:last-child):not(.img-caption__wrapper img) {
	margin-bottom: 1rem;
}

.container {
	max-width: var(--container);
	width: 100%;
	margin: 0 auto;
	padding-inline: 20px;
}
@media (max-width: 767px) {
	.container {
		padding-inline: 14px;
	}
}

/*header*/
.header-top {
	--container: 1245px;
	padding-block: 25px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
	z-index: 10;
	position: relative;
	background: #fff;
}

.header-top_phone-text {
	color: var(--accent-2);
	font-size: 22px;
	font-weight: 400;
	line-height: 28px;
	text-align: center;
}

.header-top_phone-link {
	color: var(--accent-2);
	font-size: 32px;
	font-weight: 600;
	line-height: 1;
}

.header-logo {
	flex-grow: 1;
}

.header-logo img {
	width: auto;
}

.header-top__quote {
	text-transform: uppercase;
}

.header-nav {
	background-color: var(--accent-2);
	position: relative;
	z-index: 50;
}

.header-menu {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 10px;
	color: #fff;
	padding-inline: 0;
}

.header-menu .menu-item {
	position: relative;
}

.header-menu a {
	color: #fff;
	display: block;
	padding: 8px;
	font-weight: 300;
	transition: color .25s;
}

.header-menu a:hover,
.header-menu .current-menu-item > a {
	color: #d4d0e7;
}

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

.menu-button a {
	background-color: var(--accent-1);
	padding: 8px 10px;
	font-weight: 600;
	text-transform: uppercase;
}

.menu-toggle {
	display: none;
	cursor: pointer;
}

.bar1, .bar2, .bar3 {
	width: 22px;
	height: 2px;
	background-color: var(--accent-2);
	margin: 3px 0;
	transition: 0.4s;
}

.open .bar1 {
	transform: translate(0, 5px) rotate(-45deg);
}

.open .bar2 {
	opacity: 0;
}

.open .bar3 {
	transform: translate(0, -5px) rotate(45deg);
}

/*footer*/
.footer-top {
	background: #646464;
	padding-block: 2rem;
}

.footer h4 {
	color: #fff;
}

.footer-container {
	display: flex;
	flex-wrap: wrap;
	gap: 2rem;
	color: #fff;
}

.footer-col {
	padding-bottom: 1rem;
}

.footer-col:not(:last-child) {
	border-bottom: solid #fff 1px;
	margin-bottom: 1rem;
}

.footer-bottom__container {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 1rem;
}

.footer-bottom {
	padding-block: 1rem;
	background: #3d3d3d;
	color: #7c7d80;
	font-size: 12px;
}

.footer-bottom a {
	color: inherit;
	transition: color .25s;
}

.footer-bottom a:hover {
	color: #999;
}

.footer-bottom svg {
	width: 22px;
}

.footer-widget h4 {
	font-size: 18px;
	font-weight: 400;
	letter-spacing: 2px;
}

.footer-social {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
}

/* Sidebar spacing on pages without a banner */

.page-layout.has-sidebar {
	padding-top: 3rem;
}

body:has(.header-banner) .page-layout.has-sidebar {
	padding-top: 0;
}

/* Softer sidebar quote form */

.sidebar .wpcf7-form {
	border-radius: 8px;
	overflow: hidden;
	align-items: stretch;
}

.sidebar .wpcf7-form-control {
	border-radius: 4px;
}

.sidebar .wpcf7-submit,
.sidebar input[type="submit"] {
	border-radius: 6px;
}

.post-grid {
	margin-top: 3rem;
	margin-bottom: 3rem;

}

.wpcf7-form-control::placeholder {
	color: #777;
	opacity: 1;
}

.wpcf7-form select {
	color: #777;
}

.wpcf7-form-control {
	border-radius: 4px;
}
/* Static homepage hero */

.hero-section {
	position: relative;
	width: 100vw;
	margin-left: calc(50% - 50vw);
	min-height: clamp(500px, 48vw, 820px);
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	background: var(--accent-2);
	padding: 0 !important;
}

.hero-section__image {
	position: absolute;
	inset: 0;
	width: 100% !important;
	height: 100% !important;
	object-fit: cover;
	z-index: 0;
}

.hero-section::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.25);
	z-index: 1;
}

.hero-section::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(
		90deg,
		rgba(0, 0, 0, 0.68) 0%,
		rgba(0, 0, 0, 0.58) 35%,
		rgba(0, 0, 0, 0.28) 55%,
		rgba(0, 0, 0, 0) 66%,
		rgba(0, 0, 0, 0) 100%
	);
	z-index: 1;
	pointer-events: none;
}

.hero-section__content {
	position: relative;
	z-index: 3;
	padding-block: 4rem;
}

.hero-section__content {
	text-align: left;
	max-width: var(--container);
	width: 100%;
}

.hero-section__content h1,
.hero-section__content h2,
.hero-section__content .slider-buttons {
	max-width: 60%;
}

.hero-section__content .slider-buttons {
	justify-content: flex-start;
}
@media (max-width: 700px) {
	.hero-section__content {
		text-align: center;
	}

	.hero-section__content h1,
	.hero-section__content h2,
	.hero-section__content .slider-buttons {
		max-width: 100%;
	}

	.hero-section__content .slider-buttons {
		justify-content: center;
	}
}


body.home .page-content {
	padding-top: 0;
}
body.home .page-content,
body.home .page-content {
	padding-bottom: 0;
}

/*form*/
.wpcf7-form {
	background: var(--accent-2);
	display: flex;
	flex-direction: column;
	gap: 1rem;
	padding: 1.5rem;
	color: #fff;
	position: relative;
	justify-content: center;
	align-items: stretch;
	max-width: 500px;
}

.wpcf7-form-control {
	padding: 10px;
	border: 1px solid #ccc;
	line-height: 22px;
	color: #555;
	width: 100%;
}

.wpcf7-form label {
	display: grid;
	width: 100%;
	transition: .25s;
}

.wpcf7-form.submitting label {
	opacity: .5;
}

.wpcf7-spinner {
	margin: 0;
	position: absolute;
}

.wpcf7 form .wpcf7-response-output {
	margin: 0;
	width: 100%;
}

.wpcf7-submit {
	cursor: pointer;
	margin: 0;
	width: 100%;
}

/*other*/
.btn {
	background-color: var(--accent-1);
	border-radius: .33rem;
	color: #fff;
	display: inline-block;
	font-size: 18px;
	font-weight: 500;
	padding: 12px 22px;
	text-align: center;
	transition: all 0.3s ease-in-out 0s;
	border: solid var(--accent-1) 3px;
	white-space: nowrap;
	line-height: 1em;
}

.btn-outline {
	background: transparent;
	border-color: #fff;
}

.btn:hover {
	opacity: .85;
	color: var(--accent-2);
}

.btn-outline:hover {
	background: #fff;
	color: #000;
}

.row {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 1rem 2rem;
}

.row-3 {
	grid-template-columns: repeat(3, 1fr);
}

/*image-content__section*/
.images-section,
.image-content__section {
	display: flex;
	gap: 1rem 2rem;
}

.image-content__image {
	flex-shrink: 1;
	height: fit-content;
}

.images-section__image {
	width: 100%;
	flex-shrink: 1;
}

/*green-section*/
.green-section {
}

.green-section__content {
	background-color: #def0d8;
	padding: 1rem;
}

.green-section__title {
	background-color: var(--accent-1);
	margin: 0 !important;
	padding: 1rem;
	color: #226f0d;
	font-size: 20px;
	line-height: 1.25;
	font-weight: 400;
}

/*gray-section*/
.gray-section {
	border-top: 10px solid var(--accent-1);
	background: #f3f3f3;
	padding: 1rem;
	width: 100%;

}

.gray-section:not(:last-child) {
	margin-bottom: 4rem;
}

/* Wide section wrapper */

.section-wide {
	width: 100%;
	padding-inline: 20px;
}

.section-wide__inner {
	max-width: 1800px;
	width: 100%;
	margin-inline: auto;
}

/*page*/
section:not(:last-child) {
	padding-bottom: 4rem;
}

.page-content {
	padding-block: 0 4rem;
}

.hero-section + .container.content,
.cta-section + .container.content {
	padding-top: 4rem;
}

/*badges*/
.badges-section {
	padding-block: 60px 31px;
	text-align: center;
}

.badges {
	padding-top: 2rem;
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 1rem;
	align-items: center;
	justify-items: center;
}

.badges img {
	margin: auto !important;
	max-width: 100%;
	height: auto;
}

.badges img:not([width]) {
	width: 100%;
}

.badges-section_wom {
	padding-block: 92px;
}

.badges-section_wom img {
	max-width: 150px;
}

.single-post .page-content {
	padding-top: 3rem;
}

/*archive*/
.single-page:has(aside),
.post-page:has(aside) {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
}

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

.project-item,
.post-item {
	color: var(--text) !important;
	text-align: center;
	background: #ececec;
	border-radius: 8px;
	overflow: hidden;
}

.project-item {
	border-radius: 8px;
}

.project-item__image-wrapper,
.post-item__image-wrapper {
	overflow: hidden;
	position: relative;
}

.project-item__image,
.post-item__image {
	width: 100%;
	object-fit: cover;
	aspect-ratio: 1.66;
	border-bottom: solid var(--accent-1) 6px;
	transition: .25s;
}

.project-item__image {
	border-bottom-width: 10px;
}

.project-item__award {
	position: absolute;
	right: 0;
	top: 0;
	width: clamp(100px, 30%, 180px) !important;
	height: auto !important;
	max-width: 45%;
	z-index: 3;
	opacity: .8;
	object-fit: contain;
	pointer-events: none;
}

.post-item:hover .post-item__image {
	scale: 1.05;
}

.project-item:hover .project-item__image {
	opacity: .75;
}

.project-item__content,
.post-item__content {
	padding: 1.6rem 1rem 2.2rem;
	min-height: 210px;
}

.project-item__title {
	font-size: 16px;
	line-height: 1.25;
	margin-bottom: 0.75rem;
}

.post-item__title {
	padding-top: 6px;
}

.project-item__btn {
	margin-top: 1rem;
	border-color: var(--accent-1);
	color: var(--accent-1);
}

.project-item:hover .project-item__btn {
	color: #fff;
	background: var(--accent-1);
}

.project-item__suburb {
	color: #989898;
	font-size: 14px;
	line-height: 1.35;
	margin-bottom: 1.4rem;
}

.meta-date {
	font-size: 12px;
	color: #888;
}

.post-header {
	border-bottom: solid 1px #ddd;
	padding-bottom: 35px;
	margin-bottom: 35px;
}

h1.post-title {
	margin-bottom: 10px;
}

.sidebar-heading {
	font-size: 18px;
	color: #999;
	letter-spacing: 2px;
}

.shortcode-space {
	display: block;
	width: 100%;
	clear: both;
}

/* Project slider */

.projects-slider {
	position: relative;
	width: 100%;
	overflow: hidden;
	padding-inline: 0;
}

.projects-slider__viewport {
	overflow: hidden;
	width: 100%;
}

.projects-slider__track {
	display: flex;
	gap: 2rem;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	padding-bottom: 1rem;
	scrollbar-width: none;
}

.projects-slider__track::-webkit-scrollbar {
	display: none;
}

/* 3.5 cards visible on desktop */
.projects-slider__slide {
	flex: 0 0 calc((100% - 6rem) / 3.5);
	scroll-snap-align: start;
	min-width: 0;
}

.projects-slider__slide .project-item {
	height: 100%;
	border-radius: 8px;
	overflow: hidden;
}

/* Fade hint on right edge */
.projects-slider__viewport {
	position: relative;
}

.projects-slider__viewport::after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	width: 90px;
	height: 100%;
	background: linear-gradient(to right, rgba(255,255,255,0), #fff);
	z-index: 3;
	pointer-events: none;
}

/* Slider arrows */
.projects-slider__arrow {
	position: absolute;
	top: 42%;
	transform: translateY(-50%);
	z-index: 6;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	border: 0;
	background: var(--accent-2);
	color: #fff;
	font-size: 34px;
	line-height: 1;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 0 4px;
	transition: opacity .25s, background-color .25s;
}

.projects-slider__arrow:hover {
	opacity: .85;
}

.projects-slider__arrow--prev {
	left: 10px;
}

.projects-slider__arrow--next {
	right: 10px;
}

.projects-slider__arrow.is-disabled {
	background: #ccc;
	color: #777;
	cursor: not-allowed;
	opacity: 0.75;
}

/* Tablet: 2.5 cards */
@media (max-width: 1023px) {
	.projects-slider__slide {
		flex-basis: calc((100% - 4rem) / 2.5);
	}
}

/* Mobile: 1.15 cards */
@media (max-width: 767px) {
	.projects-slider__slide {
		flex-basis: 60%;
	}

	.projects-slider__viewport::after {
		width: 55px;
	}

	.projects-slider__arrow {
		width: 38px;
		height: 38px;
		font-size: 30px;
	}

	.projects-slider__arrow--prev {
		left: 4px;
	}

	.projects-slider__arrow--next {
		right: 4px;
	}
}

/*overlay-card*/
.overlay-card {
	position: relative;
	border-bottom: solid var(--accent-1) 10px;
	text-align: center;
	padding: 1rem;
	color: #fff !important;
	aspect-ratio: 1.66;
	display: flex;
	align-items: center;
	justify-content: center;
}

.overlay-card:before {
	content: '';
	position: absolute;
	background: #000;
	opacity: .5;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	z-index: -1;
	transition: opacity .25s;
}

.overlay-card:hover:before {
	opacity: .7;
}

img.overlay-card__image {
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
	left: 0;
	top: 0;
	z-index: -2;
}

/*blockquote*/
.blockquote, blockquote, .testimonial {
	position: relative;
	display: block;
	padding: 30px 20px 30px 40px;
	transition: all ease-in-out 0.25s;
	border-left: 10px solid var(--accent-1);
	color: #226f0d;
	background: #def0d8;
}

a.blockquote:hover,
a:hover > blockquote {
	background: #d9d1e8;
	color: #603c9c;
	border-left-color: #603c9c;
}

.testimonial:not(:last-child),
.blockquote:not(:last-child) {
	margin-bottom: 4rem;
}

.testimonial:before, .testimonial:after {
	position: absolute;
	height: 200px;
	font-size: 200px;
	font-family: georgia, serif;
	z-index: 5;
	color: #9fb598;
	opacity: 0.2;
	font-style: italic;
}

.testimonial:before {
	top: -75px;
	left: -10px;
	content: '\201C';
}

.testimonial:after {
	bottom: 0;
	right: 30px;
	content: '\201D';
}

.testimonial p {
	font-style: italic;
	color: var(--text);
}

.testimonial-name {
	font-weight: 600;
	color: var(--accent-1);
}

/*gallery*/
.gallery {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-gap: 2rem;
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	justify-content: center;
}

.gallery-item {
	position: relative;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 1 calc((100% - 40px) / 3);
}

.gallery.columns-2 .gallery-item {
	flex: 0 1 calc((100% - 20px) / 2);
}

.gallery.columns-4 .gallery-item {
	flex: 0 1 calc((100% - 60px) / 4);
}

.gallery.columns-5 .gallery-item {
	flex: 0 1 calc((100% - 80px) / 5);
}

.gallery:not(:last-child) {
	padding-bottom: 2rem;
}

.gallery-icon {
	width: 100%;
}

.gallery-item img {
	aspect-ratio: 1.66;
	object-fit: cover;
	width: 100%;
}

.gallery.columns-4 .gallery-item img,
.gallery.columns-5 .gallery-item img {
	aspect-ratio: 1;
}

/*.gallery-item:before {*/
/*    content: '';*/
/*    position: absolute;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    left: 0;*/
/*    top: 0;*/
/*    background: var(--accent-1);*/
/*    opacity: 0;*/
/*    transition: opacity .25s;*/
/*}*/

/*.gallery-icon:after {*/
/*    content: 'View Larger';*/
/*    position: absolute;*/
/*    background: #252525;*/
/*    color: #fff;*/
/*    padding: 5px 10px;*/
/*    border-radius: 2px;*/
/*    opacity: 0;*/
/*    transition: opacity .25s;*/
/*}*/

/*.gallery-icon:hover:after {*/
/*    opacity: 1;*/
/*}*/

/*.gallery-icon:hover:before {*/
/*    opacity: .75;*/
/*}*/

/*home*/
/*slider*/
.slider {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	height: clamp(400px, 70vW, 580px);
	overflow: hidden;
	background: var(--accent-2);
}

.slider-content {
	position: relative;
	z-index: 2;
	text-align: center;
}

.slider-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}

.slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	transition: opacity .7s ease;
}

.slide.active {
	opacity: 1;
	z-index: 2;
}

.slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* arrows */
.nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	font-size: 64px;
	color: white;
	background: initial;
	border: none;
	cursor: pointer;
	z-index: 2;
	transition: opacity .25s;
}

.prev {
	left: 1rem;
}

.next {
	right: 1rem;
}

.nav:hover {
	opacity: .7;
}


.text-link {
	display: inline-block;
	color: var(--accent-1);
	font-weight: 500;
	text-decoration: none;
}

.text-link:hover {
	color: var(--accent-2);
}

/* Standard WordPress editor/content image support */
.content img,
.page-content img,
.entry-content img,
.post-content img {
	max-width: 100%;
	height: auto;
	border-radius: 8px;

}

.content img[class*="wp-image-"],
.page-content img[class*="wp-image-"],
.entry-content img[class*="wp-image-"],
.post-content img[class*="wp-image-"] {
	width: auto;
	max-width: 100%;
	height: auto;
}

.content img[width],
.page-content img[width],
.entry-content img[width],
.post-content img[width] {
	max-width: 100%;
	height: auto;
}

.alignleft {
	float: left;
	margin: 0.35em 1.5em 1em 0;
}

.alignright {
	float: right;
	margin: 0.35em 0 1em 1.5em;
}

.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

.alignnone {
	margin: 0 0 1em;
}

img.alignleft,
img.alignright {
	display: inline;
}

img.aligncenter {
	display: block;
}

figure {
	max-width: 100%;
}

figure:not(:last-child) {
	margin-bottom: 27px;
}

figcaption {
	text-align: center;
}

.wp-caption {
	max-width: 100%;
	width: auto;
	margin-bottom: 1.5em;
	background: #f3f3f3;
	border: 1px solid #d8d8d8;
	padding: 8px;
	text-align: center;
	border-radius: 8px;
}

.wp-caption.alignleft {
	float: left;
	margin: 0.35em 1.5em 1em 0;
}

.wp-caption.alignright {
	float: right;
	margin: 0.35em 0 1em 1.5em;
}

.wp-caption.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

.wp-caption img {
	display: block;
	width: 100% !important;
	max-width: 100%;
	height: auto;
	margin: 0 auto!important;
}

.wp-caption-text,
.wp-caption-dd,
.gallery-caption {
	font-size: 16px;
	line-height: 1.45;
	color: var(--text);
	text-align: center;
	padding: 12px 16px 4px;
	background: #f3f3f3;
}

.size-thumbnail,
.size-medium,
.size-large,
.size-full {
	height: auto;
	max-width: 100%;
}

.content::after,
.page-content::after,
.entry-content::after,
.post-content::after {
	content: "";
	display: table;
	clear: both;
}

.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
}

.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	clip-path: none;
	color: #21759b;
	display: block;
	font-size: 14px;
	font-weight: 700;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
}


@media (max-width: 767px) {
	.alignleft,
	.alignright,
	.wp-caption.alignleft,
	.wp-caption.alignright {
		float: none;
		display: block;
		margin: 0 auto 1.5em;
	}

	img.alignleft,
	img.alignright {
		display: block;
		margin-left: auto;
		margin-right: auto;
	}
}

/*services-section*/
.services-section {
	position: relative;
	overflow: hidden;
	padding-block: 5.5rem 4.1rem;
	background: var(--accent-2);
	text-align: center;
	border-bottom: solid #7e64a9 10px;
}

/* Inverse white curve at top of purple promise section */
.services-section::before {
	content: "";
	position: absolute;
	left: 50%;
	top: -70px;
	transform: translateX(-50%) rotate(0.75deg);
	width: 125%;
	height: 95px;
	background: #fff;
	border-radius: 0 0 52% 48%;
	z-index: 1;
	pointer-events: none;
}

.services-section .container {
	position: relative;
	z-index: 2;
}

.services-section .container {
	position: relative;
	z-index: 2;
}

.services-container {
	padding-top: 2.4rem;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-gap: 2rem;
}

.services-card {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.services-card h3 {
	font-size: 20px;
}

/* Wide section system */

.section-wide {
	width: 100%;
	padding-inline: 20px;
}

.section-wide__inner {
	max-width: 1800px;
	width: 100%;
	margin-inline: auto;
}


/*about-section*/
.about-section {
	background: no-repeat center/cover url("/wp-content/uploads/2026/02/quality-bg.webp");
	padding-block: 3.5rem 2.3rem;
}

/*row-section*/
.row-section {
	display: grid;
	grid-template-columns: 1.5fr 2fr;
	grid-column-gap: 2rem;
	background: #1d1d1d;
	border-top: solid var(--accent-1) 10px;
}

.row-section_last {
	grid-template-columns: 2fr 1.5fr;
	border-bottom: solid var(--accent-1) 10px;
}

.row-image {
	object-fit: cover;
	height: 100%;
	width: 100%;
}

.row-content {
	color: #fff;
	padding: 1rem;
}

/*img-caption*/
.img-caption__wrapper p {
	margin: 0 !important;
}

.img-caption__wrapper img {
	display: block;
	margin: 0 !important;
}

.img-caption {
	background: #e5e5e5;
	padding: 8px;
	margin: 0;
}

/*details*/
details {
	border-bottom: 1px dashed #e5e5e5;
	padding-block: 1rem;
}

details:first-of-type {
	border-top: 1px dashed #e5e5e5;
}

summary::marker,
summary::-webkit-details-marker {
	content: "";
	display: none;
}

summary::before {
	content: "+";
	font-weight: bold;
	padding-right: 1rem;
}

details[open] summary::before {
	content: "− ";
}

details[open] summary {
	padding-bottom: 1rem;
}

summary {
	color: var(--accent-1);
	cursor: pointer;
}

summary h3 {
	font-size: 16px;
	display: inline;
}

@media (min-width: 1024px) {
	.single-page:has(aside),
	.post-page:has(aside) {
		grid-template-columns: 3fr 1fr;
	}

	.header-menu .sub-menu {
		background-color: var(--accent-1);
		position: absolute;
		min-width: 270px;
		z-index: 60;
	}

	.header-menu .sub-menu .sub-menu {
		left: 100%;
		top: 0;
	}

	.header-menu .sub-menu a {
		padding: .25rem 1rem;
		color: #fff;
	}

	.header-menu .sub-menu .menu-item:hover {
		background: #7eca69;
	}

	.header-menu .sub-menu .menu-item-has-children:has(.sub-menu):after {
		content: '>';
		position: absolute;
		right: 10px;
		top: 50%;
		translate: 0 -50%;
		scale: .5 1;
	}

	.header-menu .menu-item-has-children:hover > .sub-menu {
		display: block;
	}
}

@media (max-width: 1023px) {
	:root {
		--container: 900px;
	}

	.row {
		grid-template-columns: 1fr 1fr;
	}

	.menu-toggle {
		display: inline-block;
	}

	.header-top__phone,
	.header-top__quote {
		display: none;
	}

	.header-nav {
		display: flex;
		position: fixed;
		top: 0;
		height: 0;
		width: 100%;
		transition: .25s;
		overflow: auto;
	}

	.header-nav.open {
		height: 100vH;
	}

	.header-menu {
		flex-direction: column;
		justify-content: flex-start;
		flex-wrap: nowrap;
		padding-block: 170px 20px;
	}

	.header-menu .menu-item {
		width: 100%;
		text-align: center;
		display: flex;
		justify-content: center;
		flex-direction: column;
	}

	.header-menu .sub-menu {
		position: relative;
	}

	.header-menu .menu-item-has-children.open > .sub-menu {
		display: block;
	}

	.header-logo img {
		max-height: 59px;
	}

	.header-menu .menu-item-has-children:after {
		content: '>';
		position: absolute;
		right: 10px;
		top: 10px;
		rotate: 90deg;
		scale: .5 1;
	}

	.header-menu .menu-item-has-children.open:after {
		rotate: -90deg;
	}

	.images-section,
	.image-content__section {
		flex-direction: column;
	}

	.post-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.badges {
		grid-template-columns: repeat(3, 1fr);
		gap: 1rem;
	}

	.gallery {
		gap: 16px;
	}

	.gallery.columns-4 .gallery-item,
	.gallery.columns-5 .gallery-item {
		flex: 0 1 calc((100% - 32px) / 3);
	}

	.services-container {
		grid-template-columns: repeat(2, 1fr);
	}

	.about-section > .row,
	.row-section {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 767px) {
	.gallery.columns-2 .gallery-item {
		flex: 0 1 100%;
	}
	.gallery.columns-3 .gallery-item {
	flex: 0 1 calc((100% - 12px) / 1);
}

}

@media (max-width: 767px) {
	:root {
		--container: 100%;
	}

	.row {
		grid-template-columns: 1fr;
	}

	.post-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 1rem;
	}
	.post-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 1rem;
	}

	.project-item__content {
		padding: 1rem 0.6rem 1.4rem;
		min-height: 170px;
	}

	.project-item__title {
		font-size: 16px;
		line-height: 1.25;
		margin-bottom: 0.5rem;
	}

	.project-item__suburb {
		font-size: 13px;
		line-height: 1.3;
		margin-bottom: 1rem;
	}

	.project-item__btn {
		font-size: 13px;
		padding: 8px 10px;
		border-width: 2px;
	}

	.badges {
		grid-template-columns: repeat(3, 1fr);
		gap: 12px;
	}

	.badges-section {
		padding-block: 45px 25px;
	}

	.badges-section_wom {
		padding-block: 55px;
	}

	.gallery {
		gap: 12px;
	}

	.gallery.columns-4 .gallery-item,
	.gallery.columns-5 .gallery-item {
		flex: 0 1 calc((100% - 24px) / 3);
	}

	.gallery.columns-4 .gallery-item img,
	.gallery.columns-5 .gallery-item img {
		aspect-ratio: 1;
		object-fit: contain;
	}

	.cta-container {
		text-align: center;
		flex-direction: column;
		align-items: center;
	}
}

/* Standard page layout */

.page-layout {
	display: grid;
	gap: 2rem;
	align-items: start;
}

.page-layout.no-sidebar {
	grid-template-columns: minmax(0, 1fr);
}

.page-layout.has-sidebar {
	grid-template-columns: minmax(0, 1fr);
}

.wysiwyg-content,
.sidebar {
	min-width: 0;
	max-width: 100%;
}

@media (min-width: 1024px) {
	.page-layout.has-sidebar {
		grid-template-columns: minmax(0, 3fr) minmax(280px, 1fr);
	}
}

.page-title-section {
	padding-top: 3rem;
	padding-bottom: 2rem;
}

.page-title {
	color: var(--accent-1);
	margin-bottom: 0;
}

.overlay-card-row {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 2rem;
}

.overlay-card {
	position: relative;
	border-bottom: solid var(--accent-1) 10px;
	text-align: center;
	padding: 1rem;
	color: #fff !important;
	aspect-ratio: 1.66;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	text-decoration: none;
}

.overlay-card:before {
	content: '';
	position: absolute;
	background: #000;
	opacity: .5;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	z-index: 1;
	transition: opacity .25s;
}

.overlay-card:hover:before {
	opacity: .7;
}

img.overlay-card__image {
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
	left: 0;
	top: 0;
	z-index: 0;
}

.overlay-card__title {
	position: relative;
	z-index: 2;
	color: #fff;
	font-size: clamp(1.25rem, 6vw, 1.7rem);
	line-height: 1;
	font-weight: 400;
	margin: 0;
	white-space: pre-line;
	display: block;
}

@media (max-width: 767px) {
	.overlay-card-row {
		grid-template-columns: 1fr;
	}
}


/* Video items */

.video-items iframe {
	display: block;
	width: 100% !important;
	max-width: 100% !important;
	height: auto;
	aspect-ratio: 16 / 9;
	margin: 0;
}

.video-items > p,
.video-items > br {
	display: none !important;
}


/* Generic reusable grid system */

.grid {
	display: grid;
	gap: 2rem;
	align-items: start;
}

.grid-center {
	align-items: center;
	justify-items: center;
}

.grid-2 {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grid-5 {
	grid-template-columns: repeat(5, minmax(0, 1fr));
}

.grid-6 {
	grid-template-columns: repeat(6, minmax(0, 1fr));
}

.grid-logos {
	gap: 1.5rem 2rem;
}

.grid-logos > div {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 0;
}

.grid-logos img {
	display: block;
	width: 100% !important;
	height: auto !important;
	max-width: 100%;
	object-fit: contain;
	margin: 0 auto;
}

/* Hide accidental WordPress paragraph/line break junk inside grids */
.grid > p,
.grid > br {
	display: none !important;
}

@media (max-width: 1023px) {
	.grid-5,
	.grid-6 {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.grid-4 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	.grid-2,
	.grid-3,
	.grid-4,
	.grid-5,
	.grid-6 {
		grid-template-columns: 1fr;
	}

	.grid-mobile-2 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.grid-mobile-3 {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.grid-logos {
		gap: 1rem;
	}

}

/* Fraction-based reusable grid layouts */

.grid-1-4 {
	grid-template-columns: minmax(0, 1fr) minmax(0, 4fr);
}

.grid-4-1 {
	grid-template-columns: minmax(0, 4fr) minmax(0, 1fr);
}

.grid-1-3 {
	grid-template-columns: minmax(0, 1fr) minmax(0, 3fr);
}

.grid-3-1 {
	grid-template-columns: minmax(0, 3fr) minmax(0, 1fr);
}

.grid-1-2 {
	grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
}

.grid-2-1 {
	grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
}

/* Profile / image-text layout helper */
.grid-profile {
	align-items: start;
	gap: 2rem 3rem;
}

.grid-profile img {
	width: auto !important;
	max-width: 100%;
	height: auto;
	object-fit: contain;
}

/* Optional fixed-ish profile image size */
/* Profile images */

.grid > * {
	min-width: 0;
}

.grid-profile .profile-image img {
	width: 100% !important;
	max-width: 100%;
	height: auto;
	display: block;
}

/* Mobile stacking */
@media (max-width: 767px) {
	.grid-1-4,
	.grid-4-1,
	.grid-1-3,
	.grid-3-1,
	.grid-1-2,
	.grid-2-1 {
		grid-template-columns: 1fr;
	}

	.grid-profile .profile-image img {
		max-width: 220px;
	}
}

.grid-7 {
	grid-template-columns: repeat(7, minmax(0, 1fr));
}

@media (max-width: 1200px) {
	.grid-7 {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	.grid-7.grid-mobile-2 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

.grid-8 {
	grid-template-columns: repeat(8, minmax(0, 1fr));
}

@media (max-width: 1200px) {
	.grid-8 {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	.grid-8.grid-mobile-2 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

/* Grid image fill utilities */

.grid-fill img,
.grid-cover img {
	width: 100% !important;
	height: 100%;
	display: block;
	object-fit: cover;
}

.grid-contain img {
	width: 100% !important;
	height: auto;
	display: block;
	object-fit: contain;
}

.grid-image-panel {
	overflow: hidden;
}

/* Common image ratios */
.ratio-wide {
	aspect-ratio: 1.66 / 1;
}

.ratio-landscape {
	aspect-ratio: 4 / 3;
}

.ratio-square {
	aspect-ratio: 1 / 1;
}

/* Make image inside a ratio panel fill the panel without cropping */
.grid-image-panel img {
	width: 100% !important;
	height: auto !important;
	object-fit: contain;
	display: block;
}

/* Allow grid-cover sections to stretch/crop images */

.grid-cover {
	align-items: stretch;
}

.grid-cover .grid-image-panel {
	height: 100%;
}

.grid-cover .grid-image-panel img {
	width: 100% !important;
	height: 100% !important;
	object-fit: cover;
	display: block;
}

/* Header banner */

.header-banner {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background-color: var(--accent-2);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	text-align: center;
	color: #fff;
	height: clamp(220px, 32vw, 360px);
	padding: 3rem 1rem;
	position: relative;
	overflow: hidden;
}

/* Dark overlay for readability */

.header-banner::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.38);
	z-index: 1;
	pointer-events: none;
}

/* Shallower curved white bottom */

.header-banner::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: -58px;
	transform: translateX(-50%) rotate(-0.75deg);
	width: 125%;
	height: 105px;
	background: #fff;
	border-radius: 52% 48% 0 0;
	z-index: 2;
	pointer-events: none;
}

/* Banner text */

.header-banner__content {
	position: relative;
	z-index: 3;
	text-align: center;
	color: #fff;
	max-width: 1100px;
	padding-inline: 1rem;
}

.header-banner::after,
.hero-section::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: -58px;
	transform: translateX(-50%) rotate(-0.75deg);
	width: 125%;
	height: 105px;
	background: #fff;
	border-radius: 52% 48% 0 0;
	z-index: 2;
	pointer-events: none;
}

.header-banner__title,
.header-banner__subtitle {
	display: block;
	color: #fff;
	font-weight: 400;
	line-height: 1.15;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.header-banner__title {
	font-size: clamp(22px, 3vw, 42px);
	margin-bottom: 0.35em;
}

.header-banner__subtitle {
	font-size: clamp(20px, 2.4vw, 34px);
}
@media (max-width: 767px) {
	.header-banner {
		height: 220px;
		padding: 2.5rem 1rem;
		background-position: center;
	}

	.header-banner__title {
		font-size: 22px;
		line-height: 1.15;
	}

	.header-banner__subtitle {
		font-size: 20px;
		line-height: 1.2;
	}

	.header-banner::after {
		bottom: -48px;
		height: 78px;
		width: 135%;
		border-radius: 50% 50% 0 0;
		transform: translateX(-50%) rotate(-0.4deg);
	}
}


.hero-section h1 {
	font-family: 'Poppins', 'Montserrat', sans-serif;
	font-size: clamp(2.2rem, 4.5vw, 3.4rem);
	font-weight: 800;
	margin-bottom: 1rem;
	line-height: 1.08;
	letter-spacing: -0.5px;
	text-shadow: 0 3px 14px rgba(0, 0, 0, 0.35);
}

.hero-awards {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin: 1.25rem 0 1.75rem;
	max-width: 60%;
}

.hero-awards img {
	width: 100px !important;
	height: auto !important;
	object-fit: contain;
	margin: 0 !important;
	border-radius: 0 !important;
}

@media (max-width: 700px) {
	.hero-awards {
		justify-content: center;
		max-width: 100%;
		gap: 0.75rem;
	}

	.hero-awards img {
		width: 68px !important;
	}
}

/* Before / After Slider */

.before-after-slider {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	border-radius: 8px;
	background: #eee;
	clear: both;
}

.before-after-slider img {
	margin: 0 !important;
	border-radius: 0 !important;
}

.ba-img {
	position: absolute;
	inset: 0;
	width: 100% !important;
	height: 100% !important;
	object-fit: cover;
	display: block;
}

.ba-before {
	z-index: 1;
}

.ba-after {
	z-index: 2;
	clip-path: inset(0 50% 0 0);
}

.ba-divider {
	position: absolute;
	top: 0;
	left: 50%;
	width: 3px;
	height: 100%;
	background: #fff;
	z-index: 4;
	transform: translateX(-50%);
	pointer-events: none;
	box-shadow: 0 0 12px rgba(0, 0, 0, 0.35);
}

.ba-handle {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: #fff;
	transform: translate(-50%, -50%);
	box-shadow: 0 3px 12px rgba(0, 0, 0, 0.35);
}

.ba-handle::before,
.ba-handle::after {
	content: "";
	position: absolute;
	top: 50%;
	width: 0;
	height: 0;
	border-top: 7px solid transparent;
	border-bottom: 7px solid transparent;
	transform: translateY(-50%);
}

.ba-handle::before {
	left: 10px;
	border-right: 8px solid var(--accent-2);
}

.ba-handle::after {
	right: 10px;
	border-left: 8px solid var(--accent-2);
}

.ba-range {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	cursor: ew-resize;
	z-index: 5;
}

.trust-box {
	display: flex;
	align-items: center;
	gap: 1rem;
	background: #f0f5f7;
	border-radius: 10px;
	padding: 20px;
	margin-bottom: 1.5rem;
}

.trust-box img {
	width: 110px !important;
	max-width: 150px;
	height: auto !important;
	flex: 0 0 110px;
	margin: 0 !important;
	border-radius: 0 !important;
}

.trust-box p {
	margin: 0 !important;
	line-height: 1.5;
}

/* Women at Work service tabs */

.waw-tabs-section {
	padding-block: 4rem;
	background: #fff;
}

.waw-tabs-intro {
	max-width: 760px;
	margin: 0 auto 2rem;
}

.waw-tabs-intro h2 {
	margin-bottom: 0.75rem;
}

.waw-tabs-intro p {
	color: #666;
	font-size: 18px;
	margin-bottom: 0 !important;
}

.waw-tabs {
	background: #fff;
	border: 1px solid #e7e7e7;
	border-radius: 18px;
	box-shadow: 0 16px 45px rgba(0, 0, 0, 0.08);
	overflow: hidden;
}

.waw-tabs__nav {
	display: grid !important;
	grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
	background: #f5f7f8;
	border-bottom: 1px solid #dedede;
}

.waw-tabs__button {
	appearance: none;
	border: 0;
	border-right: 1px solid #dedede;
	background: transparent;
	color: var(--accent-2);
	min-height: 74px;
	padding: 1rem 0.75rem;
	font-family: inherit;
	font-size: 17px;
	font-weight: 500;
	line-height: 1.25;
	text-align: center;
	cursor: pointer;
	transition: background-color .25s ease, color .25s ease, box-shadow .25s ease;
}

.waw-tabs__button:last-child {
	border-right: 0;
}

.waw-tabs__button:hover {
	background: #fff;
	color: var(--accent-1);
}

.waw-tabs__button.is-active {
	background: #fff;
	color: var(--accent-2);
	box-shadow: inset 0 -5px 0 var(--accent-1);
}

.waw-tabs__content {
	background: #fff;
	padding: 2.6rem 3rem 3rem;
	min-height: 285px;
}

.waw-tabs__panel {
	display: none;
	animation: wawTabFade .25s ease;
}

.waw-tabs__panel.is-active {
	display: block;
}

.waw-tabs__panel h3 {
	color: var(--accent-2);
	line-height: 1.1;
	font-weight: 400;
	margin-bottom: 1rem;
}

.waw-tabs__panel p {
	max-width: 820px;
	color: #555;
	font-size: 18px;
	line-height: 1.65;
	margin-bottom: 1.5rem !important;
}

@keyframes wawTabFade {
	from {
		opacity: 0;
		transform: translateY(8px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Tablet */

@media (max-width: 900px) {
	.waw-tabs__nav {
		grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
	}

	.waw-tabs__button {
		font-size: 15px;
		min-height: 66px;
		padding-inline: 0.5rem;
	}

	.waw-tabs__content {
		padding: 2rem;
	}
}

/* Mobile */

@media (max-width: 650px) {
	.waw-tabs-section {
		padding-block: 3rem;
	}

	.waw-tabs {
		border-radius: 12px;
	}

	.waw-tabs__nav {
		display: flex !important;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
	}

	.waw-tabs__nav::-webkit-scrollbar {
		display: none;
	}

	.waw-tabs__button {
		flex: 0 0 165px;
		min-height: 58px;
		font-size: 14px;
		border-right: 1px solid #dedede;
	}

	.waw-tabs__content {
		padding: 1.5rem;
		min-height: auto;
	}

	.waw-tabs__panel h3 {
		font-size: 26px;
	}

	.waw-tabs__panel p {
		font-size: 16px;
		line-height: 1.55;
	}
}

/* Force service tabs to behave correctly */

.waw-tabs__nav,
.painting-tabs__nav {
	display: grid !important;
	grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
	grid-auto-flow: column !important;
	width: 100% !important;
	gap: 0 !important;
}

/* Kill WordPress auto p/br issues inside tab nav */
.waw-tabs__nav > p,
.painting-tabs__nav > p {
	display: contents !important;
	margin: 0 !important;
	padding: 0 !important;
}

.waw-tabs__nav br,
.painting-tabs__nav br {
	display: none !important;
}

/* Force the actual tab items to fill their grid cells */
.waw-tabs__button,
.painting-tabs__nav label {
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 100% !important;
	min-width: 0 !important;
	min-height: 72px !important;
	margin: 0 !important;
	box-sizing: border-box !important;
}

/* Override any old tablet rule that is forcing 2 columns */
@media (max-width: 900px) {
	.waw-tabs__nav,
	.painting-tabs__nav {
		display: grid !important;
		grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
	}
}

/* Only mobile should scroll */
@media (max-width: 650px) {
	.waw-tabs__nav,
	.painting-tabs__nav {
		display: flex !important;
		overflow-x: auto !important;
	}

	.waw-tabs__button,
	.painting-tabs__nav label {
		flex: 0 0 165px !important;
	}
}