
@charset "UTF-8";

.background-white {
	background: #fff;
}

.background-lightgrey {
	background: #f8f8f8;
}

.background-darkgrey {
	background: #3e3e3e;
}

.background-pink {
	background: #bd1e85;
}

.background-darkgrey h1, .background-darkgrey h2, .background-darkgrey h3, .background-darkgrey h4, .background-darkgrey h5, .background-darkgrey h6, .background-darkgrey p, .background-pink h1, .background-pink h2, .background-pink h3, .background-pink h4, .background-pink h5, .background-pink h6, .background-pink p {
	color: #fff;
}

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

.container {
	max-width: 1170px;
	padding: 0px 60px;
	margin: 0 auto;
}

@media (max-width: 950px) {
	.container {
		padding: 0px 50px;
	}
}

@media (max-width: 782px) {
	.container {
		padding: 0px 30px;
	}
}

@media (max-width: 600px) {
	.container {
		padding: 0px 30px;
	}
}

.breadcrumbs {
	padding: 25px 0 15px;
	font-size: 15px;
	color: #3e3e3e;
}

.breadcrumbs .container span.breadcrumb_last {
	font-weight: bold;
}

.breadcrumbs .container a {
	color: #bd1e85;
}

.breadcrumbs .container a:hover {
	text-decoration: underline;
}

.breadcrumbs .container a, .breadcrumbs .container span {
	margin: 0px 5px;
}

.breadcrumbs .container a:first-child, .breadcrumbs .container span:first-child {
	margin-left: 0;
}

.breadcrumbs .container a:last-child, .breadcrumbs .container span:last-child {
	margin-right: 0;
}

@media (max-width: 600px) {
	.breadcrumbs {
		background-color: #f8f8f8;
		padding: 5px 0 15px;
	}
	
	.breadcrumbs .container {
		padding-top: 10px;
	}
}

img {
	max-width: 100%;
	height: auto;
}

a {
	text-decoration: none;
}

a.underline-link {
	display: inline-block;
	position: relative;
	color: #bd1e85;
}

a.underline-link:after {
	position: absolute;
	top: 100%;
	left: 50%;
	width: 0;
	height: 2px;
	background: #bd1e85;
	content: "";
	opacity: 0;
	transition: all .3s;
	transform: translateX(-50%);
}

a.underline-link:hover:after, a.underline-link:focus:after {
	width: 100%;
	opacity: 1;
	transform: translateX(-50%);
}

.button {
	display: inline-block;
	text-align: center;
	background: #561ebd;
	border-radius: 3px;
	border: none;
	color: #fff;
	font-family: "Red Hat Display", sans-serif;
	font-size: 18px;
	font-weight: 900;
	padding: 0 50px;
	margin: 0px 5px;
	width: auto;
	height: 60px;
	line-height: 60px;
	cursor: pointer;
	transition: all 420ms cubic-bezier(.215, .61, .355, 1);
}

.button svg {
	width: 30px;
	height: auto;
	position: relative;
	top: 3px;
}

.button svg path {
	fill: white;
	transition: all 420ms cubic-bezier(.215, .61, .355, 1);
}

.button:first-child {
	margin-left: 0;
}

.button:last-child {
	margin-right: 0;
}

.button:hover {
	color: #fff;
	background: #4f2650;
}

.button:active {
	color: #fff;
	background: #bd1e85;
}

.button:focus {
	color: #fff;
	background: #3e3e3e;
	box-shadow: 0px 0px 0px 5px #f4c327;
}

.button:disabled {
	background-color: #e2e2e2;
	color: #b8b6b0;
}

.button.button-small, .button.button-primary {
	padding: 0px 30px;
	height: 50px;
	line-height: 50px;
	font-size: 18px;
	letter-spacing: -.36px;
}

.button.button-tiny {
	padding: 0px 30px;
	height: 40px;
	line-height: 40px;
	font-size: 15px;
	font-weight: 700;
	letter-spacing: -.3px;
}

.button.button-pink, .button.button-primary {
	color: #fff;
	background: #bd1e85;
}

.button.button-pink:hover, .button.button-primary:hover {
	background: #4f2650;
}

.button.button-pink:active, .button.button-primary:active {
	background: #561ebd;
}

.button.button-pink:focus, .button.button-primary:focus {
	color: #fff;
	background: #3e3e3e;
	box-shadow: 0px 0px 0px 5px #f4c327;
}

.button.button-pink:disabled, .button.button-primary:disabled {
	background-color: #e2e2e2;
	color: #b8b6b0;
}

.button.button-grey {
	color: #561ebd;
	background: #fff;
	border: 1px solid #561ebd;
}

.button.button-grey svg path {
	fill: #561ebd;
}

.button.button-grey:hover {
	background: #561ebd;
	color: #fff;
}

.button.button-grey:hover svg path {
	fill: #561ebd;
}

.button.button-grey:active {
	color: #fff;
	background: #bd1e85;
}

.button.button-grey:focus {
	color: #3e3e3e;
	background: #fff;
	box-shadow: 0px 0px 0px 5px #f4c327;
}

.button.button-grey:disabled {
	background-color: #e2e2e2;
	color: #b8b6b0;
}

.grey-box {
	background: #fff;
	border-radius: 10px;
	overflow: hidden;
	padding: 20px;
}

.grey-box * {
	margin: 10px 0;
}

.grey-box *:first-child {
	margin-top: 0;
}

.grey-box *:last-child {
	margin-bottom: 0;
}

.grey-box p {
	font-size: 13px;
	line-height: 17px;
}

h1.underline, h2.underline, h3.underline, h4.underline {
	position: relative;
	margin-bottom: 25px !important;
}

h1.underline:after, h2.underline:after, h3.underline:after, h4.underline:after {
	content: "";
	display: block;
	width: 78px;
	height: 8px;
	background: #bd1e85;
	position: relative;
	top: 8px;
	border-radius: 0 20px 20px 0;
}

.error-message {
	background: #b30c3f;
	padding: 10px;
	border-radius: 10px;
	margin: 10px 0;
}

.error-message p {
	margin: 0 !important;
	color: white;
	font-size: 14px;
	font-family: "Cambria", Gerogia, serif;
}

.loading {
	position: relative;
	opacity: .5 !important;
	pointer-events: none !important;
}

.loading .loader-container {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateZ(0) translate(-50%, -50%);
	opacity: 1;
}

.loading .loader, .loading .loader:after {
	border-radius: 50%;
	width: 10em;
	height: 10em;
}

.loading .loader {
	font-size: 3px;
	text-indent: -9999em;
	border-top: 4px solid rgba(255, 255, 255, .2);
	border-right: 4px solid rgba(255, 255, 255, .2);
	border-bottom: 4px solid rgba(255, 255, 255, .2);
	border-left: 4px solid #bd1e85;
	transform: translateZ(0);
	transform-origin: center;
	animation: load8 .7s infinite linear;
	opacity: 1;
}

input, textarea {
	display: block;
	width: 100%;
	border-radius: 10px;
	border: 1px solid #d8d8d8;
	font-family: "Montserrat", sans-serif;
	box-shadow: inset 0px 1px 4px rgba(0, 0, 0, .15);
	border-radius: 8px;
	padding: 10px;
	background: white;
}

@media screen and (max-width: 600px) {
	#wpadminbar {
		position: fixed !important;
	}
}

@keyframes load8 {
	0% {
		transform: rotate(0deg);
	}
	
	100% {
		transform: rotate(360deg);
	}
}

.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;
	width: 1px;
	word-wrap: normal !important;
}

body {
	font-family: "Montserrat", sans-serif;
	line-height: 1.4em;
	text-rendering: optimizeLegibility;
	font-smoothing: antialiased;
}

p, h1, h2, h3, h4, h5, h6 {
	font-family: "Red Hat Display", sans-serif;
	margin: 20px 0;
	line-height: 1.4em;
	font-weight: 900;
	font-style: normal;
	color: #3e3e3e;
}

p {
	font-family: "Montserrat", sans-serif;
	font-size: 15px;
	line-height: 21px;
	font-weight: 400;
}

p.small {
	font-size: 12px;
	line-height: 17px;
	margin: 10px 0;
}

p.smaller {
	font-size: 15px;
	line-height: 23.25px;
	margin: 10px 0;
}

.smaller-text p {
	font-size: 14px;
	line-height: 21px;
	margin: 10px 0;
}

h1 {
	font-size: 45px;
	line-height: 54px;
}

@media (max-width: 782px) {
	h1 {
		font-size: 42px;
		line-height: 46px;
	}
}

@media (max-width: 600px) {
	h1 {
		font-size: 25px;
		line-height: 32.5px;
	}
}

h2 {
	font-size: 46px;
	line-height: 50px;
}

h3 {
	font-size: 38px;
	line-height: 45.6px;
}

h3.small {
	font-size: 25px;
	line-height: 32.5px;
	margin: 0;
}

h4 {
	font-size: 26px;
	line-height: 30px;
}

h5 {
	font-size: 20px;
	line-height: 26px;
}

h5 {
	font-size: 18px;
	line-height: 24px;
}

small {
	font-size: 12px;
	line-height: 14px;
}

.HeaderMain__top {
	background-color: #4f2650;
	padding-block: .5rem;
	padding-inline: 1.5rem;
	text-align: right;
}

.HeaderMain__top p {
	margin: 0;
	opacity: .8;
}

.HeaderMain__top p, .HeaderMain__top a {
	color: #fff;
}

.HeaderMain__top a {
	font-weight: 600;
	opacity: 1;
	font-size: 1.1rem;
	letter-spacing: .03em;
	margin-inline-start: .5rem;
}

@media (max-width: 782px) {
	.HeaderMain__top {
		display: none;
	}
}

.HeaderMain__top--mobile {
	display: none;
}

@media (max-width: 782px) {
	.HeaderMain__top--mobile {
		display: block;
		text-align: center;
	}
}

.HeaderMain {
	position: sticky;
	top: 0;
	z-index: 10;
	background-color: #bd1e85;
}

@media (max-width: 1230px) {
	.HeaderMain {
		position: relative;
	}
}

.HeaderMain__inner {
	max-width: 1440px;
	margin-inline: auto;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	padding-block: 1rem;
	padding-inline: 1.5rem;
	transition: padding .2s ease, align-items .2s ease;
}

.HeaderMain__inner.scrolled, html.HeaderMain__initial-scrolled .HeaderMain__inner {
	padding-block: .5rem;
	align-items: center;
}

.HeaderMain__inner.scrolled .HeaderMain__logo .Svg, html.HeaderMain__initial-scrolled .HeaderMain__inner .HeaderMain__logo .Svg {
	height: 28px;
}

.HeaderMain__inner.scrolled .sub-menu, html.HeaderMain__initial-scrolled .HeaderMain__inner .sub-menu {
	top: calc(100% + 14px);
}

@media (max-width: 782px) {
	.HeaderMain__inner {
		padding-block: .75rem;
	}
}

html.HeaderMain__no-transition .HeaderMain__inner {
	transition: none;
}

.HeaderMain__logo .Svg {
	fill: #fff;
	height: 38px;
	width: auto;
	transition: height .3s ease-in-out;
}

@media (max-width: 782px) {
	.HeaderMain__logo .Svg {
		height: 32px;
	}
}

.HeaderMain__logo--link {
	display: inline-block;
}

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

.HeaderMain__nav--logo-mobile .Svg {
	fill: #fff;
	height: 32px;
	width: auto;
}

.HeaderMain__nav {
	display: flex;
}

.HeaderMain__nav--list {
	display: flex;
	align-items: center;
	gap: 2rem;
	list-style: none;
	padding: 0;
}

.HeaderMain__nav--list-item {
	position: relative;
}

.HeaderMain__nav--list-item .sub-menu {
	list-style: none;
	padding: .5rem;
	background-color: #4f2650;
	position: absolute;
	left: 0;
	top: calc(100% + 16px);
	min-width: 250px;
	display: none;
	box-shadow: 0 4px 10px rgba(0, 0, 0, .1);
	z-index: 10;
}

.HeaderMain__nav--list-item .sub-menu li {
	padding: .5rem .75rem;
}

.HeaderMain__nav--list-item .sub-menu a {
	font-size: .9rem;
	display: block;
	transition: color .2s ease-in-out;
}

.HeaderMain__nav--list-item .sub-menu a:hover {
	color: #ec87c8;
}

.HeaderMain__nav--list-item.is-open .sub-menu {
	display: block;
}

.HeaderMain__nav--list-item.is-open .HeaderMain__nav--chevron {
	transform: rotate(180deg);
}

.HeaderMain__nav--list-item a {
	position: relative;
	color: #fff;
	display: inline-flex;
	align-items: center;
	gap: .35rem;
}

.HeaderMain__nav--list-item a::after {
	content: "";
	position: absolute;
	top: calc(100% + 3px);
	left: 0;
	width: 0;
	height: 2px;
	background-color: #fff;
	transition: width .2s ease-in-out;
	opacity: .5;
}

.HeaderMain__nav--list-item a:hover::after {
	width: 100%;
}

.HeaderMain__nav--list-item .sub-menu a::after {
	display: none;
	content: none;
}

.HeaderMain__nav--list-item .HeaderMain__nav--chevron {
	width: 10px;
	height: 10px;
	transition: transform .2s ease;
}

.HeaderMain__nav--list-item-account {
	border-left: 2px solid rgba(0, 0, 0, .3);
	padding-left: .75rem;
}

@media (max-width: 1230px) {
	.HeaderMain__nav--list-item-account {
		border-left: 0;
		padding-left: 0;
	}
}

.HeaderMain__nav--list-item-account a {
	gap: .75rem;
}

.HeaderMain__nav--close-button {
	position: absolute;
	top: 1rem;
	right: 1rem;
	display: none;
}

@media (max-width: 1230px) {
	.HeaderMain__nav--close-button {
		display: block;
	}
}

.MainHeader__phone--wrapper {
	display: none;
}

@media (max-width: 1230px) {
	.MainHeader__phone--wrapper {
		display: flex;
		align-items: center;
		gap: 1rem;
	}
}

.MainHeader__phone {
	display: grid;
	place-content: center;
	width: 33px;
	height: 33px;
	border: solid 2px #fff;
	border-radius: 50%;
}

.MainHeader__phone .Svg {
	width: 18px;
	height: 18px;
	color: #fff;
}

.HeaderMain__burger--wrapper {
	display: flex;
	align-items: center;
	gap: .5rem;
	border: solid 2px #fff;
	border-radius: 4px;
	padding: 3px 6px;
}

.HeaderMain__burger--wrapper p {
	color: #fff;
	font-weight: 600;
	font-size: .9rem;
	margin: 0;
	color: #fff;
}

.HeaderMain__burger {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: 24px;
	height: 14px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0;
	margin: 0;
}

.HeaderMain__burger div {
	width: 100%;
	height: 2px;
	border-radius: 2px;
	background-color: #fff;
}

.HeaderMain__overlay {
	display: none;
}

body.header-menu-open {
	overflow: hidden;
}

@media (max-width: 1230px) {
	.HeaderMain__nav {
		position: fixed;
		top: 0;
		right: 0;
		width: 80%;
		max-width: 320px;
		height: 100lvh;
		background: #bd1e85;
		transform: translateX(100%);
		transition: transform .3s ease;
		padding: 2rem 1.5rem;
		box-shadow: -4px 0 12px rgba(0, 0, 0, .15);
		z-index: 2000;
		display: flex;
		flex-direction: column;
		overflow-y: auto;
		transition: none;
	}
	
	.HeaderMain__nav .HeaderMain__nav--logo-mobile {
		display: block;
		margin-bottom: 1.5rem;
	}
	
	body.header-menu-ready.header-menu-animate .HeaderMain__nav {
		transition: transform .3s ease;
		will-change: transform;
	}
	
	body.header-menu-no-transition .HeaderMain__nav {
		transition: none !important;
	}
	
	body.header-menu-resizing .HeaderMain__nav {
		transition: none !important;
	}
	
	body.header-menu-open .HeaderMain__nav {
		transform: translateX(0);
	}
	
	.HeaderMain__nav--list {
		flex-direction: column;
		gap: 1rem;
	}
	
	.HeaderMain__nav--list-item {
		width: 100%;
	}
	
	.HeaderMain__nav--list-item .sub-menu {
		position: static;
		background: #a61a75;
		box-shadow: none;
		margin-top: .5rem;
		padding: .5rem .75rem;
		display: none;
		width: 100%;
	}
	
	.HeaderMain__nav--list-item .sub-menu li {
		padding: .35rem 0;
	}
	
	.HeaderMain__nav--list-item.is-open .sub-menu {
		display: block;
	}
	
	.HeaderMain__overlay {
		display: block;
		position: fixed;
		inset: 0;
		background: rgba(0, 0, 0, .45);
		opacity: 0;
		pointer-events: none;
		transition: opacity .3s ease;
		z-index: 1500;
	}
	
	body.header-menu-open .HeaderMain__overlay {
		opacity: 1;
		pointer-events: auto;
	}
}

nav.primary-nav .menu {
	display: flex;
	padding: 0;
	list-style-type: none;
	gap: 2rem;
}

nav.primary-nav .menu li {
	position: relative;
	flex: auto;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	z-index: 52;
}

nav.primary-nav .menu li a {
	display: block;
	flex: 1;
	padding: 0;
	margin: 0;
	color: #fff;
}

nav.primary-nav .menu li.current-menu-item > a, nav.primary-nav .menu li.current-menu-ancestor > a, nav.primary-nav .menu li.current-page-ancestor > a {
	font-weight: bold;
}

nav.primary-nav .menu li:hover .sub-menu {
	display: block;
	pointer-events: auto;
	margin-top: 0px;
}

nav.primary-nav .sub-menu {
	display: none;
	transition: .3s ease;
	border-top: 1px solid #780751;
	list-style-type: none;
	position: absolute;
	background: #9c0a69;
	top: 100%;
	left: 50%;
	width: 100%;
	transform: translateX(-50%);
	min-width: calc(100% + 20px);
	padding: 15px 0 10px;
}

nav.primary-nav .sub-menu li {
	border-left: none !important;
	border-right: none !important;
}

nav.primary-nav .sub-menu li a {
	font-size: 13px;
	padding: 5px 15px;
	cursor: pointer;
}

nav.primary-nav .sub-menu li a:hover {
	background: rgba(0, 0, 0, .05);
}

nav.primary-nav .sub-menu li.current-menu-item a {
	background: rgba(0, 0, 0, .05);
}

nav.primary-nav a.close-button {
	display: none;
	position: absolute;
	top: 20px;
	right: 20px;
}

nav.primary-nav a.close-button svg path {
	fill: white;
}

@media (max-width: 950px) {
	nav.primary-nav {
		flex: 1;
		display: flex;
		align-items: center;
	}
	
	nav.primary-nav .container {
		padding: 0;
		flex: 1;
	}
	
	nav.primary-nav .menu {
		flex-direction: column;
		padding: 0;
		margin: 0;
	}
	
	nav.primary-nav .menu li.menu-item {
		flex-direction: column;
	}
	
	nav.primary-nav .menu li.menu-item:hover .sub-menu {
		display: none;
	}
	
	nav.primary-nav .menu li.menu-item a {
		width: 100%;
		font-weight: 900;
		font-size: 15px;
	}
	
	nav.primary-nav .menu li.menu-item a:hover {
		background: rgba(0, 0, 0, 0);
	}
	
	nav.primary-nav .menu li.menu-item.current-menu-item a {
		background: rgba(0, 0, 0, 0);
	}
	
	nav.primary-nav .menu li.menu-item.menu-item-has-children a:first-child::after {
		content: url("data:image/svg+xml,%3Csvg width=\'16\' height=\'15\' viewBox=\'0 0 16 15\' fill=\'none\' xmlns=\'http://www.w3.org/2000/svg\'%3E%3Cg clip-path=\'url(%23clip0_476_13689)\'%3E%3Cpath d=\'M0.927124 4.39078L1.7814 3.5365L7.99999 9.75478L14.2186 3.5365L15.0728 4.39078L7.99999 11.4639L0.927124 4.39078Z\' fill=\'white\'/%3E%3Cpath d=\'M8 11.8911L0.5 4.39109L1.78142 3.10968L8 9.32796L14.2186 3.10938L15.5 4.39079L8 11.8911ZM1.35428 4.39109L8 11.0368L14.6457 4.39079L14.2186 3.96365L8 10.1822L1.78142 3.96395L1.35428 4.39109Z\' fill=\'white\'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id=\'clip0_476_13689\'%3E%3Crect width=\'15\' height=\'15\' fill=\'white\' transform=\'translate(0.5)\'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
		width: 15px;
		height: auto;
		display: inline-block;
		margin-left: 10px;
		position: absolute;
	}
	
	nav.primary-nav .menu li.menu-item.menu-item-has-children .rotate-up::after {
		transform: rotate(180deg) translateY(2px);
	}
	
	nav.primary-nav .menu li.menu-item.menu-item-has-children .sub-menu {
		min-width: auto;
		position: relative;
		border-top: 1px solid #9c0a69;
		padding-bottom: 0;
		padding-top: 0;
	}
	
	nav.primary-nav .menu li.menu-item.menu-item-has-children .sub-menu li a {
		font-family: "Montserrat", sans-serif;
		font-style: normal;
		font-weight: 400;
		font-size: 13px;
	}
	
	nav.primary-nav .menu li.menu-item.menu-item-has-children .sub-menu li a::after {
		content: none;
	}
	
	nav.primary-nav .menu li.menu-item.menu-item-has-children .sub-menu.show {
		display: block;
	}
	
	nav.primary-nav .menu li.menu-item .link-active {
		background: #9c0a69;
	}
	
	nav.primary-nav a.close-button {
		display: block;
	}
}

nav.secondary-nav {
	display: flex;
	gap: 10px 30px;
}

#primary-nav-replacement {
	display: none;
	height: 42px;
	background: #bd1e85;
}

.primary-nav-fixed #primary-nav-replacement {
	display: block;
}

.primary-nav-fixed nav.primary-nav {
	position: fixed;
	top: 32px;
	width: 100%;
}

.primary-nav-fixed nav.primary-nav .menu li.current-menu-item a {
	position: relative;
}

.primary-nav-fixed nav.primary-nav .menu li.current-menu-item a:after {
	content: "";
	position: absolute;
	width: 0;
	height: 0;
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	border-top: 10px solid #b11179;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
}

.section {
	overflow: hidden;
}

.section:nth-child(odd) {
	background: #f8f8f8;
}

.section .container > .heading-container {
	text-align: center;
	max-width: 400px;
	margin: 0px auto 50px;
}

.section .container > .heading-container > *:first-child {
	margin-top: 0;
}

.section .container > .heading-container > *:last-child {
	margin-bottom: 0;
}

.section .side-heading-container {
	display: flex;
	align-items: flex-start;
	gap: 50px;
}

.section .side-heading-container .heading-container {
	flex: 1;
	max-width: 25%;
}

.section .side-heading-container .heading-container > *:first-child {
	margin-top: 0;
}

.section .side-heading-container .heading-container > *:last-child {
	margin-bottom: 0;
}

.section .side-heading-container .tiles {
	width: 100%;
	flex: 1;
}

@media (max-width: 782px) {
	.section .side-heading-container {
		flex-direction: column;
		gap: 0px;
	}
	
	.section .side-heading-container .heading-container {
		max-width: 90%;
	}
}

.section ul {
	padding-left: 1.1rem;
	list-style: none;
}

.section ul li {
	font-family: "Montserrat", sans-serif;
	font-size: 14px;
	line-height: 22px;
	color: #3e3e3e;
	margin: 10px 0;
}

.section ul li:before {
	content: "■";
	color: #bd1e85;
	font-weight: bold;
	display: inline-block;
	width: 1.2rem;
	margin-left: -1.2rem;
}

.section a:not(.button) {
	display: inline-block;
	position: relative;
	color: #bd1e85;
	font-weight: bold;
}

.section a:not(.button):not(.nounderline):after {
	position: absolute;
	top: 100%;
	left: 50%;
	width: 0;
	height: 2px;
	background: #bd1e85;
	content: "";
	opacity: 0;
	transition: all .3s;
	transform: translateX(-50%);
}

.section a:not(.button):not(.nounderline):hover:after, .section a:not(.button):not(.nounderline):focus:after {
	width: 100%;
	opacity: 1;
	transform: translateX(-50%);
}

.pagination {
	display: flex;
	justify-content: center;
	padding: 30px 0;
}

.pagination:first-child {
	padding-top: 0;
}

.pagination:last-child {
	padding-bottom: 0;
}

.pagination .pagination-container {
	display: flex;
}

.pagination > a, .pagination > span {
	display: block;
	margin: 0px 1px 0px 0px;
	background: #f8f8f8;
	color: #bd1e85;
	font-size: 12px;
	font-weight: 400;
	padding: 10px 16px;
	text-decoration: none;
}

.pagination > a.current, .pagination > span.current {
	background: #8b1060;
	color: #fff;
	font-weight: bold;
}

.pagination > a:last-child, .pagination > span:last-child {
	border-right: none;
	border-radius: 0px 10px 10px 0;
}

.pagination > a:first-child, .pagination > span:first-child {
	border-radius: 10px 0px 0px 10px;
}

.pagination > a:after {
	display: none;
}

.pagination > a:hover {
	background: #bd1e85;
	color: #fff;
}

.tns-nav {
	position: absolute;
	bottom: 0;
	width: 100%;
	display: flex;
	justify-content: center;
	gap: 10px;
	padding: 15px 0;
}

.tns-nav > button {
	border: 3px solid #fff;
	background: transparent;
	border-radius: 50%;
	width: 17px;
	height: 17px;
	opacity: 1;
	display: inline-block;
	transition: all 420ms cubic-bezier(.215, .61, .355, 1);
}

.tns-nav > button.tns-nav-active {
	background: #bd1e85 !important;
	border-color: #bd1e85 !important;
	opacity: 1 !important;
}

.tns-controls {
	position: absolute;
	z-index: 2;
	top: 50%;
	transform: translateY(-50%);
	width: 100%;
	display: flex;
	justify-content: space-between;
	overflow: hidden;
}

.tns-controls > button {
	background: rgba(255, 255, 255, .5);
	border: none;
	width: 50px;
	height: 50px;
}

.tns-controls > button:first-child {
	border-radius: 0px 50% 50% 0px;
	margin-left: -7px;
}

.tns-controls > button:last-child {
	border-radius: 50% 0 0 50%;
	margin-right: -7px;
}

.tns-controls > button:disabled {
	opacity: .5;
	cursor: not-allowed;
}

.tns-controls > button svg path {
	fill: #bd1e85;
}

.tns-visually-hidden {
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
	height: 1px;
	overflow: hidden;
	position: absolute;
	white-space: nowrap;
	width: 1px;
}

.tns-outer {
	overflow: hidden;
}

.carousel-container {
	position: relative;
	padding: 0 2rem;
	margin-top: 2rem;
}

.carousel-title-container {
	height: 73px;
	overflow: hidden;
}

footer.main-footer {
	padding-block-start: 50px;
	background: #f8f8f8;
}

footer.main-footer .logos {
	display: flex;
	justify-content: center;
	gap: 30px 50px;
	flex-wrap: wrap;
}

footer.main-footer .logos .logo:after {
	display: none;
}

footer.main-footer .logos img {
	max-width: 180px;
	max-height: 65px;
}

footer.main-footer .text {
	padding: 20px 0;
	text-align: center;
	margin: auto;
}

footer.main-footer .text p {
	font-size: 13px;
	line-height: 18px;
}

footer.main-footer .footer-nav ul {
	display: flex;
	justify-content: center;
	gap: 10px 40px;
}

footer.main-footer .footer-nav ul li:before {
	display: none;
}

@media (max-width: 950px) {
	footer.main-footer .footer-nav ul {
		flex-direction: column;
		align-items: center;
	}
}

@media (max-width: 600px) {
	footer.main-footer .footer-nav ul {
		padding-bottom: 35px;
	}
}

.section:nth-child(odd) + .main-footer {
	background: #f8f8f8;
}

.Footer__top {
	background-color: #4f2650;
	padding-block: 3rem;
	padding-inline: 1.5rem;
}

.Footer__top--container {
	width: 100%;
	max-width: 1300px;
	margin-inline: auto;
}

.Footer__top--columns {
	display: flex;
	flex-wrap: wrap;
	gap: 2rem;
	justify-content: space-between;
}

.Footer__top--nav--list {
	display: flex;
	flex-direction: column;
	gap: .5rem;
	list-style: none;
	padding: 0;
}

.Footer__top--nav--list li a {
	color: #fff;
	transition: color .3s ease-in-out;
}

.Footer__top--nav--list li a:hover {
	color: #bd1e85;
}

.Footer__top--nav--list-2 {
	display: flex;
	flex-direction: column;
	gap: .5rem;
	list-style: none;
	padding: 0;
}

.Footer__top--nav--list-2 li a {
	line-height: 1;
	font-weight: 500;
	color: #fff;
	position: relative;
	transition: color .3s ease-in-out;
}

.Footer__top--nav--list-2 li a:hover {
	color: #bd1e85;
}

.Footer__top--nav--list-2 li a::before {
	content: "";
	position: absolute;
	left: -1.2rem;
	top: 4px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns=\'http://www.w3.org/2000/svg\' fill=\'none\' viewBox=\'0 0 24 24\' stroke-width=\'1.5\' stroke=\'%23ffffff\'%3E%3Cpath stroke-linecap=\'round\' stroke-linejoin=\'round\' d=\'m8.25 4.5 7.5 7.5-7.5 7.5\' /%3E%3C/svg%3E%0A");
	background-size: contain;
	background-repeat: no-repeat;
	width: 1rem;
	height: 1rem;
}

.Footer__top--columns--item {
	display: grid;
	grid-template-columns: 20px 1fr;
	gap: .5rem;
}

.Footer__top--columns--item .Svg, .Footer__top--columns--item span, .Footer__top--columns--item p, .Footer__top--columns--item a {
	color: #fff;
}

.Footer__top--columns--item p {
	margin: 0;
}

.Footer__top--columns--item:last-of-type {
	margin-block-start: 1rem;
}

.Footer__baseline {
	background-color: #bd1e85;
	padding: .75rem 1.5rem;
}

.Footer__baseline--nav {
	display: flex;
	justify-content: center;
}

.Footer__baseline--nav--list {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	list-style: none;
	padding: 0;
}

.Footer__baseline--nav--list li:not(:last-child)::after {
	content: "|";
	margin-inline: .5rem;
	color: #fff;
	font-size: 12px;
}

.Footer__baseline--nav--list li a {
	color: #fff;
	text-decoration: none;
	font-size: .85rem;
}

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

.Footer__top--logo-wrapper {
	margin-block-end: 1rem;
}

.Footer__top--logo {
	height: 40px;
	width: auto;
	color: #fff;
}

.Footer__top--nav-title {
	margin: 0 0 1rem 0;
	color: #fff;
	font-size: 1.4rem;
	line-height: 1;
	font-weight: 500;
}

.Footer__top--columns--item-strap {
	display: block;
	font-size: .85rem;
	margin-block-end: 1rem;
	color: #fff;
}

.Sticky__buy--bar {
	background-color: #f8f8f8;
	padding-block: 1rem;
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	transform: translateY(100%);
	transition: transform .4s ease-in-out;
	z-index: 9999;
	padding-inline: 1.5rem;
	box-shadow: 0 0 6px rgba(0, 0, 0, .3);
}

.Sticky__buy--bar.is-visible {
	transform: translateY(0);
}

@media (max-width: 782px) {
	.Sticky__buy--bar {
		padding-block: .5rem;
	}
}

.Sticky__buy--bar-inner {
	max-width: 1280px;
	margin-inline: auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.Sticky__buy--bar--account {
	display: flex;
	align-items: center;
	gap: .75rem;
	color: #bd1e85;
	font-size: 1.1rem;
	font-weight: 600;
	transition: color .3s ease-in-out;
}

.Sticky__buy--bar--account .Svg {
	height: 35px;
	width: 35px;
}

.Sticky__buy--bar--account:hover {
	color: #561ebd;
}

.Sticky__buy--bar-button {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.Sticky__buy--bar--phone {
	font-size: 1.1rem;
	font-weight: 600;
	color: #202020;
	letter-spacing: .05em;
	margin-inline-start: .5rem;
}

.Sticky__buy--bar--desktop-actions {
	display: block;
}

@media (max-width: 950px) {
	.Sticky__buy--bar--desktop-actions {
		display: none;
	}
}

.Sticky__buy--bar--mobile-actions {
	display: none;
}

@media (max-width: 950px) {
	.Sticky__buy--bar--mobile-actions {
		display: block;
	}
}

.Sticky__buy--bar--strapline {
	display: block;
	margin: 0;
}

@media (max-width: 950px) {
	.Sticky__buy--bar--strapline {
		display: none;
	}
}

.Sticky__buy--bar--button {
	display: inline-block;
	text-align: center;
	background: #561ebd;
	border-radius: 3px;
	border: none;
	color: #fff;
	font-family: "Red Hat Display", sans-serif;
	font-weight: 900;
	width: auto;
	cursor: pointer;
	font-size: 18px;
	padding: 0 50px;
	height: 50px;
	line-height: 50px;
}

@media (max-width: 950px) {
	.Sticky__buy--bar--button {
		font-size: 14px;
		padding: 0 20px;
		height: 45px;
		line-height: 45px;
	}
}

.Sticky__buy--bar--mobile-menu {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: 24px;
	height: 14px;
}

.Sticky__buy--bar--mobile-menu div {
	width: 100%;
	height: 2px;
	border-radius: 2px;
	background-color: #bd1e85;
}

.Sticky__buy--bar--mobile-actions {
	display: flex;
	align-items: center;
	gap: .5rem;
	border: solid 2px #bd1e85;
	border-radius: 4px;
	padding: 3px 6px;
}

.Sticky__buy--bar--mobile-actions span {
	color: #bd1e85;
	font-weight: 600;
	font-size: .9rem;
}

.Sticky__buy--bar--mobile-actions-container {
	display: none;
}

@media (max-width: 950px) {
	.Sticky__buy--bar--mobile-actions-container {
		display: flex;
		gap: 1rem;
		align-items: center;
	}
}

.Sticky__buy--bar--mobile-actions-phone {
	display: grid;
	place-content: center;
	width: 33px;
	height: 33px;
	border: solid 2px #bd1e85;
	border-radius: 50%;
}

.Sticky__buy--bar--mobile-actions-phone .Svg {
	width: 18px;
	height: 18px;
	color: #bd1e85;
}

.section-content {
	padding: 50px 0;
}

.section-header {
	padding: 30px 0;
}

.section-header .container > * {
	margin: 0;
}

.section-carousel {
	position: relative;
}

.section-carousel .tns-controls {
	position: absolute;
}

.section-carousel .carousel-item {
	position: relative;
}

.section-carousel .carousel-item > .container {
	display: flex;
	align-items: center;
}

.section-carousel .carousel-item .image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	z-index: 1;
}

.section-carousel .carousel-item .content {
	max-width: 360px;
	padding: 30px 0;
	z-index: 2;
}

.section-carousel .carousel-item .content h1, .section-carousel .carousel-item .content h2, .section-carousel .carousel-item .content h3, .section-carousel .carousel-item .content h4, .section-carousel .carousel-item .content h5, .section-carousel .carousel-item .content h6, .section-carousel .carousel-item .content p {
	color: #fff;
	text-shadow: 0px 1px 3px rgba(0, 0, 0, .5);
}

.section-carousel .carousel-item .content .button {
	text-shadow: none;
}

.section-carousel .carousel-item.maxwidth-wide .content {
	max-width: 560px;
}

.section-carousel .carousel-item.maxwidth-full .content {
	max-width: 100%;
}

.section-carousel.veneer .carousel-item .image:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #000;
	opacity: .3;
}

.section-tiles {
	padding: 75px 0;
	overflow: hidden;
}

.section-tiles .tiles {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.section-tiles .tiles[data-per-line="2"] {
	grid-template-columns: repeat(2, 1fr);
}

.section-tiles .tiles[data-per-line="3"] {
	grid-template-columns: repeat(3, 1fr);
}

.section-tiles .tiles[data-per-line="4"] {
	grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 782px) {
	.section-tiles .tiles {
		display: flex;
		flex-direction: column;
		gap: 20px;
	}
}

.section-tiles .tiles.style-fade .tile-container {
	box-shadow: none;
	background: linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0) 250px);
}

.section-tiles .tiles.masonry {}

.section-tiles .tiles.masonry .tile {
	/* width: calc(50% - 10px); */
	margin-bottom: 10px;
	float: left;
}

@media (max-width: 950px) {
	.section-tiles .tiles.masonry .tile {
		width: 100%;
	}
}

.section-tiles .tiles .tile-container {
	position: relative;
	background: #fff;
	border-radius: 10px;
	box-shadow: 0px 4px 10px rgba(0, 0, 0, .05);
	padding: 30px 60px 60px 30px;
}

.section-tiles .tiles .tile-container > *:first-child {
	margin-top: 0;
}

.section-tiles .tiles .tile-container > *:last-child {
	margin-bottom: 0;
}

.section-tiles .tiles .tile-container {
	overflow: hidden;
}

.section-tiles .tiles .tile-container.no-padding {
	padding: 0;
}

.section-tiles .tiles .tile-container.no-padding .content {
	padding: 30px;
	padding-bottom: 60px;
}

.section-tiles .tiles .tile-container .image {
	position: relative;
	display: block;
	height: 200px;
	background-size: cover;
	background-position: center;
}

.section-tiles .tiles .tile-container .image > a {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.section-tiles .tiles .tile-container h1, .section-tiles .tiles .tile-container h2, .section-tiles .tiles .tile-container h3, .section-tiles .tiles .tile-container h4, .section-tiles .tiles .tile-container h5, .section-tiles .tiles .tile-container h6 {
	font-weight: bold;
	margin: 10px 0;
}

.section-tiles .tiles .tile-container > a {
	position: absolute;
	bottom: 16px;
	left: 30px;
	color: #bd1e85;
	font-family: "Cambria", Gerogia, serif;
	font-weight: bold;
	font-size: 18px;
}

.section-tiles .tiles .tile-container > a svg {
	position: absolute;
	top: 6px;
	right: -22px;
	width: 12px;
	height: auto;
	margin-left: 5px;
}

.section-tiles .tiles .tile-container > a svg path {
	fill: #bd1e85;
}

.section-tiles .tiles.carousel {
	display: block;
}

.section-tiles .tns-controls {
	width: calc(100vw - 18px);
	left: 50%;
	transform: translate(-50%, -50%);
}

.section-tiles .tns-controls > button {
	background: #bd1e85;
}

.section-tiles .tns-controls > button svg path {
	fill: #fff;
}

.section-tiles .tns-nav {
	position: relative;
	margin-top: 30px;
}

.section-tiles .tns-nav > button {
	border-color: #d3d3d3;
}

.section-tiles:nth-child(even) .tiles .tile-container {
	background: #f8f8f8;
	box-shadow: none;
}

.section-tiles:nth-child(even) .tiles.style-fade .tile-container {
	background: linear-gradient(180deg, #f8f8f8 0%, rgba(248, 248, 248, 0) 250px);
}

@media (max-width: 950px) {
	.section-tiles {
		padding: 50px 0;
	}
}

@media (max-width: 600px) {
	.section-tiles .tiles {
		gap: 10px;
	}
	
	.section-tiles .tiles .tile-container {
		padding: 20px;
	}
	
	.section-tiles .tiles .tile-container p {
		font-size: 16px;
		line-height: 24.8px;
	}
}

.section-split {
	display: flex;
	flex-wrap: wrap;
}

.section-split .split {
	display: flex;
	flex: 1;
}

.section-split .split .container {
	width: 100%;
	max-width: calc(1140px / 2);
	margin: 0;
	padding: 75px;
}

.section-split .split .container > *:first-child {
	margin-top: 0;
}

.section-split .split .container > *:last-child {
	margin-bottom: 0;
}

.section-split .split.split-image-full {
	background-size: cover;
	background-position: center;
}

.section-split .split.split-left {
	justify-content: flex-end;
}

.section-split .split.split-left .container {
	padding-left: 60px;
	padding-right: 30px;
}

.section-split .split.split-left.split-image-contained .container {
	padding-right: 30px;
}

.section-split .split.split-right .container {
	padding-right: 60px;
	padding-left: 30px;
}

.section-split .split.split-right.split-image-contained .container {
	padding-left: 30px;
}

.section-split .split-header {
	width: 100%;
	padding-top: 20px;
}

.section-split .split-header .container > * {
	margin: 10px 0;
}

@media (max-width: 950px) {
	.section-split {
		flex-direction: column;
	}
	
	.section-split .split {
		justify-content: flex-start !important;
	}
	
	.section-split .split.split-left > .container, .section-split .split.split-right > .container {
		max-width: 100%;
		padding: 50px 30px;
	}
	
	.section-split .split.split-left.split-image-contained .container {
		padding-bottom: 0px;
	}
	
	.section-split .split.split-right.split-image-full {
		order: -1;
	}
	
	.section-split .split.split-right.split-image-contained .container {
		padding-top: 0px;
	}
	
	.section-split .split.split-image-full {
		min-height: 66vh;
	}
	
	.section-split .split.split-content + .split-content .container {
		padding-top: 0;
	}
}

@media (max-width: 600px) {
	.split.split-left.split-image-contained {
		padding: 40px 30px 0 30px;
	}
	
	.split.split-left > .container, .split.split-right > .container {
		padding: 40px 30px;
	}
	
	.split.split-left > .container h3, .split.split-right > .container h3 {
		font-size: 25px;
		line-height: 32.5px;
		padding: 0;
	}
	
	.split.split-left > .container p, .split.split-right > .container p {
		font-size: 15px;
		line-height: 23.25px;
		padding: 0;
	}
	
	.split.split-left > .container p:last-child a, .split.split-right > .container p:last-child a {
		padding: 0 30px;
		background-color: #bd1e85;
		color: #fff;
		border: none;
		margin-top: 20px;
		width: 100%;
		height: 50px;
		line-height: 50px;
	}
	
	.split.split-image-full {
		min-height: 47vh;
	}
	
	.split.split-right > .container p:last-child a {
		background-color: #fff;
		color: #561ebd;
		border: 1px solid #561ebd;
		margin-top: 0;
	}
	
	.split.split-right.split-image-contained {
		padding: 0 30px;
	}
}

section.section-cta {
	background: #bd1e85;
	padding: 50px 0;
}

section.section-cta > .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

section.section-cta .content > *:first-child {
	margin-top: 0;
}

section.section-cta .content > *:last-child {
	margin-bottom: 0;
}

section.section-cta .content * {
	margin: 10px 0;
	color: #fff;
}

section.section-cta a.button:hover, section.section-cta a.button:focus {
	background: rgba(0, 0, 0, .4);
}

section.section-cta.layout-tall > .container {
	text-align: center;
	flex-direction: column;
	gap: 20px 0;
}

section.section-cta.background-purple {
	background: #8b1060;
}

section.section-cta.background-darkgrey {
	background: #3e3e3e;
}

section.section-cta.background-darkgrey a.button:hover, section.section-cta.background-darkgrey a.button:focus {
	background: #bd1e85;
}

section.section-cta.background-white {
	background: #fff;
}

section.section-cta.background-lightgrey {
	background: #f8f8f8;
}

section.section-cta.background-white .content *, section.section-cta.background-lightgrey .content * {
	color: #3e3e3e;
}

section.section-cta.background-white a.button, section.section-cta.background-lightgrey a.button {
	background: #bd1e85;
	color: #fff;
}

section.section-cta.background-white a.button:hover, section.section-cta.background-white a.button:focus, section.section-cta.background-lightgrey a.button:hover, section.section-cta.background-lightgrey a.button:focus {
	background: #3e3e3e;
}

.step-withside-container {
	padding-right: 400px;
}

form.multipart-form {
	position: relative;
}

nav.step-navigation {
	padding-top: 30px;
	overflow: hidden;
}

nav.step-navigation > .container {
	position: relative;
}

nav.step-navigation > .container:before, nav.step-navigation > .container:after {
	content: "";
	position: absolute;
	top: 24px;
	width: 100vw;
	height: 5px;
	background: #f6f6f6;
	z-index: 1;
}

nav.step-navigation > .container:before {
	background: #f6bfe7;
	right: 100%;
}

nav.step-navigation > .container:after {
	left: 100%;
}

nav.step-navigation ul {
	list-style: none;
	display: flex;
	justify-content: space-evenly;
	gap: 20px 50px;
}

nav.step-navigation ul li {
	position: relative;
	max-width: 100px;
}

nav.step-navigation ul li:before, nav.step-navigation ul li:after {
	content: "";
	position: absolute;
	top: 24px;
	right: 50%;
	width: 100vw;
	height: 5px;
	background: #f6f6f6;
	z-index: 1;
}

nav.step-navigation ul li:after {
	right: auto;
	left: 50%;
	z-index: 1;
}

nav.step-navigation ul li .circle {
	position: relative;
	z-index: 2;
	display: flex;
	background: #fff;
	border-radius: 50%;
	width: 50px;
	height: 50px;
	justify-content: center;
	align-items: center;
	color: #8f8f8f;
	font-family: "Cambria", Gerogia, serif;
	font-size: 24px;
	font-weight: 400;
	border: 3px solid #eee;
}

nav.step-navigation ul li a {
	position: relative;
	display: flex !important;
	align-items: center;
	flex-wrap: nowrap;
	flex-direction: column;
	gap: 10px;
	z-index: 3;
}

nav.step-navigation ul li a:after {
	display: none;
}

nav.step-navigation ul li p {
	margin: 0;
	font-family: "Cambria", Gerogia, serif;
	font-size: 14px;
	line-height: 18px;
	text-align: center;
	color: #8f8f8f;
}

nav.step-navigation ul li.visited:before {
	background: #f6bfe7;
	z-index: 2;
}

nav.step-navigation ul li.visited .circle {
	background: #d672b3;
	border: none;
	color: #ffe9f8;
}

nav.step-navigation ul li.visited p {
	color: #d99cc3;
}

nav.step-navigation ul li.active .circle {
	background: #bd1e85;
	color: #fff;
	font-weight: bold;
}

nav.step-navigation ul li.active p {
	color: #bd1e85;
	font-weight: bold;
}

aside.form-summary {
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 9;
}

aside.form-summary.fixed {
	position: fixed;
	top: 60px;
}

aside.form-summary.fixed .summary-container {
	top: 0;
}

aside.form-summary.show .summary-container {
	opacity: 1;
	pointer-events: auto;
}

aside.form-summary > .container {
	position: relative;
}

aside.form-summary .summary-container {
	opacity: 0;
	width: 100%;
	max-width: 340px;
	position: absolute;
	top: 160px;
	right: 60px;
	pointer-events: none;
	z-index: 10;
}

aside.form-summary .summary-container > h4 {
	margin: 0;
}

aside.form-summary .plan-products {
	opacity: 0;
	pointer-events: none;
	border-radius: 10px;
	overflow: hidden;
	background: white;
	box-shadow: 0px 1px 10px rgba(0, 0, 0, .1);
	margin-top: 20px;
	transition: all 420ms cubic-bezier(.215, .61, .355, 1);
}

aside.form-summary .plan-products.show {
	opacity: 1;
	pointer-events: auto;
}

aside.form-summary .plan-products .product {
	display: flex;
	border-bottom: 1px solid rgba(0, 0, 0, .1);
}

aside.form-summary .plan-products .product > * {
	padding: 10px 15px;
}

aside.form-summary .plan-products .product .name {
	padding-right: 0;
	flex: 1;
}

aside.form-summary .plan-products .product h6 {
	margin: 0;
}

aside.form-summary .plan-products .product .amount {
	text-align: right;
}

aside.form-summary .plan-products .product.original-product {
	display: none;
}

aside.form-summary .plan-products .product.plan-total {
	background: #bd1e85;
}

aside.form-summary .plan-products .product.plan-total h6 {
	color: white;
}

aside.form-summary .product-list {
	display: flex;
	flex-direction: column;
	max-height: calc(100vh - 250px);
	overflow-y: scroll;
	-ms-overflow-style: none;
	/* IE and Edge */
	scrollbar-width: none;
}

aside.form-summary .product-list::-webkit-scrollbar {
	display: none;
}

aside.form-summary .product-list .product[data-product-name="Choice Plus"], aside.form-summary .product-list .product[data-product-name="Choice Essentials"] {
	order: 0;
}

aside.form-summary .product-list .product[data-product-name*=Limousine], aside.form-summary .product-list .product[data-product-name*="Extra Limousine"], aside.form-summary .product-list .product[data-product-name*=included-limo] {
	order: 2;
}

aside.form-summary .product-list .product[data-product-name*=Embalming] {
	order: 1;
}

aside.form-summary .product-list .product[data-product-name*=Coffin] {
	order: 3;
}

aside.form-summary .product-list .product[data-product-name=general-cost] {
	order: 55;
	background: #fce4f4;
}

aside.form-summary .product-list .product[data-product-name="Voluntary Contribution towards Third Party Fees"] {
	order: 66;
	background: #ffe5e0;
}

aside.form-summary .product-list .product[data-product-name="Voluntary Contribution towards additional services"] {
	order: 77;
	background: #fffee4;
}

aside.form-summary .product-list .product[data-product-name=discount] {
	order: 56;
	background: #ffb9e6;
}

aside.form-summary .discount {
	margin-top: 20px;
	display: flex;
	gap: 0;
	flex-wrap: wrap;
}

aside.form-summary .discount button {
	background: #bd1e85;
	border: none;
	border-radius: 0px 10px 10px 0px;
	padding: 10px;
	color: white;
	font-size: 12px;
	font-weight: bold;
	outline: none;
	cursor: pointer;
}

aside.form-summary .discount input[type=text] {
	flex: 1;
	border-radius: 10px 0px 0px 10px;
}

aside.form-summary .discount .discount-error {
	display: none;
	min-width: 100%;
	font-size: 13px;
	font-weight: bold;
	color: #bd1e3e;
	margin-top: 5px;
}

section.steps {
	min-height: 70vh;
	opacity: 0;
	transition: all 420ms cubic-bezier(.215, .61, .355, 1);
	transition-delay: .8s;
	transition-duration: 2s;
}

section.steps.loaded {
	min-height: auto;
	opacity: 1;
}

section.steps .step {
	display: none;
	overflow: hidden;
	padding: 30px 0;
}

section.steps .step.show {
	display: block;
}

section.steps .step[data-step=payment-options] .form-elements {
	padding-top: 20px;
}

section.steps .step[data-step=payment-options] .form-elements .field {
	border-bottom: none;
}

section.steps .step[data-step=payment-options] .form-elements .field.error {
	margin-bottom: 10px;
}

section.steps .step-header {
	padding-bottom: 30px;
}

section.steps .step-header * {
	margin: 0;
}

section.steps .step-header h5 {
	color: #8f8f8f;
}

section.steps .step-header p {
	margin-top: 10px;
}

section.steps .step-buttons .buttons {
	display: flex;
	justify-content: space-between;
	padding-top: 20px;
}

section.steps .form-elements {
	background: rgba(0, 0, 0, .05);
	background: linear-gradient(180deg, #f2f2f2 0%, #fff 100%);
	overflow: hidden;
	min-height: 50vh;
}

section.steps .form-elements .tab-content[data-tab=terms-conditions] .field {
	border-bottom: none;
	padding-bottom: 0px;
}

section.steps .form-elements .tab-content[data-tab=terms-conditions] .field.error {
	padding-bottom: 20px;
}

section.steps .form-elements .tab-content[data-tab=personalise] .field {
	border-bottom: 1px solid rgba(0, 0, 0, .1);
}

section.steps .form-elements .field {
	flex: 1;
	padding-bottom: 20px;
	border-bottom: 1px solid rgba(0, 0, 0, .1);
}

section.steps .form-elements .field .field-header {
	margin-bottom: 10px;
}

section.steps .form-elements .field .alert p {
	margin: 5px 0 10px;
	color: #bd1e85;
	font-weight: bold;
	font-size: 12px;
	line-height: 16px;
}

section.steps .form-elements .field.input-field, section.steps .form-elements .field.address-field, section.steps .form-elements .field.tickbox-field {
	border: none;
	padding: 0;
}

section.steps .form-elements .field.password-entered .password-input:first-child input[type=password] {
	border-radius: 8px 8px 0 0 !important;
}

section.steps .form-elements .field.error {
	background: #fbe2f4;
	padding: 10px 20px 20px !important;
	border: none;
	border-radius: 10px;
}

section.steps .form-elements .field.error .input-field {
	padding-bottom: 0;
}

.step[data-step=confirm-your-plan] .form-elements {
	padding-top: 20px;
}

.step[data-step=confirm-your-plan] .form-elements .field {
	margin-bottom: 20px;
}

.form-elements h1, .form-elements h2, .form-elements h3, .form-elements h4, .form-elements h5, .form-elements h6, .form-elements p {
	margin: 15px 0;
}

.selection-boxes {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin: 20px 0 0;
}

.selection-boxes input {
	background: transparent;
	box-shadow: none;
	width: auto;
	margin: 0;
}

.selection-boxes input[type=radio] {
	-webkit-appearance: none;
	appearance: none;
	font: inherit;
	color: #bd1e85;
	width: 1.15em;
	height: 1.15em;
	border: 3px solid #bd1e85;
	border-radius: 50%;
	transform: scale(.7);
}

.selection-boxes input[type=radio]::before {
	content: "";
	display: block;
	width: 17px;
	height: 17px;
	border-radius: 50%;
	opacity: 0;
	transition: 120ms all ease-in-out;
	background: #bd1e85;
	transform: translate(-50%, -50%);
}

.selection-boxes input[type=radio]:checked::before {
	opacity: 1;
}

.selection-boxes input[type=checkbox] {
	-webkit-appearance: none;
	appearance: none;
	font: inherit;
	color: #bd1e85;
	width: 1.15em;
	height: 1.15em;
	border: 3px solid #bd1e85;
	border-radius: 7px;
	transform: scale(.7) translateY(-1px);
}

.selection-boxes input[type=checkbox]::before {
	content: "";
	display: block;
	width: 17px;
	height: 17px;
	border-radius: 5px;
	opacity: 0;
	transition: 120ms all ease-in-out;
	background: #bd1e85;
	transform: translate(-50%, -50%);
}

.selection-boxes input[type=checkbox]:checked::before {
	opacity: 1;
}

.selection-boxes .selection-box {
	background: white;
	border-radius: 10px;
	border: 1px solid #e3e3e3;
	box-shadow: 0px 1px 5px rgba(0, 0, 0, .1);
	transition: all 420ms cubic-bezier(.215, .61, .355, 1);
}

.selection-boxes .selection-box label {
	display: flex;
	gap: 10px;
	cursor: pointer;
	padding: 20px;
}

.selection-boxes .selection-box label.disabled {
	pointer-events: none;
	opacity: .3;
}

.selection-boxes .selection-box .content {
	flex: 1;
}

.selection-boxes .selection-box .content * {
	margin: 0;
}

.selection-boxes .selection-box .content p {
	font-size: 13px;
	line-height: 18px;
	color: #8f8f8f;
}

.selection-boxes .selection-box .content a {
	color: #bd1e85;
	font-weight: bold;
}

.selection-boxes .selection-box .price * {
	margin: 0;
	color: #bd1e85;
	font-weight: bold;
}

.selection-boxes .extra-bottom {
	background: #4f2650;
	border-radius: 0px 0px 10px 10px;
	padding: 10px 20px;
	display: flex;
	gap: 0px 30px;
	margin-top: -5px;
	display: none;
}

.selection-boxes .extra-bottom p {
	margin: 0;
	font-size: 12px;
	line-height: 14px;
	font-family: "Cambria", Gerogia, serif;
	color: #fff !important;
}

.selection-boxes .extra-bottom .text {
	flex: 1;
}

.selection-boxes .extra-bottom .text p {
	color: #fff;
}

.selection-boxes.layout-grid {
	flex-direction: row;
	flex-wrap: wrap;
}

.selection-boxes.layout-grid .selection-box label {
	flex-direction: column;
	gap: 10px;
}

.selection-boxes.layout-grid .selection-box .image {
	min-height: 160px;
	background-color: #fff;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	position: relative;
	top: -20px;
	left: -20px;
	width: calc(100% + 40px);
	margin-bottom: -10px;
	border-radius: 9px 9px 0 0;
}

.selection-boxes.product-inputs {
	display: grid;
	grid-template-columns: 1fr 1fr;
	margin-top: 15px;
}

.selection-boxes.product-inputs .selection-box {
	flex: 1;
	min-width: 40%;
}

.selection-boxes.product-inputs .selection-box label {
	padding: 10px 20px 20px;
}

.selection-boxes.product-inputs .selection-box label h5 {
	display: flex;
	gap: 10px;
	justify-content: space-between;
}

.selection-boxes.product-inputs .selection-box input {
	display: block;
	width: 100%;
	border-radius: 10px;
	border: 1px solid #d8d8d8;
	box-shadow: inset 0px 1px 4px rgba(0, 0, 0, .15);
	border-radius: 8px;
	padding: 10px;
	margin: 10px 0;
	background: white;
}

.selection-boxes.show-more .selection-box {
	display: none;
}

.selection-boxes.show-more .selection-box label {
	flex-direction: row;
	gap: 10px;
}

.selection-boxes.show-more .selection-box.active {
	display: block;
}

.selection-boxes.show-more .selection-box.active .image {
	display: none;
}

.selection-boxes.show-more.show-more-active .selection-box {
	display: block;
	max-width: calc(50% - 5px);
}

.selection-boxes.show-more.show-more-active .selection-box .tickbox {
	display: none;
}

.selection-boxes.show-more.show-more-active .selection-box .image {
	display: block;
}

.selection-boxes.show-more.show-more-active .selection-box label {
	flex-direction: column;
	gap: 10px;
}

.selection-boxes.show-more.show-more-active .selection-box.active {
	background: #bd1e85;
}

.selection-boxes.show-more.show-more-active .selection-box.active * {
	color: #fff;
}

.selection-buttons {
	display: flex;
}

.selection-buttons a {
	display: inline-block;
	padding: 10px 25px;
	background: white;
	box-shadow: 0px 1px 5px rgba(0, 0, 0, .1);
	font-family: "Cambria", Gerogia, serif;
	font-size: 17px;
	color: #3e3e42;
	border: 1px solid #e3e3e3;
	border-left-width: 0px;
}

.selection-buttons a:first-child {
	border-radius: 10px 0 0 10px;
	border-left-width: 1px;
}

.selection-buttons a:last-child {
	border-radius: 0px 10px 10px 0px;
	border-right: 0px;
}

.selection-buttons a.active {
	background: #bd1e85;
	color: #fff;
	font-weight: bold;
}

.selection-buttons a.disabled {
	background: white;
	color: #3e3e42;
	font-weight: normal;
	opacity: .3;
	pointer-events: none;
}

.full-plan-summary {
	background: white;
	border-radius: 10px;
	overflow: hidden;
	margin: 20px 0 0;
	box-shadow: 0px 1px 10px rgba(0, 0, 0, .06);
}

.full-plan-summary .summary-header {
	background: #bd1e85;
	overflow: hidden;
	padding: 10px 15px;
}

.full-plan-summary .summary-header h5 {
	color: white;
	margin: 0;
	font-weight: bold;
	font-size: 15px;
	line-height: 19px;
}

.full-plan-summary .summary-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 1px;
	background: #f4f4f4;
}

.full-plan-summary .summary-grid .summary-item {
	flex: 1;
	min-width: 280px;
	background: white;
	padding: 15px;
}

.full-plan-summary .summary-grid .summary-item h6 {
	margin: 0;
	font-weight: bold;
	font-size: 14px;
}

.full-plan-summary .summary-grid .summary-item p {
	margin: 0;
	font-size: 13px;
	line-height: 16px;
	margin-top: 3px;
	text-transform: capitalize;
}

.tickbox-label {
	background: white;
	border-radius: 10px;
	overflow: hidden;
	display: flex;
	gap: 20px;
	box-shadow: 0px 1px 10px rgba(0, 0, 0, .06);
	align-items: center;
}

.tickbox-label .tickbox {
	padding: 20px 0px 20px 20px;
}

.tickbox-label .tickbox input {
	display: inline-block;
	width: auto;
	box-shadow: none;
	padding: 0;
	margin: 0;
	border-radius: 0;
}

.tickbox-label .text {
	padding: 20px 20px 20px 0;
}

.tickbox-label .text p {
	margin: 0;
	font-size: 12px;
	line-height: 16px;
}

header.field-header * {
	margin: 5px 0;
}

header.field-header h4 {
	font-size: 22px;
	line-height: 26px;
}

.input-box {
	display: flex;
	flex-direction: column;
	background: white;
	border-radius: 10px;
	border: 1px solid #e3e3e3;
	box-shadow: 0px 1px 5px rgba(0, 0, 0, .1);
	padding: 10px;
	gap: 20px;
	align-items: center;
}

.input-box.layout-wide {
	flex-direction: row;
	flex-wrap: nowrap;
}

.input-box.layout-thin {
	display: block;
	padding: 15px 20px;
	gap: 0;
}

.input-box.layout-thin .content {
	padding: 0;
}

.input-box.layout-thin .content h5 {
	font-weight: bold;
}

.input-box.layout-thin .input {
	padding: 10px 0;
	flex: 1;
}

.input-box.layout-thin .input input {
	max-width: 100%;
	width: 100%;
}

.input-box.layout-thin .description p {
	margin: 0;
}

.input-box .content {
	flex: 1;
	padding: 5px 10px;
}

.input-box .content > * {
	margin: 0;
}

.input-box .content h4 {
	font-size: 20px;
	line-height: 26px;
}

.input-box .content p {
	font-size: 13px;
	line-height: 18px;
	color: #8f8f8f;
}

.input-box input {
	border: 1px solid #d8d8d8;
	box-shadow: inset 0px 1px 4px rgba(0, 0, 0, .15);
	border-radius: 8px;
	padding: 10px;
	max-width: 140px;
	position: relative;
}

.input-field {
	display: block;
	padding-bottom: 10px;
}

.input-field .content {
	margin-bottom: 10px;
}

.input-field .content * {
	margin: 0;
}

.input-field .content h1:first-child, .input-field .content h2:first-child, .input-field .content h3:first-child, .input-field .content h4:first-child, .input-field .content h5:first-child, .input-field .content h6:first-child {
	font-weight: bold;
	margin: 0 0 10px;
	display: flex;
	gap: 10px;
	align-items: center;
}

.input-field .input {
	position: relative;
}

.input-field .input input {
	display: block;
	width: 100%;
	border-radius: 10px;
	border: 1px solid #d8d8d8;
	box-shadow: inset 0px 1px 4px rgba(0, 0, 0, .15);
	border-radius: 8px;
	padding: 10px;
	background: white;
}

.input-field .input input[type=datetime-local] {
	min-width: 180px;
}

.input-field .password-inputs {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
}

.input-field .password-inputs .password-input {
	flex: 1;
}

.input-field .password-inputs .password-strength {
	padding: 10px;
	background: #b94a48;
	color: white;
	border-radius: 0px 0px 8px 8px;
	font-size: 12px;
	font-weight: bold;
	line-height: 12px;
	display: none;
}

.input-field .password-inputs .password-strength.good {
	background: #e29f48;
}

.input-field .password-inputs .password-strength.strong {
	background: #a6e694;
	color: #002300;
}

.input-field .address-finder-field {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
}

.input-field .address-finder-field input[type=text] {
	flex: 1;
}

.input-field .address-finder-field button {
	min-width: 150px;
	background: #bd1e85;
	border: none;
	border-radius: 8px;
	color: white;
	font-family: "Cambria", Gerogia, serif;
	font-weight: bold;
	cursor: pointer;
}

.input-field .address-finder-field select {
	min-width: 100%;
	border: 1px solid #d8d8d8;
	box-shadow: inset 0px 1px 4px rgba(0, 0, 0, .15);
	border-radius: 8px;
	padding: 10px;
	background: white;
	font-family: "Montserrat", sans-serif;
}

.input-field .address-finder-field #idpc_error_message {
	display: none;
}

.input-field .error > p {
	color: #de4040;
	font-size: 13px;
	font-weight: bold;
	margin: 10px 0 0;
}

.button-box {
	background: white;
	border-radius: 10px;
	box-shadow: 0px 3px 5px rgba(0, 0, 0, .1);
	padding: 15px 20px 20px;
}

.button-box .field-header *:first-child {
	margin-top: 0;
}

.product-selection .tooltip {
	height: 0;
}

.product-selection .tooltip.open .tooltip-content {
	bottom: 10px;
}

.tooltip {
	position: relative;
	top: 2px;
	z-index: 11;
}

.tooltip .tooltip-content {
	opacity: 0;
	pointer-events: none;
	position: absolute;
	left: 50%;
	bottom: 38px;
	background: #303030;
	padding: 10px;
	border-radius: 10px;
	transform: translateX(-50%);
	min-width: 200px;
	transition: all 420ms cubic-bezier(.215, .61, .355, 1);
	transition-duration: 800ms;
}

.tooltip .tooltip-content p {
	color: white !important;
	font-size: 13px !important;
	line-height: 14px !important;
	font-family: "Cambria", Gerogia, serif;
}

.tooltip .tooltip-content:after {
	content: "";
	position: absolute;
	bottom: -7px;
	left: 50%;
	border-left: 7px solid transparent;
	border-right: 7px solid transparent;
	border-top: 8px solid #303030;
	transform: translateX(-50%);
}

.tooltip .toggle {
	max-width: 20px;
	width: 20px;
	height: 20px;
	background: #bd1e85;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 12px;
	font-weight: 600;
	color: white;
	font-family: "Montserrat", sans-serif;
	transition: all 420ms cubic-bezier(.215, .61, .355, 1);
}

.tooltip.open .tooltip-content {
	bottom: 33px;
	opacity: 1;
	pointer-events: auto;
}

.tooltip:hover .toggle {
	background: #7a0c54;
}

.field .selection-comment-input {
	padding-top: 15px;
}

.field.customer-field .customer-box {
	display: flex;
	background: white;
	border-radius: 10px;
	box-shadow: 0px 5px 10px rgba(0, 0, 0, .1);
}

.field.customer-field .customer-box > div {
	border-right: 1px solid #eee;
	padding: 20px;
}

.field.customer-field .customer-box > div *:first-child {
	margin-top: 0;
}

.field.customer-field .customer-box > div *:last-child {
	margin-bottom: 0;
}

.field.customer-field .customer-box > div:last-child {
	border-right: none;
}

.field.customer-field .customer-details {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	padding-top: 20px;
	height: 0;
	opacity: 0;
	pointer-events: none;
}

.field.customer-field .customer-details.show {
	opacity: 1;
	height: auto;
	pointer-events: auto;
}

.multiple-products {
	display: none;
}

.multiple-products .multiple-product-container {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 10px !important;
	font-size: 13px;
}

.multiple-products .multiple-product-container .input {
	max-width: 50px;
}

.multiple-products .multiple-product-container .input input {
	width: 100%;
}

.multiple-products .multiple-product-container .text {
	font-family: "Cambria", Gerogia, serif;
}

.gfield_checkbox input {
	width: auto;
}

.small-input {
	width: 70%;
}

/*Turn Radios into Buttons on Gravity Forms*/
.gchoice {
	z-index: 1;
	position: relative;
	margin: 0 0 10px 0;
	padding: 0;
	height: 50px;
	width: 100%;
}

input.gfield-choice-input {
	z-index: 2;
	appearance: none;
	margin: 0;
	padding: 0;
	width: 100%;
	border-radius: 5px;
	height: 100%;
	background: white !important;
	transition: .3s all ease-in-out;
	position: absolute;
}

input.gfield-choice-input:hover, .gchoice label:hover {
	cursor: pointer;
}

input.gfield-choice-input:checked {
	background: #bd1e85;
}

input.gfield-choice-input:checked + label {
	color: white;
}

.gchoice label {
	z-index: 3;
	font-weight: 700;
	color: #141c25;
	display: block;
	position: absolute;
	padding: 0 0 0 20px;
	top: 50%;
	transform: translateY(-50%);
	width: 100%;
	overflow: visible;
}

input.gfield-choice-input + label:after {
	content: "";
	position: absolute;
	right: -10px;
	transform: translateY(-50%);
	width: 20px;
	height: 20px;
	border: 2px solid #c5c9d2;
	z-index: 2;
	top: 50%;
	transition: .3s all ease-in-out;
	color: white;
	font-size: 20px;
	text-align: center;
	line-height: 20px;
	font-weight: 500;
}

input[type=checkbox].gfield-choice-input + label:after {
	border-radius: 5px;
}

input[type=radio].gfield-choice-input + label:after {
	border-radius: 50px;
}

input.gfield-choice-input:checked + label:after {
	content: "×";
	border: 2px solid white;
}

#gform_wrapper_2 .gform_button {
	background: #bd1e85;
	color: white;
}

#gform_wrapper_2 .gform_button:hover {
	background: #ae1999;
	color: white;
}

.ginput_container.ginput_container_phone {
	position: relative;
	top: -15px;
}

div#input_2_10 {
	width: 70%;
}

div#input_2_14 {
	width: 50%;
}

.gform_wrapper.gravity-theme .field_sublabel_above .description, .gform_wrapper.gravity-theme .field_sublabel_above .gfield_description, .gform_wrapper.gravity-theme .field_sublabel_above .gsection_description {
	margin-top: 0px !important;
	padding-top: 13px !important;
}

.gform_wrapper.gravity-theme .gfield_label {
	display: inline-block;
	font-size: 16px;
	font-weight: 700;
	margin-bottom: 0px !important;
	padding: 0;
}

#field_2_14 .gchoice {
	width: 31%;
	padding: 5;
	margin-right: 10px;
	margin-top: 10px;
}

div#input_2_14 {
	display: flex;
	/* flex-flow: column; */
	flex-wrap: wrap;
	flex-direction: row;
	justify-content: flex-start;
}

.branch-selector {
	position: relative;
	z-index: 11;
}

.branch-selector > .container {
	z-index: 2;
	position: relative;
	pointer-events: none;
}

.branch-selector.doingajax .branches .branch-list .branch-selection {
	cursor: not-allowed;
	opacity: .5;
	pointer-events: none;
}

.branch-selector.preview-open .branch-map {
	opacity: .1;
	pointer-events: none;
}

.step[data-step=select-a-funeral-home] {
	padding-bottom: 0 !important;
}

.branch-selection {
	display: flex;
	gap: 10px;
	align-items: flex-start;
	margin: 10px 0;
}

.branch-selection .image {
	background: rgba(0, 0, 0, .07);
	width: 50px;
	height: 50px;
	min-width: 50px;
	border-radius: 10px;
	background-size: cover;
	background-position: center;
}

.branch-selection .content > * {
	margin: 0;
}

.branch-selection .content h4 {
	margin: 0;
}

.branch-selection .content p {
	font-family: "Cambria", Gerogia, serif;
	font-size: 12px;
	line-height: 14px;
	padding-right: 50px;
}

.branch-selection .heading {
	display: flex;
	gap: 5px 10px;
	font-size: 12px;
	font-family: "Cambria", Gerogia, serif;
}

.branch-map {
	transition: all 420ms cubic-bezier(.215, .61, .355, 1);
}

.branch-preview {
	opacity: 0;
	pointer-events: none;
	position: relative;
	background: #eee;
	overflow-y: scroll;
	max-height: 600px;
	transition: all 420ms cubic-bezier(.215, .61, .355, 1);
}

.branch-preview .image {
	opacity: 0;
	height: 140px;
	background: rgba(0, 0, 0, .05);
	background-size: cover;
	background-position: center;
	transition: all 420ms cubic-bezier(.215, .61, .355, 1);
}

.branch-preview .content {
	opacity: 0;
	padding: 30px;
	transition: all 420ms cubic-bezier(.215, .61, .355, 1);
}

.branch-preview .content .button {
	margin: 0;
}

.branch-preview .content > *:first-child {
	margin-top: 0;
}

.branch-preview .content > *:last-child {
	margin-bottom: 0;
}

.branch-preview .heading {
	display: flex;
	gap: 10px 20px;
}

.branch-preview .heading .stars svg {
	width: 16px;
}

.branch-preview .heading a {
	display: inline-block;
	position: relative;
	color: #3d3d3d;
	font-size: 12px;
	font-weight: bold;
}

.branch-preview .heading a:hover, .branch-preview .heading a:focus {
	color: #bd1e85;
}

.branch-preview .heading a:after {
	position: absolute;
	top: 100%;
	left: 50%;
	width: 0;
	height: 2px;
	background: #bd1e85;
	content: "";
	opacity: 0;
	transition: all .3s;
	transform: translateX(-50%);
}

.branch-preview .heading a:hover:after, .branch-preview .heading a:focus:after {
	width: 100%;
	opacity: 1;
	transform: translateX(-50%);
}

.branch-preview .close-button {
	position: absolute;
	top: 15px;
	right: 15px;
	background: white;
	border-radius: 50%;
	width: 30px;
	height: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.branch-preview .close-button svg {
	width: 16px;
	height: auto;
}

.branch-preview .close-button svg path {
	fill: #bd1e85;
}

.branch-preview.show {
	opacity: 1;
	pointer-events: auto;
}

.branch-preview.loaded .image, .branch-preview.loaded .content {
	opacity: 1;
	pointer-events: auto;
}

.branch-search {
	width: calc(50% - 50px);
	display: flex;
	padding: 10px 10px 15px 10px;
	position: absolute;
	left: 50px;
	top: 0;
	z-index: 5;
	background: #f2f2f2;
	pointer-events: auto;
}

.branch-search input {
	border-radius: 10px 0px 0px 10px;
}

.branch-search .button {
	background: #bd1e85;
	margin: 0;
	border-radius: 0px 10px 10px 0px;
	padding: 12px 20px;
	cursor: pointer;
}

.branches {
	display: grid;
	grid-template-columns: 1fr 1fr;
	height: 600px;
	position: relative;
	z-index: 1;
}

.branches .branch-list {
	display: flex;
	flex-direction: column;
	position: relative;
	flex: 1;
	padding: 0px 0px 20px 0px;
	z-index: 10;
	pointer-events: auto;
	overflow-y: scroll;
	overflow-x: hidden;
	left: -10px;
	padding-left: 10px;
	margin-top: 68px;
	width: calc(100% + 10px);
}

.branches .branch-list .error a:not(.button) {
	display: inline-block;
	position: relative;
	color: #bd1e85;
	font-weight: bold;
}

.branches .branch-list .error a:not(.button):not(.nounderline):after {
	position: absolute;
	top: 100%;
	left: 50%;
	width: 0;
	height: 2px;
	background: #bd1e85;
	content: "";
	opacity: 0;
	transition: all .3s;
	transform: translateX(-50%);
}

.branches .branch-list .error a:not(.button):not(.nounderline):hover:after, .branches .branch-list .error a:not(.button):not(.nounderline):focus:after {
	width: 100%;
	opacity: 1;
	transform: translateX(-50%);
}

.branches .branch-list .branch-selection {
	gap: 15px;
	margin: 0;
	width: calc(100% + 10px);
	left: -10px;
	position: relative;
	border-radius: 15px 0 0 15px;
	padding: 10px;
	cursor: pointer;
	transition: all 420ms cubic-bezier(.215, .61, .355, 1);
}

.branches .branch-list .branch-selection:after {
	opacity: 0;
	pointer-events: none;
	content: "";
	position: absolute;
	right: 0px;
	top: 50%;
	border-top: 15px solid transparent;
	border-bottom: 15px solid transparent;
	border-left: 0px solid #eee;
	z-index: 10;
	transform: translateY(-50%);
	transition: all 420ms cubic-bezier(.215, .61, .355, 1);
	transition-duration: 400ms;
}

.branches .branch-list .branch-selection .image {
	min-width: 75px;
	min-height: 75px;
	width: 75px;
	height: 75px;
}

.branches .branch-list .branch-selection .content p {
	font-size: 14px;
	font-family: "Cambria", Gerogia, serif;
}

.branches .branch-list .branch-selection:hover {
	background: rgba(0, 0, 0, .05);
}

.branches .branch-list .branch-selection.active {
	cursor: auto;
	background: #bd1e85;
}

.branches .branch-list .branch-selection.active * {
	color: #fff;
}

.branches .branch-list .branch-selection.active svg path {
	fill: #fff;
}

.branches .branch-list .branch-selection.active:after {
	opacity: 1;
	right: -15px;
	border-left: 15px solid #bd1e85;
}

.branches .branch {
	padding: 15px 20px;
}

.branches .branch > *:first-child {
	margin-top: 0;
}

.branches .branch > *:last-child {
	margin-bottom: 0;
}

.branches .branch > .button {
	margin: 0;
	width: 100%;
	text-align: center;
}

.branch-map {
	position: absolute;
	top: 0;
	left: 50%;
	width: 50%;
	height: 100%;
	background: #bd1e85;
}

.stars {
	display: flex;
	gap: 2px;
}

.stars svg {
	width: 12px;
	height: auto;
}

.stars svg path {
	fill: #bd1e85;
}

.section-plan {
	padding: 30px 0;
	overflow: hidden;
}

.message-box {
	background: #bd1e85;
	border-radius: 20px;
	display: flex;
}

.message-box .icon {
	flex: 1;
	max-width: 70px;
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

.message-box .icon svg {
	width: 37px;
	height: auto;
}

.message-box .icon svg path {
	fill: white;
}

.message-box .content {
	flex: 1;
	padding: 20px;
}

.message-box .content * {
	margin: 10px 0;
	color: white;
}

.funeral-plans {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

.funeral-plans .plan {
	flex: 1;
	min-width: 100%;
	background: #f8f8f8;
	border-radius: 10px;
	display: flex;
	overflow: hidden;
}

.funeral-plans .plan .image {
	display: flex;
	flex: .5;
	background-color: #bd1e85;
	background-size: cover;
	background-position: center;
	justify-content: center;
	align-items: center;
}

.funeral-plans .plan .image a {
	color: white;
}

.funeral-plans .plan .image a:hover {
	text-decoration: underline;
}

.funeral-plans .plan .image a svg {
	position: absolute;
	top: 4px;
	right: -25px;
	width: 16px;
	height: auto;
	margin-left: 5px;
}

.funeral-plans .plan .image a svg path {
	fill: white;
}

.funeral-plans .plan .content {
	flex: 1;
	padding: 20px;
}

.funeral-plans .plan .content *:first-child {
	margin-top: 0px;
}

.funeral-plans .plan .content *:last-child {
	margin-bottom: 0;
}

.funeral-plans .plan .branch-selection {
	gap: 10px;
	margin: 15px 0;
}

.funeral-plans .plan .branch-selection .image {
	max-width: 50px;
}

.funeral-plans .plan .branch-selection .content {
	padding: 0;
}

.funeral-plans .plan .details {
	display: flex;
	gap: 10px 30px;
}

.funeral-plans .plan .details p {
	margin: 0;
	display: flex;
	gap: 10px;
	align-items: center;
	font-size: 13px;
}

.funeral-plans .plan .details span.status-circle.green {
	display: inline-block;
	width: 15px;
	height: 15px;
	background: #21ba34;
	border-radius: 50%;
}

.plan-status-container {
	display: flex;
	gap: 20px;
}

.plan-status-container > .message-box {
	flex: 1;
}

.plan-status-container > .message-box .content {
	display: flex;
	align-items: center;
}

.plan-status-container > a {
	display: flex !important;
	background: #760e51;
	border-radius: 20px;
	min-width: 130px;
	max-width: 100px;
	justify-content: center;
	align-items: center;
	font-size: 14px;
	line-height: 19px;
	color: white !important;
	font-weight: 400 !important;
	text-align: center;
	flex-direction: column;
	padding: 20px;
	gap: 10px;
}

.plan-status-container > a svg path {
	fill: white;
}

.plan-status-container > a:after {
	display: none;
}

.plan-product-list {
	background: #fff;
	border-radius: 10px;
	overflow: hidden;
}

.plan-product-list .product {
	display: flex;
	padding: 10px;
	font-size: 14px;
	font-family: "Cambria", Gerogia, serif;
	border-top: 1px solid #f7f7f7;
}

.plan-product-list .product.empty {
	opacity: .3;
}

.plan-product-list .product:first-child {
	border-top: none;
}

.plan-product-list .product > * {
	flex: 1;
}

.plan-product-list .product > *:first-child:not(.content) {
	font-weight: bold;
}

.plan-product-list .product.total {
	background: #bd1e85;
	color: white !important;
}

.plan-product-list .product .label {
	max-width: 120px;
}

.plan-product-list .product .cost {
	max-width: 150px;
	text-align: right;
}

.plan-content {
	display: flex;
	gap: 20px 100px;
}

.plan-content > div {
	flex: 1;
}

.plan-content .sidebar {
	max-width: 300px;
}

.plan-content .sidebar .greybox {
	background: #f2f2f2;
	border-radius: 10px;
	padding: 15px 20px 20px 20px;
}

.plan-content .sidebar .greybox > h5 {
	margin: 0;
}

.plan-content .sidebar .greybox > p {
	margin: 5px 0 0 0;
	font-size: 13px;
	line-height: 17px;
}

.plan-content .documents {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 15px;
}

.plan-content .documents a {
	flex: 1;
	gap: 10px;
	display: flex !important;
	min-width: 100%;
	background: #bd1e85;
	border-radius: 10px;
	padding: 10px;
	font-size: 15px;
	color: white !important;
	font-weight: normal !important;
	font-family: "Cambria", Gerogia, serif;
}

.plan-content .documents a:after {
	display: none !important;
}

.plan-content .documents a svg {
	width: 19px;
}

.plan-content .documents a svg path {
	fill: #fff;
}

.login-section {
	padding: 50px 0;
}

.login-section .content {
	max-width: 400px;
	background: white;
	border-radius: 20px;
	margin: auto;
	padding: 20px;
	box-sizing: border-box;
	box-shadow: 0px 3px 10px rgba(0, 0, 0, .1);
}

.login-module {
	position: relative;
	background: rgba(0, 0, 0, .05);
	overflow: hidden;
}

.login-module > h3 {
	margin-top: 0;
}

.login-module form {
	position: relative;
}

.login-module form label {
	display: none;
}

.login-module form input:not([type=submit]) {
	font-family: "Cambria", Gerogia, serif;
	display: block;
	width: 100%;
	padding: 10px;
	background: #fff;
	border: 2px solid rgba(0, 0, 0, .2);
	margin: 5px 0;
	box-sizing: border-box;
	font-size: .8rem;
	font-weight: 400;
	color: #bd1e85 !important;
	transition: all .3s ease;
}

.login-module form input:not([type=submit]):focus {
	border-color: #bd1e85;
}

.login-module form label {
	padding: 0;
}

.login-module form label p {
	margin: 0;
}

.login-module form p {
	margin: 0;
	margin-bottom: 10px;
}

.login-module form .login-submit {
	margin-bottom: 0;
}

.login-module form .login-remember > label {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-start;
	padding: 5px 0px;
}

.login-module form .login-remember > label input {
	width: auto;
	margin-right: 10px;
}

.login-module input[type=text], .login-module input[type=password] {
	border-radius: 10px;
	border: 2px solid #d6d6d6;
	outline: none;
	font-size: 12px;
	font-weight: 600;
	color: #000 !important;
}

.login-module input[type=text]:focus, .login-module input[type=password]:focus {
	border-color: #044557;
}

.login-module input[type=text].error, .login-module input[type=password].error {
	border-color: #bd1e85;
}

.login-module .alt-links {
	padding-top: 20px;
	font-size: 13px;
	text-decoration: underline;
	position: absolute;
	bottom: 21px;
	right: 20px;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.login-module .alt-links a {
	display: inline-block;
	text-align: right;
}

.tab-nav {
	display: flex;
	flex-wrap: nowrap;
	gap: 6px;
}

.tab-nav a {
	background: rgba(0, 0, 0, .02);
	padding: 10px 20px;
	border-radius: 10px 10px 0 0;
	font-family: "Cambria", Gerogia, serif;
	color: #3e3e3e;
	opacity: .6;
	cursor: not-allowed;
}

.tab-nav a.active {
	background: rgba(0, 0, 0, .05);
	font-weight: bold;
	color: #bd1e85;
}

.tab-nav a.visited {
	opacity: 1;
	cursor: pointer;
}

.tab-content {
	display: none;
	flex-wrap: wrap;
	gap: 10px;
	padding: 20px 0;
}

.tab-content > * {
	min-width: 100%;
}

.tab-content.show {
	display: flex;
}

.section-payment {
	padding: 20px 0px 30px 0px;
	background: #bd1e85;
}

.section-payment > .container > *:first-child {
	margin-top: 0;
}

.section-payment > .container > *:last-child {
	margin-bottom: 0;
}

.section-payment .section-header {
	padding: 0;
}

.section-payment .section-header * {
	margin: 10px 0;
	color: #fff;
}

.payment-container {
	background: white;
	border-radius: 10px;
	overflow: hidden;
	margin-top: 30px;
	margin-bottom: 10px;
}

.payment-container form {
	display: flex;
}

.payment-container form > div {
	flex: 1;
	padding: 20px;
}

.payment-container form > div header {
	padding-bottom: 20px;
}

.payment-container form > div header h5 {
	margin: 0px 0px 5px 0px;
}

.payment-container form > div header p {
	font-size: 13px;
	line-height: 17px;
	margin: 0;
}

.payment-container .payment-details {
	border-right: 1px dashed #cbcbcb;
}

.payment-container .payment-details .plan-product-list {
	background: #fff;
}

.ajax-message {
	display: none;
	position: relative;
	left: -20px;
}

.ajax-message p {
	color: white;
	background: #bd1e85;
	display: inline-block;
	margin: 0px 10px 10px 0px;
	border-radius: 0px 10px 10px 0px;
	padding: 5px 20px 5px 15px;
	font-size: 12px;
	font-weight: 600;
}

.ajax-message.success p {
	background: #44af67;
}

.ajax-message.error p {
	background: #b94a48;
}

.payment-methods {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
	gap: 10px;
}

.payment-methods .payment-method {
	position: relative;
	background: #fff;
	border-radius: 10px;
	padding: 10px;
	display: flex;
	align-items: center;
	transition: all .3s ease-in-out;
	cursor: pointer;
	align-items: center;
}

.payment-methods .payment-method.fade {
	opacity: .4;
}

.payment-methods .payment-method.model {
	display: none;
	pointer-events: none;
}

.payment-methods .payment-method.model .content {
	opacity: 0;
}

.payment-methods .payment-method.model .controls {
	opacity: 0;
}

.payment-methods .payment-method.loading {
	position: relative;
	pointer-events: none;
}

.payment-methods .payment-method.loading *:not(.acf-spinner) {
	transition: all .5s ease;
	opacity: .3;
}

.payment-methods .payment-method.loading .acf-spinner {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.payment-methods .payment-method.default {
	padding-top: 40px;
	order: -1;
}

.payment-methods .payment-method.default:after {
	content: "Default";
	position: absolute;
	top: 0px;
	left: 10px;
	background: #a1a1a1;
	font-size: 10px;
	color: white;
	font-weight: 600;
	padding: 5px 8px;
	border-radius: 0 0 10px 10px;
}

.payment-methods .payment-method.selected {
	background: #bd1e85;
	box-shadow: 0px 3px 5px rgba(0, 0, 0, .3);
	padding-top: 40px;
}

.payment-methods .payment-method.selected:after {
	content: "Selected";
	position: absolute;
	top: 0;
	left: 8px;
	background: #7a0c54;
	font-size: 10px;
	color: white;
	font-weight: 600;
	padding: 5px 8px;
	border-radius: 0 0 10px 10px;
	z-index: 1;
}

.payment-methods .payment-method.selected .content p {
	color: white;
}

.payment-methods .payment-method.selected .controls a {
	border-color: #fff !important;
}

.payment-methods .payment-method.selected .controls a svg path {
	fill: #fff;
}

.payment-methods .payment-method * {
	margin: 0;
}

.payment-methods .payment-method p {
	font-size: .8rem;
	font-weight: bold;
	text-transform: capitalize;
}

.payment-methods .payment-method .icon {
	margin-right: 10px;
}

.payment-methods .payment-method .icon svg {
	display: block;
	border-radius: 7px;
}

.payment-methods .payment-method .content {
	flex: 1;
}

.payment-methods .payment-method .controls {
	display: flex;
	flex-wrap: nowrap;
	transition: all .4s ease;
}

.payment-methods .payment-method .controls a {
	border: 1px solid rgba(0, 0, 0, .3);
	border-right: 0;
	width: 37px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.payment-methods .payment-method .controls a:after {
	display: none !important;
}

.payment-methods .payment-method .controls a:first-child {
	border-radius: 7px 0 0 7px;
}

.payment-methods .payment-method .controls a:last-child {
	border-right: 1px solid rgba(0, 0, 0, .3);
	border-radius: 0px 7px 7px 0px;
}

.payment-methods .payment-method .controls a:first-child:last-child {
	border-radius: 7px;
}

.payment-methods .payment-method .controls a svg {
	width: 12px;
	height: auto;
	display: block;
}

.payment-methods .payment-method .controls a svg path {
	fill: rgba(0, 0, 0, .7);
}

.popup {
	position: fixed !important;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 501;
	background: rgba(0, 0, 0, .85);
	padding: 20px;
	box-sizing: border-box;
	opacity: 0;
	transition: all .5s;
	pointer-events: none;
}

.popup * {
	pointer-events: none;
}

.popup > .content {
	position: absolute;
	background: #fff;
	top: 50%;
	left: 50%;
	width: calc(100% - 40px);
	max-width: 750px;
	max-height: calc(100vh - 40px);
	overflow-y: scroll;
	opacity: 0;
	transform: scale(0) translateX(-50%);
	transform-origin: left;
	transition: all .5s;
	border-radius: 10px;
	display: flex;
	flex-direction: column;
	pointer-events: none !important;
}

.popup > .content::-webkit-scrollbar {
	display: none;
}

.popup > .content.loading {
	background: #fff;
}

.popup > .content.loading .scroll-area {
	opacity: .3;
	pointer-events: none;
}

.popup > .content > header {
	min-height: auto;
	padding: 20px;
	background: #eee;
}

.popup > .content > header h3 {
	font-weight: bold;
	font-size: 20px;
	line-height: 22px;
	display: flex;
	align-items: center;
	color: #bd1e85;
}

.popup > .content > header p {
	margin-top: 5px;
	font-size: 13px;
	line-height: 17px;
}

.popup > .content > header * {
	margin: 0;
}

.popup > .content > header > *:first-child {
	margin-top: 0;
}

.popup > .content > header > *:last-child {
	margin-bottom: 0;
}

.popup.open {
	opacity: 1;
	pointer-events: auto;
}

.popup.open * {
	pointer-events: auto !important;
}

.popup.open > .content {
	opacity: 1;
	transform: scale(1) translate(-50%, -50%);
}

.popup .scroll-area {
	background: #fff;
	position: relative;
	overflow-y: scroll;
	min-height: 0px !important;
	transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
}

.popup .scroll-area::-webkit-scrollbar {
	display: none;
}

.popup .scroll-area {
	-ms-overflow-style: none;
	/* IE and Edge */
	scrollbar-width: none;
}

.popup .close-button {
	position: absolute !important;
	float: right;
	top: 0px;
	right: 0;
	padding: 22px;
	font-size: 14px;
	font-weight: bold;
	z-index: 501;
	transition: all .3s ease;
}

.popup .close-button svg {
	width: 16px;
	height: auto;
}

.popup .close-button svg path {
	fill: #bd1e85;
}

/* Turn Radios into Buttons on Gravity Forms */
.gchoice {
	z-index: 1;
	position: relative;
	margin: 0 0 10px 0;
	padding: 0;
	height: 50px;
	width: 100% !important;
}

input.gfield-choice-input {
	z-index: 2;
	appearance: none;
	margin: 0;
	padding: 0;
	width: 100%;
	border-radius: 5px;
	height: 100%;
	background: white;
	transition: .3s all ease-in-out;
	position: absolute;
	background: #dfe1e5;
	position: absolute;
}

input.gfield-choice-input:hover, .gchoice label:hover {
	cursor: pointer;
}

input.gfield-choice-input:checked {
	background: #bd1e85;
}

input.gfield-choice-input:checked + label {
	color: initial;
}

.gchoice label {
	z-index: 3;
	font-weight: 700;
	color: #141c25;
	display: block;
	position: absolute;
	padding: 0 0 0 20px;
	top: 50%;
	transform: translateY(-50%);
	width: 100%;
	overflow: visible;
}

input.gfield-choice-input + label:after {
	content: "";
	position: absolute;
	right: -10px;
	transform: translateY(-50%);
	width: 20px;
	height: 20px;
	border: 2px solid #c5c9d2;
	z-index: 2;
	top: 50%;
	transition: .3s all ease-in-out;
	color: white;
	font-size: 20px;
	text-align: center;
	line-height: 20px;
	font-weight: 500;
}

input[type=checkbox].gfield-choice-input + label:after {
	border-radius: 5px;
}

input[type=radio].gfield-choice-input + label:after {
	border-radius: 50px;
}

input.gfield-choice-input:checked + label:after {
	content: "×";
	border: 2px solid #561fbd;
	color: #561fbd;
}

/* PRINT STYLESHEET FOR SINGLE PLAN - NEEDED */

/* Print Plan Page  */
@media print {
	.plan-template-default {
		background: white;
		color: black;
		margin: 0;
	}
	
	.plan-template-default .main-header {
		display: none;
	}
	
	.plan-template-default .breadcrumbs {
		display: none;
	}
	
	.plan-template-default .plan-content {
		display: none;
	}
	
	.plan-template-default .main-footer {
		display: none;
	}
	
	.plan-template-default .intro-box {
		display: none;
	}
	
	table, figure, .plan-template-default .plan-product-list {
		page-break-inside: avoid;
	}
	
	h1, h2, h3, h4, h5 {
		page-break-after: avoid;
	}
	
	.plan-template-default .product {
		font-size: 12pt;
		padding: 0px;
		line-height: 16pt;
	}
	
	.plan-template-default .split-header {
		display: none;
	}
}

.main-footer img {
	mix-blend-mode: multiply;
	filter: contrast(1);
}

.footer-nav .section ul li {
	font-family: "Montserrat", sans-serif;
	font-size: 12px;
	line-height: 30px;
	color: #3e3e3e;
}

@media only screen and (max-width: 480px) {
	.home .carousel .content {
		height: 700px;
	}
	
	.carousel .content {
		height: 340px;
	}
	
	.button {
		padding: 12px 20px;
		margin: 5px;
	}
	
	.home .carousel .content .button {
		padding: 12px 20px;
		margin: 5px;
	}
	
	.Payment-Summary {
		border: 1px solid #ccc;
		padding: 20px;
		background: white;
		border-radius: 10px;
	}
	
	.section-split .split-header {
		width: 100%;
		padding-top: 20px;
	}
}

/* RESPONSIVE STYLING FOR OLD MODULES - INCLUDING FIND A FUNERAL DIRECTOR - KEEP UNTIL REPLACED */
@media only screen and (max-width: 480px) {
	/* smartphones, iPhone, portrait 480x320 phones */
	.page-id-3121 .inside-container, .page-id-3679 .inside-container {
		display: flex;
		align-content: center;
		flex-wrap: nowrap;
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}
	
	.page-id-3121 .inside-container .eightwide, .page-id-3679 .inside-container .eightwide {
		width: 100%;
	}
	
	.page-id-3121 .inside-container .fourwide, .page-id-3679 .inside-container .fourwide {
		padding: 30px 30px;
		border: 1px dashed #bd1e85;
		border-radius: 30px;
		margin: 30px 0px 0px 0px;
		width: 100%;
	}
	
	.selection-buttons {
		display: -ms-flexbox;
		display: flex;
		flex-direction: column;
	}
	
	.selection-buttons a:last-child {
		border-radius: 0px 0px 10px 10px;
		border-right: 0px;
	}
	
	.selection-buttons a:first-child {
		border-radius: 10px 10px 0 0px;
		border-left-width: 0px;
	}
	
	.input-box.layout-wide {
		-ms-flex-direction: row;
		flex-direction: column;
		-ms-flex-wrap: nowrap;
		flex-wrap: nowrap;
	}
	
	.action-required {
		border: 2px solid #d125ad;
		display: block;
		position: relative;
		background: #fff5fe;
		padding: 20px;
		border-radius: 15px;
		text-align: left;
		margin: 10px auto;
		width: 90%;
	}
	
	.action-required h3 {
		padding: 0px 0px 0px 0px;
		width: 100%;
		font-size: 24px;
	}
	
	.action-required h3:before {
		content: "!";
		padding: 2px 12px;
		background: #d125ad;
		border-radius: 100%;
		color: white;
		margin-right: 10px;
	}
	
	.branch-preview .brand-plan-grid {
		display: none;
	}
	
	.section-carousel .button {
		margin: 5px 0px;
	}
	
	.section-carousel .carousel-item .image {
		background-position-x: -50%;
	}
	
	.page-template-template-multipart-form .multipart-form nav.step-navigation ul {
		gap: 10px 20px;
	}
	
	.multipart-form .step-withside-container {
		padding-right: 0px;
	}
	
	.page-template-template-branch-finder .branch-map, .multipart-form .branch-map {
		position: absolute;
		top: 500px;
		left: 35px;
		width: 80%;
		height: 300px;
		background: #bd1e85;
	}
	
	.page-template-template-branch-finder .branches, .multipart-form .branches {
		display: grid;
		grid-template-columns: 1fr 1fr;
		min-height: 1250px;
		position: relative;
		z-index: 1;
		position: relative;
		top: 0px;
	}
	
	.page-template-template-branch-finder .branches .branch-list, .multipart-form .branches .branch-list {
		display: -ms-flexbox;
		display: flex;
		-ms-flex-direction: column;
		flex-direction: column;
		position: relative;
		-ms-flex: 1;
		flex: 1;
		padding: 0px 0px 20px 0px;
		z-index: 10;
		pointer-events: auto;
		overflow-y: scroll;
		overflow-x: hidden;
		left: -10px;
		padding-left: 10px;
		margin-top: 18px;
		width: 340px;
		max-height: 450px;
		border-bottom: 1px solid black;
	}
	
	.page-template-template-multipart-form .breadcrumbs {
		padding: 20px 0 15px;
		font-family: "Cambria", Georgia, serif;
		font-size: 16px;
		color: #3e3e3e;
		top: 25px;
		position: relative;
	}
	
	.page-template-template-branch-finder .branch-preview.show, .multipart-form .branch-preview.show {
		position: relative;
		background: #eee;
		overflow-y: visible;
		max-height: 750px;
		transition: all 420ms cubic-bezier(.215, .61, .355, 1);
		top: 500px;
		left: -350px;
		width: 340px;
		z-index: 1;
	}
	
	.page-template-template-branch-finder .branch-preview h5, .multipart-form .branch-preview h5 {
		font-size: 18px;
		line-height: 24px;
	}
	
	.page-template-template-branch-finder .branch-preview .button.button-small, .multipart-form .branch-preview .button.button-small, .button.button-primary {
		font-size: 14px;
		padding: 8px 20px;
		margin-left: 25px;
	}
	
	.multipart-form .branches .branch-list .branch-selection {
		gap: 15px;
		margin: 0;
		width: calc(100% + 10px);
		left: -10px;
		position: relative;
		border-radius: 15px 15px 15px 15px;
		padding: 10px;
		cursor: pointer;
		transition: all 420ms cubic-bezier(.215, .61, .355, 1);
	}
	
	.page-template-template-branch-finder .branch-preview .heading, .multipart-form.branch-preview .heading {
		display: -ms-flexbox;
		display: flex;
		gap: 10px 20px;
		display: none;
	}
	
	.page-template-template-branch-finder .branch-preview .image, .multipart-form .branch-preview .image {
		opacity: 1;
		height: 140px;
		background: rgba(0, 0, 0, .05);
		background-size: cover;
		background-position: center;
		transition: all 420ms cubic-bezier(.215, .61, .355, 1);
	}
	
	.page-template-template-branch-finder .branch-search, .multipart-form .branch-search {
		width: 90%;
		display: -ms-flexbox;
		display: flex;
		padding: 10px 10px 15px 10px;
		position: absolute;
		left: 10px;
		top: -75px;
		z-index: 5;
		background: #f2f2f2;
		pointer-events: auto;
	}
	
	.page-template-template-branch-finder .branch-selector > .container, .multipart-form .branch-selector > .container {
		z-index: 2;
		position: relative;
		pointer-events: none;
		margin-top: 80px;
	}
	
	/* Fix overflow on Find a Funeral Director Page */
	.page-template-template-branch-finder #site-container section:nth-of-type(2) {
		overflow: hidden;
	}
	
	.page-template-template-branch-finder aside.form-summary, .multipart-form aside.form-summary {
		position: relative;
		top: 0;
		width: 100%;
		z-index: 9;
	}
	
	.page-template-template-branch-finder aside.form-summary .summmary-container, .multipart-form aside.form-summary .summary-container {
		opacity: 100 !important;
		width: 100%;
		max-width: 340px px;
		position: relative;
		top: 0px !important;
		right: 0px;
		z-index: 10;
		background: #fff;
		padding: 20px;
		/* border: 1px solid black; */
		
		/* height: 100%; */
		display: block;
	}
	
	.page-template-template-branch-finder .selection-boxes .selection-box .content .multipart-form .selection-boxes .selection-box .content strong {
		font-size: 14px;
	}
	
	.multipart-form .selection-boxes .selection-box .content p {
		display: none;
	}
	
	.multipart-form .tab-nav container a {
		font-size: 12px;
	}
	
	.plan-template-default .plan-content {
		display: -ms-flexbox;
		display: block;
		gap: 20px 100px;
	}
	
	.top-header > .container {
		display: -ms-flexbox;
		display: flex;
		-ms-flex-align: end;
		align-items: normal;
		gap: 0px 20px;
	}
	
	/* Fix Payment Page Layout */
	.payment-container form > div {
		padding: 10px;
		display: block;
	}
	
	.payment-methods {
		display: block;
		grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
		gap: 10px;
	}
	
	aside.form-summary {
		display: none;
	}
	
	aside.form-summary.show {
		display: block;
	}
}

.choice-flex {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem 0;
}

.choice-flex-30 {
	width: 30%;
}

.choice-flex-70 {
	width: 70%;
	padding-left: 5%;
}

@media only screen and (max-width: 480px) {
	.choice-flex-30, .choice-flex-70 {
		width: 100%;
		padding-left: 0;
	}
}

.ReviewPartners {
	margin-block: 4rem;
}

.ReviewPartners.padding {
	padding-block: 4rem;
}

.ReviewPartners__header {
	text-align: center;
}

.ReviewPartners__title {
	font-size: 45px;
	line-height: 54px;
	color: #263137;
	margin: 0;
	text-align: center;
}

.ReviewPartners__list {
	list-style: none;
	padding: 0;
	display: flex;
	flex-flow: wrap;
	justify-content: center;
	gap: 4rem;
	margin-block-start: 4rem;
}

@media (max-width: 950px) {
	.ReviewPartners__list {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 782px) {
	.ReviewPartners__list {
		grid-template-columns: 1fr;
	}
}

.ReviewPartners__list--item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
	justify-content: space-between;
	width: 100%;
	max-width: 380px;
}

.ReviewPartners__list--item-header {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
}

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

.ReviewPartners__list--item-text p {
	margin: 0;
}

.ReviewPartners__list--item-stars {
	display: flex;
	gap: .5rem;
}

.ReviewPartners__list--item-stars .Svg {
	width: 18px;
	height: 18px;
	color: #298e89;
}

.ReviewPartners__list--item-link {
	text-align: center;
}

.ReviewPartners__list--item-logo {
	height: 90px;
	width: auto;
}

.FuneralPlans {
	margin-block: 4rem;
}

.FuneralPlans__container {
	width: 100%;
	max-width: 1440px;
	margin-inline: auto;
	padding-inline: 1.5rem;
}

.FuneralPlans__header {
	text-align: center;
	margin-block-end: 2.5rem;
}

.FuneralPlans__header--description {
	width: 100%;
	max-width: 800px;
	margin-inline: auto;
}

.FuneralPlans__header--description p {
	font-size: 1.125rem;
	line-height: 28px;
	margin: 0;
}

.FuneralPlans__header--title {
	font-size: 2.35rem;
	line-height: 50px;
	color: #bd1e85;
	margin-block-start: 0;
	margin-block-end: 1rem;
}

@media (max-width: 950px) {
	.FuneralPlans__header--title {
		font-size: 2rem;
		line-height: 40px;
	}
}

.FuneralPlans__list, .FuneralPlans__sublist {
	list-style: none;
	padding: 0;
}

.FuneralPlans__list {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
	gap: 0 2rem;
	grid-template-rows: auto 1fr auto;
	max-width: 1280px;
	margin-inline: auto;
}

.FuneralPlans__list--article {
	display: grid;
	grid-template-rows: subgrid;
	grid-row: span 5;
	padding: 2rem;
	border-radius: 1rem;
	box-shadow: 0 0 6px rgba(0, 0, 0, .3);
	margin-block-end: 2rem;
	background: #f5f5f5;
	background: linear-gradient(0deg, #f5f5f5 0%, #f5f5f5 97.5%, var(--fp-color-bg) 97.5%, var(--fp-color-bg) 100%);
}

.FuneralPlans__list--article.unattended {
	--fp-color-bg: #298e89;
}

.FuneralPlans__list--article.essentials {
	--fp-color-bg: #bd1e85;
}

.FuneralPlans__list--article.plus {
	--fp-color-bg: #7a0c54;
}

.FuneralPlans__list--article p {
	margin: 0;
}

@media (max-width: 950px) {
	.FuneralPlans__list--article {
		padding: 1.5rem;
	}
}

.FuneralPlans__list--article-title {
	margin-block-start: .35rem;
	margin-block-end: 0;
	color: var(--fp-color-title);
	font-weight: 700;
	font-size: 1.9rem;
	line-height: 39px;
}

.FuneralPlans__list--article-title.unattended {
	--fp-color-title: #298e89;
}

.FuneralPlans__list--article-title.essentials {
	--fp-color-title: #bd1e85;
}

.FuneralPlans__list--article-title.plus {
	--fp-color-title: #7a0c54;
}

@media (max-width: 950px) {
	.FuneralPlans__list--article-title {
		font-size: 1.85rem;
	}
}

.FuneralPlans__list--article-price-wrapper {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding-block-start: 1.4rem;
	padding-block-end: 1rem;
}

.FuneralPlans__list--article-price {
	color: #561ebd;
	font-weight: 600;
	font-size: 2.3rem;
	line-height: 20px;
}

.FuneralPlans__list--article-was-price {
	font-weight: 600;
	font-size: clamp(1rem, -.575rem + 2.333vw, 1.25rem);
	opacity: .8;
}

.FuneralPlans__list--article-from-price-wrapper {
	display: flex;
	gap: .35rem;
}

.FuneralPlans__list--article-from-price-wrapper .Svg {
	height: 9px;
	width: 9px;
}

.FuneralPlans__list--article-from-price span {
	font-weight: 600;
	opacity: .9;
}

.FuneralPlans__list--article-badge-wrapper {
	margin-block-start: .8rem;
}

.FuneralPlans__list--article-badge {
	display: inline-block;
	background-color: #3e3e3e;
	font-size: .85rem;
	border-radius: 16px;
	font-weight: 700;
	color: #fff;
	padding: .25rem .9rem;
	text-transform: uppercase;
	letter-spacing: .05rem;
}

.FuneralPlans__sublist--wrapper {
	padding-block: 1.85rem;
}

.FuneralPlans__sublist {
	display: flex;
	flex-direction: column;
	gap: .85rem;
}

.FuneralPlans__sublist--item {
	font-size: 1.063rem;
	display: grid;
	grid-template-columns: 26px 1fr;
	align-items: center;
	gap: .85rem;
	line-height: 24px;
}

.FuneralPlans__list--article-button {
	display: block;
	text-align: center;
	border-radius: 6px;
	background-color: #561ebd;
	padding: .9rem 1.5rem;
	font-weight: 500;
	color: #fff;
	font-size: 1.3rem;
	text-transform: capitalize;
	letter-spacing: .025rem;
	transition: background-color .3s ease-in-out;
}

.FuneralPlans__list--article-button:hover {
	background-color: #1d243c;
}

@media (max-width: 950px) {
	.FuneralPlans__list--article-button {
		font-size: 1.2rem;
	}
}

.FuneralPlans__startplan--button-wrapper {
	text-align: center;
	margin-block-start: 1rem;
	margin-block-end: 2rem;
}

.FuneralPlans__startplan--button {
	display: inline-block;
	text-align: center;
	border-radius: 3px;
	background-color: #bd1e85;
	padding: .9rem 2.5rem;
	font-weight: 500;
	color: #fff;
	font-size: 1.4rem;
	text-transform: capitalize;
	letter-spacing: .025rem;
	transition: background-color .3s ease-in-out;
}

.FuneralPlans__startplan--button:hover {
	background-color: #b11179;
}

.FuneralPlans__legaltext1--wrapper {
	text-align: center;
	width: 100%;
	max-width: 900px;
	margin-inline: auto;
}

.FuneralPlans__legaltext1--wrapper .Svg {
	width: 9px;
	height: 9px;
	margin-block-end: 4px;
}

.FuneralPlans__legaltext2--wrapper {
	width: 100%;
	max-width: 950px;
	margin-inline: auto;
	padding: 1rem 1.2rem;
	border-radius: 1rem;
	box-shadow: 0 0 6px rgba(0, 0, 0, .3);
	background-color: #f5f5f5;
}

.FuneralPlans__legaltext2--wrapper p {
	margin: 0;
	font-size: 1.05rem;
	line-height: 25px;
}

.FuneralPlans__partners--list {
	list-style: none;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 2rem;
	justify-content: center;
	margin-block: 3rem;
}

.FuneralPlans__partners--list-item {
	display: grid;
	grid-template-columns: auto 1fr;
	align-items: center;
	gap: 1.5rem;
	padding: 1rem 1.2rem;
	border-radius: 1rem;
	box-shadow: 0 0 6px rgba(0, 0, 0, .3);
	background-color: #f5f5f5;
	max-width: 440px;
}

.FuneralPlans__partners--list-item p {
	margin: 0;
}

.FuneralPlans__partners--list-item-desc a {
	color: #bd1e85;
	text-decoration: underline;
}

.FuneralPlans__partners--list-item-logo {
	height: 85px;
	width: auto;
}

.review-block {
	display: flex;
	flex-direction: column;
}

.review-block__line {
	width: 100%;
	height: 1px;
	background-color: #6b7280;
}

.review-block__container {
	display: flex;
	flex-direction: column;
	padding: 25px 0;
}

.review_block__price {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}

.review_block__price--margin-top {
	margin-top: 5px;
}

.review_block__price-heading {
	font-size: 75rem;
	letter-spacing: -.36px;
	color: #3e3e3e;
	font-weight: 900;
}

.review_block__price-heading--margin-left {
	margin-left: 20px;
}

.review_block__price-description {
	font-size: .875rem;
	font-weight: 400;
	color: #3e3e3e;
}

.review_block__price-description--whitespace {
	white-space: nowrap;
}

.review_block__price-description--bold {
	font-weight: 900;
}

.review_block__subtitle {
	font-size: 75rem;
	letter-spacing: -.36px;
	color: #3e3e3e;
	font-weight: 900;
	padding: 10px 0;
	margin-top: 5px;
}

.review_block__list {
	list-style-position: inside;
	list-style-type: disc;
	margin-top: 5px;
	margin-bottom: 1em;
}

.review_block__list::marker {
	color: #bd1e85;
}

.reviewTitle {
	display: flex;
	flex-direction: column;
}

.reviewTitle__line {
	height: 3px;
	width: 100%;
	background-color: #3e3e3e;
}

.reviewTitle__heading {
	display: relative;
	padding: 40px 0 30px 0;
	font-size: 32px;
	line-height: 41.6px;
	font-weight: 900;
	color: #3e3e3e;
}

.review-subtotal {
	display: flex;
	flex-direction: column;
}

.review-subtotal__marker {
	width: 95px;
	height: 3px;
	background-color: #298e89;
	align-self: flex-end;
}

.review-subtotal__heading-container {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	background-color: rgba(41, 142, 137, .3019607843);
	margin: 0 0 0 20px;
	padding: 12px 15px;
}

.review-subtotal__heading {
	font-size: 18px;
	line-height: -.36px;
	font-weight: 900;
	color: #3e3e3e;
}

.review-subtotal__text {
	font-size: 18px;
	line-height: -.36px;
	font-weight: 900;
	color: #3e3e3e;
}

.review-subtotal__text--margin-left {
	margin-left: -20px;
}

.review-subheading {
	font-size: 18px;
	line-height: 27.9px;
	font-weight: 900;
	color: #fff;
	background-color: #3e3e3e;
	border-left: 5px solid #bd1e85;
	padding: 5px 15px;
}

.review-heading {
	display: flex;
	flex-direction: column;
	padding: 30px 0;
	margin-top: 15px;
}

.review-heading p {
	font-size: 20px;
	line-height: 31px;
	font-weight: 400;
	color: #3e3e3e;
	white-space: pre-line;
}

.review-heading__container {
	display: flex;
	flex-direction: row;
}

.review-heading__title {
	font-size: 45px;
	line-height: 54px;
	font-weight: 900;
	color: #bd1e85;
}

.review-heading__divider {
	width: 100%;
	height: 2px;
	background-color: #bd1e85;
	margin: 10px 0;
}

.request_brochure_section {
	width: 100%;
}

.request_brochure_section .request_brochure_wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 50px auto;
	padding: 0 60px;
	width: 100%;
	max-width: 1170px;
}

.request_brochure_section .request_brochure_wrapper .card_image {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 50%;
	max-width: 525px;
	height: 487px;
}

.request_brochure_section .request_brochure_wrapper .card_image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 64% 0;
}

.request_brochure_section .request_brochure_wrapper .request_brochure_container {
	display: flex;
	justify-content: center;
	align-items: center;
	justify-content: flex-start;
	width: 50%;
	max-width: 520px;
}

.request_brochure_section .request_brochure_wrapper .request_brochure_container .request_brochure_content {
	background-color: #bd1e85;
	border-radius: 5px;
	padding: 60px 50px;
	color: #fff;
	width: 100%;
	height: auto;
}

.request_brochure_section .request_brochure_wrapper .request_brochure_container .request_brochure_content h3 {
	color: #fff;
	font-family: "Red Hat Display", sans-serif;
	font-size: 32px;
	font-style: normal;
	font-weight: 900;
	line-height: 41.6px;
	letter-spacing: -.64px;
	letter-spacing: -.64px;
	margin: 0 0 15px 0;
}

.request_brochure_section .request_brochure_wrapper .request_brochure_container .request_brochure_content p {
	font-size: 15px;
	font-style: normal;
	font-weight: 400;
	line-height: 23.25px;
	color: #fff;
	margin: 0 0 10px 0;
}

.request_brochure_section .request_brochure_wrapper .request_brochure_container .request_brochure_content .group_title {
	color: #fff;
	margin: 0 0 10px 0;
	font-size: 16px;
	font-style: normal;
	font-weight: 700;
	line-height: 24px;
}

.request_brochure_section .request_brochure_wrapper .request_brochure_container .request_brochure_content .list {
	list-style: none;
	list-style-position: outside;
	padding-left: 35px;
	margin: 0;
}

.request_brochure_section .request_brochure_wrapper .request_brochure_container .request_brochure_content .list .checkmark_list {
	position: absolute;
	left: -35px;
	top: 6px;
	width: 18px;
	height: 15px;
}

.request_brochure_section .request_brochure_wrapper .request_brochure_container .request_brochure_content .list .item {
	color: #fff;
	font-family: "Montserrat", sans-serif;
	font-size: 15px;
	font-style: normal;
	font-weight: 400;
	line-height: 23.25px;
	position: relative;
	margin-bottom: 10px;
}

.request_brochure_section .request_brochure_wrapper .request_brochure_container .request_brochure_content a {
	margin: 0px;
	margin-top: 15px;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 10px;
	height: auto;
	min-height: 60px;
	line-height: normal;
}

@media (max-width: 950px) {
	.request_brochure_section .request_brochure_wrapper {
		flex-direction: column;
		padding: 0;
	}
	
	.request_brochure_section .request_brochure_wrapper .card_image {
		width: 100%;
		max-width: unset;
	}
	
	.request_brochure_section .request_brochure_wrapper .request_brochure_container {
		justify-content: center;
		width: 100%;
		max-width: unset;
		height: auto;
		padding: 0 50px;
	}
	
	.request_brochure_section .request_brochure_wrapper .request_brochure_container .request_brochure_content {
		position: relative;
		top: -50px;
	}
	
	.request_brochure_section .request_brochure_wrapper .request_brochure_container .request_brochure_content a {
		max-width: 375px;
	}
}

@media (max-width: 600px) {
	.request_brochure_section .request_brochure_wrapper .card_image {
		height: 335px;
	}
	
	.request_brochure_section .request_brochure_wrapper .request_brochure_container {
		padding: 0 25px;
	}
	
	.request_brochure_section .request_brochure_wrapper .request_brochure_container .request_brochure_content {
		padding: 40px 30px;
	}
	
	.request_brochure_section .request_brochure_wrapper .request_brochure_container .request_brochure_content h3 {
		font-size: 25px;
		line-height: 32.5px;
	}
	
	.request_brochure_section .request_brochure_wrapper .request_brochure_container .request_brochure_content p {
		margin: 0 0 20px 0;
	}
	
	.request_brochure_section .request_brochure_wrapper .request_brochure_container .request_brochure_content .group_title {
		margin: 0;
	}
	
	.request_brochure_section .request_brochure_wrapper .request_brochure_container .request_brochure_content .list {
		padding-left: 25px;
	}
	
	.request_brochure_section .request_brochure_wrapper .request_brochure_container .request_brochure_content .list .checkmark_list {
		width: 12px;
		height: 10px;
		left: -25px;
	}
	
	.request_brochure_section .request_brochure_wrapper .request_brochure_container .request_brochure_content .list .item {
		font-size: 16px;
		line-height: 24.8px;
	}
	
	.request_brochure_section .request_brochure_wrapper .request_brochure_container .request_brochure_content a {
		max-width: none;
		margin-top: 20px;
		min-height: 50px;
	}
}

.primary_hero {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	padding-bottom: 50px;
}

.primary_hero .hero_image {
	width: 100%;
	overflow: hidden;
	position: relative;
	grid-column-start: 1;
	grid-column-end: -1;
	grid-row-start: 1;
	grid-row-end: 6;
	min-height: 580px;
}

.primary_hero .hero_image img {
	width: 100%;
	height: auto;
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	object-fit: cover;
	object-position: center;
}

@media (max-width: 950px) {
	.primary_hero .hero_image {
		min-height: 300px;
	}
	
	.primary_hero .hero_image img {
		object-position: right;
	}
}

.primary_hero .hero_text_wrapper {
	position: relative;
	width: 100%;
	grid-column-start: 1;
	grid-column-end: -1;
	margin-top: 5rem;
	grid-row-start: 2;
	grid-row-end: span 6;
	max-width: 1170px;
	padding: 0px 60px;
	margin: 0 auto;
}

.primary_hero .hero_text_wrapper .hero_text_wrapper__container {
	width: 100%;
	max-width: 580px;
	background-color: #f5f7fa;
	border-radius: 5px 5px 0px 0px;
}

.primary_hero .hero_text_wrapper .hero_text_wrapper__container .hero_content {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding: 60px 50px 40px 50px;
	gap: 20px;
}

@media (max-width: 782px) {
	.primary_hero .hero_text_wrapper .hero_text_wrapper__container .hero_content {
		padding: 28px 30px 40px 30px;
	}
}

.primary_hero .hero_text_wrapper .hero_text_wrapper__container .hero_content h1 {
	letter-spacing: -.9px;
	margin: 0;
	margin-bottom: -10px;
}

.primary_hero .hero_text_wrapper .hero_text_wrapper__container .hero_content p {
	color: #333;
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	line-height: 31px;
	margin: 0;
	padding-right: 20px;
}

.primary_hero .hero_text_wrapper .hero_text_wrapper__container .hero_content p a {
	color: #bd1e85;
	text-decoration: underline;
	font-weight: bold;
}

.primary_hero .hero_text_wrapper .hero_text_wrapper__container .hero_content p:last-of-type {
	font-size: 15px;
	font-style: normal;
	font-weight: 400;
	line-height: 23.25px;
}

.primary_hero .hero_text_wrapper .hero_text_wrapper__container .hero_content .buttons_wrapper {
	display: flex;
	flex-direction: column;
	width: 100%;
	gap: 10px;
}

.primary_hero .hero_text_wrapper .hero_text_wrapper__container .hero_content .buttons_wrapper .button, .primary_hero .hero_text_wrapper .hero_text_wrapper__container .hero_content .buttons_wrapper .button.button-grey {
	max-width: 325px;
	margin: 0;
	height: auto;
	line-height: normal;
	padding: 10px;
	min-height: 60px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.primary_hero .hero_text_wrapper .hero_text_wrapper__container .hero_content .t_c_link {
	color: #bd1e85;
	text-decoration: underline;
	font-size: 18px;
	font-weight: 700;
	font-style: normal;
	line-height: 27px;
}

.primary_hero .hero_text_wrapper__advert {
	width: 100%;
	border-radius: 0px 0px 5px 5px;
}

.primary_hero .hero_text_wrapper__advert .tv_advert_content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	align-self: stretch;
	border-radius: 0px 0px 5px 5px;
	padding: 15px 60px 15px 52px;
	background-color: #4f2650;
	position: relative;
}

.primary_hero .hero_text_wrapper__advert .tv_advert_content .tv_advert_link {
	color: #fff;
	font-size: 16px;
	font-style: normal;
	font-weight: 700;
	line-height: 24px;
	text-decoration: underline;
	width: 100%;
}

.primary_hero .hero_text_wrapper__advert .tv_advert_content .advert_sticker {
	position: absolute;
	right: -8px;
	bottom: -38px;
	width: 160px;
}

@media (max-width: 950px) {
	.primary_hero .hero_text_wrapper {
		grid-row-start: 5;
		padding: 0px 20px;
	}
	
	.primary_hero .hero_text_wrapper .hero_text_wrapper__container {
		max-width: 100%;
	}
}

.fscs_banner {
	width: 100%;
	padding: 20px 60px;
}

.fscs_banner__container {
	display: flex;
	justify-content: center;
	align-items: center;
	align-items: flex-start;
	max-width: 912px;
	gap: 20px;
	margin: 0 auto;
}

.fscs_banner__container__left_content {
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	width: 446px;
	height: 102px;
	border: 1px solid #298e89;
	border-radius: 5px;
	margin-bottom: 30px;
}

.fscs_banner__container__left_content .fscs_logo_container {
	height: 100%;
	width: 91px;
	display: flex;
	justify-content: center;
	align-items: center;
	justify-content: flex-end;
	position: relative;
}

.fscs_banner__container__left_content .fscs_logo_container .outer_left_border {
	width: 8px;
	border-radius: 5px 0px 0px 5px;
	background-color: #298e89;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
}

.fscs_banner__container__left_content .fscs_logo_container .inner_left_border {
	width: 5px;
	opacity: .5;
	background-color: #298e89;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 8px;
}

.fscs_banner__container__left_content .fscs_logo_container .fscs_logo {
	margin: 15px;
	width: 48px;
	height: 53px;
}

.fscs_banner__container__left_content .fscs_copy_container {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 354px;
	height: 100%;
	padding: 15px 19px;
	border-left: 1px solid #298e89;
}

.fscs_banner__container__left_content .fscs_copy_container p {
	color: #3e3e3e;
	font-family: "Montserrat", sans-serif;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 24px;
	margin: 0;
}

.fscs_banner__container__right_content {
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	max-width: 446px;
	width: 50%;
}

.fscs_banner__container__right_content p {
	color: #3e3e3e;
	font-size: 15px;
	font-style: normal;
	font-weight: 400;
	line-height: 23.25px;
	margin: 0;
}

@media (max-width: 950px) {
	.fscs_banner {
		padding: 20px 50px;
	}
	
	.fscs_banner__container {
		flex-direction: column;
		gap: 10px;
		max-width: none;
	}
	
	.fscs_banner__container__left_content {
		width: 100%;
	}
	
	.fscs_banner__container__left_content .fscs_copy_container {
		width: 85%;
	}
	
	.fscs_banner__container__right_content {
		width: 100%;
		max-width: none;
	}
}

@media (max-width: 600px) {
	.fscs_banner {
		padding: 0 25px 40px 25px;
	}
	
	.fscs_banner__container {
		gap: 0;
	}
	
	.fscs_banner__container__left_content {
		height: 110px;
	}
	
	.fscs_banner__container__left_content .fscs_copy_container {
		width: 75%;
	}
	
	.fscs_banner__container__left_content .fscs_copy_container p {
		font-size: 13px;
		font-style: normal;
		font-weight: 400;
		line-height: 19.5px;
	}
	
	.fscs_banner__container__right_content p {
		font-size: 13px;
		font-style: normal;
		font-weight: 400;
		line-height: 19.5px;
	}
}

.product_cards {
	width: 100%;
}

.product_cards .content {
	padding: 50px 60px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	max-width: 1170px;
	width: 100%;
	gap: 30px;
	margin: 0 auto;
}

.product_cards .content .header {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	width: 70%;
	gap: 15px;
	padding-top: 30px;
	max-width: 700px;
	text-align: center;
}

.product_cards .content .header h3 {
	color: #bd1e85;
	letter-spacing: -.76px;
	margin: 0;
}

.product_cards .content .header p {
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: 24.8px;
	margin: 0;
	margin-top: 10px;
}

.product_cards .content .product_wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	gap: 30px;
	width: 100%;
	max-width: 1050px;
}

.product_cards .content .product_wrapper .product_container {
	display: flex;
	justify-content: center;
	align-items: center;
	align-items: stretch;
	gap: 10px;
	text-align: left;
	width: 100%;
}

.product_cards .content .product_wrapper .product_container .product_card {
	width: 33%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	border-radius: 5px;
	border: 2px solid #e2e2e2;
	background: #fff;
	box-shadow: 0px 10px 0px 0px #298e89 inset;
}

.product_cards .content .product_wrapper .product_container .product_card .card_header {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	border-bottom: 1px solid #e2e2e2;
	min-height: 212px;
	padding: 7% 8.2%;
	justify-content: flex-start;
}

.product_cards .content .product_wrapper .product_container .product_card .card_header h4 {
	color: #bd1e85;
	font-size: 25px;
	font-style: normal;
	font-weight: 900;
	line-height: 32.5px;
	margin: 0;
}

.product_cards .content .product_wrapper .product_container .product_card .card_header h3 {
	font-size: 24px;
	color: #561ebd;
	letter-spacing: -.76px;
	margin: 0;
}

.product_cards .content .product_wrapper .product_container .product_card .card_header p {
	margin: 0;
	color: #561ebd;
	font-size: 15px;
	font-style: normal;
	font-weight: 400;
	line-height: 23.25px;
}

.product_cards .content .product_wrapper .product_container .product_card .card_header .product_feature {
	margin-top: 11px;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 22px;
	padding: 0px 8px;
	border-radius: 100px;
	background: #3e3e3e;
	color: #fff;
	text-align: center;
	font-family: "Red Hat Display", sans-serif;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 1.65px;
	line-height: normal;
	text-transform: uppercase;
}

.product_cards .content .product_wrapper .product_container .product_card .card_content {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: space-between;
	padding: 6% 8.2% 7% 8.2%;
	gap: 20px;
	height: 100%;
}

.product_cards .content .product_wrapper .product_container .product_card .card_content__body {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
}

.product_cards .content .product_wrapper .product_container .product_card .card_content__body p {
	margin: 0;
	font-size: 15px;
	font-style: normal;
	font-weight: 400;
	line-height: 23.25px;
}

.product_cards .content .product_wrapper .product_container .product_card .card_content__body .card_list p {
	font-size: 17px;
	font-weight: 700;
	line-height: 25.5px;
	margin: 0;
	margin-bottom: 10px;
	margin: 10px 0;
}

.product_cards .content .product_wrapper .product_container .product_card .card_content__body .card_list ul {
	list-style: none;
	list-style-position: outside;
	padding-left: 25px;
	margin: 0;
}

.product_cards .content .product_wrapper .product_container .product_card .card_content__body .card_list ul .checkmark_list {
	position: absolute;
	left: -25px;
	top: 6px;
	width: 12px;
	height: 10px;
}

.product_cards .content .product_wrapper .product_container .product_card .card_content__body .card_list ul li {
	font-size: 15px;
	font-style: normal;
	font-weight: 400;
	line-height: 23.25px;
	position: relative;
	margin-bottom: 5px;
}

.product_cards .content .product_wrapper .product_container .product_card .card_content .buttons_wrapper {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-end;
	gap: 10px;
}

.product_cards .content .product_wrapper .product_container .product_card .card_content .buttons_wrapper a {
	width: 100%;
	max-width: none;
	padding: 6px;
	margin: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 50px;
	height: auto;
	line-height: normal;
}

.product_cards .content .product_wrapper .bottom_border {
	width: 100%;
	height: 1px;
	background-color: #561ebd;
}

.product_cards .content .product_wrapper a {
	margin: 0;
	margin-top: 15px;
	max-width: 325px;
	height: auto;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 60px;
	line-height: normal;
}

@media (max-width: 950px) {
	.product_cards .content {
		padding: 50px;
	}
	
	.product_cards .content .header {
		width: 100%;
		gap: 5px;
	}
	
	.product_cards .content .product_wrapper {
		width: 100%;
	}
	
	.product_cards .content .product_wrapper .product_container {
		gap: 20px;
		flex-direction: column;
		align-items: center;
	}
	
	.product_cards .content .product_wrapper .product_container .product_card {
		width: 100%;
	}
	
	.product_cards .content .product_wrapper .product_container .product_card .card_header {
		padding: 3%;
		min-height: unset;
	}
	
	.product_cards .content .product_wrapper .product_container .product_card .card_content {
		padding: 3%;
	}
	
	.product_cards .content .product_wrapper .bottom_border {
		width: 100%;
	}
}

@media (max-width: 600px) {
	.product_cards .content {
		padding: 40px 30px;
	}
	
	.product_cards .content .header {
		align-items: flex-start;
		padding: 20px 0;
		text-align: left;
	}
	
	.product_cards .content .header h3 {
		font-size: 25px;
		font-style: normal;
		font-weight: 900;
		line-height: 32.5px;
	}
	
	.product_cards .content .header p {
		font-size: 16px;
	}
	
	.product_cards .content .product_wrapper {
		gap: 20px;
	}
	
	.product_cards .content .product_wrapper .product_container .product_card .card_header {
		padding: 30px 25px 15px 25px;
	}
	
	.product_cards .content .product_wrapper .product_container .product_card .card_header h4 {
		font-size: 18px;
		line-height: 26.1px;
		letter-spacing: -.36px;
	}
	
	.product_cards .content .product_wrapper .product_container .product_card .card_header h3 {
		font-size: 32px;
		font-style: normal;
		font-weight: 900;
		line-height: 41.6px;
		letter-spacing: -.64px;
	}
	
	.product_cards .content .product_wrapper .product_container .product_card .card_header p {
		font-size: 13px;
		font-style: normal;
		font-weight: 400;
		line-height: 19.5px;
	}
	
	.product_cards .content .product_wrapper .product_container .product_card .card_content {
		padding: 15px 25px 25px 25px;
		gap: 10px;
	}
	
	.product_cards .content .product_wrapper .product_container .product_card .card_content__body p {
		margin: 0;
		font-size: 16px;
		line-height: 24.8px;
	}
	
	.product_cards .content .product_wrapper .product_container .product_card .card_content .card_list p {
		font-size: 16px;
		line-height: 24.8px;
	}
	
	.product_cards .content .product_wrapper .product_container .product_card .card_content .card_list ul li {
		font-size: 16px;
		line-height: 24.8px;
	}
	
	.product_cards .content .product_wrapper .product_container .product_card .card_content .buttons_wrapper a {
		min-height: 40px;
		font-size: 15px;
		font-style: normal;
		font-weight: 700;
		letter-spacing: -.3px;
	}
	
	.product_cards .content .product_wrapper a {
		width: 100%;
		padding: 10px;
		max-width: none;
		min-height: 50px;
		line-height: normal;
	}
}

.benefits_cards {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 50px 60px;
	gap: 30px;
}

.benefits_cards h3 {
	margin: 30px 0 10px 0;
	color: #bd1e85;
	font-size: 38px;
	font-style: normal;
	font-weight: 900;
	line-height: 45.6px;
	letter-spacing: -.76px;
}

.benefits_cards__container {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: row;
	gap: 10px;
	width: 100%;
	max-width: 1050px;
}

.benefits_cards__container .benefit_card {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	justify-content: flex-start;
	padding: 4% 3%;
	width: 33%;
	gap: 20px;
	height: 380px;
	border-radius: 15px;
	background: #f8f8f8;
}

.benefits_cards__container .benefit_card__top {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
}

.benefits_cards__container .benefit_card__top img {
	width: 120px;
	height: 120px;
}

.benefits_cards__container .benefit_card__bottom {
	width: 100%;
	text-align: left;
}

.benefits_cards__container .benefit_card__bottom p {
	font-size: 18px;
	font-style: normal;
	font-weight: 900;
	line-height: 23.25px;
	letter-spacing: -.3px;
	margin: 0;
	margin-bottom: 10px;
	font-weight: 600;
}

.benefits_cards__container .benefit_card__bottom p:last-child {
	font-size: 15px;
	font-style: normal;
	font-weight: 400;
	line-height: 23.25px;
	margin: 0;
}

.benefits_cards__container .benefit_card__bottom p:last-child a {
	color: #bd1e85;
	text-decoration: underline;
}

@media (max-width: 950px) {
	.benefits_cards {
		padding: 50px;
	}
	
	.benefits_cards h3 {
		margin: 20px 0 30px 0;
	}
	
	.benefits_cards__container {
		flex-direction: column;
		gap: 20px;
	}
	
	.benefits_cards__container .benefit_card {
		width: 100%;
		gap: 20px;
		height: unset;
		padding: 40px 30px;
	}
}

@media (max-width: 600px) {
	.benefits_cards {
		padding: 40px 30px;
		gap: 20px;
	}
	
	.benefits_cards h3 {
		font-size: 25px;
		font-style: normal;
		font-weight: 900;
		line-height: 32.5px;
		margin: 20px 0 10px 0;
		text-align: left;
	}
}

.have_any_questions {
	display: flex;
	justify-content: center;
	align-items: center;
	max-width: 1512px;
	margin: 0 auto;
}

.have_any_questions .card_image {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 50%;
	max-width: 756px;
	height: 615px;
}

.have_any_questions .card_image img {
	width: 756px;
	height: 100%;
	object-fit: none;
	object-position: 0% 0%;
}

.have_any_questions .card_wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 50%;
	max-width: 756px;
	height: 615px;
}

.have_any_questions .card_wrapper__content {
	width: 756px;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding: 14% 19% 14% 14%;
	background-color: #4f2650;
}

.have_any_questions .card_wrapper__content h3 {
	color: #fff;
	font-size: 32px;
	font-style: normal;
	font-weight: 900;
	line-height: 41.6px;
	letter-spacing: -.64px;
	margin: 0 0 5% 0;
}

.have_any_questions .card_wrapper__content .telephone_button {
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 18px;
	font-style: normal;
	font-weight: 900;
	line-height: 23.25px;
	letter-spacing: -.3px;
	background-color: #bd1e85;
	width: 100%;
	height: auto;
	padding: 10px;
	text-decoration: none;
	margin: 0;
	border-radius: 3px;
	min-height: 60px;
	line-height: normal;
}

.have_any_questions .card_wrapper__content p {
	color: #fff;
	margin: 5% 0 0 0;
	font-size: 15px;
	font-style: normal;
	font-weight: 400;
	line-height: 23.25px;
}

.have_any_questions .card_wrapper__content p.info_time {
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: 27px;
	margin: 5% 0;
}

.have_any_questions .card_wrapper__content .divider {
	width: 100%;
	height: 1px;
	opacity: .25;
	background: #f5f7fa;
}

.have_any_questions .card_wrapper__content a {
	color: #fff;
	font-size: 15px;
	font-style: normal;
	font-weight: 700;
	line-height: 22.5px;
	text-decoration: underline;
	margin-top: 4%;
}

@media (max-width: 950px) {
	.have_any_questions {
		flex-direction: column;
	}
	
	.have_any_questions .card_image {
		display: flex;
		justify-content: center;
		align-items: center;
		width: 100%;
		max-width: unset;
		height: auto;
	}
	
	.have_any_questions .card_image img {
		width: 100%;
		height: auto;
		object-position: 55% 0%;
	}
	
	.have_any_questions .card_wrapper {
		width: 100%;
		max-width: unset;
		height: auto;
	}
	
	.have_any_questions .card_wrapper__content {
		width: 100%;
		height: auto;
		padding: 50px;
	}
	
	.have_any_questions .card_wrapper__content .telephone_button {
		max-width: 375px;
	}
}

@media (max-width: 600px) {
	.have_any_questions .card_image img {
		max-height: 205px;
		object-fit: cover;
	}
	
	.have_any_questions .card_wrapper__content {
		padding: 40px 30px;
	}
	
	.have_any_questions .card_wrapper__content h3 {
		font-size: 25px;
		font-style: normal;
		font-weight: 900;
		line-height: 32.5px;
	}
	
	.have_any_questions .card_wrapper__content .telephone_button {
		max-width: unset;
	}
	
	.have_any_questions .card_wrapper__content p.info_time {
		font-size: 16px;
		font-style: normal;
		font-weight: 700;
		line-height: 24px;
	}
	
	.have_any_questions .card_wrapper__content a {
		font-size: 16px;
		font-style: normal;
		font-weight: 700;
		line-height: 24px;
	}
}

.buy_funeral_plan_header {
	width: 100%;
	border-top: 4px solid #f8f8f8;
	padding: 50px 60px 0 60px;
}

.buy_funeral_plan_header__container {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	margin: 0 auto;
	max-width: 1050px;
}

.buy_funeral_plan_header__container h2 {
	width: 454px;
	text-align: left;
	font-size: 45px;
	line-height: 54px;
	letter-spacing: -.9px;
	margin: 0;
}

.buy_funeral_plan_header__container__content {
	display: flex;
	justify-content: center;
	align-items: center;
	align-items: flex-start;
	width: 100%;
	gap: 60px;
	margin: 50px 0 30px 0;
}

.buy_funeral_plan_header__container__content p {
	width: 495px;
	margin: 0;
}

.buy_funeral_plan_header__container__content p a {
	color: #bd1e85;
	text-decoration: underline;
}

@media (max-width: 950px) {
	.buy_funeral_plan_header {
		padding: 50px;
		padding-bottom: 0;
	}
	
	.buy_funeral_plan_header__container h2 {
		width: 100%;
	}
	
	.buy_funeral_plan_header__container__content {
		gap: 10px;
		margin: 20px 0;
		flex-direction: column;
		gap: 20px;
	}
	
	.buy_funeral_plan_header__container__content p {
		width: 100%;
	}
}

@media (max-width: 600px) {
	.buy_funeral_plan_header {
		padding: 30px;
		padding-bottom: 0;
	}
	
	.buy_funeral_plan_header__container {
		align-items: center;
	}
	
	.buy_funeral_plan_header__container h2 {
		font-size: 25px;
		line-height: 32.5px;
		letter-spacing: .1px;
	}
	
	.buy_funeral_plan_header__container__content {
		align-items: center;
		gap: 10px;
		margin: 0;
		margin-top: 20px;
	}
	
	.buy_funeral_plan_header__container__content p a {
		font-size: 16px;
	}
}

.uk_resident_section {
	width: 100%;
	padding: 20px 60px 50px 60px;
}

.uk_resident_section h3, .uk_resident_section p, .uk_resident_section ul, .uk_resident_section a {
	margin: 0;
}

.uk_resident_section .fixed {
	display: none;
	justify-content: center;
	align-items: center;
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	z-index: 2;
	right: 0;
	background-color: #fff;
	padding: 15px 25px;
	border-top: 1px solid #b8b6b0;
}

.uk_resident_section .fixed a {
	width: 100%;
	height: auto;
	line-height: normal;
	padding: 0 10px;
	min-height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.uk_resident_section .uk_resident_wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
	max-width: 1050px;
	margin: 0 auto;
}

.uk_resident_section .uk_resident_wrapper .uk_resident_container {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	width: 100%;
	border-radius: 5px;
	border: 1px solid #bd1e85;
	position: relative;
}

.uk_resident_section .uk_resident_wrapper .uk_resident_container .borders_left {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
}

.uk_resident_section .uk_resident_wrapper .uk_resident_container .borders_left .outer_left {
	width: 8px;
	height: 100%;
	border-radius: 5px 0px 0px 5px;
	background-color: #bd1e85;
}

.uk_resident_section .uk_resident_wrapper .uk_resident_container .borders_left .inner_left {
	width: 5px;
	height: 100%;
	background-color: #bd1e85;
	opacity: .5;
}

.uk_resident_section .uk_resident_wrapper .uk_resident_container .content {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	max-width: 1037px;
	width: 100%;
	padding: 60px;
	gap: 20px;
}

.uk_resident_section .uk_resident_wrapper .uk_resident_container .content .content_left {
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	max-width: 370px;
}

.uk_resident_section .uk_resident_wrapper .uk_resident_container .content .content_left h3 {
	color: #bd1e85;
	font-size: 32px;
	line-height: 41.6px;
	letter-spacing: -.64px;
}

.uk_resident_section .uk_resident_wrapper .uk_resident_container .content .content_right {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 15px;
	max-width: 527px;
}

.uk_resident_section .uk_resident_wrapper .uk_resident_container .content .content_right p {
	font-size: 15px;
	font-style: normal;
	font-weight: 400;
	line-height: 23.25px;
}

.uk_resident_section .uk_resident_wrapper .uk_resident_container .content .content_right .group_title {
	font-size: 18px;
	font-style: normal;
	font-weight: 700;
	line-height: 27.9px;
}

.uk_resident_section .uk_resident_wrapper .uk_resident_container .content .content_right ul {
	width: 100%;
	list-style-type: none;
	padding: 0 0 3px 20px;
}

.uk_resident_section .uk_resident_wrapper .uk_resident_container .content .content_right ul .dot {
	position: absolute;
	left: -20px;
	top: 10px;
}

.uk_resident_section .uk_resident_wrapper .uk_resident_container .content .content_right ul li {
	margin-bottom: 7px;
	font-size: 15px;
	font-style: normal;
	font-weight: 400;
	line-height: 23.25px;
	position: relative;
}

.uk_resident_section .uk_resident_wrapper .uk_resident_container .content .content_right .buttons_wrapper {
	width: 325px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-end;
	gap: 10px;
	margin-top: 10px;
}

.uk_resident_section .uk_resident_wrapper .uk_resident_container .content .content_right .buttons_wrapper a {
	width: 100%;
	height: auto;
	line-height: normal;
	padding: 10px;
	min-height: 60px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.uk_resident_section .uk_resident_wrapper .uk_resident_container .content .content_right .buttons_wrapper a:last-child {
	padding: 10px 5px;
}

@media (max-width: 950px) {
	.uk_resident_section {
		padding: 20px 50px 50px 50px;
	}
	
	.uk_resident_section .uk_resident_wrapper .uk_resident_container .content {
		flex-direction: column;
		align-items: center;
	}
	
	.uk_resident_section .uk_resident_wrapper .uk_resident_container .content .content_left {
		width: 100%;
		max-width: none;
	}
	
	.uk_resident_section .uk_resident_wrapper .uk_resident_container .content .content_right {
		width: 100%;
		gap: 10px;
		max-width: none;
	}
}

@media (max-width: 600px) {
	.uk_resident_section {
		padding: 30px 25px;
	}
	
	.uk_resident_section .uk_resident_wrapper .uk_resident_container .content {
		padding: 40px 15px 40px 27px;
		gap: 15px;
	}
	
	.uk_resident_section .uk_resident_wrapper .uk_resident_container .content .content_left h3 {
		font-size: 5vw;
		line-height: normal;
		letter-spacing: -.36px;
	}
	
	.uk_resident_section .uk_resident_wrapper .uk_resident_container .content .content_right {
		gap: 7px;
	}
	
	.uk_resident_section .uk_resident_wrapper .uk_resident_container .content .content_right .group_title {
		font-size: 16px;
		line-height: 24.8px;
	}
	
	.uk_resident_section .uk_resident_wrapper .uk_resident_container .content .content_right ul {
		padding: 0 0 0 20px;
	}
	
	.uk_resident_section .uk_resident_wrapper .uk_resident_container .content .content_right .buttons_wrapper {
		width: 100%;
		gap: 15px;
		margin-top: 5px;
	}
	
	.uk_resident_section .uk_resident_wrapper .uk_resident_container .content .content_right .buttons_wrapper a {
		min-height: 50px;
	}
}

.secondary_hero {
	position: relative;
	width: 100%;
	min-height: 378px;
}

.secondary_hero__image_right {
	height: 32vh;
	width: 1127px;
	background-repeat: no-repeat;
	position: absolute;
	right: 0;
}

.secondary_hero_centered {
	position: relative;
	width: 100%;
	min-height: 459px;
}

.secondary_hero_centered__image_centered {
	width: 100%;
	height: 43vh;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}

.secondary_hero_centered .hero_text_wrapper {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1;
	width: 100%;
	padding: 70px 60px 0 60px;
	max-width: 1170px;
	margin: 0 auto;
}

.secondary_hero_centered .hero_text_wrapper .hero_content {
	width: 100%;
	max-width: 550px;
	background-color: #f5f7fa;
	border-radius: 5px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding: 50px;
}

.secondary_hero_centered .hero_text_wrapper .hero_content h1 {
	color: #263137;
	font-size: 45px;
	font-style: normal;
	font-weight: 900;
	line-height: 54px;
	letter-spacing: -.9px;
	margin: 0;
}

.secondary_hero_centered .hero_text_wrapper .hero_content p {
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: 27px;
	margin: 10px 0 30px 0;
}

.secondary_hero_centered .hero_text_wrapper .hero_content a {
	width: 100%;
	max-width: 325px;
	height: auto;
	min-height: 60px;
	line-height: normal;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 18px;
	margin: 0;
}

.secondary_hero .hero_text_wrapper {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1;
	width: 100%;
	padding: 70px 60px 0 60px;
	max-width: 1170px;
	margin: 0 auto;
}

.secondary_hero .hero_text_wrapper .hero_content {
	width: 100%;
	max-width: 550px;
	background-color: #f5f7fa;
	border-radius: 5px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding: 50px;
}

.secondary_hero .hero_text_wrapper .hero_content h1 {
	color: #263137;
	font-size: 45px;
	font-style: normal;
	font-weight: 900;
	line-height: 54px;
	letter-spacing: -.9px;
	margin: 0;
}

.secondary_hero .hero_text_wrapper .hero_content p {
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: 27px;
	margin: 10px 0 30px 0;
}

.secondary_hero .hero_text_wrapper .hero_content a {
	width: 100%;
	max-width: 325px;
	height: auto;
	min-height: 60px;
	line-height: normal;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 18px;
	margin: 0;
}

@media (max-width: 950px) {
	.secondary_hero {
		min-height: unset;
	}
	
	.secondary_hero__image_right {
		position: relative;
		height: 40vh;
		width: 100%;
		background-position: 25% 0;
	}
	
	.secondary_hero_centered {
		min-height: unset;
	}
	
	.secondary_hero_centered .hero_text_wrapper {
		position: relative;
		width: 100%;
		padding: 0;
		max-width: unset;
	}
	
	.secondary_hero_centered .hero_text_wrapper .hero_content {
		max-width: unset;
		border-radius: 0;
	}
	
	.secondary_hero .hero_text_wrapper {
		position: relative;
		width: 100%;
		padding: 0;
		max-width: unset;
	}
	
	.secondary_hero .hero_text_wrapper .hero_content {
		max-width: unset;
		border-radius: 0;
	}
}

@media (max-width: 600px) {
	.secondary_hero__image_right {
		height: 31vh;
		background-size: cover;
		background-position: 30% 0;
	}
	
	.secondary_hero_centered .hero_text_wrapper .hero_content {
		padding: 20px 30px 30px 30px;
	}
	
	.secondary_hero_centered .hero_text_wrapper .hero_content h1 {
		color: #333;
		font-size: 25px;
		font-style: normal;
		font-weight: 900;
		line-height: 32.5px;
	}
	
	.secondary_hero_centered .hero_text_wrapper .hero_content p {
		margin: 10px 0 20px 0;
		font-size: 15px;
		font-style: normal;
		font-weight: 400;
		line-height: 23.25px;
	}
	
	.secondary_hero_centered .hero_text_wrapper .hero_content a {
		max-width: unset;
		padding: 13px;
		min-height: 50px;
	}
	
	.secondary_hero .hero_text_wrapper .hero_content {
		padding: 20px 30px 30px 30px;
	}
	
	.secondary_hero .hero_text_wrapper .hero_content h1 {
		color: #333;
		font-size: 25px;
		font-style: normal;
		font-weight: 900;
		line-height: 32.5px;
	}
	
	.secondary_hero .hero_text_wrapper .hero_content p {
		margin: 10px 0 20px 0;
		font-size: 15px;
		font-style: normal;
		font-weight: 400;
		line-height: 23.25px;
	}
	
	.secondary_hero .hero_text_wrapper .hero_content a {
		max-width: unset;
		padding: 13px;
		min-height: 50px;
	}
}

.table_comparison {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 30px 60px 50px 60px;
	position: relative;
}

.table_comparison p, .table_comparison h3, .table_comparison h4 {
	margin: 0;
	padding: 0;
}

.table_comparison .header {
	width: 100%;
	max-width: 700px;
	margin: 30px 0;
	text-align: center;
}

.table_comparison .header h3 {
	margin: 0 0 10px 0;
	letter-spacing: -.76px;
	color: #bd1e85;
}

.table_comparison .header p {
	font-size: 16px;
	line-height: 24.8px;
	margin-top: 15px;
}

.table_comparison .divider {
	height: 5px;
	width: 100%;
	max-width: 1050px;
	background-color: #4f2650;
	margin-bottom: 1px;
}

.table_comparison table {
	width: 100%;
	max-width: 1050px;
	border-collapse: collapse;
	table-layout: fixed;
	border-bottom: 1px solid #4f2650;
}

.table_comparison table thead {
	position: sticky;
	top: 0;
}

.table_comparison table thead tr {
	width: 100%;
	background-color: #fff;
}

.table_comparison table thead tr th {
	width: 33.33%;
}

.table_comparison table thead tr th .th_top {
	width: 100%;
	padding: 5px 10px;
	background-color: #bd1e85;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	height: 147px;
}

.table_comparison table thead tr th .th_top h3 {
	font-size: 25px;
	font-style: normal;
	font-weight: 900;
	line-height: 32.5px;
	color: #fff;
}

.table_comparison table thead tr th .th_top p {
	font-size: 22px;
	font-style: normal;
	font-weight: 400;
	line-height: 35.2px;
	color: #fff;
}

.table_comparison table thead tr th .th_top p:last-child {
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: 27px;
	color: #fff;
}

.table_comparison table thead tr th a {
	width: 100%;
	height: auto;
	line-height: normal;
	min-height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0 10px;
	margin: 0;
	border-radius: 0px;
}

.table_comparison table tbody tr td {
	width: 33.33%;
}

.table_comparison table tbody tr td.benefits_category, .table_comparison table tbody tr td.info_message, .table_comparison table tbody tr td.benefit_name {
	width: 100%;
	text-align: center;
	font-size: 15px;
	font-style: normal;
	font-weight: 400;
	line-height: 23.25px;
}

.table_comparison table tbody tr td.info_message, .table_comparison table tbody tr td.benefit_name {
	padding: 12px 10px;
	background-color: #f5f7fa;
	color: #3e3e3e;
	border-top: 1px solid #4f2650;
}

.table_comparison table tbody tr td.benefits_category {
	padding: 4px 10px;
	background-color: #3e3e3e;
	color: #fff;
}

.table_comparison table tbody tr td.plan_price, .table_comparison table tbody tr td.plan_included {
	text-align: center;
	padding: 28px 10px;
	font-size: 13px;
	font-style: normal;
	font-weight: 400;
	line-height: 19.5px;
	color: #3e3e3e;
}

.table_comparison table tbody tr td.plan_price h3, .table_comparison table tbody tr td.plan_included h3 {
	font-size: 25px;
	font-style: normal;
	font-weight: 900;
	line-height: 32.5px;
}

.table_comparison table tbody tr td.plan_price .checkmark, .table_comparison table tbody tr td.plan_included .checkmark {
	width: 12px;
	height: 10px;
}

.table_comparison table tbody tr td.plan_price .crossmark, .table_comparison table tbody tr td.plan_included .crossmark {
	width: 12px;
	height: 12px;
}

.table_comparison table tbody tr td.plan_price .no_options, .table_comparison table tbody tr td.plan_included .no_options {
	width: 12px;
	height: 3px;
	border-radius: 4px;
	background-color: #b8b6b0;
	margin: 0 auto;
}

.table_comparison table tbody tr td:not(:last-child) {
	border-right: 1px solid #b8b6b0;
}

@media (max-width: 950px) {
	.table_comparison {
		padding: 30px 50px 50px 50px;
	}
	
	.table_comparison table thead {
		top: 133px;
	}
}

@media (max-width: 600px) {
	.table_comparison {
		padding: 30px 25px;
	}
	
	.table_comparison .header {
		margin: 0 0 20px 0;
		text-align: left;
	}
	
	.table_comparison .header h3 {
		margin: 0 0 10px 0;
		font-size: 25px;
		font-style: normal;
		font-weight: 900;
		line-height: 32.5px;
	}
	
	.table_comparison .header p {
		margin-top: 5px;
	}
	
	.table_comparison table thead {
		top: 138px;
	}
	
	.table_comparison table thead tr th .th_top {
		padding: 10px 5px;
	}
	
	.table_comparison table thead tr th .th_top h3 {
		font-size: 15px;
		font-style: normal;
		font-weight: 900;
		line-height: 23.25px;
		letter-spacing: -.3px;
	}
	
	.table_comparison table thead tr th .th_top p {
		font-size: 18px;
		font-style: normal;
		font-weight: 400;
		line-height: 27px;
	}
	
	.table_comparison table thead tr th .th_top p:last-child {
		font-size: 13px;
		font-style: normal;
		font-weight: 400;
		line-height: 19.5px;
	}
	
	.table_comparison table thead tr th .th_top.table_footer {
		padding: 25px 5px 15px 5px;
	}
	
	.table_comparison table thead tr th a {
		font-size: 15px;
		padding: 0;
	}
	
	.table_comparison table tbody tr td.benefits_category, .table_comparison table tbody tr td.info_message, .table_comparison table tbody tr td.benefit_name {
		font-size: 13px;
		font-style: normal;
		font-weight: 400;
		line-height: 19.5px;
	}
	
	.table_comparison table tbody tr td.info_message, .table_comparison table tbody tr td.benefit_name {
		padding: 8px 10px;
	}
	
	.table_comparison table tbody tr td.benefits_category {
		padding: 2px 10px;
	}
	
	.table_comparison table tbody tr td.plan_included {
		padding: 18px 10px;
		font-size: 13px;
		font-style: normal;
		font-weight: 400;
		line-height: 19.5px;
	}
	
	.table_comparison table tbody tr td.plan_price {
		padding: 18px 10px;
	}
	
	.table_comparison table tbody tr td.plan_price h3 {
		font-size: 15px;
		font-style: normal;
		font-weight: 900;
		line-height: 23.25px;
		letter-spacing: -.3px;
	}
}

.included_card {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	background-color: #f5f7fa;
	padding: 50px 60px;
}

.included_card h3, .included_card p, .included_card ul, .included_card a {
	margin: 0;
	padding: 0;
}

.included_card .content_card {
	width: 100%;
	max-width: 1050px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: row-reverse;
	gap: 20px;
}

.included_card .content_card .text_wrapper {
	width: 50%;
	max-width: 515px;
}

.included_card .content_card .text_wrapper .text_content {
	width: 100%;
	padding-right: 44px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
	gap: 20px;
}

.included_card .content_card .text_wrapper .text_content h3 {
	color: #bd1e85;
	letter-spacing: -.76px;
	margin-bottom: 10px;
}

.included_card .content_card .text_wrapper .text_content ul {
	list-style-type: none;
	padding: 0 0 10px 20px;
}

.included_card .content_card .text_wrapper .text_content ul .dot {
	position: absolute;
	left: -20px;
	top: 10px;
}

.included_card .content_card .text_wrapper .text_content ul li {
	margin-bottom: 7px;
	font-size: 15px;
	font-style: normal;
	font-weight: 400;
	line-height: 23.25px;
	color: #3e3e3e;
	position: relative;
}

.included_card .content_card .text_wrapper .text_content a {
	width: 100%;
	max-width: 325px;
	padding: 0 10px;
	margin: 0;
	height: auto;
	line-height: normal;
	min-height: 60px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.included_card .content_card .image_wrapper {
	width: 50%;
	max-width: 525px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.included_card .content_card .image_wrapper img {
	width: 525px;
	height: 475px;
	object-fit: cover;
}

@media (max-width: 950px) {
	.included_card {
		padding: 50px;
	}
	
	.included_card .content_card {
		flex-direction: column;
	}
	
	.included_card .content_card .text_wrapper {
		width: 100%;
		max-width: unset;
	}
	
	.included_card .content_card .text_wrapper .text_content {
		padding: 0;
	}
	
	.included_card .content_card .text_wrapper .text_content a {
		max-width: 375px;
	}
	
	.included_card .content_card .image_wrapper {
		width: 100%;
		max-width: unset;
	}
	
	.included_card .content_card .image_wrapper img {
		width: 100%;
		height: auto;
	}
}

@media (max-width: 600px) {
	.included_card {
		padding: 40px 30px;
	}
	
	.included_card .content_card {
		gap: 40px;
	}
	
	.included_card .content_card .text_wrapper .text_content h3 {
		font-size: 25px;
		line-height: 32.5px;
		letter-spacing: -.76px;
	}
	
	.included_card .content_card .text_wrapper .text_content a {
		min-height: 50px;
		max-width: unset;
	}
	
	.included_card .content_card .image_wrapper {
		width: 100%;
		height: auto;
	}
}

.hero_plan {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	padding-bottom: 25px;
}

.hero_plan h1, .hero_plan h3, .hero_plan p {
	margin: 0;
	padding: 0;
}

.hero_plan .fixed {
	display: none;
	justify-content: center;
	align-items: center;
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	z-index: 2;
	right: 0;
	background-color: #fff;
	padding: 15px 25px;
	border-top: 1px solid #b8b6b0;
}

.hero_plan .fixed a {
	width: 100%;
	height: auto;
	line-height: normal;
	padding: 0 10px;
	min-height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.hero_plan .hero_image {
	width: 100%;
	overflow: hidden;
	position: relative;
	grid-column-start: 1;
	grid-column-end: -1;
	grid-row-start: 1;
	grid-row-end: 6;
	min-height: 590px;
}

.hero_plan .hero_image img {
	width: 100%;
	height: auto;
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	object-fit: cover;
	object-position: center;
}

.hero_plan .hero_text_wrapper {
	position: relative;
	width: 100%;
	grid-column-start: 1;
	grid-column-end: -1;
	margin-top: 5rem;
	grid-row-start: 2;
	grid-row-end: span 6;
	max-width: 1170px;
	padding: 0px 60px;
	margin: 0 auto;
}

.hero_plan .hero_text_wrapper .hero_content {
	width: 100%;
	max-width: 550px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 20px;
	padding: 50px;
	background-color: #f5f7fa;
	border-radius: 5px;
}

.hero_plan .hero_text_wrapper .hero_content .hero_content_top {
	width: 100%;
}

.hero_plan .hero_text_wrapper .hero_content .hero_content_top .spread-the-cost {
	display: flex;
	align-items: center;
	gap: 5px;
	flex-wrap: wrap;
}

.hero_plan .hero_text_wrapper .hero_content .hero_content_top .spread-the-cost p {
	margin-top: 10px;
}

.hero_plan .hero_text_wrapper .hero_content .hero_content_top h1 {
	color: #263137;
	letter-spacing: -.9px;
	margin: 0;
}

.hero_plan .hero_text_wrapper .hero_content .hero_content_top h3 {
	color: #561ebd;
	letter-spacing: -.76px;
	margin-top: 10px;
}

.hero_plan .hero_text_wrapper .hero_content .hero_content_top p {
	color: #561ebd;
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	line-height: 31px;
}

.hero_plan .hero_text_wrapper .hero_content .hero_content_top p.info_message {
	color: #3e3e3e;
	font-size: 13px;
	font-style: normal;
	font-weight: 400;
	line-height: 19.5px;
	margin: 10px 0;
}

.hero_plan .hero_text_wrapper .hero_content .hero_content_top p.plan_feature {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 24px;
	width: 209px;
	padding: 0px 8px;
	border-radius: 100px;
	background: #3e3e3e;
	color: #fff;
	font-family: "Red Hat Display", sans-serif;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 1.95px;
	line-height: normal;
	text-transform: uppercase;
}

.hero_plan .hero_text_wrapper .hero_content .trustpilot-alignment {
	width: 100%;
	max-width: 325px;
	display: flex;
	justify-content: center;
	align-items: center;
}

@media (max-width: 600px) {
	.hero_plan .hero_text_wrapper .hero_content .trustpilot-alignment {
		margin-inline: auto;
	}
}

.hero_plan .hero_text_wrapper .hero_content a {
	width: 100%;
	max-width: 325px;
	padding: 0 10px;
	margin: 0;
	height: auto;
	line-height: normal;
	min-height: 60px;
	display: flex;
	justify-content: center;
	align-items: center;
}

@media (max-width: 950px) {
	.hero_plan .hero_text_wrapper {
		grid-row-start: 5;
		padding: 0px 20px;
		margin-top: -3rem;
	}
	
	.hero_plan .hero_text_wrapper .hero_text_wrapper__container {
		max-width: 100%;
	}
}

@media (max-width: 600px) {
	.hero_plan .hero_image.reduced_image_height {
		min-height: 31vh;
	}
	
	.hero_plan .hero_text_wrapper .hero_content {
		padding: 20px 30px 30px 30px;
	}
	
	.hero_plan .hero_text_wrapper .hero_content .hero_content_top h1 {
		color: #333;
		font-size: 25px;
		font-style: normal;
		font-weight: 900;
		line-height: 32.5px;
	}
	
	.hero_plan .hero_text_wrapper .hero_content .hero_content_top h3 {
		font-size: 32px;
		font-style: normal;
		font-weight: 900;
		line-height: 41.6px;
		letter-spacing: -.64px;
		letter-spacing: -.64px;
	}
	
	.hero_plan .hero_text_wrapper .hero_content .hero_content_top p {
		font-size: 18px;
		font-style: normal;
		font-weight: 400;
		line-height: 27px;
	}
	
	.hero_plan .hero_text_wrapper .hero_content .hero_content_top p.plan_feature {
		height: 22px;
		width: 176px;
		font-size: 11px;
		letter-spacing: 1.65px;
		padding: 0px 4px;
	}
	
	.hero_plan .hero_text_wrapper .hero_content a {
		max-width: unset;
		min-height: 50px;
	}
}

.plan_product_bullet_points {
	padding: 0;
	margin-inline-start: 1.2rem;
	font-size: 15px;
	line-height: 24px;
}

.plan_product_bullet_points li::marker {
	color: #bd1e85;
	font-size: 1.5em;
}

.two_col_text {
	width: 100%;
	padding: 50px 60px 30px 60px;
}

.two_col_text__container {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	gap: 60px;
}

.two_col_text__container__left {
	max-width: 400px;
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: 27px;
	margin: 0;
}

.two_col_text__container__right {
	max-width: 590px;
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: 27px;
	margin: 0;
	white-space: pre-line;
}

@media (max-width: 950px) {
	.two_col_text {
		padding: 50px 50px 30px 50px;
	}
	
	.two_col_text__container {
		flex-direction: column;
		align-items: center;
		gap: 20px;
	}
	
	.two_col_text__container__left {
		width: 100%;
		max-width: none;
	}
	
	.two_col_text__container__right {
		width: 100%;
		max-width: none;
	}
}

@media (max-width: 600px) {
	.two_col_text {
		padding: 40px 30px 0 30px;
	}
	
	.two_col_text__container {
		gap: 15px;
	}
	
	.two_col_text__container__left {
		font-size: 16px;
		line-height: 24.8px;
	}
	
	.two_col_text__container__right {
		font-size: 16px;
		line-height: 24.8px;
	}
}

.included_table {
	width: 100%;
	max-width: 1170px;
	padding: 15px 60px;
	text-align: left;
	margin: 0 auto;
}

.included_table p, .included_table h5 {
	margin: 0;
	padding: 0;
}

.included_table table {
	width: 100%;
	border-collapse: collapse;
	table-layout: fixed;
	border: 1px solid #4f2650;
}

.included_table table thead .table_title_row {
	background-color: #3e3e3e;
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	position: relative;
}

.included_table table thead .table_title_row .pink_border {
	background-color: #bd1e85;
	width: 10px;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
}

.included_table table thead .table_title_row h5 {
	font-size: 18px;
	font-style: normal;
	font-weight: 900;
	line-height: 23.25px;
	letter-spacing: -.3px;
	line-height: 26.1px;
	color: #fff;
	padding: 8px 30px;
}

.included_table table tbody tr .heading_list {
	padding: 2px 30px;
	background-color: #4f2650;
}

.included_table table tbody tr .heading_list p {
	font-size: 15px;
	font-style: normal;
	font-weight: 400;
	line-height: 23.25px;
	color: #fff;
	line-height: 22.5px;
}

.included_table table tbody tr .item_list {
	border: 1px solid #b8b6b0;
	position: relative;
}

.included_table table tbody tr .item_list p {
	font-size: 15px;
	font-style: normal;
	font-weight: 400;
	line-height: 23.25px;
	padding: 17px 82px 17px 30px;
	width: 100%;
	white-space: pre-line;
}

.included_table table tbody tr .item_list .icon_wrapper {
	padding: 18px 10px;
	background-color: rgba(189, 30, 133, .05);
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	width: 57px;
	z-index: 1;
}

.included_table table tbody tr .item_list .icon_wrapper .checkmark {
	width: 12px;
	height: 10px;
}

.included_table .button_top_border {
	width: 100%;
	max-width: 1050px;
	height: 1px;
	margin: 30px 0;
	background-color: #561ebd;
}

.included_table .buttons_wrapper {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 15px;
	padding-top: 20px;
	padding-bottom: 15px;
}

.included_table .buttons_wrapper a {
	width: 100%;
	max-width: 325px;
	padding: 6px;
	margin: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 50px;
	height: auto;
	line-height: normal;
}

@media (max-width: 950px) {
	.included_table {
		padding: 15px 50px;
	}
	
	.included_table .buttons_wrapper {
		flex-direction: column;
	}
}

@media (max-width: 600px) {
	.included_table {
		padding: 15px 30px;
	}
	
	.included_table table thead .table_title_row .pink_border {
		width: 5px;
	}
	
	.included_table table thead .table_title_row h5 {
		padding: 5px 18px;
		font-size: 15px;
		font-style: normal;
		font-weight: 900;
		line-height: 23.25px;
		letter-spacing: -.3px;
		line-height: 21.75px;
	}
	
	.included_table table tbody tr .heading_list {
		padding: 2px 18px;
	}
	
	.included_table table tbody tr .heading_list p {
		font-size: 13px;
		font-style: normal;
		font-weight: 400;
		line-height: 19.5px;
	}
	
	.included_table table tbody tr .item_list p {
		padding: 17px 94px 17px 18px;
		width: 100%;
		font-size: 13px;
		font-style: normal;
		font-weight: 400;
		line-height: 19.5px;
	}
	
	.included_table table tbody tr .item_list .icon_wrapper {
		width: 74px;
	}
	
	.included_table .button_top_border {
		margin: 20px 0;
	}
	
	.included_table .buttons_wrapper {
		gap: 15px;
		padding-top: 20px;
		padding-bottom: 25px;
	}
	
	.included_table .buttons_wrapper a {
		max-width: none;
	}
}

.section_split_oxara {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 50px 60px;
}

.section_split_oxara .top_heading {
	padding: 0 0 10px 0;
	color: #bd1e85;
	letter-spacing: -.76px;
	margin: 0;
	display: none;
}

.section_split_oxara .hidden_standard_heading {
	display: block;
}

.section_split_oxara .content_wrapper {
	display: flex;
	justify-content: center;
	width: 100%;
	margin: 0 auto;
	max-width: 1050px;
}

.section_split_oxara .content_wrapper .split {
	display: flex;
	flex: 1;
}

.section_split_oxara .content_wrapper .split .wrapper {
	display: flex;
	margin: 0;
	padding: 0;
}

.section_split_oxara .content_wrapper .split.split-left {
	justify-content: flex-end;
	width: 50%;
}

.section_split_oxara .content_wrapper .split.split-left.split-image-contained .wrapper {
	max-width: 525px;
}

.section_split_oxara .content_wrapper .split.split-left.split-image-contained .wrapper img {
	border-radius: 5px;
}

.section_split_oxara .content_wrapper .split.split-left.split-content .wrapper {
	flex-direction: column;
	max-width: 525px;
	padding: 0 63px 0 0;
	gap: 20px;
}

.section_split_oxara .content_wrapper .split.split-left.split-content .wrapper h3 {
	padding: 0 0 10px 0;
	color: #bd1e85;
	font-size: 38px;
	font-style: normal;
	font-weight: 900;
	line-height: 45.6px;
	letter-spacing: -.76px;
	margin: 0;
}

.section_split_oxara .content_wrapper .split.split-left.split-content .wrapper p {
	padding: 0;
	margin: 0;
	font-size: 15px;
	font-style: normal;
	font-weight: 400;
	line-height: 23.25px;
	color: #1d243c;
}

.section_split_oxara .content_wrapper .split.split-left.split-content .wrapper p a {
	padding: 0;
	color: #bd1e85;
	text-decoration: underline;
}

.section_split_oxara .content_wrapper .split.split-left.split-content .wrapper .buttons_wrapper {
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.section_split_oxara .content_wrapper .split.split-left.split-content .wrapper .buttons_wrapper a {
	width: 100%;
	height: auto;
	line-height: normal;
	padding: 10px;
	margin: 0;
	max-width: 325px;
	min-height: 60px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.section_split_oxara .content_wrapper .split.split-right {
	justify-content: flex-start;
	width: 50%;
}

.section_split_oxara .content_wrapper .split.split-right.split-image-contained .wrapper {
	max-width: 525px;
	height: 475px;
	width: 100%;
}

.section_split_oxara .content_wrapper .split.split-right.split-image-contained .wrapper img {
	object-fit: cover;
	object-position: center;
	border-radius: 5px;
	width: 100%;
	height: auto;
}

.section_split_oxara .content_wrapper .split.split-right.split-content .wrapper {
	flex-direction: column;
	max-width: 525px;
	padding-left: 50px;
	gap: 20px;
}

.section_split_oxara .content_wrapper .split.split-right.split-content .wrapper h3 {
	padding: 0 20px 10px 0;
	color: #bd1e85;
	font-size: 38px;
	font-style: normal;
	font-weight: 900;
	line-height: 45.6px;
	letter-spacing: -.76px;
	margin: 0;
}

.section_split_oxara .content_wrapper .split.split-right.split-content .wrapper p {
	padding: 0;
	margin: 0;
	font-size: 15px;
	font-style: normal;
	font-weight: 400;
	line-height: 23.25px;
	color: #1d243c;
}

.section_split_oxara .content_wrapper .split.split-right.split-content .wrapper .buttons_wrapper {
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.section_split_oxara .content_wrapper .split.split-right.split-content .wrapper .buttons_wrapper a {
	width: 100%;
	height: auto;
	line-height: normal;
	padding: 10px;
	margin: 0;
	max-width: 325px;
	min-height: 60px;
	display: flex;
	justify-content: center;
	align-items: center;
}

@media (max-width: 950px) {
	.section_split_oxara {
		padding: 30px 50px;
	}
	
	.section_split_oxara .content_wrapper {
		flex-direction: column;
		gap: 0;
	}
	
	.section_split_oxara .content_wrapper .split {
		justify-content: center;
	}
	
	.section_split_oxara .content_wrapper .split.split-left {
		justify-content: center;
		width: 100%;
	}
	
	.section_split_oxara .content_wrapper .split.split-left.split-image-contained .wrapper {
		padding: 0 0 40px 0;
		max-width: none;
		width: 100%;
	}
	
	.section_split_oxara .content_wrapper .split.split-left.split-image-contained .wrapper img {
		width: 100%;
	}
	
	.section_split_oxara .content_wrapper .split.split-left.split-content .wrapper {
		max-width: none;
		padding: 0;
	}
	
	.section_split_oxara .content_wrapper .split.split-left.split-content .wrapper h3 {
		padding: 0;
	}
	
	.section_split_oxara .content_wrapper .split.split-left.split-content .wrapper a {
		max-width: 375px;
	}
	
	.section_split_oxara .content_wrapper .split.split-right {
		justify-content: center;
		width: 100%;
	}
	
	.section_split_oxara .content_wrapper .split.split-right.split-image-contained {
		order: -1;
	}
	
	.section_split_oxara .content_wrapper .split.split-right.split-image-contained .wrapper {
		padding: 0 0 40px 0;
		max-width: none;
		height: auto;
	}
	
	.section_split_oxara .content_wrapper .split.split-right.split-image-contained .wrapper img {
		object-fit: cover;
		object-position: 55% 0%;
	}
	
	.section_split_oxara .content_wrapper .split.split-right.split-content .wrapper {
		max-width: none;
		padding-left: 0;
	}
	
	.section_split_oxara .content_wrapper .split.split-right.split-content .wrapper h3 {
		padding: 0;
	}
	
	.section_split_oxara .content_wrapper .split.split-right.split-content .wrapper a {
		max-width: 375px;
	}
}

@media (max-width: 600px) {
	.section_split_oxara {
		padding: 20px 30px;
		align-items: flex-start;
	}
	
	.section_split_oxara .top_heading {
		font-size: 25px;
		font-style: normal;
		font-weight: 900;
		line-height: 32.5px;
		padding: 0;
		margin-bottom: 20px;
		display: block;
		order: -1;
	}
	
	.section_split_oxara .hidden_standard_heading {
		display: none;
	}
	
	.section_split_oxara .content_wrapper .split.split-left.split-image-contained .wrapper {
		padding: 0 0 20px 0;
	}
	
	.section_split_oxara .content_wrapper .split.split-left.split-content .wrapper {
		padding: 0;
		gap: 20px;
	}
	
	.section_split_oxara .content_wrapper .split.split-left.split-content .wrapper h3 {
		display: none;
		font-size: 25px;
		font-style: normal;
		font-weight: 900;
		line-height: 32.5px;
	}
	
	.section_split_oxara .content_wrapper .split.split-left.split-content .wrapper .buttons_wrapper a {
		max-width: none;
		margin-top: 20px;
	}
	
	.section_split_oxara .content_wrapper .split.split-right.split-image-contained .wrapper {
		padding: 0 0 20px 0;
	}
	
	.section_split_oxara .content_wrapper .split.split-right.split-image-contained .wrapper img {
		object-position: 60% 0%;
	}
	
	.section_split_oxara .content_wrapper .split.split-right.split-content .wrapper {
		gap: 20px;
	}
	
	.section_split_oxara .content_wrapper .split.split-right.split-content .wrapper h3 {
		font-size: 25px;
		font-style: normal;
		font-weight: 900;
		line-height: 32.5px;
	}
	
	.section_split_oxara .content_wrapper .split.split-right.split-content .wrapper .buttons_wrapper a {
		max-width: none;
		min-height: 50px;
	}
}

.Pricing__table {
	margin: 0;
	padding: 0;
	width: 100%;
}

.Pricing__table caption {
	font-size: 1.5em;
	margin: .5em 0 .75em;
}

.Pricing__table tr {
	border: 1px solid #ddd;
	padding: .35em;
}

.Pricing__table tr:nth-child(odd) {
	background: #f2f2f2;
}

.Pricing__table th, .Pricing__table td {
	padding: .625em;
	text-align: center;
}

.Pricing__table th {
	font-size: .85em;
	background-color: rgba(189, 30, 133, .2);
}

@media screen and (max-width: 600px) {
	.Pricing__table {
		border: 0;
	}
	
	.Pricing__table caption {
		font-size: 1.3em;
	}
	
	.Pricing__table thead {
		border: none;
		clip: rect(0 0 0 0);
		height: 1px;
		margin: -1px;
		overflow: hidden;
		padding: 0;
		position: absolute;
		width: 1px;
	}
	
	.Pricing__table tr {
		display: block;
		margin-bottom: .625em;
	}
	
	.Pricing__table tr:nth-child(odd) {
		background: #f2f2f2;
	}
	
	.Pricing__table td {
		border-bottom: 1px solid #ddd;
		display: block;
		font-size: .8em;
		text-align: right;
	}
	
	.Pricing__table td::before {
		content: attr(data-label);
		float: left;
		font-weight: bold;
		color: #000;
	}
	
	.Pricing__table td:last-child {
		border-bottom: 0;
	}
}
