.content-buttons, .menu-bar-items {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px 16px;
}


.page-banner--two_image .hero-buttons {
	justify-content: center;
}

.content-button, .wp-block-button a.wp-block-button__link, .wpcf7-submit, .masonry-load-more .button {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	padding: 16px 22px;
	overflow: hidden;
	border: 1px solid #fff;
	border-radius: 15px;
	text-align: center;
	text-decoration: none;
	color: #fff;
	cursor: pointer;
    background: linear-gradient(94deg, rgba(255, 255, 255, 0.00) 1.58%, rgba(212, 215, 215, 0.30) 50%, rgba(212, 215, 215, 0.0) 100%);
    transition: ease all .3s;
    background-size: 300%;
    background-position: left;
}

.content-button:is(:hover, :focus, :active, :visited) {
	color: #fff;
}

.content-button .button-title,
.content-button svg {
	position: relative;
	z-index: 2;
}

@media (max-width: 575px) {
	.content-buttons {
		display: grid;
	}
	.page-banner .content-buttons {
		justify-content: center;
	}
}

/* Button colours */
.content-button:is(:hover, :focus, :active)::before {
	opacity: 1;
	transition: all 0.3s ease-in-out;
}
.content-button:is(:hover, :focus, :active) {
	background-position: right;
	transition: all 0.3s ease-in-out;
}

.content-button.purple-button {
	color: #fff;
	background: linear-gradient(94deg, #9473F9 1.58%, #6147B0 100%);
	border: unset;
	transition: all 0.3s ease-in-out;
}
.content-button.purple-button:is(:hover, :focus, :active) {
	transition: all 0.3s ease-in-out;
}
.content-button.purple-button::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
	background: linear-gradient(266deg, #9473F9 0%, #6147B0 100%);
	opacity: 0;
	transition: all 0.3s ease-in-out;
}
.content-button.purple-button:is(:hover, :focus, :active)::before {
	opacity: 1;
}

.content-button.blue-button {
	color: #fff;
	background: #2CC1DF;
	border: solid 1px var(--blue-light);
}
.content-button.blue-button:hover svg path {
	transition: ease fill .3s;
}
.content-button.blue-button:hover svg path {
    fill: var(--blue-light);
}
.content-button.blue-button:is(:hover, :focus, :active) {
	color: var(--blue-light);
	background: transparent;
	transition: all 0.3s ease-in-out;
}

.content-button.blue-button:is(:hover, :focus, :active)::before {
	opacity: 1;
	transition: all 0.3s ease-in-out;
}

.content-button.black-button {
	color: #fff;
	background: linear-gradient(94deg, rgba(255, 255, 255, 0.00) 1.58%, rgba(212, 215, 215, 0.30) 100%), var(--black, #262626);
	border: 1px solid #fff;
}
.content-button.black-button:is(:hover, :focus, :active) {
	box-shadow: -4px -4px 12px 0 rgba(255, 255, 255, 0.20), 4px 4px 24px 0 rgba(255, 255, 255, 0.20);
	transition: all 0.3s ease-in-out;
}
.content-button.black-button::before,
.content-button.black-button::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(94deg, rgba(212, 215, 215, 0.30) 1.58%, rgba(255, 255, 255, 0.00) 100%);
	opacity: 0;
	transition: all 0.3s ease-in-out;
}
.content-button.black-button::after {
	background: var(--black, #262626);
	z-index: 0;
}
.content-button.black-button:is(:hover, :focus, :active)::before,
.content-button.black-button:is(:hover, :focus, :active)::after {
	opacity: 1;
	transition: all 0.3s ease-in-out;
}

.content-button.pale-blue-button {
	background: var(--pale-blue);
	color: var(--black);
	border: 1px solid var(--pale-blue);
}

.content-button.pale-blue-button:is(:hover, :focus, :active), .content-button.dark-blue-button:is(:hover, :focus, :active) {
	transform: translateY(-2px);
}

.content-button.dark-blue-button {
	background: var(--blue-darker);
	color: var(--white);
	border: 1px solid var(--blue-darker);
}

/* page banner buttons update */
.page-banner .content-button {
	border: 1px solid var(--white, #FFFFFF);
}

.page-banner .blue-button {
	border: 1px solid var(--blue-light);
}

.masonry-load-more .button {
	border-radius: 12px;
    background: var(--black, #262626);
	padding: 16px 32px;
}

.icon {
	display: flex;
	align-items: center;
	justify-content: center;
}

.icon svg {
	width: 32px;
	height: 32px;
}

/* Plus sign styling */
.plus-sign {
	position: relative;
}

.plus-sign::before,
.plus-sign::after {
	position: absolute;
	content: '';
	background-color: white;
}

.plus-sign::before {
	top: 50%;
	left: 50%;
	width: 2px;
	height: 10px;
	transform: translate(-50%, -50%);
}

.plus-sign::after {
	top: 50%;
	left: 50%;
	width: 10px;
	height: 2px;
	transform: translate(-50%, -50%);
}