* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* inter-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/inter-v18-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* inter-500 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/inter-v18-latin-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* inter-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/inter-v18-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}


/* roboto-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 900;
  src: url('../fonts/roboto-v32-latin-900.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* poppins-500 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/poppins-v22-latin-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

:root {
  --color-black: #000;
  --color-white: #fff;
  --color-grey: #9C9C9C;
  --color-light: #f8f8f8;
  --color-red: #A31733;
  --color-text: var(--color-black);
  --color-text-grey: var(--color-grey);
  --color-text-white: var(--color-white);
  --color-background: var(--color-white);
  --font-family-sans: "Inter";
  --font-family-bold: "Poppins";
  --font-size-small: .875rem;
  --font-size-regular: 1rem;
  --font-size-mid: 1.25rem;
  --font-size-medium: 1.5rem;
  --font-size-large: 2rem;
  --font-size-xl: 2.25rem;
  --font-size-2xl: 2.5rem;
  --font-size-max: 3.75rem;
  --section-margin: 20px 0;
  --content-margin: 40px 0;
  --home-margin: 60px 0;
}

html {
  font-family: var(--font-family-sans);
  color: var(--color-text);
  background: var(--color-background);
}

.overflow-hidden {
  overflow: hidden;
}

.header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 90;
  box-shadow: 0 2px 30px 0 rgba(31,32,68,.08);
}

.top-bar {
  background-color: var(--color-red);
  padding: 10px 20px;
  display: flex;
  gap: 20px;
  justify-content: space-between;
  color: var(--color-text-white);
  margin-top: 0;
  -webkit-transition: margin-top .3s,opacity .3s ease-in-out;
  transition: margin-top .3s,opacity .3s ease-in-out;
  opacity: 1;
  align-items: center;
}

.header.nav-down .top-bar {
  margin-top: -44px;
  opacity: 0;
}

.top-bar p, 
.top-bar a {
  display: flex;
  align-items: center;
  font-size: .85rem;
  margin-bottom: 0;
  color: var(--color-text-white);
}

.top-bar span {
  margin-left: 10px;
}

.top-bar svg {
  height: 20px;
  width: 20px;
}

.navbar {
  position: relative;
  display: flex;
  justify-content: space-between;
  padding: 10px 20px;
  background-color: var(--color-white);
}

.logo {
  font-weight: 600;
  cursor: pointer;
  color:#7e9abf;
  text-align: center;
}

.site-nav {
    position: absolute;
    top: 75px;
    right: 100%;
    width: 100%;
    visibility: hidden;
    background-color: #fff;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
    -webkit-transition-property: right,visibility;
    transition-property: right,visibility;
    z-index: 60;
}

.site-nav.is-active {
  right: 0;
  visibility: visible;
}

.menu-dropdown-icon:before {
  content: "\f489";
  font-family: "Ionicons";
  cursor: pointer;
  float: right;
  padding: 25px 25px;
  background: var(--color-white);
  display: block;
  font-size: 1rem;
  line-height: 10px;
}

.site-nav > ul {
  margin: 0 auto;
  width: 100%;
  list-style: none;
  padding: 0;
  position: relative;
  display: block;
  /* IF .menu position=relative -> ul = container width, ELSE ul = 100% width */
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.site-nav > ul:after {
  clear: both;
}

.site-nav > ul > li {
  width: 100%;
  float: none;
  display: block;
  padding: 0;
  margin: 0;
  background-color: var(--color-light);
  border-bottom: 1px solid var(--color-white);
}

.site-nav > ul > li a {
  text-decoration: none;
  padding: 20px;
  display: block;
  font-weight: 500;
  color: var(--color-black);
}

.site-nav > ul > li ul.submenu-ul {
  display: none;
  width: 100%;
  background: var(--color-light);
  padding: 20px;
  position: relative;
  z-index: 99;
  left: 0;
  margin: 0;
  list-style: none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border-top: 1px solid var(--color-white);
}

.site-nav > ul > li ul.submenu-ul > li {
  margin: 0;
  padding-bottom: 0;
  list-style: none;
  background: none;
  float: none;
  width: 100%;
  margin-top: 20px;
}

.site-nav > ul > li ul.submenu-ul > li:first-child {
  margin: 0;
}

.site-nav > ul > li ul.submenu-ul > li a {
  padding: 0.2em 0;
  width: 95%;
  display: block;
  font-weight: 400;
}

.site-nav > ul > li ul.normal-sub {
  width: 100%;
  left: auto;
  padding: 10px 20px;
  overflow-y: auto;
  max-height: 100vw;
}

.site-nav > ul > li > ul.normal-sub > li {
  width: 100%;
}

.site-nav > ul > li > ul.normal-sub > li a {
  border: 0;
  padding: 1em 0;
}

/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
 .hamburger {
    background-color: transparent;
    border: 0;
    color: inherit;
    cursor: pointer;
    display: inline-block;
    float: left;
    font: inherit;
    margin: 0.8125em 0 0;
    overflow: visible; 
    outline: none;
    padding: 0;
    text-transform: none;
    transition: opacity 0.15s;
    -webkit-appearance: none;
    appearance: none;
}

.hamburger:hover {
  opacity: 0.7; 
}

.hamburger-box {
  width: 30px;
  height: 24px;
  display: inline-block;
  position: relative; 
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px; 
}

.hamburger-inner, 
.hamburger-inner::before, 
.hamburger-inner::after {
  width: 30px;
  height: 2px;
  background-color: #000;
  border-radius: 4px;
  position: absolute;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  transition-duration: 0.15s;
  transition-timing-function: ease; 
}

#masthead.is-active .hamburger-inner, 
#masthead.is-active .hamburger-inner::before, 
#masthead.is-active .hamburger-inner::after {
    background-color: #000;
}

.hamburger-inner::before, 
.hamburger-inner::after {
  content: "";
  display: block; 
}

.hamburger-inner::before {
  top: -6px; 
}

.hamburger-inner::after {
  bottom: -6px; 
}

/*
 * Boring
 */
 .hamburger--boring .hamburger-inner, 
 .hamburger--boring .hamburger-inner::before, 
 .hamburger--boring .hamburger-inner::after {
   transition-property: none; 
 }
 
 .hamburger--boring.is-active .hamburger-inner {
   -webkit-transform: rotate(45deg);
   transform: rotate(45deg); 
 }
 
 .hamburger--boring.is-active .hamburger-inner::before {
   top: 0;
   opacity: 0; 
 }
 
 .hamburger--boring.is-active .hamburger-inner::after {
   bottom: 0;
   -webkit-transform: rotate(-90deg);
   transform: rotate(-90deg); 
 }
 
 .hamburger-label {
   color: #fff;
   display: inline-block;
   font-weight: 700;
   letter-spacing: 0.08em;
   line-height: 1;
   margin-left: 0.3125em;
   text-transform: uppercase;
 }
 
 #masthead.is-active .hamburger-label {
   color: #000;
 }
 
 .hamburger-box,
 .hamburger-label {
   display: inline-block;
   vertical-align: middle;
 }
 
 .search {
  --background: #ffffff;
  --text-color: #414856;
  --primary-color: #4F29F0;
  --border-radius: 20px;
  --width: 190px;
  --height: 55px;
  background: transparent;
  width: auto;
  height: var(--height);
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius);
  display: flex;
  justify-content: center;
  align-items: center;
}

.search input[type=search] {
  position: relative;
  width: var(--height);
  height: var(--height);
  font: 400 16px;
  color: var(--color-black);
  border: 0;
  background-color: var(--color-light);
  box-sizing: border-box;
  outline: none;
  padding: 0 0 0 40px;
  transition: width 0.6s ease;
  z-index: 10;
  opacity: 0;
  cursor: pointer;
}

.search input[type=submit] {
  display: none;
}

.search input[type=search]:focus {
  z-index: 0;
  opacity: 1;
  width: var(--width);
}

.search input[type=search]:focus ~ .symbol .lens {
  left: 15px;
  transform: translate(0, 0);
  transition: top 0.5s ease 0.1s, left 0.5s ease 0.1s, fill 0.3s ease;
}

.search .symbol {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.search .symbol .lens {
  position: absolute;
  z-index: 99;
  transition: top 0.3s ease, left 0.3s ease, fill 0.2s ease 0.2s;
  stroke-width: 2; 
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke: #000;
  fill: none;
}

.search-results {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 200px 0; 
}

.grid {
  --columns: 12;
  --gutter: 40px;
  display: grid;
  grid-gap: var(--gutter);
  grid-template-columns: 100%;
}

.autogrid {
  --gutter: 40px;
  --min: 10rem;
  display: grid;
  grid-gap: var(--gutter);
  grid-template-columns: repeat(auto-fit, minmax(var(--min), 1fr));
  grid-auto-flow: dense;
}

section {
  margin: var(--section-margin);
  padding-left: 20px;
  padding-right: 20px;
}

.page-home section {
  margin: var(--home-margin);
}

.container {
  padding: 0 20px;
}

section p:last-child {
  margin-bottom: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-family-bold);
  line-height: 1.4;
}

h1.page-title {
  font-size: var(--font-size-medium);
  word-break: break-word;
}

h1.article-title {
  font-size: var(--font-size-xl);
}

p.page-subtitle {
  font-size: var(--font-size-mid);
  color: var(--color-grey);
  margin-bottom: 0;
}

p {
  margin-bottom: 20px;
  line-height: 1.5;
}

section ul,
section ol {
  margin-left: 20px;
  margin-bottom: 20px;
}

section ul li:last-child,
section ol li:last-child {
  margin-bottom: 0;
}

section ul li,
section ol li {
  margin-bottom: 10px;
}

h2 {
  font-size: var(--font-size-medium);
  margin-bottom: 20px;
}

h3 {
  font-size: var(--font-size-mid);
  margin-bottom: 20px;
}

.codeblock {
  display: grid;
}

.code {
  font-family: var(--font-family-mono);
  font-size: 1em;
  background: var(--color-light);
  padding: 0 .5rem;
  display: inline-block;
  color: var(--color-black);
}

pre {
  margin: 3rem 0;
  background: var(--color-black);
  color: var(--color-white);
  padding: 1.5rem;
  overflow-x: scroll;
  overflow-y: hidden;
  line-height: 1.5rem;
}

pre code {
  padding: 0;
  background: none;
  color: inherit;
}

a {
  color: var(--color-red);
  text-decoration: none;
  transition: all ease-in-out .3s;
}

a:hover {
  color: var(--color-grey);
}

a.arrow-link {
  color: var(--color-red);
  text-decoration: none;
}

a.arrow-link::after {
  content: "\f489";
  font-family: "Ionicons";
  margin-left: 20px;
  transition: margin ease-in-out .3s;
}

a.arrow-link:hover {
  color: var(--color-grey);
}

a.arrow-link:hover::after {
  margin-left: 30px;
}

button,
a.button {
  padding: 10px 20px;
  border-radius: 20px;
  border: 2px solid var(--color-red);
  background: var(--color-red);
  color: var(--color-light);
  text-decoration: none;
  font-size: var(--font-size-regular);
  transition: all ease-in-out .2s;
  display: inline-block;
  box-shadow: none;
}

button:hover,
a.button:hover {
  background-color: transparent;
  color: var(--color-red);
}

button .secondary
a.button.secondary {
  background: transparent;
  color: var(--color-red);
}

button .secondary:hover
a.button.secondary:hover {
  background: var(--color-red);
  color: var(--color-light);
}

figure a img,  
figure.gallery img{
  max-width: 100%;
  border-radius: 20px;
}

figure.gallery ul {
  line-height: 0;
  margin: 0;
}

figure.gallery ul li {
  list-style: none;
  width: 380px;
  margin: 10px;
}


.align-center {
  text-align: center;
}

.intro {
  max-width: 40rem;
}

.intro *:not(:last-child) {
  margin-bottom: 1em;
}

.box {
  background: var(--color-light);
  padding: 1.5rem;
  border: 4px solid var(--color-white);
  outline: 2px solid var(--color-light);
}

.video,
.img {
  position: relative;
  display: block;
  --w: 1;
  --h: 1;
  padding-bottom: calc(100% / var(--w) * var(--h));
  background: var(--color-black);
}

.img[data-contain] img {
  object-fit: contain;
}

.img-caption,
.video-caption,
.text figcaption {
  color: var(--color-grey);
  font-size: var(--font-size-small);
  padding-top: 10px;
}

.page-cover {
  width: 100%;
  height: 300px;
  background-size: cover;
  background-position: center;
  color: var(--color-white);
  margin-top: 116px;
  margin-bottom: var(--content-margin);
}

.page-cover .cover-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}


.slider .slide {
  width: 100%;
  height: 50vh;
  background-size: cover;
}

.slider .slide .slider-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.slider .slide .slider-container h2 {
  font-size: var(--font-size-mid);
  text-align: center;
}

.slider .slide .slider-container .subtitle {
  font-size: var(--font-size-medium);
  text-align: center;
  color: var(--color-white)
}

.slider .slide .slider-container a {
  text-decoration: none;
  color: var(--color-white)
}

.slider button.slider-prev,
.slider button.slider-next {
  position: absolute;
  z-index: 60;
  top: 60%;
  height: 50px;
  width: 50px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  border: 2px solid var(--color-white);
  color: white;
  background-color: transparent;
  cursor: pointer;
}

.slider button.slider-prev {
  left: 10%;
}

.slider button.slider-next {
  right: 10%;
}

.breadcrumb ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 40px;
  font-size: .875rem;
  flex-wrap: wrap;
}

.breadcrumb ul li::after {
  content: "\f125";
  font-family: "Ionicons";
  font-size: 12px;
  margin-left: 10px;
}

.breadcrumb ul li:last-child::after {
  content: none;
}

.breadcrumb ul li:last-child {
  font-weight: 900;
}

.breadcrumb ul li a {
  color: var(--color-text);
  text-decoration: none;
}

.introbox .introbox-inner {
  display: flex;
  flex-direction: column;
  background-color: var(--color-light);
  justify-content: center;
  padding: 40px 20px;
  gap: 20px;
}

.introbox .introimage {
  border-radius: 20px;
  width: 100%;
  z-index: 40;
}

.accordion {
  background-color: var(--color-light);
  padding: 40px;
  border-radius: 20px;
}

.accordion .acc-item button {
  background-color: transparent;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: none;
  width: 100%;
  cursor: pointer;
  border-bottom: 2px solid var(--color-grey);
  line-height: 20px;
  padding: 20px 0;
  border-radius: 0;
  color: var(--color-text);
  text-align: left;
}

.accordion .acc-item:first-child button {
  padding-top: 0;
}

.accordion .acc-item button h2 {
  margin-bottom: 0;
  font-size: var(--font-size-mid);
}

.accordion .acc-item button:after {
  content: "\f123";
  font-family: "Ionicons";
  font-size: 20px;
}

.accordion .acc-item button.is-open:after {
  content: "\f126";
}

.accordion .acc-item .panel {
  max-height: 0;
  overflow: hidden;
  transition: all ease-in-out .3s;
}

.accordion .acc-item .panel img {
  width: 100%;
}

.accordion .acc-item .panel.is-open {
  padding: 20px 0;
  max-height: fit-content;
  overflow: visible;
  border-bottom: 2px solid var(--color-grey);
}

article .note-content {
  text-align: left;
}

article .note-cover {
  border-radius: 20px;
  width: 100%;
}

article .note-date {
  font-size: var(--font-size-small);
  color: var(--color-grey);
  margin: 10px 0;
}

article .note-title {
  font-size: var(--font-size-mid);
}

nav.category-filter {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
  margin-top: 40px;
  padding: 20px 0;
  border-top: solid 1px var(--color-grey);
  border-bottom: solid 1px var(--color-grey);
  width: 100%;
  flex-direction: column;
}

nav.category-filter p {
  font-weight: 500;
  margin-bottom: 0;
}

ul.categories {
  display: flex;
  list-style: none;
  gap: 10px;
  flex-wrap: wrap;
}

ul.categories li a{
  cursor: pointer;
  display: flex;
  align-items: center;
  font-size: var(--font-size-small);
  border: solid 1px var(--color-red);
  padding: 10px 20px;
  color: var(--color-red);
  border-radius: 20px;
  transition: all ease-in-out .2s;
  line-height: 1;
  text-decoration: none;
}

ul.categories li a:hover,
ul.categories li.active a{
  background-color: var(--color-red);
}

ul.categories li a:hover,
ul.categories li.active a{
  color: var(--color-light)
}

.pagination {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.pagination a,
.pagination span {
  text-decoration: none;
}

.pagination a:hover,
.pagination .active {
  text-decoration: underline;
}

.pagination .disabled {
  color: #ccc;
  cursor: not-allowed;
}

.ov-card {
  background-color: var(--color-light);
  border-radius: 20px;
  overflow: hidden;
  width: 100%;
}

.ov-card img {
  width: 100%;
}

.ov-card .ov-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ov-card .ov-content h2 {
  margin-bottom: 0;
  line-height: 100%;
}

.articles-slider article {
  padding: 0 10px;
}

.slider-navigation,
.logo-slider-navigation {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 20px 0;
}

.slider-navigation button,
.logo-slider-navigation button {
  height: 40px;
  width: 40px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  border: 2px solid var(--color-red);
  color: var(--color-red);
  background-color: transparent;
  cursor: pointer;
}

.logo-slider a {
  padding: 0 20px;
}

.logo-slider a img {
  width: 100%;
  height: auto;
}

.logo-slider .slick-track{
  display: flex;
  align-items: center;
}

.notes {
  margin: var(--content-margin);
}

article.note,
.page {
  margin-top: 200px;
}

.article-cover {
  border-radius: 20px;
  width: 100%;
}

.article-header {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-direction: column;
}

.article-meta {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.article-meta p {
  margin-bottom: 0;
}

@keyframes fadeInUp {
  from {
      transform: translate3d(0,40px,0)
  }

  to {
      transform: translate3d(0,0,0);
      opacity: 1
  }
}

@-webkit-keyframes fadeInUp {
  from {
      transform: translate3d(0,40px,0)
  }

  to {
      transform: translate3d(0,0,0);
      opacity: 1
  }
}

.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
  -webkit-animation-duration: 1s;
  -webkit-animation-fill-mode: both
}

.animatedFadeInUp {
  opacity: 0
}

.fadeInUp {
  opacity: 0;
  animation-name: fadeInUp;
  -webkit-animation-name: fadeInUp;
}

.article-date {
  font-size: var(--font-size-mid);
  color: var(--color-grey);
}

.article-breadcrumbs {
  margin: 40px 0;
  padding: 20px 20px;
  border-top: solid 1px var(--color-grey);
  border-bottom: solid 1px var(--color-grey);
}

.article-breadcrumbs ul {
  margin-bottom: 0;
}

.blog-prevnext {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.blog-prevnext .prevnext-article {
  width: 100%;
  text-align: center;
}

.blog-prevnext .prevnext-article article .ov-card {
  width: 100%;
}

.card {
  background-color: var(--color-light);
  border-radius: 20px;
  padding: 40px;
}

.card hr {
  border: 0;
  background: var(--color-text);
  height: 2px;
  width: 60px;
  margin: 20px auto;
}

.footer {
  background-color: var(--color-red);
  padding: var(--content-margin);
  color: var(--color-light);
  padding-left: 20px;
  padding-right: 20px;
  margin-top: 60px;
}

.footer .info {
  display: flex;
  align-items: center;
}

.footer .info span {
  margin-left: 10px;
}

.footer .info svg {
  width: 20px;
  height: 20px;
}

.footer ul {
  list-style: none;
}

.footer ul li {
  margin-bottom: 10px;
}

.footer ul li:last-child {
  margin-bottom: 0;
}

.footer ul li a{
  color: var(--color-light);
  text-decoration: none;
}

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

.footer .legalnotice {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-content: center;
  margin-top: 40px;
}

.footer .legalnotice p {
  margin-bottom: 0;
}

.map {
  --w: 2;
  --h: 1;
  padding-bottom: calc(100% / var(--w) * var(--h));
  position: relative;
  overflow: hidden;
  background: var(--color-black);
}

.map iframe {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.note-excerpt {
  line-height: 1.5em;
}
.note-excerpt header {
  margin-bottom: 1.5rem;
}
.note-excerpt figure {
  margin-bottom: .5rem;
}
.note-excerpt-title {
  font-weight: 600;
}
.note-excerpt-date {
  color: var(--color-text-grey);
}

.desktop {
  display: none;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.full{
  width: 100%;
  border-radius: 0;
}

.narrow {
  width: 100%;
}

.center {
  align-items: center;
}

.end {
  align-items: end;
}
  
section.dark {
  background-color: var(--color-grey);
  width: 100%;
  padding: var(--section-margin);
}

section.bright {
  background-color: var(--color-light);
  width: 100%;
  padding: var(--section-margin);
}

section.red {
  background-color: var(--color-red);
  width: 100%;
  padding: var(--section-margin);
}

section.full.bright,
section.full.dark {
  margin-left: 0;
  margin-right: 0;
  border-radius: 0;
}

section.small {
  margin: 40px 0 !important;
}

.section-title-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

@media screen and (min-width:720px) {

  h1.page-title {
    font-size: var(--font-size-max);
  }
    
  .top-bar {
    justify-content: flex-end;
  }

  .slider-navigation,
  .logo-slider-navigation {
    justify-content: flex-end;
    margin-right: 40px
  }

  .site-nav > ul > li ul.normal-sub {
    max-height: 100%;
  }

  .grid {
    grid-template-columns: 1fr 1fr;
  }

  .grid > .col-12 {
    grid-column: 1 / -1; /* Make the column span the entire width */
  }

}

@media screen and (min-width: 968px) {

  :root {
    --section-margin: 40px 0;
    --content-margin: 60px 0;
    --home-margin: 100px 0;
  }

  h1.course-title {
    margin-bottom: 100px;
  }

  .page-cover {
    height: 360px;
    margin-top: 143.5px;
  }

  .narrow {
    width: 900px;
    margin-left: auto;
    margin-right: auto;
  }

  .grid {
    grid-template-columns: repeat(12, 1fr);
  }
  
  .grid > .column {
    grid-column: span var(--columns);
  }

  .desktop {
    display: block;
  }

  button.hamburger {
    display: none;
  }

  .mobile {
    display: none;
  }

  .navbar {
    padding: 0 20px;
    align-items: center;
  }

  .site-nav {
    position: relative;
    width: auto;
    visibility: visible;
    top: auto;
    right: auto;
  }

  .search-button {
    width: 120px;
  }

  .site-nav > ul {
    display: flex;
    justify-content: space-between;
    width: 700px;
  }

  .site-nav > ul > li {
    display: flex;
    align-items: center;
    padding: 40px 20px;
    border: none;
    background-color: transparent;
    justify-content: center;
  }

  .site-nav > ul > li:hover {
    background-color: var(--color-light);
  }

  .site-nav > ul > li a {
    text-decoration: none;
    padding: 0;
    display: block;
  }

  .site-nav > ul > li .megamenu {
    display: none;
    position: fixed;
    top: 139px;
    right: 0;
    left: 0;
    background-color: var(--color-light);
    padding: 20px 0;
  }

  .header.nav-down .site-nav > ul > li .megamenu {
    top: 99px;
  }

  .site-nav > ul > li ul.submenu-ul {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr 1fr;
    grid-auto-flow: column;
    gap: 20px 20px;
    justify-content: space-between; 
    width: 700px;
    margin: 0 auto;
    border: none;
  }

  .site-nav > ul > li ul.submenu-ul > li {
    margin: 0;
  }
  
  .site-nav > ul > li ul.submenu-ul > li a {
    padding: 0;
    width: auto;
  }

  .site-nav > ul > li ul.submenu-ul > li a:hover,
  .site-nav > ul > li ul.submenu-ul > li a.active {
    color: var(--color-red);
  }

  .menu-dropdown-icon:before {
    display: none;
  }

  .menu-dropdown-icon:after {
    content: "\f35f";
    font-family: "Ionicons";
    cursor: pointer;
    margin-left: 10px;
  }

  .article-header {
    flex-direction: row;
  }

  .articles-slider .slick-list {
    padding-left: 20% !important;
  }

  .articles-slider article {
    padding-right: 40px;
  }

  .article-cover {
    max-width: 580px;
  }

  .article-breadcrumbs {
    padding: 20px 0;
  }

  .slider .slide {
    height: 80vh;
  }

  .slider .slide .slider-container h2 {
    font-size: var(--font-size-2xl);
    max-width: 900px;
  }

  .slider button.slider-prev,
  .slider button.slider-next {
    top: 50%;
  }

  nav.category-filter {
    flex-direction: row;
  }


  .introbox {
    display: flex;
    justify-content: center;
  }
  
  .introbox .introbox-inner {
    margin-top: -160px;
    flex-direction: row;
    max-width: 100%;
    background-color: transparent;
    justify-content: flex-start;
    padding: 0;
    gap: 0;
  }

  .introbox .introcontent {
    border-radius: 20px;
    padding: 60px 60px 60px 260px;
    width: 800px;
    margin-left: -200px;
    background-color: var(--color-light);
    z-index: 30;
  }

  .introbox .introimage {
    margin-top: 60px;
    margin-bottom: 60px;
    width: 400px;
    height: auto;
    box-shadow: 0 2px 30px 0 rgba(31,32,68,.08);
  }

}

@media screen and (min-width: 1200px) {

  .container,
  .wide {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
  }

  .article-breadcrumbs {
    padding: 20px 0;
  }
 
  .introbox .introbox-inner {
    max-width: 1200px;
  }

  .introbox .introcontent {
    width: 900px;
  }

  .introbox .introimage {
    width: 500px;
    height: auto;
  }

}