/*
 * Custom Fonts
 */

/* Acta Pro Book */
@font-face {
    font-family: "Acta Pro";
    src: url("../fonts/ActaProBook/font.woff2") format("woff2"),
         url("../fonts/ActaProBook/font.woff") format("woff");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* Acta Pro Italic */
@font-face {
    font-family: "Acta Pro";
    src: url("../fonts/ActaProBookItalic/font.woff2") format("woff2"),
         url("../fonts/ActaProBookItalic/font.woff") format("woff");
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

/* Axiforma */
@font-face {
    font-family: "Axiforma";
    src: url("../fonts/AxiformaRegular/font.woff2") format("woff2"),
         url("../fonts/AxiformaRegular/font.woff") format("woff");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}


/**
 * HTML / Body
 */
:root {
	--major-second-down: 0.875;
	--minor-second: 1.067;
	--major-second: 1.125;
	--minor-third: 1.2;
	--major-third: 1.250;
	--perfect-fourth: 1.333;
	--augmented-fourth: 1.414;
	--perfect-fifth: 1.5;
	--golden-ratio: 1.618;
}

html { 
	background-color: var(--wp--preset--color--def-100);
	font-family: "Acta Pro", serif !important;
}

.wp-site-blocks {
	overflow: hidden;
}


/**
 * Image Filters
 */
.img-filter-white img { filter: brightness(0) invert(1); }
.img-filter-black img { filter: brightness(0) invert(0); }


/**
 * Headings/Paragraph Base Styles
 */
h1, h2, h3, h4, h5, h6 {
	font-family: "Axiforma", sans-serif !important;
	font-weight: 300;
	font-style: normal;
}
h1, h2, h3, h4, h5, h6, p { text-wrap: pretty; }

/**
 * Paragraph Sizes - Better scaling formula
 */
p { 
	--p-base-font-size-desktop: 18px;
	--p-base-font-size-mobile: 14px;
	font-family: "Acta Pro", serif !important;
	font-size: clamp(
		var(--p-base-font-size-mobile), 
		calc(1rem + 0.25vw), 
		var(--p-base-font-size-desktop)
	) !important;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/* WordPress size classes for paragraphs */
p.has-sm-font-size { 
	font-size: clamp(
		calc(var(--p-base-font-size-mobile) * var(--major-second-down)), 
		calc((1rem + 0.25vw) * var(--major-second-down)), 
		calc(var(--p-base-font-size-desktop) * var(--major-second-down))
	) !important; 
}
p.has-md-font-size { 
	font-size: clamp(
		var(--p-base-font-size-mobile), 
		calc(1rem + 0.25vw), 
		var(--p-base-font-size-desktop)
	) !important; 
}
p.has-lg-font-size { 
	font-size: clamp(
		calc(var(--p-base-font-size-mobile) * var(--minor-third)), 
		calc((1rem + 0.25vw) * var(--minor-third)), 
		calc(var(--p-base-font-size-desktop) * var(--perfect-fourth))
	) !important; 
}
p.has-xl-font-size { 
	font-size: clamp(
		calc(var(--p-base-font-size-mobile) * var(--perfect-fourth)), 
		calc((1rem + 0.25vw) * var(--perfect-fourth)), 
		calc(var(--p-base-font-size-desktop) * var(--perfect-fifth))
	) !important; 
}

p a {
	text-decoration: none;
	border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
p.wp-block-site-title a {
	border: none;
}

/**
 * H1 - Largest heading
 */
h1 { 
	--h1-base-font-size-desktop: 88px;
	--h1-base-font-size-mobile: 48px;
	/* Better scaling: starts at 48px, grows more gradually to 88px */
	font-size: clamp(
		var(--h1-base-font-size-mobile), 
		calc(1.5rem + 5.5vw), 
		var(--h1-base-font-size-desktop)
	) !important;
}
h1.has-sm-font-size { 
	font-size: clamp(
		calc(var(--h1-base-font-size-mobile) * var(--major-second-down)), 
		calc((1.5rem + 5.5vw) * var(--major-second-down)), 
		calc(var(--h1-base-font-size-desktop) * var(--major-second-down))
	) !important; 
}
h1.has-md-font-size { 
	font-size: clamp(
		var(--h1-base-font-size-mobile), 
		calc(1.5rem + 5.5vw), 
		var(--h1-base-font-size-desktop)
	) !important; 
}
h1.has-lg-font-size { 
	font-size: clamp(
		calc(var(--h1-base-font-size-mobile) * var(--minor-second)), 
		calc((1.5rem + 5.5vw) * var(--minor-third)), 
		calc(var(--h1-base-font-size-desktop) * var(--perfect-fourth))
	) !important; 
}
h1.has-xl-font-size { 
	font-size: clamp(
		calc(var(--h1-base-font-size-mobile) * var(--perfect-fourth)), 
		calc((1.5rem + 5.5vw) * var(--perfect-fourth)), 
		calc(var(--h1-base-font-size-desktop) * var(--perfect-fifth))
	) !important; 
}

/**
 * H2
 */
h2 { 
	--h2-base-font-size-desktop: 64px;
	--h2-base-font-size-mobile: 32px;
	font-size: clamp(
		var(--h2-base-font-size-mobile), 
		calc(1.125rem + 4.25vw), 
		var(--h2-base-font-size-desktop)
	) !important;
}
h2.has-sm-font-size { 
	font-size: clamp(
		calc(var(--h2-base-font-size-mobile) * var(--major-second-down)), 
		calc((1.125rem + 4.25vw) * var(--major-second-down)), 
		calc(var(--h2-base-font-size-desktop) * var(--major-second-down))
	) !important; 
}
h2.has-md-font-size { 
	font-size: clamp(
		var(--h2-base-font-size-mobile), 
		calc(1.125rem + 4.25vw), 
		var(--h2-base-font-size-desktop)
	) !important; 
}
h2.has-lg-font-size { 
	font-size: clamp(
		calc(var(--h2-base-font-size-mobile) * var(--perfect-fourth)), 
		calc((1.125rem + 4.25vw) * var(--perfect-fourth)), 
		calc(var(--h2-base-font-size-desktop) * var(--perfect-fourth))
	) !important; 
}
h2.has-xl-font-size { 
	font-size: clamp(
		calc(var(--h2-base-font-size-mobile) * var(--perfect-fifth)), 
		calc((1.125rem + 4.25vw) * var(--perfect-fifth)), 
		calc(var(--h2-base-font-size-desktop) * var(--perfect-fifth))
	) !important; 
}

/**
 * H3
 */
h3 { 
	--h3-base-font-size-desktop: 48px;
	--h3-base-font-size-mobile: 28px;
	font-size: clamp(
		var(--h3-base-font-size-mobile), 
		calc(1rem + 3.25vw), 
		var(--h3-base-font-size-desktop)
	) !important;
}
h3.has-sm-font-size { 
	font-size: clamp(
		calc(var(--h3-base-font-size-mobile) * var(--major-second-down)), 
		calc((1rem + 3.25vw) * var(--major-second-down)), 
		calc(var(--h3-base-font-size-desktop) * var(--major-second-down))
	) !important; 
}
h3.has-md-font-size { 
	font-size: clamp(
		var(--h3-base-font-size-mobile), 
		calc(1rem + 3.25vw), 
		var(--h3-base-font-size-desktop)
	) !important; 
}
h3.has-lg-font-size { 
	font-size: clamp(
		calc(var(--h3-base-font-size-mobile) * var(--perfect-fourth)), 
		calc((1rem + 3.25vw) * var(--perfect-fourth)), 
		calc(var(--h3-base-font-size-desktop) * var(--perfect-fourth))
	) !important; 
}
h3.has-xl-font-size { 
	font-size: clamp(
		calc(var(--h3-base-font-size-mobile) * var(--perfect-fifth)), 
		calc((1rem + 3.25vw) * var(--perfect-fifth)), 
		calc(var(--h3-base-font-size-desktop) * var(--perfect-fifth))
	) !important; 
}

/**
 * H4
 */
h4 { 
	--h4-base-font-size-desktop: 36px;
	--h4-base-font-size-mobile: 24px;
	font-size: clamp(
		var(--h4-base-font-size-mobile), 
		calc(0.875rem + 2.25vw), 
		var(--h4-base-font-size-desktop)
	) !important;
}
h4.has-sm-font-size { 
	font-size: clamp(
		calc(var(--h4-base-font-size-mobile) * var(--major-second-down)), 
		calc((0.875rem + 2.25vw) * var(--major-second-down)), 
		calc(var(--h4-base-font-size-desktop) * var(--major-second-down))
	) !important; 
}
h4.has-md-font-size { 
	font-size: clamp(
		var(--h4-base-font-size-mobile), 
		calc(0.875rem + 2.25vw), 
		var(--h4-base-font-size-desktop)
	) !important; 
}
h4.has-lg-font-size { 
	font-size: clamp(
		calc(var(--h4-base-font-size-mobile) * var(--perfect-fourth)), 
		calc((0.875rem + 2.25vw) * var(--perfect-fourth)), 
		calc(var(--h4-base-font-size-desktop) * var(--perfect-fourth))
	) !important; 
}
h4.has-xl-font-size { 
	font-size: clamp(
		calc(var(--h4-base-font-size-mobile) * var(--perfect-fifth)), 
		calc((0.875rem + 2.25vw) * var(--perfect-fifth)), 
		calc(var(--h4-base-font-size-desktop) * var(--perfect-fifth))
	) !important; 
}

/**
 * H5
 */
h5 { 
	--h5-base-font-size-desktop: 26px;
	--h5-base-font-size-mobile: 20px;
	font-size: clamp(
		var(--h5-base-font-size-mobile), 
		calc(0.875rem + 1vw), 
		var(--h5-base-font-size-desktop)
	) !important;
}
h5.has-sm-font-size { 
	font-size: clamp(
		calc(var(--h5-base-font-size-mobile) * var(--major-second-down)), 
		calc((0.875rem + 1vw) * var(--major-second-down)), 
		calc(var(--h5-base-font-size-desktop) * var(--major-second-down))
	) !important; 
}
h5.has-md-font-size { 
	font-size: clamp(
		var(--h5-base-font-size-mobile), 
		calc(0.875rem + 1vw), 
		var(--h5-base-font-size-desktop)
	) !important; 
}
h5.has-lg-font-size { 
	font-size: clamp(
		calc(var(--h5-base-font-size-mobile) * var(--perfect-fourth)), 
		calc((0.875rem + 1vw) * var(--perfect-fourth)), 
		calc(var(--h5-base-font-size-desktop) * var(--perfect-fourth))
	) !important; 
}
h5.has-xl-font-size { 
	font-size: clamp(
		calc(var(--h5-base-font-size-mobile) * var(--perfect-fifth)), 
		calc((0.875rem + 1vw) * var(--perfect-fifth)), 
		calc(var(--h5-base-font-size-desktop) * var(--perfect-fifth))
	) !important; 
}

/**
 * H6
 */
h6 { 
	--h6-base-font-size-desktop: 20px;
	--h6-base-font-size-mobile: 18px;
	font-size: clamp(
		var(--h6-base-font-size-mobile), 
		calc(0.875rem + 0.5vw), 
		var(--h6-base-font-size-desktop)
	) !important;
}
h6.has-sm-font-size { 
	font-size: clamp(
		calc(var(--h6-base-font-size-mobile) * var(--major-second-down)), 
		calc((0.875rem + 0.5vw) * var(--major-second-down)), 
		calc(var(--h6-base-font-size-desktop) * var(--major-second-down))
	) !important; 
}
h6.has-md-font-size { 
	font-size: clamp(
		var(--h6-base-font-size-mobile), 
		calc(0.875rem + 0.5vw), 
		var(--h6-base-font-size-desktop)
	) !important; 
}
h6.has-lg-font-size { 
	font-size: clamp(
		calc(var(--h6-base-font-size-mobile) * var(--perfect-fourth)), 
		calc((0.875rem + 0.5vw) * var(--perfect-fourth)), 
		calc(var(--h6-base-font-size-desktop) * var(--perfect-fourth))
	) !important; 
}
h6.has-xl-font-size { 
	font-size: clamp(
		calc(var(--h6-base-font-size-mobile) * var(--perfect-fifth)), 
		calc((0.875rem + 0.5vw) * var(--perfect-fifth)), 
		calc(var(--h6-base-font-size-desktop) * var(--perfect-fifth))
	) !important; 
}

/**
 * List Sizes - Matching paragraph sizes
 */
ul.wp-block-list, ol.wp-block-list,
.wp-block-post ul, .wp-block-post ol { 
	--list-base-font-size-desktop: 18px;
	--list-base-font-size-mobile: 14px;
	font-size: clamp(
		var(--list-base-font-size-mobile), 
		calc(1rem + 0.25vw), 
		var(--list-base-font-size-desktop)
	) !important;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/* Custom star bullet for unordered lists */
ul.wp-block-list,
.wp-block-post ul {
	list-style: none !important;
	padding-left: 1.8em !important;
}

ul.wp-block-list li,
.wp-block-post li {
	position: relative;
	font-size: inherit !important;
	margin-bottom: var(--wp--preset--spacing--40, clamp(8px, calc(24px + ((1vw - 7.68px) * 1.5625)), 16px)) !important;
}

ul.wp-block-list li::before,
.wp-block-post ul li::before {
	content: "";
	position: absolute;
	left: -1.5em;
	top: 0.18em;
	width: 1em;
	height: 1em;
	background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M24 11.9914C19.2924 12.4191 16.5877 12.8125 14.9272 14.1126C12.9757 15.6351 12.5136 18.4234 12 24C11.4693 18.2181 10.99 15.4469 8.85021 13.9587C7.18973 12.7954 4.50214 12.4191 0 12.0086C4.69044 11.5809 7.41227 11.1875 9.05564 9.90449C11.0243 8.36493 11.4864 5.59373 12 0C12.4793 5.14897 12.9073 7.90306 14.4993 9.49394C16.0913 11.0848 18.8645 11.5296 24 11.9914Z' fill='%23FFB300'/%3E%3C/svg%3E");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}

/* Ordered list items - maintain numbering with spacing */
ol.wp-block-list li
.wp-block-post ol li {
	font-size: inherit !important;
	margin-bottom: var(--wp--preset--spacing--40, clamp(8px, calc(24px + ((1vw - 7.68px) * 1.5625)), 16px)) !important;
}

/* Remove margin from last item */
ul.wp-block-list li:last-child, ol.wp-block-list li:last-child,
.wp-block-post ul li:last-child, .wp-block-post ol li:last-child {
	margin-bottom: 0 !important;
}

/* WordPress size classes for lists */
ul.wp-block-list.has-sm-font-size, ol.wp-block-list.has-sm-font-size,
.wp-block-post ul.has-sm-font-size, .wp-block-post ol.has-sm-font-size { 
	font-size: clamp(
		calc(var(--list-base-font-size-mobile) * var(--major-second-down)), 
		calc((1rem + 0.25vw) * var(--major-second-down)), 
		calc(var(--list-base-font-size-desktop) * var(--major-second-down))
	) !important; 
}
ul.wp-block-list.has-md-font-size, ol.wp-block-list.has-md-font-size,
.wp-block-post ul.has-md-font-size, .wp-block-post ol.has-md-font-size { 
	font-size: clamp(
		var(--list-base-font-size-mobile), 
		calc(1rem + 0.25vw), 
		var(--list-base-font-size-desktop)
	) !important; 
}
ul.wp-block-list.has-lg-font-size, ol.wp-block-list.has-lg-font-size,
.wp-block-post ul.has-lg-font-size, .wp-block-post ol.has-lg-font-size { 
	font-size: clamp(
		calc(var(--list-base-font-size-mobile) * var(--minor-third)), 
		calc((1rem + 0.25vw) * var(--minor-third)), 
		calc(var(--list-base-font-size-desktop) * var(--perfect-fourth))
	) !important; 
}
ul.wp-block-list.has-xl-font-size, ol.wp-block-list.has-xl-font-size,
.wp-block-post ul.has-xl-font-size, .wp-block-post ol.has-xl-font-size { 
	font-size: clamp(
		calc(var(--list-base-font-size-mobile) * var(--perfect-fourth)), 
		calc((1rem + 0.25vw) * var(--perfect-fourth)), 
		calc(var(--list-base-font-size-desktop) * var(--perfect-fifth))
	) !important; 
}

/* Nested lists should maintain consistent sizing */
ul.wp-block-list ul, ul.wp-block-list ol, ol.wp-block-list ul, ol.wp-block-list ol,
.wp-block-post ul ul, .wp-block-post ol ol, .wp-block-post ol ul, .wp-block-post ol ol {
	font-size: 1em !important;
}
ul.wp-block-list > br, ol.wp-block-list > br,
.wp-block-post ul > br, .wp-block-post ol > br { display: none; }


/*
 * Site Logo
 */
@media only screen and (min-width: 1200px) {
	.wp-block-site-logo img {
		width: 200px;
	}
}
@media only screen and (max-width: 560px) {
	.wp-block-site-logo img {
		width: 120px;
	}
}


/*
 * Buttons
 */
.wp-block-button__link.wp-element-button {
	height: 40px;
	line-height: 100%;
	padding: 0 32px 0 20px !important;
	position: relative;
}
.wp-block-button__link.wp-element-button:after {
	background: url('data:image/svg+xml,%3Csvg%20width%3D%227%22%20height%3D%2213%22%20viewBox%3D%220%200%207%2013%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M0.5%200.5L6.5%206.5L0.5%2012.5%22%20stroke%3D%22white%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%3C%2Fsvg%3E') no-repeat center center;
	content: '';
	height: 24px;
	position: absolute;
	right: var(--wp--preset--spacing--20);
	top: 50%;
	transform: translateY(-50%);
	transition: all 0.25s ease-out;
	width: 24px;
}
.is-style-outline .wp-block-button__link.wp-element-button:after {
	background-image: url('data:image/svg+xml,%3Csvg%20width%3D%227%22%20height%3D%2213%22%20viewBox%3D%220%200%207%2013%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M0.5%200.5L6.5%206.5L0.5%2012.5%22%20stroke%3D%22black%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%3C%2Fsvg%3E');
}
.wp-block-button__link.wp-element-button.has-def-100-color:after {
	background-image: url('data:image/svg+xml,%3Csvg%20width%3D%227%22%20height%3D%2213%22%20viewBox%3D%220%200%207%2013%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M0.5%200.5L6.5%206.5L0.5%2012.5%22%20stroke%3D%22white%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%3C%2Fsvg%3E');
}
.wp-block-button__link.wp-element-button:hover:after {
	transform: translateX(-4px) translateY(-50%);
}
@media only screen and (max-width: 560px) {
	.wp-block-button__link.wp-element-button {
		padding: 0 28px 0 16px !important;
	}
}


/**
 * Label
 */
label {
	--label-base-font-size-desktop: 18px;
	--label-base-font-size-mobile: 16px;
	font-family: "Axiforma", sans-serif !important;
	font-weight: 400;
	font-style: normal;
	font-size: clamp(
		var(--label-base-font-size-mobile), 
		calc(0.875rem + 0.5vw), 
		var(--label-base-font-size-desktop)
	) !important;
	width: 100%;
}
.wpcf7-not-valid-tip {
	color: var(--wp--preset--color--pink-200);
	font-size: 14px;
	margin-top: var(--wp--preset--spacing--20);
}


/*
 * Form Fields
 */
input[type="text"],
input[type="email"],
textarea {
	--label-base-font-size-desktop: 18px;
	--label-base-font-size-mobile: 16px;
	border: 0;
	border-bottom: 1px solid var(--wp--preset--color--def-200);
	font-family: "Axiforma", sans-serif !important;
	font-weight: 400;
	font-style: normal;
	font-size: clamp(
		var(--label-base-font-size-mobile), 
		calc(0.875rem + 0.5vw), 
		var(--label-base-font-size-desktop)
	) !important;
	padding: var(--wp--preset--spacing--20) 0;
	transition: all 0.25s ease-out;
	width: 100%;
}
input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
	border-bottom: 1px solid var(--wp--preset--color--pink-200);
	outline: none;
}
textarea {
	height: 120px;
	resize: none;
}
input[type="submit"] {
	--label-base-font-size-desktop: 18px;
	--label-base-font-size-mobile: 16px;
	appearance: none;
	background: var(--wp--preset--color--def-100);
	border: 1px solid var(--wp--preset--color--def-200);
	border-radius: 999px;
	color: var(--wp--preset--color--def-500);
	cursor: pointer;
	font-family: "Axiforma", sans-serif !important;
	font-weight: 400;
	font-style: normal;
	font-size: clamp(
		var(--label-base-font-size-mobile), 
		calc(0.875rem + 0.5vw), 
		var(--label-base-font-size-desktop)
	) !important;
	padding: var(--wp--preset--spacing--30) var(--wp--preset--spacing--40);
	transition: all 0.25s ease-out;
}
input[type="submit"]:hover {
	transform: scale(0.95);
}
.wpcf7-response-output {
	background: var(--wp--preset--color--pink-100);
	border: 0 !important;
	border-radius: 16px;
	padding: var(--wp--preset--spacing--30) var(--wp--preset--spacing--40) !important;
}


/*
 * Menu
 */
.wp-block-navigation__responsive-dialog {
	padding: 0 var(--wp--preset--spacing--40);
}
.wp-block-navigation__responsive-container-close {
	right: var(--wp--preset--spacing--40);
}
.wp-block-navigation-item {
	position: relative;
}
.wp-block-navigation-item.current-menu-item:after {
	background: var(--wp--preset--color--pink-200);
	bottom: 0;
	content: '';
	height: 1px;
	left: 0;
	position: absolute;
	width: 100%;
}
.wp-block-navigation-item a {
	transition: all 0.25s ease-out;
}
.wp-block-navigation-item a:hover {
	color: var(--wp--preset--color--pink-200) !important;
}
@media only screen and (max-width: 960px) {
	body header .wp-block-navigation__responsive-container-open:not(.always-shown) {
		display: flex;
	}
	body header .wp-block-navigation__responsive-container:not(.hidden-by-default):not(.is-menu-open) {
		display: none;
	}
}


/*
 * Testimonial Slider
 */
.testimonial-slider {
	overflow: hidden;
}
@media only screen and (min-width: 1440px) {
	.testimonial-slider,
	.leaders-slider {
		-webkit-mask-image: linear-gradient(90deg, transparent 0%, black 15%, black 85%, transparent 100%);
		mask-image: linear-gradient(90deg, transparent 0%, black 15%, black 85%, transparent 100%);
	}
}
.testimonial-slider .splide__track,
.leaders-slider .splide__track {
	margin-left: auto;
	margin-right: auto;
	max-width: 900px;
	padding-left: var(--wp--preset--spacing--60) !important;
	padding-right: var(--wp--preset--spacing--60) !important;
	overflow: visible !important;
}
.leaders-slider .splide__track {
	max-width: 1088px;
}
body .splide__list {
	display: flex !important;
}
.leaders-slider .splide__list {
	gap: 0;
}
.testimonial-slider .splide__list li {
	padding: 0 var(--wp--preset--spacing--60) !important;
}
.testimonial-slider .splide__slide:not(.is-active) {
	opacity: 0.4;
}
body .splide__arrows {
    height: 100%;
    left: 50%;
	position: absolute;
    top: 0;
	transform: translateX(-50%);
	max-width: var(--wp--style--global--content-size);
	z-index: 99;
}
body .splide__arrow {
	background: var(--wp--preset--color--pink-100) url('data:image/svg+xml,%3Csvg%20width%3D%227%22%20height%3D%2213%22%20viewBox%3D%220%200%207%2013%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M0.5%200.5L6.5%206.5L0.5%2012.5%22%20stroke%3D%22black%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%3C%2Fsvg%3E') no-repeat center center;
	height: 56px;
	left: 0;
	opacity: 1;
	width: 56px;
}
body .splide__arrow.splide__arrow--prev {
	transform: translate(-490px, -50%) rotate(180deg);
}
body .splide__arrow.splide__arrow--next {
	left: auto;
	right: -50%;
	transform: translate(490px, -50%);
}
body .splide__arrow svg { display: none; }
body .leaders-slider .splide__arrow.splide__arrow--prev {
	transform: translate(-590px, -150%) rotate(180deg);
}
body .leaders-slider .splide__arrow.splide__arrow--next {
	transform: translate(590px, -150%);
}

@media only screen and (max-width: 1200px) {
	body .splide__arrow.splide__arrow--prev { transform: translate(calc(-50vw + var(--wp--preset--spacing--20)), -50%) rotate(180deg); }
	body .splide__arrow.splide__arrow--next { transform: translate(calc(50vw - var(--wp--preset--spacing--20)), -50%); }
	body .leaders-slider .splide__arrow.splide__arrow--prev { transform: translate(calc(-50vw + var(--wp--preset--spacing--20)), -150%) rotate(180deg); }
	body .leaders-slider .splide__arrow.splide__arrow--next { transform: translate(calc(50vw - var(--wp--preset--spacing--20)), -150%); }
}


/*
 * Lotus Leaders
 */
.lotus-linkedin {
	position: relative;
}
.lotus-linkedin .wp-block-acf-field-blocks-acf-button {
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 99;
}
.lotus-linkedin .wp-block-acf-field-blocks-acf-button a {
	background: transparent;
	height: 100%;
	left: 0;
	padding: 0;
	position: absolute;
	text-indent: -9999px;
	top: 0;
	width: 100%;
}
.lotus-linkedin .wp-block-acf-field-blocks-acf-button a:after {
	background: white url('/wp-content/uploads/2026/02/LI-In-Bug.png') no-repeat center center;
	background-size: 60%;
	border-radius: 0 8px 0 0;
	bottom: 0;
	content: '';
	height: 48px;
	left: 0;
	position: absolute;
	width: 48px;
}
.lotus-linkedin .wp-block-acf-field-blocks-acf-button a:not([href^="https://www.linkedin.com"]):after {
	background: white url('data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cg%20clip-path%3D%22url(%23clip0_4381_3355)%22%3E%3Cpath%20d%3D%22M15.7076%208.29279C15.895%208.48031%2016.0004%208.73462%2016.0004%208.99979C16.0004%209.26495%2015.895%209.51926%2015.7076%209.70679L9.70757%2015.7068C9.61532%2015.8023%209.50498%2015.8785%209.38297%2015.9309C9.26097%2015.9833%209.12975%2016.0109%208.99697%2016.012C8.86419%2016.0132%208.73251%2015.9879%208.60962%2015.9376C8.48672%2015.8873%208.37507%2015.8131%208.28117%2015.7192C8.18728%2015.6253%208.11303%2015.5136%208.06275%2015.3907C8.01247%2015.2678%207.98717%2015.1362%207.98832%2015.0034C7.98947%2014.8706%208.01706%2014.7394%208.06947%2014.6174C8.12188%2014.4954%208.19806%2014.385%208.29357%2014.2928L14.2936%208.29279C14.4811%208.10532%2014.7354%208%2015.0006%208C15.2657%208%2015.52%208.10532%2015.7076%208.29279Z%22%20fill%3D%22%23E90E8B%22%2F%3E%3Cpath%20d%3D%22M19.2424%204.75724C21.5854%207.10124%2021.5844%2010.9002%2019.1904%2013.2912L18.6564%2013.7552C18.5572%2013.8414%2018.4421%2013.9072%2018.3175%2013.9488C18.193%2013.9905%2018.0614%2014.0072%2017.9304%2013.998C17.6658%2013.9794%2017.4194%2013.8565%2017.2454%2013.6562C17.0714%2013.456%2016.9841%2013.1949%2017.0027%2012.9302C17.0212%2012.6656%2017.1441%2012.4192%2017.3444%2012.2452L17.8274%2011.8292C18.1988%2011.4578%2018.4935%2011.0168%2018.6945%2010.5315C18.8956%2010.0462%2018.999%209.52605%2018.999%209.00074C18.999%208.47544%2018.8956%207.95528%2018.6945%207.46996C18.4935%206.98464%2018.1988%206.54368%2017.8274%206.17224C16.2654%204.60924%2013.7324%204.60924%2012.2204%206.11824L11.7574%206.65424C11.6715%206.75365%2011.5669%206.83517%2011.4495%206.89415C11.3321%206.95313%2011.2042%206.98841%2011.0732%206.99797C10.9422%207.00753%2010.8106%206.9912%2010.6859%206.94989C10.5611%206.90859%2010.4458%206.84313%2010.3464%206.75724C10.247%206.67136%2010.1655%206.56673%2010.1065%206.44934C10.0475%206.33195%2010.0122%206.2041%2010.0027%206.07307C9.99309%205.94205%2010.0094%205.81043%2010.0507%205.68572C10.092%205.56101%2010.1575%205.44565%2010.2434%205.34624L10.7564%204.75624C11.3136%204.19905%2011.9751%203.75708%2012.7032%203.45557C13.4313%203.15407%2014.2116%202.99893%2014.9996%202.99902C15.7876%202.99912%2016.5679%203.15444%2017.2959%203.45611C18.0239%203.75779%2018.6853%204.19992%2019.2424%204.75724Z%22%20fill%3D%22%23E90E8B%22%2F%3E%3Cpath%20d%3D%22M6.75%2010.338C6.92536%2010.5368%207.01459%2010.7971%206.99809%2011.0617C6.98159%2011.3263%206.8607%2011.5735%206.662%2011.749L6.179%2012.174C5.80515%2012.5432%205.50832%2012.983%205.30573%2013.4679C5.10314%2013.9527%204.99882%2014.473%204.99882%2014.9985C4.99882%2015.5239%205.10314%2016.0442%205.30573%2016.529C5.50832%2017.0139%205.80515%2017.4537%206.179%2017.823C6.93318%2018.5692%207.9493%2018.9909%209.01026%2018.998C10.0712%2019.0051%2011.0929%2018.5971%2011.857%2017.861L12.197%2017.403C12.2754%2017.2975%2012.3738%2017.2085%2012.4866%2017.1411C12.5994%2017.0737%2012.7243%2017.0291%2012.8543%2017.01C12.9843%2016.9909%2013.1168%2016.9975%2013.2443%2017.0296C13.3717%2017.0617%2013.4915%2017.1186%2013.597%2017.197C13.7025%2017.2754%2013.7914%2017.3738%2013.8589%2017.4865C13.9263%2017.5993%2013.9708%2017.7243%2013.9899%2017.8543C14.0091%2017.9843%2014.0024%2018.1168%2013.9703%2018.2442C13.9383%2018.3716%2013.8814%2018.4915%2013.803%2018.597L13.406%2019.131L13.306%2019.245C12.1698%2020.3677%2010.6368%2020.9973%209.0395%2020.9973C7.44216%2020.9973%205.9092%2020.3677%204.773%2019.245C4.21117%2018.6896%203.76515%2018.0282%203.46081%2017.2992C3.15646%2016.5701%202.99983%2015.788%203%2014.998C3%2013.403%203.638%2011.874%204.814%2010.714L5.338%2010.251C5.53669%2010.0755%205.79693%209.98607%206.06151%2010.0024C6.32609%2010.0187%206.57437%2010.1394%206.75%2010.338Z%22%20fill%3D%22%23E90E8B%22%2F%3E%3C%2Fg%3E%3Cdefs%3E%3CclipPath%20id%3D%22clip0_4381_3355%22%3E%3Crect%20width%3D%2224%22%20height%3D%2224%22%20fill%3D%22white%22%2F%3E%3C%2FclipPath%3E%3C%2Fdefs%3E%3C%2Fsvg%3E') no-repeat center center;
}
.lotus-leaders-container {
	overflow: hidden;
}
.lotus-leaders-grid {
	display: flex !important;
	flex-wrap: wrap;
	justify-content: center;
}
.lotus-leaders-grid > * {
	display: flex;
	flex: 0 0 calc((100% - (2 * var(--wp--preset--spacing--60))) / 3);
	flex-direction: column;
	max-width: calc((100% - (2 * var(--wp--preset--spacing--60))) / 3);
}
@media (max-width: 900px) {
	.lotus-leaders-grid > * {
		flex: 0 0 calc((100% - var(--wp--preset--spacing--60)) / 2);
		max-width: calc((100% - var(--wp--preset--spacing--60)) / 2);
	}
}
@media (max-width: 600px) {
	.wp-block-post-template.lotus-leaders-grid > li {
		flex: 0 0 100%;
		max-width: 100%;
	}
}

/*
 * Grids/Petals
 */
.img-meet-kamini,
.img-about-kamini,
.grid-petals,
.media-kit,
.img-tridevi {
	position: relative;
}
.five-petals-container,
.subscribe-container,
.inquiries-container,
.media-kit {
	overflow: hidden;
}
.img-five-petals,
.img-inquiries-petal {
	left: 50%;
	position: absolute;
	top: 0;
	transform: translateX(-50%);
}
.img-subscribe-petal {
	bottom: 0;
	left: 50%;
	position: absolute;
	transform: translateX(-50%);
}
.grid-preorder {
	display: flex !important;
	flex-wrap: wrap;
	justify-content: center;
}
.grid-preorder > * {
	width: 32%;
}
.grid-preorder figure img {
	max-height: 100px;
	max-width: 310px;
	width: auto;
}
.grid-five-petals > * {
	overflow: hidden;
}
.img-tridevi img {
	transform: scale(1.3)
}

@media only screen and (min-width: 782px) {
	.img-meet-kamini:before {
		background: url('data:image/svg+xml,<svg width="279" height="279" viewBox="0 0 279 279" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0.5 0.5H139.5V0.5C139.5 77.2676 77.2676 139.5 0.5 139.5V139.5V0.5Z" stroke="%23EE75AC"/><path d="M139.5 0.5V0.5C216.268 0.5 278.5 62.7324 278.5 139.5V139.5V139.5C201.732 139.5 139.5 77.2676 139.5 0.5V0.5Z" fill="%23CC198A"/><path d="M139.5 278.5C139.5 201.732 201.732 139.5 278.5 139.5V139.5V278.5H139.5V278.5Z" stroke="%23E1BD1C"/></svg>') no-repeat center center;
		background-size: cover;
		content: '';
		height: 50%;
		position: absolute;
		right: -50%;
		top: -50%;
		transform: translate(-50%, 50%);
		width: 50%;
	}
	.img-meet-kamini:after,
	.img-about-kamini:after {
		background: url('data:image/svg+xml,<svg width="279" height="279" viewBox="0 0 279 279" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M140.003 0.692871C216.095 0.963371 277.725 62.5939 277.996 138.686C201.904 138.415 140.273 76.7851 140.003 0.692871Z" stroke="%23EE75AC"/><path d="M0.5 139.5C0.5 62.7324 62.7324 0.5 139.5 0.5V0.5V0.5C139.5 77.2676 77.2676 139.5 0.5 139.5V139.5V139.5Z" stroke="%2356833D"/><path d="M139.5 139.5H278.5V139.5C278.5 216.268 216.268 278.5 139.5 278.5V278.5V139.5Z" fill="%23E1BD1C"/></svg>') no-repeat center center;
		background-size: cover;
		bottom: -50%;
		content: '';
		height: 50%;
		left: -50%;
		position: absolute;
		transform: translate(50%, -50%);
		width: 50%;
	}
	.img-about-kamini:after {
		background-image: url('data:image/svg+xml,%3Csvg%20width%3D%22278%22%20height%3D%22279%22%20viewBox%3D%220%200%20278%20279%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M139.503%200.50293C215.595%200.773429%20277.225%2062.404%20277.496%20138.496C201.404%20138.225%20139.773%2076.5951%20139.503%200.50293Z%22%20stroke%3D%22%23EE75AC%22%2F%3E%3Cpath%20d%3D%22M0%20139.31C0%2062.5425%2062.2324%200.310059%20139%200.310059V0.310059V0.310059C139%2077.0776%2076.7676%20139.31%200%20139.31V139.31V139.31Z%22%20fill%3D%22%23FFE70E%22%2F%3E%3Cpath%20d%3D%22M139%20139.31H278V139.31C278%20216.078%20215.768%20278.31%20139%20278.31V278.31V139.31Z%22%20fill%3D%22%23EE75AC%22%2F%3E%3C%2Fsvg%3E');
	}
	.grid-petals:before {
		background: url('data:image/svg+xml,%3Csvg%20width%3D%22140%22%20height%3D%22140%22%20viewBox%3D%220%200%20140%20140%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M69.9033%200.25293C69.7673%2038.5729%2038.73%2069.6095%200.410153%2069.7461C0.546719%2031.4263%2031.5834%200.388965%2069.9033%200.25293Z%22%20stroke%3D%22%23EE75AC%22%20stroke-width%3D%220.503597%22%2F%3E%3Cpath%20d%3D%22M70%20-3.0598e-06C108.66%20-1.36992e-06%20140%2031.3401%20140%2070V70V70C101.34%2070%2070%2038.6599%2070%20-3.0598e-06V-3.0598e-06V-3.0598e-06Z%22%20fill%3D%22%23FFE70E%22%2F%3E%3Cpath%20d%3D%22M70%2070L70%20140V140C31.3401%20140%20-1.68988e-06%20108.66%200%2070V70L70%2070Z%22%20fill%3D%22%23EE75AC%22%2F%3E%3C%2Fsvg%3E') no-repeat center center;
		background-size: cover;
		content: '';
		height: 140px;
		left: 0;
		position: absolute;
		top: -70px;
		transform: translate(-50%, 0);
		width: 140px;
	}
	.grid-petals:after {
		background: url('data:image/svg+xml,%3Csvg%20width%3D%22140%22%20height%3D%22140%22%20viewBox%3D%220%200%20140%20140%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M70.0967%20139.747C70.2327%20101.427%20101.27%2070.3905%20139.59%2070.2539C139.453%20108.574%20108.417%20139.611%2070.0967%20139.747Z%22%20stroke%3D%22%23EE75AC%22%20stroke-width%3D%220.503597%22%2F%3E%3Cpath%20d%3D%22M70%20140C31.3401%20140%20-1.36992e-06%20108.66%20-3.0598e-06%2070V70V70C38.6599%2070%2070%20101.34%2070%20140V140V140Z%22%20fill%3D%22%23E90E8B%22%2F%3E%3Cpath%20d%3D%22M70%2070L70%200V0C108.66%20-1.68988e-06%20140%2031.3401%20140%2070V70L70%2070Z%22%20fill%3D%22%23FFE70E%22%2F%3E%3C%2Fsvg%3E') no-repeat center center;
		background-size: cover;
		bottom: -70px;
		content: '';
		height: 140px;
		position: absolute;
		right: 0;
		transform: translate(50%, 0);
		width: 140px;
	}
	.media-kit:before,
	.media-kit:after {
			background: url('data:image/svg+xml,%3Csvg%20width%3D%22534%22%20height%3D%22458%22%20viewBox%3D%220%200%20534%20458%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M530.262%20235.383C507.217%20226.286%20483.77%20221.232%20460.542%20220.352C453.882%20220.109%20447.241%20220.202%20440.763%20220.633C446.693%20209.327%20451.109%20196.786%20453.901%20183.271C461.728%20145.292%20455.835%20105.029%20450.726%2078.0367C450.27%2075.6782%20448.518%2073.8438%20446.255%2073.3571C443.975%2072.8517%20441.621%2073.7876%20440.271%2075.7718C431.111%2089.2303%20411.733%2095.164%20389.326%20102.052C378.488%20105.384%20367.284%20108.81%20355.716%20113.452C355.497%20112.797%20355.26%20112.141%20355.023%20111.505C349.02%2094.9393%20339.586%2078.8229%20326.175%2062.2384C314.789%2048.1623%20302.564%2036.1825%20291.762%2025.6067C282.584%2016.6219%20274.647%208.87249%20270.03%202.43338C268.954%200.917198%20267.202%200.0187183%20265.359%200C263.553%200%20261.819%200.879761%20260.725%202.35851C256.455%208.14247%20249.156%2015.4239%20240.69%2023.8659C219.342%2045.1673%20190.111%2074.3492%20175.988%20112.329C175.933%20112.497%20175.86%20112.666%20175.805%20112.834C164.438%20107.63%20152.377%20103.681%20140.681%2099.8436C119.989%2093.0675%20100.447%2086.6658%2086.3608%2074.3679C84.7734%2072.9828%2082.5656%2072.5897%2080.5949%2073.3197C78.6243%2074.0684%2077.2011%2075.8279%2076.8726%2077.9618C74.3546%2093.835%2073.1868%20109.615%2073.3875%20124.833C73.57%20139.283%2075.0115%20153.247%2077.6207%20166.368C81.8174%20187.389%2089.0613%20205.939%2098.6407%20220.333C91.999%20219.622%2085.0471%20219.323%2077.9127%20219.435C49.5028%20219.884%2021.239%20226.904%205.89363%20237.311C4.4704%20238.284%203.55807%20239.838%203.35736%20241.541L0%20243.469L3.63106%20244.255C4.45215%20246.595%206.64174%20248.224%209.01379%20248.224H9.36047C13.8491%20248.224%2019.2136%20251.05%2026.2385%20257.096C33.4094%20263.292%2041.5109%20272.277%2050.1415%20281.861C59.1005%20291.8%2069.2456%20303.05%2080.449%20313.513C93.4952%20325.68%20105.921%20334.871%20118.438%20341.572C134.057%20349.939%20149.603%20354.45%20165.952%20355.367C172.028%20355.704%20178.305%20355.517%20184.6%20354.787C183.706%20357.314%20183.049%20359.935%20182.63%20362.593C181.808%20367.647%20181.863%20373.056%20182.775%20378.372C174.656%20379.252%20166.299%20379.215%20157.905%20378.26C150.643%20377.436%20143.235%20376.22%20135.28%20374.891C116.522%20371.765%2097.1628%20368.564%2077.0186%20370.436C77.6755%20369.462%2078.3506%20368.489%2079.044%20367.534C83.7698%20361.002%2091.4334%20352.167%20101.049%20347.038C103.02%20345.99%20104.188%20343.931%20104.188%20341.74L109.37%20338.352H103.148C102.089%20336.761%20100.319%20335.788%2098.3853%20335.788H90.3203L84.0983%20344.548C77.7485%20350.051%2072.7672%20356.247%2069.7017%20360.478C64.0088%20368.339%2060.8887%20374.778%2060.542%20375.49C59.5749%20377.53%2059.8121%20379.926%2061.1624%20381.723C62.5126%20383.52%2064.7022%20384.381%2066.8918%20383.932C89.4992%20379.346%20111.869%20383.071%20133.528%20386.664C141.538%20387.993%20149.092%20389.248%20156.665%20390.109C166.664%20391.232%20176.59%20391.176%20186.224%20389.959C187.027%20391.849%20187.939%20393.703%20188.961%20395.499C194.909%20406%20204.124%20414.63%20215.619%20420.414C245.489%20435.482%20256.51%20448.641%20260.414%20455.155C261.455%20456.914%20263.352%20458%20265.487%20458C267.531%20457.963%20269.41%20456.802%20270.432%20454.968C271.362%20453.283%20274.318%20448.66%20281.945%20441.902C290.412%20434.396%20301.396%20427.152%20314.57%20420.395C327.781%20413.619%20337.871%20404.11%20343.765%20392.86C345.224%20390.071%20346.429%20387.17%20347.359%20384.231C356.008%20387.806%20365.533%20390.127%20375.696%20391.101C404.27%20393.871%20423.32%20389.659%20438.665%20386.29C448.828%20384.044%20456.857%20382.284%20463.644%20383.894C465.688%20384.381%20467.841%20383.688%20469.246%20382.078C470.651%20380.487%20471.107%20378.222%20470.45%20376.182C470.359%20375.92%20468.334%20369.762%20463.316%20361.769C460.98%20358.063%20457.276%20352.878%20452.131%20347.674H454.631L444.613%20335.751H435.216C433.319%20335.751%20431.53%20336.743%20430.454%20338.315H424.943C452.806%20323.808%20473.096%20301.833%20491.051%20282.385C504.59%20267.728%20517.38%20253.877%20531.029%20246.071C532.981%20244.948%20534.149%20242.739%20533.985%20240.456C533.82%20238.172%20532.379%20236.15%20530.281%20235.308L530.262%20235.383ZM122.58%20267.485C134.13%20264.34%20146.191%20262.637%20158.453%20262.393C172.594%20291.781%20195.274%20311.473%20227.662%20322.423C219.269%20324.688%20211.915%20327.926%20205.711%20332.082L204.087%20333.167L202.938%20332.943C188.797%20330.191%20176.882%20325.156%20166.481%20317.538C153.873%20308.272%20145.699%20296.742%20138.491%20286.559C133.108%20278.94%20128.328%20272.202%20122.58%20267.466V267.485ZM206.532%20340.505C206.131%20340.636%20205.73%20340.767%20205.328%20340.879L205.876%20340.411L206.532%20340.505ZM324.46%20170.618C323.11%20165.657%20321.54%20160.716%20319.825%20155.849C326.868%20145.292%20336.594%20136.419%20348.089%20130.055C349.75%20137.467%20350.68%20145.03%20350.863%20152.592C341.466%20157.852%20332.598%20163.898%20324.478%20170.636L324.46%20170.618ZM319.406%20234.372C313.512%20224.62%20309.698%20214.213%20308.312%20203.974C311.213%20200.267%20314.296%20196.673%20317.544%20193.211C318.183%20197.085%20318.694%20200.96%20319.059%20204.778C320.044%20214.737%20320.172%20224.676%20319.406%20234.372ZM317.307%20180.351C313.11%20184.357%20309.042%20188.681%20305.191%20193.248C305.319%20188.344%20305.958%20183.458%20307.089%20178.685C308.33%20173.444%20310.209%20168.278%20312.673%20163.28C314.534%20168.914%20316.139%20174.548%20317.435%20180.07L317.471%20180.201L317.325%20180.351H317.307ZM300.137%20318.137C311.87%20302.32%20320.427%20284.893%20325.591%20266.268C326.887%20261.626%20327.981%20256.834%20328.857%20252.024C337.798%20238.64%20345.042%20225.331%20350.406%20212.453C355.643%20199.893%20359.256%20187.352%20361.135%20175.222C361.938%20170.075%20362.431%20164.871%20362.632%20159.761C374.273%20153.865%20386.991%20149.073%20400.511%20145.479C399.8%20154.108%20400.165%20163.823%20400.548%20174.043C401.186%20191.32%20401.916%20210.862%20397.829%20228.981L397.464%20229.094C378.105%20235.57%20360.916%20245.285%20346.374%20257.957C331.649%20270.798%20320.336%20286.091%20312.782%20303.368C311.87%20305.446%20312.198%20307.916%20313.64%20309.639C315.063%20311.379%20317.362%20312.128%20319.533%20311.585C341.976%20305.689%20360.497%20297.172%20374.565%20286.241C379.674%20282.272%20384.29%20277.948%20388.304%20273.344C391.534%20271.528%20394.727%20269.581%20397.774%20267.56C399.636%20266.736%20401.533%20266.025%20403.413%20265.463C412.572%20262.749%20421.623%20263.18%20430.381%20266.736C423.064%20271.977%20415.674%20278.753%20407.244%20286.503C387.1%20304.996%20364.274%20325.942%20333.236%20333.224C331.886%20331.988%20330.463%20330.809%20329.003%20329.723C321.066%20323.827%20311.14%20319.859%20300.174%20318.137H300.137ZM352.122%20173.744C350.352%20185.124%20346.958%20196.917%20342.013%20208.765C338.4%20217.451%20333.839%20226.398%20328.456%20235.439C329.295%20225.05%20329.186%20214.456%20328.127%20203.843C327.434%20196.861%20326.339%20189.766%20324.861%20182.784L324.807%20182.541L324.879%20182.485C333.437%20174.736%20343.017%20167.81%20353.362%20161.857C353.143%20165.863%20352.724%20169.85%20352.122%20173.725V173.744ZM213.74%20171.123L213.831%20170.786C214.543%20168.296%20215.327%20165.788%20216.185%20163.261C218.703%20169.12%20220.619%20175.428%20221.933%20182.354C219.542%20178.61%20216.988%20175.073%20214.305%20171.797L213.74%20171.104V171.123ZM206.405%20173.612C200.949%20194.633%20199.325%20215.598%20201.606%20234.784C196.369%20226.379%20191.935%20218.012%20188.395%20209.832C183.359%20198.227%20179.929%20186.603%20178.196%20175.278C176.973%20167.323%20176.572%20159.274%20176.991%20151.319C178.998%20152.236%20180.896%20153.191%20182.648%20154.145C191.351%20158.9%20199.179%20165.058%20205.93%20172.471L206.532%20173.126L206.405%20173.65V173.612ZM428.483%20223.59L426.732%20226.323C426.33%20226.941%20425.911%20227.559%20425.491%20228.158C418.721%20237.91%20410.273%20246.708%20400.384%20254.326L394.472%20258.874L394.326%20258.931C394.143%20259.005%20393.961%20259.08%20393.651%20259.23L393.14%20259.511C389.965%20261.626%20386.644%20263.648%20383.268%20265.519L382.557%20265.913L382.009%20266.53C378.269%20270.892%20373.926%20275.01%20369.073%20278.772C357.45%20287.794%20342.396%20295.113%20324.296%20300.541C331.156%20287.233%20340.553%20275.328%20352.304%20265.07C365.934%20253.184%20382.082%20244.068%20400.311%20237.966C401.205%20237.667%20402.117%20237.367%20403.011%20237.086L405.456%20236.319L406.095%20233.773C411.186%20213.632%20410.383%20192.387%20409.689%20173.594C409.215%20161.09%20408.777%20149.279%20410.383%20140.107L411.587%20133.143L404.872%20134.716C388.815%20138.459%20373.707%20143.832%20359.913%20150.683C359.584%20141.511%20358.234%20132.395%20355.88%20123.429C368.179%20118.281%20380.239%20114.575%20391.935%20110.981C412.992%20104.523%20431.384%2098.8889%20443.062%2086.8343C447.496%20111.861%20451.948%20147.482%20444.978%20181.306C441.749%20196.992%20436.202%20211.199%20428.502%20223.553L428.483%20223.59ZM314.187%20147.931C302.965%20120.321%20285.923%2095.6506%20268.151%2081.4996L265.305%2079.2347L262.495%2081.5557C242.989%2097.7097%20226.275%20121.051%20215.2%20147.594C207.627%20136.232%20197.136%20127.004%20183.195%20119.404C183.615%20118.169%20184.053%20116.933%20184.509%20115.698C197.902%2079.6652%20226.312%2051.3069%20247.076%2030.5857C254.32%2023.3605%20260.67%2017.0337%20265.305%2011.4556C270.377%2017.6888%20277.438%2024.5959%20285.503%2032.4763C296.086%2042.8275%20308.093%2054.5826%20319.132%2068.247C331.868%2084.0078%20340.809%2099.2259%20346.447%20114.799C347.013%20116.372%20347.56%20117.963%20348.071%20119.573C334.459%20126.236%20322.818%20135.989%20314.169%20147.95L314.187%20147.931ZM209.269%20155.343L209.087%20155.849C208.503%20157.477%20207.937%20159.106%20207.39%20160.734C201.223%20154.894%20194.344%20149.896%20186.936%20145.853C184.764%20144.674%20182.52%20143.551%20180.221%20142.503C180.787%20138.254%20181.608%20133.986%20182.648%20129.774C194.472%20136.812%20202.993%20144.992%20209.269%20155.362V155.343ZM169.182%20138.197C165.222%20136.906%20161.117%20135.783%20156.938%20134.884C146.976%20132.732%20136.046%20131.646%20124.423%20131.646H123.912C121.668%20131.646%20119.606%20133.012%20118.675%20135.071C117.727%20137.168%20118.037%20139.657%20119.478%20141.417C129.368%20153.546%20133.09%20173.575%20137.378%20196.767C139.677%20209.177%20142.25%20223.048%20146.155%20236.731C138.966%20231.227%20129.842%20226.978%20118.913%20224.021C117.836%20223.721%20116.723%20223.441%20115.61%20223.179C114.844%20222.336%20114.096%20221.457%20113.347%20220.558C90.521%20192.761%2080.5037%20142.802%2086.9447%2089.6608C101.451%2099.4879%20118.84%20105.178%20137.214%20111.187C148.965%20115.043%20161.099%20119.011%20172.156%20124.196C170.897%20128.838%20169.893%20133.518%20169.182%20138.16V138.197ZM109.735%20234.11C121.066%20245.566%20134.13%20251.687%20147.614%20251.818C148.764%20251.818%20149.841%20251.481%20150.771%20250.882C151.081%20251.705%20151.391%20252.529%20151.702%20253.334C138.345%20254.139%20125.299%20256.61%20112.855%20260.69C110.574%20261.439%20108.968%20263.573%20108.822%20265.987C108.676%20268.458%20109.99%20270.723%20112.18%20271.771C119.004%20275.01%20124.624%20282.927%20131.12%20292.118C138.728%20302.881%20147.341%20315.067%20161.172%20325.212C170.569%20332.119%20180.987%20337.061%20192.939%20340.28C192.537%20340.748%20192.154%20341.235%20191.771%20341.722C130.499%20353.533%2088.9701%20307.448%2058.6261%20273.774C45.4704%20259.174%2034.8144%20247.344%2024.3591%20241.073C38.7921%20235.271%2058.5349%20231.695%2078.0952%20231.377C89.5357%20231.19%20100.173%20232.126%20109.735%20234.11ZM194.088%20364.577C194.782%20360.215%20196.278%20356.135%20198.504%20352.429C206.751%20350.519%20215.2%20347.712%20223.629%20344.062C226.147%20342.976%20227.571%20340.299%20227.078%20337.548C226.768%20335.694%20225.655%20334.16%20224.122%20333.317C229.687%20331.333%20235.928%20329.873%20242.734%20328.975C245.507%20328.6%20247.624%20326.26%20247.788%20323.378C247.934%20320.514%20246.054%20317.949%20243.336%20317.276C209.288%20308.89%20185.348%20291.837%20170.258%20265.201C176.882%20265.613%20183.432%20266.474%20189.764%20267.784C212.554%20272.483%20230.965%20282.329%20241.621%20295.506C252.787%20309.339%20253.955%20325.587%20245.033%20342.508C239.121%20353.701%20227.826%20363.529%20213.211%20370.192C207.226%20372.925%20200.84%20375.059%20194.198%20376.519C193.486%20372.513%20193.45%20368.489%20194.088%20364.539V364.577ZM217.918%20381.105C234.869%20373.374%20248.116%20361.694%20255.232%20348.198C261.017%20337.248%20263.407%20326.335%20262.367%20315.741C261.382%20305.764%20257.422%20296.405%20250.561%20287.925C244.339%20280.213%20235.964%20273.512%20225.673%20267.99C215.71%20262.656%20204.416%20258.65%20192.063%20256.104C183.067%20254.251%20173.725%20253.222%20164.255%20253.053C156.099%20234.035%20152.231%20213.089%20148.782%20194.558C146.574%20182.616%20144.476%20171.329%20141.502%20161.109C139.549%20154.407%20137.378%20148.736%20134.897%20143.888C146.994%20144.655%20158.07%20146.789%20167.886%20150.252C167.394%20159.012%20167.832%20167.885%20169.182%20176.701C171.043%20188.83%20174.692%20201.259%20180.057%20213.614C185.731%20226.698%20193.468%20240.081%20203.066%20253.427C204.708%20255.692%20207.718%20256.46%20210.218%20255.243C212.718%20254.026%20214.032%20251.144%20213.338%20248.392C208.613%20229.431%20208.521%20207.792%20213.01%20185.536C216.313%20190.459%20219.323%20195.869%20222.006%20201.653C223.192%20204.198%20225.983%20205.565%20228.684%20204.853C231.366%20204.142%20233.209%20201.578%20233.045%20198.732C232.096%20182.111%20228.775%20168.109%20222.9%20155.961C222.662%20155.493%20222.443%20155.006%20222.206%20154.538C232.114%20129.419%20247.386%20107.031%20265.359%2091.2331C281.544%20105.291%20296.981%20128.763%20306.925%20154.482C302.947%20161.483%20300.009%20168.877%20298.185%20176.476C296.305%20184.376%20295.63%20192.462%20296.196%20200.529C293.331%20204.423%20290.631%20208.466%20288.131%20212.565C282.183%20222.355%20277.183%20232.856%20273.297%20243.75C269.574%20254.157%20266.837%20264.995%20265.159%20275.964C261.947%20297.004%20262.677%20318.305%20267.275%20337.604C267.768%20339.681%20269.319%20341.347%20271.326%20341.928C283.551%20345.522%20295.539%20347.468%20306.98%20347.749C308.75%20351.455%20312.946%20358.924%20320.902%20366.842C325.628%20371.54%20330.992%20375.677%20336.849%20379.102C333.583%20391.194%20323.383%20402.594%20309.333%20409.8C284.226%20422.679%20271.308%20434.976%20265.323%20442.089C258.535%20433.966%20245.452%20422.267%20220.728%20409.782C210.674%20404.709%20202.682%20396.997%20198.03%20387.881C204.963%20386.253%20211.642%20383.969%20217.918%20381.105ZM309.771%20338.409C298.915%20338.409%20287.474%20336.743%20275.723%20333.448C271.819%20315.853%20271.289%20296.498%20274.209%20277.406C275.796%20267.054%20278.387%20256.815%20281.891%20246.97C285.576%20236.675%20290.284%20226.754%20295.904%20217.507C297.199%20215.373%20298.623%20213.183%20300.228%20210.843C303.057%20224.395%20309.479%20237.798%20318.949%20249.89L319.752%20250.9C318.931%20255.299%20317.946%20259.604%20316.815%20263.704C311.249%20283.77%20301.487%20302.338%20287.839%20318.904L281.872%20326.129L291.105%20326.597C303.805%20327.234%20315.045%20330.94%20323.639%20337.304C325.427%20338.633%20327.106%20340.093%20328.657%20341.647L330.426%20343.556C331.941%20345.278%20333.309%20347.113%20334.514%20349.041L335.225%20350.201L335.919%20351.493C337.579%20354.619%20338.802%20357.913%20339.55%20361.282C340.207%20364.24%20340.499%20367.272%20340.426%20370.342C335.554%20367.385%20331.138%20363.94%20327.27%20360.084C319.989%20352.84%20316.358%20346.046%20315.081%20343.332L316.815%20338.315L309.771%20338.371V338.409ZM344.531%20342.321C349.093%20340.842%20353.636%20339.082%20358.07%20337.042C381.17%20326.41%20399.143%20309.919%20414.999%20295.356C426.129%20285.136%20435.727%20276.32%20444.777%20271.678C446.639%20270.723%20447.861%20268.814%20447.971%20266.68C448.08%20264.546%20447.077%20262.506%20445.325%20261.345C437.442%20256.142%20429.14%20253.034%20420.656%20252.098C419.561%20251.986%20418.466%20251.893%20417.371%20251.855C423.192%20246.202%20428.41%20240.081%20432.917%20233.586L433.081%20233.343C459.539%20230.273%20487.839%20233.455%20515.173%20242.571C503.987%20251.125%20493.55%20262.412%20482.548%20274.317C452.623%20306.718%20415.583%20346.888%20344.531%20342.321ZM429.396%20341.684C429.359%20343.781%20430.417%20345.821%20432.224%20346.925C442.716%20353.346%20449.576%20362.069%20453.481%20368.246C454.156%20369.313%20454.795%20370.398%20455.397%20371.484C449.339%20371.821%20442.916%20373.225%20436.165%20374.703C421.641%20377.904%20403.559%20381.891%20376.736%20379.308C366.865%20378.354%20357.723%20375.995%20349.512%20372.289C349.749%20367.927%20349.403%20363.547%20348.454%20359.223C348.089%20357.614%20347.651%20356.023%20347.122%20354.45C375.66%20355.873%20400.858%20350.744%20424.104%20338.82C424.341%20338.708%20424.579%20338.577%20424.797%20338.465L429.377%20341.684H429.396Z%22%20fill%3D%22%23F3BE19%22%2F%3E%3C%2Fsvg%3E') no-repeat center center;
		background-size: contain;
		bottom: 0;
		content: '';
		height: 75%;
		left: 0;
		position: absolute;
		transform: translate(-50%, 25%);
		width: 75%;
	}
	.media-kit:after {
		bottom: auto;
		left: auto;
		right: 0;
		transform: translate(50%, -25%);
		top: 0;
	}
}
@media only screen and (max-width: 1200px) {
	.grid-preorder figure img {
		max-height: 80px;
		max-width: 240px;
	}
}
@media only screen and (max-width: 1024px) {
	.grid-five-petals {
		display: flex !important;
		flex-wrap: wrap;
		justify-content: center;
	}
	.grid-five-petals > * {
		flex: 0 0 calc(33% - var(--wp--preset--spacing--30));
	}
	.grid-preorder figure img {
		max-height: 60px;
		max-width: 200px;
	}
}
@media only screen and (max-width: 768px) {
	.grid-inquiries {
		display: flex !important;
		flex-wrap: wrap;
		justify-content: center;
	}
	.grid-inquiries > *,
	.grid-five-petals > * {
		flex: 0 0 45%;
	}
	.grid-preorder > * {
		width: 48%;
	}
}
@media only screen and (max-width: 560px) {
	.grid-preorder figure img {
		max-width: 130px;
	}
}