/* 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;
}

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

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

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

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

.footer-company-logo-container .footer-company-logo {
	padding-top: 0px;
	padding-bottom: 3px;
	margin-left: 0;
	display: inline-block;
}

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

#footer-company-logo-insta {
	margin-left: 30px;
}

.footer-link-list-wrapper {
	display: flex;
	gap: 4vw;
}

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

.footer-link-list-wrapper .footer-link-list-container > * {
	color: white;
	font-family: franklin-gothic-urw, sans-serif;
	font-weight: 300;
	margin: 0;
	margin-bottom: clamp(15px, 1.2vw, 17px);
	font-size: clamp(17px, 1.6vw, 19px);
	line-height: 1;
}

.footer-link-list-wrapper .footer-link-list-container > *:first-child {
	font-family: bookmania, sans-serif;
	font-weight: 600;
	font-size: clamp(22px, 2.2vw, 24px);
	margin-bottom: clamp(20px, 1.7vw, 22px);
}

.footer-link-list-container:last-child {
	margin-left: auto;
}

.footer-link-list-wrapper .footer-link-list-container:last-child > div {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: clamp(45px, 4vw, 60px);
	margin-bottom: clamp(35px, 3.3vw, 45px);
}

.footer-link-list-wrapper .footer-link-list-container:last-child > div img {
	flex: 1;
	max-width: 150px;
	width: 12vw;
}

@media (max-width: 1023px) {

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

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

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

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

	.footer-link-list-wrapper .footer-link-list-container:last-child > div {
		gap: clamp(30px, 3.5vw, 45px);
		margin-bottom: 35px;
	}

}

@media (max-width: 767px) {

	.footer-company-logo-container {
		display: block;
		height: unset;
	}

	.footer-company-logo-container > a {
		height: 30px;
		display: block;
	}

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

	#footer-divider-desktop {
		display: none;
	}

	#footer-divider-mobile {
		display: block;
	}

	.footer-link-list-wrapper {
		gap: 30px;
		flex-direction: column;
		margin-top: 45px;
	}

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

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

	.footer-link-list-container:last-child {
		margin-left: 0;
	}

	.footer-link-list-wrapper .footer-link-list-container:last-child > div {
		gap: clamp(30px, 12vw, 60px);
		margin-bottom: 25px;
		justify-content: start;
	}

	.footer-link-list-wrapper .footer-link-list-container:last-child > div img {
		flex: unset;
		width: 35vw;
	}
}




/* 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;
}

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

.dragging.prop-photo-container > img:first-child {
	opacity: 0.2;
}

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

.prop-photo-container {
	position: absolute;
	z-index: 98;
	cursor: move;
}

.prop-photo-shadow {
	position: absolute;
	opacity: 0.5;
	width: 100%;
	height: 100%;
	filter: blur(2px);
	z-index: -1;
}

.prop-photo-container img {
	transition: 0.35s all ease-in-out;
}

#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;
	}

	.prop-photo-container.desktop {
		display: none;
	}

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

	#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;
}

.polaroid-photo-container {
	position: absolute;
	width: 16.5vw;
	z-index: 98;
	cursor: move;
}

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

.polaroid-photo-shadow {
	background: rgba(0,0,0,0.15);
	position: absolute;
	width: 100%;
	height: 100%;
	filter: blur(3px);
	z-index: -1;
	transition: 0.35s all ease-in-out;
}

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

	.polaroid-photo-container {
		width: 17.5vw;
	}
}

@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);
	}

	.polaroid-photo-container {
		width: 34.3vw;
	}

	.polaroid-photo-container.desktop {
		display: none;
	}
}




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

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

.polaroid-photo-text-container {
	position: absolute;
	left: 6.6%;
	transform: translateY(50%);
	bottom: 10.6%;
}

.polaroid-photo-text-container .polaroid-photo-text-naam {
	font-family: bookmania, sans-serif;
	font-weight: 600;
	margin: 0;
	line-height: 1;
	font-size: clamp(15px, 1.4vw, 17px);
}

.polaroid-photo-text-container .polaroid-photo-text-desc {
	font-family: franklin-gothic-urw, sans-serif;
	font-weight: 400;
	margin: 0;
	line-height: 1;
	font-size: clamp(13px, 1.25vw, 15px);
}

.doodle {
	position: absolute;
}

.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) {

	.polaroid-photo-text-container .polaroid-photo-text-naam {
		font-size: clamp(12px, 1.5vw, 15px);
	}

	.polaroid-photo-text-container .polaroid-photo-text-desc {
		font-size: clamp(10px, 1.2vw, 13px);
	}

	#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);
	}

	.polaroid-photo-text-container .polaroid-photo-text-naam {
		font-size: clamp(12px, 2.3vw, 17px);
	}

	.polaroid-photo-text-container .polaroid-photo-text-desc {
		font-size: clamp(10px, 2.3vw, 15px);
	}

	.doodle.desktop {
		display: none;
	}
	
	.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;
	}
}
