/*======================
   01.fonts
========================*/
@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');

:root{
	--purple: #82294E;
	--yellow: #FFC734;
	--blue: #007AC4;
	--orange: #FF561C;
	--dark_blue: #004D67;
	--dark: #000000;
}

/*======================
   02. Basic css
========================*/
::-moz-selection{
	background-color: var(--yellow);
	color: var(--purple);
}
::selection{
	background-color: var(--yellow);
	color: var(--purple);
}
html{
	font-size: 62.5%;
}
a, button, img{
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}
html,
body,
div,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
strong,
i,
ol,
ul,
li,
form,
label,
footer,
header,
menu,
nav,
section {
	margin: 0;
	padding: 0;
}

body {
	line-height: 1.5;
	font-family: "Ubuntu", system-ui;
	background-color: #fff;
	color: var(--dark);
	font-weight: 400;
	font-size: 1.8rem;
}

ol,
ul {
	list-style: none;
}
a{
	color: inherit;
}
a:hover {
	text-decoration: none;
	color: var(--orange);
}
p a{
	color: inherit;
}
p a:hover{
	color: var(--orange);
}

button:focus,
a:focus,
input:focus,
textarea:focus,
select:focus{
	outline: none;
}
h1{
	font-size: 9rem;
	font-weight: 700;
	line-height: 1;
}
h2{
	font-size: 6rem;
	font-weight: 700;
	line-height: 1.1;
	color: var(--dark_blue);
}
h1 span, h2 span{
	color: var(--yellow);
}
h3{
	font-size: 5rem;
	font-weight: 700;
	line-height: 1.1;
	color: var(--dark_blue);
}
h3 span{
	color: var(--yellow);
}
h4{
	font-size: 3rem;
	font-weight: 700;
	color: var(--dark_blue);
}
h5{
	font-size: 2.6rem;
	font-weight: 700;
	color: var(--dark_blue);
}
h6{
	font-size: 2.4rem;
	font-weight: 700;
}


/* page loader  */
#preloader {
	position: fixed;
	background: #fff;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 99999;
	height: 100vh;
	width: 100vw;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}
.loader3 {
	width: 5.0rem;
	height: 5.0rem;
	display: inline-block;
	padding: .0rem;
	text-align: left;
}

.loader3 span {
	position: absolute;
	display: inline-block;
	width: 5.0rem;
	height: 5.0rem;
	border-radius: 100%;
	background: var(--orange);
	-webkit-animation: loader3 1.5s linear infinite;
	animation: loader3 1.5s linear infinite;
}

.loader3 span:last-child {
	animation-delay: -0.9s;
	-webkit-animation-delay: -0.9s;
}

@keyframes loader3 {
  	0% {
    	-webkit-transform: scale(0, 0);
    	        transform: scale(0, 0);
    	opacity: 0.8;
  	}
  	100% {
    	-webkit-transform: scale(1, 1);
    	        transform: scale(1, 1);
    	opacity: 0;
  	}
}

@-webkit-keyframes loader3 {
  	0% {
    	-webkit-transform: scale(0, 0);
    	opacity: 0.8;
  	}
  	100% {
    	-webkit-transform: scale(1, 1);
    	opacity: 0;
  	}
}
/*Hamburger-menu START CSS*/
.hamburger-menu {
	cursor: pointer;
	display: none;
	z-index: 999;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
}
.hamburger-menu span {
	background: #fff;
	width: 4.5rem;
	height: .4rem;
	display: block;
	margin: .4rem 0;
	border-radius: 2rem;
	-webkit-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.hamburger-menu .line-top.current {
	-webkit-transform: translateY(300%) rotate(135deg);
	-ms-transform: translateY(300%) rotate(135deg);
	transform: translateY(300%) rotate(135deg);
	background: var(--orange);
}
.hamburger-menu .line-center.current {
	opacity: 0;
}
.hamburger-menu .line-bottom.current {
	-webkit-transform: translateY(-290%) rotate(-135deg);
	-ms-transform: translateY(-290%) rotate(-135deg);
	transform: translateY(-290%) rotate(-135deg);
	background: var(--orange);
}
.container{
	padding-left: 1.5rem;
	padding-right: 1.5rem;
}
header {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1024;
	width: 100%;
	-webkit-transition: 0.3s;
	-o-transition:  0.3s;
	transition:  0.3s;
	padding: 2rem 0;
}

/*sticky START CSS*/
header.sticky {
   -webkit-box-shadow: 0 .8rem 2.0rem 0 rgba(0, 0, 0, .1);
   box-shadow: 0 .8rem 2.0rem 0 rgba(0, 0, 0, .1);
   background-color: #fff;
}
.header2{
	background-color: #fff;
}
.logo{
	display: block;
	width: 100%;
	max-width: 32.5rem;
}
header .logo img:last-child{
	display: none;
}
header.sticky .logo img:first-child,
header.current .logo img:first-child,
.header2 .logo img:first-child{
	display: none;
}
header.sticky .logo img:last-child,
header.current .logo img:last-child,
.header2 .logo img:last-child{
	display: block;
}
header.sticky .logo{
	max-width: 26rem;
}
header.sticky .hamburger-menu span,
header.current .hamburger-menu span,
.header2 .hamburger-menu span{
	background: var(--blue);
}
.menu_wrapper {
   padding-top: 5.5rem;
}
.menu{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	-webkit-column-gap: 2rem;
	   -moz-column-gap: 2rem;
	        column-gap: 2rem;
}
.menu>ul{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.menu>ul>li {
   padding: 1.5rem 2rem;
   -webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	margin-right: 1.2rem;
	border-radius: 1rem 1rem 0 0;
}
.menu>ul>li>a {
	font-size: 2rem;
	font-weight: 500;
	color: #fff;
	line-height: 1;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
header.sticky .menu>ul>li>a,
.header2 .menu>ul>li>a{
	color: var(--dark_blue);
}
.menu>ul>li.active>a,
.menu>ul>li>a:hover {
	color: var(--orange) !important;
}
.menu>ul>li.dropdown_wrap{
	position: relative;
}
.menu>ul>li.dropdown_wrap:hover{
	background-color: #CCFFFF;
	color: var(--dark_blue);
}
.menu>ul>li.dropdown_wrap:hover>a{
	color: var(--dark_blue) !important;
}
.menu>ul>li.dropdown_wrap>a::after {
	content: '\f107';
	font-family: 'Font Awesome 5 Pro';
	font-weight: 400;
	margin-left: 0.7rem;
	font-size: 80%;
	position: relative;
	top: 0.2rem;
}
.menu>ul>li.dropdown_wrap>ul {
	position: absolute;
	left: 0;
	top: 100%;
	background-color: #CCFFFF;
	padding: 1rem 2rem;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	opacity: 0;
	pointer-events: none;
	min-width: calc(100% + 2rem);
	overflow: hidden;
	border-radius: 0 1rem 1rem 1rem;
}
.menu>ul>li.dropdown_wrap:hover>ul{
	opacity: 1;
	pointer-events: all;
}
.menu>ul>li.dropdown_wrap>ul>li>a{
	color: var(--dark_blue);
	white-space: nowrap;
	padding: 0.6rem 0rem;
	display: block;
}
.menu>ul>li.dropdown_wrap>ul>li>a:hover,
.menu>ul>li.dropdown_wrap>ul>li.active>a{
	color: var(--orange);
}
header .button{
	font-weight: 500;
}

/*top header*/
.top_header{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	position: absolute;
	right: 1.5rem;
	top: -2rem;
}
.top_inner{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-column-gap: 3rem;
	   -moz-column-gap: 3rem;
	        column-gap: 3rem;
	background-color: var(--blue);
	border-radius: 0 0 0 2rem;
	padding: 1rem 4rem 1rem 2rem;
}
.top_inner ul{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-column-gap: 3rem;
	   -moz-column-gap: 3rem;
	        column-gap: 3rem;
	font-size: 1.6rem;
	row-gap: 3rem;
}
.top_inner ul li a{
	color: #fff;
}
.top_inner ul li a:hover{
	color: var(--dark);
}
.top_header .search_form::before {
    position: absolute;
    content: '';
    height: 100%;
    width: 1000rem;
    background-color: #fff;
    -webkit-box-shadow: 0 0.3rem 3rem rgba(0, 0, 0, 0.05);
    box-shadow: 0 0.3rem 3rem rgba(0, 0, 0, 0.05);
    top: 0;
    left: -9rem;
    z-index: -1;
}
.search_form{
	position: relative;
	z-index: 1;
	-ms-flex-wrap: 0;
	    flex-wrap: 0;
	min-width: 31rem;
}
.search_form input{
	width: 100%;
	border: none;
	min-height: 5rem;
	border: none;
	border-radius: 0;
	color: var(--dark_blue);
	padding: 0 2.5rem;
	height: 100%;
	font-size: 1.6rem;
}
.search_form input::-webkit-input-placeholder{
	color: var(--dark_blue);
	opacity: 0.6;
}
.search_form input::-moz-placeholder{
	color: var(--dark_blue);
	opacity: 0.6;
}
.search_form input:-ms-input-placeholder{
	color: var(--dark_blue);
	opacity: 0.6;
}
.search_form input::-ms-input-placeholder{
	color: var(--dark_blue);
	opacity: 0.6;
}
.search_form input::placeholder{
	color: var(--dark_blue);
	opacity: 0.6;
}
.search_form button{
	padding: 0;
	background-color: transparent;
	border: none;
	color: var(--dark_blue);
	position: absolute;
	right: 0;
	top: 50%;
	-webkit-transform: translateY(-50%);
	    -ms-transform: translateY(-50%);
	        transform: translateY(-50%);
}
.language_select {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-left: 2rem;
    background: #fff;
    position: relative;
    z-index: 2;
}
.language_select a{
	height: 3rem;
	width: 3rem;
	border-radius: 50%;
	border: 0.2rem solid #fff;
	background-color: #fff;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}
.language_select a:not(:last-child){
	margin-right: 0.5rem;
}
.language_select a:hover,
.language_select a.active{
	border-color: var(--orange);
}
.language_select a img{
	height: 100%;
	width: 100%;
	border-radius: 50%;
	-o-object-fit: cover;
	   object-fit: cover;
}
/*button*/
.button {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	padding: 1.4rem 1.5rem;
	color: #fff;
	border-radius: 1rem;
	font-weight: 700;
	font-size: 2rem;
	line-height: 1.1;
	text-align: left;
	border: none;
	background-color: var(--orange);
	-webkit-column-gap: 2rem;
	   -moz-column-gap: 2rem;
	        column-gap: 2rem;
}
.button::after{
	content: '\f138';
	font-family: 'Font Awesome 5 Pro';
	font-weight: 700;
}
.button:hover{
	background-color: var(--dark_blue);
	color: #fff;
	-webkit-box-shadow: 0.1rem 1rem 4rem rgba(0, 0, 0, 0.16);
	        box-shadow: 0.1rem 1rem 4rem rgba(0, 0, 0, 0.16);
}
.white_btn{
	background-color: #CCFFFF;
	color: var(--blue);
}
.white_btn:hover{
	color: #fff;
	background-color: var(--dark_blue);
}
.black_btn{
	background: var(--purple);
	color: var(--yellow);
}
.black_btn:hover{
	background-color: #fff;
	color: var(--purple);
}
.yellow_btn{
	background: var(--yellow);
	color: var(--orange);
}
.yellow_btn:hover{
	background-color: #fff;
	color: var(--orange);
}
.orange_outline{
	background-color: transparent;
	color: var(--orange);
	border: 0.1rem solid var(--orange);
	padding: 1.3rem 1.4rem;
}
.orange_outline:hover{
	border-color: var(--dark_blue);
}

.white_outline{
	background-color: transparent;
	color: #fff;
	border: 0.1rem solid #CCFFFF;
	padding: 1.3rem 1.4rem;
}
.white_outline:hover{
	border-color: var(--dark_blue);
}
.button_wrapper{
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-column-gap: 2.5rem;
	   -moz-column-gap: 2.5rem;
	        column-gap: 2.5rem;
	        row-gap: 1.5rem;
}
.button_wrapper .button{
	min-width: 20rem;
}
/*return-to-top START CSS*/

.back-to-top {
	font-size: 2.5rem;
	width: 5rem;
	height: 5rem;
	line-height: 5rem;
	text-align: center;
	display: none;
	position: fixed;
	bottom: 3.0rem;
	right: 2.0rem;
	border-radius: 50%;
	background: var(--orange);
	z-index: 1000;
}

.back-to-top i {
	color: #fff;
}
/*Home area*/
.home_area {
	position: relative;
	z-index: 1;
	color: #fff;
	padding: 29rem 0 13.5rem;
}
.home_area::before{
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	z-index: -2;
	background-color: var(--dark_blue);
	opacity: 0.7;
}
.home_area::after{
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 50%;
	z-index: -2;
	background: -webkit-gradient(linear, left top, left bottom, from(rgba(0,0,0,1)), to(rgba(34,36,38,0)));
	background: -o-linear-gradient(top, rgba(0,0,0,1) 0%, rgba(34,36,38,0) 100%);
	background: linear-gradient(180deg, rgba(0,0,0,1) 0%, rgba(34,36,38,0) 100%);
}
.home_area h1{
	max-width: 62rem;
	line-height: 1.1;
}
.more_link{
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	font-size: 2rem;
	font-weight: 700;
	-webkit-column-gap: 2rem;
	   -moz-column-gap: 2rem;
	        column-gap: 2rem;
	color: var(--purple);
}
.more_link::after{
	content: '';
	height: 2rem;
	width: 2rem;
	background-size: contain;
	background-position: center center;
	background-repeat: no-repeat;
	background-image: url(../img/arrow_right.svg);
	-ms-flex-negative: 0;
	    flex-shrink: 0;
	display: block;
}
.more_link:hover{
	color: var(--orange);
}
.card_wrap{
	max-width: 53.7rem;
}
.sm_blog{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	background-color: #fff;
	overflow: hidden;
	border-radius: 2rem;
	color: var(--dark_blue) !important;
	-webkit-box-shadow: 0.1rem 0.5rem 4rem rgba(0, 0, 0, 0.16);
	        box-shadow: 0.1rem 0.5rem 4rem rgba(0, 0, 0, 0.16);
}
.sm_blog>img{
	width: 20rem;
	-o-object-fit: cover;
	   object-fit: cover;
}
.sm_blog_content{
	width: 100%;
	padding: 3.5rem;
}
.orange_link{
	color: var(--orange);
}
.sm_blog .more_link::after,
.search_item .more_link::after{
	content: '\f138';
	font-family: 'Font Awesome 5 Pro';
	height: auto;
	width: auto;
	background-image: none;
	margin-top: 0.1rem;
}
.sm_blog .more_link:hover,
.search_item .more_link:hover{
	color: var(--purple);
}
.olive_blog{
	background-color: #9C7D01;
	color: #fff !important;
}
.olive_blog .more_link{
	color: #FFCDFE;
}
.white_g {
	position: absolute;
	right: -3.5rem;
	top: -7rem;
	z-index: -1;
	width: 70rem;
}
.scroll_link {
	position: absolute;
	left: 50%;
	bottom: 0;
	overflow: hidden;
	-webkit-transform: translateX(-50%);
	    -ms-transform: translateX(-50%);
	        transform: translateX(-50%);
	z-index: 2;
	height: 6rem;
}
.scroll_link a{
	height: 12rem;
	width: 12rem;
	color: var(--dark_blue);
	font-size: 5rem;
	display: block;
	background-color: #fff;
	border-radius: 50%;
	text-align: center;
}
.scroll_link a:hover{
	background-color: var(--orange);
	color: #fff;
}
/*school area*/
.school_area{
	background-color: var(--blue);
	color: #fff;
	position: relative;
	padding-top: 5rem;
	padding-bottom: 18rem;
}
.school_area p{
	font-size: 2.4rem;
	font-weight: 500;
	margin-top: 3rem;
	max-width: 86rem;
}
.school_img{
	position: absolute;
	right:0;
	bottom: 0;
	max-width: 84.8rem;
}
.school_img img:first-child{
	mix-blend-mode: overlay;
}
.geslaagd{
	max-width: 23.5rem;
	position: absolute;
	left: 2.8rem;
	top: 7.5rem;
}
.school_content ul{
    column-count: 2;
    margin-top: 4rem;
    max-width: 86rem;
}
.school_content ul li{
    padding-left: 3.5rem;
    position: relative;
    font-size: 2.4rem;
	font-weight: 500;
	margin-bottom: 1rem;
}
.school_content ul li::after {
    content: '\f138';
    font-family: 'Font Awesome 5 Pro';
    font-weight: 700;
    color: var(--orange);
    position: absolute;
    left: 0;
    top: 1rem;
    background-color: #fff;
    height: 2rem;
    width: 2.3rem;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/*about area*/
.about_area{
	background-color: #F4D6D7;
	position: relative;
}
.link_wrap {
	position: absolute;
	left: 0;
	top: -8rem;
	width: 100%;
	z-index: 1;
}
.link_wrap .white_btn{
	background-color: #fff;
	padding: 3.3rem 3rem;
	-webkit-box-shadow: 0.1rem 0.5rem 2.5rem rgba(0, 0, 0, 0.16);
	        box-shadow: 0.1rem 0.5rem 2.5rem rgba(0, 0, 0, 0.16);
	font-size: 2.8rem;
	width: 100%;
}
.link_wrap .white_btn::after{
	color: var(--orange);
}
.link_wrap .white_btn:hover{
	background-color: var(--blue);
	color: #fff;
}
.link_wrap .white_btn:hover::after{
	color: #fff;
}
.about_content{
	padding-top: 9.5rem;
	padding-bottom: 9.5rem;
}
.about_img {
	background-size: cover;
	background-position: center center;
	min-height: 43rem;
	height: 100%;
	width: calc(100% + 11rem);
	margin-left: -11rem;
}
.about_content p{
	max-width: 90.2rem;
}
.about_content p strong{
	color: var(--purple);
	font-size: 2.2rem;
}
.quote_box{
	background-color: var(--purple);
	color: #fff;
	border-radius: 0 1rem 1rem 0;
	margin-left: -6rem;
	padding: 4.8rem 6rem;
}
.quote_box h5{
	font-size: 2.9rem;
	color: #fff;
	margin-bottom: 1.5rem;
	max-width: 29.5rem;
}
.lees_content p{
	max-width: 51.7rem;
}

/*document area*/
.document_area{
	padding: 3rem 0 8rem;
}
.document_area h2{
	max-width: 70rem;
}
.document_area p{
	margin-top: 3.5rem;
	max-width: 60rem;
}
.document_area .button{
	min-width: 20rem;
}
.link_box{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	background-color: #fff;
	-webkit-box-shadow: 0.1rem 0.5rem 2.5rem rgba(0, 0, 0, 0.16);
	        box-shadow: 0.1rem 0.5rem 2.5rem rgba(0, 0, 0, 0.16);
	padding: 2.4rem 3rem;
	border-radius: 1rem;
}
.link_box img{
	height: 3.1rem;
	width: 3.1rem;
	-o-object-fit: contain;
	   object-fit: contain;
}
.link_box h5{
	color: var(--blue);
}
.link_box:hover{
	background-color: var(--yellow);
}
.link_box2 {
	border: 0.1rem solid var(--dark_blue);
	border-radius: 1rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	height: 6rem;
	background-color: #fff;
}
.link_box2 img{
	height: 3.4rem;
	max-width: 17.5rem;
}
.link_box2:hover{
	-webkit-box-shadow: 0rem 0rem 3rem rgba(0, 0, 0, 0.16);
	        box-shadow: 0rem 0rem 3rem rgba(0, 0, 0, 0.16);
}

/*team area*/
.team_area{
	padding: 2rem 0 10rem;
}
.team_box{
	display: block;
	position: relative;
	height: 100%;
	background-color: #fff;
	-webkit-box-shadow: 0.1rem 0.5rem 2.5rem rgba(0, 0, 0, 0.16);
	        box-shadow: 0.1rem 0.5rem 2.5rem rgba(0, 0, 0, 0.16);
	width: 100%;
	border-radius: 1rem;
	overflow: hidden;
}
.team_content{
	position: relative;
	padding: 3.5rem;
	line-height: 1.2;
}
.team_content h6{
	margin-bottom: 1rem;
	color: var(--orange);
}
.team_content p{
	color: var(--dark_blue);
	font-size: 2.2rem;
	font-weight: 700;
}
.social_icons{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-column-gap: 1rem;
	   -moz-column-gap: 1rem;
	        column-gap: 1rem;
}
.team_content .social_icons{
	position: absolute;
	right: 3.4rem;
	top: -2rem;
}
.social_icons a{
	height: 4rem;
	width: 4rem;
	border-radius: 50%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	background-color: var(--orange);
	color: #fff;
	font-size: 1.6rem;
}
.social_icons a:hover{
	background-color: var(--dark_blue);
	color: #fff;
}
.fa-phone{
	-webkit-transform: rotate(90deg);
	    -ms-transform: rotate(90deg);
	        transform: rotate(90deg);
}
.row:not(.no-gutters){
	margin-left: -1.5rem;
	margin-right: -1.5rem;
}
.row:not(.no-gutters)>div{
	padding-left: 1.5rem;
	padding-right: 1.5rem;
}
.lg_gutters:not(.no-gutters){
	margin-left: -4rem;
	margin-right: -4rem;
}
.lg_gutters:not(.no-gutters)>div{
	padding-left: 4rem;
	padding-right: 4rem;
}
.md_gutters:not(.no-gutters){
	margin-left: -3rem;
	margin-right: -3rem;
}
.md_gutters:not(.no-gutters)>div{
	padding-left: 3rem;
	padding-right: 3rem;
}
.owl-dots{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-column-gap: 1.5rem;
	   -moz-column-gap: 1.5rem;
	        column-gap: 1.5rem;
	row-gap: 1.5rem;
}
.owl-dots button{
	height: 1.2rem;
	width: 1.2rem;
	border-radius: 50%;
	background-color: #fff;
	padding: 0.1rem;
	border: none;
	-ms-flex-negative: 0;
	    flex-shrink: 0;
}
.owl-dots button.active{
	background-color: var(--yellow);
}
.owl-nav button {
	position: absolute;
	top: 55%;
	-webkit-transform: translateY(-50%);
	    -ms-transform: translateY(-50%);
	        transform: translateY(-50%);
	padding: 0;
	border: none;
	background-color: transparent;
	font-size: 3.5rem;
	line-height: 1;
	color: #fff;
}
.owl-nav button.owl-prev{
	left: 0;
}
.owl-nav button.owl-next{
	right: 0;
}
.controls_inner{
	display: inline-block;
	position: relative;
	padding: 0 5.5rem;
}

/*news area*/
.news_area{
	padding: 11rem 0 11rem;
	position: relative;
	z-index: 1;
	background-color: var(--orange);
	overflow: hidden;
}
.big_shape{
	position: absolute;
	z-index: -1;
	bottom: 9.5rem;
	max-width: 69.7rem;
	left: -20rem;
}
.news_area h2{
	color: #fff;
}
.slider1 .owl-stage{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.news_box{
	display: block;
	position: relative;
	height: 100%;
	color: var(--dark) !important;
	background-color: #fff;
	border-radius: 1rem;
	overflow: hidden;
}
.news_img img {
	width: 100%;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	-o-object-fit: cover;
	object-fit: cover;
	aspect-ratio: 4.7/3;
}
.news_box:hover .news_img img{
	-webkit-transform: scale(1.15);
	    -ms-transform: scale(1.15);
	        transform: scale(1.15);
}
.news_content {
	padding: 3rem 3rem 5.5rem;
	text-align: left;
	position: relative;
}
.news_content p{
	margin-top: 2rem;
	max-width: calc(100% - 4rem);
}
.news_content h5{
	max-width: 27rem;
}
.news_footer i{
	color: #fff;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	height: 4rem;
	width: 4rem;
	position: absolute;
	right: 3rem;
	bottom: 3rem;
	border-radius: 50%;
	background-color: var(--orange);
	font-size: 2rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}
.news_box i:hover{
	background-color: var(--dark);
}
.news_button .button{
	position: absolute;
	right: 1.5rem;
	top: 0.8rem;
}
.date_box{
	display: inline-block;
	padding: 0.7rem 1.2rem;
	font-size: 1.4rem;
	font-weight: 500;
	color: #fff;
	text-transform: uppercase;
	border-radius: 0.5rem 0.5rem 0 0;
	background-color: var(--dark_blue);
	white-space: nowrap;
	position: absolute;
	bottom: 100%;
	left: 3rem;
}

/*social area*/
.social_area{
	padding: 6.5rem 0 0;
	background-color: #FEF5CF;
	margin: 1rem 0;
}
.title_wrap{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-column-gap: 7rem;
	   -moz-column-gap: 7rem;
	        column-gap: 7rem;
	row-gap: 3.5rem;
}
.title_wrap .icon_box a{
	height: 6rem;
	width: 6rem;
	font-size: 2.5rem;
}
.title_wrap .icon_box a svg{
	height: 2.5rem;
}
.Main__Inner-sc-129s5zi-0.eFUpYn{
	max-width: 100% !important;
}

/*faq area*/
.faq_area{
	padding: 13rem 0 9rem;
}
.text-center{
	text-align: center;
}
.accordion-content {display: none;}
.accordion-content.default {display: block;}
.accordion_item{
   border-bottom: 0.1rem solid #CCFFFF;
   padding: 4rem 0rem;
}
.accordion_item:last-child{
	border-bottom: none;
}
.accordion-toggle{
	position: relative;
	padding-right: 6rem;
	cursor: pointer;
}
.accordion-toggle h5{
	font-size: 2.2rem;
	font-weight: 700;
	color: var(--blue);
}
.accordion-toggle::before {
	content: '';
	position: absolute;
	right: 0;
	top: -.7rem;
	height: 4rem;
	width: 4rem;
	background-image: url(../img/faq_arrow.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}
.accordion-toggle.active::before{
   -webkit-transform: rotate(-180deg);
       -ms-transform: rotate(-180deg);
           transform: rotate(-180deg);
}
.accordion-content {
   padding-top: 2rem;
}
.accordion-content p{
	max-width: 139rem;
}
.faq_btn{
	position: absolute;
	right: 1.5rem;
	top: 0;
	text-align: center;
}

/*cta area*/
.cta_area{
	background-color: var(--yellow);
	color: var(--dark);
	padding: 8.5rem 0 8.5rem;
	position: relative;
	z-index: 1;
	overflow: hidden;
}
.cta_area h2{
	padding-bottom: 0;
	max-width: 90.8rem;
	font-size: 7rem;
	color: #fff;
}
.cta_area p{
	margin-top: 3rem;
}
.girls_img,
.g_img{
	position: absolute;
	z-index: -1;
	pointer-events: none;
}
.girls_img {
	max-width: 39rem;
	left: 6.7rem;
	top: 50%;
	-webkit-transform: translateY(-50%);
	    -ms-transform: translateY(-50%);
	        transform: translateY(-50%);
	mix-blend-mode: multiply;
}
.g_img {
	position: absolute;
	bottom: 5rem;
	width: 53rem;
	right: -9.7rem;
}
/*footer*/
.footer_logo{
	display: inline-block;
	max-width: 35.5rem;
}
footer{
	padding: 5rem 0 10rem;
	background-color: var(--dark_blue);
	color: #fff;
}
footer a{
	color: #fff;
}
footer a:hover{
	color: var(--orange);
}
footer h5{
	margin-bottom: 2rem;
	color: #fff;
	padding-top: 8rem;
}
footer p{
	margin-top: 2rem;
	max-width: 39.3rem;
}
footer ul {
	line-height: 2;
}
.footer_logo_wrap + p{
	margin-top: 5rem;
	padding-bottom: 2rem;
}
.footer_item{
	max-width: 25%;
}
.icon_box{
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.icon_box a{
	width: 3.5rem;
	height: 3.5rem;
	font-size: 1.6rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	color: #fff;
	fill: #fff;
	border-radius: 50%;
	background-color: var(--orange);
}
.icon_box a svg{
	height: 1.6rem;
}
.icon_box a:hover {
	background-color: #fff;
	color: var(--orange);
	fill: var(--orange);
}
.icon_box a:not(:last-child){
	margin-right: 0.7rem;
}
.two_list ul{
	text-transform: uppercase;
	-webkit-column-count: 2;
	   -moz-column-count: 2;
	        column-count: 2;
	-webkit-column-gap: 4.5rem;
	   -moz-column-gap: 4.5rem;
	        column-gap: 4.5rem;
}
.address_wrapper{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
}
.address_wrapper>*{
	max-width: 50%;
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 50%;
	        flex: 0 0 50%;
	margin-top: 0;
}
.address_wrapper>*:not(:last-child){
	margin-bottom: 4rem;
}
.address_wrapper>*:last-child a{
	margin-top: 0;
}
.paginatio_area{
	background-color: #F2F2F2;
	padding: 3rem 0;
}
.breadcrumb{
	padding: 0;
	border-radius: 0;
	background-color: transparent;
	margin-bottom: 0;
}
.breadcrumb-item+.breadcrumb-item::before {
	color: #fff;
}
.breadcrumb li,
.breadcrumb li.active,
.breadcrumb li a{
	color: #fff;
	font-size: 1.8rem;
}
.breadcrumb li a:hover{
	color: var(--orange);
}
.back_link{
	font-weight: 700;
	color: #fff;
	background-image: url(../img/back_arrow.svg);
	background-size: 2.2rem;
	background-repeat: no-repeat;
	padding-left: 3.2rem;
	background-position: left center;
}
.back_link:hover{
	color: #fff;
}

.inner_home{
	padding-bottom: 5rem;
	position: relative;
	background-color: var(--dark_blue);
	padding-top: 17.5rem;
}
.inner_shape {
	position: absolute;
	max-width: 40rem;
	top: 16rem;
	right: 5.5%;
}
.inner_img{
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	height: 42rem;
}
.inner_home h1{
	color: #fff;
	font-size: 6rem;
	position: relative;
	padding-top: 3rem;
}
.inner_description {
    padding-top: 2rem;
    padding-bottom: 5rem;
}
.inner_description p{
	max-width: 114rem;
}
.inner_description p + p{
	margin-top: 3rem;
}
.inner_description p strong{
	color: var(--dark_blue);
}
.blue_bg{
	background-color: var(--blue);
}
.blue_bg + .inner_description p strong{
	color: var(--blue);
}

.purple_bg{
	background-color: var(--purple);
}
.purple_bg + .inner_description p strong{
	color: var(--purple);
}
.inner_description p a,
.inner_description ul a,
.inner_description ol a{
    color: var(--orange);
}

.inner_description a.button, .inner_description a.button:hover{
	color:#fff;
}

.inner_description p a:hover,
.inner_description ul a:hover,
.inner_description ol a:hover{
    color: var(--dark);
}

.orange_bg{
	background-color: var(--orange);
}
.orange_bg + .inner_description p strong{
	color: var(--orange);
}

.red_bg{
	background-color: var(--purple);
}
.red_bg + .inner_description p strong{
	color: var(--purple);
}
.inner_description ul{
    list-style: disc;
    padding-left: 2rem;
    margin-top: 2rem;
}
.inner_description ul li::marker{
    color: var(--orange);
}
table{
    width: 100%;
    margin-top: 2rem;
}
th, td{
    padding: 1rem 1.5rem;
    border: 0.1rem solid var(--dark);
}
.inner_description h2 {
    font-size: 4rem;
    margin-top: 4rem;
    margin-bottom: 2rem;
}


.back_btn{
	-webkit-column-gap: 1.4rem;
	   -moz-column-gap: 1.4rem;
	        column-gap: 1.4rem;
	padding: 1.4rem 1.6rem;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	    -ms-flex-direction: row-reverse;
	        flex-direction: row-reverse;
	color: var(--orange) !important;
}
.button.back_btn::after {
   margin-top: -0.3rem;
   -webkit-transform: rotate(180deg);
       -ms-transform: rotate(180deg);
           transform: rotate(180deg);
}
.instrom_content{
	max-width: 130rem;
}
.instrom_content p{
	margin-top: 3rem;
}
.search_content{
	max-width: 110rem;
}
.search_item:not(:last-child){
	border-bottom: 0.1rem solid rgba(0, 77, 103, 0.2);
	padding-bottom: 5rem;
	margin-bottom: 5rem;
}
.search_title{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-column-gap: 1.5rem;
	   -moz-column-gap: 1.5rem;
	        column-gap: 1.5rem;
	margin-bottom: 2rem;
}
.search_title h6{
	font-size: 2.2rem;
	color: var(--dark_blue);
}
.number_box{
	height: 4rem;
	width: 4rem;
	border-radius: 50%;
	font-size: 2.2rem;
	font-weight: 700;
	color: #fff;
	background-color: var(--orange);
	-ms-flex-negative: 0;
	    flex-shrink: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	vertical-align: middle;
}

.exams_item{
	padding: 6rem 0 10rem;
	position: relative;
	z-index: 1;
}
.exams_item:nth-child(even)::before{
	position: absolute;
	content: '';
	left: 50%;
	-webkit-transform: translateX(-50%);
	    -ms-transform: translateX(-50%);
	        transform: translateX(-50%);
	height: 100%;
	top: 0;
	z-index: -1;
	width: 30000rem;
	background-color: rgba(244, 214, 215, 0.3);
}
.exams_item:nth-child(even) .row{
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	    -ms-flex-direction: row-reverse;
	        flex-direction: row-reverse;
}
.exams_item img{
	border-radius: 1rem;
}
.exams_item .button{
	min-width: auto;
}
.exams_item p{
	margin-top: 3rem;
	max-width: 70rem;
}
.exams_item p a{
	color: var(--orange);
	text-decoration: underline;
}
.exams_item p a:hover{
	color: var(--dark_blue);
}
.exams_item ul{
	list-style: disc;
	padding-left: 1.8rem;
	padding-top: 1rem;
}
.exams_item ul li{
	margin-top: 1rem;
}
.exams_item ul li::marker{
	color: var(--yellow);
}

.partner_area2{
	padding: 5rem 0 11rem;
}
.partner_area2 .partner_box{
	margin-top: 0;
}
.five_col>.col{
	max-width: 20%;
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 20%;
	        flex: 0 0 20%;
}
.team_area .team_box {
	min-height: 100%;
}

.text_content p{
	margin-top: 3rem;
}

.text_content iframe{
	width: 100%;
	border: none;
	height: 30rem;
	display: block;
}
.text_content h3{
	margin-top: 9rem;
}

.sidebar .sm_blog{
	display: block;
	max-width: 36rem;
	margin-left: auto;
}
.sidebar .sm_blog>img{
	width: 100%;
}
.sidebar .sm_blog_content{
	padding: 3rem;
}

.blog_wrapper .news_box{
	height: 100%;
	box-shadow: 0.1rem 0.5rem 2.5rem rgba(0, 0, 0, 0.16);
}
.nieuws_wrapper{
	background-color: rgba(255, 199, 52, 0.3);
}

.faq_sidebar{
	margin-top: 32rem;
}


.reg_box{
	border: 0.1rem solid var(--blue);
	border-radius: 1.5rem;
	display: block;
	padding: 3.2rem 0.8rem;
	text-align: center;
	height: 100%;
	color: var(--orange) !important;
	background-color: #fff;
}
.reg_box img{
	height: 6.9rem;
	margin-bottom: 2.3rem;
}
.reg_box:hover{
	box-shadow: 0 0 3rem rgba(0, 0, 0, 0.16);
}
.ins_area{
	padding-bottom: 12rem;
	padding-top: 5rem;
}
.ins_area .news_box{
	box-shadow: 0.1rem 0.5rem 2.5rem rgba(0, 0, 0, 0.16);
}
.ins_area .news_content h5 {
	max-width: 42rem;
	font-size: 3.4rem;
	padding-bottom: 3rem;
}
.contact_details img{
	width: 100%;
	border-radius: 1rem;
}
.contact_details iframe{
	display: block;
	border-radius: 1rem;
	width: 100%;
	height: 100%;
	border: none;
}

.contact_area{
	background-color: rgba(0, 122, 119, 0.1);
	padding: 7rem 0;
}
.contact_area h3{
	font-size: 4.4rem;
}
.contact_area input,
.contact_area textarea,
.contact_area select{
	display: block;
	width: 100%;
	border-radius: 1rem;
	border: 0.1rem solid var(--blue);
	padding: 0 2.5rem;
	color: var(--dark);
	height: 5rem;
	margin-top: 2.5rem;
}
.contact_area textarea {
	resize: none;
	padding-top: 1.5rem;
	height: 20rem;

}
.check_wrap{
	display: flex;
	align-items: flex-start;
	font-size: 1.6rem;
	column-gap: 1rem;
}
.check_wrap input{
	width: 2.5rem;
	height: 2.5rem;
	margin-top: 0;
	accent-color: var(--orange);
}
.check_wrap a{
	text-decoration: underline;
}

.authority_area{
	padding: 6rem 0;
}
.authority_area h6{
	color: var(--blue);
	font-size: 2.2rem;
	margin-bottom: 2rem;
}
.radio_wrap{
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	column-gap: 5rem;
	margin-top: 1.5rem;
	padding-bottom: 1rem;
}
.radio_wrap label{
	display: flex;
	align-items: center;
	column-gap: 1rem;
}
.radio_wrap input{
	width: 2.5rem;
	height: 2.5rem;
	margin-top: 0;
	accent-color: var(--orange);
}
.contact_area p strong{
	margin-top: 2.5rem;
	display: block;
	line-height: 1;
}
.contact_area h5{
	margin-top: 5rem;
}
.onderwijs textarea{
	height: 15rem;
}
.biginput textarea{
	height: 26rem;
}
.mdinput textarea{
	height: 16.5rem;
}
.pager {
    display: flex;
    align-items: center;
    column-gap: .8rem;
    row-gap: 0.8rem;
}
.simplesearch-page {
    height: 4rem;
    width: 4rem;
    background-color: #f4f4f4;
    display: flex;
    align-items: center;
    justify-content: center;
}
.simplesearch-page a{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    color: var(--dark);
}
.simplesearch-current-page{
    background-color: var(--orange);
    color: #fff;
}







