BODY {
  overflow-x: hidden;
  font-family: 'averta';

  user-select: none;

  margin: 0;
  padding: 0;

  background: #131E24;

  scroll-behavior: smooth;

  overflow: overlay;
}

#loading-overlay {
  display: block;

  width: 100%;
  height: 100%;

  position: fixed;
  top: 0px;
  left: 0px;

  background: white;

  z-index: 100; /* FRONT */

  text-align: center;

  transition: 0.4s;
}
#loading-overlay #loader {
  width: 40px;

  display: block;

  position: absolute;
  top: calc(50% + 30px); /* it is -20 + 50 */
  left: calc(50% - 20px);

  animation: rotate 3s infinite linear;
}
#loading-overlay #logo {
  display: block;

  position: absolute;

  top: 50%;
  left: 50%;

  transform: translate(-50%, calc(-50% - 50px));

  width: 100px;
}

#main-container {
  position: absolute;
  top: 0px;
  left: 0px;
  overflow-x: hidden;
  overflow-y: scroll;

  display: block;

  width: 100%;
  height: 100%;
}
#main-container #bgtech {
  width: 100vw; height: 100vh;
  margin: 0; padding: 0; display: block;

  object-fit: cover;
  position: absolute;
  top: 0; left: 0;

  z-index: -100;

  animation: dim 6s infinite ease-in-out;
}


#main-container .imgbuffer {
  width: calc(100% - 40px);
  max-width: 960px;
  display: block;
  margin-left: auto;
  margin-right: auto;

  margin-top: 40px; margin-bottom: 40px;

  position: relative;
}
#main-container .artlab {
  width: 100%;
  max-width: 960px;

  border-radius: 5px;

  display: block;
}
#main-container .imgdata {
  display: block;
  position: relative;

  width: 100%;
}
#main-container .imgbuffer .title {
  color: white;
  font-size: 20px;
  font-weight: 700;

  width: 100%;
  max-width: 570px;

  margin-bottom: 0px;
}
#main-container .imgbuffer .data {
  color: white;
  font-size: 16px;
  font-weight: 400;

  width: 100%;
  max-width: 570px;

  margin-top: 10px;
}
#main-container .imgbuffer .refs {
  position: absolute;
  top: 0px; right: 0px;

  display: block;

  margin: 0; padding: 0;
  color: white; font-size: 12px; font-weight: 300;

  text-align: right;

  user-select: all;
}
#main-container #morecomesoon {
  width: calc(100% - 40px); max-width: 960px;

  text-align: center;
  margin-left: auto; margin-right: auto;

  margin-top: 100px; margin-bottom: 100px;

  color: white;

  font-size: 20px; font-weight: 300;
}

#main-container #corporat {
  margin-bottom: 60px;

  margin-left: auto; margin-right: auto;

  display: block;
}

table-wrap h1 {
  font-size: 16px;
  font-weight: 400;
}
table-wrap-foot * {
  font-size: 12px !important;
  line-height: 18px !important;
}
a, a:hover, a:visited, a:link, a:active {
    text-decoration: none !important;
}

@media only screen and (max-height: 600px) {
  #main-container #procinfo {
    top: 20px;
    left: 20px;
  }


}

@media only screen and (max-width: 1400px) {
  ::-webkit-scrollbar {
    display: none;
  }


  #main-container #procinfo {
    position: absolute;
    top: 20px !important;
    left: 50% !important; transform: translateX(-50%) !important;
  }

  #main-container #procinfo {
    top: 20px;
    left: 20px;
  }

  .artlab {
    border-radius: 10px !important;
  }
  .refs {
    display: block !important; position: relative !important;
    right: auto !important; left: 0px !important;
    text-align: left !important;
  }
}


@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}

@keyframes dim {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}

.moved-out {
  opacity: 0;
  pointer-events: none !important;
}

*:focus {
    outline: none;
}

::selection {
  background: #0086D1;
  color: white;
}

sup, sub {
  vertical-align: baseline;
  position: relative;
  top: -0.4em;
}
sub {
  top: 0.4em;
}

body * {
  -webkit-tap-highlight-color: transparent;
}

::-webkit-scrollbar {
  display: none;
}
