@import url("default-dark.min.css") screen and (prefers-color-scheme: dark);
@import url("default-light.min.css") screen and (prefers-color-scheme: light);
@import "font-awesome.min.css";
nav, .nav-temp-large-logo, .nav-hamburger {
  --nav-background-color: white;
  --nav-text-color: black;
}

@media (prefers-color-scheme: dark) {
  nav, .nav-temp-large-logo, .nav-hamburger {
    --nav-background-color: #2c3e50;
    --nav-text-color: white;
  }
  .nav-hamburger * {
    filter: invert(100%);
  }
  img.logo {
    filter: brightness(0%) invert(100%);
  }
}
.nav-hamburger, .nav-exit-sliding-menu {
  display: none;
}

.navigation {
  background-color: var(--nav-background-color);
  position: sticky;
  z-index: 1;
  top: 0px;
}
.navigation nav {
  background: var(--nav-background-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.navigation nav .nav-list {
  width: 100%;
}
.navigation nav .nav-list #nav-ul {
  display: flex;
  flex-flow: row wrap;
  /* This aligns items to the end line on main-axis */
  justify-content: flex-end;
}
.navigation nav .nav-list #nav-ul div {
  margin-left: 2vw;
  margin-right: 2vw;
  list-style: none;
  font-size: 13pt;
  font-weight: bold;
}
.navigation nav .nav-list #nav-ul div a {
  color: var(--nav-text-color);
  margin-top: 10px;
  margin-bottom: 10px;
  text-decoration: none;
  transition: all 0.2s;
  font-size: 16px;
  font-family: "Averta Bold", sans-serif;
}
.navigation nav .nav-list #nav-ul div:hover a.dropdown-item {
  color: #F7B76C;
}
.navigation nav .nav-list #nav-ul div:hover .dropdown-content {
  position: absolute;
  display: block;
  background-color: var(--nav-background-color);
}
.navigation nav .nav-list #nav-ul div .dropdown-content {
  display: none;
  padding-top: 10px;
  padding-left: 5px;
  padding-right: 5px;
  margin-left: 0;
}
.navigation nav .nav-list #nav-ul div .dropdown-content a {
  display: block;
}
.navigation nav .nav-list #nav-ul div .dropdown-content a:hover {
  color: #F7B76C;
}
.nav-temp-large-logo {
  position: absolute;
  z-index: 2;
  background-color: var(--nav-background-color);
}

/* Medium  / small screens, mind's logo is quite big it requires to shift to the hamburger menu early */
@media all and (max-width: 850px) {
  nav .nav-list {
    position: fixed;
    left: -10000vw;
    top: -5px;
    bottom: 0px;
    z-index: 8;
    width: 50vw;
  }
  nav .nav-list #nav-ul {
    position: relative;
    top: 0px;
    justify-content: column;
    align-items: baseline;
    width: 50vw;
    height: 100vh;
    z-index: 10;
    background-color: white;
    color: black;
    margin: 0px;
    padding-top: 50px;
  }
  nav .nav-list #nav-ul div {
    padding-bottom: 10px;
    padding-top: 10px;
    width: 100%;
    color: black;
  }
  nav .nav-list #nav-ul div .dropdown-content {
    background-color: white;
    display: block !important;
    color: black !important;
  }
  nav .nav-list #nav-ul div .dropdown-content a {
    margin-left: 30px;
    color: black !important;
  }
  nav .nav-list #nav-ul div:hover {
    background-color: white;
  }
  nav .nav-list #nav-ul div:hover .dropdown-content {
    position: relative !important;
    background: white;
    display: block !important;
  }
  nav #nav-ul {
    background-color: white;
  }
  .nav-temp-large-logo {
    position: initial;
    display: flex;
    justify-content: center;
  }
  .nav-logo {
    display: none;
  }
  .nav-hamburger {
    display: block;
    height: 40px;
    width: 40px;
  }
  .nav-exit-sliding-menu {
    position: fixed;
    display: none;
  }
  .dropdown-content, .dropdown-content a, .dropdown-item {
    color: black !important;
    background: white !important;
  }
  .dropdown-content:hover, .dropdown-content a:hover, .dropdown-item:hover {
    color: block;
    background: white !important;
  }
}
.display-sliding-menu {
  left: 0px !important;
}

.display-exit-sliding-menu {
  z-index: 10;
  top: 0px;
  bottom: 0px;
  right: 0px;
  width: 50vw;
  display: block;
  background-color: rgba(0, 0, 0, 0.7);
}

/**
 * Flex Grid -
 * Version: 0.3.5
 *
 * Simple grid built with flex box and sass.
 *
 * base work: Matthew Simo - matthew.a.simo@gmail.com
 * modified by: Jean-Christophe Bauduin
 */
/**
 * Grid setup
 *
 * The grid will calculate dimensions based on these two variables:
 * $fg-columns will inform the grid loops how many columns there should be.
 * $fg-gutter will inform the grid loops how big eac column's gutters should be.
 *
 * The grid will name columns, rows, offsets based on these three variables:
 * $fg-class-row string used for the row class
 * $fg-class-col string used for the column class
 * $fg-class-off string used for the offset class
 */
/**
 * Break point namespace object
 *
 * Set the default namespace object with these defaults with the
 * understanding that you can pass in whatever you might require for your site.
 *
 * $fg-breakpoints is a Sass list with nested lists inside. Each sub list defines two things.
 * 1. The namespace for that breakpoint. (Required) (i.e. xs, sm, md, lg)
 * 2. The min-width measurement for the breakpoint for that namespace. (i.e. 48em, 62em, 75em)
 *
 * Note: These should be in the proper order (at least till libsass handles map keys properly).
 *
 * Note: If the measurement is left out then it will be skipped when generating
 * the grid and applied to global styles.
 *
 */
/**
 * Class Name Defaults
 *
 * Define class names for columns, rows and offsets in case compatibility with other
 * libraries is necessary.


/**
 * Calculate column size percentage
 */
/**
 * Spacing mixin to create uniform margin/padding
 */
/**
 * Row wrapper class, flex box parent.
 */
.row {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin-left: -0.5rem;
  margin-right: -0.5rem;
}

.col-lg-12, .col-lg-11, .col-lg-10, .col-lg-9, .col-lg-8, .col-lg-7, .col-lg-6, .col-lg-5, .col-lg-4, .col-lg-3, .col-lg-2, .col-lg-1, .col-md-12, .col-md-11, .col-md-10, .col-md-9, .col-md-8, .col-md-7, .col-md-6, .col-md-5, .col-md-4, .col-md-3, .col-md-2, .col-md-1, .col-sm-12, .col-sm-11, .col-sm-10, .col-sm-9, .col-sm-8, .col-sm-7, .col-sm-6, .col-sm-5, .col-sm-4, .col-sm-3, .col-sm-2, .col-sm-1, .col-xs-12, .col-xs-11, .col-xs-10, .col-xs-9, .col-xs-8, .col-xs-7, .col-xs-6, .col-xs-5, .col-xs-4, .col-xs-3, .col-xs-2, .col-xs-1, .col-lg, .col-md, .col-sm, .col-xs {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  flex-grow: 0;
  flex-shrink: 0;
  min-height: 1px;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.col-lg, .col-md, .col-sm, .col-xs {
  flex-grow: 1;
  flex-basis: 0;
  max-width: 100%;
}

/**
 * Generate a set of grid column classes using a namespace
 *
 * .col-[namespace] for intelligent column division
 * .col-[namespace]-[number] for a column that covers a specific number of columns (e.g. 1-12 by default)
 * .off-[namespace]-[number] for pushing a col a specific number of columns (e.g. 1-11 by default)
 * .off-[namespace]-reset for resetting a col's offset for that and larger namespaces
 */
/**
 * Build the grid in two steps, to help minimize file size
 * Step 1, for each namespace, create the grid-base
 * Step 2, for each namespace, wrap the col width/offset measurements in their breakpoint media query
 */
.col-xs-1 {
  flex-basis: 8.3333333333%;
  max-width: 8.3333333333%;
}

.col-xs-2 {
  flex-basis: 16.6666666667%;
  max-width: 16.6666666667%;
}

.col-xs-3 {
  flex-basis: 25%;
  max-width: 25%;
}

.col-xs-4 {
  flex-basis: 33.3333333333%;
  max-width: 33.3333333333%;
}

.col-xs-5 {
  flex-basis: 41.6666666667%;
  max-width: 41.6666666667%;
}

.col-xs-6 {
  flex-basis: 50%;
  max-width: 50%;
}

.col-xs-7 {
  flex-basis: 58.3333333333%;
  max-width: 58.3333333333%;
}

.col-xs-8 {
  flex-basis: 66.6666666667%;
  max-width: 66.6666666667%;
}

.col-xs-9 {
  flex-basis: 75%;
  max-width: 75%;
}

.col-xs-10 {
  flex-basis: 83.3333333333%;
  max-width: 83.3333333333%;
}

.col-xs-11 {
  flex-basis: 91.6666666667%;
  max-width: 91.6666666667%;
}

.col-xs-12 {
  flex-basis: 100%;
  max-width: 100%;
}

.off-xs-1 {
  margin-left: 8.3333333333%;
}

.off-xs-2 {
  margin-left: 16.6666666667%;
}

.off-xs-3 {
  margin-left: 25%;
}

.off-xs-4 {
  margin-left: 33.3333333333%;
}

.off-xs-5 {
  margin-left: 41.6666666667%;
}

.off-xs-6 {
  margin-left: 50%;
}

.off-xs-7 {
  margin-left: 58.3333333333%;
}

.off-xs-8 {
  margin-left: 66.6666666667%;
}

.off-xs-9 {
  margin-left: 75%;
}

.off-xs-10 {
  margin-left: 83.3333333333%;
}

.off-xs-11 {
  margin-left: 91.6666666667%;
}

.off-xs-reset {
  margin-left: 0;
}

@media only screen and (min-width: 768px) {
  .col-sm-1 {
    flex-basis: 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-sm-2 {
    flex-basis: 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-sm-3 {
    flex-basis: 25%;
    max-width: 25%;
  }
  .col-sm-4 {
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-sm-5 {
    flex-basis: 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-sm-6 {
    flex-basis: 50%;
    max-width: 50%;
  }
  .col-sm-7 {
    flex-basis: 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-sm-8 {
    flex-basis: 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-sm-9 {
    flex-basis: 75%;
    max-width: 75%;
  }
  .col-sm-10 {
    flex-basis: 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-sm-11 {
    flex-basis: 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-sm-12 {
    flex-basis: 100%;
    max-width: 100%;
  }
  .off-sm-1 {
    margin-left: 8.3333333333%;
  }
  .off-sm-2 {
    margin-left: 16.6666666667%;
  }
  .off-sm-3 {
    margin-left: 25%;
  }
  .off-sm-4 {
    margin-left: 33.3333333333%;
  }
  .off-sm-5 {
    margin-left: 41.6666666667%;
  }
  .off-sm-6 {
    margin-left: 50%;
  }
  .off-sm-7 {
    margin-left: 58.3333333333%;
  }
  .off-sm-8 {
    margin-left: 66.6666666667%;
  }
  .off-sm-9 {
    margin-left: 75%;
  }
  .off-sm-10 {
    margin-left: 83.3333333333%;
  }
  .off-sm-11 {
    margin-left: 91.6666666667%;
  }
  .off-sm-reset {
    margin-left: 0;
  }
}
@media only screen and (min-width: 992px) {
  .col-md-1 {
    flex-basis: 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-md-2 {
    flex-basis: 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-md-3 {
    flex-basis: 25%;
    max-width: 25%;
  }
  .col-md-4 {
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-md-5 {
    flex-basis: 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-md-6 {
    flex-basis: 50%;
    max-width: 50%;
  }
  .col-md-7 {
    flex-basis: 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-md-8 {
    flex-basis: 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-md-9 {
    flex-basis: 75%;
    max-width: 75%;
  }
  .col-md-10 {
    flex-basis: 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-md-11 {
    flex-basis: 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-md-12 {
    flex-basis: 100%;
    max-width: 100%;
  }
  .off-md-1 {
    margin-left: 8.3333333333%;
  }
  .off-md-2 {
    margin-left: 16.6666666667%;
  }
  .off-md-3 {
    margin-left: 25%;
  }
  .off-md-4 {
    margin-left: 33.3333333333%;
  }
  .off-md-5 {
    margin-left: 41.6666666667%;
  }
  .off-md-6 {
    margin-left: 50%;
  }
  .off-md-7 {
    margin-left: 58.3333333333%;
  }
  .off-md-8 {
    margin-left: 66.6666666667%;
  }
  .off-md-9 {
    margin-left: 75%;
  }
  .off-md-10 {
    margin-left: 83.3333333333%;
  }
  .off-md-11 {
    margin-left: 91.6666666667%;
  }
  .off-md-reset {
    margin-left: 0;
  }
}
@media only screen and (min-width: 1200px) {
  .col-lg-1 {
    flex-basis: 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-lg-2 {
    flex-basis: 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-lg-3 {
    flex-basis: 25%;
    max-width: 25%;
  }
  .col-lg-4 {
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-lg-5 {
    flex-basis: 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-lg-6 {
    flex-basis: 50%;
    max-width: 50%;
  }
  .col-lg-7 {
    flex-basis: 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-lg-8 {
    flex-basis: 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-lg-9 {
    flex-basis: 75%;
    max-width: 75%;
  }
  .col-lg-10 {
    flex-basis: 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-lg-11 {
    flex-basis: 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-lg-12 {
    flex-basis: 100%;
    max-width: 100%;
  }
  .off-lg-1 {
    margin-left: 8.3333333333%;
  }
  .off-lg-2 {
    margin-left: 16.6666666667%;
  }
  .off-lg-3 {
    margin-left: 25%;
  }
  .off-lg-4 {
    margin-left: 33.3333333333%;
  }
  .off-lg-5 {
    margin-left: 41.6666666667%;
  }
  .off-lg-6 {
    margin-left: 50%;
  }
  .off-lg-7 {
    margin-left: 58.3333333333%;
  }
  .off-lg-8 {
    margin-left: 66.6666666667%;
  }
  .off-lg-9 {
    margin-left: 75%;
  }
  .off-lg-10 {
    margin-left: 83.3333333333%;
  }
  .off-lg-11 {
    margin-left: 91.6666666667%;
  }
  .off-lg-reset {
    margin-left: 0;
  }
}
.container {
  margin-left: 1vw;
  margin-right: 1vw;
}

.container-left-margin {
  margin-left: 1vw;
}

@media only screen and (min-width: 768px) {
  .container {
    margin-left: 3vw;
    margin-right: 3vw;
  }
  .container-left-margin {
    margin-left: 3vw;
  }
}
@media only screen and (min-width: 992px) {
  .container {
    margin-left: 10vw;
    margin-right: 10vw;
  }
  .container-left-margin {
    margin-left: 10vw;
  }
}
.center {
  text-align: center;
}

.presentation-blk {
  padding-top: 20px;
}
.presentation-blk h5 {
  margin-bottom: 5px;
  margin-top: 5px;
}
.presentation-blk p {
  margin-top: 5px;
  margin-bottom: 5px;
}
.presentation-blk .presentation-date {
  color: #F7B76C;
}

.presentations-col {
  background-color: #d4e5ff;
}

.news-blk h5 a {
  color: black;
  text-decoration: none;
  transition: all 0.4s;
}
.news-blk h5:hover a {
  text-decoration: underline;
}

footer {
  background-color: #1f1fa3;
  margin-left: -8px;
  margin-bottom: -8px;
  padding-top: 50px;
  padding-bottom: 50px;
  width: 100%;
}
footer p, footer a {
  color: white;
  font-size: 14pt;
}
footer .btn-large {
  background-color: #297bff;
}

.btn-large, .btn {
  background-color: #1f1fa3;
  color: white;
  border-radius: 25px;
  padding-left: 25px;
  padding-right: 25px;
  padding-bottom: 10px;
  padding-top: 10px;
  text-align: center;
  text-decoration: none;
  transition: all 0.4s;
  display: inline-block;
}

.btn-large:hover {
  background-color: white;
  color: #1f1fa3;
}

.btn:hover {
  background-color: rgba(0, 0, 0, 0);
  color: #1f1fa3;
}

.wh-text {
  color: white;
}

.secondary-text-color {
  color: var(--secondary-title-font-color);
}

.bold {
  font-weight: bold;
}

.large-text {
  font-size: 24px;
}

.hide {
  display: none !important;
}

input {
  font-family: "Roboto", sans-serif;
  outline: 0;
  background: #f2f2f2;
  width: 100%;
  border: 0;
  margin: 0 0 15px;
  padding: 15px;
  box-sizing: border-box;
  font-size: 14px;
}

input::placeholder {
  color: black;
}

input:focus::placeholder {
  color: #297bff;
}

.youtube-play-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  transition: all 0.4s;
}
.youtube-play-btn :hover {
  transform: scale(1.01);
}

.justify-content-center {
  display: flex;
  justify-content: center;
}

.content, .presentations-col {
  margin-top: 80px;
}

.content a, .content p, .content ul, .content li {
  font-size: 20px;
  line-height: 34px;
}
.content a {
  text-decoration: none;
  transition: all 0.4s;
}
.content a:hover {
  color: #297bff;
}
.content pre code, .content code, .content pre {
  padding: 10px;
  border-radius: 10px;
  font-size: 18px;
}
.content .author-container p {
  margin-top: 0px;
}
.content .author-container img {
  border-radius: 0% 40% 0% 0%;
}

.post-content img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.search-block {
  display: block;
  border: 0.5px solid white;
  box-shadow: 1px 1px 1px white;
  border-radius: 15px;
  min-height: 400px;
  transition: all 0.4s;
}
.search-block h3 {
  height: 110px;
}
.search-block:hover {
  box-shadow: 1px 1px 1px #d7dbdf;
  border: 0.5px solid #bdc3c7;
}
.search-block a {
  text-decoration: none;
}
.search-block .author {
  color: var(--text-color);
  font-size: 12pt !important;
  font-style: italic;
}
.search-block p {
  font-size: 20px;
  color: var(--text-color);
}

.search-block .date {
  color: #bdc3c7;
}

.divider {
  border-top: 1px solid #bdc3c7;
  margin-top: 20px;
  margin-bottom: 20px;
  width: 100%;
}

.tag-element {
  padding: 10px;
  font-size: 12pt;
  color: var(--secondary-title-font-color);
  border: 1px solid #bdc3c7;
  border-radius: 15px;
  box-shadow: 2px 2px 2px #888888;
  text-decoration: none;
  display: inline-block;
  margin-top: 10px;
  transition: all 0.4s;
}
.tag-element:hover {
  transform: scale(1.05);
}

@font-face {
  font-family: "Averta Reg";
  src: url(https://mind.be/wp-content/uploads/2023/02/Averta-Regular.otf);
}
@font-face {
  font-family: "Averta ExtraBold";
  src: url(https://mind.be/wp-content/uploads/2023/02/Averta-ExtraBold.otf);
  font-weight: 800;
}
@font-face {
  font-family: "Averta Bold";
  src: url(https://mind.be/wp-content/uploads/2023/02/Averta-Bold.otf);
}
@font-face {
  font-family: "Martian Bold";
  src: url(https://mind.be/wp-content/uploads/2023/02/MartianMono_SemiExpanded-Bold.ttf);
}
:root {
  --background-color: #fff;
  --text-color: black;
  --secondary-title-font-color: #1f1fa3;
}

@media (prefers-color-scheme: dark) {
  :root {
    --background-color: #2c3e50;
    --text-color: hsl(228, 5%, 80%);
    --secondary-title-font-color: #F7B76C;
  }
}
html {
  overflow-x: hidden;
}

body {
  background-color: var(--background-color);
  color: var(--text-color);
}

h1, h4, h5, p, a, ul, li {
  font-family: "Averta Reg", sans-serif;
  color: var(--text-color);
}

h1 {
  color: #297bff;
  font-family: "Martian Bold", sans-serif;
  font-size: 37px;
  line-height: 50px;
  font-weight: 800;
  letter-spacing: 2px;
}

h2 {
  color: var(--secondary-title-font-color);
  font-family: "Martian Bold", sans-serif;
  font-size: 30px;
  line-height: 40px;
  letter-spacing: 1.5px;
}

h3 {
  color: var(--secondary-title-font-color);
  font-family: "Martian Medium", sans-serif;
  font-size: 24px;
  line-height: 35px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: none;
}
h3 .two-lines {
  height: 83 px;
  display: inline-block;
}

a, p, li {
  font-size: 20px;
}

li::marker {
  color: var(--secondary-title-font-color);
}

h5 {
  font-size: 18px;
}

a {
  color: var(--secondary-title-font-color);
}

.video-size {
  width: calc(35vw * var(--zoom));
  height: calc(35vw * var(--zoom) / 1.77777);
}

.video-size-row {
  min-height: calc(35vw * var(--zoom) / 1.77777 * 1.1);
}

@media screen and (max-width: 768px) {
  .video-size {
    width: 95vw;
    height: 53.4377337901vw;
  }
}

/*# sourceMappingURL=styles.css.map */