/*--------------------------------------------------------------
# Variables
--------------------------------------------------------------*/

:root {
  /* Colors */
  --primary-color: #153A54;
  --primary-hover-color: #1C5A85;
  --secondary-color: #EAF6FE;
  --white-color: #ffffff;
  --grey-color: #f8f9fa;

  /* Spacing */
  --spacing-large: 80px;
  --spacing-medium: 40px;
  --spacing-small: 30px;
  --spacing-col: 30px;
  --height-navigation: 90px;

  /* Font Sizes */
  --font-size-base: 17px;
  --font-size-h1: 32px;
  --font-size-h2: 28px;
  --font-size-h3: 20px;
  --font-size-h4: 20px;
  --font-size-h5: 22px;
  --font-size-lead: 18px;
  --font-size-small: 16px;
  --font-size-tiny: 12px;
  --line-height-title: 1.2;
  --line-height-text: 1.5;

  /* Sonstiges */
  color-scheme: light;
}

@media (min-width: 992px) {
:root {
  /* Spacing */
  --spacing-large: 160px;
  --spacing-medium: 60px;
  --spacing-small: 40px;
  --spacing-col: 30px;
  --height-navigation: 112px;

  /* Font Sizes */
  --font-size-base: 20px;
  --font-size-h1: 52px;
  --font-size-h2: 42px;
  --font-size-h3: 24px;
  --font-size-h4: 30px;
  --font-size-h5: 30px;
  --font-size-lead: 22px;
  --font-size-small: 18px;
  --font-size-tiny: 14px;
}
}


/*--------------------------------------------------------------
# Body
--------------------------------------------------------------*/

html {
    scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  font-weight: 300;
  position: relative;
  width: 100%;
  height: 100%;
  color: var(--primary-color);
  font-size: var(--font-size-base);
  line-height: var(--line-height-text);
}

/*--------------------------------------------------------------
# Layout
--------------------------------------------------------------*/

@media (min-width: 1600px) {
.container {
    max-width: 1520px!important;
}
}

@media (min-width: 2000px) {
.container {
    max-width: 1820px!important;
}
}

.section-spacing-lg {
  padding-top: var(--spacing-large);
  padding-bottom: var(--spacing-large);
}

.mt-navbar {
  margin-top: var(--height-navigation);
}

.mt-lg {
  margin-top: var(--spacing-large);
}

.mb-lg {
  margin-bottom: var(--spacing-large);
}

.pt-lg {
  padding-top: var(--spacing-large);
}

.pb-lg {
  padding-bottom: var(--spacing-large);
}

.mb-col {
  margin-bottom: 30px;
}

.slidescroller {
  margin-top: calc(var(--height-navigation) * -1);
  padding-top: var(--height-navigation);
}

@media (max-width: 1199px) {
.mb-col-xl {
  margin-bottom: 30px;
}
.process-animate .mb-col,
.process-animate .mb-col-xl {
  margin-bottom: 15px;
}
}

@media (max-width: 991px) {
.mb-col-lg {
  margin-bottom: 30px;
}
}

@media (max-width: 767px) {
.mb-col-md {
  margin-bottom: 30px;
}
}

@media (max-width: 575px) {
.mb-col-sm {
  margin-bottom: 30px;
}
}

@media (min-width: 1400px) {
.col-xxl-4 {
        -webkit-box-flex: 0;
            -ms-flex: 0 0 auto;
                flex: 0 0 auto;
        width: 33.33333333%;
}
}

/*--------------------------------------------------------------
# Backgrounds
--------------------------------------------------------------*/

.bg-light {
  background-color: var(--secondary-color)!important;
}

.bg-light-half {
  position: relative;
  background: -webkit-gradient( linear, left top, right top, from(var(--white-color)), color-stop(50%, var(--white-color)), color-stop(50%, var(--secondary-color)), to(var(--secondary-color)) );
  background: linear-gradient( to right, var(--white-color) 0%, var(--white-color) 50%, var(--secondary-color) 50%, var(--secondary-color) 100% );
}

@media (max-width: 1199px) {
.bg-light-half {
  background: white;
}
.bg-light-xl {
  background: var(--secondary-color);
}
}

.bg-dark {
  background-color: var(--primary-color)!important;
}

.text-dark {
  color: var(--primary-color)!important;
}

/*--------------------------------------------------------------
# Links
--------------------------------------------------------------*/

a {
  color: var(--primary-color);
  text-decoration: none!important;
}

a:hover,
a:focus {
  color: var(--primary-hover-color);
}

.text-white a {
  color: var(--white-color);
  text-decoration: none!important;
}

.text-white a:hover,
.text-white a:focus {
  color: var(--secondary-color);
}

strong,.strong {
  font-weight: 600;
}

/*--------------------------------------------------------------
# Typografie
--------------------------------------------------------------*/

h1 {
  font-size: var(--font-size-h1);
  line-height: var(--line-height-title);
  font-weight: 400;
}

h2 {
  font-size: var(--font-size-h2);
  line-height: var(--line-height-title);
  font-weight: 400;
}

h3 {
  font-family: "Times New Roman", serif;
  line-height: var(--line-height-title);
  font-size: var(--font-size-h3);
  font-weight: 400;
}

h3.quote {
  font-size: var(--font-size-h2);
  line-height: var(--line-height-title);
}

h4 {
  font-size: var(--font-size-h4);
  line-height: var(--line-height-title);
}

h5 {
  font-family: "Times New Roman", serif;
  line-height: var(--line-height-title);
  font-size: var(--font-size-h5);
  font-weight: 400;
}

.text-small {
  font-size: var(--font-size-small);
  line-height: var(--line-height-text);
}

.text-opacity {
  color: inherit;
  opacity: 0.5;
}

.lead {
  font-size: var(--font-size-lead);
  font-weight: 400;
}

.text-main {
  color: var(--primary-color);
}

.h2-underlined {
  position: relative;
  margin-bottom: 4rem;
}

.h2-underlined::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1.9rem;
  width: 6px;
  height: 6px;
  background-color: var(--primary-color);
  border-radius: 50%;
  opacity: 1;
}

.h2-underlined::after {
  content: "";
  position: absolute;
  left: 12px; 
  bottom: calc(-1.9rem + 2px);
  height: 2px;
  width: 240px;
  max-width: calc(100% - 12px);
  background-color: var(--primary-color);
  opacity: 1;
}

.text-white .h2-underlined::before {
  background-color: var(--white-color);
}

.text-white .h2-underlined::after {
  background-color: var(--white-color);
}

.h4-underlined {
  position: relative;
  margin-bottom: 3rem;
  opacity: 0.5;
  -webkit-transition: opacity 0.6s ease-out;
  transition: opacity 0.6s ease-out;
}

@media (max-width: 991px) {
.h4-underlined {
  margin-bottom: 2.5rem;
}
}

.h4-underlined::before,
.h4-underlined::after {
  -webkit-transition: all 0.6s ease-out;
  transition: all 0.6s ease-out;
  opacity: 0;
}

.h4-underlined.is-visible {
  opacity: 1;
}

.h4-underlined.is-visible::before {
  opacity: 1;
}

.h4-underlined.is-visible::after {
  width: calc(100% - 12px);
  opacity: 1;
}

/* Original Positionen */
.h4-underlined::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1rem;
  background-color: var(--primary-color);
  border-radius: 50%;
  width: 6px;
  height: 6px;
}

.h4-underlined::after {
  width: 30px;
  content: "";
  position: absolute;
  left: 12px;
  bottom: calc(-1rem + 2px);
  height: 2px;
  background-color: var(--primary-color);
}

.spacer-full-width {
  position: relative;
  height: 6px;
  margin-top: var(--spacing-medium);
  margin-bottom: var(--spacing-medium);
}

.spacer-full-width::before {
  content: "";
  position: absolute;
  left: 0;
  width: 6px;
  height: 6px;
  background-color: var(--white-color);
  border-radius: 50%;
  opacity: 1;
}

.spacer-full-width::after {
  content: "";
  position: absolute;
  left: 12px; 
  bottom: 2px;
  height: 2px;
  width: calc(100% - 12px);
  background-color: var(--white-color);
  opacity: 1;
}


/*--------------------------------------------------------------
# Buttons
--------------------------------------------------------------*/

.btn {
  padding: .5rem 1.5rem;
  font-size: var(--font-size-base);
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  border-radius: 0;
}

.btn-sm {
  padding: .3rem 1rem;
  font-size: var(--font-size-small);
}

.btn-main {
  color: var(--white-color);
  background: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-main:hover,
.btn-main:focus,
.btn-main:active {
  color: var(--white-color)!important;
  background: var(--primary-hover-color)!important;
  border-color: var(--primary-hover-color)!important;
}

.btn-main-outline {
  color: var(--primary-color);
  background: var(--white-color);
  border-color: var(--primary-color);
}

.btn-main-outline:hover,
.btn-main-outline:focus,
.btn-main-outline:active {
  color: var(--white-color)!important;
  background: var(--primary-hover-color)!important;
  border-color: var(--primary-hover-color)!important;
}

.btn-white {
  color: var(--primary-color);
  background: var(--white-color);
  border-color: var(--white-color);
}

.text-white a.btn-white {
  color: var(--primary-color);
}

.btn-white:hover,
.btn-white:focus,
.btn-white:active {
  color: var(--primary-color)!important;
  background: var(--secondary-color)!important;
  border-color: var(--secondary-color)!important;
}

.btn.arrow::after {
    content: '';
    display: inline-block;
    width: 15px;
    height: 15px;
    margin-left: 12px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.btn-main.arrow-top-right::after {
    background-image: url(../dmxDaten/icons/icon-arrow-top-right-white.svg);
}

.btn-white.arrow-top-right::after {
    background-image: url(../dmxDaten/icons/icon-arrow-top-right-dark.svg);
}

.btn-main.arrow-bottom-right::after {
    background-image: url(../dmxDaten/icons/icon-arrow-bottom-right-white.svg);
}

.btn-white.arrow-bottom-right::after {
    background-image: url(../dmxDaten/icons/icon-arrow-bottom-right-dark.svg);
}

.btn-main.arrow-download::after {
    background-image: url(../dmxDaten/icons/icon-arrow-download-white.svg);
}

.btn-white.arrow-download::after {
    background-image: url(../dmxDaten/icons/icon-arrow-download-dark.svg);
}

.nav-pills .nav-link {
  color: var(--primary-color);
  background: var(--grey-color);
  border-color: var(--grey-color);
}

.bg-light .nav-pills .nav-link {
  color: var(--primary-color);
  background: var(--white-color);
  border-color: var(--white-color);
}

.nav-pills .nav-link.active, .nav-pills .nav-link:focus, .nav-pills .show>.nav-link {
  color: var(--white-color);
  background: var(--primary-color);
  border-color: var(--primary-color);
}

/*--------------------------------------------------------------
# Cards
--------------------------------------------------------------*/

.card {
  border-radius: 0;
  border: none;
}

.card-body {
    padding: 20px;
}

.card-footer {
    padding: 0 20px 20px 20px;
    background: none;
    border-top: none
}

.icons-werte {
  width: 30px;
  height: 30px;
  margin-bottom: 16px;
}

.icons-karriere {
  width: auto;
  height: 30px;
  margin-bottom: 16px;
}

@media (min-width: 992px) {
.card-body {
    padding: 26px;
}
.card-footer {
    padding: 0 26px 26px 26px;
    background: none;
    border-top: none
}
.icons-karriere {
  height: 50px;
  margin-bottom: 22px;
}
}

/*--------------------------------------------------------------
# Components
--------------------------------------------------------------*/

.accordion-button {
    -webkit-box-shadow: none!important;
            box-shadow: none!important;
}

.accordion-button:not(.collapsed) {
    color: var(--primary-color);
    background: none;
}

img.sticker {
  width: 260px;
}

img.grafik {
  width: 400px;
}

@media (min-width: 1200px) {
img.sticker {
  width: 460px;
}
img.grafik {
  width: 100%;
}
}

.line-col {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

@media (min-width: 1200px) {
.line-col {
        -webkit-box-flex: 0;
            -ms-flex: 0 0 auto;
                flex: 0 0 auto;
        width: 12.5%;
}
.line-col.last-line {
        width: 8.333333%;
}
.process-animate .mb-col {
  margin-bottom: 60px;
}
}

.line {
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
}
.line-col.last-line {
    position: relative;
}

.line-col.last-line::after {
    content: "";
    position: absolute;
    right: 12px;
    bottom: -30px;
    width: 2px;
    height: calc(100% / 2 + 30px);
    background-color: var(--primary-color);
}

.process-card {
    opacity: 0.2;
    -webkit-transform: translateY(15px);
            transform: translateY(15px);
    -webkit-transition: opacity 0.6s ease, -webkit-transform 1.2s ease;
    transition: opacity 0.6s ease, -webkit-transform 1.2s ease;
    transition: opacity 0.6s ease, transform 1.2s ease;
    transition: opacity 0.6s ease, transform 1.2s ease, -webkit-transform 1.2s ease;
}

.process-card.is-visible {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
}

@media (max-width: 1199px) {
.line-col.last-line::after {
    display: none;
}
.line {
    width: 2px;
    height: 100%;
    background-color: var(--primary-color);
}
.line-col {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

.header-fullscreen {
  min-height: 100svh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  background-color: var(--primary-color);
  padding-top: var(--height-navigation);
}

.header-halfscreen {
  min-height: 100svh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  background-color: var(--primary-color);
  padding-top: var(--height-navigation);
}

.header-normal {
  padding-top: var(--height-navigation);
  position: relative;
  background-color: var(--primary-color);
}

.header-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.header-halfscreen .header-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 1;
  width: 50%;
  margin-left: 50%;
}

@media (max-width: 1199px) {
.header-halfscreen .header-bg {
  width: 40%;
  margin-left: 60%;
}
}

.header-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
}

.header-fullscreen .header-bg-dark,
.header-normal .header-bg-dark {
  opacity: 0.8;
}

@media (max-width: 991px) {
.header-fullscreen .header-bg-dark,
.header-normal .header-bg-dark {
  opacity: 1;
}
.header-fullscreen {
  min-height: 100%;
  display: block;
  background-color: var(--primary-color);
  padding-top: var(--height-navigation);
}
.header-halfscreen {
  min-height: 100%;
  display: block;
  background-color: var(--primary-color);
  padding-top: var(--height-navigation);
}
.header-bg {
  position: relative;
  width: 100%;
  aspect-ratio: 3/2;
}
.header-halfscreen .header-bg {
  position: relative;
  width: 100%;
  aspect-ratio: 3/2;
  margin: 0;
}
.header-video {
  position: relative;
  width: 100%;
  aspect-ratio: 3/2;
}
}

/*--------------------------------------------------------------
# History
--------------------------------------------------------------*/

    .history-wrap {
        position: relative;
    }

    .history-track {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        gap: 1.5rem;
        overflow-x: auto;
        -ms-scroll-snap-type: x mandatory;
            scroll-snap-type: x mandatory;
        padding-bottom: 8px;
        -ms-overflow-style: none;  /* Internet Explorer 10+ */
        scrollbar-width: none;  /* Firefox, Safari 18.2+, Chromium 121+ */
    }

    .history-wrap {
      padding-left: 30px;
    }

    @media (min-width: 578px) {
        .history-wrap {
            padding-left: calc(50vw - 270px + 0.75rem);
        }
    }

    @media (min-width: 768px) {
        .history-wrap {
            padding-left: calc(50vw - 360px + 0.75rem);
        }
    }

    @media (min-width: 992px) {
        .history-wrap {
            padding-left: calc(50vw - 480px + 0.75rem);
        }
    }

    @media (min-width: 1200px) {
        .history-wrap {
            padding-left: calc(50vw - 570px + 0.75rem);
        }
    }

    @media (min-width: 1400px) {
        .history-wrap {
            padding-left: calc(50vw - 660px + 0.75rem);
        }

        .col-xxl-3 {
            -webkit-box-flex: 0;
                -ms-flex: 0 0 auto;
                    flex: 0 0 auto;
           width: calc((100vw - (50vw - 660px + 0.75rem) - (50vw - 660px + 0.75rem) - 3rem) / 3);
        }
    }

    @media (min-width: 1600px) {
        .history-wrap {
            padding-left: calc(50vw - 760px + 0.75rem);
        }

        .col-xxl-3 {
            -webkit-box-flex: 0;
                -ms-flex: 0 0 auto;
                    flex: 0 0 auto;
           width: calc((100vw - (50vw - 760px + 0.75rem) - (50vw - 760px + 0.75rem) - 3rem) / 3);
        }
    }

    @media (min-width: 2000px) {
        .history-wrap {
            padding-left: calc(50vw - 910px + 0.75rem);
        }

        .col-xxl-3 {
            -webkit-box-flex: 0;
                -ms-flex: 0 0 auto;
                    flex: 0 0 auto;
           width: calc((100vw - (50vw - 910px + 0.75rem) - (50vw - 910px + 0.75rem) - 3rem) / 3);
        }
    }

    .history-track>* {
        scroll-snap-align: start;
    }

    .c-arrow {
        right: 0;
        top: 0;
        display: none;
        gap: 12px;
    }

    @media (min-width: 992px) {
        .c-arrow {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-pack: end;
                -ms-flex-pack: end;
                    justify-content: end;
            padding-bottom: 20px;
        }
    }

    .c-arrow button {
        width: 44px;
        height: 44px;
        border: 0;
        border-radius: 999px;
        background: var(--primary-color);
        display: grid;
        place-items: center;
        cursor: pointer;
    }

    .c-arrow button[disabled] {
        opacity: .5;
        cursor: default;
    }

    .c-arrow svg {
        width: 22px;
        height: 22px;
    }


.history-track {
    position:relative;
}
.history-track::before {
  content:"";
  position:absolute;
  left:0;
  right:0;
  top: 14px;
  height:2px;
  background: color-mix(in oklab, var(--primary-color) 100%, transparent);
  pointer-events:none;
  width: 9999px;
}

.history-card {
  position:relative;
  padding: 0;
  border: none;
  background: none;
}

.history-card .card-body {
  padding: 100px 0 0 0;
}

.history-card::before {
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:28px;
  height:28px;
  border-radius:999px;
  background:var(--primary-color);
  border:2px solid var(--white-color);
}
.history-card::after{
  content:"";
  position:absolute;
  top:28px;
  left:13px;
  width:2px;
  height:40px;
  background: color-mix(in oklab, var(--primary-color) 100%, #000 0%);
}

/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/

.section-half {
  position: relative;
  overflow: hidden;
}

.section-half .cta-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%!important;
  height: 100%!important;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  z-index: 1;
}

@media (max-width: 1199px) {
.section-half .cta-image {
  position: relative;
  width: 100%!important;
  height: auto!important;
  aspect-ratio: 3/2;
}
}

.section-divider-image {
  width: 100%!important;
  max-height: 600px!important;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

@media (max-width: 767px) {
.section-divider-image {
  aspect-ratio: 3/2;
}
}

/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/

body.nav-open {
  overflow: hidden;
}

/* Base Navigation */
#navigation {
  position: fixed;
  top: 0;
  width: 100%;
  padding-top: 26px;
  padding-bottom: 26px;
  z-index: 1002;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}

@media (min-width: 992px) {
#navigation.bg-transparent-nav {
  background: none;
}
}

#navigation.bg-nav,
#navigation.bg-transparent-nav.bg-nav {
  background: var(--white-color);
}

@media (max-width: 991px) {
#navigation {
  background: var(--white-color);
}
}

.nav-open #navigation,
.nav-open #navigation.bg-nav {
  background: var(--primary-color);
}

#navigation .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: inherit;
      flex-wrap: inherit;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

/* LOGO */

.navbar-brand {
  z-index: 1002;
  padding: 0;
}

.navbar-logo {
  height: 60px;
}

@media (max-width: 991px) {
#navigation {
  padding-top: 22px;
  padding-bottom: 22px;
}
.navbar-logo {
  height: 46px;
}
}


.navbar-logo .st0 {
  fill: var(--white-color);
  -webkit-transition: fill 0.3s ease;
  transition: fill 0.3s ease;
}

.bg-nav .navbar-logo .st0,
.bg-transparent-nav .navbar-logo .st0 {
  fill: var(--primary-color);
}

.nav-open .navbar-logo .st0,
.nav-open .bg-nav .navbar-logo .st0 {
  fill: var(--white-color);
}

@media (max-width: 991px) {
.navbar-logo .st0 {
  fill: var(--primary-color);
}
}

/* LANGUAGE TOGGLER */

.language-toggler,
.language-toggler a {
  color: var(--white-color)!important;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.bg-nav .language-toggler,
.bg-nav .language-toggler a,
.bg-transparent-nav .language-toggler,
.bg-transparent-nav .language-toggler a {
  color: var(--primary-color)!important;
}

.language-toggler a.active {
  opacity: 1;
  pointer-events: none;
}

.language-toggler a {
  opacity: 0.5;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}

.language-toggler a:hover {
  opacity: 1;
}

.nav-open .language-toggler,
.nav-open .language-toggler a,
.nav-open .bg-nav .language-toggler,
.nav-open .bg-nav .language-toggler a {
  color: var(--white-color)!important;
}

.nav-link {
  position: relative;
  color: var(--white-color)!important;
  font-size: var(--font-size-h2);
  opacity: 0.5;
  padding-bottom: 10px;
  display: block;
  margin-bottom: 14px;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}

@media (max-width: 991px) {
.nav-link {
  padding-bottom: 6px;
  margin-bottom: 6px;
}
}

/* Punkt unter dem Text */
.nav-link::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 6px;
  height: 6px;
  background-color: var(--white-color);
  border-radius: 50%;
  opacity: 0.5;
  -webkit-transition: width 0.35s ease, opacity 0.25s ease;
  transition: width 0.35s ease, opacity 0.25s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 12px; 
  bottom: 2px;
  height: 2px;
  width: 30px;
  background-color: var(--white-color);
  opacity: 0.5;
  -webkit-transition: width 0.35s ease, opacity 0.25s ease;
  transition: width 0.35s ease, opacity 0.25s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active,
.navbar-nav .nav-link:focus {
  opacity: 1;
}

.navbar-nav .nav-link:hover::before,
.navbar-nav .nav-link:focus::before {
  opacity: 1;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link:focus::after {
  width: calc(100% - 15px);
  opacity: 1;
}

.menu-children a {
  display: block;
  padding: 6px 0;
  text-decoration: none;
  color: var(--white-color);
  opacity: 0.5;
  font-size: var(--font-size-h4);
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}

@media (max-width: 991px) {
.menu-children a {
  padding: 1px 0;
}
}

.menu-children a:hover,
.menu-children a:focus,
.menu-children a.active {
  opacity: 1;
}

/* BURGER */

  #burgerToggle {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-shadow: none!important;
            box-shadow: none!important;
    border: none;
    background: transparent;
    padding: 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;
    height: 46px;
    width: 46px;
    z-index: 1003;
  }

.burger-line {
  position: relative;
  display: block;
  width: 46px;
  height: 2px;
  margin: 6px auto;
  background-color: var(--white-color);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.bg-nav .burger-line,
.bg-transparent-nav .burger-line {
  background-color: var(--primary-color);
}

@media (max-width: 991px) {
.burger-line {
  background-color: var(--primary-color);
}
}

.burger-line::before {
  content: "";
  position: absolute;
  left: -12px;
  top: 50%;
  width: 6px;
  height: 6px;
  background-color: var(--white-color);
  border-radius: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.bg-nav .burger-line::before,
.bg-transparent-nav .burger-line::before {
  background-color: var(--primary-color);
}

@media (max-width: 991px) {
.burger-line::before {
  background-color: var(--primary-color);
}
}

.nav-open .burger-line,
.nav-open .bg-nav .burger-line {
  background-color: var(--white-color);
}

.nav-open .burger-line::before,
.nav-open .bg-nav .burger-line::before {
  background-color: var(--white-color);
}

.burger-open .burger-line::before {
  opacity: 0;
}

.burger-open .burger-line:nth-child(1) {
  -webkit-transform: rotate(45deg) translate(10px, 10px);
          transform: rotate(45deg) translate(10px, 10px);
}

.burger-open .burger-line:nth-child(2) {
  opacity: 0;
}

.burger-open .burger-line:nth-child(3) {
  -webkit-transform: rotate(-45deg) translate(10px, -10px);
          transform: rotate(-45deg) translate(10px, -10px);
}

@media (max-width: 991px) {
#burgerToggle {
  height: 40px;
  width: 40px;
}
.burger-line {
  width: 40px;
  margin: 5px auto;
}
.burger-open .burger-line:nth-child(1) {
  -webkit-transform: rotate(45deg) translate(8.5px, 8.5px);
          transform: rotate(45deg) translate(8.5px, 8.5px);
}
.burger-open .burger-line:nth-child(3) {
  -webkit-transform: rotate(-45deg) translate(8.5px, -8.5px);
          transform: rotate(-45deg) translate(8.5px, -8.5px);
}
}

/* COLLAPSE */

  .navbar-collapse {
    position: relative;
    top: 0;
    left: 0;
    height: calc(100svh - var(--height-navigation));
    width: 100vw;
    padding-bottom: var(--spacing-small);
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
    z-index: 1000;
    overflow-y: auto;
  }

  .navbar-collapse.show {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }

  .navbar-nav {
    -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: start;
  }

  .dropdown-menu {
    position: static !important;
    float: none;
    background: none;
    border: none;
    padding: 0;
    margin: 0;
  }

  .navbar-nav .dropdown-menu li:last-child .dropdown-item {
    margin-bottom: 10px;
  }

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

.footer-navigation li .btn-link,
.footer-navigation li {
  text-decoration: none!important;
  font-size: var(--font-size-base);
}

.footer-navigation li ul li {
  font-size: var(--font-size-small);
}

/*--------------------------------------------------------------
# Cookies
--------------------------------------------------------------*/

#popupToast {
  background: var(--white-color);
  color: var(--text-color);
  min-width: 320px;
  max-width: 400px;
  border-radius: 0;
        -webkit-box-shadow: 1px 2px 8px 0 rgba(0, 0, 0, 0.15);
                box-shadow: 1px 2px 8px 0 rgba(0, 0, 0, 0.15);
}

@media (max-width: 414px) {
#popupToast {
  min-width: calc(100vw - 30px);
  max-width: calc(100vw - 30px);
}
}

#popupToast h5 {
  font-size: var(--font-size-base);
}

#popupToast .small {
  font-size: var(--font-size-small);
}

#popupToast .tiny {
  font-size: var(--font-size-tiny);
}

/*--------------------------------------------------------------
# Cookies
--------------------------------------------------------------*/

    .cookie-consent-banner {
        display: none;
        bottom: 1rem;
        left: 1rem;
        position: fixed;
        padding: 1rem;
        width: 300px;
        text-align: left;
        max-height: 85%;
        overflow-y: auto;
        max-width: calc(100% - 40px);
        z-index: 997;
        opacity: 1;
        font-size: var(--font-size-tiny);
        -webkit-box-shadow: 1px 2px 8px 0 rgba(0, 0, 0, 0.15);
                box-shadow: 1px 2px 8px 0 rgba(0, 0, 0, 0.15);
        color: var(--text-color);
        background-color: #ffffff;
        -webkit-box-sizing: border-box;
                box-sizing: border-box;
    }


    .cookie-consent-options label {
        margin: 0 10px;
        font-size: 14px;
    }

    .cookie-consent-options input {
        margin-right: 5px;
    }

    @media (max-width: 414px) {
        .cookie-consent-banner {
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 15px;
            border-radius: 0;
            max-width: 100%;
            background-color: #ffffff;
            text-align: center;
        }
    }

/*--------------------------------------------------------------
# Tiny MCE
--------------------------------------------------------------*/

.tox-tinymce {
  top: auto!important;
  bottom: 0!important;
  position: fixed!important;
  z-index: 1000;
}

.tox-form__group--stretched .tox-label {
  display: none!important;
}

.tox-form__group {
  margin-bottom: 10px!important;
}