/*
Theme Name: SHD Theme
Theme URI: 
Author: Studio RGB
Author URI: https://studiorgb.be
Description: Custom WordPress theme for SHD based on design specifications
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: shd
*/
@font-face {
	font-family:'Regular';
	src:	url('fonts/Regular-RegularWEB.woff')format('woff'),
			url('fonts/Regular-RegularWEB.woff2')format('woff2');
	font-weight: 400;
	font-style: normal;
}

@font-face {
	font-family:'Regular';
	src:	url('fonts/Regular-RegularItalicWEB.woff')format('woff'),
			url('fonts/Regular-RegularItalicWEB.woff2')format('woff2');
	font-weight: 400;
	font-style: italic;
}

@font-face {
	font-family:'Regular Slab';
	src:	url('fonts/RegularSlab-SemiboldWEB.woff')format('woff'),
			url('fonts/RegularSlab-SemiboldWEB.woff2')format('woff2');
	font-weight: 400;
	font-style: normal;
}

@font-face {
	font-family:'Regular Inline';
	src:	url('fonts/Regular_Inline-BoldWEB.woff')format('woff'),
			url('fonts/Regular_Inline-BoldWEB.woff2')format('woff2');
	font-weight: 700;
	font-style: normal;
}


* {
	margin: 0;
	padding: 0;
}
* {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}
*:before,
*:after {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}
a {
  text-decoration: none;
  color: inherit;
}
body {
  font-family: 'Equitan Sans', sans-serif;
  text-rendering: optimizeLegibility;
  font-size: 17px;
  line-height: 18px;
  font-family: 'Regular';
  background-color: #f4f4e8;
  -webkit-font-smoothing: antialiased;
  word-break: break-word;
  max-width: 2000px;
  margin: 0 auto;
  overflow-x: hidden;
  color: #203c60;
  padding: 24px;
  padding-top: 0;
}
html {
  box-sizing: border-box;
  -ms-overflow-style: scrollbar;
  scroll-behavior: smooth;
}
html, body {
    overscroll-behavior: none;
}
img {
  width: 100%;
  height: auto;
  display: block;
}
h1, h2, h3 {
  -webkit-hyphens: auto;
  hyphens: auto;
}
.menu-toggle {
    width: 26px;
    height: 16px;
    position: relative;
    cursor: pointer;
    position: fixed;
    top: 60px;
    right: 24px;
}
.menu-toggle div {
    width: 100%;    
    height: 2px;
    background-color: #203c60;
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.3s ease-in-out;
    transform-origin: center;
}
.menu-toggle div:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}
.menu-toggle div:nth-child(3) {
    top: auto;
    bottom: 0;
}
.show-menu .menu-toggle div:nth-child(2) {
    opacity: 0;
}
.show-menu .menu-toggle div:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}
.show-menu .menu-toggle div:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.blok-images-2, .blok-images-3 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.blok-images-3 {
    grid-template-columns: repeat(3, 1fr);
}
.blok .blok-video {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
}
.blok-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.blok {
    padding-bottom: 60px;
}
.blok-ti+.blok-ti{
    margin-top: -36px;
}

/* Fullscreen Gallery Styles */
.fullscreen-gallery-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(245, 245, 210, 0.8);
    z-index: 9999;
    overflow: hidden;
}

.fullscreen-gallery {
    height: 100%;
    width: 100%;
}

.flickity-viewport {
    height: 100% !important; /* Force full height */
}

.fullscreen-gallery-cell {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fullscreen-gallery-cell img {
    max-width: 90%;
    max-height: 90vh; /* Use viewport height */
    width: auto; /* Allow natural width */
    height: auto; /* Allow natural height */
    object-fit: contain;
}

.fullscreen-gallery-close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #203c60;
    font-size: 30px;
    cursor: pointer;
    z-index: 10000;
}

body.gallery-fullscreen-active {
    overflow: hidden;
}

/* Thumbnail gallery styles */
.blok .blok-gallery {
    display: grid;  
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.gallery-item {
    cursor: pointer;
}

.gallery-thumbnail img {
    transition: opacity 0.3s ease;
}

.gallery-thumbnail:hover img {
    opacity: 0.8;
}
.blok-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 24px;
}
.title h1 {
    font-family: 'Regular Inline';
    font-size: 50px;

    line-height: 49px;
    padding-bottom: 24px;
    padding-left: 24px;
}
.txt h2 {
    font-family: 'Regular Slab';
    font-size: 32px;
    line-height: 30.4px;
    padding-left: 24px;
    padding-bottom: 24px;
}
.txt p, .txt ul, .txt ol {
    font-size: 17px;
    line-height: 18px;
}
.txt li {
    padding-bottom: 4px;
}
.txt ul {
    list-style: none;
}

.txt ul li {
    position: relative;
    padding-left: 24px;
}

.txt ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 2px;
    width: 13px;
    height: 13px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 13.06 13.06'%3E%3Ccircle fill='none' stroke='%23203c60' stroke-width='1.6' cx='6.53' cy='6.53' r='2.41'/%3E%3Ccircle fill='none' stroke='%23203c60' stroke-width='1.6' cx='6.53' cy='6.53' r='5.73'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}
.txt>* {
    padding-bottom: 18px;
}
.txt {
    margin-bottom: -18px;
}
.txt blockquote {
    font-family: 'Regular Slab';
    
    padding-bottom: 42px;
}
.txt blockquote p {
    font-size: 22px !important;
    line-height: 24px !important;
}
.blok-text .txt {
    width: 51.22%;
    margin-left: 32%;
}
.blok-text {
    position: relative;
}
.blok-text .cta {
    position: absolute;
    bottom: 60px;
    left: 0;
}
.cta {
    border: solid 2px #203c60;
    border-left: none;
    border-top: none;
}
.cta a {
    display: block;
    font-family: 'Regular Slab';
    font-size: 22px;
    line-height: 24px;
    width: 180px;
    padding-left: 26px;
    padding-right: 34px;
    position: relative;
    padding-top: 20px;
    padding-bottom: 20px;
}
.cta a:after, .post-preview-read-more:after, .gotopage a:after {
    font-family: 'Regular Slab';
    content: '→';
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 27px;
    transition: transform 0.3s ease;
}
.post-preview-read-more:after, .gotopage a:after {
    right: 0;
}
.cta a:hover:after, .post-preview-read-more:hover:after, .gotopage a:hover:after {
    transform: translate(5px, -50%);
}
.cta:before, .cta:after, .cta a:before {
    content: '';
    position: absolute;
    left: 6px;
    top: 0;
    width: calc(100% - 16px);
    height: 2px;
    background-color: #203c60;
}
.cta:after {
    width: 2px;
    height: 100%;
    left: 0;
    top: 0;
}
.cta a:before {
    height: calc(100% - 6px);
    width: 2px;
    left: 6px;
    top: 0px;
}
.buttons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.button a {
    display: block;
    padding: 30px 15px 55px;
    text-align: center;
}
.button {
    display: block;
    font-family: 'Regular Slab';
    font-size: 22px;
    line-height: 24px;
   
    position: relative;
    border: solid 2px #203c60;
}
.button a:after {
    content: '→';
    position: absolute;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
    font-size: 27px;
    transition: transform 0.3s ease;
}
.button a:hover:after {
    transform: translate(calc(-50% + 5px), 0%);
}
.button:nth-child(4n+1) {
    
    border-left: none;
    border-bottom: none;
}
.button:nth-child(4n+2) {
    border-top: none;
    border-right: none;
}
.button:nth-child(4n+3) { 
    border-right: none;
}
.button:nth-child(4n+4) {
    border-bottom: none;
    border-left: none;
}
.button:before, .button:after, .button a:before, .bw:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: calc(100% - 16px);
    height: 2px;
    background-color: #203c60;
}
.button:nth-child(4n+1):before, .button:nth-child(4n+1) .bw:before { 
    width: 2px;
    height: calc(100% - 7px);
    top: auto;
    bottom: 0;
}
.button:nth-child(4n+1):after {
    width: calc(100% - 7px);
    height: 2px;
    top: 7px;
}
.button:nth-child(4n+1) a:before {
    height: 2px;
    width: calc(100% - 7px);
    left: 0px;
    top: auto;
    bottom: 0;
}
.button:nth-child(4n+1) .bw:before {
    left: calc(100% - 9px);
}

.button:nth-child(4n+2):before { 
    width: 2px;
    height: calc(100% - 7px);
    top: 0;
    left: auto;
    right: 0;
}
.button:nth-child(4n+2):after {
    width: calc(100% - 9px);
    height: 2px;
    top: 0px;
    left: 9px;
}
.button:nth-child(4n+2) a:before {
    height: 2px;
    width: calc(100% - 7px);
    left: 7px;
    top: auto;
    bottom: 7px;
}
.button:nth-child(4n+2) .bw:before {
    left: calc(100% - 9px);
    display: none;
}

.button:nth-child(4n+3):before { 
    width: 2px;
    height: calc(100% - 7px);
    top: 7px;
    left: auto;
    right: 0;
}
.button:nth-child(4n+3):after {
    width: 2px;
    height: calc(100% - 16px);
    top: 8px;
    left: 7px;
}
.button:nth-child(4n+3) a:before {
    display: none;
}
.button:nth-child(4n+3) .bw:before {
    left: 7px;
    width: calc(100% - 9px);
    top: 7px;
}

.button:nth-child(4n+4):before { 
    width: 2px;
    height: calc(100% - 9px);
    top: 0;
    left: 0;
}
.button:nth-child(4n+4):after {
    width: calc(100% - 16px);
    height: 2px;
    top: 7px;
    left: 9px;
}
.button:nth-child(4n+4) a:before {
    height: 2px;
    width: calc(100% - 7px);
    left: 0;
    top: auto;
    bottom: 0;
}
.button:nth-child(4n+4) .bw:before {
    left: calc(100% - 9px);
    height: calc(100% - 9px);
    width: 2px;
    top: 9px;
}
h1.site-title {
    width: 200px;
}
nav.main-menu {
    font-family: 'Regular Slab';
    font-size: 19px;
    line-height: 20.4px;
    width: calc(100% - 130px);
    padding-left: 10px;
    padding-right: 40px;
}
nav.main-menu .sub-menu {
    display: none;
    position: absolute;
    background-color: #f4f4e8;
    z-index: 10;
    width: calc(100% + 30px);
    padding-left: 79px;
    margin-left: -79px;
    text-align: left;
    padding-top: 5px;
    padding-bottom: 5px;
}
nav.main-menu .sub-menu li {
    padding-left: 40px;
}
nav.main-menu .sub-menu:before, nav.main-menu .sub-menu:after {
    content: '';
    position: absolute;
    left: 24px;
    width: 2px;
    top: 0;
    height: calc(100% - 5px);
    background-color: #203c60;

}
nav.main-menu .sub-menu:after {
    left: 31px;
}
ul#menu-main {
    display: grid;
    grid-template-columns: repeat(33, 1fr);
    column-gap: 24px;
    row-gap: 5px;
}
#menu-main>li {
    list-style-type: none;
    padding-left: 78px;
    text-align: center;
    position: relative;
    padding-bottom: 6px;
}
#menu-main>li:not(:first-child):before, #menu-main>li:not(:first-child):after {
    content: '';
    position: absolute;
    left: 23px;
    top: 0;
    width: 2px;
    height: 100%;
    background-color: #203c60;
}
.sub-menu li {
    list-style-type: none;
}
#menu-main>li:not(:first-child):after {
    left: 30px;
}

ul#menu-main > li:nth-child(1) {
    grid-column: span 6;
    padding-left: 23px;
    text-align: left;
}
ul#menu-main > li:nth-child(2) {
    grid-column: span 11;
}
ul#menu-main > li:nth-child(3) {
    grid-column: span 9;
}
ul#menu-main > li:nth-child(4) {
    grid-column: span 7;
}
#menu-main>li:hover .sub-menu {
    display: block;
}

ul#menu-main > li:nth-child(n+5):nth-child(-n+7) {
    grid-column: span 11;
}
.main-menu ul.menu>li:first-child {
    padding-left: 23px;
}
header {
    display: flex;
    position: sticky;
    position: -webkit-sticky;
    top: 0;
    z-index: 100;
    padding-bottom: 24px;
    padding-top: 24px;
    background-color: #f4f4e8;
}
figure.preview-image {
    position: relative;
    display: inline-block;
    overflow: hidden;
    width: 100%;
    mix-blend-mode: multiply;
}

figure.preview-image img {
    filter: grayscale(100%);
    mix-blend-mode: multiply;
    transition: all 0.3s ease;
}

figure.preview-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #203c60;
    mix-blend-mode: screen;
    z-index: 1;
    pointer-events: none;
    transition: all 0.3s ease;
}
.txt a {
  text-decoration: underline;
}
.preview:hover figure.preview-image img {
  filter: grayscale(0);
  mix-blend-mode: normal;
}
.preview:hover figure.preview-image::before {
  background-color: transparent;
}
.posts-grid, .about-school {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.about-school {
    padding-top: 80px;
}
.screen-reader-text {
    display: none;
}
.posts-grid-2, .about-school {
    grid-template-columns: repeat(2, 1fr);
}
.post-preview-wide {
    grid-column: span 3;
    position: relative;
}
.post-preview {
    background-color: #f4f4e8;
}
h3.post-preview-title {
    font-family: 'Regular Slab';
    font-size: 22px;
    line-height: 24px;
    padding-left: 32px;
    padding-right: 52px;
    padding-bottom: 24px;
    min-height: 102px;
}
.post-preview-excerpt {
    padding-left: 24px;
}
.post-preview .post-preview-image {
    padding-bottom: 24px;
}
.post-preview-image {
    background-color: #f4f4e8;
}
.post-preview-image a {
    display: block;
}
.post-preview-read-more {
    font-family: 'Regular Slab';
    display: block;
    text-align: right;
    font-size: 26px;
    line-height: 28px;
    padding-top: 10px;
    width: 27px;
    height: 27px;
    position: absolute;
    right: 0;
    bottom: 0;
}
.post-preview-wide .post-preview-read-more {
    right: 24px;
}
.post-preview-content, .post-preview {
    position: relative;
}
.post-preview-content {
    padding-bottom: 37px;
}
.post-preview-icons {
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
}
.post-preview-wide .post-preview-icons {
    right: 9px;
    top: 24px;
}
.post-preview-wide .post-preview-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: calc(33.33333% + 9px);
    padding-right: 24px;
    padding-top: 24px;
    background-color: #f4f4e8;
}
.post-preview-image {
    isolation: isolate; 
}
.post-preview:after {
    content: '';
    position: absolute;
    bottom: 36px;
    right: -14px;
    width: 2px;
    height: 110px;
    background-color: #203c60;
    display: block;
}
.post-preview:last-child:after, .page-template-in-de-kijker .post-preview:nth-child(even):after {
    display: none;
}
.gotopage {
    text-align: right;
    position: relative;
    margin-top: 11px;
}
.gotopage a {
    display: block;
    font-family: 'Regular Slab';
    font-size: 22px;
    line-height: 24px;
    padding-right: 26px;
}
.shape {
    background-image: url('img/shape1.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right top;
    width: 100%;
    height: 22vw;
    
    
    
}
.gotopage+.shape1 {
    margin-top: -30px;
}
.shape2 {
    background-image: url('img/shape2.svg');
    height: 17vw;
    background-position: bottom;
}
.about-school>*, .in-de-kijker-intro *, .title p {
    font-size: 22px;
    line-height: 24px;
    font-family: 'Regular Slab';
    padding-left: 24px;
}
.in-de-kijker-intro *, .title p {
    padding-left: 12px;
}
.in-de-kijker-intro {
    padding-right: 30px;
}
.home main {
    padding-bottom: 110px;
}
footer {
    position: relative;
    padding-top: 3.2px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 5 9.98'%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill:%23203c60;%7D%3C/style%3E%3C/defs%3E%3Crect class='cls-1' width='5' height='3.2'/%3E%3Crect class='cls-1' y='6.78' width='5' height='3.2'/%3E%3C/svg%3E");
    background-repeat: repeat-x;
    background-size: 5px 10px;
    background-position: top;
    padding-top: 30px;
}
.nieuws-intro {
    padding-top: calc(66.6666% + 24px);
}
.nieuws-intro+.post-preview .post-preview-image {
    width: calc(200% + 24px);
    margin-left: calc(-100% - 24px);
    height: 0;
    padding-bottom: 66.6666%;
    margin-bottom: 24px;
    overflow: hidden;
    position: relative;
    mix-blend-mode: multiply;
}
.nieuws-intro+.post-preview .post-preview-image a {
    display: block;
    width: 100%;
    height: auto;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

/* Search Page Styles */
.search-page {
    padding: 40px 0;
}

.search-form-container {
    margin-bottom: 40px;
    max-width: 800px;
}

.search-title {
    font-family: 'Regular Slab';
    font-size: 32px;
    margin-bottom: 20px;
    color: #203c60;
}

.search-form {
    position: relative;
    width: 100%;
}

.search-input-wrapper {
    display: flex;
    border: 2px solid #203c60;
    border-radius: 0;
    overflow: hidden;
}

.search-field {
    flex-grow: 1;
    border: none;
    padding: 15px;
    font-family: 'Regular';
    font-size: 18px;
    background-color: #f4f4e8;
    color: #203c60;
}

.search-field:focus {
    outline: none;
}

.search-submit {
    width: 50px;
    background-color: #f4f4e8;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-submit img {
    width: 24px;
    height: 24px;
}

.search-results-count {
    margin-bottom: 20px;
    font-family: 'Regular';
    font-size: 18px;
    color: #203c60;
}

.search-results-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.no-results {
    padding: 40px 0;
    text-align: center;
    font-size: 18px;
}

/* Pagination styles for search results */
.pagination {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.pagination .page-numbers {
    padding: 8px 12px;
    margin: 0 5px;
    border: 1px solid #203c60;
    color: #203c60;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pagination .page-numbers.current {
    background-color: #203c60;
    color: #fff;
}

.pagination .page-numbers:hover:not(.current) {
    background-color: rgba(32, 60, 96, 0.1);
}
.shape2:last-child {
    margin-bottom: 50px;
}
.search-results .post-preview:nth-child(3n+3):after {
    display: none;
}
footer {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 24px;
}
footer .menu li, .overlay-menu li {
    list-style: none;
    font-family: 'Regular Slab';
    font-size: 18px;
    line-height: 25px;
}
#menu-item-111 {
    padding-top: 20px;
}
#menu-item-115 {
    padding-top: 45px;
}
footer img {
    padding: 0 24px;
}
p.footer-address {
    font-family: 'Regular Slab';
    font-size: 16px;
    line-height: 19.2px;
    padding-bottom: 14px;
}
p.ingang span {
    font-family: 'Regular Slab';
    font-size: 16px;
    line-height: 19.2px;
    padding-bottom: 1px;
    display: inline-block;
}
p.ingang {
    font-size: 15px;
    line-height: 16px;
}
footer div:nth-child(4) {
    padding-left: 40px;
}
i.facebook, i.instagram, i.linkedin, i.x {
    display: block;
    width: 24px;
    height: 24px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-bottom: 6px;
}
i.facebook {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='7' height='13' viewBox='0 0 7 13' fill='none'%3E%3Cpath d='M6.21404 7.45965L6.56491 5.28999H4.40351V3.87972C4.40351 3.28645 4.70526 2.70675 5.67018 2.70675H6.66667V0.859153C6.08636 0.769092 5.49998 0.72037 4.91228 0.713379C3.13333 0.713379 1.97193 1.75413 1.97193 3.63563V5.28999H0V7.45965H1.97193V12.7075H4.40351V7.45965H6.21404Z' fill='%23203c60'/%3E%3C/svg%3E");
}
i.instagram {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M8 0C5.829 0 5.556.01 4.703.048 3.85.088 3.269.222 2.76.42a3.917 3.917 0 0 0-1.417.923A3.927 3.927 0 0 0 .42 2.76C.222 3.268.087 3.85.048 4.7.01 5.555 0 5.827 0 8.001c0 2.172.01 2.444.048 3.297.04.852.174 1.433.372 1.942.205.526.478.972.923 1.417.444.445.89.719 1.416.923.51.198 1.09.333 1.942.372C5.555 15.99 5.827 16 8 16s2.444-.01 3.298-.048c.851-.04 1.434-.174 1.943-.372a3.916 3.916 0 0 0 1.416-.923c.445-.445.718-.891.923-1.417.197-.509.332-1.09.372-1.942C15.99 10.445 16 10.173 16 8s-.01-2.445-.048-3.299c-.04-.851-.175-1.433-.372-1.941a3.926 3.926 0 0 0-.923-1.417A3.911 3.911 0 0 0 13.24.42c-.51-.198-1.092-.333-1.943-.372C10.443.01 10.172 0 7.998 0h.003zm-.717 1.442h.718c2.136 0 2.389.007 3.232.046.78.035 1.204.166 1.486.275.373.145.64.319.92.599.28.28.453.546.598.92.11.281.24.705.275 1.485.039.843.047 1.096.047 3.231s-.008 2.389-.047 3.232c-.035.78-.166 1.203-.275 1.485a2.47 2.47 0 0 1-.599.919c-.28.28-.546.453-.92.598-.28.11-.704.24-1.485.276-.843.038-1.096.047-3.232.047s-2.39-.009-3.233-.047c-.78-.036-1.203-.166-1.485-.276a2.478 2.478 0 0 1-.92-.598 2.48 2.48 0 0 1-.6-.92c-.109-.281-.24-.705-.275-1.485-.038-.843-.046-1.096-.046-3.233 0-2.136.008-2.388.046-3.231.036-.78.166-1.204.276-1.486.145-.373.319-.64.599-.92.28-.28.546-.453.92-.598.282-.11.705-.24 1.485-.276.738-.034 1.024-.044 2.515-.045v.002zm4.988 1.328a.96.96 0 1 0 0 1.92.96.96 0 0 0 0-1.92zm-4.27 1.122a4.109 4.109 0 1 0 0 8.217 4.109 4.109 0 0 0 0-8.217zm0 1.441a2.667 2.667 0 1 1 0 5.334 2.667 2.667 0 0 1 0-5.334z' fill='%23203c60'/%3E%3C/svg%3E"); 
}
i.linkedin { 
    background-image: url("data:image/svg+xml,%3Csvg fill='%23203c60' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 310 310'%3E%3Cpath d='M72.16 99.73H9.927c-2.762 0-5 2.239-5 5v199.928c0 2.762 2.238 5 5 5H72.16c2.762 0 5-2.238 5-5V104.73c0-2.761-2.238-5-5-5zM41.066.341C18.422.341 0 18.743 0 41.362 0 63.991 18.422 82.4 41.066 82.4c22.626 0 41.033-18.41 41.033-41.038C82.1 18.743 63.692.341 41.066.341zM230.454 94.761c-24.995 0-43.472 10.745-54.679 22.954V104.73c0-2.761-2.238-5-5-5h-59.599c-2.762 0-5 2.239-5 5v199.928c0 2.762 2.238 5 5 5h62.097c2.762 0 5-2.238 5-5v-98.918c0-33.333 9.054-46.319 32.29-46.319 25.306 0 27.317 20.818 27.317 48.034v97.204c0 2.762 2.238 5 5 5H305c2.762 0 5-2.238 5-5V194.995c0-49.565-9.451-100.234-79.546-100.234z'/%3E%3C/svg%3E"); 
}
i.x {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 300' fill='%23203c60'%3E%3Cpath d='M178.57 127.15 290.27 0h-26.46l-97.03 110.38L89.34 0H0l117.13 166.93L0 300h26.46l102.4-116.59 81.8 116.59h89.34M36.01 19.54H76.66l187.13 262.13h-40.66'/%3E%3C/svg%3E");
}
div.menu-social-container {
    width: 24px;
    text-align: center;
}
div.menu-footer-rechts-container {
    width: calc(100% - 24px);
}
footer div:nth-child(3) {
    display: flex;
    flex-wrap: wrap;
}

.search-toggle {
    position: fixed;
    right: 24px;
    top: 24px;
    width: 24px;
    height: 24px;
    background-image: url('img/search.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 100;
    cursor: pointer;
}
.overlay-menu {
    position: fixed;
    border-left: 2px solid #203c60;
    top: 115px;
    overflow: auto;
    right: -300px;
    transition: all 0.3s ease;
    height: calc(100vh - 115px);
    height: calc(100*var(--vh) - 115px);
    width: 300px;
    padding: 20px;
    z-index: 100;
    background-color: #f4f4e8;
    padding-top: 0;
}
.show-menu .overlay-menu {
    right: 0;
}
.overlay-menu nav {
    padding-top: 20px;
}
.overlay-menu .sub-menu {
    padding-left: 20px;
}
body.show-menu {
    overflow: hidden;
}
@media(min-width: 768px) {
  #menu-item-34 .sub-menu {
    width: calc(100% + 110px);
    padding-left: 9px;
    margin-left: -24px;
  }
  #menu-item-31 .sub-menu {
    padding-left:25px;
  }
  #menu-item-637 .sub-menu {
    padding-left:49px;
  }
}
@media(max-width: 1100px) {
    nav.main-menu {
        display: none;
    }
    footer {
        grid-template-columns: 1fr 1fr 1fr;
    }
}
@media(max-width: 768px) {
    footer {
        grid-template-columns: 1fr 1fr;
    }
    
    .search-results-grid {
        grid-template-columns: 1fr;
    }
    
    .search-title {
        font-size: 26px;
    }
    .overlay-menu {
        top: 83px;
        height: calc(100vh - 83px);
        height: calc(100*var(--vh) - 83px);
    }
    .search-form-container {
        margin-bottom: 30px;
    }
    h1.site-title {
        width: 150px;
    }
    header {
        padding: 15px;
        padding-top: 15px;
        padding-bottom: 15px;
    }
    body {
        padding: 15px;
        padding-top: 0;
    }
    .search-toggle {
        top: 15px;
        right: 15px;
    }
    .menu-toggle {
        right: 15px;
        top: 44px;
    }
    .blok-header, .blok-images-3, .blok-images-2 {
        grid-template-columns: 1fr;
    }
    .title h1 {
        font-size: 30px;
        line-height: 29px;
        padding-left: 0;
    }
    .txt h2 {
      font-size: 23px;
      line-height: 22px;
      padding-left: 0;
    }
    .blok-text .txt {
        margin-left: 0;
        width: 100%;
     }
     .post-preview-wide {
       grid-column: span 1;
     }
     .post-preview:after {
       display: none;
     }
     .blok-text.has-cta .txt {
        padding-bottom: 120px;
     }
     .buttons {
        grid-template-columns: 1fr 1fr;
     }
     .post-preview-wide .post-preview-content {
        width: 100%;
        position: relative;
     }
     .posts-grid, .about-school {
        grid-template-columns: 1fr 1fr;
     }
     footer div:nth-child(4) {
        padding-left: 0;
    }
    div.menu-social-container {
        width: 100%;
        padding-top: 20px;
    }
    div.menu-social-container ul {
        display: flex;
        gap: 10px;
    }
}
@media(max-width: 480px) {
    .buttons, footer, .posts-grid-2, .about-school, .posts-grid {
        grid-template-columns: 1fr;
    }
    .blok .blok-gallery {
        grid-template-columns: 1fr 1fr;
    }
    
    .nieuws-intro {
        padding-top: 0;
    }
    .nieuws-intro+.post-preview .post-preview-image {
        width: 100%;
        margin-left: 0;
    }
}
