.content-buttons, .menu-bar-items {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px 16px;
}
.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) 100%);
	transition: all 0.3s ease-in-out;
}
.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) {
	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.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) {
	box-shadow: -4px -4px 12px 0 rgba(255, 255, 255, 0.20), 4px 4px 24px 0 rgba(148, 115, 249, 0.70);
	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;
	transition: all 0.3s ease-in-out;
}

.content-button.blue-button {
	color: #fff;
	background: linear-gradient(94deg, #2CC1DF 1.58%, #2FA3BA 100%);
	border: unset;
}
.content-button.blue-button:is(:hover, :focus, :active) {
	box-shadow: -4px -4px 12px 0 rgba(255, 255, 255, 0.20), 4px 4px 24px 0 rgba(47, 163, 187, 0.60);
	transition: all 0.3s ease-in-out;
}
.content-button.blue-button::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
	background: linear-gradient(94deg, #2FA3BA 8%, #2CC1DF 100%);
	opacity: 0;
	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;
}

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

.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%);
}