/* =============ABSTRACTS==================== */
@import url("https://use.typekit.net/wye7cuc.css");
@-webkit-keyframes slideSide {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(1rem);
            transform: translateX(1rem);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes slideSide {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(1rem);
            transform: translateX(1rem);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
/* =============BASE==================== */
/* VARIABLES =================================================================== */
/*
$gutter: 2%;
$columns: 16;
*/
/* STYLES ====================================================================== */
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  height: 100%;
  max-width: 3000px;
  margin: 0 auto;
  padding: 0;
}

p {
  margin-top: 0;
}
p:last-of-type {
  margin-bottom: 0;
}

#form-success {
  display: none;
}

#feedback.erroneous, #feedback.error {
  padding: 10px;
  text-align: center;
  background-color: crimson;
  color: #fff;
  margin-bottom: 10px;
  font-weight: bold;
}

* {
  outline: none;
}

html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
  margin: 0;
  padding: 0;
}

audio, canvas, progress, video {
  display: inline-block;
  vertical-align: baseline;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden], template {
  display: none;
}

a {
  background-color: transparent;
}

a:active, a:hover {
  outline: 0;
}

abbr[title] {
  border-bottom: 1px dotted;
}

b, strong {
  font-weight: bold;
}

dfn {
  font-style: italic;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

mark {
  background: #ff0;
  color: #000;
}

small {
  font-size: 80%;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

img {
  border: 0;
}

svg:not(:root) {
  overflow: hidden;
}

hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  height: 0;
}

pre {
  overflow: auto;
}

code, kbd, pre, samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

input, optgroup, select, textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}

button {
  overflow: visible;
}

button, select {
  text-transform: none;
}

button, html input[type=button], input[type=reset], input[type=submit] {
  -webkit-appearance: button;
  cursor: pointer;
}

button[disabled], html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner, input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input {
  line-height: normal;
  border-radius: 0;
}

input[type=checkbox], input[type=radio] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
}

input[type=number]::-webkit-inner-adjust-hue-button, input[type=number]::-webkit-outer-adjust-hue-button {
  height: auto;
}

input[type=search] {
  -webkit-appearance: textfield;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

input[type=search]::-webkit-search-cancel-button, input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

legend {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
  border-radius: 0;
}

optgroup {
  font-weight: bold;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td, th {
  padding: 0;
}

/* GRID ======================================================================== */
.clear:before, .clear:after {
  content: "";
  display: table;
}
.clear:after {
  clear: both;
}

body {
  width: 100%;
}
body:before, body:after {
  content: "";
  display: table;
}
body:after {
  clear: both;
}

/* EXTRA ======================================================================= */
img.scale {
  max-width: 100%;
  height: auto;
}

::-moz-selection {
  background: RoyalBlue;
  color: #fff;
}

::selection {
  background: RoyalBlue;
  color: #fff;
}

::-moz-selection {
  background: RoyalBlue;
  color: #fff;
}

#privacypolicy {
  position: fixed;
  right: 0;
  bottom: 0;
  background: rgba(238, 238, 238, 0.6);
  color: RoyalBlue;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 15px 30px;
  width: 100%;
  font-size: 11px;
  line-height: 22px;
  opacity: 0;
  -webkit-transform: translate(0, 30px);
      -ms-transform: translate(0, 30px);
          transform: translate(0, 30px);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  pointer-events: none;
}
#privacypolicy.active {
  opacity: 1;
  -webkit-transform: translate(0, 0);
      -ms-transform: translate(0, 0);
          transform: translate(0, 0);
  pointer-events: auto;
}
#privacypolicy a {
  color: RoyalBlue;
}
#privacypolicy .privacy-btn {
  background-image: url("../images/privacy-close.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  position: absolute;
  top: 15px;
  right: 10px;
  width: 15px;
  height: 15px;
  cursor: pointer;
}

/* CMS ========================================================================= */
.uniform__potty {
  position: absolute;
  top: -9999px;
  left: -9999px;
}

.erroneous {
  border-color: crimson !important;
}

/* PLUGINS ===================================================================== */
html {
  font-family: sans-serif;
  font-size: 62.5%;
}

body {
  line-height: 1.4;
  font-size: 1.6rem;
  font-family: "poppins", sans-serif;
  font-weight: 200;
  font-style: normal;
}

h1, h2, h3 {
  margin: 0;
  padding: 0;
  line-height: 1.4;
}
h1 a, h2 a, h3 a {
  text-decoration: none;
}

h2 {
  font-size: 4rem;
  font-weight: 500;
  padding-bottom: 2.5rem;
}
@media (max-width: 1000px) {
  h2 {
    font-size: 3rem;
  }
}
@media (max-width: 600px) {
  h2 {
    font-size: 2.5rem;
  }
}
@media (max-width: 400px) {
  h2 {
    font-size: 2.2rem;
  }
}

p {
  margin: 0;
}
p:not(p:last-of-type) {
  padding-bottom: 2rem;
}

strong {
  font-weight: 600;
}

ul {
  margin: 0;
  padding: 1.5rem 0 1.5rem 1.5rem;
}

p a, li a {
  position: relative;
  display: inline-block;
  text-decoration: none;
}
p a:after, li a:after {
  display: block;
  content: "";
  width: 100%;
  height: 1px;
  background: #000000;
  position: relative;
  top: -0.5rem;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  scroll-behavior: smooth;
}

html {
  height: 100%;
  margin: 0;
  padding: 0;
  background: #f5f5f5;
}

body {
  position: relative;
  height: 100%;
  max-width: 200rem;
  margin: 0 auto;
  padding: 0;
  overflow-x: hidden;
}

img {
  height: 100%;
  width: 100%;
}

.error__container a {
  color: unset;
  text-decoration: underline;
}

.swiper {
  height: 100%;
  width: 100%;
}

section {
  scroll-margin-top: 10rem;
  scroll-snap-margin-top: 15rem;
}

.isie {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 9999999;
  background: white;
  top: 0;
  left: 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.isie h1 {
  padding-bottom: 2vw;
}
.isie .close-isie {
  text-decoration: underline;
  padding-top: 1vw;
  cursor: pointer;
}

.hidden {
  display: none;
  visibility: hidden;
  opacity: 0;
  height: 0;
}

picture {
  display: block;
}

.ratio__portrait {
  position: relative;
  height: 0;
  width: 100%;
  padding-bottom: 150%;
  overflow: hidden;
}
.ratio__portrait.big {
  padding-bottom: 180%;
}
.ratio__portrait.small {
  padding-bottom: 140%;
}
.ratio__portrait.smaller {
  padding-bottom: 120%;
}
.ratio__landscape {
  position: relative;
  height: 0;
  width: 100%;
  padding-bottom: 70%;
  overflow: hidden;
}
.ratio__landscape.video {
  padding-bottom: 55%;
}
.ratio__landscape.small {
  padding-bottom: 60%;
}
.ratio__landscape.big {
  padding-bottom: 80%;
}
.ratio__auto {
  position: relative;
  height: 100%;
  width: 100%;
  overflow: hidden;
}
@media (max-width: 1000px) {
  .ratio__auto {
    height: 0;
    padding-bottom: 70%;
  }
}
.ratio__square {
  position: relative;
  height: 0;
  width: 100%;
  padding-bottom: 100%;
  overflow: hidden;
}
.ratio__square.small {
  padding-bottom: 90%;
}
.ratio__fullscreen {
  position: relative;
  height: 100%;
  width: 100%;
  overflow: hidden;
}
.ratio__thumbnail {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.ratio__thumbnail.contain {
  -o-object-fit: contain;
     object-fit: contain;
}
.ratio__logo {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.ratio__video {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 124%;
}

/* =============COMPONENTS==================== */
.header {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 15;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  padding: 0 4rem 0;
}
@media (max-width: 600px) {
  .header {
    padding: 0 2rem 0;
  }
}
.header.hover-state {
  background: #f5f5f5;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.header-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  width: 100%;
  gap: 2rem;
}
.header-logo {
  max-width: 49.998%;
  width: 100%;
  padding: 4rem 0;
}
@media (max-width: 1500px) {
  .header-logo {
    max-width: calc(24.999% - 1.5rem);
  }
}
@media (max-width: 1000px) {
  .header-logo {
    max-width: 22rem;
  }
}
@media (max-width: 600px) {
  .header-logo {
    padding: 2rem 0;
  }
}
.header-logo-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header-logo-inner a {
  -ms-flex-item-align: start;
      align-self: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 600;
  font-size: 2.5rem;
  line-height: 1;
  text-decoration: none;
  color: #000000;
}
.header-logo-icon {
  max-width: 18rem;
  width: 100%;
  margin-right: 1.2rem;
}
@media (max-width: 600px) {
  .header-logo-icon {
    max-width: 15rem;
  }
}
@media (max-width: 400px) {
  .header-logo-icon {
    max-width: 12rem;
  }
}
.header-logo-icon svg {
  width: 100%;
  height: 100%;
}
.header-navi {
  max-width: 49.998%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  display: none;
}
@media (max-width: 1500px) {
  .header-navi {
    max-width: 74.997%;
  }
}
@media (max-width: 1000px) {
  .header-navi {
    max-width: calc(100% - 22rem);
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
.header-nav {
  max-width: 58.331%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
@media (max-width: 1500px) {
  .header-nav {
    max-width: 66.666%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media (max-width: 1000px) {
  .header-nav {
    display: none;
  }
}
.header-nav-inner .menu {
  height: 100%;
}
.header-nav-inner .menu-items {
  height: 100%;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.header-nav-inner .menu-item {
  list-style: none;
  position: inherit;
  height: 100%;
}
.header-nav-inner .menu-item:not(.header-nav-inner .menu-item:first-of-type) {
  padding-left: 3rem;
}
.header-nav-inner .menu-item a {
  font-weight: 200;
  color: #000000;
  text-decoration: none;
  line-height: 1;
  position: relative;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header-nav-inner .menu-item a.active {
  font-weight: 500;
  padding-right: 1rem;
}
.header-nav-inner .menu-item a.active:before {
  display: block;
}
.header-nav-inner .menu-item a.active:after {
  display: block;
  right: -0.6rem;
}
.header-nav-inner .menu-item a:before {
  position: absolute;
  top: 0px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  display: none;
  content: "";
  background-image: url("data:image/svg+xml;base64,PHN2ZyBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgMjgwLjQyIDYxLjYzIj48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzFkMWQxYjtzdHJva2Utd2lkdGg6MHB4O308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Im0xNDAuMjEsNjEuNjNDMTcxLjMsMjQuNjgsMjIyLjQ3LjQ0LDI4MC40Mi4wMnYtLjAySDB2LjAyYzU3Ljk1LjQyLDEwOS4xMiwyNC42NiwxNDAuMjEsNjEuNjFaIi8+PC9zdmc+");
  background-repeat: no-repeat;
  width: 4rem;
  height: 1rem;
}
.header-nav-inner .menu-item a:after {
  position: absolute;
  top: calc(50% - 0.1rem);
  right: -1.6rem;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
  content: "";
  display: none;
  border-left: 0.5rem solid transparent;
  border-right: 0.5rem solid transparent;
  border-top: 0.5rem solid #000000;
  width: unset;
  height: unset;
  background: unset;
}
.header-nav-inner .menu-item:hover .menu-item-parent {
  font-weight: 500;
}
.header-nav-inner .menu-item:hover > .menu-dropdown {
  opacity: 1;
  visibility: visible;
}
.header-nav-inner .menu-item .menu-dropdown {
  border: 0.2rem solid transparent;
  position: absolute;
  top: 16.5rem;
  left: 0;
  width: 100vw;
  padding: 4rem 4rem 9rem;
  background: rgba(245, 245, 245, 0.95);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 2rem 1fr 2rem 1fr 2rem 1fr;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 2rem;
}
.header-nav-inner .menu-item .menu-dropdown li a:hover {
  font-weight: 500;
}
.header-nav-inner .menu-item .menu-dropdown li a:before {
  display: none;
}
.header-nav-inner .menu-item .menu-dropdown li a:after {
  display: none;
}
.header-nav-inner .menu-item .menu-dropdown li a.active:before {
  display: none;
}
.header-nav-inner .menu-item .menu-dropdown li a.active:after {
  display: none;
}
.header-nav-inner .menu-item .menu-dropdown-category.lang {
  text-transform: uppercase;
}
.header-nav-inner .menu-item .menu-dropdown-category-title {
  font-weight: 500;
  padding-bottom: 3rem;
}
.header-nav-inner .menu-item .menu-dropdown-category li {
  padding: 0;
  margin: 0;
  list-style: none;
}
.header-nav-inner .menu-item .menu-dropdown-category li a {
  display: initial;
}
.header-nav-inner .menu-item .menu-dropdown-category li a br {
  display: none;
}
.header-utils {
  max-width: 41.665%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media (max-width: 1500px) {
  .header-utils {
    max-width: 33.333%;
  }
}
@media (max-width: 1000px) {
  .header-utils {
    max-width: 100%;
  }
}
.header-utils-burger {
  display: none;
}
@media (max-width: 1000px) {
  .header-utils-burger {
    display: block;
    margin-left: 1rem;
  }
}
.header-utils-burger .hamburger {
  position: relative;
  height: 2rem;
  width: 3.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}
@media (max-width: 600px) {
  .header-utils-burger .hamburger {
    height: 1.8rem;
    width: 3rem;
  }
}
.header-utils-burger .hamburger-menu {
  position: relative;
  background: #000000;
  width: 100%;
  height: 2px;
}
.header-utils-burger .hamburger-menu:before, .header-utils-burger .hamburger-menu:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background: #000000;
  -webkit-transform-origin: center;
      -ms-transform-origin: center;
          transform-origin: center;
}
.header-utils-burger .hamburger-menu:before {
  top: -8px;
  left: 0;
  -webkit-transition: top 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: top 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: top 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: top 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
}
.header-utils-burger .hamburger-menu:after {
  bottom: -8px;
  left: 0;
  -webkit-transition: bottom 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: bottom 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: bottom 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: bottom 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
}
.header-utils-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  width: 100%;
  gap: 1rem;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media (max-width: 1000px) {
  .header-utils-inner {
    max-width: 10rem;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.header-utils-button {
  min-width: 4.5rem;
  width: 4.5rem;
  height: 4.5rem;
  overflow: hidden;
  background: #000000;
  border-radius: 6rem;
  cursor: pointer;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 1000px) {
  .header-utils-button {
    min-width: unset;
    width: 4rem;
    height: 4rem;
    border-radius: 10rem;
  }
}
.header-utils-button span {
  color: #f5f5f5;
  opacity: 0;
  visibility: hidden;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1;
  padding: 0.3rem 0 0 2.5rem;
  white-space: nowrap;
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
}
.header-utils-button:hover {
  width: 21rem;
}
@media (max-width: 1000px) {
  .header-utils-button:hover {
    width: 4rem;
  }
}
.header-utils-button:hover span {
  opacity: 1;
  visibility: visible;
}
@media (max-width: 1000px) {
  .header-utils-button:hover span {
    opacity: 0;
    visibility: hidden;
  }
}
.header-utils-button-icon {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-margin-end: 1.2rem;
          margin-inline-end: 1.2rem;
}
@media (max-width: 1000px) {
  .header-utils-button-icon {
    -webkit-margin-end: 1.2rem;
            margin-inline-end: 1.2rem;
  }
}
.header-utils-button-icon i {
  display: block;
  width: 2rem;
  height: 2rem;
}
@media (max-width: 1000px) {
  .header-utils-button-icon i {
    width: 1.5rem;
    height: 1.5rem;
  }
}
.header-utils-button-icon i svg {
  width: 100%;
  height: 100%;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #f5f5f5;
  z-index: 99;
  overflow-x: hidden;
  overflow-y: scroll;
}
.mobile-menu.active {
  display: block;
}
.mobile-menu-inner {
  padding: 11rem 0 0;
  position: relative;
  height: 100%;
}
.mobile-menu-accordions {
  position: relative;
  height: 100%;
  padding: 1.5rem;
}
.mobile-menu-accordions li {
  list-style: none;
}
.mobile-menu-accordions li a {
  display: block;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  text-decoration: none;
  color: #000000;
  font-weight: 500;
}
.mobile-menu-accordions li a:after {
  display: none;
}
.mobile-menu-accordions li ul {
  display: none;
  margin: 0;
  padding: 0;
}
.mobile-menu-accordions li ul li a {
  font-weight: 200;
}
.mobile-menu-accordions li ul li a br {
  display: none;
}
.mobile-menu-accordions li ul li ul {
  margin: 0;
  padding: 0;
}

.footer {
  background: #e3e3e3;
  padding: 8.5rem 4rem;
}
@media (max-width: 600px) {
  .footer {
    padding: 4.25rem 2rem;
  }
}
.footer-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 1000px) {
  .footer-main {
    -webkit-box-orient: unset;
    -webkit-box-direction: unset;
        -ms-flex-direction: unset;
            flex-direction: unset;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.footer-main-logo {
  max-width: calc(16.666% - 1rem);
  width: 100%;
}
@media (max-width: 1000px) {
  .footer-main-logo {
    max-width: 100%;
  }
}
.footer-main-logo-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 1000px) {
  .footer-main-logo-inner {
    padding: 0 0 2rem;
  }
}
.footer-main-logo-icon {
  max-width: 15rem;
  width: 100%;
  margin-right: 1.2rem;
}
@media (max-width: 1000px) {
  .footer-main-logo-icon {
    margin-right: 0;
  }
}
@media (max-width: 400px) {
  .footer-main-logo-icon {
    max-width: 12rem;
  }
}
.footer-main-logo-icon svg {
  width: 100%;
  height: 100%;
}
.footer-main-sitemap {
  max-width: calc(16.666% - 1rem);
  width: 100%;
}
@media (max-width: 1000px) {
  .footer-main-sitemap {
    max-width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.footer-main-sitemap-inner ul {
  margin: 0;
  padding: 0;
}
.footer-main-sitemap-inner ul li {
  list-style: none;
}
.footer-main-campus {
  max-width: calc(49.998% - 1rem);
  width: 100%;
}
@media (max-width: 1000px) {
  .footer-main-campus {
    max-width: 100%;
  }
}
@media (max-width: 1000px) {
  .footer-main-campus-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 2.5rem 0;
    font-size: 1.4rem;
  }
}
@media (max-width: 1000px) {
  .footer-main-campus-inner table {
    width: 100%;
  }
}
@media (max-width: 1000px) {
  .footer-main-campus-inner table tbody {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[4];
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 600px) {
  .footer-main-campus-inner table tbody {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 400px) {
  .footer-main-campus-inner table tbody {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (max-width: 1300px) {
  .footer-main-campus-inner table tr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .footer-main-campus-inner table tr:not(.footer-main-campus-inner table tr:last-of-type) {
    padding: 0 0 1.5rem;
  }
}
.footer-main-campus-inner table tr td:not(.footer-main-campus-inner table tr td:first-of-type) {
  padding: 0 0 0 2.5rem;
}
@media (max-width: 1300px) {
  .footer-main-campus-inner table tr td:not(.footer-main-campus-inner table tr td:first-of-type) {
    padding: 0;
  }
}
.footer-main-campus-inner table tr td .tdwrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 1000px) {
  .footer-main-campus-inner table tr td .tdwrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.footer-main-campus-inner table tr td .tdwrapper br {
  display: none;
}
@media (max-width: 1000px) {
  .footer-main-campus-inner table tr td .tdwrapper br {
    display: block;
  }
}
.footer-main-campus-inner table tr td .tdwrapper span:before {
  content: "|";
  padding: 0 1rem;
}
@media (max-width: 1000px) {
  .footer-main-campus-inner table tr td .tdwrapper span:before {
    display: none;
  }
}
.footer-main-socials {
  max-width: calc(16.666% - 1rem);
  width: 100%;
}
@media (max-width: 1000px) {
  .footer-main-socials {
    max-width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.footer-main-socials-inner ul {
  margin: 0;
  padding: 0;
}
.footer-main-socials-inner ul li {
  list-style: none;
}
.footer-main-socials-inner ul li a {
  color: #000000;
}
.footer-legalmobile {
  display: none;
}
@media (max-width: 1000px) {
  .footer-legalmobile {
    display: block;
  }
}
@media (max-width: 1000px) {
  .footer-legal {
    display: none;
  }
}
.footer-legal-inner, .footer-legalmobile-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 1.2rem;
  padding: 10rem 0 0;
}
@media (max-width: 1000px) {
  .footer-legal-inner, .footer-legalmobile-inner {
    -webkit-box-orient: unset;
    -webkit-box-direction: unset;
        -ms-flex-direction: unset;
            flex-direction: unset;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.footer-legal-inner a, .footer-legalmobile-inner a {
  color: #000000;
  text-decoration: none;
}
.footer-legal-copyright, .footer-legalmobile-copyright {
  max-width: calc(33.332% - 1rem);
  width: 100%;
}
@media (max-width: 1000px) {
  .footer-legal-copyright, .footer-legalmobile-copyright {
    max-width: 50%;
  }
}
@media (max-width: 600px) {
  .footer-legal-copyright, .footer-legalmobile-copyright {
    max-width: 100%;
    padding: 1rem 0 0;
  }
}
.footer-legal-legal, .footer-legalmobile-legal {
  max-width: calc(49.998% - 1rem);
  width: 100%;
}
@media (max-width: 1000px) {
  .footer-legal-legal, .footer-legalmobile-legal {
    max-width: 100%;
  }
}
.footer-legal-byplug, .footer-legalmobile-byplug {
  max-width: calc(16.666% - 1rem);
  width: 100%;
}
@media (max-width: 1000px) {
  .footer-legal-byplug, .footer-legalmobile-byplug {
    max-width: 50%;
    text-align: right;
  }
}
@media (max-width: 600px) {
  .footer-legal-byplug, .footer-legalmobile-byplug {
    max-width: 100%;
    text-align: left;
  }
}

#privacypolicy {
  background: #f5f5f5;
  color: #000000;
}
#privacypolicy a {
  color: #000000;
}

.termsfeed-com---nb-simple {
  max-width: unset !important;
  bottom: 2.5rem !important;
  left: 2.5rem !important;
  right: 2.5rem !important;
}

.cc-nb-main-container {
  font-size: 1.3rem !important;
  background: #000000 !important;
  display: -ms-grid !important;
  display: grid !important;
  -ms-grid-columns: 1fr 1fr !important;
  grid-template-columns: 1fr 1fr !important;
  padding: 2rem 5rem !important;
}
@media (max-width: 1000px) {
  .cc-nb-main-container {
    padding: 2rem 5rem !important;
    -ms-grid-columns: 1fr !important;
    grid-template-columns: 1fr !important;
  }
}
.cc-nb-title {
  display: none;
}
.cc-nb-text {
  color: #f5f5f5 !important;
  line-height: 1.5 !important;
  font-size: 1.2rem !important;
}
.cc-nb-text-container {
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1/2;
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  grid-row: 2/3;
}
@media (max-width: 1000px) {
  .cc-nb-text-container {
    grid-column: unset !important;
    grid-row: unset !important;
  }
}
.cc-nb-okagree {
  background: none !important;
  border: none !important;
  color: #f5f5f5 !important;
}
.cc-nb-okagree:hover {
  background: #000000 !important;
  color: #f5f5f5 !important;
}
.cc-nb-reject {
  background: none !important;
  border: none !important;
  color: #f5f5f5 !important;
  opacity: 40% !important;
}
.cc-nb-changep {
  color: #000000 !important;
  background: rgba(245, 245, 245, 0.7) !important;
}
.cc-nb-buttons-container {
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-column: 2/3;
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  grid-row: 1/3;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: normal !important;
      -ms-flex-direction: row !important;
          flex-direction: row !important;
  -webkit-box-pack: end !important;
      -ms-flex-pack: end !important;
          justify-content: flex-end !important;
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
  height: 100% !important;
}
@media (max-width: 1000px) {
  .cc-nb-buttons-container {
    grid-column: unset !important;
    grid-row: unset !important;
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }
}
.cc-nb-buttons-container button {
  text-transform: uppercase !important;
  letter-spacing: 0.075em !important;
  font-size: 1rem !important;
  outline: none !important;
  -ms-flex-item-align: end !important;
      align-self: flex-end !important;
  padding: 1rem 2rem !important;
}
@media (max-width: 1000px) {
  .cc-nb-buttons-container button {
    width: 100% !important;
  }
}

.cc-cp-foot-save {
  background: #000000 !important;
}
.cc-cp-foot-save:focus {
  outline: none !important;
  border: none !important;
}

form, input, label, textarea {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  list-style-type: none;
  padding: 0;
}
form .error {
  color: crimson;
}
form .error::-webkit-input-placeholder {
  color: crimson;
}
form .error::-moz-placeholder {
  color: crimson;
}
form .error:-ms-input-placeholder {
  color: crimson;
}
form .error::-ms-input-placeholder {
  color: crimson;
}
form .error::placeholder {
  color: crimson;
}
form .error + label {
  color: crimson;
  font-weight: bold;
}
form .error + label a {
  color: crimson !important;
}
form .error a {
  color: crimson;
}
form .error .checkbox:before {
  border: 0.5px solid crimson;
}
form button[type=submit] {
  margin-top: 2.5rem !important;
  border: none;
  font-size: 1.6rem;
  font-weight: 300;
  background: #e3e3e3;
}

.form-group {
  margin: 0.5rem 0;
  position: relative;
}
.form-group:not(.form-group.group-policy) {
  background: #e3e3e3;
  border-radius: 1.5rem;
}
.form-group.required:after {
  content: "*";
  position: absolute;
  top: calc(50% - 0.3rem);
  left: 0;
  -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  line-height: 1;
  color: var(--color);
  font-size: 1.6rem;
  font-weight: 600;
  margin-left: -1rem;
}
.form-group-labeled {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 600px) {
  .form-group-labeled {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.form-group-labeled label {
  font-size: 1.6rem;
  font-weight: 600;
  padding: 2.2rem 3rem 1.9rem;
  max-width: calc(55.555% - 1rem);
  width: 100%;
}
@media (max-width: 600px) {
  .form-group-labeled label {
    max-width: 100%;
  }
}
.form-group-labeled .formNumber {
  max-width: calc(44.444% - 1rem);
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1rem;
  padding: 0 3rem 0 0;
}
@media (max-width: 600px) {
  .form-group-labeled .formNumber {
    max-width: 100%;
    padding: 0 3rem;
  }
}
.form-group-labeled .formNumber .input-suffix {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.form-group-labeled .formNumber .input-suffix:after {
  content: attr(data-suffix);
}
.form-group-labeled .formNumber input {
  max-width: 3rem;
  -ms-flex-negative: 1;
      flex-shrink: 1;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  padding-left: 0;
  padding-right: 0;
}
.form-group-labeled .formNumber input::-webkit-outer-spin-button, .form-group-labeled .formNumber input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.form-group-labeled .formNumber span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 1rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.form-group-labeled .formNumber i {
  cursor: pointer;
  width: 3rem;
  height: 3rem;
  background: #000000;
  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;
}
.form-group-labeled .formNumber i svg {
  display: block;
  width: 1.3rem;
  height: 1.3rem;
}
.form-group-labeled .formNumber i svg path {
  fill: #f5f5f5;
}
.form-group-dropdown {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.form-group-dropdown .dropdown-button {
  max-width: calc(44.444% - 1rem);
  width: 100%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.8;
  background: none;
  border: none;
  padding: 2.2rem 3rem 1.9rem 3rem;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 600px) {
  .form-group-dropdown .dropdown-button {
    max-width: 100%;
  }
}
.form-group-dropdown .dropdown-button i {
  width: 3rem;
  height: 3rem;
  background: #000000;
  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;
}
.form-group-dropdown .dropdown-button i svg {
  display: block;
  width: 1.3rem;
  height: 1.3rem;
}
.form-group-dropdown .dropdown-button i svg path {
  fill: #f5f5f5;
}
.form-group-dropdown .dropdown-list {
  margin: 0;
  padding: 0;
  list-style-type: none;
  position: relative;
  background: #e3e3e3;
  z-index: 3;
  width: 100%;
  border-radius: 0 0 2.5rem 2.5rem;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  max-height: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.form-group-dropdown .dropdown-list-visible {
  visibility: visible;
  opacity: 1;
  max-height: 60rem;
  overflow: auto;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.form-group-dropdown .dropdown-list-item {
  margin: 0;
  padding: 1.5rem 3rem;
  cursor: pointer;
}
.form-group-dropdown .dropdown-list-item:hover {
  background: var(--color);
  color: #f5f5f5;
}

.noline {
  border-bottom: none;
  margin-top: 0;
}

#group-policy {
  padding: 20px 0;
}

label, input {
  -webkit-transition: color 0.4s ease, background-color 0.1s ease-in-out;
  transition: color 0.4s ease, background-color 0.1s ease-in-out;
}

input, textarea {
  background-color: transparent;
  border: none;
  color: #888888;
  font-size: 1.6rem;
  margin: 9px 0 7px 0;
  margin: 0;
  padding: 2.2rem 3rem 1.9rem;
  outline: none;
  width: 100%;
  font-weight: 600;
}
input:focus, textarea:focus {
  color: #000;
}
input.error, textarea.error {
  padding: 2.2rem 3rem 1.9rem;
}
input::-webkit-input-placeholder, textarea::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #000000;
}
input::-moz-placeholder, textarea::-moz-placeholder { /* Firefox 19+ */
  color: #000000;
}
input:-ms-input-placeholder, textarea:-ms-input-placeholder { /* IE 10+ */
  color: #000000;
}
input:-moz-placeholder, textarea:-moz-placeholder { /* Firefox 18- */
  color: #000000;
}

.error-text {
  position: absolute;
  bottom: 5px;
  left: 3rem;
  margin: 0;
  font-size: 70%;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: crimson;
}
.error-text.error-policy {
  position: relative;
  bottom: 0;
  left: 0;
}

.policy {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin: 0;
  line-height: 2;
}
.policy a {
  text-decoration: underline;
}

#policy {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  display: inline-block;
  width: 0;
  height: 0;
  position: absolute;
  left: -99999999px;
}
#policy:checked + label:after {
  content: "";
  background: #000000;
  border: 0.5px solid #000000;
  position: absolute;
  top: 0.8rem;
  left: -25px;
  width: 12px;
  height: 12px;
}

.checkbox {
  position: relative;
  margin-left: 26px;
}
.checkbox:before {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border: 0.5px solid #000000;
  left: -25px;
  top: 0.8rem;
}
.checkbox a {
  text-decoration: underline;
  color: #000000;
}

.label--required:after {
  content: "*";
  color: crimson;
  margin-left: 5px;
}

/* Custom radio buttons */
input[type=radio] + label {
  display: inline-block;
  cursor: pointer;
  position: relative;
  padding-left: 3rem;
  margin-right: 1.5rem;
}
input[type=radio] + label:before {
  content: "";
  display: block;
  width: 1.6rem;
  height: 1.6rem;
  margin-right: 0.5rem;
  position: absolute;
  top: -3px;
  left: 0;
  border: 1px solid #000000;
  background-color: transparent;
  border-radius: 0.5rem;
}

input[type=radio] {
  display: none !important;
  *display: inline;
}
input[type=radio]:checked + label:after {
  content: "";
  display: block;
  position: absolute;
  top: 0.05rem;
  left: 0.3rem;
  width: 12px;
  height: 12px;
  border-radius: 0.5rem;
  background: var(--color);
}

.fancybox__content {
  padding: 5rem !important;
}
.fancybox__content .carousel__button.is-close {
  top: 0 !important;
  right: 0;
}
.fancybox__content .carousel__button.is-close svg {
  color: #000000;
  -webkit-filter: none;
          filter: none;
  width: 2rem;
  height: 2rem;
}

button {
  border: none;
}

.button {
  font-weight: 500;
  text-decoration: none;
  color: #000000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-item-align: start;
      align-self: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1;
  height: 4.5rem;
}
.button:after {
  display: none;
}
.button:hover .button-icon {
  -webkit-animation: slideSide 2s infinite;
          animation: slideSide 2s infinite;
}
.button-icon {
  max-width: 1.5rem;
  width: 100%;
  margin: 0 0.5rem 0 4rem;
  display: block;
}
.button-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}
.button.round {
  border-radius: 100% !important;
  padding: 1.3rem !important;
  width: 4.5rem;
}
.button.fill {
  background: #e3e3e3;
  font-weight: 300;
  padding: 1.2rem 2.5rem 1rem;
  border-radius: 10rem;
  margin-top: 5rem;
}
.button.fill:hover {
  background: #000000;
  color: #f5f5f5;
}
.button.fill:hover svg .twitter, .button.fill:hover svg .linkedin, .button.fill:hover svg .print, .button.fill:hover svg .facebook-1 {
  fill: #f5f5f5 !important;
}
.button.fill:hover .button-icon svg .arrow {
  fill: #f5f5f5;
}
.button svg {
  width: 2rem;
  height: 2rem;
}
.button svg path {
  fill: #000000;
}

.swiper-buttons-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.swiper-buttons-prev, .swiper-buttons-next {
  position: relative;
  cursor: pointer;
  padding: 1rem 0;
}
.swiper-buttons-prev span, .swiper-buttons-next span {
  position: relative;
  display: block;
  width: 2.5rem;
  height: 1px;
  background: #000000;
  margin: 2px 0 0 2rem;
}
.swiper-buttons-prev span:before, .swiper-buttons-prev span:after, .swiper-buttons-next span:before, .swiper-buttons-next span:after {
  content: "";
  width: 4px;
  height: 1px;
  background: #000000;
  position: absolute;
  -webkit-transform-origin: right;
      -ms-transform-origin: right;
          transform-origin: right;
  top: 0;
  right: 0;
}
.swiper-buttons-prev span:before, .swiper-buttons-next span:before {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}
.swiper-buttons-prev span:after, .swiper-buttons-next span:after {
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.swiper-buttons-prev span {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.columns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-left: -1rem;
  margin-right: -1rem;
}

.column {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 100%;
          flex: 0 1 100%;
  margin-left: 1rem;
  margin-right: 1rem;
  max-width: 100%;
}

@media (max-width: 1000px) {
  .column {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
.article.visible {
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.article-thumbnail picture {
  border-radius: 3vmin;
}
.article-content {
  padding: 2rem 0 0;
}
.article-content-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: wrap;
          flex-direction: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 1300px) {
  .article-content-header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.article-content-date {
  font-size: 1.2rem;
  line-height: 1;
  padding: 2px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-transform: lowercase;
}
.article-content-tags {
  font-size: 1.2rem;
  padding: 0 0 0 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  line-height: 1;
}
@media (max-width: 1300px) {
  .article-content-tags {
    padding: 2rem 0 0;
  }
}
.article-content-tags li {
  list-style: none;
  font-weight: 400;
  text-transform: uppercase;
  border: 1px solid #000000;
  border-radius: 3vmin;
  padding: 0.8rem 1rem 0.5rem;
  line-height: 1;
  margin-bottom: 5px;
}
.article-content-tags li:not(.article-content-tags li:last-of-type) {
  margin-right: 1rem;
}
.article-content-body {
  padding: 2.5rem 3rem 0 0;
}
.article-content-body h2 {
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1.4;
  padding-bottom: 2rem;
}
.article-content-footer {
  padding: 4rem 0 0;
}

.arts-thumbnail {
  padding-bottom: 4rem;
  display: block;
}
.arts-thumbnail picture {
  border-radius: 3vmin;
}
.arts-content {
  text-align: center;
}
.arts-content h3 {
  font-size: 2rem;
  font-weight: 300;
  padding-bottom: 1.5rem;
}
.arts-content-category {
  text-transform: capitalize;
  font-weight: 500;
}
.arts-content-campus {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.arts-content-campus ul {
  padding: 0 0 0 0.8rem;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.arts-content-campus ul li {
  list-style: none;
  text-transform: capitalize;
  font-weight: 500;
}
.arts-content-campus ul li:not(.arts-content-campus ul li:first-of-type):before {
  content: "/";
}

.breadcrumbs {
  padding: 4rem 4rem 6rem;
}
@media (max-width: 600px) {
  .breadcrumbs {
    padding: 4rem 2rem 6rem;
  }
}
.breadcrumbs-inner ol {
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.breadcrumbs-inner ol li {
  list-style: none;
}
.breadcrumbs-inner ol li:not(.breadcrumbs-inner ol li:first-of-type):before {
  content: "/";
  padding: 0 0.5rem;
}
.breadcrumbs-inner ol li a {
  color: #000000;
  text-decoration: none;
}
.breadcrumbs-inner ol li a:after {
  display: none;
}
.breadcrumbs-inner ol li a br {
  display: none;
}

.backblock {
  padding: 0 4rem;
}
@media (max-width: 600px) {
  .backblock {
    padding: 0 2rem;
  }
}
.backblock-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 1000px) {
  .backblock-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 2.5rem;
  }
}
.backblock-inner h1 {
  font-size: 4rem;
}
@media (max-width: 1000px) {
  .backblock-btn-inner .button {
    margin-top: 0;
  }
}
.backblock-btn-inner .button-icon {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
  margin: 0 4rem 0 0.5rem;
}

.banner {
  margin-top: -16.5rem;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  width: 100%;
  min-height: 80rem;
  background: var(--bannershortsbg);
}
@media (max-width: 1000px) {
  .banner {
    height: unset;
    position: relative;
    display: block;
  }
}
.banner-inner {
  height: 100%;
  width: 100%;
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media (max-width: 1000px) {
  .banner-inner {
    z-index: 5;
    overflow: visible;
    background-color: var(--fadebg);
  }
}
.banner-background {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
@media (max-width: 1000px) {
  .banner-background {
    position: relative;
    height: 60svh;
    z-index: 0;
    margin-top: -15rem;
  }
}
.banner-background-inner {
  width: 100%;
  height: 100%;
  position: relative;
}
.banner-background-inner picture {
  width: 100%;
  height: 100%;
}
.banner-background-inner picture img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 64% !important;
     object-position: 64% !important;
}
.banner-background-video {
  width: 100%;
  height: 100%;
  position: relative;
}
.banner-background-video video {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.banner-shortcuts {
  z-index: 2;
  width: 100%;
}
@media (max-width: 1000px) {
  .banner-shortcuts {
    margin-top: -11.5rem;
  }
}
.banner-shortcuts-inner {
  padding: 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  grid-gap: 2rem;
}
@media (max-width: 1000px) {
  .banner-shortcuts-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (max-width: 600px) {
  .banner-shortcuts-inner {
    padding: 2rem;
  }
}
.banner-shortcuts-item {
  max-width: calc(24.999% - 1.5rem);
  width: 100%;
  display: block;
  cursor: pointer;
  position: relative;
  color: #000000;
  text-decoration: none;
}
@media (max-width: 1000px) {
  .banner-shortcuts-item {
    max-width: 100%;
  }
}
.banner-shortcuts-item-inner {
  padding: 2.5rem;
  width: 100%;
  background: #f5f5f5;
  border-radius: 3vmin;
}
@media (max-width: 1000px) {
  .banner-shortcuts-item-inner {
    position: relative;
    bottom: unset;
    left: unset;
    text-decoration: none;
    padding: 1.5rem 2.5rem;
  }
}
.banner-shortcuts-item-title {
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1.4;
}
@media (max-width: 1500px) {
  .banner-shortcuts-item-title {
    font-size: 2rem;
  }
}
.banner-shortcuts-item-title .button {
  font-weight: 200;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1rem;
}
.banner-shortcuts-item-title .button-icon {
  margin: 0 0.5rem 0 0;
}
.banner-shortcuts-item:hover .banner-shortcuts-item-inner {
  background: var(--bannershortsbg);
}
.banner-shortcuts-item:hover .banner-shortcuts-item-inner p {
  color: var(--colortext);
}
.banner-shortcuts-item:hover .banner-shortcuts-item-inner .button-icon svg path {
  fill: var(--colortext);
}
.banner-foreground {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 2;
  max-width: 49.998%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 1000px) {
  .banner-foreground {
    top: 20rem;
    bottom: unset;
    right: unset;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
        -ms-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
    max-width: 50%;
  }
}
.banner-foreground-inner {
  max-width: 49.998%;
  width: 100%;
}
@media (max-width: 1000px) {
  .banner-foreground-inner {
    max-width: 100%;
  }
}
.banner-foreground-inner picture {
  border-radius: 50rem;
}
.banner-canvas {
  position: absolute;
  top: 18rem;
  left: 0;
  z-index: 2;
  width: 100%;
  height: calc(100% - 18rem - 18rem);
  padding: 0 4rem;
}
@media (max-width: 1000px) {
  .banner-canvas {
    position: relative;
    top: unset;
    left: unset;
    height: auto;
    padding: 0 4rem;
  }
}
@media (max-width: 600px) {
  .banner-canvas {
    padding: 0 2rem;
  }
}
.banner-canvas-inner {
  position: relative;
}
@media (max-width: 1000px) {
  .banner-canvas-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
}
@media (max-width: 600px) {
  .banner-canvas-inner {
    gap: 0;
  }
}
.banner-canvas-item {
  position: absolute;
  color: var(--colortext);
}
@media (max-width: 1000px) {
  .banner-canvas-item {
    position: relative;
    top: unset !important;
    left: unset !important;
  }
}
@media (max-width: 1000px) {
  .banner-canvas-item-logo {
    max-width: 40rem;
    width: 100%;
  }
}
@media (max-width: 600px) {
  .banner-canvas-item-logo {
    max-width: 30rem;
  }
}
@media (max-width: 1000px) {
  .banner-canvas-item h2 {
    padding-top: 2rem;
    padding-bottom: 0;
  }
}
.banner-canvas-item#spacer {
  padding: 2.5rem 0 2.5rem;
}
.banner-canvas-item h3 {
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1.4;
  padding-bottom: 3rem;
}
@media (max-width: 1000px) {
  .banner-canvas-item h3 {
    font-size: 2rem;
    padding-bottom: 0;
  }
}
.banner-body {
  position: absolute;
  top: 12.5rem;
  left: 0;
  z-index: 2;
  max-width: 49.998%;
  width: 100%;
  padding: 0 4rem;
}
@media (max-width: 600px) {
  .banner-body {
    padding: 0 2rem;
  }
}
.banner-body-inner {
  width: 100%;
}
.banner-body-inner h1 {
  padding: 9rem 0 3rem;
  font-weight: 300;
  font-size: 4rem;
  line-height: 1.2;
}
@media (max-width: 1000px) {
  .banner-body-inner h1 {
    padding: 4.2rem 0 3rem;
    font-size: 2.5rem;
  }
}
.banner-body-inner h1 strong {
  font-weight: 500;
}
.banner-gradient {
  width: 100%;
  height: 50vh;
  height: calc(var(--vh, 1vh) * 50);
  position: absolute;
  bottom: -2px;
  left: 0;
  display: block;
  z-index: 1;
}
@media (max-width: 1000px) {
  .banner-gradient {
    height: 25vh;
    height: calc(var(--vh, 1vh) * 25);
  }
}
.banner-gradient-top {
  bottom: unset;
  top: 0;
  height: 35vh;
  height: calc(var(--vh, 1vh) * 35);
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
  display: none;
}
@media (max-width: 1000px) {
  .banner-gradient-top {
    height: 15vh;
    height: calc(var(--vh, 1vh) * 15);
    display: block;
  }
}
@media (max-width: 1000px) {
  .banner-content {
    padding-top: 20rem;
    background: var(--bannershortsbg);
  }
}

.quote {
  position: relative;
}
.quote-inner {
  font-size: 4rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.3;
  padding: 16rem 0 16rem;
  position: relative;
  width: 100%;
}
@media (max-width: 1000px) {
  .quote-inner {
    font-size: 3rem;
    padding: 15rem 4rem;
  }
}
@media (max-width: 600px) {
  .quote-inner {
    font-size: 2.5rem;
    padding: 10rem 4rem;
  }
  .quote-inner br {
    display: none;
  }
}
@media (max-width: 400px) {
  .quote-inner {
    font-size: 2.2rem;
  }
}
@media (max-width: 1000px) {
  .quote-inner br {
    display: none;
  }
}
.quote.fullwidthfigure {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.quote.fullwidthfigure .quote-inner {
  background: #e3e3e3;
}
.quote.blockmargin {
  padding: 0 4rem;
}
@media (max-width: 600px) {
  .quote.blockmargin {
    padding: 0 2rem;
  }
}
.quote.blockmargin .quote-inner {
  background: var(--color);
  border-radius: 3vmin;
}
.quote.artsquote {
  padding: 0 4rem;
}
@media (max-width: 600px) {
  .quote.artsquote {
    padding: 0 2rem;
  }
}
.quote.artsquote .quote-inner {
  background: var(--color);
  border-radius: 3vmin;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  text-align: left;
  padding: 3.5rem 0 3.5rem;
}
@media (max-width: 1000px) {
  .quote.artsquote .quote-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.quote-profile {
  max-width: calc(33.332% - 1rem);
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 0 0 3rem;
  border-right: 1px solid #e3e3e3;
}
@media (max-width: 1000px) {
  .quote-profile {
    max-width: 100%;
    border: none;
  }
}
@media (max-width: 600px) {
  .quote-profile {
    padding: 0 2rem;
  }
}
.quote-profile-inner {
  max-width: 66.666%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0 0 10.5rem 0;
}
@media (max-width: 1300px) {
  .quote-profile-inner {
    max-width: 99.999%;
  }
}
@media (max-width: 1000px) {
  .quote-profile-inner {
    max-width: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 2.5rem;
  }
}
@media (max-width: 600px) {
  .quote-profile-inner {
    padding: 0 0 5rem;
  }
}
.quote-profile-thumbnail {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
@media (max-width: 1000px) {
  .quote-profile-thumbnail {
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
  }
}
.quote-profile-thumbnail-inner {
  width: 12.5rem;
  height: 12.5rem;
}
.quote-profile-thumbnail-inner picture {
  border-radius: 50%;
}
.quote-profile-info {
  font-size: 1.6rem;
}
.quote-profile-info-name {
  font-weight: 500;
}
@media (max-width: 1000px) {
  .quote-profile-info-name {
    padding-bottom: 2.5rem;
  }
}
.quote-profile-info-category {
  font-weight: 200;
  text-transform: capitalize;
}
.quote-profile-info-campus {
  font-weight: 200;
  text-transform: capitalize;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.quote-profile-info-campus ul {
  padding: 0 0 0 0.8rem;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.quote-profile-info-campus ul li {
  list-style: none;
}
.quote-profile-info-campus ul li:not(.quote-profile-info-campus ul li:first-of-type):before {
  content: "/";
}
.quote-content {
  max-width: calc(66.664% - 1rem);
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (max-width: 1000px) {
  .quote-content {
    max-width: 100%;
  }
}
.quote-content-inner {
  max-width: 87.5%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0 0 10.5rem 3rem;
}
@media (max-width: 1000px) {
  .quote-content-inner {
    max-width: 100%;
    padding: 0 3rem 10.5rem;
  }
}
@media (max-width: 600px) {
  .quote-content-inner {
    padding: 0 2rem 5rem;
  }
}
.quote-bigtext {
  font-size: 4rem;
  font-weight: 500;
  line-height: 1.2;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding: 0 0 5rem 0;
}
@media (max-width: 600px) {
  .quote-bigtext {
    font-size: 3rem;
  }
}
.quote-smalltext {
  font-size: 1.6rem;
  font-weight: 200;
}
.quote-shape {
  max-width: 38.3rem;
  width: 100%;
}
@media (max-width: 1000px) {
  .quote-shape {
    max-width: 25rem;
  }
}
@media (max-width: 600px) {
  .quote-shape {
    max-width: 20rem;
  }
}
.quote-shape svg {
  width: 100%;
  height: 100%;
  display: block;
}
.quote-shape svg path {
  fill: #e3e3e3;
}

.content1 {
  padding: 0 4rem;
}
@media (max-width: 600px) {
  .content1 {
    padding: 0 2rem;
  }
}
.content1.reverse .content1-inner {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media (max-width: 1000px) {
  .content1.reverse .content1-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
}
.content1.reverse .content1-thumbnail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  width: 100%;
}
.content1.smallimg .content1-thumbnail-inner {
  max-width: 83.33%;
}
@media (max-width: 1000px) {
  .content1.smallimg .content1-thumbnail-inner {
    max-width: 100%;
  }
}
@media (max-width: 1300px) {
  .content1.smallimg .content1-body-inner, .content1.smallimg .content1-quote-inner {
    max-width: 100%;
    padding: 5rem 0;
  }
}
.content1-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 2rem;
}
@media (max-width: 1000px) {
  .content1-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
}
.content1-thumbnail {
  max-width: 49.998%;
  width: 100%;
}
@media (max-width: 1000px) {
  .content1-thumbnail {
    max-width: 100%;
  }
}
.content1-thumbnail-inner {
  width: 100%;
  height: 100%;
}
.content1-thumbnail-inner picture, .content1-thumbnail-inner figure {
  border-radius: 3vmin;
}
.content1-title {
  max-width: 49.998%;
  width: 100%;
}
.content1-body {
  max-width: 49.998%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 1000px) {
  .content1-body {
    max-width: 100%;
  }
}
.content1-body.notitle {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.content1-body.notitle .content1-body-inner {
  max-width: 83.33%;
  padding: 2.5rem 0 0;
}
@media (max-width: 1300px) {
  .content1-body.notitle .content1-body-inner {
    max-width: 100%;
  }
}
.content1-body-inner {
  max-width: 66.664%;
  width: 100%;
  padding: 12rem 0;
}
@media (max-width: 1300px) {
  .content1-body-inner {
    max-width: 100%;
    padding: 5rem 2.5rem;
  }
}
@media (max-width: 1000px) {
  .content1-body-inner {
    padding: 5rem 0;
  }
}
.content1-body-inner h2 {
  padding: 0 0 2.5rem;
}
.content1-body-inner h3 {
  padding: 2.5rem 0 2.5rem;
  font-size: 2.5rem;
  font-weight: 300;
}
.content1-body-smalltitle {
  font-size: 2.5rem;
  padding: 0 0 12.5rem;
}
@media (max-width: 1000px) {
  .content1-body-smalltitle {
    padding: 0 0 4rem;
    font-size: 2rem;
  }
}
@media (max-width: 600px) {
  .content1-body-smalltitle {
    font-size: 1.8rem;
  }
}
.content1-body-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.content1-quote {
  max-width: 49.998%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 1000px) {
  .content1-quote {
    max-width: 100%;
  }
}
.content1-quote-inner {
  max-width: 74.997%;
  width: 100%;
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1.4;
}
@media (max-width: 1300px) {
  .content1-quote-inner {
    max-width: 100%;
    padding: 5rem 2.5rem;
  }
}
@media (max-width: 600px) {
  .content1-quote-inner {
    padding: 5rem 2rem;
  }
}
.content1-quote-author {
  font-size: 1.6rem;
  font-weight: 200;
  padding: 5rem 0 0;
}
.content1-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}
.content1-center-inner {
  max-width: calc(49.998% - 1.5rem);
  width: 100%;
  text-align: center;
}
@media (max-width: 1000px) {
  .content1-center-inner {
    max-width: 100%;
  }
}

.content2 {
  padding: 0 4rem;
}
@media (max-width: 600px) {
  .content2 {
    padding: 0 2rem;
  }
}
.content2.smallimg .content2-thumbnail-inner {
  max-width: 83.33%;
}
.content2.smallimg .content2-body {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.content2.smallimg .content2-body-inner {
  max-width: 83.33%;
}
@media (max-width: 1000px) {
  .content2.nocolor {
    border-top: 1px solid #000000;
    padding-top: 5rem;
  }
}
.content2.nocolor .content2-body {
  padding: 5rem 0;
  background: none;
  color: #000000;
  border-top: 1px solid #000000;
  border-radius: initial;
}
@media (max-width: 1000px) {
  .content2.nocolor .content2-body {
    border: none;
    padding: 0;
  }
}
.content2-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 2rem;
}
@media (max-width: 1000px) {
  .content2-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.content2-thumbnail {
  max-width: 49.998%;
  width: 100%;
}
.content2-thumbnail-inner picture, .content2-thumbnail-inner figure {
  border-radius: 3vmin;
}
.content2-title {
  max-width: 49.998%;
  width: 100%;
}
@media (max-width: 1000px) {
  .content2-title {
    max-width: 100%;
  }
}
.content2-body {
  max-width: 49.998%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: var(--color);
  color: var(--colortext);
  padding: 5rem 6.5rem;
  border-radius: 3vmin;
}
@media (max-width: 1000px) {
  .content2-body {
    max-width: 100%;
  }
}
@media (max-width: 600px) {
  .content2-body {
    padding: 2.5rem 2rem;
  }
}
.content2-body.notitle {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.content2-body.notitle .content2-body-inner {
  max-width: 83.33%;
  padding: 2.5rem 0 0;
}
@media (max-width: 1000px) {
  .content2-body.notitle .content2-body-inner {
    max-width: 100%;
  }
}
.content2-body-inner {
  max-width: 66.664%;
  width: 100%;
}
@media (max-width: 1000px) {
  .content2-body-inner {
    max-width: 100%;
  }
}
.content2-body-inner h2 {
  padding: 0 0 5rem;
  font-size: 2.5rem;
  font-weight: 300;
}
.content2-body-inner ul {
  padding: 0 0 0 1.5rem;
  margin: 0;
}
.content2-body-inner ul li {
  line-height: 1.4;
}

.contentlinks1 {
  padding: 0 4rem;
}
@media (max-width: 600px) {
  .contentlinks1 {
    padding: 0 2rem;
  }
}
.contentlinks1-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 1000px) {
  .contentlinks1-inner {
    -webkit-box-orient: unset;
    -webkit-box-direction: unset;
        -ms-flex-direction: unset;
            flex-direction: unset;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.contentlinks1-body {
  max-width: calc(41.665% - 1.5rem);
  width: 100;
}
@media (max-width: 1000px) {
  .contentlinks1-body {
    max-width: 100%;
  }
}
.contentlinks1-body-inner {
  max-width: 80%;
  width: 100%;
}
@media (max-width: 1000px) {
  .contentlinks1-body-inner {
    max-width: 100%;
  }
}
.contentlinks1-body-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.contentlinks1-links {
  max-width: calc(33.332% - 1.5rem);
  width: 100%;
}
@media (max-width: 1000px) {
  .contentlinks1-links {
    max-width: 100%;
    padding: 4rem 0 0;
  }
}
.contentlinks1-links-inner {
  max-width: 75%;
  width: 100%;
}
@media (max-width: 1000px) {
  .contentlinks1-links-inner {
    max-width: 100%;
  }
}
.contentlinks1-links-item {
  cursor: pointer;
}
.contentlinks1-links-item:not(.contentlinks1-links-item:last-of-type) {
  border-bottom: 1px solid #000000;
}
.contentlinks1-links-item-inner {
  padding: 2.5rem 0 1rem;
}
.contentlinks1-links-item-inner:hover .contentlinks1-links-item-title h3 {
  font-weight: 500;
}
.contentlinks1-links-item-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 2.5rem;
}
.contentlinks1-links-item-title h3 {
  font-weight: 200;
}
.contentlinks1-links-item-title svg {
  width: 1.5rem;
  height: 100%;
}
.contentlinks1-links-item-body {
  padding: 0 1.5rem 0 0;
}
.contentlinks1-thumbnails {
  max-width: calc(24.999% - 1.5rem);
  width: 100%;
}
@media (max-width: 1000px) {
  .contentlinks1-thumbnails {
    display: none;
  }
}
.contentlinks1-thumbnails-inner {
  position: relative;
}
.contentlinks1-thumbnails-inner picture {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  position: absolute;
  top: 0;
  left: 0;
  background: #e3e3e3;
  border-radius: 30rem;
}
.contentlinks1-thumbnails-inner picture.visible {
  opacity: 1;
  visibility: visible;
  position: relative;
}
.contentlinks1-thumbnails-inner picture img {
  -o-object-fit: cover;
     object-fit: cover;
}

.hero {
  width: 100%;
  height: 85vh;
  height: calc(var(--vh, 1vh) * 85);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  /*@include phone {
      height: 70vh;
      height: vh(70);
  }*/
}
@media (max-width: 1000px) {
  .hero {
    /*height: 80vh;
    height: vh(80);*/
    height: auto;
  }
}
.hero-topbg {
  position: absolute;
  top: -1px;
  left: 0;
  height: calc(var(--vh, 1vh) * 13);
  height: 13vh;
  width: 100%;
}
.hero-botbg {
  position: absolute;
  bottom: -1px;
  left: 0;
  height: calc(var(--vh, 1vh) * 13);
  height: 13vh;
  width: 100%;
}
.hero-inner {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  z-index: 2;
}
.hero-body {
  width: calc(100% - 40px);
  color: #f5f5f5;
  font-size: 4rem;
  font-weight: 500;
  padding-bottom: 2.5rem;
  line-height: 1.4;
  text-align: center;
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media (max-width: 1000px) {
  .hero-body {
    font-size: 3rem;
  }
}
@media (max-width: 600px) {
  .hero-body {
    font-size: 2.2rem;
  }
  .hero-body br {
    display: none;
  }
}
@media (max-width: 400px) {
  .hero-body {
    font-size: 2.2rem;
  }
}
.hero-thumbnail {
  width: 100%;
  height: 100%;
  /*height: 0;
  padding-bottom: 66.7%;*/
  position: relative;
  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;
}
@media (max-width: 1000px) {
  .hero-thumbnail {
    height: 0;
    padding-bottom: 66.7%;
  }
}
.hero-image {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  /*position: absolute;
  top: 0;
  bottom: 0;
  left: 0;*/
  width: 100%;
  height: 100%;
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}
.hero-image:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
}
@media (max-width: 1000px) {
  .hero-image {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
  }
}
.hero-shape {
  position: absolute;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 5rem;
  width: 100%;
  z-index: 3;
}
.hero-shape-wrap {
  max-width: 38.3rem;
  width: 100%;
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}
@media (max-width: 1000px) {
  .hero-shape-wrap {
    max-width: 25rem;
  }
}
@media (max-width: 600px) {
  .hero-shape-wrap {
    max-width: 20rem;
  }
}
.hero-shape svg {
  width: 100%;
  height: 100%;
  display: block;
}
.hero-shape svg path {
  fill: #e3e3e3;
}
.hero-shape.up {
  top: -1px;
}
.hero-shape.down {
  bottom: -1px;
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.specialisatie {
  padding: 0 4rem;
  background: #e3e3e3;
  background-image: url("../images/pattern.png");
  background-size: cover;
  background-position: bottom center;
}
@media (max-width: 600px) {
  .specialisatie {
    padding: 0 2rem;
  }
}
.specialisatie-inner {
  padding: 18rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media (max-width: 600px) {
  .specialisatie-inner {
    padding: 9rem 0;
  }
}
.specialisatie-title {
  -ms-flex-item-align: start;
      align-self: flex-start;
  padding-bottom: 4.5rem;
}
.specialisatie-items {
  max-width: 74.997%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 0 0 1rem;
}
@media (max-width: 1300px) {
  .specialisatie-items {
    max-width: 100%;
    padding: 0;
  }
}
.specialisatie-item {
  max-width: calc(33.333% - 1.5rem);
  width: 100%;
  margin-top: 2rem;
  background: #f5f5f5;
  border-radius: 3vmin;
  cursor: pointer;
  color: #000000;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 1000px) {
  .specialisatie-item {
    max-width: calc(50% - 1rem);
  }
}
@media (max-width: 600px) {
  .specialisatie-item {
    max-width: 100%;
  }
}
.specialisatie-item-inner {
  padding: 2.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (max-width: 1500px) {
  .specialisatie-item-inner p br {
    display: none;
  }
}
.specialisatie-item-title {
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1.4;
  margin-bottom: 3rem;
  height: 7rem;
}
@media (max-width: 1500px) {
  .specialisatie-item-title p br {
    display: block;
  }
}
.specialisatie-item:hover {
  background: var(--color);
}
.specialisatie-item:hover .specialisatie-item-title {
  color: var(--colortext);
  font-weight: 500;
}
.specialisatie-item:hover .specialisatie-item-inner p {
  color: var(--colortext);
}
.specialisatie-item:hover .specialisatie-item-button a {
  color: var(--colortext);
}

.newslatest {
  padding: 0 4rem;
}
@media (max-width: 600px) {
  .newslatest {
    padding: 0 2rem;
  }
}
.newslatest-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  position: relative;
}
.newslatest-inner .article {
  width: 100%;
}
.newslatest-inner .swiper-pagination {
  bottom: -2.5rem;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}
.newslatest-inner .swiper-pagination-bullet {
  margin: 0 0.5rem;
  border: 1px solid #000000;
  background: none;
  opacity: 1;
}
.newslatest-inner .swiper-pagination-bullet-active {
  background: #000000;
}

.counter {
  padding: 0 4rem;
}
.counter.half-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.counter.half-right .counter-inner {
  max-width: calc(49.998% - 1rem);
}
.counter.half-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.counter.half-left .counter-inner {
  max-width: calc(49.998% - 1rem);
}
.counter-inner {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
}
@media (max-width: 1000px) {
  .counter-inner {
    -ms-grid-columns: (1fr)[2] !important;
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
@media (max-width: 600px) {
  .counter-inner {
    -ms-grid-columns: (1fr)[1] !important;
    grid-template-columns: repeat(1, 1fr) !important;
  }
}
@media (max-width: 1000px) {
  .counter-item:nth-of-type(even) {
    border-right: none !important;
    border-left: 1px solid #000000;
  }
}
@media (max-width: 600px) {
  .counter-item:nth-of-type(even) {
    border: none;
  }
}
.counter-item:not(.counter-item:last-of-type) {
  border-right: 1px solid #000000;
}
@media (max-width: 600px) {
  .counter-item:not(.counter-item:last-of-type) {
    border: none;
  }
}
.counter-item-inner {
  padding: 7.5rem 6rem;
  text-align: center;
}
@media (max-width: 1300px) {
  .counter-item-inner {
    padding: 7.5rem 2.5rem;
  }
}
.counter-item-number {
  font-size: 7rem;
  font-weight: 500;
}

.artsen {
  padding: 0 4rem;
}
@media (max-width: 600px) {
  .artsen {
    padding: 0 2rem;
  }
}
.artsen-filter {
  padding: 0 0 8rem;
}
.artsen-filter-inner {
  background: #e3e3e3;
  border-radius: 3vmin;
  padding: 3rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  width: 100%;
}
@media (max-width: 1000px) {
  .artsen-filter-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 3rem 2.5rem;
  }
}
.artsen-filter-title {
  max-width: 8.333%;
  width: 100%;
  line-height: 1;
  text-align: center;
}
@media (max-width: 1000px) {
  .artsen-filter-title {
    max-width: 100%;
    text-align: left;
  }
}
.artsen-filter ul {
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 91.663%;
  width: 100%;
}
@media (max-width: 1000px) {
  .artsen-filter ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    max-width: 100%;
    padding: 2.5rem 0 0;
  }
}
.artsen-filter ul li {
  list-style: none;
  line-height: 1;
  text-transform: capitalize;
}
@media (max-width: 1000px) {
  .artsen-filter ul li {
    max-width: 100%;
  }
}
.artsen-filter ul li:not(.artsen-filter ul li:last-of-type) {
  padding-right: 2.5rem;
}
@media (max-width: 1000px) {
  .artsen-filter ul li:not(.artsen-filter ul li:last-of-type) {
    padding: 0 0 1.5rem;
  }
}
.artsen-category-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 1000px) {
  .artsen-category-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.artsen-category-title {
  max-width: calc(24.999% - 1rem);
  width: 100%;
}
.artsen-category-title h3 {
  text-transform: capitalize;
  font-size: 2.5rem;
  font-weight: 300;
}
.artsen-list {
  max-width: calc(74.997% - 1rem);
  width: 100%;
}
@media (max-width: 1000px) {
  .artsen-list {
    max-width: 100%;
  }
}
.artsen-list-inner {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 5rem 1fr 5rem 1fr;
  grid-template-columns: repeat(3, 1fr);
  padding: 2rem 0 0;
  gap: 5rem;
}
@media (max-width: 1000px) {
  .artsen-list-inner {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .artsen-list-inner {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
}
.artsen-list-inner .arts {
  padding: 0 0 2.5rem;
}

body.news {
  padding: 0;
}

.news {
  padding: 0 4rem;
}
@media (max-width: 600px) {
  .news {
    padding: 0 2rem;
  }
}
.news-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.news-inner button {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}
.news-filter {
  padding: 0 0 2rem;
}
.news-filter-inner {
  background: #e3e3e3;
  border-radius: 3vmin;
  padding: 3rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  width: 100%;
}
@media (max-width: 1000px) {
  .news-filter-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 3rem 2.5rem;
  }
}
.news-filter-title {
  max-width: 8.333%;
  width: 100%;
  line-height: 1;
  text-align: center;
}
@media (max-width: 1000px) {
  .news-filter-title {
    max-width: 100%;
    text-align: left;
  }
}
.news-filter ul {
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 91.663%;
  width: 100%;
}
@media (max-width: 1000px) {
  .news-filter ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    max-width: 100%;
    padding: 2.5rem 0 0;
  }
}
.news-filter ul li {
  list-style: none;
  line-height: 1;
  text-transform: capitalize;
}
@media (max-width: 1000px) {
  .news-filter ul li {
    max-width: 100%;
  }
}
.news-filter ul li:not(.news-filter ul li:last-of-type) {
  padding-right: 2rem;
}
@media (max-width: 1000px) {
  .news-filter ul li:not(.news-filter ul li:last-of-type) {
    padding: 0 0 1.5rem;
  }
}
.news-wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1.5rem 1fr 1.5rem 1fr;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 1.5rem;
  padding: 0 0 4rem;
}
@media (max-width: 1000px) {
  .news-wrapper {
    -ms-grid-columns: 1fr 1.5rem 1fr;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .news-wrapper {
    -ms-grid-columns: 1fr;
    grid-template-columns: repeat(1, 1fr);
  }
}
.news-wrapper .article {
  padding-top: 6.5rem;
}

.artsintro {
  padding: 0 4rem;
}
@media (max-width: 600px) {
  .artsintro {
    padding: 0 2rem;
  }
}
.artsintro-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  gap: 2rem;
}
@media (max-width: 1000px) {
  .artsintro-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.artsintro-thumbnail {
  max-width: 49.998%;
  width: 100%;
}
@media (max-width: 1000px) {
  .artsintro-thumbnail {
    max-width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.artsintro-thumbnail-inner {
  max-width: calc(66.664% - 1rem);
  width: 100%;
}
.artsintro-thumbnail-inner picture {
  border-radius: 25rem;
}
.artsintro-content {
  max-width: 49.998%;
  width: 100%;
  padding: 6.5rem 0 0;
}
@media (max-width: 1000px) {
  .artsintro-content {
    max-width: 100%;
  }
}
.artsintro-body h2 {
  padding-bottom: 7rem;
}
.artsintro-buttons {
  width: 100%;
}
.artsintro-buttons-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  gap: 2.5rem;
  padding-top: 5rem;
}
.artsintro-buttons-inner a.button {
  margin: 0;
}

.artscomp {
  padding: 0 4rem;
}
@media (max-width: 600px) {
  .artscomp {
    padding: 0 2rem;
  }
}
.artscomp-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 2rem;
}
@media (max-width: 1000px) {
  .artscomp-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.artscomp-content {
  max-width: 49.998%;
  width: 100%;
  border-top: 1px solid #000000;
}
@media (max-width: 1000px) {
  .artscomp-content {
    max-width: 100%;
  }
}
.artscomp-body {
  max-width: 83.33%;
  width: 100%;
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1.3;
  padding-top: 4rem;
}
.artscomp-body-author {
  font-size: 16px;
  font-weight: 200;
  padding-top: 4.5rem;
}
.artscomp-lists {
  max-width: 49.998%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 2rem;
}
@media (max-width: 1000px) {
  .artscomp-lists {
    max-width: 100%;
  }
}
@media (max-width: 600px) {
  .artscomp-lists {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.artscomp-lists-specs, .artscomp-lists-comps {
  max-width: 49.998%;
  width: 100%;
  border-top: 1px solid #000000;
}
@media (max-width: 1000px) {
  .artscomp-lists-specs, .artscomp-lists-comps {
    max-width: 50%;
  }
}
@media (max-width: 600px) {
  .artscomp-lists-specs, .artscomp-lists-comps {
    max-width: 100%;
  }
}
.artscomp-lists-specs-inner, .artscomp-lists-comps-inner {
  padding-top: 4rem;
}
.artscomp-lists-specs-inner h2, .artscomp-lists-comps-inner h2 {
  font-size: 2.5rem;
  font-weight: 300;
  padding-bottom: 4rem;
}
.artscomp-lists-specs-inner ul, .artscomp-lists-comps-inner ul {
  margin: 0;
  padding: 0 0 0 1.5rem;
}
.campus-item {
  background: #e3e3e3;
  padding: 7rem 4rem;
  margin: 2px 0;
}
@media (max-width: 600px) {
  .campus-item {
    padding: 5rem 2rem;
  }
}
.campus-item-head {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.campus-item-head h2 {
  padding: 0;
  font-weight: 300;
  font-size: 2.5rem;
}
@media (max-width: 600px) {
  .campus-item-head h2 {
    font-size: 2.2rem;
  }
}
.campus-item-head.is-open {
  margin-bottom: -3rem;
  pointer-events: none;
}
.campus-item-head.is-open i {
  opacity: 0;
  visibility: hidden;
}
.campus-item-head i {
  width: 3rem;
  height: 3rem;
  background: #000000;
  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;
}
.campus-item-head i svg {
  display: block;
  width: 1.3rem;
  height: 1.3rem;
}
.campus-item-head i svg path {
  fill: #f5f5f5;
}
.campus-item-body {
  height: 0;
  -webkit-transition: height 200ms linear;
  transition: height 200ms linear;
  overflow: hidden;
}
.campus-item-body-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 4rem;
}
@media (max-width: 1000px) {
  .campus-item-body-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.campus-item-content, .campus-item-thumbnail {
  max-width: 49.998%;
  width: 100%;
}
@media (max-width: 1000px) {
  .campus-item-content, .campus-item-thumbnail {
    max-width: 100%;
  }
}
.campus-item-content {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 4rem 1fr;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 4rem;
  padding-top: 10rem;
  -ms-flex-line-pack: justify;
      align-content: space-between;
}
@media (max-width: 600px) {
  .campus-item-content {
    -ms-grid-columns: 1fr;
    grid-template-columns: repeat(1, 1fr);
  }
}
.campus-item-content h3 {
  font-size: 1.6rem;
}
.campus-item-thumbnail-inner picture, .campus-item-thumbnail-inner figure {
  border-radius: 3vmin;
}
.campus-item-adres, .campus-item-contact, .campus-item-verdiep, .campus-item-open {
  border-top: 1px solid #000000;
}
.campus-item-adres-inner, .campus-item-contact-inner, .campus-item-verdiep-inner, .campus-item-open-inner {
  padding-top: 4rem;
}
.campus-item-adres table, .campus-item-contact table, .campus-item-verdiep table, .campus-item-open table {
  width: 100%;
}
.campus-item-adres table thead, .campus-item-contact table thead, .campus-item-verdiep table thead, .campus-item-open table thead {
  display: none;
}
.campus-item-adres a, .campus-item-contact a, .campus-item-verdiep a, .campus-item-open a {
  color: #000000;
  text-decoration: none;
}
.campus-item-adres-inner a {
  position: relative;
  display: inline-block;
}
.campus-item-adres-inner a:after {
  display: block;
  content: "";
  width: 100%;
  height: 1px;
  background: #000000;
  position: relative;
  top: -0.5rem;
}
.campus-item-contact-inner h3 {
  padding-bottom: 1.5rem;
}
.campus-item-verdiep {
  border-top: none;
}
.campus-item-verdiep-inner h3 {
  padding-bottom: 1.5rem;
}
.campus-item-verdiep-number {
  color: var(--color);
  font-weight: 500;
  font-size: 12.7rem;
  line-height: 1;
}
.campus-item-open-inner h3 {
  padding-bottom: 1.5rem;
}

.artsenselect {
  padding: 0 4rem;
}
@media (max-width: 600px) {
  .artsenselect {
    padding: 0 2rem;
  }
}
.artsenselect-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 5rem 1fr 5rem 1fr 5rem 1fr;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 5rem;
}
@media (max-width: 1000px) {
  .artsenselect-list {
    -ms-grid-columns: 1fr 5rem 1fr;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .artsenselect-list {
    -ms-grid-columns: 1fr;
    grid-template-columns: repeat(1, 1fr);
  }
}

.forms {
  padding: 0 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (max-width: 600px) {
  .forms {
    padding: 0 2rem;
  }
}
.forms h2 {
  font-size: 2.5rem;
  font-weight: 300;
  padding: 0 0 7.5rem;
}
.forms-inner {
  max-width: calc(74.997% - 0.5rem);
  width: 100%;
  -ms-flex-item-align: end;
      align-self: flex-end;
}
@media (max-width: 1300px) {
  .forms-inner {
    max-width: 100%;
  }
}

.accordion {
  padding: 0 4rem;
}
@media (max-width: 600px) {
  .accordion {
    padding: 0 2rem;
  }
}
.accordion-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 2rem;
}
@media (max-width: 1000px) {
  .accordion-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.accordion-item {
  background: var(--color);
  color: var(--colortext);
  border-radius: 3vmin;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  cursor: pointer;
}
@media (max-width: 1000px) {
  .accordion-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.accordion-item.active .accordion-item-content {
  opacity: 1;
  visibility: visible;
}
.accordion-item.active .accordion-item-number span {
  opacity: 1;
  visibility: visible;
}
.accordion-item-head {
  cursor: pointer;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 2.5rem;
  font-weight: 300;
  padding: 0 3rem;
  width: auto;
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}
@media (max-width: 1500px) {
  .accordion-item-head {
    margin-left: 1rem;
  }
}
@media (max-width: 1300px) {
  .accordion-item-head {
    margin-left: 1.5rem;
  }
}
@media (max-width: 1000px) {
  .accordion-item-head {
    -webkit-transform: unset;
        -ms-transform: unset;
            transform: unset;
    -webkit-writing-mode: unset;
        -ms-writing-mode: unset;
            writing-mode: unset;
    padding: 1rem 3rem;
  }
}
@media (max-width: 600px) {
  .accordion-item-head {
    margin-left: 0;
    padding: 1rem 2rem;
  }
}
.accordion-item-head.is-open {
  pointer-events: none;
  overflow: hidden;
  width: 0 !important;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0s ease;
  transition: all 0s ease;
}
@media (max-width: 1000px) {
  .accordion-item-head.is-open {
    height: 0 !important;
  }
}
.accordion-item-body {
  width: 0;
  -webkit-transition: width 0.4s ease;
  transition: width 0.4s ease;
  overflow: hidden;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media (max-width: 1000px) {
  .accordion-item-body {
    width: 100%;
    height: 0;
  }
}
.accordion-item-body-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 7.5rem;
}
@media (max-width: 1000px) {
  .accordion-item-body-inner {
    width: 100% !important;
  }
}
@media (max-width: 600px) {
  .accordion-item-body-inner {
    padding: 5rem 2rem;
  }
}
.accordion-item-content {
  max-width: 70%;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}
@media (max-width: 1300px) {
  .accordion-item-content {
    max-width: 90%;
  }
}
@media (max-width: 1000px) {
  .accordion-item-content {
    max-width: 100%;
  }
}
.accordion-item-number {
  max-width: 30%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media (max-width: 1500px) {
  .accordion-item-number {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media (max-width: 1300px) {
  .accordion-item-number {
    display: none;
  }
}
.accordion-item-number span {
  font-size: 28.8rem;
  font-weight: 500;
  line-height: 1;
  padding-top: 5.5rem;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}

.links {
  padding: 0 4rem;
}
@media (max-width: 600px) {
  .links {
    padding: 0 2rem;
  }
}
.links-inner {
  display: -ms-grid;
  display: grid;
  grid-auto-rows: 1fr;
  grid-gap: 2rem;
}
@media (max-width: 1000px) {
  .links-inner {
    -ms-grid-columns: 1fr !important;
    grid-template-columns: repeat(1, 1fr) !important;
  }
}
.links-item {
  cursor: pointer;
  position: relative;
  background: #e3e3e3;
  border-radius: 3vmin;
  text-decoration: none;
  color: #000000;
}
.links-item:hover {
  background: var(--color);
  color: var(--colortext);
}
.links-item:hover .button {
  color: var(--colortext);
}
.links-item:hover .button-icon svg path {
  fill: var(--colortext);
}
.links-item-inner {
  padding: 2.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 100%;
}
.links-item-title {
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1.4;
  padding-bottom: 3rem;
}
.links-item-button .button {
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.publicationsarts {
  padding: 0 4rem;
}
@media (max-width: 600px) {
  .publicationsarts {
    padding: 0 2rem;
  }
}
.publicationsarts-inner h2 {
  font-size: 2.5rem;
  font-weight: 300;
  padding: 0 0 7.5rem;
}
.publicationsarts-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 2rem 1fr 2rem 1fr 2rem 1fr;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 1fr;
  grid-gap: 2rem;
}
@media (max-width: 1000px) {
  .publicationsarts-list {
    -ms-grid-columns: 1fr 2rem 1fr;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .publicationsarts-list {
    -ms-grid-columns: 1fr;
    grid-template-columns: repeat(1, 1fr);
  }
}
.publicationsarts-item {
  width: 100%;
  position: relative;
  background: #e3e3e3;
  border-radius: 3vmin;
  text-decoration: none;
  color: #000000;
}
.publicationsarts-item:hover {
  background: var(--color);
  color: var(--colortext);
}
.publicationsarts-item:hover .button {
  color: var(--colortext);
}
.publicationsarts-item:hover .button-icon path {
  fill: var(--colortext);
}
.publicationsarts-item-inner {
  padding: 2.5rem;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.publicationsarts-item-inner h3 {
  font-size: 4rem;
  font-weight: 500;
  padding-bottom: 8rem;
}
.publicationsarts-item-category ul {
  margin: 0;
  padding: 0;
}
.publicationsarts-item-category ul li {
  list-style: none;
  text-transform: capitalize;
  line-height: 1.4;
}
.publicationsarts-item-title {
  line-height: 1.4;
  font-weight: 500;
  font-size: 1.7rem;
}
.publicationsarts-item-button {
  padding: 4rem 0 0;
}
.publicationsarts-item-button .button {
  margin: 0;
  padding: 0;
}

.publicationspro {
  padding: 0 4rem;
}
.publicationspro-inner h2 {
  font-size: 2.5rem;
  font-weight: 300;
  padding: 0 0 7.5rem;
}
.publicationspro-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1.5rem 1fr 1.5rem 1fr 1.5rem 1fr;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 1fr;
  grid-gap: 1.5rem;
}
.publicationspro-item {
  width: 100%;
  position: relative;
  background: #e3e3e3;
  border-radius: 3vmin;
}
.publicationspro-item:hover {
  background: var(--color);
  color: var(--colortext);
}
.publicationspro-item:hover .button {
  color: var(--colortext);
}
.publicationspro-item:hover .button-icon path {
  fill: var(--colortext);
}
.publicationspro-item.all {
  background: var(--color);
  color: var(--colortext);
}
.publicationspro-item.all .button {
  color: var(--colortext);
}
.publicationspro-item.all .button-icon path {
  fill: var(--colortext);
}
.publicationspro-item-inner {
  padding: 2.5rem;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.publicationspro-item-inner h3 {
  font-size: 4rem;
  font-weight: 500;
  padding-bottom: 8rem;
}
.publicationspro-item-category ul {
  margin: 0;
  padding: 0;
}
.publicationspro-item-category ul li {
  list-style: none;
  font-size: 1.7rem;
  font-weight: 500;
  text-transform: capitalize;
  line-height: 1.4;
}
.publicationspro-item-title {
  line-height: 1.4;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.publicationspro-item-button {
  padding: 4rem 0 0;
}
.publicationspro-item-button .button {
  margin: 0;
  padding: 0;
}

.auteur {
  padding: 0 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media (max-width: 600px) {
  .auteur {
    padding: 0 2rem;
  }
}
.auteur-inner {
  max-width: calc(49.998% - 1rem);
  width: 100%;
}
@media (max-width: 1000px) {
  .auteur-inner {
    max-width: 100%;
  }
}
.auteur-inner h3 {
  padding: 2.5rem 0 2.5rem;
  font-size: 2.5rem;
  font-weight: 300;
}
@media (max-width: 600px) {
  .auteur-inner table tr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-bottom: 2.5rem;
  }
}
.auteur-inner table tr td {
  vertical-align: top;
  padding: 0 3rem 0 0;
}
.auteur-inner table tr td ul {
  margin: 0;
  padding: 0 0 0 1.5rem;
}

.share {
  padding: 0 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media (max-width: 600px) {
  .share {
    padding: 0 2rem;
  }
}
.share-inner {
  max-width: calc(49.998% - 1rem);
  width: 100%;
}
@media (max-width: 1000px) {
  .share-inner {
    max-width: 100%;
  }
}
.share-inner h3 {
  padding: 2.5rem 0 2.5rem;
  font-size: 2.5rem;
  font-weight: 300;
}
.share-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.share-list ul {
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.5rem;
}
.share-list ul li {
  list-style: none;
}
.share-list ul li .button {
  margin: 0;
}

.witruimte {
  display: block;
  width: 100%;
  max-width: 100%;
  position: relative;
}
.witruimte.w40 {
  height: 4rem;
}
@media (max-width: 600px) {
  .witruimte.w40 {
    height: 2rem;
  }
}
.witruimte.w90 {
  height: 9rem;
}
@media (max-width: 600px) {
  .witruimte.w90 {
    height: 4.5rem;
  }
}
.witruimte.w180 {
  height: 18rem;
}
@media (max-width: 600px) {
  .witruimte.w180 {
    height: 9rem;
  }
}

.gridlayout {
  width: calc(100% - 8rem);
  position: fixed;
  top: 0;
  left: 0;
  margin: 0 4rem;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 2rem;
}
.gridlayout div {
  max-width: 8.333%;
  width: 100%;
  height: 100%;
  border: 1px solid #000000;
}

.program {
  padding: 0 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (max-width: 600px) {
  .program {
    padding: 0 2rem;
  }
}
.program h2 {
  font-size: 2.5rem;
  font-weight: 300;
  padding: 0 0 7.5rem;
}
@media (max-width: 600px) {
  .program h2 {
    padding: 0 0 4rem;
  }
}
@media (max-width: 400px) {
  .program h2 {
    font-size: 2.2rem;
  }
}
.program-inner {
  width: 100%;
  -ms-flex-item-align: end;
      align-self: flex-end;
}
.program-item {
  background: #e3e3e3;
  padding: 0;
  margin: 2px 0;
  border-radius: 3vmin;
}
.program-item:not(.noexpand) {
  cursor: pointer;
}
.program-item:not(.noexpand):hover {
  background: var(--color);
}
@media (max-width: 1000px) {
  .program-item:not(.noexpand):hover {
    background: #e3e3e3;
  }
}
.program-item.timebgcolor {
  background-color: #d3d3d3;
}
.program-item.timebgcolor .program-item-head-title {
  font-weight: 600;
}
.program-item.nobg {
  background: none;
}
@media (max-width: 1000px) {
  .program-item.noexpand .program-item-head-content {
    max-width: 100%;
    padding: 2rem 2rem;
  }
}
@media (max-width: 1000px) {
  .program-item.noexpand .program-item-head-icon {
    width: 0;
    padding: 0;
  }
}
.program-item.noexpand .program-item-head i {
  opacity: 0;
  visibility: hidden;
}
.program-item-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 6rem;
}
@media (max-width: 1500px) {
  .program-item-head {
    height: 6rem;
  }
}
@media (max-width: 1000px) {
  .program-item-head {
    height: unset;
  }
}
@media (max-width: 600px) {
  .program-item-head {
    height: auto;
    min-height: 10rem;
  }
}
.program-item-head.is-open i:before {
  content: "";
  width: 1.3rem;
  height: 2px;
  background: #f5f5f5;
}
.program-item-head.is-open i svg {
  display: none;
}
.program-item-head-icon {
  max-width: 8.333%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 0 0 2rem;
}
@media (max-width: 1000px) {
  .program-item-head-icon {
    max-width: 6rem;
    padding: 0 2rem 0 0;
  }
}
.program-item-head i {
  width: 3rem;
  height: 3rem;
  background: #000000;
  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;
}
.program-item-head i svg {
  display: block;
  width: 1.3rem;
  height: 1.3rem;
}
.program-item-head i svg path {
  fill: #f5f5f5;
}
@media (max-width: 600px) {
  .program-item-head i {
    width: 2.5rem;
    height: 2.5rem;
  }
  .program-item-head i svg {
    width: 1.1rem;
    height: 1.1rem;
  }
}
.program-item-head-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  gap: 2rem;
  max-width: 91.663%;
  width: 100%;
}
@media (max-width: 1000px) {
  .program-item-head-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 2rem 0 2rem 2rem;
    gap: 1rem;
  }
}
.program-item-head-time {
  font-size: 3rem;
  font-weight: 200;
  line-height: 3rem;
  display: inline-block;
  font-family: "poppins", sans-serif;
  position: relative;
  max-width: 7.779%;
  width: 100%;
}
@media (max-width: 1500px) {
  .program-item-head-time {
    max-width: 10rem;
  }
}
@media (max-width: 1000px) {
  .program-item-head-time {
    max-width: 100%;
  }
}
@media (max-width: 600px) {
  .program-item-head-time {
    font-size: 2.7rem;
  }
}
.program-item-head-time span {
  display: block;
  position: relative;
  top: 0.5rem;
  padding-left: 3rem;
}
@media (max-width: 1000px) {
  .program-item-head-time span {
    padding-left: 0;
  }
}
.program-item-head-title {
  font-size: 1.5rem;
  line-height: 1.2;
  max-width: 63.15%;
  width: 100%;
  padding: 5px 0 0 0;
}
@media (max-width: 1000px) {
  .program-item-head-title {
    max-width: 100%;
    padding: 0;
  }
}
@media (max-width: 600px) {
  .program-item-head-title {
    max-width: 100%;
    width: 100%;
    font-size: 1.4rem;
  }
}
.program-item-head-body {
  font-size: 1.3rem;
  line-height: 1.4;
  max-width: 26%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
}
@media (max-width: 1000px) {
  .program-item-head-body {
    max-width: 100%;
  }
}
.program-item-head-body .talkthumb {
  max-width: 5.5rem;
  width: 100%;
}
.program-item-head-body .talkthumb picture {
  border-radius: 50%;
}
.program-item-body {
  height: 0;
  -webkit-transition: height 200ms linear;
  transition: height 200ms linear;
  overflow: hidden;
}
.program-item-body-inner {
  padding: 2rem 8.333% 2rem;
  font-size: 1.5rem;
  line-height: 1.4;
}
@media (max-width: 1000px) {
  .program-item-body-inner {
    padding: 2rem;
  }
}
.program-item-content, .program-item-thumbnail {
  max-width: calc(49.998% - 1rem);
  width: 100%;
}
.program-item-content {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 2rem 1fr;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 2rem;
  padding-top: 10rem;
}
.program-item-thumbnail-inner picture {
  border-radius: 3vmin;
}
.program-item-adres, .program-item-contact, .program-item-verdiep, .program-item-open {
  border-top: 1px solid #000000;
}
.program-item-adres-inner, .program-item-contact-inner, .program-item-verdiep-inner, .program-item-open-inner {
  padding-top: 4rem;
}
.program-item-adres table, .program-item-contact table, .program-item-verdiep table, .program-item-open table {
  width: 100%;
}
.program-item-adres table thead, .program-item-contact table thead, .program-item-verdiep table thead, .program-item-open table thead {
  display: none;
}
.program-item-adres a, .program-item-contact a, .program-item-verdiep a, .program-item-open a {
  color: #000000;
  text-decoration: none;
}
.program-item-adres-inner a {
  position: relative;
  display: inline-block;
}
.program-item-adres-inner a:after {
  display: block;
  content: "";
  width: 100%;
  height: 1px;
  background: #000000;
  position: relative;
  top: -0.5rem;
}
.program-item-contact-inner h3 {
  padding-bottom: 1.5rem;
}
.program-item-verdiep {
  border-top: none;
}
.program-item-verdiep-inner h3 {
  padding-bottom: 1.5rem;
}
.program-item-verdiep-number {
  color: var(--color);
  font-weight: 500;
  font-size: 12.7rem;
  line-height: 1;
}
.program-item-open-inner h3 {
  padding-bottom: 1.5rem;
}

.video1 {
  padding: 0 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 600px) {
  .video1 {
    padding: 0 2rem;
  }
}
.video1-inner {
  max-width: calc(74.997% - 0.5rem);
  width: 100%;
  position: relative;
  border-radius: 3vmin;
  overflow: hidden;
}
@media (max-width: 1000px) {
  .video1-inner {
    max-width: 100%;
  }
}

.uitnodiging {
  padding: 0 4rem;
}
@media (max-width: 600px) {
  .uitnodiging {
    padding: 0 2rem;
  }
}
.uitnodiging-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 1.5rem;
}
@media (max-width: 1000px) {
  .uitnodiging-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.uitnodiging-thumbnail {
  max-width: 49.998%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 1.5rem;
}
@media (max-width: 600px) {
  .uitnodiging-thumbnail {
    max-width: 100%;
    margin-bottom: 4rem;
  }
}
.uitnodiging-thumbnail-inner {
  max-width: 66.664%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 1000px) {
  .uitnodiging-thumbnail-inner {
    max-width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.uitnodiging-thumbnail-inner picture {
  border-radius: 50rem;
}
.uitnodiging-thumbnail-pic {
  max-width: 75%;
  width: 100%;
}
.uitnodiging-content {
  max-width: 49.998%;
  width: 100%;
}
@media (max-width: 1000px) {
  .uitnodiging-content {
    max-width: 100%;
  }
}
.uitnodiging-content h2 {
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1.2;
  padding: 0;
}
.uitnodiging-content-inner {
  -webkit-column-count: 2;
     -moz-column-count: 2;
          column-count: 2;
}
@media (max-width: 600px) {
  .uitnodiging-content-inner {
    -webkit-column-count: 1;
       -moz-column-count: 1;
            column-count: 1;
  }
}
.uitnodiging-body {
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  -moz-column-break-inside: avoid;
       break-inside: avoid;
}
.uitnodiging-body-inner {
  padding: 7.5rem 0 0;
}
@media (max-width: 600px) {
  .uitnodiging-body-inner {
    padding-top: 4rem;
  }
}
.uitnodiging-body h3 {
  font-size: 2.5rem;
  font-weight: 300;
  padding-bottom: 2rem;
  line-height: 1.2;
}

.pinscroll-inner {
  position: relative;
  height: 85vh;
  height: calc(var(--vh, 1vh) * 85);
  overflow: hidden;
}
.pinscroll-slide-thumbnail {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.pinscroll-slide-thumbnail:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
.pinscroll-slide-thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.pinscroll-slide-content {
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 2;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #f5f5f5;
  padding: 0 4rem;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 1000px) {
  .pinscroll-slide-content {
    -ms-grid-columns: 1fr;
    grid-template-columns: repeat(1, 1fr);
    gap: 2.5rem;
    position: relative;
    top: unset;
    left: unset;
    -webkit-transform: unset;
        -ms-transform: unset;
            transform: unset;
    padding: 25rem 4rem 0;
  }
}
@media (max-width: 600px) {
  .pinscroll-slide-content {
    gap: 5rem;
    padding: 20rem 2rem 0;
  }
}
.pinscroll-slide-number {
  font-size: 22rem;
  font-weight: 500;
  line-height: 1;
}
@media (max-width: 1000px) {
  .pinscroll-slide-number {
    font-size: 15rem;
  }
}
@media (max-width: 600px) {
  .pinscroll-slide-number {
    font-size: 8rem;
  }
}
.pinscroll-slide-buttons-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.5rem;
}
@media (max-width: 1000px) {
  .pinscroll-slide-buttons-inner {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.pinscroll-slide-buttons-inner .button {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  margin-top: 0;
  background: #f5f5f5;
}
@media (max-width: 1000px) {
  .pinscroll-slide-buttons-inner .button {
    -ms-flex-item-align: start;
        align-self: flex-start;
  }
}
.pinscroll-shape {
  position: absolute;
  left: 0;
  bottom: -1px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  z-index: 3;
}
.pinscroll-shape-wrap {
  max-width: 38.3rem;
  width: 100%;
}
@media (max-width: 1000px) {
  .pinscroll-shape-wrap {
    max-width: 25rem;
  }
}
@media (max-width: 600px) {
  .pinscroll-shape-wrap {
    max-width: 20rem;
  }
}
.pinscroll-shape-wrap:before, .pinscroll-shape-wrap:after {
  content: "";
  position: absolute;
  top: 0;
  display: block;
  height: 100%;
  width: 50%;
  background: #e3e3e3;
}
.pinscroll-shape-wrap:before {
  left: -19rem;
}
@media (max-width: 1000px) {
  .pinscroll-shape-wrap:before {
    left: -12rem;
  }
}
@media (max-width: 600px) {
  .pinscroll-shape-wrap:before {
    left: -10rem;
  }
}
.pinscroll-shape-wrap:after {
  right: -19rem;
}
@media (max-width: 1000px) {
  .pinscroll-shape-wrap:after {
    right: -12rem;
  }
}
@media (max-width: 600px) {
  .pinscroll-shape-wrap:after {
    right: -10rem;
  }
}
.pinscroll-shape svg {
  width: 100%;
  height: 100%;
  display: block;
}
.pinscroll-shape svg path {
  fill: #e3e3e3;
}

.symptimeline {
  position: relative;
}
.symptimeline-inner {
  width: 100%;
  position: relative;
}
.symptimeline-slide {
  width: 100%;
  height: 85vh;
  height: calc(var(--vh, 1vh) * 85);
}
@media (max-width: 1000px) {
  .symptimeline-slide {
    height: auto;
  }
}
.symptimeline-slide:nth-of-type(3n + 1) {
  height: calc(85vh + 9rem);
  height: calc(var(--vh, 1vh) * 85 + 9rem);
}
@media (max-width: 1000px) {
  .symptimeline-slide:nth-of-type(3n + 1) {
    height: auto;
  }
}
.symptimeline-slide:nth-of-type(3n + 1) .symptimeline-slide-content {
  padding-bottom: 9rem;
}
.symptimeline-slide:nth-of-type(3n + 2) {
  background: grey;
}
.symptimeline-slide:nth-of-type(3n + 3) {
  background: #000000;
}
.symptimeline-slide-inner {
  height: 100%;
  width: 100%;
  position: relative;
}
.symptimeline-slide-thumbnail {
  width: 100%;
  height: 100%;
  position: relative;
}
@media (max-width: 1000px) {
  .symptimeline-slide-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
  }
}
.symptimeline-slide-thumbnail:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
}
.symptimeline-slide-thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.symptimeline-slide-content {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #f5f5f5;
  padding: 0 4rem;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 1000px) {
  .symptimeline-slide-content {
    -ms-grid-columns: 1fr;
    grid-template-columns: repeat(1, 1fr);
    gap: 2.5rem;
    position: relative;
    top: unset;
    left: unset;
    -webkit-transform: unset;
        -ms-transform: unset;
            transform: unset;
    padding: 25rem 4rem 0;
  }
}
@media (max-width: 600px) {
  .symptimeline-slide-content {
    gap: 5rem;
    padding: 20rem 2rem 0;
  }
}
.symptimeline-slide-number {
  font-size: 22rem;
  font-weight: 500;
  line-height: 1;
}
@media (max-width: 1000px) {
  .symptimeline-slide-number {
    font-size: 15rem;
  }
}
@media (max-width: 600px) {
  .symptimeline-slide-number {
    font-size: 8rem;
  }
}
.symptimeline-slide-buttons-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.5rem;
}
@media (max-width: 1000px) {
  .symptimeline-slide-buttons-inner {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.symptimeline-slide-buttons-inner .button {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  margin-top: 0;
  background: #f5f5f5;
}
@media (max-width: 1000px) {
  .symptimeline-slide-buttons-inner .button {
    -ms-flex-item-align: start;
        align-self: flex-start;
  }
}
.symptimeline-slide-shape {
  position: absolute;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  z-index: 3;
}
.symptimeline-slide-shape-wrap {
  max-width: 38.3rem;
  width: 100%;
}
@media (max-width: 1000px) {
  .symptimeline-slide-shape-wrap {
    max-width: 25rem;
  }
}
@media (max-width: 600px) {
  .symptimeline-slide-shape-wrap {
    max-width: 20rem;
  }
}
.symptimeline-slide-shape-wrap:before, .symptimeline-slide-shape-wrap:after {
  content: "";
  position: absolute;
  top: 0;
  display: block;
  height: 100%;
  width: 50%;
  background: #e3e3e3;
}
.symptimeline-slide-shape-wrap:before {
  left: -19rem;
}
@media (max-width: 1000px) {
  .symptimeline-slide-shape-wrap:before {
    left: -12rem;
  }
}
@media (max-width: 600px) {
  .symptimeline-slide-shape-wrap:before {
    left: -10rem;
  }
}
.symptimeline-slide-shape-wrap:after {
  right: -19rem;
}
@media (max-width: 1000px) {
  .symptimeline-slide-shape-wrap:after {
    right: -12rem;
  }
}
@media (max-width: 600px) {
  .symptimeline-slide-shape-wrap:after {
    right: -10rem;
  }
}
.symptimeline-slide-shape svg {
  width: 100%;
  height: 100%;
  display: block;
}
.symptimeline-slide-shape svg path {
  fill: #e3e3e3;
}
.symptimeline-slide-shape.up {
  top: -1px;
}
.symptimeline-slide-shape.down {
  bottom: -1px;
}

.singlebutton-inner {
  padding: 0 4rem;
}
@media (max-width: 600px) {
  .singlebutton-inner {
    padding: 0 2rem;
  }
}
.singlebutton-button a {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 0 !important;
  font-size: 4rem;
  font-weight: 500 !important;
  height: 13.7rem;
  padding: 2.5rem !important;
  border-radius: 10rem !important;
}
.singlebutton-button a.fill {
  background: var(--color);
  color: var(--colortext);
}
@media (max-width: 1000px) {
  .singlebutton-button a {
    font-size: 3rem;
    height: 10rem;
  }
}
@media (max-width: 600px) {
  .singlebutton-button a {
    font-size: 2.5rem;
    height: 8rem;
  }
}
@media (max-width: 400px) {
  .singlebutton-button a {
    font-size: 2.2rem;
  }
}
.singlebutton .button-icon {
  max-width: 4rem;
  width: 100%;
  margin: 0 0.5rem 0 4rem;
  display: block;
}
.singlebutton .button-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}
.singlebutton .button-icon svg path {
  fill: var(--colortext);
}

/* =============PAGES==================== */