@charset "utf-8";
/* MOHR */
@font-face {
  font-family: "Mohr";
  src: url("../fonts/Mohr-Thin.otf");
  font-weight: 100;
}
@font-face {
  font-family: "Mohr";
  src: url("../fonts/Mohr-ExtraLight.otf");
  font-weight: 200;
}
@font-face {
  font-family: "Mohr";
  src: url("../fonts/Mohr-Light.otf");
  font-weight: 300;
}
@font-face {
  font-family: "Mohr";
  src: url("../fonts/Mohr-Regular.otf");
  font-weight: 400;
}
@font-face {
  font-family: "Mohr";
  src: url("../fonts/Mohr-Medium.otf");
  font-weight: 500;
}
@font-face {
  font-family: "Mohr";
  src: url("../fonts/Mohr-SemiBold.otf");
  font-weight: 600;
}
@font-face {
  font-family: "Mohr";
  src: url("../fonts/Mohr-Bold.otf");
  font-weight: 700;
}
@font-face {
  font-family: "Mohr";
  src: url("../fonts/Mohr-BoldIt.otf");
  font-weight: 700;
  font-style: italic;
}
@font-face {
  font-family: "Mohr";
  src: url("../fonts/Mohr-Black.otf");
  font-weight: 800;
}
@font-face {
  font-family: "Mohr";
  src: url("../fonts/Mohr-Heavy.otf");
  font-weight: 900;
}
.axial_component_base {
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: all;
  touch-action: none;
}
/* POPUPS ANIMATIONS */
/* Obfuscator fader */
@keyframes axial_obfuscator_fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes axial_obfuscator_fade-out {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
/* Popup fader */
@keyframes axial_popup_fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes axial_popup_fade-out {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
/* Popup translate_up */
@keyframes axial_popup_translate_up-in {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0%);
  }
}
@keyframes axial_popup_translate_up-out {
  from {
    transform: translateY(0%);
  }
  to {
    transform: translateY(100%);
  }
}
/* Popup translate_down */
@keyframes axial_popup_translate_down-in {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0%);
  }
}
@keyframes axial_popup_translate_down-out {
  from {
    transform: translateY(0%);
  }
  to {
    transform: translateY(-100%);
  }
}
/* Popup translate_left */
@keyframes axial_popup_translate_left-in {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0%);
  }
}
@keyframes axial_popup_translate_left-out {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(100%);
  }
}
/* Popup translate_right */
@keyframes axial_popup_translate_right-in {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0%);
  }
}
@keyframes axial_popup_translate_right-out {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-100%);
  }
}
/* Popup fade_translate_up */
@keyframes axial_popup_fade_translate_up-in {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0%);
    opacity: 1;
  }
}
@keyframes axial_popup_fade_translate_up-out {
  from {
    transform: translateY(0%);
    opacity: 1;
  }
  to {
    transform: translateY(100%);
    opacity: 0;
  }
}
/* Popup fade_translate_down */
@keyframes axial_popup_fade_translate_down-in {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0%);
    opacity: 1;
  }
}
@keyframes axial_popup_fade_translate_down-out {
  from {
    transform: translateY(0%);
    opacity: 1;
  }
  to {
    transform: translateY(-100%);
    opacity: 0;
  }
}
/* Popup fade_translate_left */
@keyframes axial_popup_fade_translate_left-in {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0%);
    opacity: 1;
  }
}
@keyframes axial_popup_fade_translate_left-out {
  from {
    transform: translateX(0%);
    opacity: 1;
  }
  to {
    transform: translateX(100%);
    opacity: 0;
  }
}
/* Popup fade_translate_right */
@keyframes axial_popup_fade_translate_right-in {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }
  to {
    transform: translateX(0%);
    opacity: 1;
  }
}
@keyframes axial_popup_fade_translate_right-out {
  from {
    transform: translateX(0%);
    opacity: 1;
  }
  to {
    transform: translateX(-100%);
    opacity: 0;
  }
}
/**/
@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fade-out {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
/**/
@keyframes translate_up-in {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0%);
  }
}
@keyframes translate_up-out {
  from {
    transform: translateY(0%);
  }
  to {
    transform: translateY(-100%);
  }
}
/**/
@keyframes translate_down-in {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0%);
  }
}
@keyframes translate_down-out {
  from {
    transform: translateY(0%);
  }
  to {
    transform: translateY(100%);
  }
}
.axial_button_base {
  cursor: pointer;
}
.axial_button {
  overflow: hidden;
  width: -moz-fit-content;
  width: fit-content;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 14px;
  padding-right: 14px;
  margin: 10px;
  background-color: #0463b1;
  border-radius: 4px;
  box-shadow: 0px 1px 1px #434343;
  color: #fff;
  font-weight: 500;
}
.axial_toggle_button_group-holder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.axial_viewer_base {
  min-width: 40px;
  min-height: 40px;
  overflow: hidden;
}
.axial_viewer_base-holder {
  position: relative;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  overflow: hidden;
}
.axial_view_base {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  overflow: hidden;
}
/* FRAMEWORK VARIABLES */
/* for futur IDE */
/* BUTTON */
/* CONTAINER */
/*
@axHeaderContainerBackgroundColor: #607d8b;
@axHeaderContainerBoxShadow: 0px 1px 3px 0px #333;
*/
/* MENU */
/* TOOLTIPS */
/* NEW SHADOW */
/* Axial Application Theme */
/* AxialButton */
* {
  box-sizing: border-box;
}
html {
  -ms-touch-action: none;
  touch-action: none;
  -webkit-tap-highlight-color: transparent;
  font-family: 'Arial', sans-serif;
  cursor: default;
  text-shadow: none;
  overflow-x: hidden;
  overflow-y: hidden;
}
body {
  position: fixed;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  overflow-y: hidden;
  -webkit-text-size-adjust: 100%;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
input {
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
}
.axial_background_layer {
  position: absolute;
  width: 100%;
  height: 100%;
}
.axial_main_layer {
  position: absolute;
  width: 100%;
  height: 100%;
}
.axial_loader_layer {
  position: absolute;
  left: 0px;
  right: 0px;
  top: 0px;
  bottom: 0px;
  visibility: hidden;
}
.axial_loader_background {
  position: absolute;
  left: 0px;
  right: 0px;
  top: 0px;
  bottom: 0px;
}
.axial_loader_content {
  position: absolute;
  left: 0px;
  right: 0px;
  top: 0px;
  bottom: 0px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.axial_loader_holder {
  width: 300px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #181932;
}
.axial_loader_icon {
  width: 40px;
  height: 40px;
  margin: 20px;
  border-radius: 50%;
  border-top: 5px solid #181932;
  border-left: 5px solid #181932;
  border-bottom: 5px solid #181932;
  border-right: 5px solid transparent;
}
.axial_loader_number {
  width: 100%;
  font-weight: 600;
  text-align: center;
  margin-bottom: 10px;
}
.axial_loader_text {
  width: 100%;
  font-weight: 600;
  text-align: center;
}
@keyframes axial_loader_icon_animation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.ax-popup-layer {
  position: absolute;
  left: 0px;
  right: 0px;
  bottom: 0px;
  top: 0px;
  visibility: hidden;
  overflow-x: hidden;
  overflow-y: hidden;
  pointer-events: none;
}
.ax-popup-obfuscator {
  position: absolute;
  left: 0px;
  right: 0px;
  top: 0px;
  bottom: 0px;
  background-color: #000;
  visibility: hidden;
  opacity: 0;
  pointer-events: all;
}
.ax-popup-element {
  position: absolute;
  visibility: hidden;
  transition-property: none;
  transition-duration: 0s;
  pointer-events: all;
}
.ax-popup-arrow {
  position: absolute;
  display: none;
}
/* arrow up */
.ax-popup-arrow-bottom {
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #fff;
}
/* arrow down */
.ax-popup-arrow-top {
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #fff;
}
/* arrow left */
.ax-popup-arrow-right {
  border-bottom: 10px solid transparent;
  border-top: 10px solid transparent;
  border-right: 10px solid #fff;
}
/* arrow right */
.ax-popup-arrow-left {
  border-bottom: 10px solid transparent;
  border-top: 10px solid transparent;
  border-left: 10px solid #fff;
}
/* NEW SHADOW */
.axial_popup_layer {
  position: absolute;
  left: 0px;
  right: 0px;
  bottom: 0px;
  top: 0px;
  visibility: hidden;
  overflow-x: hidden;
  overflow-y: hidden;
  pointer-events: none;
}
.axial_popup_obfuscator {
  position: absolute;
  left: 0px;
  right: 0px;
  top: 0px;
  bottom: 0px;
  background-color: rgba(0, 0, 0, 0.73);
  visibility: hidden;
  opacity: 0;
  pointer-events: all;
}
.axial_popup_base {
  position: absolute;
  visibility: hidden;
  pointer-events: all;
}
.axial_popup_arrow {
  position: absolute;
  display: none;
}
/* arrow up */
.axial_popup_base_arrow-bottom {
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #fff;
}
/* arrow down */
.axial_popup_base_arrow-top {
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #fff;
}
/* arrow left */
.axial_popup_base_arrow-right {
  border-bottom: 10px solid transparent;
  border-top: 10px solid transparent;
  border-right: 10px solid #fff;
}
/* arrow right */
.axial_popup_base_arrow-left {
  border-bottom: 10px solid transparent;
  border-top: 10px solid transparent;
  border-left: 10px solid #fff;
}
.ax-progress-element {
  box-sizing: border-box;
  padding: 0;
  /*overflow: hidden;*/
}
.ax-progress-bar {
  position: relative;
  height: 100%;
  box-sizing: border-box;
  transition-property: width;
  transition-duration: 800ms;
}
.ax-progress-indicator {
  position: relative;
  width: 32px;
  height: 32px;
  margin-left: -16px;
  transition-property: left;
  transition-duration: 800ms;
}
.ax-tooltip-layer {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
}
.ax-tooltip {
  position: absolute;
  visibility: hidden;
  display: flex;
}
.ax-tooltip-arrow {
  position: absolute;
  visibility: hidden;
}
.ax-tooltip-label {
  height: auto;
  min-height: 10px;
  min-width: 10px;
  max-width: 180px;
  padding: 9px;
  text-align: left;
  display: flex;
  font-weight: 400;
  font-size: 13px;
  color: #fff;
  background-color: #000;
}
.ax-tooltip-element {
  position: absolute;
  min-height: 10px;
  min-width: 10px;
  max-width: 180px;
  height: auto;
  padding: 12px;
  text-align: left;
  display: flex;
  font-weight: 400;
  font-size: 12px;
  color: #fff;
  background-color: #000;
}
.ax-tooltip-icon-space {
  padding-right: 10px;
}
/* arrow up */
.ax-tooltip-arrow-bottom {
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #000;
}
/* arrow down */
.ax-tooltip-arrow-top {
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #000;
}
/* arrow left */
.ax-tooltip-arrow-right {
  border-bottom: 6px solid transparent;
  border-top: 6px solid transparent;
  border-right: 6px solid #000;
}
/* arrow right */
.ax-tooltip-arrow-left {
  border-bottom: 6px solid transparent;
  border-top: 6px solid transparent;
  border-left: 6px solid #000;
}
.axial_main_layer {
  visibility: hidden;
}
html {
  -ms-touch-action: none;
  touch-action: none;
  -webkit-tap-highlight-color: transparent;
  font-family: "Mohr", sans-serif;
  font-weight: 500;
  cursor: default;
  text-shadow: none;
  overflow-x: hidden;
  overflow-y: hidden;
  color: #3c377a;
  background-color: #f5fb9d;
}
.kode-header {
  position: absolute;
  width: 86%;
  height: 100px;
  padding-left: 20px;
  padding-top: 20px;
  padding-right: 20px;
}
.kode-main {
  position: absolute;
  width: 100%;
  top: 140px;
  bottom: 50px;
  padding-left: 20px;
  padding-right: 20px;
  overflow-x: hidden;
  overflow-y: auto;
  text-align: justify;
}
.kode-transparency {
  position: absolute;
  bottom: 50px;
  height: 40px;
  width: 100%;
  background-image: linear-gradient(rgba(245, 251, 157, 0), #f5fb9d);
  pointer-events: none;
}
.kode-transparency-spacer {
  height: 40px;
  width: 100%;
}
.kode-transparency-down {
  position: absolute;
  bottom: 0px;
  height: 50px;
  width: 100%;
  background-color: #f5fb9d;
}
.kode-main::-webkit-scrollbar {
  background-color: transparent;
}
.kode-main::-webkit-scrollbar-track {
  background-color: transparent;
}
.kode-main::-webkit-scrollbar-thumb {
  background-color: transparent;
}
/* entry point */
.kode-text-title {
  margin: 0;
  margin-bottom: 6px;
  height: 36px;
  font-size: 26px;
  font-weight: 900;
  color: #ff0062;
}
.kode-text-subtitle {
  margin: 0;
  height: 18px;
  font-size: 18px;
  line-height: 20px;
  padding-top: 6px;
  display: none;
}
.kode-text-subtitle-mobile {
  margin: 0;
  height: 18px;
  font-size: 18px;
  line-height: 20px;
  padding-top: 6px;
}
.kode-text-subtitle-landscape {
  margin: 0;
  height: 18px;
  font-size: 18px;
  line-height: 20px;
  padding-top: 6px;
  display: none;
}
.kode-text-bold {
  font-weight: 700;
}
.kode-text-italic {
  font-style: italic;
  cursor: url("../assets/cursor.png"), pointer;
}
.kode-text-pink {
  color: #ff0062;
}
.shape-overlays {
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
}
.path-color-1 {
  fill: #3c377a;
}
.path-color-2 {
  fill: #ff0062;
}
.path-color-3 {
  fill: #f5fb9d;
}
.kode-close-holder {
  position: absolute;
  width: 36px;
  height: 36px;
  top: 24px;
  right: 20px;
}
.kode_background_lines {
  position: absolute;
  width: 200%;
  height: 200%;
  top: -50%;
  left: -50%;
  animation: kode_background_lines_animation 30s linear 0s infinite;
}
@keyframes kode_background_lines_animation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.kode_background {
  position: absolute;
  width: 100%;
  height: 100%;
  transform: scale(5);
  background-image: repeating-linear-gradient(rgba(255, 190, 65, 0.14), rgba(255, 190, 65, 0.14) 0.2em, rgba(255, 190, 65, 0) 0.2em, rgba(255, 190, 65, 0) 0.4em);
}
.kode_close_button {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition-property: transform;
  transition-duration: 400ms;
  transition-timing-function: ease-out;
}
.kode_close_button_icon {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.kode_close_button_circle {
  fill: #ff0062;
  transition-property: fill;
  transition-duration: 400ms;
  transition-timing-function: ease-out;
}
.kode_close_button_polygon {
  fill: #fff;
  transition-property: fill;
  transition-duration: 400ms;
  transition-timing-function: ease-out;
}
.kode_mouse {
  position: absolute;
  width: 40px;
  height: 60px;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%) scale(0.45);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  /*display: none;*/
}
.kode_mouse_holder {
  width: 33px;
  height: 60px;
  border-radius: 60px;
  border: solid 3px #3c377a;
  display: flex;
}
.kode_mouse_holder_tools {
  width: 33px;
  height: 37px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.kode_mouse_arrows_up {
  width: 4px;
  height: 4px;
  background-color: rgba(0, 0, 0, 0.23);
}
.kode_mouse_button {
  width: 5px;
  height: 9px;
  border-radius: 3px;
  background-color: #3c377a;
  animation: kode_mouse_button_animation;
  animation-duration: 1s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-out;
}
.kode_mouse_arrows_down {
  width: 4px;
  height: 4px;
  background-color: rgba(0, 0, 0, 0.23);
}
@keyframes kode_mouse_button_animation {
  0% {
    transform: translateY(-2px);
  }
  50% {
    transform: translateY(2px);
  }
  100% {
    transform: translateY(-2px);
  }
}
/* talent fabrik pages */
.kode-talentfabrik-logo {
  position: absolute;
  width: 60px;
  height: 37.5px;
  top: 64px;
  left: 252px;
}
.kode-talent-partners {
  margin-top: 20px;
  margin-bottom: 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto;
  gap: 10px;
}
.kode-talent-partner {
  width: auto;
  height: auto;
  display: flex;
  flex-direction: column;
}
.kode-talent-partner-image {
  width: auto;
  height: 100%;
  pointer-events: none;
}
.kode-talent-partner-text {
  font-size: 10px;
  text-align: center;
  padding-top: 6px;
}
.kode-talent-logos-title {
  text-align: center;
}
.kode-talent-logos {
  margin-top: 20px;
  margin-bottom: 20px;
  width: auto;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  height: 90px;
  gap: 20px;
}
.kode-talent-logos-image {
  width: auto;
  height: 100%;
  pointer-events: none;
}
/* Kathy's classes */
.musikers {
  margin-top: 20px;
  margin-bottom: 20px;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-template-rows: auto;
  gap: 10px;
}
.musiker {
  width: auto;
  height: auto;
  display: flex;
  flex-direction: column;
}
.kode-musiker-image {
  width: 100%;
  height: auto;
  pointer-events: none;
}
.musiker-1 {
  grid-column: auto;
  grid-row: auto;
}
.musiker-2 {
  grid-column: auto;
  grid-row: auto;
}
.musiker-3 {
  grid-column: auto;
  grid-row: auto;
}
.musiker-4 {
  grid-column: auto;
  grid-row: auto;
}
/*
xs 0
s 576
m 768
l 992
xl 1200
xxl 1400

cf boostrap : https://getbootstrap.com/docs/5.0/layout/breakpoints/
*/
/* S */
@media screen and (min-width: 576px) {
  p {
    font-size: 16px;
  }
  li {
    font-size: 16px;
  }
  .kode-header {
    padding-left: 3%;
    padding-right: 3%;
    padding-top: 20px;
    height: 120px;
  }
  .kode-main {
    padding-left: 3%;
    padding-right: 3%;
    top: 130px;
  }
  .kode-text-title {
    font-size: 40px;
    height: 40px;
    margin-bottom: 8px;
  }
  .kode-text-subtitle {
    height: 20px;
    font-size: 20px;
    line-height: 22px;
    display: none;
  }
  .kode_mouse {
    transform: translateX(-50%) scale(0.45);
  }
  .kode-close-holder {
    width: 40px;
    height: 40px;
    top: 32px;
    right: 3%;
  }
  /* talentfabrik classes */
  .kode-talentfabrik-logo {
    width: 74px;
    height: 46px;
    top: 32px;
    left: 295px;
  }
  .kode-text-subtitle-mobile {
    display: none;
  }
  .kode-text-subtitle-landscape {
    display: block;
  }
  .kode-talent-partners {
    grid-template-columns: repeat(3, 1fr);
  }
  .kode-talent-logos-title {
    text-align: left;
  }
  .kode-talent-logos {
    grid-template-columns: repeat(3, 1fr);
  }
  .kode-talent-partner-text {
    font-size: 11px;
  }
  .musikers {
    grid-template-columns: repeat(2, 1fr);
  }
  .musiker-1 {
    grid-column: auto;
    grid-row: auto;
  }
  .musiker-2 {
    grid-column: auto;
    grid-row: auto;
  }
  .musiker-3 {
    grid-column: auto;
    grid-row: auto;
  }
  .musiker-4 {
    grid-column: auto;
    grid-row: auto;
  }
}
/* M */
@media screen and (min-width: 768px) {
  p {
    font-size: 17px;
  }
  li {
    font-size: 17px;
  }
  .kode-header {
    padding-left: 4%;
    padding-right: 4%;
    padding-top: 30px;
    height: 130px;
    width: 90%;
  }
  .kode-main {
    padding-left: 4%;
    padding-right: 4%;
    top: 140px;
  }
  .kode-text-title {
    font-size: 50px;
    height: 50px;
    margin-bottom: 10px;
  }
  .kode-text-subtitle {
    height: 22px;
    font-size: 22px;
    line-height: 33px;
    display: none;
  }
  .kode_mouse {
    transform: translateX(-50%) scale(0.6);
  }
  .kode-close-holder {
    width: 52px;
    height: 52px;
    top: 42px;
    right: 4%;
  }
  /* talentfabrik classes */
  .kode-talentfabrik-logo {
    width: 86px;
    height: 37px;
    top: 47px;
    left: 307px;
  }
  .kode-text-subtitle-mobile {
    display: none;
  }
  .kode-text-subtitle-landscape {
    display: block;
    line-height: 33px;
  }
  .kode-talent-partners {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
  }
  .kode-talent-logos-title {
    text-align: left;
  }
  .kode-talent-logos {
    grid-template-columns: repeat(3, 1fr);
  }
  .kode-talent-partner-text {
    font-size: 12px;
  }
  .musikers {
    grid-template-columns: repeat(3, 1fr);
  }
  .musiker-1 {
    grid-column: 1;
    grid-row: 1;
  }
  .musiker-2 {
    grid-column: 2;
    grid-row: 1;
  }
  .musiker-3 {
    grid-column: 1;
    grid-row: 2;
  }
  .musiker-4 {
    grid-column: 2;
    grid-row: 2;
  }
}
/* L */
@media screen and (min-width: 992px) {
  p {
    font-size: 18px;
  }
  li {
    font-size: 18px;
  }
  .kode-header {
    padding-left: 6%;
    padding-right: 6%;
    padding-top: 40px;
    height: 150px;
  }
  .kode-main {
    padding-left: 6%;
    padding-right: 6%;
    top: 180px;
  }
  .kode-text-title {
    font-size: 60px;
    height: 60px;
    margin-bottom: 12px;
  }
  .kode-text-subtitle {
    height: 24px;
    font-size: 24px;
    line-height: 40px;
    display: none;
  }
  .kode_mouse {
    transform: translateX(-50%) scale(0.7);
  }
  .kode-close-holder {
    width: 80px;
    height: 80px;
    top: 62px;
    right: 6%;
  }
  /* talentfabrik classes */
  .kode-talentfabrik-logo {
    width: 80px;
    height: 43px;
    top: 6px;
    left: 402px;
  }
  .kode-text-subtitle-mobile {
    display: none;
  }
  .kode-text-subtitle-landscape {
    display: block;
    height: 24px;
    font-size: 24px;
    line-height: 40px;
  }
  .kode-talent-partners {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
  }
  .kode-talent-logos-title {
    text-align: left;
  }
  .kode-talent-logos {
    grid-template-columns: repeat(3, 1fr);
  }
  .kode-talent-partner-text {
    font-size: 13px;
  }
  .musikers {
    grid-template-columns: repeat(3, 1fr);
  }
  .musiker-1 {
    grid-column: 1;
    grid-row: 1;
  }
  .musiker-2 {
    grid-column: 2;
    grid-row: 1;
  }
  .musiker-3 {
    grid-column: 1;
    grid-row: 2;
  }
  .musiker-4 {
    grid-column: 2;
    grid-row: 2;
  }
}
/* XL */
@media screen and (min-width: 1200px) {
  p {
    font-size: 19px;
  }
  li {
    font-size: 19px;
  }
  .kode-header {
    padding-left: 90px;
    padding-right: 90px;
    padding-top: 50px;
    height: 190px;
  }
  .kode-main {
    padding-left: 90px;
    padding-right: 90px;
    top: 200px;
  }
  .kode-text-title {
    font-size: 80px;
    height: 80px;
    margin-bottom: 14px;
  }
  .kode-text-subtitle {
    height: 26px;
    font-size: 26px;
    line-height: 48px;
    display: block;
  }
  .kode_mouse {
    transform: translateX(-50%) scale(0.8);
  }
  .kode-close-holder {
    width: 94px;
    height: 94x;
    top: 75px;
    right: 90px;
  }
  /* talentfabrik classes */
  .kode-talentfabrik-logo {
    width: 94px;
    height: 59px;
    top: 76px;
    left: 528px;
  }
  .kode-text-subtitle-mobile {
    display: none;
  }
  .kode-text-subtitle-landscape {
    display: none;
  }
  .kode-talent-partners {
    grid-template-columns: repeat(3, 300px);
    grid-template-rows: auto auto;
  }
  .kode-talent-logos-title {
    text-align: left;
  }
  .kode-talent-logos {
    grid-template-columns: repeat(3, 300px);
  }
  .kode-talent-partner-text {
    font-size: 14px;
  }
  .musikers {
    grid-template-columns: repeat(2, 300px);
  }
  .musiker-1 {
    grid-column: 1;
    grid-row: 1;
  }
  .musiker-2 {
    grid-column: 2;
    grid-row: 1;
  }
  .musiker-3 {
    grid-column: 1;
    grid-row: 2;
  }
  .musiker-4 {
    grid-column: 2;
    grid-row: 2;
  }
}
/* XXL */
@media screen and (min-width: 1400px) {
  p {
    font-size: 20px;
  }
  li {
    font-size: 20px;
  }
  .kode-header {
    padding-left: 110px;
    padding-right: 110px;
    padding-top: 60px;
    height: 220px;
  }
  .kode-main {
    padding-left: 110px;
    padding-right: 110px;
    top: 240px;
  }
  .kode-text-title {
    font-size: 89px;
    height: 87px;
    margin-bottom: 18px;
    margin-left: -3px;
  }
  .kode-text-subtitle {
    height: 30px;
    font-size: 29px;
    line-height: 50px;
    display: block;
  }
  .kode_mouse {
    transform: translateX(-50%) scale(0.9);
  }
  .kode-close-holder {
    width: 104px;
    height: 104px;
    top: 90px;
    right: 110px;
  }
  /* talentfabrik classes */
  .kode-talentfabrik-logo {
    width: 104px;
    height: 65px;
    top: 90px;
    left: 605px;
  }
  .kode-text-subtitle-mobile {
    display: none;
  }
  .kode-text-subtitle-landscape {
    display: none;
  }
  .kode-talent-partners {
    grid-template-columns: repeat(3, 320px);
  }
  .kode-talent-logos-title {
    text-align: left;
  }
  .kode-talent-logos {
    grid-template-columns: repeat(3, 320px);
  }
  .kode-talent-partner-text {
    font-size: 15px;
  }
  .musikers {
    grid-template-columns: repeat(2, 320px);
    grid-template-rows: auto auto;
  }
  .musiker-1 {
    grid-column: 1;
    grid-row: 1;
  }
  .musiker-2 {
    grid-column: 2;
    grid-row: 1;
  }
  .musiker-3 {
    grid-column: 1;
    grid-row: 2;
  }
  .musiker-4 {
    grid-column: 2;
    grid-row: 2;
  }
}
#talentFabrikIcon { display: none;}