@charset "UTF-8";

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;800&family=Suez+One&family=Rock+Salt&display=swap");

.flow > * + * {
  margin-top: var(--flow-space, 1em);
}

:root {
  --blue: #0badef;
  --white: #ffffff;
  --flow-space: 6rem;
}

.bg-white {
  background-color: white;
}

.bg-base-blue {
  background-color: #0badef;
}

.bg-base-gray {
  background-color: #ece7e4;
}

.base-padding {
  padding: 6vw;
}

@media (min-width: 1200px) {
  .base-padding {
    padding: 60px;
  }
}

.base-padding-vertical {
  padding: 6vw 0;
}

@media (min-width: 1200px) {
  .base-padding-vertical {
    padding: 60px 0;
  }
}

.base-padding-horizontal {
  padding: 0 6vw;
}

@media (min-width: 1200px) {
  .base-padding-horizontal {
    padding: 0 60px;
  }
}

.base-padding-half {
  padding: 3rem;
}

.base-padding-vertical-half {
  padding: 3rem 0;
}

.base-padding-horizontal-half {
  padding: 0 3rem;
}

.richtext {
  font-size: 18px;
  color: #333;
}

.richtext p {
  margin: 0 0 1rem 0;
}

.richtext ul {
  margin: 0 0 1rem 0rem;
  list-style-type: none;
}

.richtext ul li:before {
  content: "";
  font-family: "vita-icons";
  margin-right: 0.5rem;
  color: #0badef;
  font-size: 1rem;
}

.richtext li p {
  margin: 0;
}

.richtext a, .richtext a:visited {
  color: #0badef;
  text-decoration: underline;
}

.richtext a:hover, .richtext a:visited:hover {
  text-decoration: none;
}

.richtext h1,
.richtext h2,
.richtext h3,
.richtext h4,
.richtext h5 {
  margin: 1rem 0 0.5rem 0;
}

.richtext h2 {
  margin: 0.5rem 0 2rem 0;
}

h1,
h2,
h3,
h4,
h5 {
  line-height: 4.2rem;
  font-weight: normal;
}

h3,
h4,
h5 {
  font-weight: 800;
}

h1,
.h1 {
  font-family: "Suez One";
  color: #0badef;
}

@media (min-width: 768px) {
  h1,
.h1 {
    font-size: 40px;
    line-height: 1.3;
  }
}

@media (max-width: 768px) {
  h1,
.h1 {
    font-size: 30px;
    line-height: 1.2;
  }
}

h2,
.h2 {
  color: #666;
  font-family: "Suez One";
}

@media (min-width: 768px) {
  h2,
.h2 {
    font-size: 30px;
    line-height: 1.3;
  }
}

@media (max-width: 768px) {
  h2,
.h2 {
    font-size: 22px;
    line-height: 1.5;
  }
}

h3,
.h3 {
  color: #666;
}

@media (min-width: 768px) {
  h3,
.h3 {
    font-size: 22px;
    line-height: 1.2;
  }
}

@media (max-width: 768px) {
  h3,
.h3 {
    font-size: 18px;
    line-height: 1.2;
  }
}

h4,
.h4 {
  color: #666;
  font-size: 20px;
  line-height: 1.5rem;
}

.text-main-color {
  color: #0badef;
}

@font-face {
  font-family: "vita-icons";

  src: url("vita-icons.0ec3e081.woff2") format("woff2"), url("vita-icons.673ecfb0.woff") format("woff"), url("vita-icons.1e8bebc0.svg#vita-icons") format("svg");

  font-weight: normal;

  font-style: normal;
}

/* Chrome hack: SVG is rendered more smooth in Windozze. 100% magic, uncomment if you need it. */

/* Note, that will break hinting! In other OS-es font will be not as sharp as it could be */

/*
  @media screen and (-webkit-min-device-pixel-ratio:0) {
    @font-face {
      font-family: 'vita-icons';
      src: url('../font/vita-icons.svg?81628933#vita-icons') format('svg');
    }
  }
  */

[class^=icon-]:before,
[class*=" icon-"]:before {
  font-family: "vita-icons";
  font-style: normal;
  font-weight: normal;
  speak: never;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: 0.2em;
  text-align: center;
  /* opacity: .8; */
  /* For safety - reset parent styles, that can break glyph codes*/
  font-variant: normal;
  text-transform: none;
  /* fix buttons height, for twitter bootstrap */
  line-height: 1em;
  /* Animation center compensation - margins should be symmetric */
  /* remove if not needed */
  margin-left: 0.2em;
  /* you can be more comfortable with increased icons size */
  /* font-size: 120%; */
  /* Font smoothing. That was taken from TWBS */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Uncomment for 3D effect */
  /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
}

.icon-left:before {
  content: "";
}

/* '' */

.icon-right:before {
  content: "";
}

/* '' */

.icon-search:before {
  content: "";
}

/* '' */

.icon-mail:before {
  content: "";
}

/* '' */

.icon-chat-1:before {
  content: "";
}

/* '' */

.icon-cancel:before {
  content: "";
}

/* '' */

.icon-menu:before {
  content: "";
}

/* '' */

.icon-facebook:before {
  content: "";
}

/* '' */

.icon-linkedin:before {
  content: "";
}

/* '' */

.icon-rounded {
  padding: 1vw;
  border-radius: 100%;
  color: white;
}

.icon-large {
  font-size: 2rem;
}

*,
*:before,
*:after {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
  overflow: -moz-scrollbars-vertical;
  overflow-y: scroll;
}

html.menu-active {
  overflow: hidden;
}

body {
  background: #f6f4f4;
  font-family: "Inter", "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  font-weight: 300;
  min-height: 100vh;
  font-size: 1.0625rem;
  line-height: 1.75;
  word-wrap: break-word;
}

body.debug:after {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 99;
}

@media (max-width: 576px) {
  body.debug:after {
    background: red;
    color: white;
    content: "Small-down";
  }
}

@media (min-width: 576px) {
  body.debug:after {
    background: green;
    color: white;
    content: "small-up";
  }
}

@media (min-width: 768px) {
  body.debug:after {
    background: black;
    color: white;
    content: "Medium";
  }
}

@media (min-width: 992px) {
  body.debug:after {
    background: blue;
    color: white;
    content: "large";
  }
}

@media (min-width: 1200px) {
  body.debug:after {
    background: orange;
    content: "xxlarge";
  }
}

.main-wrapper {
  position: relative;
}

@media (min-width: 1400px) {
  .main-wrapper {
    max-width: 1435px;
    margin: 0 auto;
  }
}

.to-top {
  position: fixed;
  right: 0;
  bottom: 0;
  background: #333;
  color: white;
  padding: 10px;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.img-responsive {
  max-width: 100%;
  width: 100%;
  height: auto;
  display: block;
  margin: 0;
}

.hideme {
  font-size: 0;
}

.link-overlayed {
  position: relative;
}

.link-overlayed .link-overlay {
  position: absolute;
  z-index: 8;
  background: rgba(255, 255, 255, 0);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.center {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.center-horizontal {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}

.center-vertical {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

.cursor {
  cursor: pointer;
}

.btn,
.cta-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  background: linear-gradient(45deg, #a75d06, #f7931c);
  border: 3px solid #f7931c;
  color: white;
  padding: 1vw 20px 1vw 15px;
  line-height: 0;
  border-radius: 10px;
  font-family: "Suez One";
  letter-spacing: -0.035rem;
  outline: none;
}

.btn i,
.cta-button i {
  margin: 0 5px 0 0;
}

.btn {
  font-size: 1rem;
}

.cta-button {
  font-size: 1.3rem;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

@media (max-width: 992px) {
  .cta-button {
    font-size: 1.1rem;
  }
}

.cta-button:hover {
  background: linear-gradient(135deg, #a75d06, #f7931c);
}

.object-fit {
  height: 100%;
  min-height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.close-button {
  background: none;
  color: white;
  font-size: 1.5rem;
  border: 0;
  line-height: 0;
  position: absolute;
  top: 10px;
  right: 10px;
}

.decorate {
  position: relative;
  display: table;
  z-index: 2;
  margin: auto;
  color: white;
}

.decorate:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 104%;
  background: rgba(11, 173, 239, 0.8);
  z-index: -1;
}

.logo {
  position: relative;
  text-align: center;
}

.logo a:after {
  content: "Fonden Vita";
  font-family: "Inter", "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  font-size: 0.3rem;
  text-transform: uppercase;
  letter-spacing: 0.4rem;
  color: white;
  display: block;
  margin-bottom: 10px;
}

@media (max-width: 992px) {
  .logo a:after {
    font-size: 0.3rem;
  }
}

.topbanner-not-visible .logo a:after {
  color: #0badef;
}

@media (max-width: 992px) {
  .logo svg {
    width: 60px;
    height: auto;
  }
}

@media (min-width: 992px) {
  .logo svg {
    width: 100px;
    height: auto;
  }
}

@media (max-width: 992px) {
  .logo2 img {
    width: 80px;
    height: auto;
  }
}

@media (min-width: 992px) {
  .logo2 img {
    width: 170px;
    height: auto;
    padding-bottom: 0.8571428571rem;
  }
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 30;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-box-shadow: 0 4px 10px rgba(51, 51, 51, 0.1);
  box-shadow: 0 4px 10px rgba(51, 51, 51, 0.1);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}

.header-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-top: 15px;
  padding-bottom: 5px;
  font-family: "Suez One";
}

@media (min-width: 1400px) {
  .header-inner {
    max-width: 1435px;
    margin: 0 auto;
  }
}

.header-banner {
  background: #f6f4f4;
}

.banner-background {
  height: 40vw;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.hero {
  position: relative;
  min-height: 30vw;
}

.hero-low {
  margin-top: -200px;
}

.hero-header {
  position: absolute;
  bottom: 30px;
  left: 0;
  background: red;
}

.hero-inner {
  width: 100%;
  height: 100%;
  z-index: 5;
}

.hero-inner:after {
  content: "";
  position: absolute;
  width: 10vw;
  bottom: 0;
  left: 4vw;
  background: #8dc63e;
  height: 10px;
}

@media (min-width: 1400px) {
  .hero-inner {
    max-width: 1435px;
    margin: 0 auto;
  }
}

.hero-content-center {
  color: white;
  position: absolute;
  bottom: 0;
  left: 0;
  font-size: 50px;
}

.hero-content-ksp {
  position: absolute;
  left: 4vw;
  top: 20vw;
  font-family: "Suez One";
  font-size: 5vw;
  color: white;
}

@media (max-width: 992px) {
  .hero-content-ksp {
    font-size: 8vw;
    top: 24vw;
  }
}

.hero-content-ksp h2 {
  position: relative;
  display: table;
  color: white;
}

.hero-content-ksp h2:before {
  content: "";
  position: absolute;
  bottom: 0.5rem;
  left: 0;
  width: 100%;
  height: 55%;
  background: rgba(11, 173, 239, 0.8);
  z-index: -1;
}

.hero-content-ksp span {
  display: table;
  line-height: 5vw;
  position: relative;
  letter-spacing: -0.02em;
}

@media (max-width: 992px) {
  .hero-content-ksp span {
    line-height: 8vw;
  }
}

.hero-content-ksp span:before {
  content: "";
  position: absolute;
  bottom: 1vw;
  left: 0;
  width: 100%;
  height: 75%;
  background: rgba(141, 198, 62, 0.8);
  z-index: -1;
}

.decoration {
  position: relative;
}

.decoration:before {
  content: "";
  position: absolute;
  bottom: 1vw;
  left: 0;
  width: 100%;
  height: 75%;
  background: rgba(141, 198, 62, 0.8);
  z-index: -1;
}

.hero-content-cta {
  position: absolute;
  bottom: 8vw;
  right: 4vw;
}

@media (max-width: 768px) {
  .hero-content-cta {
    bottom: 10vw;
  }
}

.search-toggle {
  position: relative;
}

@media (min-width: 992px) {
  .menu-toggle {
    display: none;
  }
}

.border-radius {
  border-radius: 5px;
}

.top-arrow {
  position: relative;
}

.top-arrow:before {
  content: "";
  position: absolute;
  width: 10px;
  top: -5px;
  right: 10px;
  height: 10px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  background: white;
}

.search-layer {
  pointer-events: none;
  -webkit-box-shadow: 0 20px 30px rgba(0, 0, 0, 0.2);
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.2);
  opacity: 0;
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 30vw;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  background: white;
  -webkit-transform-origin: top right;
  transform-origin: top right;
  z-index: 35;
  -webkit-transform: scale(0) rotateX(45deg);
  transform: scale(0) rotateX(45deg);
  padding: 20px;
}

@media (max-width: 992px) {
  .search-layer {
    min-width: 80vw;
  }
}

.search-active .search-layer {
  opacity: 1;
  pointer-events: all;
  -webkit-transform: scale(1) rotateX(0deg);
  transform: scale(1) rotateX(0deg);
}

.search-layer form {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.search-layer input[type=text] {
  width: 90%;
  border: 0;
  padding: 10px;
  background: #f6f4f4;
  margin-right: 10px;
  border-radius: 5px;
  outline: none;
}

.search-active .search-layer {
  opacity: 1;
  pointer-events: all;
  -webkit-transform: scale(1) rotateX(0deg);
  transform: scale(1) rotateX(0deg);
}

.search-result a {
  color: #0badef;
}

.search-result-list {
  padding: 2rem 0 0 0;
}

.search-result-list-result {
  margin: 0 0 2rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 992px) {
  .search-result-list-result {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin: 0 0 3rem 0;
  }
}

.search-result-list-result h3 {
  margin-top: 0;
}

.search-result-list-result div {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  width: 85%;
}

@media (max-width: 992px) {
  .search-result-list-result div {
    width: 100%;
  }
}

.search-result-list-result picture {
  margin: 0 3rem 0 0;
  width: 200px;
  height: auto;
}

@media (max-width: 992px) {
  .search-result-list-result picture {
    width: 100%;
    margin: 0 0 1rem 0;
  }
}

.main-navigation *, .secondary-navigation * {
  list-style: none;
}

@media (max-width: 992px) {
  .main-navigation {
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    -webkit-transform: translateX(-100vw);
    transform: translateX(-100vw);
    background: #333;
    width: 80vw;
    will-change: transform;
    height: 100vh;
    z-index: 36;
    overflow: auto;
    font-family: "Inter", "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  }

  .main-navigation > li {
    padding: 3rem 3rem 2rem 3rem;
    border-bottom: 1px solid white;
  }

  .main-navigation > li > a {
    color: white;
    font-size: 1.2rem;
  }

  .main-navigation > li:first-child {
    padding-top: 6rem;
  }

  .main-navigation > li ul {
    margin-left: 20px;
  }

  .main-navigation > li ul li a {
    color: white;
  }

  .menu-active .main-navigation {
    opacity: 1;
    pointer-events: all;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@media (min-width: 992px) {
  .main-navigation {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-left: 2rem;
    font-size: 1.2rem;
  }

  .main-navigation > li {
    padding: 0.75rem 1.2rem;
    position: relative;
    white-space: nowrap;
  }

  .main-navigation > li > a {
    text-decoration: none;
    color: white;
  }

  .scrolled-down .main-navigation > li > a {
    color: #0badef;
  }

  .main-navigation > li.active > a {
    color: #8dc63e;
  }

  .main-navigation > li:hover > a {
    color: #8dc63e;
  }

  .main-navigation > li:hover > .sub-nav {
    opacity: 1;
    pointer-events: all;
    -webkit-transform: rotateX(0deg);
    transform: rotateX(0deg);
  }
}

.close-nav {
  position: fixed;
  top: 25px;
  right: 20px;
}

@media (min-width: 992px) {
  .close-nav {
    display: none;
  }
}

@media (min-width: 992px) {
  .sub-nav {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: 100%;
    left: 0;
    border-radius: 5px;
    background: white;
    -webkit-transform: rotateX(35deg);
    transform: rotateX(35deg);
    -webkit-transform-origin: top;
    transform-origin: top;
    -webkit-box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    min-width: 200px;
    z-index: 99;
    font-size: 1rem;
    font-family: "Inter", "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  }

  .sub-nav li > a {
    color: #333;
    display: block;
    padding: 3px 1.2rem;
    max-width: 20vw;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

  .sub-nav li > a:hover {
    color: white;
    background-color: #8dc63e;
  }

  .sub-nav li:first-child {
    position: relative;
  }

  .sub-nav li:first-child:before {
    position: absolute;
    top: -5px;
    content: "";
    left: 1.2rem;
    width: 10px;
    height: 10px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    background: white;
    z-index: -1;
  }

  .sub-nav li:first-child a {
    border-radius: 5px 5px 0 0;
    padding-top: 10px;
  }

  .sub-nav li:hover:first-child:before {
    background: #8dc63e;
  }

  .sub-nav li:last-child a {
    border-radius: 0 0 5px 5px;
    padding-bottom: 10px;
  }
}

.secondary-navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  font-family: "Suez One";
  font-size: 1.6rem;
}

@media (max-width: 992px) {
  .secondary-navigation {
    font-size: 1.5rem;
  }
}

@media (min-width: 992px) {
  .secondary-navigation .menu {
    display: none;
  }
}

.secondary-navigation a {
  color: white;
}

.scrolled-down .secondary-navigation a {
  color: #0badef;
}

.secondary-navigation li {
  padding: 0.75rem 0 0.75rem 0.75rem;
  white-space: nowrap;
}

.breadcrumb {
  font-family: "Suez One";
  color: #000;
  font-size: 0.8rem;
  margin: 0 0 2rem 0;
}

.breadcrumb span {
  margin: 0 5px;
}

.breadcrumb ul {
  display: table;
  margin: 0;
}

.breadcrumb ul li {
  display: inline-block;
}

.breadcrumb ul li.last {
  color: #999;
}

.breadcrumb a {
  color: #0badef;
}

footer {
  background: #434343;
  background: -webkit-gradient(linear, left top, left bottom, from(#2a2a2a), to(#434343));
  background: linear-gradient(to bottom, #2a2a2a, #434343);
  padding: 3rem 6rem 6rem 6rem;
  color: white;
}

@media (max-width: 768px) {
  footer {
    padding: 3rem;
  }
}

footer a {
  color: white;
  font-size: 0.8rem;
  text-decoration: underline;
}

.footer-header {
  text-align: center;
  border-top: 1px solid white;
  padding: 6rem 0 0 0;
}

@media (max-width: 768px) {
  .footer-header {
    padding: 3rem 0 0 0;
  }
}

.footer-header p {
  margin: 0 0 2rem 0;
}

.footer-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0 0 6rem 0;
  margin: 0 0 0 -40px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  font-family: "Inter", "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
}

.footer-column {
  margin-top: 40px;
  margin-left: 40px;
}

.footer-column li {
  display: block;
  margin-bottom: 5px;
}

.employee-detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (min-width: 992px) {
  .employee-detail {
    -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: 992px) {
  .employee-detail {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.employee-detail-content {
  margin-left: 6rem;
}

@media (min-width: 992px) {
  .employee-detail-image {
    width: 60%;
  }
}

.employee-detail-description {
  margin-top: 3rem;
}

.employeelist-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.employeelist-employee {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-bottom: 1rem;
}

@media (min-width: 992px) {
  .employeelist-employee {
    width: 25%;
  }
}

@media (max-width: 992px) {
  .employeelist-employee {
    width: 50%;
  }
}

@media (max-width: 768px) {
  .employeelist-employee {
    width: 100%;
  }
}

.employeelist-typeheader {
  margin: 2rem 0 2rem 0;
}

.employeelist-employee-content {
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  background: white;
  margin: -5rem 1rem 0 1rem;
  -webkit-box-shadow: 0 -20px 20px rgba(0, 0, 0, 0.2);
  box-shadow: 0 -20px 20px rgba(0, 0, 0, 0.2);
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  word-wrap: break-all;
  position: relative;
}

.employeelist-employee-content:before {
  content: "";
  position: absolute;
  top: 32px;
  left: 1.5rem;
  width: 20%;
  height: 3px;
  background: #8dc63e;
}

.employeelist-element {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.module {
  position: relative;
}

.module-heading {
  text-align: center;
  margin: 0 auto 5vw auto;
  font-size: 2.5rem;
}

.slide-header {
  margin: 0 0 1rem 0;
  font-size: 1.5rem;
  color: #0badef;
}

@media (max-width: 768px) {
  .feature-picker-round p,
.feature-picker-square p {
    display: none;
  }
}

.feature-picker-round figure,
.feature-picker-square figure {
  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: stretch;
  -ms-flex-pack: stretch;
  justify-content: stretch;
  text-align: center;
}

.feature-picker-round .splide__arrow--prev,
.feature-picker-round .splide__arrow--next,
.feature-picker-square .splide__arrow--prev,
.feature-picker-square .splide__arrow--next {
  position: absolute;
  z-index: 9;
  cursor: pointer;
  line-height: 1.2;
}

.splide__pagination {
  bottom: -4rem !important;
}

.splide__pagination__page.is-active {
  background: #0badef !important;
}

.feature-picker-round {
  padding: 6rem 0 6rem 0;
}

.feature-picker-round .splide__arrow--prev,
.feature-picker-round .splide__arrow--next {
  top: 10vw;
}

@media (max-width: 992px) {
  .feature-picker-round .splide__arrow--prev,
.feature-picker-round .splide__arrow--next {
    top: 8rem;
  }
}

.feature-picker-round .splide__arrow--prev {
  left: 7vw;
}

.feature-picker-round .splide__arrow--next {
  right: 7vw;
}

.feature-picker-round picture {
  text-align: center;
  margin-bottom: 1.5rem;
}

.feature-picker-round picture img {
  -webkit-transition: border 0.3s ease-in-out;
  transition: border 0.3s ease-in-out;
  border: 10px solid #f6f4f4;
  border-radius: 50%;
  margin: 0 auto;
  max-width: 275px;
  display: block;
}

.feature-picker-round figure:hover img {
  border-color: #8dc63e;
}

.feature-picker-square {
  padding: 6rem 0 6rem 0;
}

.feature-picker-square .splide__arrow--prev,
.feature-picker-square .splide__arrow--next {
  top: 10vw;
}

@media (max-width: 992px) {
  .feature-picker-square .splide__arrow--prev,
.feature-picker-square .splide__arrow--next {
    top: 12vw;
  }
}

.feature-picker-square .splide__arrow--prev {
  left: 7vw;
}

.feature-picker-square .splide__arrow--next {
  right: 7vw;
}

.feature-picker-square picture img {
  border-radius: 20px 20px 0 0;
  display: block;
}

.feature-picker-square figcaption {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  background: white;
  padding: 1.5rem 1.5rem;
  border-radius: 0 0 20px 20px;
}

.module.banner h2,
.module.banner h4 {
  background: rgba(11, 173, 239, 0.8);
  padding: 1vw;
  color: white;
}

.module.banner h2 {
  display: table;
  margin-bottom: 1vw;
  background: rgba(11, 173, 239, 0.8);
}

.module.banner h4 {
  background: rgba(141, 198, 62, 0.8);
  max-width: 70%;
}

.module.banner figcaption {
  position: absolute;
  bottom: 5vw;
  left: 5vw;
  right: 5vw;
}

.related ul {
  list-style-type: none;
  margin-left: 0;
}

.related ul i {
  color: #0badef;
  margin-right: 5px;
}

@media (max-width: 992px) {
  .related {
    padding-top: 3rem;
    border-top: 2px solid #ece7e4;
    margin-top: 3rem;
  }
}

@media (min-width: 992px) {
  .related {
    width: 30%;
    padding: 1.2rem 0 0 3rem;
    border-left: 2px dotted #ece7e4;
    margin: 0 0 0 3rem;
  }
}

.richtext-module {
  background: #f6f4f4;
}

.richtext-module .pull-up {
  position: relative;
  top: -10vw;
  margin-bottom: -10vw;
  -webkit-box-shadow: 0 -15px 40px rgba(0, 0, 0, 0.15);
  box-shadow: 0 -15px 40px rgba(0, 0, 0, 0.15);
}

.richtext-module .main-wrapper {
  background: white;
}

.columns {
  -webkit-column-count: 3;
  -moz-column-count: 3;
  column-count: 3;
  -webkit-column-gap: 3rem;
  -moz-column-gap: 3rem;
  column-gap: 3rem;
}

.richtext-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 992px) {
  .richtext-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.richtext-content h1 {
  position: relative;
}

.richtext-content h1:before {
  content: "";
  position: absolute;
  top: -5px;
  left: 0;
  height: 3px;
  width: 40px;
  background: #0badef;
}

@media (min-width: 992px) {
  .richtext-content {
    width: 70%;
  }
}

.main .module:last-child .pull-up {
  margin-bottom: 0;
}

.prices {
  position: relative;
  padding: 1rem 0 1rem 2rem;
  margin: 0 0 2rem 0;
  border-left: 10px solid #8dc63e;
}

.prices h3 {
  margin-top: 0;
}

@media (min-width: 768px) {
  .prices {
    width: 40%;
    float: right;
    margin: 0 0 1rem 2rem;
  }
}

@-webkit-keyframes splide-loading {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }

  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}

@keyframes splide-loading {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }

  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}

.splide__container {
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.splide__list {
  margin: 0 !important;
  padding: 0 !important;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  will-change: transform;
}

.splide.is-active .splide__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.splide__pagination {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 95%;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0;
}

.splide__pagination li {
  list-style-type: none;
  display: inline-block;
  line-height: 1;
  margin: 0;
}

.splide {
  visibility: hidden;
  position: relative;
  outline: none;
}

.splide__slide {
  position: relative;
  outline: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  list-style-type: none !important;
  margin: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.splide__slide img {
  vertical-align: bottom;
}

.splide__slider {
  position: relative;
}

.splide__spinner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #999;
  border-left-color: transparent;
  -webkit-animation: splide-loading 1s linear infinite;
  animation: splide-loading 1s linear infinite;
}

.splide__track {
  position: relative;
  z-index: 0;
  overflow: hidden;
}

.splide--draggable > .splide__track > .splide__list > .splide__slide {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.splide--fade > .splide__track > .splide__list {
  display: block;
}

.splide--fade > .splide__track > .splide__list > .splide__slide {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  opacity: 0;
}

.splide--fade > .splide__track > .splide__list > .splide__slide.is-active {
  position: relative;
  z-index: 1;
  opacity: 1;
}

.splide--rtl {
  direction: rtl;
}

.splide--ttb > .splide__track > .splide__list {
  display: block;
}

.splide--ttb > .splide__pagination {
  width: auto;
}

.splide__arrow {
  position: absolute;
  z-index: 1;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 2em;
  height: 2em;
  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;
  border: none;
  padding: 0;
  background: #ccc;
}

.splide__arrow svg {
  width: 1.2em;
  height: 1.2em;
}

.splide__arrow:hover {
  cursor: pointer;
  opacity: 0.9;
}

.splide__arrow:focus {
  outline: none;
}

.splide__arrow--prev {
  left: 1em;
}

.splide__arrow--prev svg {
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}

.splide__arrow--next {
  right: 1em;
}

.splide__pagination {
  position: absolute;
  z-index: 1;
  bottom: 0.5em;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  padding: 0;
}

.splide__pagination__page {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #ccc;
  border-radius: 50%;
  margin: 3px;
  padding: 0;
  -webkit-transition: -webkit-transform 0.2s linear;
  transition: -webkit-transform 0.2s linear;
  transition: transform 0.2s linear;
  transition: transform 0.2s linear, -webkit-transform 0.2s linear;
  border: none;
  opacity: 0.7;
}

.splide__pagination__page.is-active {
  -webkit-transform: scale(1.4);
  transform: scale(1.4);
  background: #fff;
}

.splide__pagination__page:hover {
  cursor: pointer;
  opacity: 0.9;
}

.splide__pagination__page:focus {
  outline: none;
}

.splide__progress__bar {
  width: 0;
  height: 3px;
  background: #ccc;
}

.splide--nav > .splide__track > .splide__list > .splide__slide {
  border: 3px solid transparent;
}

.splide--nav > .splide__track > .splide__list > .splide__slide.is-active {
  border-color: #000;
}

.splide--nav > .splide__track > .splide__list > .splide__slide:focus {
  outline: none;
}

.splide--rtl > .splide__arrows .splide__arrow--prev, .splide--rtl > .splide__track > .splide__arrows .splide__arrow--prev {
  right: 1em;
  left: auto;
}

.splide--rtl > .splide__arrows .splide__arrow--prev svg, .splide--rtl > .splide__track > .splide__arrows .splide__arrow--prev svg {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

.splide--rtl > .splide__arrows .splide__arrow--next, .splide--rtl > .splide__track > .splide__arrows .splide__arrow--next {
  left: 1em;
  right: auto;
}

.splide--rtl > .splide__arrows .splide__arrow--next svg, .splide--rtl > .splide__track > .splide__arrows .splide__arrow--next svg {
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}

.splide--ttb > .splide__arrows .splide__arrow, .splide--ttb > .splide__track > .splide__arrows .splide__arrow {
  left: 50%;
  -webkit-transform: translate(-50%);
  transform: translate(-50%);
}

.splide--ttb > .splide__arrows .splide__arrow--prev, .splide--ttb > .splide__track > .splide__arrows .splide__arrow--prev {
  top: 1em;
}

.splide--ttb > .splide__arrows .splide__arrow--prev svg, .splide--ttb > .splide__track > .splide__arrows .splide__arrow--prev svg {
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

.splide--ttb > .splide__arrows .splide__arrow--next, .splide--ttb > .splide__track > .splide__arrows .splide__arrow--next {
  top: auto;
  bottom: 1em;
}

.splide--ttb > .splide__arrows .splide__arrow--next svg, .splide--ttb > .splide__track > .splide__arrows .splide__arrow--next svg {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.splide--ttb > .splide__pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  bottom: 50%;
  left: auto;
  right: 0.5em;
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
}

/*# sourceMappingURL=bundle.css.map */