/*
Theme Name:   Simply
Theme URI:    https://www.rootcase.nl
Author: 	Rootcase
Author URI: https://www.rootcase.nl
Description:  Custom built template
Version: 1.0

*/



:root {
  /* Base palette */
  --white:   #FDFBF2;
  --misty:    #FFD7D8;
  --magenta: #B40062;
  --orange:  #FF7300;
  --blue:    #82BEC2; 
  --chocolate:  #550010;
  
  --size1 : 2rem;
  --size2 : 4rem;
	
	--smallSize: 0.8333rem; /* 25px */
	
	--bodySize: 1rem;      /* 30px */
	--bodyLine: 1.5rem;    /* 45px */
	
	--titleSize: 1.3333rem; /* 40px */
	--titleLine: 1.6667rem; /* 50px */
	
	--largeSize: 2.5rem;    /* 75px */
	--largeLine: 3rem;      /* 90px */

}


body, html {
	margin: 0px;
	padding: 0px;
	color: black;
	font-size: 30px;
	line-height: var(--bodyLine); 
	background: var(--white);
	color: var(--chocolate);
	
	font-family: "Bricolage Grotesque", sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
	font-variation-settings: "wdth" 100;
}

* {
	box-sizing: border-box;
	position: relative;
}

ul {
	list-style-position: outside;
	margin-left: 0;
	padding-left: 1em;
}

a {
	color: inherit;
	text-decoration: none;
}

h3,
h1 {
	font-size: var(--titleSize);
	line-height: var(--titleLine);
	color: var(--magenta);
}

h1,
h2,
h3 {
	margin-top: 0;
}

ul {
	margin-top: 0;
}

p {
	margin-top: 0;
}

.sectioninner {
	max-width: 1500px;
	margin: auto;
}

.top .logo {
	display: block;
	height: 9.5rem;
	width: auto;
	margin: auto;
	fill:var(--chocolate);
	animation: fancyGradient 10s ease-in-out infinite alternate;
	transition: all .25s;
}

.scrolled .top .logo {
	position: fixed;
	height: 1.5rem;
	left: .5rem;
	top:.5rem;
	transform: translateX(0);
	z-index: 1;
}

.top .logo polygon,
.top .logo path {
	opacity: 1;
}

.top .logo polygon:not(.cls-1),
.top .logo path:not(.cls-1){
	opacity: 0;
	animation: fadeIn 1.5s ease 1s forwards;
	transition: opacity 1.5s;
	transition-delay: 1s;
}


@keyframes fadeIn {
	from { opacity: 0; }
	to { opacity: 1; }
}

.scrolled .top .logo polygon:not(.cls-1),
.scrolled .top .logo path:not(.cls-1){
	opacity: 0 !important;
}

.flexcontainer {
	display: flex;
	flex-direction: row;
}

.column1_5 {
	width: 20%;
}

.column2_5 {
	width: 40%;
	padding-left: 2rem;
}

.column3_5 {
	display: flex;
	flex-direction: column;
	width: 60%;
}

.column3_5.content {
	padding-right: 2rem;
}

.column3 {
	width: 60%;
	margin: auto;
}

.column4 {
	width: 75%;
}

.column1_2 {
	width: 50%;
	display: flex;
	flex-direction: column;
}

.column1_2:nth-child(odd){
	padding-right: 2rem;
}
.column1_2:nth-child(even){
	padding-left: 2rem;
}

.topblock {
	position: relative;
	height: 8rem;
}

.top {
	padding: 0 var(--size1);
	margin-top: 2rem;
	position: fixed;
	top:0;
	width: 100%;
	left:0;
	z-index: 1;
}

.top .menuhold {
	text-align: right;
	font-size: var(--smallSize);
}

.scrolled .top .menuhold {
	position: fixed;
	left: .5rem;
	top: 2rem;
	z-index: 1;
	text-align: left;
	font-size: .75rem;
	line-height: 1.5rem;
}

.top .menuhold ul {
	margin: 0;
	list-style: none;
	padding: 0;
}

.top .menuhold b {
	display: none;
}

.top .menuhold ul li a:hover {
	text-decoration: underline;
}

section {
	margin-top: var(--size2);
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

.lineimg img {
	border: 1rem solid transparent;
	border-radius: 3rem;
}

.lineimg::before {
	position: absolute;
	inset: 0;
	border: 2px solid var(--magenta);
	content:'';
	border-radius: 3rem;
}

.content p:has(+ ul) {
  margin-bottom: .5rem;
}

.content ul {
	margin: 0;
	list-style: none;
	padding-left: 1.5rem; /* spacing for the custom bullet */
	margin-bottom: 1rem;
}

.content ul li::before {
  content: '■'; 
  color: var(--magenta);
  display: block;
  width: 1em;
  margin-left: -1.5rem; 
  position: absolute;
}

.content .arrow {
	height: 2rem;
	width: auto;
	margin-left: auto;
	margin-top: -1rem;
	animation: wiggle 6s ease-in-out infinite;
	transform-origin: 10% left;
}

@keyframes wiggle {
  0%, 90%, 100% {
	transform: rotate(0deg);
  }
  25% {
	transform: rotate(7deg);
  }
  50% {
	transform: rotate(-3deg);
  }
  75% {
	transform: rotate(4deg);
  }
}


.content a:not(.button) {
	color: var(--magenta);
	text-decoration: underline;
	transition: color .25s, transform .25s, text-shadow .25s;
	display: inline-block;
}

.content a:not(.button):hover {
	color: var(--white);
	transform: scale(1.05);
	text-decoration: none;
	text-shadow: 5px 5px 10px var(--magenta);
}

.button {
	display: inline-block;
	margin: auto;
	padding: .5rem 1rem;
	background: var(--orange);
	color: white;
	font-weight: bold;
	border-radius: 2rem;
	width: 15rem;
	text-align: center;
	transition: background 2s;
	margin-top: 1rem;
}

.button:hover {
	background-image: url('i/gradient.jpg');
	background-size: cover;
	background-position: center right;
}

section.foto_met_tekst .button {
	margin-left: auto;
	margin-right: 0;
}

section.tekst_op_verloop {
	background-image: url('i/gradient.jpg');
	background-size: cover;
	background-position: center right;
	padding: var(--size1) 0;
}

section.tekst_op_verloop .column4 {
	margin-left: auto;
	text-align: right;
	color: white;
	font-size: var(--largeSize);
	line-height: var(--largeLine);
	font-weight: 800;
}

h2 {
	margin-left: var(--size2);
	font-size: var(--largeSize);
	line-height: var(--largeLine);
	font-weight: 700;
	color: var(--magenta);
}



.klantoverzicht img {
	width: 100%;
	height: auto;
}

section.paginalinks {
	background-image: url('i/bg.jpg');
	background-size: cover;
	background-position: top left;
	background-color: var(--orange);
	color: white;
	padding: var(--size1) 0;
	text-align: center;
}

section.paginalinks h2 {
	margin-left: 0;
	color: white;
}

section.paginalinks .flexcontainer {
	align-items: stretch;
	margin-top: 2em;
}

section.paginalinks .button {
	margin: auto;
	background: var(--magenta);
	margin-top: 2rem;
}

section.paginalinks .button:hover {
	background-image: url('i/gradient.jpg');
	background-size: cover;
	background-position: center right;
}

.paginalink {
	display: flex;
	flex-direction: column;
	transition: transform .5s;
	transform: scale(1);
	width: 50%;
}

.paginalink:nth-of-type(odd) {
	padding-right: 1rem;
}
.paginalink:nth-of-type(even) {
	padding-left: 1rem;
}

.paginalink:hover {
	transform: scale(1.05);
}

.paginalink img {
	border-radius: 2rem 2rem 0 0;
}

.paginalink_content b {
	margin-bottom: 1rem;
	font-size: var(--titleSize);
	line-height: var(--titleLine);
}

.paginalink_content {
	background: var(--white);
	padding: 1rem 3rem;
	display: flex;
	color: var(--chocolate);
	flex-direction: column;
	min-height: 8rem;
	justify-content: center;
	align-items: center;
	text-align: center;
	border-radius:  0 0 2rem 2rem;
	height: 100%;
}

section.plan_een_afspraak h2,
section.team h2 {
	margin-left: auto;
	text-align: center;
}

h4 {
	margin-bottom: 0;
	font-size: var(--bodySize);
	line-height: var(--bodyLine);
	margin-top: 1rem;
}

section.team .flexcontainer {
	align-items: flex-start;
}

.teamwrap {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
}

.teamitem {
	width: 50%;
	display: flex;
	flex-direction: column;
	text-align: center;
	font-size: var(--smallSize);
	margin-bottom: 2rem;
}


.teamitem:nth-of-type(odd) {
	padding-right: 1rem;
}
.teamitem:nth-of-type(even) {
	padding-left: 1rem;
}

.teamitem img {
	margin-bottom: .5rem;
	border-radius: 100%;
}

section.plan_een_afspraak {
	background: var(--misty);
	padding: var(--size1) 0;
}

section.plan_een_afspraak .arrow {
	margin-top: -1rem;
	margin-right: -3rem;
	margin-bottom: 1rem;
}

section.plan_een_afspraak .column2_5 {
	display: flex;
	flex-direction: column;
}

section.plan_een_afspraak .flexcontainer {
	align-items: stretch;
}

.calendly-inline-widget {
	position: absolute;
	inset: 0;
	border-radius: .25rem;
	box-shadow: 5px 5px 15px rgba(0,0,0,.25);
	background: white;
	overflow:hidden;
	min-height: calc(100% - 3rem);
}

section.footer {
	background: var(--magenta);
	color: white;
	padding: .5rem 0;
	font-size: var(--smallSize);
}

section.footerfill {
	background: var(--magenta);
	position: fixed;
	height: 50vh;
	width: 100%;
	content: '';
	bottom:0;
	z-index: -1;
}

section.contactform + section.footer,
section.paginalinks + section.footer,
section.tekst_op_verloop + section.footer,
section.plan_een_afspraak + section.footer {
	margin-top: 0;
}

section.footer .flexcontainer {
	align-items: center;
}

.footico svg {
	height: 3rem;
	fill:var(--white);
	display: block;
}

.footlinks {
	margin-right: auto;
	padding: 0 1rem;
}

.footlinks a {
	margin: .25rem;
}

.footlinks a:hover {
	text-decoration: underline;
}

.footcopy {
	margin-left: auto;
}


section.contactform {
	background-image: url('i/gradient.jpg');
	background-size: cover;
	background-position: center right;
	padding: var(--size1) 0;
}

section.contactform h2 {
	color: white;
	text-align: center;
	width: 50%;
	margin: auto;
	margin-bottom: 2rem;
}

section.contactform .wpcf7 {
	width: 50%;
	margin: auto;
	color: white;
	text-align: center;
}

.wpcf7 input,
.wpcf7 textarea {
	resize: none;
	font-family: "Bricolage Grotesque", sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
	font-variation-settings: "wdth" 100;
	font-size: var(--smallSize);
	line-height: 1.5rem;
	background: rgba(255,255,255,.05);
	border: 2px solid var(--white);
	border-radius: 2rem;
	padding: .5rem 1rem;
	color: var(--white);
	width: 100%;
	text-align: center;
}

.wpcf7 input:focus,
.wpcf7 textarea:focus {
	outline:none;
}


.wpcf7 * {
	color: var(--white) !important;
	font-size: var(--smallSize);
}


.wpcf7 .recaptcha .g-recaptcha {
	display: inline-block;
}

.wpcf7-submit {
	width: auto !important;
	display: inline-block;
	margin: auto;
	margin-top: .5rem;
	cursor: pointer;
	background: var(--magenta) !important;
	border: 0 !important;
	transition: background .25s;
}
.wpcf7-submit:hover {
	background: var(--orange) !important;
}


.wpcf7-spinner {
	position: absolute;
}

.cc-revoke {
	display: none !important;
}

.videofit,
.vert_videofit {
	margin: auto;
	width: 60%;
	height: auto;
	margin-top: 1em;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#000), color-stop(40%, #656565), color-stop(40%, #000), to(#000));
	background-image: -o-linear-gradient(#000 0%, #656565 40%, #000 40%, #000 100%);
	background-image: linear-gradient(#000 0%, #656565 40%, #000 40%, #000 100%);
	-webkit-box-shadow: 0 0 3px 0 rgba(0,0,0,0.65);
	box-shadow: 0 0 3px 0 rgba(0,0,0,0.65);
	border-radius: 30px;
	padding: 55px 10px;
	box-sizing: border-box;
}

.vert_videofit {
	width: 30%;
}

.vert_videoWrapper {
	height: 0;
	padding-bottom: 177.78%;
	position: relative;
}

.videoWrapper {
	height: 0;
	padding-bottom: 56.25%;
	position: relative;
}

.videoWrapper iframe, .videoWrapper video, .vert_videoWrapper iframe {
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}



.nicetable tr td {
	padding: .2em .5em;
}
.nicetable tr:nth-child(odd){
	background: #eee;
}

.nicetable tr:nth-child(even){
	background: #fafafa;
}

.videoTijdButton {
	background: var(--orange);
	padding: .25em 1em;
	color: white;
	border: none; 
	font-size: 1em;
	margin-top: .5em;
	margin-left:1em;
	font-family: 'Open Sans', sans-serif;
	font-weight: 300;
	line-height: 170%;
	cursor: pointer;
	width: auto;
	transition: background .5s;
}

.videoTijdButton:hover {
	background: black;
}

.spoedcursus_legenda {
	position: relative;
	float: right;
	display: inline-block;
	margin-bottom: 2em;
	margin-left: 2em;
	width: 40%;
	font-size: .8em;
	z-index: 100;
}

.spoedcursus_legenda ul {
	list-style: none;
	padding: 0px;
	margin: 0px;
}

.spoedcursus_legenda li::before {
	display: none;
}

.spoedcursus_legenda a {
	color: black !important;
	text-decoration: none !important;
}

.spoedcursus_legenda tr:hover {
	background: rgba(220,13,21,.05);
}
.spoedcursus_legenda tr td {
	padding:0em .5em;
}

.watchIndicator {
	display: inline-block;
	margin-right: 1em;
}

.watchIndicator span {
	background: var(--misty);
	height: 1em;
	width: 1em;
	display: block;
	border: 1px solid var(--magenta);
}

.watchIndicator span.icon-checkbox-checked {
	background: var(--magenta);
}

.lescontainer .videofit {
	width: 100%;
	margin-bottom: 2em;
}

.leesmeeritem {
	background: none !important;
}
.lescontainer h2 {
	font-size: var(--titleSize) !important;
	line-height: var(--titleLine) !important;
	text-align: left;
}

.les-link {
	padding: .5em 1em;
	color: var(--orange) !important;
	border: 1px solid var(--orange);
	position: relative;
	text-align: left;
	transition: background .5s, color .5s, border-color .5s;
}

.les-link span {
	position: relative;
	top:-.1em;
	vertical-align: middle;
}


.les-link-container {
	position: relative;
	width: 100%;
	text-align: center;
}

.les-vinkje {
	display: inline-block;
	margin: auto;
	position: relative;
	padding: .5em 1em;
	color: var(--orange) !important;
	border: 1px solid var(--orange);
	position: relative;
	transition: background .5s, color .5s, border-color .5s;
	text-align: left;
	border-radius: 1em;
	cursor: pointer;
}

.les-vinkje:hover, .les-finished {
	background-image: url('i/gradient.jpg');
	background-size: cover;
	background-position: center right;
	color: white !important;
}

.les-finished:hover {
	background: white !important;
	color: var(--orange) !important;
	cursor: pointer;
}

.les-finished {
	cursor: default;
}

.les-vinkje .iconhold {
	display: none;
	width: 1em;
	height: 1em;
	margin-right: .5em;
	top:.1em;
	position: relative;
}

.les-vinkje .iconhold span {
	position: absolute;
	transition: opacity .5s, color .5s;
}

.les-unfinished .icon-checkbox-checked {
	opacity: 0;
}

.les-finished .icon-checkbox-checked, .les-vinkje:hover .icon-checkbox-checked {
	opacity: 1;
	color: white !important;
}




.vorige-les span {
	margin-right: 1em;
}

.volgende-les span {
	margin-left: 1em;
}

.vorige-les {
	border-radius: 2em 1em 1em 2em;
	float: left;
}
.volgende-les {
	border-radius: 1em 2em 2em 1em;
	float: right;
}

.les-link:hover {
	background: black;
	border-color: black;
	color: white !important;
}

.lescontainer ol li::before {
	display: none;
}


.opvallend {
	position: relative;
	display: table;
}

.opvallend span {
	padding: .5em 1em;
	background: #fbfbfb;
	display: table-cell;
	vertical-align: middle;
}

.opvallend b {
	background:var(--orange);
	color:white;
	padding: .5em 1em;
	display: table-cell;
	vertical-align: middle;
	white-space: nowrap;
}

.opvallend.tip b {
	background: var(--orange);
}

.opvallend.opdracht b {
	background: #0ea62b;
}

.opvallend.bijvoorbeeld b {
	background: #2297bb;
}

.lescontainer hr {
   border: 0;
   width: 100%;
   height: 1px;
   margin: 2em 0em;
   background: var(--orange);
   position: relative;
   z-index: 999;
}
  
.opdracht-table {
	width: 100%;
	border-collapse: collapse; 
	line-height: 200%;
}

.opdracht-table tr td {
	border-bottom: 1px solid #ccc;
	vertical-align: top;
}

.opdracht-table tr {
	height: 3em;
}



.contentcontainer {
	padding: 2em;
	max-width: 1500px;
	margin: auto;
}

.videofit,
.vert_videofit {
	margin: auto;
	width: 60%;
	height: auto;
	margin-top: 1em;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#000), color-stop(40%, #656565), color-stop(40%, #000), to(#000));
	background-image: -o-linear-gradient(#000 0%, #656565 40%, #000 40%, #000 100%);
	background-image: linear-gradient(#000 0%, #656565 40%, #000 40%, #000 100%);
	-webkit-box-shadow: 0 0 3px 0 rgba(0,0,0,0.65);
	box-shadow: 0 0 3px 0 rgba(0,0,0,0.65);
	border-radius: 30px;
	padding: 55px 10px;
	box-sizing: border-box;
}