@charset "utf-8";
/* CSS Document */
/* MAXUM demo experience*/
/*

8px: 0.5rem;
16px: 1rem;
24px: 1.5rem;
32px: 2rem;
40px: 2.5rem;
48px: 3rem;
56px: 3.5rem;
64px: 4rem;

*/

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

iframe {
  display: block; /* iframes are inline by default */
  background: #000;
  border: none; /* Reset default border */
  height: 10vh; /* Viewport-relative units */
  min-height: 600px;
  width: 100%;
  overflow-y: scroll;
}

@media only screen and (max-width: 600px) {
  iframe {
    display: block; /* iframes are inline by default */
    background: #000;
    border: none; /* Reset default border */
    max-height: 500px;
    width: 100%;
    overflow-y: scroll;
  }
}

html {
}

body {
  padding: 0px;
  margin: 0px;
  font-family: "aktiv-grotesk", "Segoe UI", "DejaVu Sans", "Trebuchet MS",
    Verdana, "sans-serif";
  font-size: 16px; /* 16px = 1rem */
  font-size: clamp(1rem, calc(2.5vw + 1rem), 1rem);
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  line-height: 1.2;
}

h1 {
  font-size: clamp(2rem, 0.571rem + 3.81vw, 4rem);
  margin: 0px 0px 40px 0px;
  line-height: 1.1;
  color: #aaaaaa;
}
h2 {
  font-size: clamp(1.6rem, 0.957rem + 1.714vw, 2.5rem);
  margin: 0px 0px 20px 0px;
  line-height: 1.2em;
}
h3 {
  font-weight: normal;
  font-size: clamp(1rem, 0.929rem + 0.19vw, 1.1rem);
}
hr {
  width: 100%;
  margin: 40px 0px 20px 0px;
  opacity: 0.3;
}
.slideToggle {
  position: absolute;
  right: 30px;
  bottom: 30px;
  z-index: 10;
  color: #ffffff;
}

#mainArea {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background-color: #000000;

  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.title-highlight {
  background-color: #c10230;
  display: inline-block;
  padding: 5px 10px;
  color: #fff;
}

.intro-right {
  width: 100%;
  height: 100vh;
  background-color: #000000;
  position: absolute;
  top: 0px;
  right: 0px;
  transition: all 0.3s;
  opacity: 1;
  display: flex;
  flex-direction: column;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-content: center;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

#mainArea.active > .xxxxxintro-right {
  right: -100%;
  opacity: 0.5;
}

.intro-animation-area {
  position: absolute;
  display: flex;
  background-color: #000000;
  background-image: url("../image/techna-initial-bg.png");
  justify-content: space-between;
  align-items: flex-end;
  padding: calc(8px + 2.5625vw);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  width: 100%;
  height: 100vh;
  left: 0;
  top: 0;
  opacity: 1;
  transition: opacity ease-in-out 0.3s;
}

#mainArea.active > .intro-animation-area {
  opacity: 0;
}

.intro-right .layout-50-50 {
  width: 100%;
  height: 50vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.intro-right .intro-right-bg {
  background-image: url("../image/maxum-intro-right-image.jpg");
  background-size: cover;
  background-position: center;
}

a.start-link {
  color: #ffffff;
  font-size: 40px;
  line-height: 40px;
  text-decoration: none;
  border: 1px solid #ffffff;
  display: flex;
}
a.start-link span.chevron {
  background-color: #ffffff;
  color: #000000;
  padding: 8px 20px 10px 20px;
  display: inline-block;
  font-weight: normal;
}
a.start-link span.text {
  padding: 9px 10px 10px 20px;
  display: inline-block;
  font-weight: normal;
}
a.start-link i {
  font-weight: normal;
  font-size: 30px;
  margin-left: 5px;
  margin-right: 5px;
}
a.start-link:hover {
  opacity: 1;
}

a.start-link-mobile {
  color: #000000;
  display: block;
  font-size: 40px;
  line-height: 40px;
  text-decoration: none;
  margin-top: 40px;
}
a.start-link-mobile span {
  background-color: transparent;
  color: #c10230;
  padding: 0px 0px;
  display: inline-block;
  font-weight: bold;
}

video.video-bg {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  object-fit: cover;
}

@media screen and (max-height: 1000px) {
  #mainArea {
    overflow: auto;
    overflow-x: hidden;
  }
}

.main-content {
  position: relative;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  z-index: 0;
  color: #ffffff;
  opacity: 0;
  transition: opacity ease-in 1s;
  transition-delay: 0.2s;
}

#mainArea.active > .main-content {
  opacity: 1;
  z-index: 1;
}

.main-content-left {
  width: 33.3%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: calc(8px + 1.5625vw);
}
.main-content-middle {
  width: 33.3%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.main-content-middle img {
  width: 100%;
  height: auto;
  max-width: 600px;
}
.main-content-right {
  width: 66.6%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: calc(8px + 1.5625vw);
}

.main-content-inner {
  height: 100%;
  position: relative;
  border: 0px solid rgba(255, 255, 255, 0.2);
  display: flex;
  background-size: contain;
  background-position: 85% 100%;
  background-repeat: no-repeat;
}
.main-content-inner .main-inner-buttons {
  position: relative;
  width: 50px;
  display: flex;
  flex-direction: column;
  gap: 0px;
  justify-content: space-between;
}
.main-content-inner .main-inner-buttons .main-links {
  display: flex;
  flex-direction: column;
  gap: 0px;
}
.main-content-inner .main-inner-buttons .main-links a {
  display: inline-block;
  background-color: #ffffff;
  padding: 20px 13px 20px 10px;
  writing-mode: vertical-rl;
  border: 1px solid rgba(255, 255, 255, 0.4);
  text-orientation: mixed;
  text-decoration: none;
  color: #000000;
  transition: all ease 0.2s;
}

.main-content-inner .main-inner-buttons .main-links a:nth-of-type(2) {
  background-color: #000000;
  color: #ffffff;
  border-top: 0px;
}
.main-content-inner .main-inner-buttons .main-links a:nth-of-type(3) {
  background-color: #666666;
  color: #ffffff;
  border-top: 0px;
}

.main-content-inner .main-inner-buttons .main-links a:hover {
  background-color: #cccccc;
  color: #000000;
}

.secondary-links-modal {
  position: absolute !important;
  bottom: -1px;
  right: -61px;
}
.secondary-links-modal a {
  position: relative;
  color: #ffffff;
  display: block;
  box-sizing: border-box;
  width: 60px;
  text-align: center;
  height: 60px;
  background-color: #c10230;
  border: 1px solid #cccccc;
  box-sizing: border-box;
  padding: 5px;
}
.secondary-links-modal a.active {
  background-color: #ffffff;
}
.secondary-links-modal a:hover {
  background-color: #ffffff;
}

.secondary-links-modal a.icon-challenges {
  background-image: url("../image/icon-challenges.svg");
  background-repeat: no-repeat;
  background-size: 30px 30px;
  background-position: center center;
}
.secondary-links-modal a.icon-cases {
  background-image: url("../image/icon-use-cases.svg");
  background-repeat: no-repeat;
  background-size: 30px 30px;
  background-position: center center;
}

.secondary-links-modal a:hover.icon-challenges {
  background-image: url("../image/icon-challenges-hover.svg");
  background-repeat: no-repeat;
  background-size: 30px 30px;
  background-position: center center;
}
.secondary-links-modal a:hover.icon-cases {
  background-image: url("../image/icon-use-cases-hover.svg");
  background-repeat: no-repeat;
  background-size: 30px 30px;
  background-position: center center;
}

.secondary-links-modal a.icon-challenges.active {
  background-image: url("../image/icon-challenges-hover.svg");
  background-repeat: no-repeat;
  background-size: 30px 30px;
  background-position: center center;
}
.secondary-links-modal a.icon-cases.active {
  background-image: url("../image/icon-use-cases-hover.svg");
  background-repeat: no-repeat;
  background-size: 30px 30px;
  background-position: center center;
}

.secondary-links-modal a img {
  width: 40px;
  height: 40px;
  margin-top: 3px;
}
.secondary-links-modal a svg {
  background-color: aqua;
}
.secondary-links-modal a::before {
}

.secondary-links-modal a span {
  box-sizing: border-box;
  position: absolute;
  display: flex;
  align-items: center;
  right: 60px;
  top: 0px;
  content: "Challenges";
  width: 0px;
  overflow: hidden;
  background-color: #ffffff;
  height: 59px;
  color: rgba(193, 2, 48, 0.5);
  font-size: 1.3rem;
  line-height: 1em;
  padding-left: 0px;
  font-weight: bold;
  transition: width ease-in-out 0.2s, color ease-in-out 0.5s, padding ease 0.2s;
}

.secondary-links-modal a:hover span {
  width: 200px;
  padding-left: 20px;
  color: rgba(193, 2, 48, 1);
  right: 58px;
}
.secondary-links-modal a.active span {
  width: 200px;
  padding-left: 20px;
  color: rgba(193, 2, 48, 1);
  right: 58px;
}

.secondary-links-modal a .arrow {
  position: absolute;
  display: flex;
  align-items: center;
  left: -30px;
  width: 20px;
  height: 50px;
  color: #cccccc;
  transition: all ease-in-out 0.2s;
}
.secondary-links-modal a:hover .arrow {
  left: -230px;
}
.secondary-links-modal a.active .arrow {
  left: -230px;
}

.main-content-inner .main-inner-buttons .secondary-links {
  position: absolute !important;
  bottom: 0px;
  right: -10px;
}
.main-content-inner .main-inner-buttons .secondary-links a {
  position: relative;
  color: #ffffff;
  box-sizing: border-box;
  display: block;
  text-align: center;
  width: 60px;
  height: 60px;
  background-color: #c10230;
  border: 1px solid #cccccc;
  box-sizing: border-box;
  padding: 5px;
}

.main-content-inner .main-inner-buttons .secondary-links a.icon-challenges {
  background-image: url("../image/icon-challenges.svg");
  background-repeat: no-repeat;
  background-size: 30px 30px;
  background-position: center center;
}
.main-content-inner .main-inner-buttons .secondary-links a.icon-cases {
  background-image: url("../image/icon-use-cases.svg");
  background-repeat: no-repeat;
  background-size: 30px 30px;
  background-position: center center;
}

.main-content-inner
  .main-inner-buttons
  .secondary-links
  a:hover.icon-challenges {
  background-image: url("../image/icon-challenges-hover.svg");
  background-repeat: no-repeat;
  background-size: 30px 30px;
  background-position: center center;
}
.main-content-inner .main-inner-buttons .secondary-links a:hover.icon-cases {
  background-image: url("../image/icon-use-cases-hover.svg");
  background-repeat: no-repeat;
  background-size: 30px 30px;
  background-position: center center;
}

.main-content-inner .main-inner-buttons .secondary-links a img {
  width: 40px;
  height: 40px;
  margin-top: 3px;
}
.main-content-inner .main-inner-buttons .secondary-links a svg {
  fill: #ff0000;
}

.main-content-inner .main-inner-buttons .secondary-links a .arrow {
  position: absolute;
  display: flex;
  align-items: center;
  left: -30px;
  width: 20px;
  height: 50px;
  color: #cccccc;
  transition: all ease-in-out 0.2s;
}
.main-content-inner .main-inner-buttons .secondary-links a:hover .arrow {
  left: -230px;
}
.main-content-inner .main-inner-buttons .secondary-links a span {
  box-sizing: border-box;
  position: absolute;
  display: flex;
  align-items: center;
  right: 60px;
  top: 0px;
  width: 0px;
  overflow: hidden;
  z-index: 0;
  background-color: #ffffff;
  height: 59px;
  color: rgba(193, 2, 48, 0.5);
  font-size: 1.3rem;
  line-height: 1em;
  padding-left: 0px;
  font-weight: bold;
  transition: width ease-in-out 0.2s, color ease-in-out 0.5s, padding ease 0.2s;
}

.main-content-inner .main-inner-buttons .secondary-links a:hover span {
  width: 200px;
  padding-left: 20px;
  color: rgba(193, 2, 48, 1);
  right: 58px;
  opacity: 1;
}
.main-content-inner .main-inner-buttons .secondary-links a.active span {
  width: 200px;
  padding-left: 20px;
  color: rgba(193, 2, 48, 1);
  right: 58px;
}

.main-content-inner .main-inner-buttons .secondary-links a.active {
  background-color: #ffffff;
}

.main-content-inner .main-inner-buttons .secondary-links a:hover {
  background-color: #ffffff;
}

.main-content-inner .main-inner-content {
  border: 1px solid rgba(255, 255, 255, 0.5);
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0;
  overflow: hidden;
}
.main-content-inner .main-inner-content div {
  max-width: 600px;
}
.main-content-inner .main-inner-content div p {
  font-size: clamp(1rem, 0.643rem + 0.952vw, 1.5rem);
}

/* Accordion */

.accordion__header {
  display: flex;
  cursor: pointer;
  justify-content: flex-start;
  padding: 0px;
  margin-bottom: 10px;
}
.accordion__header > * {
}
.accordion__header.is-active {
}

.accordion__header-animations .span-text {
  position: relative;
  background-color: #c10230;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  align-content: center;
  padding-left: 20px;
  margin-bottom: 0px;
  font-size: clamp(1.6rem, 1.314rem + 0.762vw, 2rem);
  line-height: 1em;
  font-weight: bold;
  opacity: 0.9;
}

.accordion__header-animations:hover .span-text {
  opacity: 1;
}
.accordion__header.is-active .span-text {
  opacity: 1;
}
.accordion__header-animations .span-text::after {
  position: absolute;
  right: 20px;
  top: 24px;
  font-family: "Font Awesome 6 Free";
  font-style: normal;
  font-size: clamp(1.6rem, 1.314rem + 0.762vw, 2rem);
  content: "\f078";

  color: #ffffff;
}
.accordion__header-product {
  margin-bottom: 10px;
}
.accordion__header-product .span-text {
  position: relative;
  color: #c10230;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  align-content: center;
  padding-left: 0px;
  margin-bottom: 0px;
  font-size: clamp(1.2rem, 0.629rem + 1.524vw, 2rem);
  line-height: 1em;
  font-weight: bold;
  opacity: 0.9;
}

.accordion__header-product:hover .span-text {
  opacity: 1;
}
.accordion__header.is-active .span-text {
  opacity: 1;
}
.accordion__header-product .span-text::after {
  position: relative;
  display: inline-block;
  margin-left: 20px;
  top: 0px;
  font-family: "Font Awesome 6 Free";
  font-size: clamp(1.2rem, calc(1.2vw + 1rem), 2rem);
  content: "\f078";
  font-style: normal;
}

.accordion__header.is-active .span-text::after {
  content: "\f077";
}

.accordion__header-animations .span-icon {
  background-color: #4c5055;
  display: inline-block;
  width: 85px;
  height: 70px;
  margin-right: 10px;
  padding: 10px;
  background-origin: content-box;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.icon-001 {
  background-image: url("../image/icon-001.png");
}
.icon-002 {
  background-image: url("../image/icon-002.png");
}
.icon-003 {
  background-image: url("../image/icon-003.png");
}

.accordion__toggle {
  margin-left: 10px;
  height: 3px;
  background-color: #222;
  width: 13px;
  display: block;
  position: relative;
  flex-shrink: 1;
  border-radius: 2px;
}

.accordion__toggle::before {
  content: "x";
  width: 3px;
  height: 13px;
  display: block;
  background-color: #222;
  position: absolute;
  top: -5px;
  left: 5px;
  border-radius: 2px;
}

.is-active .accordion__toggle {
  background-color: #fff;
}
.is-active .accordion__toggle::before {
  display: none;
}

.accordion__body {
  display: grid;
  grid-template-rows: 0fr;
  padding: 0em;
  border-top: 0;
  transition: all 0.2s;
}
.accordion__body.is-active {
  grid-template-rows: 1fr;
}

.accordion__body-inner {
  overflow: hidden;
}
.accordion__body-inner-animations {
  margin-left: 110px;
}
.accordion__body-inner-animations a {
  display: block;
  position: relative;
  color: #aaaaaa;
  text-decoration: none;
  margin-bottom: clamp(1rem, calc(1.5vw + 1rem), 1rem);
  font-size: clamp(1.1rem, calc(1.5vw + 1rem), 1.2rem);
  line-height: 1em;
}
.accordion__body-inner-animations a:first-child {
  margin-top: 20px;
}
.accordion__body-inner-animations a:last-child {
  margin-bottom: 20px;
}
.accordion__body-inner-animations a:hover {
  color: #ffffff;
}

.accordion__body-inner-animations a::after {
  position: absolute;
  right: 20px;
  top: 0px;
  font-family: "Font Awesome 6 Free";
  font-style: normal;
  content: "\f054";
  font-style: normal;
}

.accordion__body-inner-product {
  font-size: 0.9rem;
  color: #aaa;
}
.accordion__body-inner-product p:first-of-type {
  margin-top: 20px;
}
.accordion__body-inner-product p {
  margin-bottom: 8px;
  margin-top: 0px;
}
.accordion__body-inner-product p:last-of-type {
  margin-bottom: 30px;
}

/* Modal styles */

.modal {
  position: absolute;
  top: 0;
  right: -66%;
  width: 66%;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
  align-content: center;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(255, 255, 255, 1);
  opacity: 0;
  pointer-events: none;
  transition: all 0.5s ease;
  color: #000000;
  box-sizing: border-box;
  z-index: 10;
}

.modal-test {
  position: absolute;
  top: 0;
  right: 50px;
  width: calc(100% - 50px);
  height: 100%;
  opacity: 0;
  padding: 1rem;
  background: #ff9900;
  max-width: 2000px !important;
}

.modal-no-slide {
  right: 0;
}
.modal-gallery {
  right: 0;
  width: 100%;
}

.modal-challenges {
  position: absolute;
  top: 0;
  right: 50px;
  width: calc(100% - 50px) !important;
  padding: 0px !important;
  background: rgba(255, 255, 255, 0);
  align-items: stretch;
  transition: all 0s ease;
  max-width: 2000px !important;
  z-index: 3;
  transition: all 0.5s ease;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.modal-cases {
  position: absolute;
  top: 0;
  right: 50px;
  width: calc(100% - 50px) !important;
  padding: 0px !important;
  background: rgba(255, 255, 255, 0);
  align-items: stretch;
  transition: all 0s ease;
  max-width: 2000px !important;
  z-index: 3;
  transition: all 0.5s ease;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.modal-navigation {
  background-color: #666666;
  flex-flow: column nowrap;
  align-content: flex-start;
  align-items: center;
  justify-content: flex-start;
  z-index: 3;
}
.modal-navigation a {
  display: block;
}

.modal-navigation a {
  display: block;
  width: 80%;
  position: relative;
  color: #aaaaaa;
  text-decoration: none;
  margin-bottom: clamp(1rem, calc(1.5vw + 1rem), 1rem);
  font-size: clamp(1.1rem, calc(1.5vw + 1rem), 1.2rem);
  line-height: 1em;
  padding-bottom: 20px;
  color: #ffffff;
  border-bottom: 1px solid #aaaaaa;
}
.modal-navigation a:first-of-type {
  margin-top: 90px;
}
.modal-navigation a:last-of-type {
  border-bottom: 0px solid #aaaaaa;
}
.modal-navigation a:hover {
  color: #c10230;
}

.modal-navigation a::after {
  position: absolute;
  right: 0px;
  top: 0px;
  font-family: "Font Awesome 6 Free";
  font-style: normal;
  content: "\f054";
  font-style: normal;
  color: #c10230;
}

.video-dark-bg {
  background-color: #000000;
}

.modal button.close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  border: 0;
  background: #000000;
  font-size: 3.5rem;
  cursor: pointer;
  color: #ffffff;
  z-index: 10;
  width: 80px;
  height: 80px;
}

.modal button:hover.close {
  color: #c10230;
}

.modal-challenges button.close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  border: 0;
  background: #000000;
  font-size: 3.5rem;
  cursor: pointer;
  color: #ffffff;
  z-index: 10;
  width: 80px;
  height: 80px;
}

.modal-cases button.close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  border: 0;
  background: #000000;
  font-size: 3.5rem;
  cursor: pointer;
  color: #ffffff;
  z-index: 10;
  width: 80px;
  height: 80px;
}

.visible {
  opacity: 1;
  right: 0px;
  pointer-events: all;
}

.modal-test.visible {
  opacity: 1;
  right: 50px;
  pointer-events: all;
}

.modal-challenges.visible {
  opacity: 1;
  right: 50px;
  pointer-events: all;
}

.modal-cases.visible {
  opacity: 1;
  right: 50px;
  pointer-events: all;
}

/* Challengers modal */

.modal-challenges .mc-inner {
  position: relative;
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: center;
  flex-direction: column;
  background-image: url("../image/challenges-bg.jpg");
  background-size: cover;
  background-position: center;
  flex: 1;
  padding: calc(8px + 1.5625vw);
  color: #ffffff;
  max-width: 2000px !important;
}

.inner-width {
  width: 100%;
}

.challenge-points {
}
.challenge-points div {
  margin-bottom: 0px;
  padding-bottom: 30px;
  display: flex;
  align-items: center;
}

.challenge-points div span {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 50px;
  box-sizing: border-box;
  padding: 5px;
  background-color: #c10230;
  margin-right: 20px;
  border: 1px solid #cccccc;
}
.challenge-points div span img {
  width: 100%;
  height: auto;
}
.challenge-points div span::after {
  content: "";
  width: 1px;
  height: 30px;
  background-color: #cccccc;
  position: absolute;
  bottom: -30px;
  left: 24px;
}

.challenge-points div:last-of-type span::after {
  display: none;
}

.challenge-points-small {
  margin-top: 40px;
}
.challenge-points-small div {
  margin-bottom: 0px;
  padding-bottom: 30px;
  display: flex;
  align-items: center;
}

.challenge-points-small div span {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  box-sizing: border-box;
  padding: 5px;
  background-color: #c10230;
  margin-right: 20px;
  border: 1px solid #cccccc;
}
.challenge-points-small div span img {
  width: 100%;
  height: auto;
}
.challenge-points-small div span::after {
  content: "";
  width: 1px;
  height: 30px;
  background-color: #cccccc;
  position: absolute;
  bottom: -31px;
  left: 8px;
}

.challenge-points-small div:last-of-type span::after {
  display: none;
}

/* Use cases modal */

.case-navigation {
  display: flex;
  width: 100%;
  justify-content: center;
  gap: 20px;
}

.case-navigation a {
  color: #ffffff;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 1.5rem;
  padding: 5px 8px;
}

.case-navigation a.active {
  background-color: #c10230;
}

.modal-cases .mc-inner {
  position: relative;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  background-image: url("../image/challenges-bg.jpg");
  background-size: cover;
  background-position: center;
  flex: 1;
  padding: calc(8px + 1.5625vw);
  color: #ffffff;
}

.modal-cases .cases-parking {
  background-image: url("../image/parking-bg.jpg");
  background-size: cover;
  background-position: center;
}

.modal-cases .cases-industrial {
  background-image: url("../image/industrial-bg.jpg");
  background-size: cover;
  background-position: center;
}

.modal-cases .cases-commercial {
  background-image: url("../image/commercial-bg.jpg");
  background-size: cover;
  background-position: center;
}

/* Video */

.video-animation {
  position: absolute;
  display: block;
  top: 0px;
  left: 0px;
  right: 0;
  height: 100%;
  padding: 1rem 1rem;
  background-color: #000000;
}
.video-animation video {
  display: block;
  position: relative;
  height: 100%;
  width: 100%;
  object-fit: contain;
}

.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Gallery */
.main-carousel {
  background: #000000;
  width: 100%;
  height: 100%;
}

.carousel-cell {
  width: 100%; /* full width */
  height: 100%; /* height of carousel */
  margin-right: 0px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.carousel-cell.is-selected {
  background-color: #000000;
}

/* smaller, dark, rounded square */
.flickity-button {
  background: #c10230;
}
.flickity-button:hover {
  background: #000;
}

.flickity-prev-next-button {
  width: 30px;
  height: 30px;
  border-radius: 0px;
}

/* icon color */

.flickity-button-icon {
  fill: white;
}
/* position outside */
.flickity-prev-next-button.previous {
  left: 20px;
}
.flickity-prev-next-button.next {
  right: 20px;
}

/* Animations */
.pulsate {
  -webkit-animation: pulsate 2s ease-out;
  -webkit-animation-iteration-count: infinite;
  opacity: 0.8;
  transform: scale(1);
  &:hover {
    animation-play-state: paused;
  }
}

@-webkit-keyframes pulsate {
  0% {
    opacity: 0.8;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  100% {
    opacity: 0.8;
    transform: scale(1);
  }
}

/* Mobile headers + products */

.mobile-header {
  display: none;
  flex-direction: row;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0px;
  padding: calc(8px + 1.5625vw) calc(8px + 1.5625vw) 0 calc(8px + 1.5625vw);
}
.mobile-header a.menu {
  color: #ffffff;
  font-size: 25px;
}
.mobile-header .mobile-logo img {
  max-width: 200px;
}

.product-mobile {
  position: relative;
  margin-top: 40px;
  opacity: 1;
  transition-property: display opacity;
  transition-duration: 1s;
  transition-behavior: allow-discreet;
}
.product-mobile h2 {
  color: #c10230;
  margin-bottom: 10px;
}
.product-mobile .product-image {
  display: flex;
  margin: 40px 0 0 0;
  background-image: url("../image/maxum-bg-lowres.jpg");
  background-size: cover;
  padding: 20px 0px;
  background-repeat: no-repeat;
  background-position: center bottom;
}
.product-mobile .product-image img {
  margin: 0px auto;
  max-width: 300px;
}
.product-mobile p {
  color: #aaa;
  font-size: 0.9rem;
}

select {
  /* styling */

  background: rgb(35, 31, 32);
  border: thin solid #aaaaaa;
  border-radius: 0px;
  display: inline-block;
  font: inherit;
  line-height: 1.5em;
  padding: 0.5em 3.5em 0.5em 1em;
  width: 100%;
  margin: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
}

select.minimal {
  background-image: linear-gradient(45deg, transparent 50%, #c10230 50%),
    linear-gradient(135deg, #c10230 50%, transparent 50%),
    linear-gradient(to right, #ccc, #ccc);
  background-position: calc(100% - 20px) calc(1em + 2px),
    calc(100% - 15px) calc(1em + 2px), calc(100% - 2.5em) 0.5em;
  background-size: 5px 5px, 5px 5px, 1px 1.5em;
  background-repeat: no-repeat;
  color: #aaa;
}

select.minimal:focus {
  background-image: linear-gradient(45deg, #c10230 50%, transparent 50%),
    linear-gradient(135deg, transparent 50%, #c10230 50%),
    linear-gradient(to right, #ccc, #ccc);
  background-position: calc(100% - 15px) 1em, calc(100% - 20px) 1em,
    calc(100% - 2.5em) 0.5em;
  background-size: 5px 5px, 5px 5px, 1px 1.5em;
  background-repeat: no-repeat;
  border-color: #000000;
  outline: 0;
}

/* Buttons */

.button-container {
  background-color: aqua;
  height: 100%;
  display: flex;
}
.button-container a {
  position: relative;
  display: block;
  background-color: #ff9900;
  color: #000000;
  padding: 15px 20px;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
  transition: all 0.2s ease;
}
.button-container a .rotate-button {
  transform: rotate(90deg);
  background-color: aqua;
  display: inline-block;
}
.button-container a.button-alt {
  background-color: #aaaaaa;
}
.button-container a:hover {
  background-color: #aaaaaa;
}
.button-container a.button-alt:hover {
  background-color: #ffffff;
}

.video-link {
  font-size: 18px;
  color: #ffffff;
  text-decoration: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.video-link span {
  width: 60px;
  height: 60px;
  display: inline-block;
  background-image: url("../image/icon-video.png");
  background-size: contain;
  margin-right: 20px;
}

@media only screen and (max-height: 1100px) {
  .button-container a {
    position: relative;
    display: block;
    background-color: #ffffff;
    color: #000000;
    padding: 10px 15px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    transition: all 0.2s ease;
  }
  .video-link {
    margin-bottom: 20px;
  }
}

/* Desktop show/hide */

.desktop-hide {
  display: none;
}

/* Mobile version */

@media only screen and (max-width: 1100px) {
  .flickity-page-dots {
    display: none;
  }
  .modal-cases {
  }

  .case-navigation {
    display: flex;
    width: 100%;
    justify-content: space-between;
    gap: 10px;
    padding-bottom: 30px;
  }

  .case-navigation a {
    font-size: 14px;
  }
  .modal-cases .mc-inner {
    position: relative;
    display: block;
    justify-content: flex-start;
    flex-direction: column;
    padding-top: 70px;
  }

  .inner-width {
    height: 100%;
    width: 100% !important;
    max-height: 500px;
    overflow: scroll;
  }

  .intro-animation-area {
    position: fixed;
    display: flex;
    flex-direction: column;
    background-color: #000000;
    background-image: url("../image/techna-initial-bg-mobile.jpg");
    justify-content: space-between;
    align-items: flex-end;
    align-items: center;
    padding: calc(8px + 2.5625vw);
    padding-bottom: 50px;
    padding-top: 50px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    width: 100%;
    height: 95vh;
    left: 0;
    top: 0;
    opacity: 1;
    transition: opacity ease-in-out 0.3s;
  }

  .secondary-links {
    display: none !important;
  }
  .secondary-links-modal {
    display: none !important;
  }
  .desktop-hide {
    display: block;
  }
  .inner-width {
    width: 95%;
  }

  #mainArea {
    position: relative;
    width: 100%;
    height: auto !important;
    background-color: #000000;
    background-image: none;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    background-attachment: fixed;
  }

  .main-content {
    position: relative;
    display: flex;
    width: 100%;
    box-sizing: border-box;
    z-index: 0;
    color: #ffffff;
    flex-wrap: wrap;
    flex-direction: row;
  }
  .main-content-inner {
    min-height: 60vh;
  }
  .main-content-left {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: calc(8px + 1.5625vw);
    order: 3;
  }
  .main-content-middle {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    order: 2;
  }
  .main-content-middle img {
    width: 100%;
    height: auto;
    max-width: 600px;
    margin-top: 40px;
    margin-bottom: 40px;
  }
  .main-content-right {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: calc(8px + 1.5625vw);
    order: 1;
  }
  .footer-logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .footer-logo {
    margin-top: 40px;
  }
  .intro-left {
    width: 100%;
    height: 100dvh;
    position: fixed;
  }
  #mainArea.active > .intro-left {
    left: -100%;
    opacity: 0.5;
  }
  .intro-right {
    display: none;
  }

  .mobile-hide {
    display: none;
  }
  .mobile-header {
    display: flex !important;
  }
  .button-container a {
    position: relative;
    display: block;
    background-color: #ffffff;
    border: 1px solid #000000;
    color: #000000;
    padding: 10px 18px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    transition: all 0.2s ease;
  }

  .video-link {
    flex-direction: column;
  }
  .video-link span {
    margin-right: 0px;
    margin-bottom: 10px;
  }

  .modal {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
  }

  .modal-no-slide {
    right: 0;
  }

  .visible {
    opacity: 1;
    right: 0px;
    pointer-events: all;
  }

  .modal-challenges.visible {
    right: 0px;
    width: 100% !important;
    padding: 0px;
    background: rgba(255, 255, 255, 0);
    align-items: stretch;
    transition: all 0s ease;
    z-index: 3;
  }

  .modal-cases.visible {
    right: 0px;
    width: 100% !important;
    padding: 0px;
    background: rgba(255, 255, 255, 0);
    align-items: stretch;
    transition: all 0s ease;
    z-index: 3;
  }

  .modal button.close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    border: 0;
    background: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #ffffff;
    z-index: 10;
    width: 40px;
    height: 40px;
  }

  .modal button:hover.close {
    color: #c10230;
  }
  .modal-contact button.close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    border: 0;
    background: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #000000;
    z-index: 10;
    width: 40px;
    height: 40px;
  }
}
