/* FONTS */
@font-face {
  font-family: 'AktivGrotesk Regular';
  src: url('AktivGrotesk-Regular.woff2') format('woff2'),
  url('AktivGrotesk-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'AktivGrotesk Bold';
  src: url('AktivGrotesk-Bold.woff2') format('woff2'),
  url('AktivGrotesk-Bold.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}


/* (D) ANIMATION - MOVE ITEMS FROM RIGHT TO LEFT */
/* 4 ITEMS -400%, CHANGE THIS IF YOU ADD/REMOVE ITEMS */
@keyframes header-animation {
  0% { transform: translate3d(100%, 0, 0); }
  100% { transform: translate3d(-200%, 0, 0); }
}

/* MEDIA */
@media screen and (max-width: 768px) {

  .header {
    justify-content: center;
    flex-direction: column;
  }

  .header .item {
    width: 100%;
  }

  .header .item {
    width: fit-content;
    font-family: 'AktivGrotesk Bold';
    font-size: 24px;
    font-weight: 300;
    margin: 0;
  }
}

/* HTML TAG OVERWRITES */
html {
  font-size: 14px;
}

body {
  color: #000000;
  font-family: 'AktivGrotesk Regular', sans-serif !important;
  font-weight: normal;
  font-size: 11px !important;
}

footer {
  text-align: center;
  padding: 15px;
}

/* Popup form style overwrites */
.mc-modal {
  top: 180px;
}

.mc-modal:before {
  content: "";
  background: rgba(0, 0, 0, 0.3);
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
}

/* (A) FIXED WRAPPER */
.moving-header-wrapper {
  /* overflow: hidden; /* HIDE SCROLL BAR */
  background: transparent;
  border-color: #3B5E93;
  border-bottom-style: solid;
  overflow: hidden;
}

.moving-header {
  animation: header-animation linear 25s infinite;
  display: flex;
}

.moving-header:hover {
  animation-play-state: paused;
}

.moving-header__item {
  flex-shrink: 0;
  box-sizing: border-box;
  padding: 10px;
  text-align: center;
}

/* LINK STYLE */
a {
  transition: color 0.25 linear;
}

a:link {
  color: #0c007b !important;
  text-decoration: none !important;
}

a:visited {
  color: #8c9aa8 !important;
}

a:hover {
  font-family: 'AktivGrotesk Regular';
  color: #2922ff !important;
  text-decoration: none !important;
}

a:active {
  color: #1a938f !important;
}

/* CLASSES */
.color-background {
  width: 100%;
  z-index: -1;
  position: absolute;
  background: #ffffff;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  margin-bottom: 70px;
}

.header .item {
  font-size: 24px;
  color: #000000 !important;
  margin: 0;
  text-align: left;
  padding: 10px;
}

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

.content {
  /*padding-bottom: 50px;*/
}

.paragraph1 {
  text-align: left;
  line-height: 2em;

}

.paragraph2 {
  text-align: left;
  line-height: 1.2em;

}

.paragraph3 {
  text-align: center;
  line-height: 1.2em;

}

h2 { 
  font-family: 'AktivGrotesk';
  font-size: 32px;
  line-height: 1.4;
} 

h4 { 
  font-family: 'AktivGrotesk';
  line-height: 1.4;
} 

h6 { 
  font-family: 'AktivGrotesk', sans-serif !important;
  font-size: 12px;
  line-height: 1.4em;
} 

/* Weird stuff */
.c-image-slider {
  cursor: url(./arrow.cur), e-resize;
 /* Weird stuff  cursor: pointer; */
  display: grid;

  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none; /* Safari */
  -khtml-user-select: none; /* Konqueror HTML */
  -moz-user-select: none; /* Old versions of Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome, Edge, Opera and Firefox */

}

.c-image-slider * {
  pointer-events: none;
}

.c-image-slider .c-image-slider__image {
  transition: 1s;
  opacity: 0;
  grid-row-start: 1;
  grid-row-end: 1;
  grid-column-start: 1;
  grid-column-end: 1;
}

.c-image-slider .c-image-slider__image.c-image-slider__image--visible {
  opacity: 1;
}

/* Utility Classes */
.u-min-height-100vh {
  min-height: 100vh;
}

.l-layout-1 {

}