/* Font Face Declarations */
@font-face {
	font-family: 'Youth';
	src: url('../assets/AllCaps - Youth Regular.otf') format('opentype');
	font-weight: 400;
	font-style: normal;
}

/* Device Notice Overlay */
.device-notice {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(10, 13, 74, 0.95);
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 20px;
	box-sizing: border-box;
}

.device-notice-content {
	max-width: 500px;
	color: #fff;
}

.device-notice-content svg {
	color: #6366f1;
	margin-bottom: 20px;
}

.device-notice-content p {
	font-family: 'Circular Std', sans-serif;
	font-size: 1rem;
	color: #a5a8d8;
	margin-bottom: 30px;
	line-height: 1.6;
}

.device-notice-btn {
	background: linear-gradient(90deg, #ED2190);
	border: none;
	color: #fff;
	padding: 15px 40px;
	font-family: 'Youth', sans-serif;
	font-size: 1rem;
	border-radius: 30px;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 0 20px rgba(99, 102, 241, 0.4);
}

.device-notice-btn:hover {
	transform: scale(1.05);
	box-shadow: 0 0 30px rgba(99, 102, 241, 0.7);
}

.device-notice.hidden {
	display: none;
}

/* Mute Button */
.mute-btn {
	position: fixed;
	top: 20px;
	left: 20px;
	z-index: 9999;
	background: rgba(10, 13, 74, 0.8);
	border: 2px solid #303390;
	border-radius: 50%;
	width: 50px;
	height: 50px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	transition: all 0.3s ease;
	box-shadow: 0 0 10px rgba(48, 51, 144, 0.5);
}

.mute-btn:hover {
	background: rgba(48, 51, 144, 0.9);
	box-shadow: 0 0 20px rgba(99, 102, 241, 0.7);
	transform: scale(1.1);
}

.mute-btn.muted .sound-on-icon {
	display: none;
}

.mute-btn.muted .sound-off-icon {
	display: block !important;
}

/* Custom Scrollbar */
/* Webkit browsers (Chrome, Safari, Edge) */
::-webkit-scrollbar {
    height: 18px;
    width: 18px;
    background: #0a0d4a;
}

::-webkit-scrollbar-track {
    background: #0a0d4a !important;
    border: 1px solid #303390;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, #303390, #484B9D);
    border-radius: 10px;
    border: 2px solid #0a0d4a;
    box-shadow: 0 0 10px #303390, 0 0 20px #303390, 0 0 30px #484B9D;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(90deg, #484B9D, #6366f1);
    box-shadow: 0 0 15px #484B9D, 0 0 30px #484B9D, 0 0 45px #6366f1;
}

/* Horizontale scrollbar specifiek */
::-webkit-scrollbar:horizontal {
    height: 18px;
    background: #0a0d4a;
}

::-webkit-scrollbar-track:horizontal {
    background: #0a0d4a !important;
    border: 1px solid #303390;
    border-radius: 10px;
}

/* Firefox */
* {
	scrollbar-width: auto;
    scrollbar-color: #484B9D #0a0d4a;
}

html, body {
    scrollbar-width: auto;
    scrollbar-color: #484B9D #0a0d4a;
}

/* Scrollhandje fade transition */
.scrollhandje {
    transition: opacity 0.3s ease-out;
}

@font-face {
	font-family: 'Youth';
	src: url('../assets/AllCaps - Youth Light.otf') format('opentype');
	font-weight: 300;
	font-style: normal;
}

@font-face {
	font-family: 'Youth';
	src: url('../assets/AllCaps - Youth Medium.otf') format('opentype');
	font-weight: 500;
	font-style: normal;
}

@font-face {
	font-family: 'Youth';
	src: url('../assets/AllCaps - Youth Bold.otf') format('opentype');
	font-weight: 700;
	font-style: normal;
}

@font-face {
	font-family: 'Youth';
	src: url('../assets/AllCaps - Youth Black.otf') format('opentype');
	font-weight: 900;
	font-style: normal;
}

@font-face {
	font-family: 'Youth';
	src: url('../assets/AllCaps - Youth Thin.otf') format('opentype');
	font-weight: 100;
	font-style: normal;
}

@font-face {
	font-family: 'Circular Std';
	src: url('../assets/circular-std-medium-500.ttf') format('truetype');
	font-weight: 500;
	font-style: normal;
}

html, body, div, span, applet, object, iframe,h1, h2, h3, h4, h5, h6, p, blockquote, pre,a, abbr, acronym, address, big, cite, code,del, dfn, em, img, ins, kbd, q, s, samp,small, strike, strong, sub, sup, tt, var,b, u, i, center,dl, dt, dd, ol, ul, li,fieldset, form, label, legend,table, caption, tbody, tfoot, thead, tr, th, td,article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary,time, mark, audio, video {	margin: 0;	padding: 0;	border: 0;	font-size: 100%;	font: inherit;	vertical-align: baseline;}/* HTML5 display-role reset for older browsers */article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {	display: block;}body {	line-height: 1;}ol, ul {	list-style: none;}blockquote, q {	quotes: none;}blockquote:before, blockquote:after,q:before, q:after {	content: '';	content: none;}table {	border-collapse: collapse;	border-spacing: 0;}

/* reset sheet */


.circuit-container {
	position: relative;
	width: 600vw; /* pas aan */
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: visible;
}

.circuit-svg {
	position: absolute;
	width: 600vw;  /* pas aan */
	height: 100vh;
	z-index: -1;
	overflow: visible;
}

.fixed-top-right-btn {
	position: fixed;
	top: 24px;
	right: 32px;
	z-index: 1000;
	background: #fff;
	color: #0B0F7D;
	border: none;
	border-radius: 24px;
	padding: 12px 28px;
	font-size: 1.1rem;
	font-family: 'Youth', sans-serif;
	font-weight: 700;
	box-shadow: 0 2px 12px rgba(0,0,0,0.08);
	cursor: pointer;
	text-decoration: none;
	transition: opacity 0.2s, color 0.2s;
	opacity: 0;
}

.fixed-top-right-btn:hover {
	background: #0B0F7D;
	color: #fff;
	opacity: 1;
}

.logo {
	position: fixed;
	top: 20px;
	right: 20px;
	width: 100px;
	z-index: 1000;
}

/* Intro */

body {
    background-color: #0B0F7D;
	width: 1133vw;
    overflow-x: auto;
    overflow-y: hidden;
    display: flex;
	font-family: 'youth';
    max-height: 100vh;
}

body.lock-scroll {
	overflow: hidden;
}

.intro-section {
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.introban{
	position: absolute;
	left: 200px;
}

#delayed-content {
	color: white;
	font-size: 24px;
	font-weight: 500;
	text-decoration: underline;
	opacity: 0;
	transition: opacity 0.5s ease-in-out;
	cursor: pointer;
	pointer-events: none;
	z-index: 10000;
}

#delayed-content.visible {
    opacity: 1;
    pointer-events: auto;
}

.start-btn {
	position: fixed;
    display: flex;
    align-items: center;
    gap: 20px;
	right: 50px;
}

.intro-text {
	width: 300vw;
	height: 100vh;
	display: flex;
	justify-content: center;
	flex-direction: column;
	color: white;
	font-size: 32px;
	font-weight: 700;
	gap: 50px;

	h2{
		margin-left: 50vw;
	}
	span{
		margin-left: 85vw;
	}
}

.between-section {
    width: 100vw;
    height: 100vh;
}

.video-section {
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
	position: relative;
}

.video-section iframe {
    border-radius: 25px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.main-video {
    width: 1199px;
    max-width: 90%;
    aspect-ratio: 16 / 9;
    border-radius: 25px;
    position: absolute; 
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 2s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
    object-fit: cover;
}

#main-video.zoom-fullscreen {
    position: fixed;
    width: 100vw;
    height: 100vh;
    max-width: 100vw;
    border-radius: 0;
    z-index: 9999;
	background: black;
}

.skip-button {
    position: fixed;
    top: 30px;
    right: 40px;
    z-index: 10000;
    padding: 20px 24px;
    background: #ED2190;
    color: white;
    border: 2px solid white;
    border-radius: 30px;
    cursor: pointer;
    transition: opacity 0.3s ease;
    opacity: 0; 
    pointer-events: none;
}

#main-video.zoom-fullscreen + .skip-button {
    opacity: 1;
    pointer-events: auto;
}

.aftervid-section {
	width: 100vw;
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
}

.aftervid-text {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100vw;
	line-height: 54px;
}

.aftervid-arrow{
	animation: hand-move 3s infinite ease-in-out;
}

.aftervid-scroll {
	display: flex;
	justify-content: center;
	align-items: center;
}

@keyframes hand-move {
	0% { transform: translateX(0); }
	25% { transform: translateX(50px); }
	50% { transform: translateX(0); }
	75% { transform: translateX(50px); }
	100% { transform: translateX(0); }
}

.introlijnen {
	position: absolute;
	top: 6vh;
	width: 300vw;
	left: 180vw;
	z-index: -1;
}

h2 {
	width: 45vw;
	text-align: center;
	color: white;
	font-size: 32px;
	font-weight: 700;
}

p {
	color: white;
	font-family: Circular std, sans-serif;
	font-size: 32px;
}

.seventech-section {
	width: 100vw;
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;

	h2{
		width: 28vw;
		line-height: 48px;
	}
}

.tech-icons-box{
	position: absolute;
	left: 480vw;
	width: 110vw;
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
}

.tech-icon {
    position: absolute;
    top: 50vh;
    left: 50%;
	transition: all 0.3s ease;
}

.true-icon {
	width: 120px;
	height: 120px;
}

.seven-one   { transform: translate(-50%, -50%) rotate(0deg)   translate(320px) rotate(0deg); }
.seven-two   { transform: translate(-50%, -50%) rotate(51deg)  translate(320px) rotate(-51deg); }
.seven-three { transform: translate(-50%, -50%) rotate(103deg) translate(320px) rotate(-103deg); }
.seven-four  { transform: translate(-50%, -50%) rotate(154deg) translate(320px) rotate(-154deg); }
.seven-five  { transform: translate(-50%, -50%) rotate(206deg) translate(320px) rotate(-206deg); }
.seven-six   { transform: translate(-50%, -50%) rotate(257deg) translate(320px) rotate(-257deg); }
.seven-seven { transform: translate(-50%, -50%) rotate(309deg) translate(320px) rotate(-309deg); }

.icon-label {
    position: absolute;
    top: 50%;
	left: 110%;
    white-space: nowrap;
    opacity: 1;
    transition: opacity 0.3s ease;
    color: white;
    pointer-events: none;
}

.icon-label-left {
	position: absolute;
	top: 50%;
	right: 110%;
	white-space: nowrap;
	opacity: 1;
	transition: opacity 0.3s ease;
	color: white;
	pointer-events: none;
}

.scooch{
	left: -140px;
}

.data-section {
	width: 100vw;
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;

	p{
		width: 415px;
		color: white;
		font-size: 32px;
		line-height: 48px;
		margin-right: 100px;
	}
}

.data-tabel {
	width: 60vw;
	height: auto;
}	

.afterdata-section{
	width: 100vw;
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;

	h2{
		width: 45vw;
		text-align: center;
		color: white;
		font-size: 40px;
		line-height: 67.2px;
	}

	.bg-lightbulb {
		position: absolute;
		z-index: -1;
	}
}

.hendeltrek-section {
	width: 100vw;
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	gap: 50px;

	p{
		width: 632px;
		text-align: center;
		font-size: 24px;
		line-height: 33.6px;
	}
}

.lever-container {
    position: relative;
    width: 120px; 
    height: 300px;
    margin: 0 auto;
	cursor: grab;
	user-select: none;
}

.lever {
    position: absolute;
    width: 100%;
    height: auto;
    display: block;
	pointer-events: none;
	transition: transform 0.1s ease-out;
}

.lever-down {
    display: none;
	top: 104px;
}

.lever-container.active .lever-up {
    display: none;
}

.lever-container.active .lever-down {
    display: block;
    animation: snap-down 0.2s ease-out;
}

.lijnen-wrapper {
    position: absolute;
    top: 12vh;
    left: 885vw;
    z-index: -1;
	transition: transform 1.5s ease-in-out; 
    will-change: transform; 
}

.hendellijnen {
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0.5s ease-in-out;
}

.hendellijnen-on { opacity: 0; }
.hendellijnen-off { opacity: 1; }

body.lever-is-down .hendellijnen-on {
    opacity: 1;
}

body.lever-is-down .hendellijnen-off {
    opacity: 0;
}

.shake {
  animation: shake-animation 1s;
}

@keyframes shake-animation {
  0% { transform: translate(1px, 1px) rotate(0deg); }
  10% { transform: translate(-1px, -2px) rotate(-1deg); }
  20% { transform: translate(-2px, 0px) rotate(1deg); }
  30% { transform: translate(2px, 2px) rotate(0deg); }
  40% { transform: translate(1px, -1px) rotate(1deg); }
  50% { transform: translate(-1px, 2px) rotate(-1deg); }
  60% { transform: translate(-2px, 1px) rotate(0deg); }
  70% { transform: translate(2px, 1px) rotate(-1deg); }
  80% { transform: translate(-1px, -1px) rotate(1deg); }
  90% { transform: translate(1px, 2px) rotate(0deg); }
  100% { transform: translate(1px, -2px) rotate(-1deg); }
}

.medische-sector-btn {
	position: absolute;
	bottom: 36vh;
    left: 1053.9vw;
	z-index: 10090;
}	
.medische-sector-btn:hover {
    filter: drop-shadow(0 0 2px #ffffff) drop-shadow(0 0 4px #ffffff);
    transition: filter 0.3s;
}

.economische-sector-btn{
	position: absolute;
	bottom: 35.3vh;
	left: 1094.2vw;
	z-index: 10090;
}

.economische-sector-btn:hover {
    filter: drop-shadow(0 0 2px #ffffff) drop-shadow(0 0 4px #ffffff);
    transition: filter 0.3s;
}

.creatieve-sector-btn{
	position: absolute;
	bottom: 36vh;
	left: 1069.2vw;
	z-index: 10090;
}

.creatieve-sector-btn:hover {
	filter: drop-shadow(0 0 2px #ffffff) drop-shadow(0 0 4px #ffffff);
	transition: filter 0.3s;
}

.technische-sector-btn{
	position: absolute;
	bottom: 36vh;
	left: 1085.25vw;
	z-index: 10090;
}

.technische-sector-btn:hover {
	filter: drop-shadow(0 0 2px #ffffff) drop-shadow(0 0 4px #ffffff);
	transition: filter 0.3s;
}

.sector-choice-text {
	position: absolute;
	top: 405vh;	
	z-index: 10090;
	color: white;

	h2{
	font-size: 24px;
	text-align: center;
	}
}

.medische-sector-keuze-text {
	left: 150.8vw;
}

.economische-sector-keuze-text {
	left: 198.5vw;
}

.creatieve-sector-keuze-text {
	left: 165.9vw;
}

.technische-sector-keuze-text {
	left: 182.2vw;
}

/* Medische Sector */

.medische-sector-body {
	position: relative;
	max-width: 100vw;
	min-height: 1000vh;
	overflow-x: hidden;
    overflow-y: auto;
	font-family: 'youth';
}

.medische-sector-body .circuit-container {
    position: absolute;
    width: 100vw;
    height: 100vh;
    z-index: -1;
}

.medische-sector-body .circuit-svg {
    width: 100vw;
    height: 100vh;
}

.sector-intro {
	width: 100vw;
	height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 50px;

	p{
		position: absolute;
		color: rgb(255, 255, 255);
		font-size: 24px;
		top: 85vh;
	}
}

.sectortitel {
	display: flex;
	justify-content: center;
	align-items: center;
	color: white;
	font-size: 96px;
	font-weight: 900;
}

.arrow-down{
	position: absolute;
	top: 90vh;
	animation: arrow-bob 3s infinite ease-in-out;
}

@keyframes arrow-bob {
	0% { transform: translateY(0); }
	25% { transform: translateY(10px); }
	50% { transform: translateY(0); }
	75% { transform: translateY(10px); }
	100% { transform: translateY(0); }
}

.vertical-section {
	width: 100vw;
	height: 100vh;
	position: absolute;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;

	p{
		color: white;
		font-size: 32px;
		font-family: 'Circular Std', sans-serif;
		font-weight: 500;
		line-height: 48px;
	}
}

.medisch-section-1{
	top: 125vh;
}

.medisch-section-2{
	top: 275vh;

	.medisch2-banner{
		width: 100vw;
		display: flex;
		justify-content: center;
		align-items: center;
	}
}

.circuit-zone {
    position: absolute;
    left: 0;
    width: 100vw;
    height: 800px;
	z-index: -1;
    pointer-events: none;
}

.circuit-svg-dynamic {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: visible;
    left: 0; 
}

.circuit-trigger {
    position: absolute;
    top: -100px;
    height: 10px;
    width: 100%;
}

.medisch2-text  {
		width: 100vw;
		height: 20vw;
		display: flex;
		justify-content: center;
		gap: 15vw;
	p {
		width: 30vw;
	}
}

.medisch-section-3{
	top: 425vh;
}

.section-title {
	width: 100vw;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 16vh;
}

.medisch-foto1-icon {
	position: relative;
	left: -33vw;
	top: 30vh;
}

.medisch3-text, .medisch4-text, .economisch1-text  {
		width: 25vw;
		display: flex;
}

.medisch-section-4{
	top: 575vh;
}

.medisch-foto2-icon {
	position: relative;
	left: -12vw;
	top: 12vh;
}

.section-pic {
	position: relative;
	left: 15vw;
}

.medisch-section-5{
	top: 775vh;

	h2{
		width: 778px;
		text-align: center;
		font-size: 48px;
		font-weight: 700;
		line-height: 72px;
		color: white;
	}
}

.medisch-bg {
	position: absolute;
	width: 100vw;
	z-index: -1;
}

.medisch-section-6{
	top: 925vh;
	gap: 200px;
}

.medisch6-text  {
		width: 396px;
}

.lampje-icon {
	position: absolute;
	right: 3vw;
	top: 75vh;
}

svg {
    pointer-events: none;
}

.pink-line {
    stroke: #ED2190;
    transition: stroke 0.3s ease, filter 0.3s ease;
    pointer-events: all;
    filter: drop-shadow(0 0 0 transparent);
}

.pink-circle {
    stroke: #ED2190;
    transition: stroke 0.3s ease, filter 0.3s ease, r 0.3s ease;
}

.pink-line.is-hovered {
    stroke: #ffffff !important;
    filter: drop-shadow(0 0 5px #fff) drop-shadow(0 0 10px #ED2190);
    cursor: pointer;
}

.pink-circle.is-hovered {
    stroke: #ffffff !important;
    filter: drop-shadow(0 0 5px #fff) drop-shadow(0 0 10px #ED2190);
    r: 18;
}

.zoomin-section{
	top: 1050vh;
	left: -30vw;
}

.zoomin-section h2{
		width: 551px;
		text-align: left;
		font-size: 40px;
		font-weight: 700;
		line-height: 80px;
		color: white;
		z-index: 9999;
}

#functie-titel{
	width: 900px;
	margin-left: 300px;
}

.functie-tekst {
	p{
		width: 516px;
		font-size: 24px;
		line-height: 36px;
	}
}

.functie-boven {
	position: absolute;
	top: 35vh;
	left: 50vw;
}

.functie-onder {
	position: absolute;
	top: 58vh;
	left: 50vw;
}

.pink-line.zoom-in {
	stroke-width: 10 !important;
	filter: drop-shadow(0 0 5px #fff) drop-shadow(0 0 10px #ED2190);
	transition: stroke-width 0.1s cubic-bezier(.4,2,.6,1), filter 0.1s cubic-bezier(.4,2,.6,1);
}

.zoomin-section, 
.circuit-zone {
    opacity: 1;
    pointer-events: none; 
    transition: opacity 0.8s ease-in-out;
}

/* Zorg dat de h2 in section 7 altijd boven de SVG-lijnen ligt */
.medisch-section-7 h2 {
  z-index: 200000;
}

.medisch-section-7 {
  z-index: 2000;
}

.medisch-section-10{
	top: 1475vh;
}

.medisch-section-11{
	top: 1600vh;
}

.europa-kaart-metpin{
	position: absolute;
	top: 50vh;
	left: 65%;
	transform: translate(-50%, -50%);
}

.medisch11-text h2{
	position: relative;
	width: 565px;
	text-align: left;
	font-size: 40px;
	line-height: 60px;
	left: -60%;
}

.medisch-section-12{
	top: 1750vh;
}

.europa-kaart-zonderpin {
	position: absolute;
	top: 50vh;
	left: 60%;
	transform: translate(-50%, -50%);
	z-index: -1;
}

.medisch-section-13{
	top: 1900vh;
	flex-direction: column;

	p{
		width: 658px;
		text-align: center;
		margin-top: 15vh;
	}
}

.einde-sector{
	position: absolute;
	top: 2050vh;
	width: 100vw;
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	gap: 50px;

	h1{
		color: white;
		font-size: 96px;
		font-weight: 900;
		text-align: center;
	}

	p{
		color: white;
		font-size: 20px;
		text-align: center;
		text-decoration: underline;
		position: fixed;
		bottom: 40px;
		left: 14px;
	}
}

.clickable-line{
	position: fixed;
	bottom: 20px;
	left: -200px;
	transition: left 0.7s cubic-bezier(0.77,0,0.175,1);
}

.clickable-line.visible {
	left: -10px;
	filter: drop-shadow(0 0 5px #fff) drop-shadow(0 0 10px #ED2190);
}

.clickable-line:hover {
    left: -10px;
	filter: drop-shadow(0 0 5px #fff) drop-shadow(0 0 10px #ED2190);
}

.clickable-line-link {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-decoration: none;
}

.terug-label {
	opacity: 0;
	transition: opacity 0.4s;
	text-align: center;
	margin-bottom: 8px;
	pointer-events: none;
	color: inherit;
}
.clickable-line-link:hover .terug-label,
.clickable-line-link:focus .terug-label {
	opacity: 1;
}

/* End Medische Sector */


/* Hub */

.hendellijnen-hub {
	position: absolute;
	top: -338vh;
	left: -148vw;
}

.medische-sector-btn-hub {
	position: absolute;
	bottom: 36.05vh;
	left: 20.9vw;
	z-index: 10090;
}

.medische-sector-btn-hub:hover {
    filter: drop-shadow(0 0 2px #ffffff) drop-shadow(0 0 4px #ffffff);
    transition: filter 0.3s;
}

.hub-body h2{
	position: absolute;
	bottom: 30vh;
	color: white;
	font-size: 24px;
}

.medisch-hub h2{
	left: 2.8vw;
}

.economisch-hub h2{
	left: 50.5vw;
}

.creatief-hub h2{
	left: 17.9vw;
}

.technisch-hub h2{
	left: 34.2vw;
}

.technische-sector-btn-hub {
	position: absolute;
	bottom: 36vh;
	left: 52.21vw;
	z-index: 10090;
}

.technische-sector-btn-hub:hover {
	filter: drop-shadow(0 0 2px #ffffff) drop-shadow(0 0 4px #ffffff);
	transition: filter 0.3s;
}

.economische-sector-btn-hub {
	position: absolute;
	bottom: 35.25vh;
	left: 61.2vw;
	z-index: 10090;
}

.economische-sector-btn-hub:hover {
    filter: drop-shadow(0 0 2px #ffffff) drop-shadow(0 0 4px #ffffff);
    transition: filter 0.3s;
}

.creatieve-sector-btn-hub {
	position: absolute;
	bottom: 36vh;
	left: 36.15vw;
	z-index: 10090;
}

.creatieve-sector-btn-hub:hover {
	filter: drop-shadow(0 0 2px #ffffff) drop-shadow(0 0 4px #ffffff);
	transition: filter 0.3s;
}

/* Economische Sector */

.economische-sector-body {
	position: relative;
	max-width: 100vw;
	min-height: 1000vh;
	overflow-x: hidden;
	overflow-y: auto;
	font-family: 'youth';
}

.economische-sector-body .circuit-container {
    position: absolute;
    width: 100vw;
    height: 100vh;
    z-index: -1;
}

.economische-sector-body .circuit-svg {
    width: 100vw;
    height: 100vh;
}

.economische-section-1{
	top: 125vh;
}

.economische-foto1-icon {
	position: relative;
	left: -26vw;
	top: 30vh;
}

.economisch1-text  {
		width: 495px;
}

.economisch2-text  {
		width: 358px;
}

.economische-section-2{
	top: 435vh;
	display: flex;
}

.economische-foto2 {
	margin-right: 15vw;
	margin-top: 5vh;
}

.economische-foto3-icon {
	position: absolute;
	left: 10%;
	top: 65vh;
}

.economisch3-text  {
	width: 396px;
}

.economisch-section-3{
	top: 580vh;
	gap: 280px;
}

.economische-section-4{
	top: 750vh;
}

.economische-section-5{
	top: 920vh;
}

.economische-section-6{
	top: 1030vh;
}

.economische-section-7{
	top: 1140vh;
}

.economische-section-8{
	top: 1275vh;
	gap: 150px;

	p{
		width: 374px;
		margin-left: 90px;
	}
}

.economische-section-9{
	top: 1400vh;
}

.economische-section-10{
	top: 1510vh;
}

.economische-kaart-metpin{
	position: absolute;
	top: 60vh;
	left: 70%;
	transform: translate(-50%, -50%);
}

.economische-section-11{
	top: 1650vh;
}

.economische-section-12{
	top: 1820vh;

	p{
		width: 702px;
	}
}

.economisch-einde {
	top: 1975vh;
}

/* End Economische Sector */

/* Creatieve Sector */

.creatieve-sector-body {
	position: relative;
	max-width: 100vw;
	min-height: 1000vh;
	overflow-x: hidden;
	overflow-y: auto !important;
	font-family: 'youth';
}

.creatieve-sector-body .circuit-container {
	position: absolute;
	width: 100vw;
	height: 100vh;
	z-index: -1;
}

.creatieve-sector-body .circuit-svg {
	width: 100vw;
	height: 100vh;
}

.creatief-section-1{
	top: 125vh;
}

.creatief-section-2 {
	top: 275vh;
}

.creatieve-text-1 {
	width: 465px;
}

.creatieve-box {
	width: 100vw;
	margin-top: 100px;
	gap: 150px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.creatief-section-3 {
	top: 425vh;
}

.creatief-bg-1 {
	position: absolute;
	z-index: -1;
}

.creatief3-text {
	width: 778px;
	text-align: center;
}

.creatief-section-4 {
	top: 550vh;
}

.lampje-icon-creatief {
	position: absolute;
	right: 8vw;
	top: 75vh;
}

.creatief-section-5 {
	top: 700vh;	

	h2{
		font-size: 128px;
		width: 150px;
	}
}

.choice-icon:hover {
	stroke: #ffffff !important;
    filter: drop-shadow(0 0 5px #fff) drop-shadow(0 0 10px #ffffff);
    cursor: pointer;
}

.creatief-section-6 {
	top: 825vh;
}

.creatief-bg-2 {
	position: absolute;
	left: 0;
	top: 15vh;
	z-index: -1;
}

.creatief4{
	margin-top: 50vh;
}

.creatief6-text {
	width: 690px;
	text-align: center;
}

.creatief-section-7 {
	top: 950vh;
}

.creatief-section-8 {
	top: 1025vh;
}

.creatief-section-9 {
	top: 1125vh;
}

.creatief-section-10 {
	top: 1225vh;
}

.creatief-section-11 {
	top: 1375vh;
}

.europa-kaart-creatief{
	position: absolute;
	top: 50vh;
	left: 50%;
	z-index: -1;
	transform: translate(-50%, -50%);
}

.creatief11-text {
	position: relative;
	width: 585px;
	text-align: center;
	left: 10%;
}

.creatief-section-12 {
	top: 1525vh;
}

.creatief-section-13 {
	top: 1675vh;
	flex-direction: column;

	p{
		width: 826px;
		text-align: center;
		margin-top: 8vh;
	}
}

.creatief-einde {
	top: 1825vh;
}

/* End Creatieve Sector */

/* Technische Sector */

.technische-sector-body {
	position: relative;
	max-width: 100vw;
	min-height: 1000vh;
	overflow-x: hidden;
	overflow-y: auto !important;
	font-family: 'youth';
}

.technische-sector-body .circuit-container {
	position: absolute;
	width: 100vw;
	height: 100vh;
	z-index: -1;
}

.technische-sector-body .circuit-svg {
	width: 100vw;
	height: 100vh;
}

.technisch-section-1{
	top: 120vh;
}

.technisch-section-2{
	top: 300vh;

	p{
		width: 502px;
	}
}

.technische-box {
	width: 100vw;
	margin-top: -50px;
	gap: 350px;
	display: flex;
	justify-content: center;
	margin-left: 100px;
}

.box-2 {
	margin-top: 100px;
}

.technisch-section-3 {
	top: 450vh;
}

.technisch3-text {
	width: 445px;
}

.technisch-section-4 {
	top: 600vh;
	gap: 100px;
}

.lampje-icon-technisch {
	position: absolute;
	right: 8vw;
	top: 80vh;
}

.technisch4-text {
	width: 357px;
}

.technisch-section-5 {
	top: 750vh;
}

.technisch-section-6 {
	top: 870vh;
}

.technische-sector-bg-wiel{
	position: absolute;
	left: 0;
	top: 30vh;
	z-index: -1;
}

.technisch-section-7 {
	top: 1025vh;
}

.technisch-section-8 {
	top: 1100vh;
}

.technisch-section-9 {
	top: 1200vh;
}

.technisch11-text {
	position: relative;
	width: 585px;
	text-align: center;
	left: 10%;
}

.technisch-section-13 {
	top: 170vh;
}

.technisch-einde {
	top: 350vh;
}

.click-hint {
    fill: white;
    font-size: 14px;
    font-weight: bold;
    font-family: sans-serif;
    pointer-events: none; /* Zorgt dat de tekst niet klikbaar is, zodat de lijn eronder dat blijft */
    opacity: 0;
    transition: opacity 0.5s ease;
    text-shadow: 0px 0px 5px rgba(0,0,0,0.5);
}

/* Optioneel: laat de tekst pas verschijnen als de lijn getekend is */
.hint-visible {
    opacity: 1;
}

/* End Technische Sector */

/* Einde */

/* Rechterkant variant clickable line */
.clickable-line-wrapper-right {
    position: fixed;
	bottom: 70px;
	right: -200px;
    transition: right 0.7s cubic-bezier(0.77,0,0.175,1);
    z-index: 10000;
}

.clickable-line-wrapper-right .clickable-line-link {
    align-items: center;
}

.clickable-line-inverted {
    transform: scaleX(-1);
	left: 90vw;
}

/* Laat van rechts in beeld komen als .visible */
.clickable-line-wrapper-right.visible {
    right: -10px;
}

.clickable-line-wrapper-right .clickable-line:hover {
    right: -10px;
    filter: drop-shadow(0 0 5px #fff) drop-shadow(0 0 10px #ED2190);
}

.clickable-line-right{
	position: fixed;
	transition: left 0.7s cubic-bezier(0.77,0,0.175,1);
}

.clickable-line-right.visible {
	left: -10px;
	filter: drop-shadow(0 0 5px #fff) drop-shadow(0 0 10px #ED2190);
}

.clickable-line-right:hover {
	filter: drop-shadow(0 0 5px #fff) drop-shadow(0 0 10px #ED2190);
}

.clickable-line-link {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-decoration: none;
}

.einde-btn-text {
	position: absolute;
	font-family: 'circular std';
	text-decoration: underline;
	font-size: 25px;
	bottom: 65px;
	left: 94%;
}

.einde-body {
	position: relative;
	max-width: 350vw;
	min-height: 1000vh;
	overflow-x: auto !important;
	overflow-y: hidden;
	font-family: 'youth';
}

.einde-body .circuit-container {
	position: absolute;
	width: 100vw;
	height: 100vh;
	z-index: -1;
}

.einde-body .circuit-svg {
	width: 100vw;
	height: 100vh;
}

.einde-section-1 {
	width: 100vw;
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

.einde-ban {
	position: absolute;
	top: 45vh;
	left: 40%;
}

.einde-section-2 {
	position: absolute;
	left: 100vw;
	top: 0;
	width: 100vw;

	p{
		width: 421px;
		text-align: center;
		top: 15vh;
		left: 13.5%;
		font-size: 40px;
		line-height: 60px;
		position: relative;
	}
}

.tandwiel-1{
	position: absolute;
	top: -20vh;
}

.einde-section-3 {
	position: absolute;
	left: 150vw;
	top: 0;
	width: 100vw;

	p{
		width: 421px;
		text-align: center;
		top: 53vh;
		left: 24.6%;
		font-size: 40px;
		line-height: 60px;
		position: relative;
	}
}

.tandwiel-2{
	position: absolute;
	bottom: -80vh;
	width: 750px;
	left: 15%;
}

.einde-section-4 {
	position: absolute;
	left: 200vw;
	top: 0;
	width: 200vw;

	p{
		width: 1162px;
		text-align: center;
		top: 30vh;
		left: 20%;
		font-size: 40px;
		line-height: 60px;
		position: relative;
	}
}

.tandwiel-3{
	position: absolute;
	bottom: -135vh;
	width: 800px;
	left: 40%;
}

.tandwiel-4{
	position: absolute;
	top: -50vh;
	width: 600px;
	right: 65%;
}

.einde-section-5 {
	position: absolute;
	left: 350vw;
	top: 0;
	width: 75vw;
	display: flex;
	justify-content: center;
}

.einde2-ban {
	position: absolute;
	top: 25vh;
	left: 9%;
}

.lijnen-rechts-einde {
	position: absolute;
	top: 12vh;
	left: 0vw;
	z-index: -1;
}	

.einde-scroll {
	position: relative;
	animation: hand-move 3s infinite ease-in-out;
	left: 30vw;
}

@keyframes hand-move {
	0% { transform: translateX(0); }
	25% { transform: translateX(50px); }
	50% { transform: translateX(0); }
	75% { transform: translateX(50px); }
	100% { transform: translateX(0); }
}

/* End Einde */

@media (max-width: 1600px) {
	.hendellijnen {
		left: -23vw;
	}
	.sector-choice-text {
		top: 442vh;	
	}
	.medische-sector-keuze-text {
		left: 147.4vw;
	}
	.economische-sector-keuze-text {
		left: 200.5vw;
	}
	.creatieve-sector-keuze-text {
		left: 164.2vw;
	}
	.technische-sector-keuze-text {
		left: 182.6vw;
	}
	.medische-sector-btn {
		left: 1049.9vw;
	}
	.economische-sector-btn{
		left: 1094.8vw;
	}
	.creatieve-sector-btn{
		left: 1067vw;
	}
	.technische-sector-btn{
		left: 1084.8vw;
	}
}

.device-notice-content h2 {
	font-family: 'Youth', sans-serif;
	font-size: 1.8rem;
	width: 100%;
	margin-bottom: 15px;
	color: #fff;
}

.aftervid-scroll-2{
	position: relative;
	display: flex;
	flex-direction: row;
	margin-top: 45vh;	
	left: 30%;
}

.aftervid-scroll-2-text{
	margin-right: 15px;
	color: white;
	display: flex;
	align-items: center;
	font-size: 24px;
	text-decoration: none;
}