/*!
Theme Name: Hoort
Theme URI: http://underscores.me/
Author: Hoort
Author URI: https://hoort.dev
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: hoort
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

Hoort is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
	--white: #FFFFFF;
	--black: #000414;
	--blue: #0a74ff;

	--headingFont: 'Poppins';
	--bodyFont: 'Poppins';
	--bttnFont: 'Futura Cyrillic';
	--brother: 'BROTHER';
	--fallbackFont: 'sans-serif';

	--grid-container: 1200px;
	--section-padding: 6rem;
	--grid-padding: calc((100vw - var(--grid-container)) / 2);
}
html {
	scroll-behavior: smooth;
}
body {
	font-family: var(--bodyFont), var(--fallbackFont);
	font-size: 1.125rem;
	line-height: 1.2;
	color: var(--black);

	margin-top: 0.25rem;
}
h1, h2, h3, h4, h5, h6 {
	font-family: var(--headingFont), var(--fallbackFont);
}
h1 {
	font-size: 4rem;
	font-weight: 800;
	text-transform: uppercase;
}
h1 span {
	font-family: var(--brother), var(--fallbackFont);
	font-weight: 700;
	color: var(--blue);
}
h2 {
	font-size: 3rem;
	font-weight: 800;
	text-transform: uppercase;
	margin-bottom: 0.375rem;
}
h2 span {
	font-family: var(--brother), var(--fallbackFont);
	font-weight: 700;
	color: var(--blue);
}
h2 span.white {
	color: white;
}
section {
	padding-top: var(--section-padding);
}
.radial-blur-1 {
	position: absolute;
	top: 0;
	right: 0;
	background: transparent radial-gradient(closest-side at 50% 50%, #0a74ff 0%, #0A74FF00 100%) 0% 0% no-repeat padding-box;
	opacity: 0.16;
	width: 900px;
	height: 900px;
	z-index: -1;
	pointer-events: none;
}
.radial-blur-2 {
	position: absolute;
	top: 50%;
	left: 0;
	background: transparent radial-gradient(closest-side at 50% 50%, #0a74ff 0%, #0A74FF00 100%) 0% 0% no-repeat padding-box;
	opacity: 0.16;
	width: 1400px;
	height: 1400px;
	transform: translateX(-50%);
	z-index: -1;
	pointer-events: none;
}

#masthead .site-branding img {
	width: 110px;
}
.site-header__inner {
	padding: 1rem 0;
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	grid-gap: 1rem;
}
.main-navigation {
	padding-top: 1rem;
	width: auto;
}
.main-navigation ul {
	display: flex;
	grid-gap: 2rem;
}
.main-navigation a {
	font-weight: 700;
	text-transform: uppercase;
	color: var(--black);
}
.site-header__bttn-wrapper {
	padding-top: 6px;
	display: flex;
	justify-content: flex-end;
	align-items: flex-start;
}

.container {
	width: 100%;
	max-width: var(--grid-container);
	margin-right: auto;
	margin-left: auto;
}
.container--small {
	max-width: 36rem;
}
.wysiwyg > :first-child {
	margin-top: 0;
}
.wysiwyg > :last-child {
	margin-bottom: 0;
}
.wysiwyg--nospacing > * {
	margin: 0;
}

.bttn-group {
	padding-top: 1.25rem;
	display: flex;
	flex-flow: row wrap;
	grid-gap: 1rem;
}
.bttn-group--center {
	justify-content: center;
}
.bttn {
	font-family: var(--bttnFont), var(--fallbackFont);
	font-size: 1.125rem;;
	line-height: 1.2;
	font-weight: 700;
	text-decoration: none;
	text-transform: uppercase;
	padding: 10px 24px;
	background-color: var(--blue);
	color: var(--white);
	border-radius: 9999px;
	display: block;
	width: max-content;
	transition: .3s ease-in-out;
	border: 2px solid var(--blue);
}
.bttn:visited {
	color: var(--white);
}
.bttn:hover {
	color: var(--blue) !important;
	background-color: var(--white);
}
.bttn.outline {
	border: 2px solid white;
}
.text-center {
	text-align: center;
}
.relative {
	position: relative;
}
.pre-line {
	white-space: pre-line;
}
.image-section .image-border {
	width: 100%;
	height: 546px;
}
.image-border {
	border-radius: 2rem;
	background-color: #ffffff;
	border: 20px solid #ffffff;
	box-shadow: 0 0 20px rgb(0 0 0 / 10%);
}
.image-section__text-block {
	max-width: 25rem;
	padding: 2rem 2.5rem;
	background-color: var(--blue);
	border-radius: 1rem;
}
.image-section__text-block--right {
	margin-top: -6rem;
	margin-left: auto;
	margin-right: 3rem;
}
.image-section__text-block p {
	font-size: 2rem;
	font-weight: 800;
	color: var(--white);
	text-transform: uppercase;
}
.image-section__text-block p span {
	font-family: var(--brother), var(--fallbackFont);
	font-weight: 700;
}
.auto-loop-swiper {
	margin-top: 5rem;
	margin-bottom: 5rem;
	transform: skewY(-3deg);
}
.auto-loop-swiper .auto-loop-swiper__slide {
	position: relative;
	font-family: var(--brother), var(--fallbackFont);
	font-size: 4rem;
	line-height: 1.4;
	font-weight: 700;
	width: max-content;
}
.auto-loop-swiper .auto-loop-swiper__slide:after {
	content: '*';
	font-size: 8rem;
	position: absolute;
	left: 100%;
	top: 20%;
	transform: translateX(35px);
}
.auto-loop-swiper .swiper-wrapper {
	transition-timing-function: linear !important;
}
.text-image-section__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-gap: 2rem;
}
.payment-switcher--item p {
	padding: 10px 20px;
	border-radius: 100px;
	font-weight: bold;
	margin: 0;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 10px;
}
.payment-switcher--item p span {
	color: white;
	font-size: 11px;
	background-color: var(--blue);
	border-radius: 100px;
	padding: 4px;
}
.payment-switcher--item p.active {
	background-color: #f5f5f5;
}
.payment-switcher {
	display: flex;
	align-items: center;
	padding: 10px;
	grid-gap: 0px;
	background-color: white;
	border-radius: 100px;
}
.title-with-elements {
	display: flex;
	justify-content: space-between;
	align-items: end;
}
.packages-container {
	margin-top: 3rem;
}
.packages-container ul, ol {
	margin: 0;
}
.package-item .bttn {
	margin-top: 1rem;
}
.package-item h3 {
	margin-top: 0;
}
.package-item {
	max-width: 500px;
	margin: auto;
	padding: 40px 20px;
	background-color: white;
	border-radius: 20px;
	box-shadow: 0 0 20px rgb(0 0 0 / 10%);
}
.functie-swiper .swiper-slide {
	background-color: white;
	box-shadow: 0 0 20px rgb(0 0 0 / 10%);
	border-radius: 40px;
}
.functie-swiper {
	margin-top: 2rem;
}
.package-item h3 {
	font-family: var(--brother), var(--fallbackFont);
	font-size: 44px;
	text-align: center;
	margin: 0;
}
.package-item--subheader {
	display: flex;
	justify-content: center;
	margin: 0;
}
.package-item--price {
	font-family: var(--brother), var(--fallbackFont);
	font-size: 80px;
	line-height: 1;
	margin-bottom: -18px;
}
.package-item--price-container {
	display: flex;
	justify-content: center;
	align-items: end;
	grid-gap: 4px;
	padding-left: 38px;
	margin: 2rem 0;
}
.package-item .bttn {
	margin: 2rem auto 0;
}
.package-item ul li {
	display: inline-block;
	position: relative;
	padding-left: 30px;
	margin-bottom: 1em;
}
.package-item ul li::before {
	content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960" width="24px" fill="%23007aff"><path d="M382-240 154-468l57-57 171 171 367-367 57 57-424 424Z"/></svg>');
	position: absolute;
	left: 0;
	top: 0;
}
footer#colophon, footer#colophon a {
	color: white;
	text-decoration: none;
}
footer#colophon {
	background-color: var(--blue);
	border-radius: 100px 100px 0 0;
	padding-top: 4rem;
	margin-top: var(--section-padding);
}
.site-footer--content {
	display: flex;
	gap: 4rem;
}
.site-footer--copyright p {
	margin: 0;
}
.site-footer--copyright {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
	padding: 20px 0;
	border-top: 2px solid #f5f5f5;
}
.site-footer--copyright div {
	display: flex;
	gap: 2rem;
}
.site-footer--content h2 {
	margin-top: 0;
	line-height: 1em;
}
.site-footer--content {
	padding-bottom: 4rem;
}
.site-footer--content-left h2 {
	font-size: 24px;
}
.site-footer--content-left a {
	font-weight: 500;
}
.site-footer--content-left img {
	margin-top: calc((4rem + 22%)* -1);
}
.site-footer--content-left--items a:first-of-type {
	margin-right: 2rem;
}
.site-footer--content-left--items a:last-of-type {
	margin-top: .5rem;
	display: block;
}
.site-footer--content-left--items {
	margin-top: -4rem;
}
.site-footer--content-left--items h2 {
	margin-bottom: 1rem;
}
.functie-block__content {
	padding: 20px;
}
.functie-block__content h3 {
	margin-top: 0;
}
.functie-swiper .swiper-slide {
	height: auto;
}
.functie-swiper-container {
	margin-top: 2rem;
}
.functie-swiper {
	padding: 20px !important;
	padding-left: var(--grid-padding) !important;
	margin: -20px;
}
.container.relative .swiper-button-prev, .container.relative  .swiper-button-next {
	background-color: var(--blue);
	border-radius: 100px;
	width: 35px;
	height: 35px;
	padding: 0px;
	position: relative;
	top: unset;
	left: unset;
	right: unset;
	margin: unset;
}
.swiper-button-container {
	display: flex;
	justify-content: center;
	gap: 1rem;
	margin-top: 1rem;
}
.swiper-button-next:after {
	content: '' !important;
	background-image: url(/wp-content/uploads/2025/04/arrow_right_alt_24dp_5F6368_FILL0_wght400_GRAD0_opsz24-1.svg);
	width: 24px;
	height: 24px;
}
.swiper-button-prev:after {
	content: '' !important;
	background-image: url(/wp-content/uploads/2025/04/arrow_left_alt_24dp_5F6368_FILL0_wght400_GRAD0_opsz24-1.svg);
	width: 24px;
	height: 24px;
}
.sticker {
	width: 200px;
	height: 200px;
	position: absolute;
	right: -65px;
	top: 0;
	bottom: 0;
	transform: translateY(50%);
}
.hamburger-menu {
	width: 40px;
	height: 24px;
	position: relative;
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
	-webkit-transition: .5s ease-in-out;
	-moz-transition: .5s ease-in-out;
	-o-transition: .5s ease-in-out;
	transition: .5s ease-in-out;
	cursor: pointer;
	display: none;
	z-index: 50;
}
.hamburger-menu span {
	display: block;
	position: absolute;
	height: 4px;
	width: 100%;
	background: var(--blue);
	border-radius: 9px;
	opacity: 1;
	left: 0;
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
	-webkit-transition: .25s ease-in-out;
	-moz-transition: .25s ease-in-out;
	-o-transition: .25s ease-in-out;
	transition: .25s ease-in-out;
}
.hamburger-menu span:nth-child(1) {
	top: 0px;
}
.hamburger-menu span:nth-child(2), .hamburger-menu span:nth-child(3) {
	top: 10px;
}
.hamburger-menu span:nth-child(4) {
	top: 20px;
}
.hamburger-menu--open .hamburger-menu span:nth-child(1) {
	top: 18px;
	width: 0%;
	left: 50%;
}
.hamburger-menu--open .hamburger-menu span:nth-child(2) {
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
}
.hamburger-menu--open .hamburger-menu span:nth-child(3) {
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
.hamburger-menu--open .hamburger-menu span:nth-child(4) {
	top: 10px;
	width: 0%;
	left: 50%;
}
.container--site-navigation {
	display: flex;
	gap: 2rem;
}

/* Responsive */

@media screen and (max-width: 1250px) {
	:root {
		--grid-container: 1080px;
	}
}

@media screen and (max-width: 1080px) {
	:root {
		--grid-container: calc(100vw - 2rem);
		--section-padding: 3rem;
	}
	footer#colophon {
		margin-top: calc(var(--section-padding) * 2);
	}
	.hamburger-menu {
		display: block;
		position: absolute;
		right: var(--grid-padding);
	}
	.hamburger-menu--open {
		overflow: hidden;
	}
	.container--site-navigation {
		position: fixed;
		height: 100%;
		width: max-content;
		max-width: 100%;
		right: 0;
		top: 0;
		background-color: var(--white);
		z-index: 25;
		box-shadow: 0 0 20px rgb(0 0 0 / 10%);
		display: flex;
		flex-direction: column;
		gap: 1rem;
		padding: 2rem;
		transition: .3s ease-in-out;
		transform: translatex(100%);
		padding-top: 100px;
	}
	.hamburger-menu--open .container--site-navigation {
		transform: translatex(0%);
	}
	.main-navigation ul#primary-menu {
		display: flex;
		flex-direction: column;
		gap: 1rem;
	}
	.site-header__inner {
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
	.site-header__bttn-wrapper {
		padding-right: calc(40px + 1rem);
		padding-top: 0;
	}
	.site-footer--content {
		flex-direction: column;
	}
	.site-footer--content-left img {
		margin-top: calc((4rem + 12%)* -1);
		width: 300px;
	}
	.site-footer--content-left--items {
		margin-top: 0;
	}
}

@media screen and (max-width: 768px) {
	.container--small {
		max-width: var(--grid-container);
	}
	.title-with-elements {
		flex-direction: column;
		align-items: center;
	}
	.payment-switcher {
		margin: 2rem auto -2rem;
	}
	.text-image-section__grid {
		grid-template-columns: 1fr;
	}
	div#maatje-worden h2 {
		text-align: center;
	}
	.radial-blur-2 {
		display: none;
	}
	.site-footer--copyright {
		flex-direction: column-reverse;
		gap: 1rem;
	}
	.site-footer--content {
		gap: 2rem;
	}
	.site-footer--copyright p {
		font-size: 12px;
		opacity: 0.7;
	}
	.site-footer--content-left--items a {
		display: block;
		margin-top: .5rem;
	}
	.site-footer--copyright div {
		flex-direction: column;
		gap: 1rem;
		align-items: center;
	}
	body {
		font-size: 1rem;
	}
	h1 {
		font-size: 3rem;
	}
	h2 {
		font-size: 2rem;
	}
	ul {
		padding-left: 0;
	}
	.site-footer--content {
		padding-bottom: 2rem;
	}
	.image-section__text-block--right {
		margin-right: auto;
		margin-left: auto;
	}
	.image-section .image-border {
		height: 346px;
	}
	.image-section__text-block p {
		font-size: 1.25rem;
	}
	.sticker {
		display: none;
	}
}

.functie-swiper img {
	width: 100%;
	height: 300px;
	object-fit: contain;
	background-color: #fcfbfa;
	border-radius: 20px;
}