/*--------------------------------------------------
	GENERAL
---------------------------------------------------*/

:root {
  --white: #FFFFFF;
  --black: #000000;
  --blue: #035ea8;
  --darkblue: #042845;
  --darmode: #001321;
  --green: #03b5b5;
  --grey-100: #f5f5fa;
  --grey-200: #ebebf0;
  --grey-300: #cdcdd2;

  --padding-top: 7%;
  --padding-bottom: 7%;
  --padding-left: 3%;
  --padding-right: 3%;

  --common-font: "sisag";
}

@font-face {
  font-family: 'sisag';
  src: url('../css/fonts/basiersquare-regular-webfont.woff') format('woff'),
       url('../css/fonts/basiersquare-regular-webfont.woff2') format('woff2'),
       url('../css/fonts/basiersquare-regular-webfont.eot') format('eot'),
       url('../css/fonts/basiersquare-regular-webfont.ttf') format('ttf');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'sisag';
  src: url('../css/fonts/basiersquare-regularitalic-webfont.woff') format('woff'),
       url('../css/fonts/basiersquare-regularitalic-webfont.woff2') format('woff2'),
       url('../css/fonts/basiersquare-regularitalic-webfont.eot') format('eot'),
       url('../css/fonts/basiersquare-regularitalic-webfont.ttf') format('ttf');
  font-weight: normal;
  font-style: italic;
}

@font-face {
  font-family: 'sisag';
  src: url('../css/fonts/basiersquare-semibold-webfont.woff') format('woff'),
       url('../css/fonts/basiersquare-semibold-webfont.woff2') format('woff2'),
       url('../css/fonts/basiersquare-semibold-webfont.eot') format('eot'),
       url('../css/fonts/basiersquare-semibold-webfont.ttf') format('ttf');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'sisag';
  src: url('../css/fonts/basiersquare-semibolditalic-webfont.woff') format('woff'),
       url('../css/fonts/basiersquare-semibolditalic-webfont.woff2') format('woff2'),
       url('../css/fonts/basiersquare-semibolditalic-webfont.eot') format('eot'),
       url('../css/fonts/basiersquare-semibolditalic-webfont.ttf') format('ttf');
  font-weight: 700;
  font-style: italic;
}

@font-face {
  font-family: 'sisag';
  src: url('../css/fonts/basiersquare-medium-webfont.woff') format('woff'),
       url('../css/fonts/basiersquare-medium-webfont.woff2') format('woff2'),
       url('../css/fonts/basiersquare-medium-webfont.eot') format('eot'),
       url('../css/fonts/basiersquare-medium-webfont.ttf') format('ttf');
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: 'sisag';
  src: url('../css/fonts/basiersquare-mediumitalic-webfont.woff') format('woff'),
       url('../css/fonts/basiersquare-mediumitalic-webfont.woff2') format('woff2'),
       url('../css/fonts/basiersquare-mediumitalic-webfont.eot') format('eot'),
       url('../css/fonts/basiersquare-mediumitalic-webfont.ttf') format('ttf');
  font-weight: 600;
  font-style: italic;
}

@font-face {
  font-family: 'sisag';
  src: url('../css/fonts/basiersquare-bold-webfont.woff') format('woff'),
       url('../css/fonts/basiersquare-bold-webfont.woff2') format('woff2'),
       url('../css/fonts/basiersquare-bold-webfont.eot') format('eot'),
       url('../css/fonts/basiersquare-bold-webfont.ttf') format('ttf');
  font-weight: 800;
  font-style: normal;
}

@font-face {
  font-family: 'sisag';
  src: url('../css/fonts/basiersquare-bolditalic-webfont.woff') format('woff'),
       url('../css/fonts/basiersquare-bolditalic-webfont.woff2') format('woff2'),
       url('../css/fonts/basiersquare-bolditalic-webfont.eot') format('eot'),
       url('../css/fonts/basiersquare-bolditalic-webfont.ttf') format('ttf');
  font-weight: 800;
  font-style: italic;
}

  



* {
  position: relative;
  box-sizing: border-box;
}

/* Hide Scrollbar but allow to scroll */

html {
  overflow:   scroll;
}
::-webkit-scrollbar {
    width: 0px;
    background: transparent; /* make scrollbar transparent */
}

/* End Hide */


html {
  scroll-behavior: smooth;   
}

body {
  overflow-x: hidden;
  margin: 0;
  font-size: min(max(0.9rem, 1.1vw), 1.1rem);
	line-height: 1.5;
	font-family: var(--common-font);
	font-weight: normal;
	-moz-hyphens: auto;
  -o-hyphens: auto;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
  color: var(--darkblue);
  -webkit-font-smoothing: antialiased;
  background: var(--white);
}

.wrapper {
  display: block;
  float: left;
  width: 100%;
  background: var(--white);
  z-index: 2;
}

header {
  position: absolute;
  display: block;
  float: left;
  top: 1px;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 10;
}

.header_fadein {
  position: fixed;
  right: 0px;
  top: 0;
  left: 0px;
  z-index: 13;
  background: var(--white);
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.86, 0, 0.07, 1);
  -moz-transition: -moz-transform 0.5s cubic-bezier(0.86, 0, 0.07, 1);
  transition: transform 0.5s cubic-bezier(0.86, 0, 0.07, 1);
  -webkit-box-shadow: 0px 5px 14px 0px rgb(0 0 0 / 5%);
  -moz-box-shadow: 0px 5px 14px 0px rgba(0,0,0,0.05);
  box-shadow: 0px 5px 14px 0px rgb(0 0 0 / 5%);
}

.header_content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  float: left;
  width: 86%;
  margin-left: 7%;
  margin-right: 7%;
}

main {
  position: relative;
  display: inline;
  width: 100%;
  height: 100%;
  float: left;
  background: var(--white);
}

footer {
  position: relative;
  display: inline;
  float: left;
  width: 100%;
  background-color: var(--white);
  color: var(--darkblue);
}

#scrollcontainer {
  position: relative;
  display: inline;
  width: 100%;
  height: 100%;
  float: left;
  background: var(--white);
}

.copyright {
  position: relative;
  display: block;
  float: left;
  width: 100%;
  z-index: 3;
}

.copyright a, .copyright p {
  font-size: 0.8rem;
}

img, iframe, embed {
  width: 100%;
  max-width: 100%;
}

.pagination a {
  padding: 15px 25px;
  background: var(--white);
  color: var(--black);
  font-family: var(--semi-font);
  font-size: 0.8rem;
  border: 1px solid var(--grey-300);
}

.pagination span.current {
  padding: 16px 26px;
  background: var(--darkblue);
  color: var(--white);
  font-family: var(--semi-font);
  font-size: 0.8rem;
}


/*--------------------------------------------------
	HEADER UND NAVIGATION
---------------------------------------------------*/

.heads {
  width: calc(100% - 6em);
  height: clamp(10em, 50vh, 50vh);
  margin-bottom: clamp(2em, 3vw, 3em);
  float: left;
  background-color: var(--darmode);
}

.heads h2 {
  color: var(--white);
}

/* Falls Schrift weiss sein soll DISPLAY BLOCK */
.heads-title-area {
  position: absolute;
  z-index: 3;
  top: 70%;
  transform: translateY(-50%);
  left: -13em;
  width: 16em;
  white-space: nowrap;
  display: none;
}


.heads-image-area {
  position: relative;
  display: block;
  float: left;
  width: 100%;
  height: 100%;
  /*overflow: hidden;*/
  background: var(--darkblue);
}

.heads-image-area h2 {
  position: absolute;
  top: 70%;
  transform: translateY(-50%);
  left: -1.144em;
  margin: 0;
  z-index: 3;
  color: var(--white);
  white-space: nowrap;
}

a.logo {
  position: relative;
  display: inline-block;
  top: 2em;
  left: 3em;
  padding: 0;
  width: clamp(3em, 6vw, 6em);
  transition: none;
}

.header_fadein a.logo {
  top: 1.1em;
  left: 3em;
  /*
  top: 50%;
  transform: translate(0, -50%);
  width: clamp(1em, 3vw, 3em);
  */
}

a.logo img {
  width: 100%;
}

.nav {
  justify-content: space-between;
  display: flex;
}

.nav__link {
  margin-left: 2em;
  font-size: min(max(1.8rem, 2vw), 2rem);
  text-decoration: none;
  font-weight: 500;
  font-family: var(--title-font);
  color: var(--white);
  transition: border-color .12s ease;
  float: none;
  display: block;
  text-align: left;
  transition: all ease 0.3s;
}

nav.nav .nav__link {
  font-size: min(max(3rem, 4vw), 4rem);
}

.nav__link.nav__link--active {
  border-bottom-color: var(--gold);
}

#navigationWrap {
  display: block;
  width: 0%;
  min-height: 100%;
  height: 100%;
  opacity: 1;
  position: fixed;
  top: 0;
  right: 6em;
  bottom: 0;
  padding: 0;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  z-index: 1005;
  background-color: var(--white);
  transition: width .3s cubic-bezier(.86,0,.07,0.5);
}

#navigationWrap a {
  text-decoration: none;
}


#navigationWrap_bg {
  position: fixed;
  top: 0;
  right: 6em;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 1004;
  background-color: rgba(0, 0, 0, 0.8);
  display: none;
  opacity: 0;
  transition: opacity .3s cubic-bezier(.86,0,.07,5);
}

.menu-container {
  position: relative;
  top: 50%;
  left: 3em;
  transform: translate(0, -50%);
  height: 100%;
  text-align: center;
  display: block;
}

.menu-container nav {
  position: relative;
  display: block;
  top: 50%;
  transform: translate(0, -50%);
  float: left;
}

nav ul {
  list-style-type: none;
  text-align: left;
  width: 23em;
}

nav ul > li.mainnav {
  position: relative;
  display: block;
  float: left;
  width: 100%;
  margin: 0.5em 0;
  font-size: 1.2rem;
}

nav ul > li.mainnav a.active {
  font-weight: 700;
  background: #035EA8;
  background: -webkit-linear-gradient(to right, #035EA8 0%, #00b4db 40%);
  background: -moz-linear-gradient(to right, #035EA8 0%, #00b4db 40%);
  background: linear-gradient(to right, #035EA8 0%, #00b4db 40%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

nav ul > li.subnav {
  position: static;
  float: left;
  font-size: min(max(1.5rem, 2vw), 2rem);
  width: 100%;
  margin: 0.3em 0;
  cursor: pointer;
}

nav ul > li.subnav.active span {
  background: #035EA8;
  background: -webkit-linear-gradient(to right, #035EA8 0%, #00b4db 40%);
  background: -moz-linear-gradient(to right, #035EA8 0%, #00b4db 40%);
  background: linear-gradient(to right, #035EA8 0%, #00b4db 40%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

nav ul > li.subnav span {
  position: relative;
  width: 100%;
  display: block;
  float: left;
}

nav ul > li.subnav span:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  background-image: url(../images/arrow_right.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: clamp(0.5em, 1vw, 1.5em);
  height: clamp(0.3em, 0.8vw, 1.3em);
  z-index: 3;
  transform: translate(0, -50%);
  opacity: 0.3;
}

nav ul > li.subnav.open span:after {
  opacity: 1;
}

li.subnav ul li {
  font-size: 1rem;
}

li.subnav.open {
  font-weight: 700;
}

nav ul li ul {
  position: absolute;
  width: 100%;
  display: none;
  grid-template-columns: 1fr 1fr;
  grid-gap: 0.5em;
  width: calc(65vw - 14em);
  left: 14em;
  top: 0;
}

nav ul li ul li {
  width: 100%;
  height: clamp(10em, 15vw, 15em);
  display: block;
  float: left;
}

nav ul li ul li a {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  float: left;
  align-items: center;
  justify-content: center;
}

nav ul li ul li a.active .overlay_darkblue {
  opacity: 0.7;
}

nav ul > li.subnav .product_title span {
  width: auto;
}

nav ul > li.subnav.open .product_title span:after {
  display: none;
}

nav .line {
  position: relative;
  display: block;
  float: left;
  width: 100%;
  height: 1px;
  background: var(--grey-200);
  margin: 1em 0;
}

.sub_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.sub_link {
  position: absolute;
  z-index: 3;
  left: 2em;
  bottom: 3em;
  color: var(--white);
  font-size: 1.1rem;
}

.sub_link:after {
  content: "";
  position: absolute;
  bottom: clamp(-1.7em, -1.2vw, -0.7em);
  left: 0;
  background-image: url(../images/arrow_right_white.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: clamp(0.5em, 1vw, 1.5em);
  height: clamp(0.3em, 0.8vw, 1.3em);
  z-index: 3;
}


nav .heading {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 5px;
  margin: 0 0 1em 0.3em;
  font-weight: 800;
  background: #035EA8;
  background: -webkit-linear-gradient(to right, #035EA8 0%, #00b4db 40%);
  background: -moz-linear-gradient(to right, #035EA8 0%, #00b4db 40%);
  background: linear-gradient(to right, #035EA8 0%, #00b4db 40%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sticky {
  position: absolute;
  width: 60px;
  height: auto;
  z-index: 1005;
  top: 3em;
  right: 1.7em;
  transition: all 1s ease 0s;
  display: block;
  z-index: 1006;
}

.header_fadein .sticky {
  top: 50%;
  transform: translateY(-50%);
}

.hamburger {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  right: 0;
  transition: all ease .5s;
}

.hamburger .line1 {
  width: 2.5em;
  height: 4px;
  background-color: var(--darkblue);
  display: block;
  margin: 6px auto;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.header_fadein .hamburger .line1 {
  background-color: var(--darkblue);
}

.hamburger .line2 {
  width: 2.5em;
  height: 4px;
  background-color: var(--darkblue);
  display: block;
  margin: 6px auto;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.hamburger:hover, .hamburger-home:hover {
cursor: pointer;
}

.hamburger.is-active .line1:nth-child(1) {
  background-color: var(--darkblue);
  -webkit-transform: translateY(5px) rotate(45deg);
  -ms-transform: translateY(5px) rotate(45deg);
  -o-transform: translateY(5px) rotate(45deg);
  transform: translateY(5px) rotate(45deg);
  width: 2.5em;
  height: 4px;
  -webkit-animation: none;
  animation: none;
}

.hamburger.is-active .line1:nth-child(2) {
  background-color: var(--darkblue);
  -webkit-transform: translateY(-5px) rotate(-45deg);
  -ms-transform: translateY(-5px) rotate(-45deg);
  -o-transform: translateY(-5px) rotate(-45deg);
  transform: translateY(-5px) rotate(-45deg);
  width: 2.5em;
  height: 4px;
  -webkit-animation: none;
  animation: none;
}

.hamburger.is-active .line2:nth-child(2), #hamburger-fadein.is-active .line2:nth-child(2) {
  opacity: 0;
}

.menu-text {
  color: var(--darkblue);
}

.hamburger.is-active .menu-text {
  color: var(--white);
}







/*------------------------------------------------------------------------------------------------------------------------------------------------------
	COMPONENTS
-------------------------------------------------------------------------------------------------------------------------------------------------------*/




/*--------------------------------------------------
	SWIPER
---------------------------------------------------*/

/**
 * Swiper 5.3.1
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * http://swiperjs.com
 *
 * Copyright 2014-2020 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: February 8, 2020
 */

 @font-face {
  font-family: 'swiper-icons';
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA") format("woff");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color: #007aff;
}
.swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  width: 100%;
  height: 100%;
  /* Fix of Webkit flickering */
  z-index: 1;
}
.swiper-container-vertical > .swiper-wrapper {
  flex-direction: column;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}
.swiper-container-android .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}
.swiper-container-multirow > .swiper-wrapper {
  flex-wrap: wrap;
}
.swiper-container-multirow-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column;
}
.swiper-container-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}
.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
}
.swiper-slide-invisible-blank {
  visibility: hidden;
}
/* Auto Height */
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto;
}
.swiper-container-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}
/* 3D Effects */
.swiper-container-3d {
  perspective: 1200px;
}
.swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-container-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
/* CSS Mode */
.swiper-container-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  /* For Firefox */
  -ms-overflow-style: none;
  /* For Internet Explorer and Edge */
}
.swiper-container-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}
.swiper-container-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}
.swiper-container-horizontal.swiper-container-css-mode > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}
.swiper-container-vertical.swiper-container-css-mode > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}
:root {
  --swiper-navigation-size: 44px;
  /*
  --swiper-navigation-color: var(--swiper-theme-color);
  */
}
.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(-1 * var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}
.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}
.swiper-button-prev:after,
.swiper-button-next:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  text-transform: none;
  font-variant: initial;
}
.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  left: 10px;
  right: auto;
}
.swiper-button-prev:after,
.swiper-container-rtl .swiper-button-next:after {
  content: 'prev';
}
.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  right: 10px;
  left: auto;
}
.swiper-button-next:after,
.swiper-container-rtl .swiper-button-prev:after {
  content: 'next';
}
.swiper-button-prev.swiper-button-white,
.swiper-button-next.swiper-button-white {
  --swiper-navigation-color: #ffffff;
}
.swiper-button-prev.swiper-button-black,
.swiper-button-next.swiper-button-black {
  --swiper-navigation-color: #000000;
}
.swiper-button-lock {
  display: none;
}
.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}
.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}
/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 10px;
  left: 0;
  width: 100%;
}
/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}
.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #000;
  opacity: 0.2;
}
button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}
.swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}
.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}
.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 6px 0;
  display: block;
}
.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}
.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 200ms transform, 200ms top;
}
.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px;
}
.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}
.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms left;
}
.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms right;
}
/* Progress */
.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}
.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}
.swiper-container-horizontal > .swiper-pagination-progressbar,
.swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}
.swiper-container-vertical > .swiper-pagination-progressbar,
.swiper-container-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}
.swiper-pagination-white {
  --swiper-pagination-color: #ffffff;
}
.swiper-pagination-black {
  --swiper-pagination-color: #000000;
}
.swiper-pagination-lock {
  display: none;
}
/* Scrollbar */
.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  background: rgba(0, 0, 0, 0.1);
}
.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}
.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}
.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}
.swiper-scrollbar-cursor-drag {
  cursor: move;
}
.swiper-scrollbar-lock {
  display: none;
}
.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.swiper-slide-zoomed {
  cursor: move;
}
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  animation: swiper-preloader-spin 1s infinite linear;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}
.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}
.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}
@keyframes swiper-preloader-spin {
  100% {
    transform: rotate(360deg);
  }
}
/* a11y */
.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}
.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}
.swiper-container-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}
.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-cube {
  overflow: visible;
}
.swiper-container-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}
.swiper-container-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-cube.swiper-container-rtl .swiper-slide {
  transform-origin: 100% 0;
}
.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-prev,
.swiper-container-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}
.swiper-container-cube .swiper-slide-shadow-top,
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
  -webkit-filter: blur(50px);
  filter: blur(50px);
  z-index: 0;
}
.swiper-container-flip {
  overflow: visible;
}
.swiper-container-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  z-index: 1;
}
.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-flip .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-flip .swiper-slide-shadow-top,
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}





/*--------------------------------------------------
	PARALLAX
---------------------------------------------------*/


.section-parallax {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: clamp(30em, 50vw, 50em);
  overflow: hidden;
}

.parallax-content {
  background-size: cover;
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 120%;
}

#parallax p {
  position: absolute;
  color: #ffffff;
  font-size: 3vw;
  line-height: 1.2;
  top: 50%;
  transform: translate(0, -50%);
}


.parallax {
  position: relative;
  display: flex;
  float: left;
  width: 100%;
  justify-content: center;
  align-items: center;
}

.parallax_bg {
  position: relative;
  display: block;
  float: left;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  overflow: hidden;
}

.overlay_multiply {
  position: absolute;
  display: block;
  float: left;
  width: 100%;
  height: 100%;
  background-color: var(--brightblue);
  z-index: 3;
  mix-blend-mode: multiply;
}

.overlay_light {
  position: absolute;
  display: block;
  float: left;
  width: 100%;
  height: 100%;
  background-color: var(--brightblue);
  z-index: 2;
  mix-blend-mode: hard-light;
}

.parallax_slogan_container {
  position: absolute;
  width: 45%;
  margin-right: 25%;
  margin-left: 30%;
}

.parallax_slogan {
  position: relative;
}

.parallax_slogan:before {
  content: "«";
  position: absolute;
  left: -0.9em;
  top: -0.4em;
  font-size: min(max(10rem, 15vw), 15rem);
  color: var(--white);
  z-index: 3;
  line-height: 1;
  font-weight: 600;
}

.parallax_slogan p {
  position: relative;
  z-index: 4;
  color: var(--white);
  font-weight: 600;
  font-size: min(max(1.4rem, 2vw), 2rem);
}

.parallax_person {
  position: relative;
  display: block;
  float: left;
  color: var(--white);
  z-index: 3;
  font-weight: 800;
  margin-top: 1em;
}

.overlay_darkblue {
  position: absolute;
  display: block;
  float: left;
  width: 100%;
  height: 100%;
  background-color: var(--darkblue);
  z-index: 2;
  opacity: 0.5;
}




/*--------------------------------------------------
	AKKORDEON
---------------------------------------------------*/

.accordion {
  width: 100%;
  float: left;
}
.accordion__item {
  width: 100%;
  float: left;
}
.accordion__title {
  position: relative;
  background: transparent;
  padding: 1em 0 1em;
  font-size: min(max(1.2rem, 2vw), 1.5rem);
  color: var(--brightblue);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  border-bottom: solid 1px var(--grey-200);
}
.accordion__title:after {
  position: absolute;
  content: " ";
  right: 15px;
  width: 35px;
  height: 24px;
  background-image: url(../images/arrow_right.svg);
  background-size: contain;
  background-repeat: no-repeat;
  top: 50%;
  transform: translate(0, -50%);
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.is-open .accordion__title:after {
  transform: translate(0, -50%) rotate(90deg);
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.accordion__body {
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease-in-out;
}
.accordion__item.is-open {
  background-color: var(--white);
}
.accordion__content {
  padding: 15px;
}
.accordion__title p {
  white-space: nowrap;
}





/*--------------------------------------------------
	TABS
---------------------------------------------------*/


.tab-control {
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 6fr) 4fr;
}

ul.tabs {
  position: relative;
  margin: 0px;
  padding: 0px;
  list-style: none;
  z-index: 3;
  width: 100%;
  grid-row: 1;
  grid-column: 2;
}

ul.tabs li {
  background: var(--darkblue);
  color: var(--white);
  display: flex;
  padding: 4em 6em;
  cursor: pointer;
  margin: 0;
  font-size: 1rem;
  width: 100%;
  border-bottom: solid 1px #064c84;
  font-weight: 700;
  align-items: center;
  transition: all ease 0.3s;
}

ul.tabs li:hover {
  background: var(--blue);
}

ul.tabs li.current{
  color: var(--white);
  background: #035EA8;
  background: -webkit-linear-gradient(to right, #035EA8 0%, #00b4db 60%);
  background: -moz-linear-gradient(to right, #035EA8 0%, #00b4db 60%);
  background: linear-gradient(to right, #035EA8 0%, #00b4db 60%);
}

ul.tabs li.current:after {
  content: "";
  position: absolute;
  left: -1.2em;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 2em 1.2em 2em 0;
  border-color: transparent #025da7 transparent transparent;
}

.tab-content {
  display: none;
}

.tab-content.current {
  display: block;
  border: none;
  width: 100%;
  grid-row: 1;
  grid-column: 1;
}

.tabs img.icon {
  height: auto;
  filter: brightness(0) invert(1);
  margin-right: 2em;
  width: auto;
  max-width: 2.5em;
  max-height: 2em;
}

.tab-content .swiper-button-prev:after, .tab-content .swiper-button-next:after {
  filter: brightness(0) invert(1);
  width: clamp(20px, 3.5vw, 35px);
  height: clamp(10px, 2.4vw, 20px);
}

.tab-content .swiper-button-next {
  margin-left: clamp(2em, 3.5vw, 3.5em);
}

.tab-content .swiper-button-prev, .tab-content .swiper-button-next {
  left: 2em;
  top: auto;
  bottom: 1em;
}







/*------------------------------------------------------------------------------------------------------------------------------------------------------
	END COMPONENTS
-------------------------------------------------------------------------------------------------------------------------------------------------------*/










/*--------------------------------------------------
	SLIDER SISAG
---------------------------------------------------*/


.slider {
  width: calc(100% - 6em);
  height: calc(100vh - 2em);
  float: right;
  margin-right: 6em;
  overflow: hidden;
  background-color: var(--darmode);
}

a.slide {
  width: 22%;
  height: 100%;
  position: absolute;
  top: 0;
  display: block;
  float: left;
  cursor: pointer;
  z-index: 6;
  transition: all ease-in 0.5s;
  -webkit-transition-delay: 0.05s;
  -moz-transition-delay: 0.05s;
  transition-delay: 0.05s;
}

a.slide.active {
  width: 34%;
}

a.slide.inactive {
  width: 22%;
}

a.slide.aEl:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background-color: var(--green);
  opacity: 0.4;
  mix-blend-mode: multiply;
}

.slide_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: all 0.5s cubic-bezier(.17,.67,.91,.57);
}

.slide_bg.active {
  opacity: 1;
}

.slide_bg_img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1);
  transition: all 20s cubic-bezier(.17,.67,.91,.57);
}

.slide_bg.active .slide_bg_img {
  transform: scale(1.15);
}

.slide_text {
  position: absolute;
  bottom: 7em;
  left: 50%;
  float: left;
  transform: translate(-50%, 0);
  z-index: 4;
  text-align: center;
  min-height: 110px;
}

.slide_description {
  color: var(--white);
  font-size: 0.9rem;
  width: clamp(200px, 14vw, 300px);
  opacity: 0;
  transform: translateY(40px);
  transition: transform 1.5s ease 0s, opacity 1.2s ease 0s;
}

.slide.active .slide_description {
  opacity: 1;
  transform: translateY(0);
}

.slide h3 {
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 800;
  white-space: nowrap;
  letter-spacing: 0.2em;
  transition: all 0.2s ease;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: var(--white);
  background: none;
}

.slide.active h3 {
  color: var(--green);
  -webkit-text-fill-color: var(--green);
  font-size: min(max(1rem, 1.2vw), 1.2rem);
}

.slide_text_static {
  position: absolute;
  z-index: 7;
  top: 50%;
  left: clamp(4em, 15vw, 15em);
  transform: translate(0, -50%);
  width: 60%;
  pointer-events: none;
}

.slide_text_static span {
  color: var(--green);
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.2em;
  line-height: 2;
  white-space: nowrap;
}

.slide_text_static .claim {
  color: var(--white);
  text-transform: uppercase;
  font-weight: 800;
  font-size: min(max(1.8rem, 3vw), 3rem);
  line-height: 1.2;
}

.slide_overlay_green_softlight {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  background-color: #056262;
  opacity: 0;
  mix-blend-mode: soft-light;
  z-index: 3;
  transition: width ease-in 0.5s;
  -webkit-transition-delay: 0.05s;
  -moz-transition-delay: 0.05s;
  transition-delay: 0.05s;
}

.slide_overlay_green_hue {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  background-color: #03b5b5;
  opacity: 0.3;
  mix-blend-mode: hue;
  z-index: 3;
  transition: width ease-in 0.5s;
  -webkit-transition-delay: 0.05s;
  -moz-transition-delay: 0.05s;
  transition-delay: 0.05s;
}

.slide_overlay_multiply {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--blue);
  opacity: 0.8;
  mix-blend-mode: soft-light;
  z-index: 2;
}

.slide_overlay_green_softlight.slide_1 {
  right: 0;
  width: 78%;
}

.slide_overlay_green_softlight.slide_2_1 {
  left: 0%;
  width: 34%;
}

.slide_overlay_green_softlight.slide_2_2 {
  left: 56%;
  width: 44%;
}

.slide_overlay_green_softlight.slide_2_3 {
  left: 0%;
  width: 22%;
}

.slide_overlay_green_softlight.slide_2_4 {
  right: 0%;
  width: 56%;
}

.slide_overlay_green_softlight.slide_3_1 {
  left: 0%;
  width: 56%;
}

.slide_overlay_green_softlight.slide_3_2 {
  right: 0%;
  width: 22%;
}

.slide_overlay_green_softlight.slide_3_3 {
  right: 0%;
  width: 34%;
}

.slide_overlay_green_softlight.slide_3_4 {
  left: 0%;
  width: 44%;
}

.slide_overlay_green_softlight.slide_4 {
  left: 0;
  width: 78%;
}


a.slide.active .slide_overlay_green_softlight {
  opacity: 0;
}

.slide_overlay_hue {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.75);
  mix-blend-mode: hue;
  z-index: 1;
}

.slide_overlay_multiply {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--blue);
  opacity: 0.8;
  mix-blend-mode: multiply;
  z-index: 2;
}

.slide_overlay_multiply_green {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--green);
  opacity: 0.8;
  mix-blend-mode: multiply;
  z-index: 2;
}


.slide_overlay_gradient_top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 15%;
  z-index: 4;
  opacity: 0.8;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#042845+0,042845+100&1+0,0+100 */
  background: -moz-linear-gradient(top,  rgba(4,40,69,1) 0%, rgba(4,40,69,0) 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(top,  rgba(4,40,69,1) 0%,rgba(4,40,69,0) 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom,  rgba(4,40,69,1) 0%,rgba(4,40,69,0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#042845', endColorstr='#00042845',GradientType=0 ); /* IE6-9 */
}

.slide_overlay_gradient_bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 20%;
  z-index: 4;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#042845+0,042845+100&0+0,1+100 */
  background: -moz-linear-gradient(top,  rgba(4,40,69,0) 0%, rgba(4,40,69,1) 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(top,  rgba(4,40,69,0) 0%,rgba(4,40,69,1) 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom,  rgba(4,40,69,0) 0%,rgba(4,40,69,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00042845', endColorstr='#042845',GradientType=0 ); /* IE6-9 */
}

.slide_overlay_gradient_right {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 30%;
  height: 100%;
  z-index: 4;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#042845+0,042845+100&0+0,1+100 */
  background: -moz-linear-gradient(left,  rgba(4,40,69,0) 0%, rgba(4,40,69,1) 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(left,  rgba(4,40,69,0) 0%,rgba(4,40,69,1) 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right,  rgba(4,40,69,0) 0%,rgba(4,40,69,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00042845', endColorstr='#042845',GradientType=1 ); /* IE6-9 */
}



.swiper-button-prev:after,
.swiper-button-next:after {
  /* Bild Pfeil */
  content: '' !important;
    background-image: url(../images/arrow_right.svg);
    background-size: contain;
    background-repeat: no-repeat;
    transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    width: clamp(30px, 3.5vw, 45px);
    height: clamp(20px, 2.4vw, 30px);
    top: 0;
    left: 0;
    position: absolute;
}

.swiper-button-prev:after,
.swiper-container-rtl .swiper-button-next:after {
  content: 'prev';
  transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
}

.swiper-button-prev, .swiper-button-next {
  left: 2em;
}

.swiper-button-next {
  margin-left: clamp(2em, 4vw, 4em);
}

.swiper-pagination-fraction, .swiper-pagination-custom, .swiper-container-horizontal > .swiper-pagination-bullets {
  top: -2em;
  left: 5px;
  width: 100%;
}

.swiper-pagination {
  font-size: 1.4rem;
  font-family: var(--semi-font);
  line-height: 1;
  width: auto;
  height: auto;
}

.swiper-pagination .slices {
  float: right;
  margin-top: 0;
}

.swiper-pagination .totals {
  position: absolute;
  top: 2px;
  left: 32px;
  font-size: 0.8rem;
  color: var(--brightblue);
}

.slogan {
  color: var(--white);
  position: absolute;
  left: 6em;
  bottom: 9em;
  z-index: 3;
  font-family: var(--semi-font);
  font-size: min(max(1.4rem, 1.8vw), 1.8rem);
  width: clamp(17em, 17vw, 10em);
  hyphens: none;
}

img.mouse {
  position: absolute;
  bottom: 3em;
  left: 3em;
  width: 1em;
  z-index: 2;
}

.language {
  position: absolute;
  left: 20em;
  bottom: 4em;
  z-index: 2;
}

.language a {
  position: relative;
  font-family: var(--semi-font);
  font-size: 1rem;
  color: var(--darkblue);
  white-space: nowrap;
  margin: 0 0px 0 4px;
  padding: 0 8px 0 4px;
  float: left;
  line-height: 1;
}

.language a:nth-child(1):after, .language a:nth-child(2):after {
  position: absolute;
  content: "";
  right: -1px;
  top: 60%;
  width: 1px;
  height: 90%;
  background-color: var(--darkblue);
  transform: translateY(-50%);
}

.menu-container .language {
  left: 20em;
  bottom: auto;
  top: 2em;
}

.menuadresse {
  position: absolute;
  bottom: 4em;
  left: 4em;
  text-align: left;
}

.menuadresse, .menuadresse p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--white);
}

.menuadresse a.email {
  color: var(--white);
}





/*--------------------------------------------------
	GALERIE SLIDER
---------------------------------------------------*/

.galerie_slider {
  position: relative;
  display: block;
  float: left;
  width: 100%;
  height: 100%;
}

.slider-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}






/*--------------------------------------------------
	FOOTER
---------------------------------------------------*/

.footer_container {
  width: 100%;
  padding: 0 10%;
}

.footer .grid {
  z-index: 3;
}

footer p {
  color: var(--darkblue);
}

footer a {
  color: var(--blue);
}

img.logo-footer {
  position: relative;
  display: inline-block;
  padding: 0;
  width: clamp(8em, 15vw, 15em);
  margin-left: 10%;
}

.footer_line {
  position: relative;
  display: block;
  float: left;
  width: 100%;
  height: 1px;
  background-color: var(--grey-200);
}

.social_icons img {
  height: 2em;
  padding-right: 2em;
  width: auto;
}




/*--------------------------------------------------
	TYPOGRAFIE
---------------------------------------------------*/

p {
	margin: 8px 0;
  font-size: min(max(0.9rem, 1.1vw), 1.1rem);
	line-height: 1.5;
	-moz-hyphens: auto;
  -o-hyphens: auto;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
  -webkit-text-size-adjust: 100%; /* Für Text, damit er auf mobilen Geräten nicht grösser erscheint */
}

a {
  color: var(--darkblue);
  cursor: pointer;
  font-weight: normal;
  text-decoration: none;
  transition: all ease .3s;
}

a:hover {
  text-decoration: none;
  color: var(--blue);
  font-weight: 700;
}

a[href^="tel"] {
color: inherit; /* Inherit text color of parent element. */
text-decoration: none; /* Remove underline. */
/* Additional css `propery: value;` pairs here */
}

li {
  -webkit-text-size-adjust: 100%; /* Für Text, damit er auf mobilen Geräten nicht grösser erscheint */
}

strong {
  font-weight: 700;
}

h1 {
  color: var(--black);
  font-size: min(max(1.5rem, 2.5vw), 3rem);
  font-weight: 800;
  letter-spacing: 1px;
  line-height: 1.5;
  -moz-hyphens: none;
  -o-hyphens: none;
  -webkit-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
}

h2 {
  color: var(--white);
  text-transform: uppercase;
  font-weight: 800;
  font-size: min(max(1.8rem, 3vw), 3rem);
  line-height: 1.2;
  margin-block-start: 0;
  margin-block-end: 0;
}

h3 {
  color: var(--blue);
  font-size: min(max(2rem, 2vw), 2rem);
  font-weight: normal;
  letter-spacing: 1px;
  line-height: 1.2;
  text-transform: normal;
  margin-block-start: 0;
  margin-block-end: 0;
  background: #035EA8;
  background: -webkit-linear-gradient(to right, #035EA8 0%, #00b4db 40%);
  background: -moz-linear-gradient(to right, #035EA8 0%, #00b4db 40%);
  background: linear-gradient(to right, #035EA8 0%, #00b4db 40%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


h4 {
  color: var(--darkblue);
  font-weight: 800;
  background: #035EA8;
  background: -webkit-linear-gradient(to right, #035EA8 0%, #00b4db 40%);
  background: -moz-linear-gradient(to right, #035EA8 0%, #00b4db 40%);
  background: linear-gradient(to right, #035EA8 0%, #00b4db 40%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-block-start: 0;
  margin-block-end: 0;
}


h5 {
  color: var(--green);
  font-size: min(max(1.1rem, 1.5vw), 1.5rem);
  font-weight: normal;
  letter-spacing: 0;
  line-height: 1.2;
  margin-block-start: 0;
  margin-block-end: 0;
}

a.button {
  position: relative;
  font-family: var(--common-font);
  color: var(--brightblue);
  font-size: 1rem;
  font-weight: 700;
  padding: 1em 2em;
  border: solid 1px var(--grey-300);
  letter-spacing: 0;
  line-height: 1.5;
  transition: all ease 0.3s;
}

a.button:hover {
  color: var(--white);
  background-color: var(--green);
  border: solid 1px var(--green);
}

a.button_choosing {
  position: relative;
  padding: 5px 0;
  border-bottom: solid 1px var(--grey-300);
  width: 100%;
  display: block;
}

a.button_choosing:after {
  position: absolute;
  content: "";
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background-image: url(../images/arrow_right.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 20px;
  height: 15px;
}

.button_go {
  position: relative;
  display: block;
  padding: 7px 0;
  margin: 7px 0;
  border-bottom: solid 1px var(--grey-200);
}

.button_go:after {
  position: absolute;
  content: "";
  right: 0;
  top: 7px;
  background-image: url(../images/arrow_right.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 20px;
  height: 15px;
}



/*--------------------------------------------------
	ANIMATIONEN
---------------------------------------------------*/

.transition-fade {
  transition: 0.4s;
  opacity: 1;
  height: 100%;
}

html.is-animating .transition-fade {
  opacity: 0;
}

.has-animation {
    opacity: 0.01;
    -webkit-transform: translateY(80px);
    transform: translateY(80px);
    transform-origin: 50% 0;
    will-change: transform;
}

.has-animation-left {
    opacity: 0.01;
    -webkit-transform: translateX(-80px);
    transform: translateX(-80px);
    transform-origin: 50% 0;
    will-change: transform;
}

.has-img-animation {
    opacity: 1;
    -webkit-transform: scaleY(0.8);
    transform: scaleY(0.8);
    transform-origin: bottom;
    will-change: transform;
    transition: 1s cubic-bezier(.075,.82,.165,1);
}

.has-animation-stagger {
    opacity: 0;
    -webkit-transform: translateX(300px);
    transform: translateX(300px);
}

.has-mask span > span {
    display: inline-block;
    margin: 0!important;
    line-height: 40px;
    height: 1.5;
    opacity: 0;
    -webkit-transform: translateY(60px);
    transform: translateY(60px);
}

p.has-mask span, p.has-mask span > span {
    line-height: 40px;
    height: 40px;
    margin-right: 10px;
}

figure.has-parallax {
    overflow: hidden;
    max-height: 45vw;
}



/*--------------------------------------------------
	SMOOTH SCROLL
---------------------------------------------------*/


body.smooth-scroll {
  overflow:hidden;
}

.smooth-scroll .content-scroll {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden !important;
}

.scroll-content, main {
  height: 100%;
}

.scrollbar-track {
  background: transparent!important;
}






/*--------------------------------------------------
	INDIVIDUAL STYLE
---------------------------------------------------*/



img.heroImage {
  position: absolute;
  z-index: 2;
  right: 10vw;
  bottom: 0;
  height: 90%;
}

img.heroImage-shadow {
  height: 90%;
  transition: all ease 0.5s;
  z-index: 1;
  filter: grayscale(100%) brightness(0%) blur(30px);
  -webkit-filter: grayscale(100%) brightness(0%) blur(30px);
  position: absolute;
  right: 9vw;
  opacity: 0.5;
  bottom: 0;
}

.heads-image-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 1;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.swiper-container.swiper1 {
  height: 100vh; /* Fallback for browsers that do not support Custom Properties */
  height: calc(var(--vh, 1vh) * 100);
}

.swiper1 .swiper-slide {
  background-color: var(--white);
}

.breadcrumb {
  position: relative;
  display: block;
  float: left;
  width: 100%;
  font-size: 0.8rem;
  margin-bottom: clamp(3em, 7vw, 7em);
}

.introtext {
  position: relative;
  float: left;
  padding-top: clamp(3em, 6vw, 6em);
  padding-bottom: clamp(3em, 6vw, 6em);
}

.introtext:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(12em, 22vw, 22em);
  height: 100%;
  background-image: url(../images/triangle_grey.svg);
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 1;
}

.introtext p {
  font-size: min(max(1.5rem, 2.2vw), 2.2rem);
  z-index: 2;
}

#sw_home {
  position: relative;
  display: inline;
  float: left;
  width: 100%;
  padding-top: clamp(5em, 10vw, 10em);
  padding-left: 10%;
  padding-bottom: clamp(10em, 15vw, 15em);
  padding-right: 60%;
  background-color: var(--grey-100);
  z-index: 3;
}

.sw_preview {
  position: absolute;
  right: clamp(4em, 10%, 20em);
  top: clamp(-7em, -5%, -2em);
  width: clamp(18em, 40vw, 57em);
  filter: drop-shadow(0px 8px 14px #aaaaaa);
}

.teaser {
  padding: 2em;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
}

.teaser a.button {
  width: fit-content;
  border: solid 1px var(--darkblue);
}

.teaser a.button:hover {
  border: solid 1px var(--green);
}

.teaser.preview a.button {
  border: solid 1px var(--white);
}

.teaser.preview a.button:hover {
  border: solid 1px var(--white);
}

.teaser.preview {
  background-size: cover;
  background-position: top right;
  color: var(--white);
}

.teaser.green {
  background: var(--green);
  color: var(--white);
}

.teaser.grey {
  background: var(--grey-200);
}

.product_title {
  font-size: min(max(2rem, 2vw), 2rem);
  letter-spacing: 1px;
  line-height: 1.2;
  font-weight: 800;
  font-style: italic;
  color: var(--blue);
}

.product_title span:nth-child(-n+3) {
  color: var(--green);
}

.teaser.preview .product_title {
  font-size: min(max(2.5rem, 3vw), 3rem);
}

.more_products p {
  max-width: 400px;
  margin: 0;
}

.more_products .product_title {
  font-size: min(max(0.9rem, 1.1vw), 1.1rem);
}

.more_products_list {
  position: relative;
  display: block;
  float: left;
  width: 100%;
}

.more_products .button_go {
    width: calc(50% - clamp(3em, 4vw, 4em));
    float: left;
    padding: 12px 10px;
    transition: all ease 0.5s;
    margin: 0 clamp(3em, 4vw, 4em) 0 0;
    cursor: pointer;
}

.more_products .button_go:after {
  right: 10px;
  top: 14px;
}

.more_products .button_go:hover {
  background-color: var(--grey-200);
}

.more_products img {
  object-fit: cover;
  height: 100%;
}

a.company_block {
  position: relative;
  display: flex;
  float: left;
  width: 100%;
  height: clamp(30em, 40vw, 35em);
  flex-wrap: wrap;
  align-items: center;
}

.company_textblock {
  position: absolute;
  width: 70%;
  padding-left: 7%;
  z-index: 3;
  top: 50%;
  transform: translate(0, -50%);
  margin-top: clamp(-4em, -4vw, -2em);
}

.company_textblock p, .company_textblock h4 {
  color: var(--white);
}

.company_textblock h4 {
  font-size: min(max(3rem, 4.5vw), 4.5rem);
  -webkit-text-fill-color: var(--white);
  font-weight: normal;
}

.company_textblock h5 {
  color: var(--white);
  font-size: min(max(1.51rem, 2vw), 2rem);
}

.company_textblock:after {
  content: "";
  position: absolute;
  bottom: clamp(-3.5em, -3.5vw, -2.5em);
  left: 10%;
  background-image: url(../images/arrow_right_white.svg);
  background-size: contain;
  width: clamp(2em, 3.5vw, 3.5em);
  height: clamp(1.5em, 2.5vw, 2.5em);
  z-index: 3;
  background-repeat: no-repeat;
}

.company_block_bg {
  position: absolute;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.benefit div {
  position: relative;
  padding: 2em 0;
}

.benefit div:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: #035EA8;
  background: -webkit-linear-gradient(to right, #035EA8 0%, #00b4db 40%);
  background: -moz-linear-gradient(to right, #035EA8 0%, #00b4db 40%);
  background: linear-gradient(to right, #035EA8 0%, #00b4db 40%);
}

.benefit div:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: #035EA8;
  background: -webkit-linear-gradient(to right, #035EA8 0%, #00b4db 40%);
  background: -moz-linear-gradient(to right, #035EA8 0%, #00b4db 40%);
  background: linear-gradient(to right, #035EA8 0%, #00b4db 40%);
}

.benefit h3 {
  margin: 0em 0 1em;
}




/*--------------------------------------------------
	PRODUKTE
---------------------------------------------------*/

section.feature-1 {
  padding: 5% 5% 5% 0;
  width: 100%;
  position: relative;
  float: left;
  background: var(--grey-200);
}

section.mockup {
  text-align: center;
}

.mockup img {
  max-width: 60%;
}

.product-feature {
  position: relative;
  display: block;
  float: left;
  width: 100%;
}

.first_feature_img {
  position: relative;
  display: block;
  float: left;
  width: 54%;
}

.first_feature_content {
  width: 40%;
  float: right;
  padding: 5% 15% 0 0;
}

.features-right .grid {
  max-width: 60%;
  margin-top: 2em;
  border-bottom: 1px solid var(--grey-300);
  padding-bottom: 1em;
}

.feature-icon {
  width: 2em;
  max-height: 2em;
  height: auto;
}

.feature_title {
  font-weight: bold;
  color: var(--darkblue);
  background: #035EA8;
  background: -webkit-linear-gradient(to right, #035EA8 0%, #00b4db 40%);
  background: -moz-linear-gradient(to right, #035EA8 0%, #00b4db 40%);
  background: linear-gradient(to right, #035EA8 0%, #00b4db 40%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-top: 5px;
}

.feature_line {
  width: 100%;
  height: 1px;
  background-color: var(--grey-300);
}

.offset_features:nth-child(even) .feature_block {
  grid-column: 3 / span 3;
  grid-row: 1;
}

.offset_features:nth-child(even) .feature_img {
  grid-column: 8 / span 4;
  grid-row: 1;
}

.offset_features:nth-child(odd) .feature_block {
  grid-column: 8 / span 3;
  grid-row: 1;
}

.offset_features:nth-child(odd) .feature_img {
  grid-column: 3 / span 4;
  grid-row: 1;
}


.cards_container {
  box-sizing: content-box;
  display: flex;
  width: calc(100% - clamp(4em, 8vw, 8em));
  margin-left: clamp(4em, 8vw, 8em);
}

.cards_ace {
  position: relative;
  padding: 3rem;
  margin: 3em 0;
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  flex: 0 0 18em;
  color: var(--white);
  background: #035EA8;
  background: -webkit-linear-gradient(to right, #035EA8 0%, #00b4db 100%);
  background: -moz-linear-gradient(to right, #035EA8 0%, #00b4db 100%);
  background: linear-gradient(to right, #035EA8 0%, #00b4db 100%);
  z-index: 13;
}

.cards_ace p {
  color: var(--white);
  font-size: min(max(1.4rem, 1.8vw), 1.8rem);
  hyphens: none;
}

.cards_ace .arrow_left {
  position: absolute;
  bottom: 2em;
  right: clamp(4em, 4.5vw, 4.5em);
  z-index: 2;
  width: clamp(1.3em, 1.8vw, 2.3em);
  height: clamp(1.3em, 1.5vw, 2em);
  background-image: url(../images/arrow_right.svg);
  background-repeat: no-repeat;
  display: block;
  cursor: pointer;
  transform: rotate(180deg);
  filter: brightness(0) invert(1);

}

.cards_ace .arrow_right {
  position: absolute;
  bottom: 2em;
  right: 2em;
  z-index: 2;
  width: clamp(1.3em, 1.8vw, 1.8em);
  height: clamp(1.3em, 1.45vw, 1.45em);
  background-image: url(../images/arrow_right.svg);
  background-repeat: no-repeat;
  display: block;
  cursor: pointer;
  filter: brightness(0) invert(1);
}

.cards_section {
  overflow-x: hidden;
}

.cards {
  position: relative;
  margin-left: 0;
  width: 100%;
  padding: 3em 0;
  flex-wrap: nowrap;
  display: flex;
  align-items: normal;
  scrollbar-color: #201c29;
  scrollbar-width: 10px;
  scrollbar-gutter: always;
}

.card_item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  min-width: 17em;
  max-width: 20em;
  border-radius: 0;
  padding: 3em 2em;
  background: var(--grey-200);
  transition: all ease 0.5s;
}

.card_item:first-child {
  margin-left: 1em;
}

.card_item:not(:first-child) {
  margin-left: -10em;
  -webkit-box-shadow: -24px 0px 40px 0px rgba(0,0,0,0.1);
  -moz-box-shadow: -24px 0px 40px 0px rgba(0,0,0,0.1);
  box-shadow: -24px 0px 40px 0px rgba(0,0,0,0.1);
}

.card_item:hover {
  -webkit-transform: translateY(-1rem) !important;
  transform: translateY(-1rem)!important;
}

.card_item:hover~.card_item {
  -webkit-transform: translateX(10em)!important;
  transform: translateX(10em)!important;
}

.cards span.title {
  font-size: min(max(1.2rem, 1.5vw), 1.5rem);
  background: #035EA8;
  background: -webkit-linear-gradient(to right, #035EA8 0%, #00b4db 100%);
  background: -moz-linear-gradient(to right, #035EA8 0%, #00b4db 100%);
  background: linear-gradient(to right, #035EA8 0%, #00b4db 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

span.text {
  margin: 0em 0 7em;
}


/*--------------------------------------------------
	PRODUKTE
---------------------------------------------------*/

nav.feature_navigation {
  position: fixed;
  display: block;
  background-color: var(--darkblue);
  top: 80px;
  left: 0;
  width: 100%;
  height: 40px;
  z-index: 3;
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.86, 0, 0.07, 0.5);
    -moz-transition: -moz-transform 0.5s cubic-bezier(0.86, 0, 0.07, 0.5);
    transition: transform 0.5s cubic-bezier(0.86, 0, 0.07, 0.5);
}

.feature_nav {
  position: static;
  width: 100%;
  flex-wrap: nowrap;
  display: flex;
  overflow-x: scroll;
  justify-content: flex-start;
  float: left;
  white-space: nowrap;
  padding-left: 7%;
}

.feature_nav a {
  font-size: 1rem;
  font-weight: 700;
  padding: 0.7em 2em 0;
  line-height: 1;
  background: #035EA8;
  background: -webkit-linear-gradient(to right, #035EA8 0%, #00b4db 100%);
  background: -moz-linear-gradient(to right, #035EA8 0%, #00b4db 100%);
  background: linear-gradient(to right, #035EA8 0%, #00b4db 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all ease 0.3s;
}

.feature_nav a.clicked, .feature_nav a:hover {
  color: var(--white);
  -webkit-text-fill-color: var(--white);
  background: transparent;
}







/*--------------------------------------------------
	INSIDE SISAG
---------------------------------------------------*/

.inside .bild {
  position: relative;
  float: left;
  width: 100%;
  height: 20vw;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.inside .content {
  position: relative;
  float: left;
  width: 100%;
  padding: 2em;
}

.intro {
  position: relative;
  float: left;
  width: 100%;
}

section.page-content {
  position: relative;
  float: left;
  width: 100%;
  padding: 5% 20%;
}

.intro p {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.page-content p {
  float: left;
}

p.date {
  width: 100%;
  background: #035EA8;
  background: -webkit-linear-gradient(to right, #035EA8 0%, #00b4db 40%);
  background: -moz-linear-gradient(to right, #035EA8 0%, #00b4db 40%);
  background: linear-gradient(to right, #035EA8 0%, #00b4db 40%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--blue);
}

.page-content ul {
  float: left;
  width: 100%;
}

.page-content .bild {
  width: 100%;
  margin: 2em 0;
}

.gallery {
  position: relative;
  float: left;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin: 2em 0;
}

.gallery a {
  position: relative;
  float: left;
  flex: 0 calc(33% - 2em);
  margin: 1em;
  height: 14vw;
}

.gallery-image {
  position: relative;
  float: left;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

ul.downloads {
  position: relative;
  float: left;
  margin: 2em 0;
  list-style-type: none;
  padding-inline: 0;
  width: 50%;
}

.downloads li {
  padding: 12px 10px;
  border-top: 1px solid var(--grey-200);
  font-weight: bold;
  color: var(--blue);
  transition: 0.5s all ease;
}

.downloads a:hover li {
  background-color: var(--grey-200);
}

.downloads li:last-child {
  border-bottom: 1px solid var(--grey-200);
}

.downloads li:after {
  position: absolute;
  content: "";
  right: 10px;
  top: 50%;
  transform: translate(0, -50%);
  background-image: url(../images/arrow_right.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 20px;
  height: 15px;
}

.page-content a.button {
  float: left;
  clear: both;
  margin-top: 2em;
}

.insides h3 {
  margin-bottom: 2em;
}

.insides .grid {
  column-gap: 2em;
}

.insides .bild {
  height: 16vw;
}

.content a, .content p {
  font-weight: 700;
}

.grey_bg {
  background-color: var(--grey-100);
}

.services_block .col {
  border-bottom: solid 1px var(--grey-300);
  padding: 3em 0;
  margin: 0em 0;
}


.circle {
  width: min(max(7rem, 10vw), 10rem);
  height: min(max(7rem, 10vw), 10rem);
  font-size: min(max(2rem, 4vw), 3rem);
  font-family: var(--bold-font);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: var(--white);
  z-index: 2;
}

.circle_bg {
  width: min(max(7.5rem, 10.5vw), 10.5rem);
  height: min(max(7.5rem, 10.5vw), 10.5rem);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: #035EA8;
  background: -webkit-linear-gradient(to right, #035EA8 0%, #00b4db 100%);
  background: -moz-linear-gradient(to right, #035EA8 0%, #00b4db 100%);
  background: linear-gradient(to right, #035EA8 0%, #00b4db 100%);
  z-index: 1;
}

.fact {
  color: var(--blue);
  font-size: min(max(2rem, 2vw), 2rem);
  font-weight: normal;
  letter-spacing: 1px;
  line-height: 1.2;
  text-transform: normal;
  margin-block-start: 0;
  margin-block-end: 0;
  background: #035EA8;
  background: -webkit-linear-gradient(to right, #035EA8 0%, #00b4db 100%);
  background: -moz-linear-gradient(to right, #035EA8 0%, #00b4db 100%);
  background: linear-gradient(to right, #035EA8 0%, #00b4db 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.swiper2 {
  height: clamp(30em, 40vw, 40em);
}




/*----------------------------------------------------------------------------------------------------
	END INDIVIDUAL STYLE
-----------------------------------------------------------------------------------------------------*/








/*------------------------------------------------------------------------------------------------------------------------------------------------------
	RESPONSIVE
-------------------------------------------------------------------------------------------------------------------------------------------------------*/



@media (prefers-color-scheme: dark) {

  .logo {
      display: none;
  }

  .logo.dark {
      display: block;
  }

  .hamburger .line1, .hamburger .line2, .hamburger .line1, .hamburger .line2, #sticky-fadein .hamburger .line1, #sticky-fadein .hamburger .line2 {
      background-color: var(--white);
  }

  body {
      background-color: var(--black);
  }

  .menu-text {
      color: var(--white);
  }

}



@media screen and (max-width : 1600px)  {

/* ///// C0NTAINER AND T_YPO ///// */


/* ///// H3ADER ///// */


/* ///// N@VIGATION ///// */


/* ///// SL1DER ///// */


/* ///// C0NTENT ///// */

}

@media screen and (max-width : 1500px)  {

/* ///// C0NTAINER AND T_YPO ///// */


/* ///// H3ADER ///// */


/* ///// N@VIGATION ///// */


/* ///// SL1DER ///// */


/* ///// C0NTENT ///// */
  
}

@media screen and (max-width : 1400px)  {

/* ///// C0NTAINER AND T_YPO ///// */


/* ///// H3ADER ///// */


/* ///// N@VIGATION ///// */


/* ///// SL1DER ///// */


/* ///// C0NTENT ///// */
  
}

@media screen and (max-width : 1300px)  {

/* ///// C0NTAINER AND T_YPO ///// */


/* ///// H3ADER ///// */


/* ///// N@VIGATION ///// */


/* ///// SL1DER ///// */


/* ///// C0NTENT ///// */
  
}

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

/* ///// C0NTAINER AND T_YPO ///// */


/* ///// H3ADER ///// */


/* ///// N@VIGATION ///// */


/* ///// SL1DER ///// */


/* ///// C0NTENT ///// */
  
}

@media screen and (max-width : 1100px)  {

/* ///// C0NTAINER AND T_YPO ///// */


/* ///// H3ADER ///// */


/* ///// N@VIGATION ///// */


/* ///// SL1DER ///// */


/* ///// C0NTENT ///// */
  
}

@media screen and (max-width : 1000px)  {

/* ///// C0NTAINER AND T_YPO ///// */


/* ///// H3ADER ///// */


/* ///// N@VIGATION ///// */


/* ///// SL1DER ///// */


/* ///// C0NTENT ///// */
  
}

@media screen and (max-width : 900px)  {

/* ///// C0NTAINER AND T_YPO ///// */


/* ///// H3ADER ///// */


/* ///// N@VIGATION ///// */


/* ///// SL1DER ///// */


/* ///// C0NTENT ///// */
  
}

@media screen and (max-width : 800px)  {

/* ///// C0NTAINER AND T_YPO ///// */


/* ///// H3ADER ///// */


/* ///// N@VIGATION ///// */


/* ///// SL1DER ///// */


/* ///// C0NTENT ///// */
  
}

@media screen and (max-width : 700px)  {

/* ///// C0NTAINER AND T_YPO ///// */


/* ///// H3ADER ///// */


/* ///// N@VIGATION ///// */


/* ///// SL1DER ///// */


/* ///// C0NTENT ///// */
  
}

@media screen and (max-width : 600px)  {

/* ///// C0NTAINER AND T_YPO ///// */


/* ///// H3ADER ///// */


/* ///// N@VIGATION ///// */


/* ///// SL1DER ///// */


/* ///// C0NTENT ///// */
  
}

@media screen and (max-width : 500px)  {

/* ///// C0NTAINER AND T_YPO ///// */


/* ///// H3ADER ///// */


/* ///// N@VIGATION ///// */


/* ///// SL1DER ///// */


/* ///// C0NTENT ///// */
  
}

@media screen and (max-width : 400px)  {

/* ///// C0NTAINER AND T_YPO ///// */


/* ///// H3ADER ///// */


/* ///// N@VIGATION ///// */


/* ///// SL1DER ///// */


/* ///// C0NTENT ///// */
  
}

@media screen and (max-width : 300px)  {

/* ///// C0NTAINER AND T_YPO ///// */


/* ///// H3ADER ///// */


/* ///// N@VIGATION ///// */


/* ///// SL1DER ///// */


/* ///// C0NTENT ///// */
  
}





