/* GENERAL */
:root {
    /* Main colors */
	--main-background-color: #fdf4f3;
	--main-button-color: #1b4621;

    /* General colors */
	--main-green-background: #1b4621;
	--main-orange-background: #C96D36;
	--main-blue-background: #1D1D84;
	--main-black-background: #000000;

	/* Font families */
	--main-heading-font-family: bookmania, sans-serif;
	--main-text-font-family: franklin-gothic-urw, sans-serif;

	/* Main Heading font-size */
	--main-heading-font-size: clamp(40px, 3.5vw, 45px);
	--main-heading-font-size-tablet: clamp(35px, 4.3vw, 40px);
	--main-heading-font-size-mobile: clamp(26px, 7.6vw, 40px);

	/* Main Sub-heading font-size */
	--main-subheading-font-size: clamp(28px, 1.99vw, 38px);
	--main-subheading-font-size-tablet: clamp(24px, 2.9vw, 28px);
	--main-subheading-font-size-mobile: clamp(24px, 6.1vw, 32px);

	/* Text font-size */
	--main-text-font-size: clamp(20px, 1.8vw, 24px);
	--main-text-font-size-tablet: clamp(18px, 2.1vw, 20px);
	--main-text-font-size-mobile: clamp(18px, 4vw, 22px);

	/* Section spacing */
	--main-section-first-margin-top: clamp(50px, 4.4vw, 85px);
	--main-section-margin-bottom: clamp(90px, 10vw, 240px);
	--main-section-margin-side: 6%;
	--st-anchor-scroll-offset: 45px;
}

[id] {
	scroll-margin-top: var(--st-anchor-scroll-offset);
}

.entry-content {
	overflow-x: hidden;
}

.no-scroll {
	overflow: hidden !important;
}

.ast-page-builder-template .entry-content[ast-blocks-layout] > * > * {
	max-width: unset;
}

.ast-single-post.ast-page-builder-template .site-main > article, .woocommerce.ast-page-builder-template .site-main {
	padding: unset;
}

.site-footer .ast-builder-footer-grid-columns.site-above-footer-inner-wrap.ast-builder-grid-row {
	max-width: unset;
}

p {
	letter-spacing: -0.5px;
}

p a {
	font-weight: inherit;
}

a {
	cursor: pointer;
	text-decoration: underline;
}

a:focus {
	outline: none;
}

.st-mobile-w-tablet {
    display: none;
}

.mobile {
	display: none;
}

@media (max-width: 1023px) {
    .st-desktop-wo-tablet {
        display: none;
    }

    .st-mobile-w-tablet {
        display: block;
    }
}

@media (max-width: 767px) {
	.desktop {
		display: none !important;
	}

	.mobile {
		display: block;
	}
}

.st-section {
    margin-left: var(--main-section-margin-side);
    margin-right: var(--main-section-margin-side);
}

.st-main__button {
	display: inline-block;
    font-family: var(--main-heading-font-family);
    font-weight: 600;
    background: var(--main-button-color);
    transition: all 0.15s ease-in-out;
    border-radius: 10px;
    border: 2px var(--main-button-color) solid;
    font-size: clamp(22px, 2.1vw, 30px);
    padding-top: clamp(11px, clamp(2%, calc(2% + (1920px - 100%) * (1.5 / 896)), 3%), 18px);
    padding-bottom: clamp(6px, 1.5%, 12px);
    min-width: 225px;
    text-decoration: none !important;
    color: white;
    text-align: center;
    line-height: 1;
    padding-left: 20px;
    padding-right: 20px;
}

.st-main__button:hover, .st-main__button:focus, .st-main__button:focus-visible {
    background: rgb(21 57 26);
    border-color: rgb(21 57 26);
    color: white;
}

.st-main__button--hollow {
    background: transparent;
    color: black;
    border: 2px black solid;
}

.st-main__button--hollow:hover, .st-main__button--hollow:focus, .st-main__button--hollow:focus-visible {
    background: black;
    border-color: black;
    color: white;
}

.st-main__button--long {
	min-width: min(400px, 100%);
}

.st-main__button--light {
	background-color: white !important;
	border-color: white !important;
	color: black !important;
}

@media (max-width: 1023px) {
    .st-main__button-container {
        gap: clamp(15px, 5.12vw, 30px);
    }

    .st-main__button {
        font-size: clamp(20px, 5.64vw, 24px);
    }
}

@media (max-width: 767px) {
	.st-main__button {
		width: 100%;
	}

    .st-main__button--hollow {
        order: 1;
    }
}

.general-margin-bottom {
	margin-bottom: var(--main-section-margin-bottom);
}

.general-text-container {
	width: 42%;
}

.general-text-container > h1, .general-text-container > h2, .general-text-container > h3 {
	line-height: 1.1;
	margin: 0;
	font-family: bookmania, sans-serif;
	padding: 0;
	font-size: clamp(40px, 3.5vw, 45px);
}


.general-text-container > div {
	height: 3px;
	background: black;
	margin-bottom: 20px;
	width: 82%;
}

.general-text-container > p {
	margin-bottom: 0;
	font-family: franklin-gothic-urw, sans-serif;
	color: black;
	line-height: 1.25;
	font-size: clamp(20px, 1.8vw, 24px);
}

@media (max-width: 1023px) {

	.general-text-container > h1, .general-text-container > h2 {
		font-size: clamp(35px, 4.3vw, 40px);
	}

	.general-text-container > p {
		font-size: clamp(18px, 2.1vw, 20px);
	}

}

@media (max-width: 767px) {

	.general-text-container {
		width: 77%;
		margin: 0 auto;
	}

	.general-text-container > h1, .general-text-container > h2 {
		font-size: clamp(30px, 7.6vw, 40px);
	}

	.general-text-container > div {
		width: 100%;
	}

	.general-text-container > p {
		font-size: clamp(18px, 4vw, 22px);
	}

}




/* GENERAL */
.plan .pricing-type .number {
	margin-bottom: 15px;
	line-height: 1;
}




/* HEADER / NAVBAR */
#ast-desktop-header {
	display: block !important;
}

#ast-mobile-header {
	display: none !important;
}

.ast-above-header-bar.ast-above-header {
	display: block;
}

#masthead .site-above-header-wrap.ast-container {
	padding: 0;
	max-width: 100%;
}

.ast-container .ast-builder-grid-row {
	display: block;
}

.ast-container .ast-builder-grid-row .site-header-above-section-right {
	display: none;
}

aside.header-widget-area {
	padding: 0;
	width: 100%;
}

aside.header-widget-area > section > p, aside.footer-widget-area > section > p {
	margin: 0px;
}

.site-footer-above-section-1.site-footer-section.site-footer-section-1 {
	margin-bottom: 0 !important;
}


/************************
***** HEADER SNIPPET ****
************************/

.header-menu-wrapper {
	background: var(--main-background-color);
}

.header-menu-container {
	background: black;
	display: flex;
	height: 74px;
	padding-left: 6%;
	padding-right: 6%;
	border-bottom-left-radius: 20px;
	border-bottom-right-radius: 20px;
	gap: 10px;
}

.header-menu-logo {
	height: 90%;
	margin: auto 0;
	padding: 20px 10px 20px 0;
	z-index: 1;
}

.header-menu-logo img {
	height: 100%;
}

.header-menu-item {
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	cursor: pointer;
	position: relative;
}

.header-menu-lang-switcher, #header-menu-lang-switch {
	margin-left: auto;
}

#header-menu-lang-switch span {
	text-decoration: underline;
}

:root {
  --header-title-font: 18px;
}

.header-menu-item-list-title {
	color: white;
	font-family: franklin-gothic-urw, sans-serif;
	line-height: 1.1;
	font-size: var(--header-title-font);
	display: flex;
	align-items: center;
	gap: 10px;
	white-space: nowrap;
}

.header-menu-item > *:first-child {
	padding: 0 10px;
}

.header-menu-item-list-title:after, .header-menu-mobile-item-list-title:after {
	content: "";
	width: 10px;
	height: 10px;
	border-bottom: 2px solid white;
	border-left: 2px solid white;
	border-bottom-left-radius: 2px;
	transform: rotate(-45deg);
	margin-bottom: 3px;
}

.header-menu-item-list {
	position: absolute;
	top: 100%;
	left: 0;
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	background: black;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
	min-width: 100%;
	opacity: 0;
	pointer-events: none;
	transform: translateY(-10px);
	transition: all 0.15s ease-in-out;
	max-height: 250px;
	overflow-y: auto;
}

.header-menu-item-list::-webkit-scrollbar-track
{
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0);
	background-color: transparent;
	border-radius: 10px;
}

.header-menu-item-list::-webkit-scrollbar
{
	width: 6px;
	background-color: transparent;
}

.header-menu-item-list::-webkit-scrollbar-thumb
{
	background-color: #C8CBCE;
	border-radius: 10px;
}

.header-menu-item:hover .header-menu-item-list {
	opacity: 1;
	pointer-events: inherit;
	transform: translateY(0);
}

.header-menu-item-list > a {
	white-space: nowrap;
	color: white !important;
	font-weight: 400;
	font-family: franklin-gothic-urw, sans-serif;
	line-height: 1.1;
	font-size: 17px;
	padding: 10px 15px;
	padding-right: 45px;
}

.header-menu-item-list > a:last-child {
	padding-bottom: 20px;
}

.header-menu-item-list > hr {
	margin: 5px 0;
	opacity: 0.5;
}

.header-menu-item-title {
	color: white !important;
	font-family: franklin-gothic-urw, sans-serif;
	line-height: 1.1;
	font-size: var(--header-title-font);
	font-weight: 400;
	text-decoration: none;
	white-space: nowrap;
}

.header-menu-hamburger-container {
	display: none;
	align-items: center;
	margin-left: auto;
	padding-left: 15px;
	z-index: 1;
}

.header-menu-hamburger-container .header-menu-hamburger {
	position: relative;
	display: inline-block;
	width: 26px;
	height: 19px;
	cursor: pointer;
	background: none;
	outline: none;
	border: none;
	padding: unset;
	line-height: unset;
	font-size: unset;
	transition: 0.35s all ease-in-out;
}

.header-menu-hamburger span {
	display: block;
	position: absolute;
	height: 2px;
	background: white;
	width: 100%;
	transition: 0.35s all ease-in-out;
}

.header-menu-hamburger span:first-child {
	top: 0;
}

.header-menu-hamburger span:nth-child(2) {
	top: calc(50% - 3px / 2);
}

.header-menu-hamburger span:last-child {
	width: 75%;
	right: 0;
	top: -webkit-calc(100% - 1px);
	top: calc(100% - 3px);
}

.cross .header-menu-hamburger span:first-child {
	transform: rotate(45deg);
	position: absolute;
	top: 8px;
	width: 100%;
}

.cross .header-menu-hamburger span:nth-child(2) {
	opacity: 0;
}

.cross .header-menu-hamburger span:last-child {
	transform: rotate(-45deg);
	position: absolute;
	top: 8px;
	width: 100%;
}

#header-menu-mobile {
	position: fixed;
	top: 0;
	left: -100%;
	width: 100%;
	bottom: 0;
	background: black;
	transition: 0.3s ease-in-out;
	color: white;
	padding-top: 50px;
	margin: 0;
	box-sizing: border-box;
	display: none;
}

.cross + #header-menu-mobile {
	left: 0;
}

#header-menu-mobile > div {
	height: 100%;
	overflow-y: auto;
	padding: 0px 6% 60px;
}

.header-menu-mobile-item--lang {
    padding-top: 5px;
    margin-bottom: 30px;
}

.header-menu-mobile-item-list-title {
	color: white;
	font-family: franklin-gothic-urw, sans-serif;
	line-height: 1.1;
	font-size: 20px;
	display: flex;
	align-items: center;
	gap: 10px;
	padding-bottom: 7px;
}

.header-menu-mobile-item-list-title--lang {
	font-size: 14px;
	padding-bottom: 0;
}

.header-menu-mobile-item-list-title--lang:after {
    margin-bottom: 5px;
    width: 8px;
    height: 8px;
}

.header-menu-mobile-item-list {
	padding: 3px 0 10px;
	display: none;
}

.header-menu-mobile-item-list a {
	display: block;
	position: relative;
	white-space: nowrap;
	color: white !important;
	font-weight: 400;
	font-family: franklin-gothic-urw, sans-serif;
	line-height: 1.1;
	font-size: 17px;
	padding: 10px 30px;
	padding-right: 45px;
}

.header-menu-mobile-item-list.header-menu-mobile-item-list--lang a {
    font-size: 14px;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 15px;
}

.header-menu-mobile-item-list hr {
	margin: 5px 50% 5px 30px;
	opacity: 0.5;
}

.header-menu-mobile-divider {
	padding-bottom: 20px;
}

.header-menu-mobile-divider hr {
	margin: 0;
	height: 1px;
	background: white;
}

#header-menu-mobile > div > a {
	color: white;
	font-family: franklin-gothic-urw, sans-serif;
	line-height: 1.1;
	font-size: 20px;
	display: flex;
	align-items: center;
	gap: 10px;
	padding-bottom: 7px;
	font-weight: 400;
	text-decoration: none;
}

@media (max-width: 1023px) {
	.header-menu-item > *:first-child {
		padding: 0 7.5px;
	}
}

@media (max-width: 767px) {

	.header-menu-container {
		height: 50px;
		border-bottom-left-radius: 0px;
		border-bottom-right-radius: 0px;
	}

	.header-menu-logo {
		padding: 15px 0;
		height: 100%;
	}

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

	.header-menu-hamburger-container {
		display: flex;
	}

	#header-menu-mobile {
		display: block;
	}
}




/* FOOTER */
.footer-container {
	background: black;
	padding: 85px 6% 120px;
	color: #fff;
}

.footer-company-logo-container {
	display: flex;
	align-items: center;
	gap: 30px;
	height: clamp(40px, 3.8vw, 46px);
}

.footer-company-logo-container > a {
	display: block;
	height: 100%;
}

.footer-company-logo-container > a > img {
	display: block;
	height: 100%;
	width: auto;
}

#footer-company-logo-linkedin {
	margin-left: auto;
}

.footer-divider {
	height: 2px;
	background: white;
	margin-top: clamp(15px, 1.3vw, 20px);
	margin-bottom: clamp(30px, 2.6vw, 50px);
}

.footer-main {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: start;
	gap: 45px clamp(40px, 5vw, 90px);
}

.footer-links {
	--footer-col-gap: 40px;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(max(170px, calc((100% - 3 * var(--footer-col-gap)) / 4)), 1fr));
	column-gap: var(--footer-col-gap);
	row-gap: 35px;
	min-width: 0;
}

.footer-link-list-container {
	display: flex;
	flex-direction: column;
	min-width: 0;
}

.footer-link-list-container > h6,
.footer-clients__title {
	color: white;
	font-family: bookmania, sans-serif;
	font-weight: 600;
	font-size: clamp(22px, 2.2vw, 24px);
	line-height: 1.1;
	margin: 0 0 clamp(18px, 1.6vw, 22px);
}

.footer-link-list-container > a {
	color: white;
	font-family: franklin-gothic-urw, sans-serif;
	font-weight: 300;
	font-size: clamp(17px, 1.6vw, 19px);
	line-height: 1.25;
	margin: 0 0 clamp(12px, 1vw, 15px);
	text-decoration: none;
	overflow-wrap: anywhere;
}

.footer-link-list-container > a:hover,
.footer-link-list-container > a:focus-visible {
	text-decoration: underline;
	text-underline-offset: 3px;
}

.footer-clients {
	width: clamp(240px, 24vw, 340px);
}

.footer-clients__logos {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	justify-items: center;
	gap: clamp(28px, 3vw, 45px) clamp(30px, 3.5vw, 55px);
}

.footer-clients__logos img {
	display: block;
	width: 100%;
	max-width: 150px;
	height: auto;
}

@media (max-width: 1023px) {
	.footer-company-logo-container {
		height: clamp(30px, 3.7vw, 40px);
	}

	.footer-divider {
		margin-top: 15px;
		margin-bottom: 30px;
	}

	.footer-links {
		--footer-col-gap: 30px;
	}

	.footer-link-list-container > a {
		font-size: clamp(15px, 1.8vw, 17px);
	}

	.footer-link-list-container > h6,
	.footer-clients__title {
		font-size: clamp(20px, 2.4vw, 24px);
		margin-bottom: 20px;
	}

	.footer-clients {
		width: clamp(200px, 26vw, 260px);
	}
}

@media (max-width: 767px) {
	.footer-container {
		padding: 60px 6% 90px;
	}

	.footer-company-logo-container {
		height: 30px;
		gap: 22px;
	}

	.footer-divider {
		margin-top: 15px;
		margin-bottom: 30px;
	}

	/* One column; the clients block goes to the bottom. */
	.footer-main {
		grid-template-columns: minmax(0, 1fr);
		gap: 40px;
	}

	.footer-links {
		row-gap: 30px;
	}

	.footer-link-list-container > a {
		font-size: clamp(15px, 4.5vw, 17px);
		margin-bottom: 14px;
	}

	.footer-link-list-container > h6,
	.footer-clients__title {
		font-size: clamp(20px, 6.5vw, 24px);
		margin-bottom: 15px;
	}

	.footer-clients {
		width: 100%;
		max-width: 420px;
	}

	.footer-clients__logos {
		justify-items: start;
		gap: 25px clamp(30px, 12vw, 60px);
	}

	.footer-clients__logos img {
		max-width: 35vw;
	}
}




/************************************************************
 * GLOBAL PAGE ITEMS — polaroid / prop / doodle (BEM)
 *
 * Replaces the item rules in st-global-styling.css. Legacy selectors are
 * kept as aliases so existing pages keep working; delete them once every
 * template uses the st-* names.
 *
 * Structure (every mode, with or without caption):
 *   .st-polaroid                     absolute, draggable, sets WIDTH
 *     .st-polaroid__shadow           blurred backdrop
 *     .st-polaroid__frame            clips (radius + overflow)  <- always present
 *       img.st-polaroid__img
 *       .st-polaroid__text
 *         .st-polaroid__name / .st-polaroid__desc
 *
 * Modes: (none) image already is a polaroid photo · --pol framed 1:1.215
 *        · --ins framed instax 1:1.59, ~0.7741x the width
 ************************************************************/

/* ---------- container ---------- */
.st-polaroid,
.polaroid-photo-container {
  position: absolute;
  width: 16.5vw;
  z-index: 98;
  cursor: move;
}
.st-polaroid--ins,
.polaroid-photo-container--ins {
  /* instax is narrower than a polaroid by design: 16.5 * 0.774121 */
  width: 12.773vw;
}

/* Clipping lives on the frame + shadow now, never on the container, so the
   drag shadow and the photo round identically in every mode. */
.st-polaroid__frame,
.st-polaroid__shadow {
  border-radius: 3px;
  overflow: hidden;
}
.st-polaroid__frame { position: relative; }

.st-polaroid__shadow,
.polaroid-photo-shadow {
  background: rgba(0, 0, 0, 0.15);
  position: absolute;
  width: 100%;
  height: 100%;
  filter: blur(3px);
  z-index: -1;
}

.st-polaroid img,
.st-polaroid > div,
.polaroid-photo-container img,
.polaroid-photo-container > div {
  transition: 0.35s all ease-in-out;
}

/* ---------- framed modes ---------- */
.st-polaroid__frame--pol,
.polaroid-photo__img-container--pol {
  aspect-ratio: 1 / 1.215;
  background: #fff;
  padding: 5.5%;
}
.st-polaroid__img--pol,
.polaroid-photo__img--pol {
  border-radius: 3px;
  aspect-ratio: 1;
  object-fit: cover;
  width: 100%;
  display: block;
}
.st-polaroid__frame--ins,
.polaroid-photo__img-container--ins {
  aspect-ratio: 1 / 1.59;
  background: #fff;
  padding: 7.5%;
}
.st-polaroid__img--ins,
.polaroid-photo__img--ins {
  border-radius: 3px;
  aspect-ratio: 1 / 1.35;
  object-fit: cover;
  width: 100%;
  display: block;
}
/* Empty state (no photo yet) keeps the frame shape. */
.st-polaroid__img--empty {
  background: #cfcbc5;
}

/* ---------- caption ---------- */
.st-polaroid__text,
.polaroid-photo-text-container {
  position: absolute;
  left: 6.6%;
  /* width = 100% - 2 * left, so the caption can never reach the frame edge */
  width: 86.8%;
  transform: translateY(50%);
  bottom: 10.6%;
}
/* The framed modes have their own padding, so the caption sits inside it. */
.st-polaroid--pol .st-polaroid__text { left: 8%;  width: 84%;  bottom: 8%; }
.st-polaroid--ins .st-polaroid__text { left: 10%; width: 80%;  bottom: 7%; }

.st-polaroid__name,
.polaroid-photo-text-naam {
  font-family: var(--main-heading-font-family);
  font-weight: 600;
  line-height: 1;
  font-size: clamp(15px, 1.4vw, 17px);
  margin-bottom: unset !important;
  color: #000;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.st-polaroid__desc,
.polaroid-photo-text-desc {
  font-family: var(--main-text-font-family);
  font-weight: 400;
  line-height: 1;
  font-size: clamp(13px, 1.25vw, 15px);
  margin: 0;
  color: #000;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
/* Step down before ellipsising (set by st_items_caption_size_class()). */
.st-polaroid__text--s  .st-polaroid__name { font-size: clamp(12px, 1.15vw, 14px); }
.st-polaroid__text--s  .st-polaroid__desc { font-size: clamp(11px, 1.02vw, 12.5px); }
.st-polaroid__text--xs .st-polaroid__name { font-size: clamp(10px, 0.95vw, 12px); }
.st-polaroid__text--xs .st-polaroid__desc { font-size: clamp(9px,  0.85vw, 11px); }

/* ---------- prop ---------- */
.st-prop,
.prop-photo-container {
  position: absolute;
  z-index: 98;
  cursor: move;
}
.st-prop__shadow,
.prop-photo-shadow {
  position: absolute;
  opacity: 0.5;
  width: 100%;
  height: 100%;
  filter: blur(2px);
  z-index: -1;
}
.st-prop img,
.prop-photo-container img { transition: 0.35s all ease-in-out; }

/* ---------- drag feedback ---------- */
.st-prop.is-dragging > img:first-child,
.dragging.prop-photo-container > img:first-child { opacity: 0.2; }
.st-polaroid.is-dragging > .st-polaroid__frame,
.st-prop.is-dragging > img:last-child,
.dragging.polaroid-photo-container > img:nth-child(2),
.dragging.polaroid-photo-container > div:nth-child(2),
.dragging.prop-photo-container > img:last-child { transform: scale(1.1); }

/* ---------- shared ---------- */
.st-photo-album,
.photo-album-container { position: relative; }

.st-polaroid.mobile,
.st-prop.mobile,
.polaroid-photo-container.mobile,
.prop-photo-container.mobile { display: none; }

/* ---------- Doodle ---------- */
.doodle {
	position: absolute;
}

@media (max-width: 1023px) {
	.st-polaroid, .polaroid-photo-container { width: 17.5vw; }
	.st-polaroid--ins, .polaroid-photo-container--ins { width: 13.545vw; }
	.st-polaroid__name, .polaroid-photo-text-naam { font-size: clamp(12px, 1.5vw, 15px); }
	.st-polaroid__desc, .polaroid-photo-text-desc { font-size: clamp(10px, 1.2vw, 13px); }
}

@media (max-width: 767px) {
	.st-polaroid, .polaroid-photo-container { width: 34.3vw; }
	.st-polaroid--ins, .polaroid-photo-container--ins { width: 26.552vw; }
	.st-polaroid__frame, .st-polaroid__shadow { border-radius: 2px; }
	.st-polaroid__img--pol, .st-polaroid__img--ins,
	.polaroid-photo__img--pol, .polaroid-photo__img--ins { border-radius: 2px; }
	.st-polaroid__name, .polaroid-photo-text-naam { font-size: clamp(12px, 2.3vw, 17px); }
	.st-polaroid__desc, .polaroid-photo-text-desc { font-size: clamp(10px, 2.3vw, 15px); }
	.st-polaroid.mobile, .st-prop.mobile,
	.polaroid-photo-container.mobile, .prop-photo-container.mobile { display: block; }
	.st-polaroid.desktop, .st-prop.desktop,
	.polaroid-photo-container.desktop, .prop-photo-container.desktop { display: none; }
	.doodle.desktop {
		display: none;
	}
}




/* Rating badge: "★ 4.67 (12)", or "★ 5" before the first review.
   Used on DM cards (overview, specialties) and the DM profile header, so it
   belongs in the global stylesheet rather than one template. */
.st-rating{display:inline-flex;align-items:baseline;gap:.3rem;font-weight:700;line-height:1}
.st-rating__star{color:#e6a817;font-size:1.2em}
.st-rating__count{font-weight:400;opacity:.6}




/* GOOGLE MAPS */
.pac-container {
	border-top: unset;
	-webkit-box-shadow: unset;
	box-shadow: unset;
	border: solid 1px #ccc;
	border-radius: 10px;
}

.pac-item {
	padding: 0 15px;
	border-top: unset;
}

.pac-item:hover {
	background: #dae7f9;
}

.pac-icon-marker {
	display: none;
}

.pac-logo::after {
	display: none;
}




/* =====================================================================
   ENTITY PAGES + CARDS — add to st-global-styling.css
   Cards appear on overview pages, entity pages and later elsewhere, so they
   live globally. Uses the global tokens (--main-*-font-family,
   --main-heading/subheading/text-font-size(-tablet/-mobile),
   --main-section-margin-side, --main-section-first-margin-top,
   --main-section-margin-bottom, --main-button-color, --main-background-color).
   Breakpoints: 1023 (tablet) / 767 (mobile), same as the rest of the site.
   ===================================================================== */

:root {
  --st-ink: #1a0f08;
  --st-muted: #6f625c;
  --st-line: #e6d9d5;
  --st-dark: #1f0f07;
  --st-radius-lg: clamp(18px, 1.5vw, 26px);
  --st-radius-md: clamp(10px, 0.8vw, 14px);
}
.st-icon { width: 1.15em; height: 1.15em; flex: none; }
.screen-reader-text { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* ---------------------------------------------------------------------
   Card
   ------------------------------------------------------------------ */
.st-card {
  position: relative; display: flex; flex-direction: column; height: 100%; overflow: hidden;
  /* --st-card-bg is filled per card from its own image (see the entity
     script); it falls back to the default dark until then. */
  background: var(--st-card-bg, var(--st-dark)); color: #fff;
  transition: background-color .5s ease; border-radius: var(--st-radius-lg);
  box-shadow: 0 2px 10px rgba(31,15,7,.08); transition: transform .2s ease, box-shadow .2s ease;
}
.st-card:hover { box-shadow: 0 12px 28px rgba(31,15,7,.18); }
.st-card__media { position: relative; display: block; aspect-ratio: 3 / 4; overflow: hidden; background: #3a2418; }
.st-card__media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s ease; }
.st-card:hover .st-card__media img { transform: scale(1.03); }
.st-card__media::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 32%; pointer-events: none;
  background: linear-gradient(to bottom, rgba(0,0,0,0), var(--st-card-bg, var(--st-dark)));
  transition: background-image .5s ease;
}
.st-card__placeholder {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; padding: 12%;
  font-family: var(--main-heading-font-family); font-size: clamp(34px, 3.2vw, 60px); line-height: 1; text-align: center; color: rgba(255,255,255,.22);
}
/* No image (playstyles): a shorter, textured panel instead of an empty 3:4 box. */
.st-card--noimg .st-card__media { aspect-ratio: 16 / 10; background: radial-gradient(120% 90% at 20% 10%, #4a2c1c 0%, #2a160b 55%, var(--st-dark) 100%); }

.st-card__body { position: relative; display: flex; flex-direction: column; flex: 1; gap: 10px; padding: 0 clamp(14px, 1.1vw, 20px) clamp(14px, 1.1vw, 20px); margin-top: -8px; }
.st-card__title { margin: 0; font-family: var(--main-heading-font-family); font-weight: 400; font-size: clamp(20px, 1.35vw, 26px); line-height: 1.12; color: #fff; display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 2; overflow: hidden; }
.st-card__link { color: inherit !important; text-decoration: none !important;}
p.st-card__sub { display: flex; flex-wrap: wrap; align-items: center; gap: 4px 12px; margin: -4px 0 0; font-family: var(--main-text-font-family); font-size: 13.5px; color: #cbbfb8; }
.st-card__rating { display: inline-flex; align-items: center; gap: 4px; color: #fff; font-weight: 600; }
.st-card__rating-star { width: 15px; height: 15px; color: #e6a817; }
.st-card__rating-count { font-weight: 400; color: #cbbfb8; }
ul.st-card__meta { list-style: none; display: flex; flex-wrap: wrap; gap: 4px 14px; margin: 0; padding: 0; font-family: var(--main-text-font-family); font-size: 13.5px; color: #f3ebe8; }
.st-card__meta-item { display: inline-flex; align-items: center; gap: 5px; white-space: pre; }
.st-card__meta-icon { width: 16px; height: 16px; }
.st-card__text {
  margin: 0; font-family: var(--main-text-font-family); font-size: 14.5px; line-height: 1.4; color: #cbbfb8;
  display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden;
}
.st-card__btn {
  margin-top: auto; display: flex; align-items: center; justify-content: center; min-height: 48px; padding: 10px 16px;
  border-radius: 999px; background: var(--main-background-color, #fdf4f3); color: var(--st-ink) !important; text-decoration: none !important;
  font-family: var(--main-heading-font-family); font-size: clamp(17px, 1.15vw, 21px); transition: background .15s; line-height: 1;
}
.st-card__btn:hover { background: #fff; }
.st-card--noimg { background: var(--st-dark); }

/* ---------------------------------------------------------------------
   Review card (landing-page review style)
   ------------------------------------------------------------------ */
.st-review-card {
  display: flex; flex-direction: column; gap: 18px; height: 100%;
  background: #fff; padding: clamp(18px, 1.4vw, 26px); border-radius: var(--st-radius-md);
}
.st-review-card__stars { display: flex; gap: clamp(5px, .4vw, 8px); color: #C96D36; }
.st-review-card__star { width: clamp(18px, 1.2vw, 22px); height: clamp(18px, 1.2vw, 22px); }
.st-review-card__star.is-off { color: #e8dcd6; }
.st-review-card__text { flex: 1; margin: 0; font-family: var(--main-text-font-family); font-size: clamp(16px, 1.05vw, 19px); line-height: 1.5; color: var(--st-ink); }
.st-review-card__foot p { margin: 0; }
.st-review-card__name { font-family: var(--main-heading-font-family); font-size: clamp(18px, 1.05vw, 20px); line-height: 1.1; }
.st-review-card__sub { font-family: var(--main-text-font-family); font-size: 14px; opacity: .65; }

/* ---------------------------------------------------------------------
   Gallery slider (cards / reviews)
   The track runs edge to edge; its left padding equals the page margin, so
   the first card lines up with the page content while later cards run off
   the right edge. Four full cards on desktop.
   ------------------------------------------------------------------ */
.st-slider { --side: var(--main-section-margin-side, 6%); --gap: clamp(14px, 1.4vw, 26px); --per: 4; }
.st-slider__head { text-align: center; padding: 0 var(--side); margin-bottom: clamp(24px, 2.4vw, 44px); }
.st-slider__heading { margin: 0 0 .3em; font-family: var(--main-heading-font-family); font-weight: 600; font-size: var(--main-heading-font-size); line-height: 1.08; color: var(--st-ink); }
.st-slider__intro { margin: 0 auto; max-width: 62ch; font-family: var(--main-text-font-family); font-size: var(--main-text-font-size); line-height: 1.4; color: var(--st-ink); }
ul.st-slider__track {
  list-style: none; margin: 0; display: flex; gap: var(--gap);
  padding: 6px var(--side) 14px; scroll-padding-inline: var(--side);
  overflow-x: auto; overscroll-behavior-x: contain; scroll-snap-type: x mandatory; scroll-behavior: smooth;
  scrollbar-width: none; -webkit-overflow-scrolling: touch;
}
ul.st-slider__track::-webkit-scrollbar { display: none; }
ul.st-slider__track::after { content: ""; flex: 0 0 1px; }   /* keeps the right padding when scrolled to the end */
ul.st-slider__track:focus-visible { outline: 2px solid var(--main-button-color, #1b4621); outline-offset: -2px; }
/* Fewer cards than fit on screen: centre them instead of leaving a gap on
   the right. The script sets this class when there is nothing to scroll. */
ul.st-slider__track.is-static { justify-content: center; scroll-snap-type: none; }
ul.st-slider__track.is-static::after { content: none; }
.st-slider__slide {
  flex: 0 0 calc((100% - var(--side) * 2 - var(--gap) * (var(--per) - 1)) / var(--per));
  scroll-snap-align: start; min-width: 0;
}
.st-slider--reviews { --per: 3; }
.st-slider__foot { position: relative; display: flex; align-items: center; justify-content: center; min-height: 58px; margin-top: clamp(18px, 1.8vw, 32px); padding: 0 var(--side); }
.st-slider__cta {
  display: inline-flex; align-items: center; justify-content: center; min-height: 56px; padding: 12px clamp(28px, 3vw, 64px);
  border-radius: 999px; background: var(--st-dark); color: #fff !important; text-decoration: none !important;
  font-family: var(--main-heading-font-family); font-size: clamp(19px, 1.35vw, 26px); transition: background .15s;
}
.st-slider__cta:hover { background: #000; }
.st-slider__nav { position: absolute; right: var(--side); top: 50%; transform: translateY(-50%); display: flex; gap: 12px; }
.st-slider__nav[hidden] { display: none !important; }
.st-slider__foot:not(:has(.st-slider__cta)) .st-slider__nav { position: static; transform: none; margin-left: auto; }
.st-slider__arrow {
  display: inline-flex; align-items: center; justify-content: center; width: 46px; height: 46px; border-radius: 50%;
  border: 0; background: var(--st-dark); color: #fff; cursor: pointer; transition: background .15s, opacity .15s;
}
.st-slider__arrow:hover:not(:disabled) { background: #000; }
.st-slider__arrow:disabled { background: #a8999a; cursor: default; }
.st-slider__arrow .st-icon { width: 22px; height: 22px; }

@media (max-width: 1279px) { .st-slider { --per: 3; } .st-slider--reviews { --per: 2.5; } }
@media (max-width: 1023px) { .st-slider { --per: 2.35; } .st-slider--reviews { --per: 1.8; } }
@media (max-width: 767px) {
  /* One card, centred in the viewport with an equal peek on both sides, so a
     swipe always lands a card in the middle of the screen. */
  .st-slider, .st-slider--reviews { --per: 1; }
  .st-slider__slide { flex: 0 0 82vw; scroll-snap-align: center; }
  ul.st-slider__track { padding-inline: 9vw; scroll-padding-inline: 0; }
  .st-slider__heading { font-size: var(--main-heading-font-size-mobile); }
  .st-slider__intro { font-size: var(--main-text-font-size-mobile); }
  .st-slider__foot { flex-direction: column; gap: 14px; }
  .st-slider__nav { position: static; transform: none; }
  .st-card__text { -webkit-line-clamp: 3; }
}

/* ---------------------------------------------------------------------
   Back link
   ------------------------------------------------------------------ */
.st-eback { padding: var(--main-section-first-margin-top, 60px) var(--main-section-margin-side, 6%) 0; margin-bottom: clamp(14px, 1.4vw, 22px); }
.st-eback__link { display: inline-flex; align-items: center; gap: 6px; font-family: var(--main-text-font-family); font-size: 15px; color: var(--st-muted); text-decoration: none; }
.st-eback__link:hover { color: var(--st-ink); }
.st-eback__icon { width: 18px; height: 18px; }
.st-eback--overlay { padding-top: clamp(14px, 1.4vw, 24px); }

/* ---------------------------------------------------------------------
   Entity hero (above the fold)
   ------------------------------------------------------------------ */
.st-ehero {
  display: grid; grid-template-columns: minmax(220px, 30%) minmax(0, 1fr); gap: clamp(28px, 3.6vw, 72px); align-items: start;
  padding: 0 var(--main-section-margin-side, 6%); margin-bottom: var(--main-section-margin-bottom, 120px);
}
.st-ehero--noimg { grid-template-columns: minmax(0, 1fr); max-width: 1100px; }
.st-ehero__media { position: sticky; top: 24px; aspect-ratio: 3 / 4; border-radius: var(--st-radius-lg); overflow: hidden; background: #e8dcd6; box-shadow: 0 18px 40px rgba(31,15,7,.16); }
.st-ehero__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.st-ehero__eyebrow { margin: 0 0 8px; font-family: var(--main-text-font-family); font-size: 14px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--st-muted); }
.st-ehero__title {
  margin: 0 0 clamp(16px, 1.4vw, 24px); padding-bottom: clamp(14px, 1.2vw, 22px); border-bottom: 1px solid var(--st-line);
  font-family: var(--main-heading-font-family); font-weight: 600; font-size: var(--main-heading-font-size); line-height: 1.05; color: var(--st-ink);
}
ul.st-ehero__meta { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 clamp(18px, 1.6vw, 28px); padding: 0; }
.st-ehero__pill {
  display: inline-flex; align-items: center; gap: 7px; padding: 8px 14px; border-radius: 999px;
  background: #fff; border: 1px solid var(--st-line); font-family: var(--main-text-font-family); font-size: 15px; color: var(--st-ink);
}
.st-ehero__pill a { color: inherit; text-decoration: underline; text-underline-offset: 3px; }
/* Pill that opens a list (all genres, all editions). Hover on a mouse,
   tap or keyboard on touch; the script handles the tap state. */
.st-ehero__pill--list { position: relative; cursor: pointer; padding: 0; background: none; border: 0; }
.st-ehero__pill-btn {
  display: inline-flex; align-items: center; gap: 7px; padding: 8px 12px 8px 14px; border-radius: 999px;
  background: #fff; border: 1px solid var(--st-line); cursor: pointer;
  font-family: var(--main-text-font-family); font-size: 15px; color: var(--st-ink);
}
.st-ehero__pill--list:hover .st-ehero__pill-btn,
.st-ehero__pill--list.is-open .st-ehero__pill-btn { border-color: var(--st-ink); }
.st-ehero__pill-caret { width: 15px; height: 15px; color: var(--st-muted); transition: transform .2s; }
.st-ehero__pill--list:hover .st-ehero__pill-caret,
.st-ehero__pill--list.is-open .st-ehero__pill-caret { transform: rotate(180deg); }
ul.st-ehero__pill-list {
  position: absolute; left: 0; top: calc(100% + 6px); z-index: 30; min-width: 220px; max-width: 320px;
  max-height: 260px; overflow-y: auto; overscroll-behavior: contain; margin: 0; padding: 6px; list-style: none;
  background: #fff; border: 1px solid var(--st-line); border-radius: var(--st-radius-md);
  box-shadow: 0 14px 34px rgba(31,15,7,.16);
  opacity: 0; visibility: hidden; transform: translateY(-4px); transition: opacity .15s, transform .15s, visibility .15s;
  scrollbar-width: thin; scrollbar-color: rgba(26,15,8,.22) transparent; scrollbar-gutter: stable;
}
.st-ehero__pill-list::-webkit-scrollbar { width: 6px; background: transparent; }
.st-ehero__pill-list::-webkit-scrollbar-track { background: transparent; border-radius: 10px; }
.st-ehero__pill-list::-webkit-scrollbar-thumb { background: rgba(26,15,8,.18); border-radius: 10px; }
.st-ehero__pill-list:hover::-webkit-scrollbar-thumb { background: rgba(26,15,8,.32); }
.st-ehero__pill--list:hover .st-ehero__pill-list,
.st-ehero__pill--list:focus-within .st-ehero__pill-list,
.st-ehero__pill--list.is-open .st-ehero__pill-list { opacity: 1; visibility: visible; transform: none; }
.st-ehero__pill-list a, .st-ehero__pill-list span {
  display: block; padding: 8px 10px; border-radius: 8px; text-decoration: none;
  font-family: var(--main-text-font-family); font-size: 15px; line-height: 1.25; color: var(--st-ink);
}
.st-ehero__pill-list a:hover, .st-ehero__pill-list a:focus-visible { background: rgba(26,15,8,.06); }
.st-ehero__pill-icon { width: 17px; height: 17px; color: var(--st-muted); }
.st-ehero__text { max-width: 70ch; font-family: var(--main-text-font-family); font-size: var(--main-text-font-size); line-height: 1.55; color: var(--st-ink); }
.st-ehero__text p { margin: 0 0 1em; }
.st-ehero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: clamp(22px, 2vw, 34px); }
.st-ehero__actions .st-main__button { min-width: min(260px, 100%); }

@media (max-width: 1023px) {
  .st-ehero { grid-template-columns: minmax(0, 38%) minmax(0, 1fr); }
  .st-ehero__title { font-size: var(--main-heading-font-size-tablet); }
}
@media (max-width: 767px) {
  .st-ehero, .st-ehero--noimg { grid-template-columns: minmax(0, 1fr); gap: 22px; }
  .st-ehero__media { position: static; max-width: 420px; aspect-ratio: 4 / 3; }
  .st-ehero__title { font-size: var(--main-heading-font-size-mobile); }
  .st-ehero__actions .st-main__button { flex: 1 1 100%; }
}

/* ---------------------------------------------------------------------
   FAQ — answers are in the HTML and open on load (SEO); the entity script
   collapses all but the first afterwards.
   ------------------------------------------------------------------ */
.st-faq { padding: 0 var(--main-section-margin-side, 6%); }
.st-faq__heading { margin: 0 0 clamp(22px, 2vw, 40px); text-align: center; font-family: var(--main-heading-font-family); font-weight: 600; font-size: var(--main-heading-font-size); line-height: 1.08; color: var(--st-ink); }
.st-faq__list { max-width: 880px; margin: 0 auto; display: grid; gap: clamp(10px, .9vw, 16px); }
.st-faq__item { background: #fff; border-radius: var(--st-radius-md); }
.st-faq__q {
  display: flex; align-items: center; gap: 16px; cursor: pointer; list-style: none;
  padding: clamp(18px, 1.5vw, 28px) clamp(18px, 1.6vw, 30px);
}
.st-faq__q::-webkit-details-marker { display: none; }
.st-faq__q:focus-visible { outline: 2px solid var(--main-button-color, #1b4621); outline-offset: 2px; border-radius: var(--st-radius-md); }
.st-faq__q-text { flex: 1; font-family: var(--main-heading-font-family); font-size: clamp(19px, 1.45vw, 27px); line-height: 1.2; color: var(--st-ink); }
.st-faq__icon { position: relative; flex: none; width: clamp(20px, 1.4vw, 26px); height: clamp(20px, 1.4vw, 26px); }
.st-faq__icon::before, .st-faq__icon::after {
  content: ""; position: absolute; left: 0; right: 0; top: 50%; height: 3px; margin-top: -1.5px;
  background: #707070; border-radius: 2px; transition: transform .3s ease;
}
.st-faq__icon::after { transform: rotate(90deg); }                    /* plus */
.st-faq__item[open] .st-faq__icon::after { transform: rotate(0deg); }  /* minus */
.st-faq__a { padding: 0 clamp(18px, 1.6vw, 30px) clamp(18px, 1.5vw, 28px); font-family: var(--main-text-font-family); font-size: clamp(16px, 1.1vw, 19px); line-height: 1.55; color: #3d3029; }
.st-faq__a p { margin: 0 0 .8em; }
.st-faq__a p:last-child { margin-bottom: 0; }
@media (max-width: 767px) { .st-faq__heading { font-size: var(--main-heading-font-size-mobile); } }

/* ---------------------------------------------------------------------
   Game Master profile header
   Text never sits ON the banner (it could be any image, light or dark):
   the banner is a band, the instax overlaps its lower edge, and the name
   and details sit on the page background beside it.
   ------------------------------------------------------------------ */
.st-dmhero { padding: 0 var(--main-section-margin-side, 6%); margin-bottom: var(--main-section-margin-bottom, 120px); }
.st-dmhero__banner { position: relative; height: clamp(170px, 19vw, 300px); border-radius: var(--st-radius-lg); overflow: hidden; background: linear-gradient(135deg, #dcd1ca, #efe7e2); }
.st-dmhero__banner img { width: 100%; height: 100%; object-fit: cover; display: block; }
.st-dmhero__row { display: grid; grid-template-columns: calc(12.773vw + 3vw) minmax(0, 1fr); gap: clamp(20px, 2.4vw, 44px); align-items: start; }
/* reserves the instax' space; the polaroid itself is absolute (global item CSS) */
.st-dmhero__pol { position: relative; height: 13.5vw; }
.st-dmhero__pol .st-polaroid.desktop { left: 1.5vw; bottom: 0; transform: rotate(-4deg); z-index: 5; }
.st-dmhero__pol .st-polaroid.mobile { left: 50%; margin-left: -13.276vw; bottom: 0; transform: rotate(-4deg); z-index: 5; }
.st-dmhero__info { padding-top: clamp(16px, 1.6vw, 28px); }
.st-dmhero__name { margin: 0; font-family: var(--main-heading-font-family); font-weight: 600; font-size: var(--main-heading-font-size); line-height: 1.05; color: var(--st-ink); }
p.st-dmhero__sub { display: flex; flex-wrap: wrap; align-items: center; gap: 6px 14px; margin: 8px 0 0; font-family: var(--main-text-font-family); font-size: 16px; color: var(--st-muted); }
.st-dmhero__sub .st-rating { color: var(--st-ink); }
.st-dmhero__facts { margin-top: clamp(14px, 1.2vw, 20px); }
.st-dmhero__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.st-dmhero__tag { padding: 6px 12px; border-radius: 999px; background: var(--st-dark); color: #fff; font-family: var(--main-text-font-family); font-size: 14px; }
.st-dmhero__about {
  margin-top: clamp(14px, 1.3vw, 22px); max-width: 68ch;
  font-family: var(--main-text-font-family); font-size: var(--main-text-font-size); line-height: 1.25; color: var(--st-ink);
}
@media (max-width: 1023px) { .st-dmhero__about { font-size: var(--main-text-font-size-tablet); } }
@media (max-width: 767px)  { .st-dmhero__about { font-size: var(--main-text-font-size-mobile); margin-inline: auto; text-align: left; } }
.st-dmhero__actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: clamp(16px, 1.4vw, 24px); }
.st-dmhero__action {
  display: inline-flex; align-items: center; gap: 7px; padding: 9px 16px; border-radius: 999px; cursor: pointer;
  background: transparent; border: 1px solid var(--st-ink); color: var(--st-ink); font-family: var(--main-text-font-family); font-size: 15px;
}
.st-dmhero__action:hover { background: var(--st-ink); color: #fff; }
@media (max-width: 1023px) {
  .st-dmhero__row { grid-template-columns: calc(13.545vw + 3vw) minmax(0, 1fr); }
  .st-dmhero__pol { height: 14.5vw; }
  .st-dmhero__name { font-size: var(--main-heading-font-size-tablet); }
}
@media (max-width: 767px) {
  /* The instax moves up onto the banner, centred, with its full height
     reserved, so it can never overlap the name. */
  .st-dmhero__row { grid-template-columns: minmax(0, 1fr); gap: 0; }
  .st-dmhero__pol { height: 26vw; }
  .st-dmhero__info { text-align: center; padding-top: 14px; }
  .st-dmhero__name { font-size: var(--main-heading-font-size-mobile); }
  .st-dmhero__sub, .st-dmhero__tags, .st-dmhero__actions { justify-content: center; }
  .st-dmhero__facts .st-ehero__meta { justify-content: center; }
}

/* Prompts, video, QR (DM profile) */
.st-dm-prompts { padding: 0 var(--main-section-margin-side, 6%); }
/* Centred and capped, so one, two or three cards stay nicely proportioned
   instead of stretching to the page margins. */
.st-dm-prompts__grid {
  display: grid; justify-content: center; gap: clamp(14px, 1.4vw, 24px);
  grid-template-columns: repeat(auto-fit, minmax(280px, 380px));
  max-width: 1200px; margin: 0 auto;
}
@media (max-width: 767px) { .st-dm-prompts__grid { grid-template-columns: minmax(0, 1fr); } }
.st-dm-prompts__card { background: #fff; border-radius: var(--st-radius-md); padding: clamp(18px, 1.5vw, 28px); }
.st-dm-prompts__q { margin: 0 0 .6em; font-family: var(--main-heading-font-family); font-weight: 400; font-size: clamp(19px, 1.35vw, 24px); line-height: 1.2; color: var(--st-ink); }
.st-dm-prompts__a { font-family: var(--main-text-font-family); font-size: clamp(16px, 1.05vw, 18px); line-height: 1.5; color: #3d3029; }
.st-dm-prompts__a p { margin: 0 0 .6em; }
.st-yt { position: relative; max-width: 980px; margin: 0 auto; aspect-ratio: 16 / 9; border-radius: var(--st-radius-md); overflow: hidden; background: #000; cursor: pointer; }
.st-yt__thumb { width: 100%; height: 100%; object-fit: cover; opacity: .85; }
.st-yt__play { position: absolute; inset: 0; margin: auto; width: 78px; height: 54px; border: 0; border-radius: 14px; background: #ff0000; cursor: pointer; }
.st-yt__play span { position: absolute; left: 31px; top: 15px; border-style: solid; border-width: 12px 0 12px 22px; border-color: transparent transparent transparent #fff; }
.st-yt iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.st-fmodal[hidden] { display: none; }
.st-fmodal { position: fixed; inset: 0; z-index: 9999; display: flex; align-items: center; justify-content: center; padding: 1rem; background: rgba(0,0,0,.55); }
.st-fmodal__box { position: relative; width: 100%; max-width: 360px; padding: 1.5rem; border-radius: var(--st-radius-md); background: #fff; text-align: center; }
.st-fmodal__close { position: absolute; top: .4rem; right: .6rem; border: 0; background: none; font-size: 1.6rem; cursor: pointer; border: solid 1px grey; color: black; padding: 0px 10px 4px;}
.st-fmodal__title { margin: 0; font-family: var(--main-heading-font-family); font-weight: 400; font-size: 24px; }
.st-qr__target { display: flex; justify-content: center; margin: 1rem 0; }
.st-qr__target canvas { width: 220px; height: 220px; }
.st-qr__url { font-family: var(--main-text-font-family); font-size: .8rem; opacity: .7; word-break: break-all; }

@media (prefers-reduced-motion: reduce) {
  .st-card, .st-card__media img { transition: none; }
  .st-slider__track { scroll-behavior: auto; }
}




/* HOME PAGE */

/************************
***** YOUTUBE SECTION ****
************************/

.home-youtube-section {
	margin-top: -6%;
	position: relative;
}

.home-youtube-section > div {
	aspect-ratio: 16/9;
	max-width: unset !important;
	position: relative;
}

#home-youtube-player {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

#home-youtube-thumbnail {
	width: 100%;
	height: 99.53%;
	opacity: 1;
	position: absolute;
	top: 0;
	left: 0;
	object-fit: cover;
}

.black-bars-top {
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: black;
	height: 13%;
}

.black-bars-bottom {
	width: 100%;
	position: absolute;
	bottom: 0;
	left: 0;
	background: black;
	height: 13%;
}

h1.home-youtube-title {
	text-align: center;
	text-transform: none;
	margin: 0;
	padding-bottom: 0;
	font-family: bookmania, sans-serif;
	font-weight: 600;
	line-height: 1.15;
	font-size: 2.85vw;
	color: white;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	white-space: nowrap;
	transition: opacity 1s ease-out;
}

#home-start-here-btn {
	position: absolute;
	bottom: 8.5%;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 100%);
	width: 100%;
	text-align: center;
	padding: 3% 0;
	overflow: hidden;
}

#home-start-here-btn h3 {
	color: white;
}

#home-start-here-btn img {
	filter: unset;
}

@media (max-width: 1023px) {
	h1.home-youtube-title {
		font-size: 3.4vw;

	}
}

@media (max-width: 767px) {
	.home-youtube-section {
		margin-top: -12%;
	}

	.home-youtube-section > div {
		height: 85vh;
		left: 50%;
		transform: translateX(-50%);
	}

	h1.home-youtube-title {
		font-size: 5.6vw;
		left: 50%;
	}
}

@media (max-width: 600px) {

	#home-start-here-btn {
		bottom: 2.5%;
	}
}

/************************
***** COLUMNS ****
************************/
.home-first-column-section {
	background-color: var(--main-background-color);
	margin-top: -4%;
	padding-top: 5%;
	position: relative;
	padding-bottom: 10%;
}

.home-page-last {
	padding-bottom: 40px;
	margin-top: -5%;
	z-index: 1;
	position: relative;
}

h1.home-columns-title, h2.home-columns-title, h3.home-columns-title {
	text-align: center;
	text-transform: none;
	margin: 0;
	padding-bottom: 0;
	font-family: bookmania, sans-serif;
	font-weight: 600;
	line-height: 1.15;
	font-size: 2.85vw;
	padding: 0px 12.5vw 0;
}

.home-columns-title.home-columns-title--center {
	position: absolute;
	bottom: 0vw;
	transform: translateX(-50%);
	left: 50%;
	padding: 0;
}

.menu-columns-home {
	display: none;
	justify-content: space-between;
	position: relative;
	padding: 45px 15% 3px;
	gap: clamp(30px, 4.8%, 60px);
	overflow-x: auto;
	white-space: nowrap;
	-ms-overflow-style: none;
/* 	-webkit-mask-image: linear-gradient(to left, transparent, black 30px, black calc(100% - 30px), transparent);
	mask-image: linear-gradient(to left, transparent, black 30px, black calc(100% - 30px), transparent); */
	scrollbar-width: none;
	-moz-scrollbars-none: true;
	-ms-overflow-style: none;
	z-index: 1;
}

.menu-columns-home::-webkit-scrollbar {
	display: none;
}

h2.menuItem-columns-home {
	cursor: pointer;
	font-size: 1.75em;
	color: black;
	margin: 0 !important;
	font-family: franklin-gothic-urw, sans-serif;
	font-weight: 400;
	font-size: clamp(16px, 3.75vw, 1.75em);
}

h2.menuItem-columns-home.active {
	font-weight: 500;
}

.underline-menu-columns-home {
	height: 3px;
	background: black;
	position: absolute;
	bottom: 0;
	transition: all 0.3s;
	left: 15%;
	width: 63px;
	border-radius: 15px;
	opacity: 0;
}

.home-pricing-section {
	padding: 4.75% 12.5vw 50px;
	display: flex;
	justify-content: space-between;
	max-width: none !important;
}

.home-pricing-column {
	background-color: white;
	border-radius: 10px;
	display: flex;
	flex-direction: column;
	padding: 15px;
	box-sizing: border-box;
	position: relative;
	width: calc(33.333% - 10% /3);
	transition: all 0.15s ease-in-out;
}

.home-pricing-column:hover {
	transform: scale(1.075);
}

.home-pricing-column img {
	width: 100%;
	border-radius: 30px;
}

.home-pricing-column h2 {
	text-align: center;
	font-family: bookmania, sans-serif;
	font-weight: 600;
	margin: 0;
	margin-top: 6.5%;
	line-height: 1;
	font-size: clamp(25px, 2.45vw, 40px);
}

.home-column-divider {
	height: 3px;
	background-color: black;
	margin: 7px 0 20px;
	margin-top: 2%;
	margin-bottom: 5%;
}

p.home-column-price {
	text-align: center;
	font-family: bookmania, sans-serif;
	margin: 0;
	line-height: 1;
	font-weight: 600;
	color: #c96d36;
	font-size: clamp(22px, 2.1vw, 37px);
}

p.home-column-price span {
	color: #5A5A5A;
	font-size: 17px;
}

.home-column-divider-mobile {
	height: 2px;
	background-color: black;
	margin: 7px 0 20px;
	margin-top: 2%;
	margin-bottom: clamp(0px, 5%, 10px);
	display: none;
}

.home-pricing-column ul {
	list-style-type: none;
	padding: 0;
	margin-top: 3.75%;
	margin-bottom: 6.5%;
	padding-left: 3.75%;
}

.home-pricing-column ul li {
	position: relative;
	padding: 0 10% 0 12%;
	padding-left: clamp(25px, 12%, 48px);
	margin-bottom: 5.5%;
	color: black;
	line-height: 1.15;
	font-size: clamp(15px, 1.45vw, 20px);
}

.home-pricing-column ul li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 2px;
	width: clamp(14px, 1.3vw, 18px);
	height: clamp(14px, 1.3vw, 18px);
	border-radius: 50%;
	background-color: #1A4620;
}

.home-pricing-column button {
	color: white;
	font-weight: 600;
	margin-top: auto;
	background: var(--main-button-color);
	font-family: bookmania, sans-serif;
	border-radius: 10px;
	padding-top: clamp(15px, 6%, 17px);
	font-size: clamp(22px, 2.1vw, 30px);
	height: clamp(45px, 4.4vw, 60px);
	position: relative;
}

.home-pricing-column button a{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
}

@media (max-width: 1023px) {
	.home-first-column-section {
		padding-top: 6%;
	}

	h1.home-columns-title, h2.home-columns-title, h3.home-columns-title {
		font-size: 3.4vw;
		padding: 0px 5vw 0;
	}

	.home-pricing-section {
		padding: 50px 5vw;
	}

	.home-pricing-column h2 {
		font-size: clamp(22px, 2.7vw, 25px);
	}

	p.home-column-price {
		font-size: clamp(19px, 2.4vw, 22px);
	}

	p.home-column-price span {
		font-size: 15px;
	}

	.home-pricing-column ul li {
		padding-right: 5%;
	}

	.home-pricing-column ul li::before {
		width: clamp(12px, 1.45vw, 14px);
		height: clamp(12px, 1.45vw, 14px);
	}

	.home-pricing-column button {
		font-size: clamp(19px, 2.4vw, 22px);
		height: clamp(38px, 4.9vw, 45px);
		padding-top: clamp(11px, 6%, 15px);
	}
}

@media (max-width: 767px) {
	.home-first-column-section {
		padding-bottom: 11.2%;
		margin-top: -10%;
		padding-top: 0;
	}

	.home-page-last {
		padding-bottom: 40px;
		margin-top: 0;
	}

	h1.home-columns-title, h2.home-columns-title, h3.home-columns-title {
		padding: 0px 10vw 0;
		font-size: 7vw;
	}

	#home-first-section-title {
		display: none;
	}

	.menu-columns-home {
		display: flex;
	}

	.home-pricing-section {
		overflow-x: scroll;
		scroll-snap-type: x mandatory;
		padding: 50px 0;
		display: flex;
		justify-content: start;
		gap: 8%;
		scrollbar-width: none;
		-moz-scrollbars-none: true;
		-ms-overflow-style: none;
	}

	.home-pricing-section::-webkit-scrollbar {
		display: none;
	}

	.home-pricing-section::before, .home-pricing-section::after {
		content: '';
		display: block;
		width: 15vw;
		flex: none;
	}

	.home-pricing-column {
		width: 70vw;
		flex: none;
		scroll-snap-align: center;
	}

	.home-pricing-column:hover {
		transform: none;
	}

	.home-pricing-column h2 {
		text-align: start;
		font-size: clamp(22px, 6.9vw, 40px);
	}

	.home-column-divider {
		display: none;
	}

	p.home-column-price {
		text-align: start;
		font-size: clamp(17px, 4.6vw, 30px);
	}

	p.home-column-price span {
		font-size: clamp(15px, 4vw, 17px);
	}

	.home-column-divider-mobile {
		margin-bottom: clamp(0px, 5%, 10px);
		display: block;
	}

	.home-pricing-column ul {
		padding-left: 0;
	}

	.home-pricing-column ul li {
		padding-left: clamp(20px, 9%, 40px);
		font-size: clamp(15px, 4.1vw, 20px);
	}

	.home-pricing-column ul li::before {
		width: clamp(10px, 2.7vw, 18px);
		height: clamp(10px, 2.7vw, 18px);
	}

	.home-pricing-column button {
		padding-top: clamp(11px, 4.5%, 17px);
		font-size: clamp(19px, 5.2vw, 30px);
		height: clamp(38px, 10.3vw, 60px);
	}
}

/************************
***** TEXT SECTIONS ****
************************/

.home-body-text-container {
	padding-bottom: 10%;
}

.general-text-container .home-body-text-space {
	margin-bottom: 15%;
}

.photo-album-container {
	position: relative;
}

#home-between-text-section {
	height: 28.6vw;
}

#home-polaroid-photo-01 {
	top: -2.5%;
	right: 4.7%;
	transform: rotate(15deg);
}

#home-polaroid-photo-02 {
	top: 73.8%;
	right: 18.7%;
	transform: rotate(-8deg);
}

#home-dice-doodle {
	position: absolute;
	width: 8.25%;
	top: 6.91%;
	right: 36.14%;
}

#home-mimic-doodle {
	position: absolute;
	width: 11.7%;
	top: 27.44%;
	right: 26.56%;
}

#home-sparkles-doodle {
	position: absolute;
	width: 7.6%;
	top: 63.38%;
	right: 35.88%;
	transform: rotate(-12deg);
}

#home-dragon-doodle {
	position: absolute;
	width: 13.67%;
	top: 99.67%;
	right: 2.38%;
}

#home-prop-green-pen {
	width: 26%;
	top: 82.8%;
	right: -9.78%;
	transform: rotate(24deg);
}

#home-prop-red-d12 {
	width: 5.5%;
	top: 59.24%;
	right: 18.19%;
	transform: rotate(0deg);
}

#home-prop-purple-d6 {
	width: 4.2%;
	top: 37.27%;
	left: 47.9%;
	transform: rotate(22deg);
}

#home-hand-doodle {
	position: absolute;
	width: 10%;
	top: 21.82%;
	left: 33.33%;
	transform: rotate(31deg);
}

#home-polaroid-photo-03 {
	top: 9%;
	left: 25.65%;
	transform: rotate(11deg);
}

#home-polaroid-photo-04 {
	top: 54.03%;
	left: 4.82%;
	transform: rotate(-4deg);
}

#home-flayer-doodle {
	position: absolute;
	width: 14.4%;
	top: -15.85%;
	left: 15.55%;
	transform: rotate(-11deg);
}

#home-book-doodle {
	position: absolute;
	width: 10.13%;
	top: 57.42%;
	left: 24.11%;
	transform: rotate(-12deg);
}

#home-ink-doodle {
	position: absolute;
	width: 6.56%;
	top: 76.61%;
	left: 35.62%;
}

#home-prop-spectator {
	width: 15.5%;
	top: 22.46%;
	left: 1.11%;
	transform: rotate(-35deg);
}

#home-prop-blue-d8 {
	width: 5.2%;
	top: 49.64%;
	left: 37.19%;
	transform: rotate(22deg);
}

#home-polaroid-photo-05 {
	bottom: 86.73vw;
	left: 55.12%;
	transform: rotate(15deg);
}

#home-polaroid-photo-06 {
	bottom: 13vw;
	left: 20.8%;
	transform: rotate(-8deg);
}

#home-prop-red-d12-02 {
	width: 12%;
	bottom: 54.5vw;
	left: 44.72%;
	transform: rotate(0deg);
}

#home-polaroid-photo-07 {
	bottom: 75.2vw;
	left: 57.6%;
	transform: rotate(11deg);
}

#home-polaroid-photo-08 {
	bottom: 13.86vw;
	left: 15.26%;
	transform: rotate(-4deg);
}

#home-prop-spectator-02 {
	width: 41%;
	bottom: 64.46vw;
	left: 1.73%;
	transform: rotate(-35deg);
}

#home-prop-blue-d8-02 {
	width: 12%;
	bottom: 64.2vw;
	left: 79.86%;
	transform: rotate(22deg);
}

@media (min-width: 768px) {

	.home-body-text-container:nth-of-type(4) {
		padding-bottom: 4.75%;
	}

	.home-left-text-container {
		margin-left: 6%;
	}

	.home-right-text-container {
		margin-right: 6%;
		margin-left: auto;
	}

}

@media (min-width: 1024px) {
	.home-body-text-container:nth-of-type(3) {
		padding-bottom: 5%;
	}
}

@media (max-width: 1023px) {

	.home-body-text-container {
		padding-bottom: 5%;
	}

	#home-polaroid-photo-02 {
		top: 72.8%;
	}

	#home-dice-doodle {
		top: 8.91%;
	}

	#home-mimic-doodle {
		top: 30.44%;
	}

	#home-sparkles-doodle {
		top: 61.38%;
	}

	#home-prop-green-pen {
		top: 72.8%;
	}

	#home-prop-red-d12 {
		top: 50.24%;
	}

	#home-prop-purple-d6 {
		left: 55.9%;
	}

	#home-hand-doodle {
		left: 38.33%;
	}

	#home-polaroid-photo-03 {
		top: 13%;
	}

	#home-polaroid-photo-04 {
		top: 62.03%;
	}

	#home-flayer-doodle {
		top: -9.85%;
	}

	#home-book-doodle {
		top: 52.42%;
		left: 25.11%;
	}

	#home-prop-spectator {
		top: 30.46%;
		left: 2.11%;
	}

	#home-prop-blue-d8 {
		top: 42.64%;
	}



}

@media (max-width: 767px) {

	#home-between-text-section {
		display: none;
	}

	.home-body-text-container {
		padding-bottom: 145.33vw;
	}

	#home-dice-doodle {
		width: 18.31%;
		bottom: 99.46vw;
		left: 8.53%;
		top: unset;
	}

	#home-mimic-doodle {
		width: 25.99%;
		bottom: 79.73vw;
		left: 22.13%;
		top: unset;
	}

	#home-sparkles-doodle {
		width: 16.88%;
		bottom: 55.2vw;
		left: 3.33%;
		top: unset;
		transform: rotate(-27deg);
	}

	#home-dragon-doodle {
		width: 30.35%;
		bottom: 14.93vw;
		left: 66.91%;
		top: unset;
	}

	#home-flayer-doodle {
		width: 28.68%;
		bottom: 91.4vw;
		left: 37.6%;
		top: unset;
	}

	#home-book-doodle {
		width: 20.17%;
		bottom: 45.33vw;
		left: 52%;
		top: unset;
	}

	#home-ink-doodle {
		width: 13.06%;
		bottom: 25.6vw;
		left: 65.6%;
		top: unset;
	}
}

/************************
***** TESTIMONIALS ****
************************/

.home-testimonial-section {
	background: var(--main-green-background);
	overflow: hidden;
	position: relative;
}

.home-testimonial-open {
	border-bottom-left-radius: 10vw;
	border-bottom-right-radius: 10vw;
	background-color: var(--main-background-color);
}

.home-testimonial-close {
	height: 10vw;
	border-top-left-radius: 10vw;
	border-top-right-radius: 10vw;
	background-color: var(--main-background-color);
}

.home-testimonial-open .home-columns-title {
	padding-bottom: 5%;
	padding-top: 5%;
}

#home-testimonial-container {
	background: var(--main-green-background);
	max-width: none !important;
	position: relative;
	height: calc(3 * 1/4 * 100vh + 3 * (2 * 150px + 41.5vh) + 2 * 300px);
}

#home-testimonial-container .home-testimonial {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	opacity: 0;
	max-width: 952px;
	text-align: center;
	pointer-events: none;
	width: 60%;
}

.home-testimonial h3 {
	color: white;
	font-family: bookmania, sans-serif;
	margin: 0;
	font-size: clamp(48px, 4.5vw, 75px);
}

.home-testimonial p {
	margin: 0;
	font-style: italic;
	margin-top: 20px;
	line-height: 1;
	font-family: bookmania, sans-serif;
	color: white;
	font-size: clamp(25px, 2.3vw, 30px);
}

@media (max-width: 1023px) {		
	.home-testimonial h3 {
		font-size: clamp(38px, 4.8vw, 48px);
	}

	.home-testimonial p {
		font-size: clamp(22px, 2.7vw, 25px);
	}
}

@media (max-width: 767px) {
	#home-testimonial-container .home-testimonial {
		width: 84%;
	}

	.home-testimonial h3 {
		font-size: clamp(25px, 6.7vw, 38px);
	}

	.home-testimonial p {
		margin-top: 15px;
		font-size: clamp(17px, 4.4vw, 22px);
	}
}




/* SESSION PAGE */

/************************
***** FIRST SECTION ****
************************/

.one-pager-first-section-container {
	background: var(--main-background-color);
	width: 100%;
	min-height: 28vw;
	border-top-left-radius: 28vw;
	border-top-right-radius: 28vw;
	padding-top: 85px;
	position: relative;
	min-height: calc(100vh - 74px);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.one-pager-first-text-container {
	margin: 0 auto;
}

.general-text-bolder {
    font-weight: 500;
}

.general-text-container .session-time-duration {
    margin-bottom: 25px;
}

.one-pager-first-choose-setting-container {
	display: flex;
	justify-content: center;
	margin-top: 140px;
	margin-bottom: 55px;
}

.one-pager-first-choose-setting-btn {
	display: flex;
	flex-direction: column;
	cursor: pointer;
}

.one-pager-first-choose-setting-btn h3 {
	margin: 0;
	font-family: bookmania, sans-serif;
	font-weight: 600;
	font-size: clamp(28px, 2.5vw, 32px);
}

.one-pager-first-choose-setting-btn img {
	filter: invert(0%) sepia(83%) saturate(7500%) hue-rotate(210deg) brightness(0) contrast(115%);
	transform: rotate(90deg);
	height: 40px;
}

@media (max-width: 1023px) {
	
	.one-pager-first-choose-setting-btn h3 {
		font-size: clamp(24px, 2.7vw, 28px);
	}

}

@media (max-width: 767px) {
	
	.one-pager-first-section-container {
		min-height: unset;
	}

	.one-pager-first-choose-setting-container {
		display: none;
	}

	.one-pager-first-choose-setting-btn h3 {
		font-size: clamp(22px, 5vw, 24px);
	}
}




/* CONTACT PAGE */
.first-section-page {
	padding-top: 85px;
}

#team-polaroid-container {
	height: calc(2 * 20.064vw + 16vw);
	position: relative;
}

.team-polaroid-bottom-container {
	height: 5vw;
}

.double-colomn-text-container {
	display: flex;
	justify-content: space-between;
}

.next-text-block-container {
	margin-top: 100px;
}

#contact-form-scroll-text {
	cursor: pointer;
}

#contact-form-text-container {
	margin-bottom: 7vw;
}

.contact-form-container {
	position: relative;
}

#contact-page-contact-form-container {
	padding-top: 30px;
}

#contact-page-form {
	margin: 0 6%;
	transition: all 0.35s ease-in-out;
}

.contact-form-container form label {
	display: block;
	margin-bottom: 5px;
	letter-spacing: -0.5px;
	line-height: 1.15;
	font-size: 17px;
    	font-family: franklin-gothic-urw, sans-serif;
}

.contact-form-container form input, .contact-form-container form textarea {
	max-width: 100%;
	width: 100%;
	height: 38px;
	color: #333;
	vertical-align: middle;
	background-color: #fff;
	padding: 8px 12px;
	font-size: 15px;
	line-height: 1.15;
	display: block;
	border: none !important;
	text-decoration: none;
	outline: none;
}

.contact-form-container form input {
	border-radius: 8px;
	margin-bottom: 15px;
}

.contact-form-container form textarea {
	min-height: 200px;
	resize: none;
	border-radius: 8px 8px 0 0;
}

.character-count-container {
	text-align: right;
	max-width: 100%;
	border-radius: 0 0 8px 8px;
	width: 100%;
	height: 38px;
	color: #333;
	vertical-align: middle;
	background-color: #fff;
	margin-bottom: 15px;
	padding: 8px 12px;
	line-height: 1.15;
	display: block;
	border: none !important;
	text-decoration: none;
	outline: none;
    	font-family: franklin-gothic-urw, sans-serif;
    	font-size: 15px;
}

.contact-form-container form textarea::-webkit-scrollbar-track
{
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0);
	background-color: transparent;
	border-radius: 10px;
}

.contact-form-container form textarea::-webkit-scrollbar
{
	width: 6px;
	background-color: transparent;
}

.contact-form-container form textarea::-webkit-scrollbar-thumb
{
	background-color: #C8CBCE;
	border-radius: 10px;
}

.contact-form-container form input.contact-form-submit-btn {
	color: white;
	font-weight: 600;
	font-family: bookmania, sans-serif;
	border-radius: 10px;
	font-size: clamp(20px, 1.5vw, 32px);
	height: 4vw;
	padding-top: clamp(5px, 1.45%, 12px);
	margin-top: 45px;
	width: 42%;
	background-color: #1a4620 !important;
	margin-left: auto;
	margin-right: auto;
	display: block;
}

#contact-spinner-img {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	max-width: 75px;
	filter: invert(1);
	opacity: 0.5;
	display: none;
}

.contact-sent-form-container {
	position: absolute;
	width: 100%;
	display: flex;
	align-items: center;
	flex-direction: column;
	top: 50%;
	transform: translateY(-50%);
	display: flex;
	opacity: 0;
	pointer-events: none;
	transition: all 0.35s ease-in-out;
	left:0;
}

.contact-sent-form-container img {
	width: 13.67%;
}

.contact-sent-form-container .contact-sent-form-title {
	font-weight: 600;
	font-family: bookmania, sans-serif;
	margin: 0;
	margin-top: 30px;
	font-size: clamp(40px, 3.5vw, 45px);
}

.contact-sent-form-container p {
	margin-bottom: 0;
	font-family: franklin-gothic-urw, sans-serif;
	color: black;
	line-height: 1.1;
	font-size: clamp(20px, 1.8vw, 24px);
}

@media (max-width: 1023px) {

	#home-polaroid-photo-02 {
		top: 72.8%;
	}

	.contact-form-container form input.contact-form-submit-btn {
		height: 5vw;
		font-size: clamp(17px, 2.1vw, 20px);
	}

	.contact-sent-form-container img {
		width: 20%;
	}

	.contact-sent-form-container .contact-sent-form-title {
		font-size: clamp(35px, 4.3vw, 40px);
	}

	.contact-sent-form-container p {
		font-size: clamp(18px, 2.1vw, 20px);
	}
}

@media (max-width: 767px) {
	.mobile-break::after {
		content: "\A";
		white-space: pre;
	}

	#team-polaroid-container {
		height: calc(3.5 * 41.7088vw + 35vw);
	}
	
	.team-polaroid-bottom-container {
		height: 15vw;
	}

	.double-colomn-text-container {
		flex-direction: column;
	}

	#contact-form-text-container {
		margin-bottom: 21vw;
	}

	#contact-page-contact-form-container {
		padding-top: 15px;
	}

	#contact-page-form {
		width: 77%;
		margin: auto;
	}

	.contact-form-container form input.contact-form-submit-btn {
		padding-top: 3%;
		height: 9vw;
		font-size: clamp(16px, 4vw, 30px);
		width: 100%;
		margin-top: 30px;
	}

	.contact-sent-form-container img {
		width: 50%;
	}

	.contact-sent-form-container .contact-sent-form-title {
		font-size: clamp(35px, 7.6vw, 40px);
	}

	.contact-sent-form-container p {
		font-size: clamp(18px, 4vw, 22px);
	}
}




/* INFO PAGE */

/**************************
***** ALGEMEEN COLUMNS ****
**************************/

.info-body-text-container {
	padding-bottom: 20vw;
}

@media (max-width: 767px) {
	.info-body-text-container {
		padding-bottom: 145.33vw;
	}
}




/* BLOG PAGE */
.ast-container {
	padding: 0;
	margin: 0;
}

.ast-plain-container.ast-no-sidebar #primary {
	margin: 0;
}

.site-content .ast-container {
	display: block;
}

/**********************
***** HERO SECTION ****
**********************/
.blog-page-img-container {
	overflow: hidden;
  text-align: center;

}

.blog-page-img-container img {
  object-fit: cover;
  width: 100%;
}

@media (max-width: 767px) {
  .blog-page-img-container img {
	height: 50vw;
	object-position: center 10%; 
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .blog-page-img-container img{
	height: 40vw;
	object-position: center 10%; 
	}
}

@media (min-width: 1024px) {
  .blog-page-img-container img {
	height: 18vw;
	max-height: 300px;
	object-position: center 15%;
	}
}


.general-text-container .blog-hero-header {
	font-size: clamp(38px, 4vw, 60px);	
	font-weight: 750;
	margin-bottom: 0.5%;
}

.general-text-container .blog-page-divider {
	width: 100%;
	margin-bottom: 1%;
}

.general-text-container > .blog-page-auteur-section {
	font-size: clamp(10px, 1.3vw, 13px);
	margin-bottom: calc(1.5% + 5px);
}

/***************************
***** MAIN TEXT SECTION ****
***************************/
.blog-page-main-section-container {
	background: var(--main-background-color);
	width: 100%;
	min-height: 28vw;
	position: relative;
	min-height: calc(100vh - 74px);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	overflow-y: hidden;
}

@media (max-width: 767px) {
  .blog-page-text-section {
    width: 77%;
    margin: auto;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .blog-page-text-section {
    width: 62%;
    margin: auto;
  }
}

@media (min-width: 1024px) {
  .blog-page-text-section {
    width: 50%;
    margin: auto;
  }
}

@media (min-width: 1200px) and (max-width: 1023px) {
  .blog-page-text-section {
    width: 45%;
    margin: auto;
  }
}

.blog-page-main-section-container h1,
.blog-page-main-section-container h2 {
	margin-top: 5%;
	margin-bottom: 2%;
}

#table-of-contents {
	margin-top 1%;
  font-size: clamp(27px, 3vw, 35px);
}

.blog-page-main-section-container p {
	margin-top: 1%;
	margin-bottom: 3%;
}

.blog-page-main-section-container ul {
	margin: 5px auto 0 auto;
}

.blog-page-main-section-container a {
  color: #0d0501;
  font-weight: 500;
}

/************************
***** bol.com Styles ****
************************/
.general-text-container .blog-page-bol-items-container {
  display: flex;
  flex-direction: column;
	row-gap: 24px; /* Space between each item container */
  height: 100%;
	width: 100%;
  background: none;
}

.blog-page-bol-flex-container {
  display: flex;
  width: 100%; /* Full width of the parent container */
  height: 100%;
  column-gap: 24px; /* Space between the image and the text */
  align-items: flex-start; /* Aligns items to the top of the container */
}

.blog-page-image-container {
  width: 50%; /* Image container takes up half the width */
}

.blog-page-image-container img {
  width: 100%; /* Image takes full width of its container */
  height: auto; /* Height is set automatically to maintain aspect ratio */
  display: block;
}

.blog-page-price-grid {
  width: 50%; /* Button and price container takes up the remaining half */
  display: grid;
  grid-template-areas: 
    'title'
    'price'
    'button';
  grid-template-rows: 2.5fr 1fr 1fr; 
  grid-template-columns: 100%;
  justify-content: center;
  align-items: center;
}


@media (max-width: 767px) {
  .blog-page-price-grid {
     grid-template-rows: 2fr 0.5fr 1fr; 
  }
}

.blog-page-bol-items-container .blog-page-heading-price {
  font-family: bookmania, sans-serif;
  line-height: 1;
  font-weight: 600;
  color: #c96d36;
	margin: 0;
	font-size: clamp(19px, 3vw, 30px);
	justify-self: start;
	align-self: start;
}

.blog-page-bol-items-container .blog-page-bol-product-h {
  font-family: bookmania, sans-serif;
	margin: 0;
	font-size: clamp(19px, 3vw, 35px);
}

.bol-button {
	margin-top: min(10px, 2%);
}

/* COMMENTS AREA */
.comments-area {
  margin: auto auto 20px auto;	

}

@media (max-width: 767px) {
  .comments-area {
    width: 77%;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .comments-area {
    width: 64%;
  }
}

@media (min-width: 1024px) {
  .comments-area {
    width: 56%;
  }
}

@media (min-width: 1200px) and (max-width: 1023px) {
  .comments-area {
    width: 50%;
  }
}




/* PRIVACY / CODE OF CONDUCT */

.only-section {
	padding-bottom: 85px;
}




/* WERK POPUP */
.werk-popup__container {
	position: fixed;
	width: min(410px, calc(100% - 40px));
	background: white;
	border-radius: 10px;
	bottom: 25px;
	left: 20px;
	padding: 15px 20px 15px;
	z-index: 100;
	box-shadow: 0 2px 5px 2px rgba(0, 0, 0, .1);
	display: none;
}

.werk-popup__close-button {
	width: 15px;
	position: absolute;
	right: 20px;
	cursor: pointer;
}

h3.werk-popup__title {
	line-height: 1;
	margin-top: 30px;
	margin-bottom: 10px;
	font-family: bookmania, sans-serif;
	padding: 0;
	font-size: 26px;
	font-weight: bold;
	text-align: center;
}

p.werk-popup__text {
	margin-bottom: 15px;
	font-family: franklin-gothic-urw, sans-serif;
	color: black;
	line-height: 1.1;
	font-size: 17px;
	text-align: center;
	padding: 0 15px;
}

.werk-popup__button {
	color: white;
	font-weight: 600;
	margin-top: auto;
	background: black;
	font-family: bookmania, sans-serif;
	border-radius: 10px;
	padding-top: clamp(15px, 6%, 17px);
	font-size: 20px;
	position: relative;
	width: 100%;
}

.werk-popup__link {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
}

@media (max-width: 767px) {
	h3.werk-popup__title {
		font-size: 22px;
	}

	p.werk-popup__text {
		padding: 0;
	}
}
