@font-face {
  font-family: nasa;
  src: url(../fonts/nasalization-rg.otf);
}
@font-face {
  font-family: cool;
  src: url(../fonts/coolvetica_rg.ttf);
}
@font-face {
  font-family: cafe;
  src: url(../fonts/Louis_George_Cafe.ttf);
}
html {
  font-size: 100%;
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

body {
  margin: 0;
  padding: 0;
  line-height: 1.3;
  background-color: #000000;
  font-family: nasa;
  color: #ffffff;
  font-size: 2.3rem;
}

.flex {
  display: flex;
}
.flex-jc-sb {
  justify-content: space-between;
}
.flex-jc-sa {
  justify-content: space-around;
}
.flex-jc-c {
  justify-content: center;
}
.flex-ai-c {
  align-items: center;
}
.flex-jc-r {
  justify-content: right;
}

.grid {
  display: grid;
}

a,
a:visited,
a:hover,
a:active {
  text-decoration: none;
  color: #ffffff;
}

@media (max-width: 63.937em) {
  .hide-for-mobile {
    display: none;
  }
}

@media (min-width: 64em) {
  .hide-for-desktop {
    display: none;
  }
}

.header nav {
  width: 100%;
  height: 100%;
}
.header__title {
  position: absolute;
  display: flex;
  justify-content: center;
  width: 100vw;
  padding: 5px;
  top: 70px;
  left: 0;
}
.header__title a {
  color: #ffffff;
  font-size: 3.5rem;
  background: black;
  padding: 10px;
}
.header__logo {
  display: block;
  position: absolute;
  top: 190px;
  z-index: 3;
  height: calc(100vh - 280px);
  transition: width 0.5s ease-in-out, height 0.5s ease-in-out, left 0.5s ease-in-out;
}
@media (min-width: 100vh) {
  .header__logo {
    left: calc(50vw - 47.5vh);
    width: 95vh;
  }
}
@media (max-width: 100vh) {
  .header__logo {
    left: 0;
    width: 100vw;
  }
}
.header__logo img {
  height: 100%;
  width: 100%;
}
.header__logo.minimized {
  left: 0;
  top: 0;
  height: 170px;
  width: 162px;
}
.header__logo:hover {
  animation: shake 0.5s;
  transform: translate(2px, 2px) rotate(-1deg);
  transition: transform 0.5s;
}
.header__routing {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
}
.header__routing__path {
  fill: none;
  stroke: white;
  stroke-width: 4;
  stroke-dasharray: 600;
  transition: stroke-dashoffset 0.9s;
  stroke-dashoffset: 600;
}
.header__routing.visible .header__routing__path {
  stroke-dashoffset: 0 !important;
}
.header__menu {
  display: block;
  position: absolute;
  top: 0;
  right: 0px;
  padding: 25px;
  justify-self: right;
}
.header__menu > span {
  display: block;
  width: 50px;
  height: 5px;
  background-color: #ffffff;
  transition: transform 1s;
}
.header__menu > span:not(:last-child) {
  margin-bottom: 10px;
}
.header__menu.open > span:nth-child(1) {
  transform: translateY(15px) rotate(45deg);
}
.header__menu.open > span:nth-child(2) {
  transform: scaleX(0);
}
.header__menu.open > span:nth-child(3) {
  transform: translateY(-15px) rotate(-45deg);
}
.header__links {
  visibility: hidden;
  display: flex;
  justify-content: space-around;
  position: absolute;
  padding: 10px;
  right: 90px;
  transition: order 0.1s, transform 1s;
}
@media (min-width: 40em) {
  .header__links {
    transform: translateY(-100px);
  }
}
@media (max-width: 63.937em) {
  .header__links {
    order: 2;
    transform: translateX(-100px);
  }
}
.header__links.open {
  visibility: visible;
  transform: translateY(0);
}
.header__links a {
  color: #ffffff;
  font-size: 2.3rem;
  padding: 10px;
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(to right, #ffffff, #ffffff 50%, #5f5f5f 50%);
  background-size: 200% 100%;
  background-position: 100%;
  transition: all 0.4s ease-in-out;
}
.header__links a:hover {
  background-position: 0%;
}

section {
  position: absolute;
  display: none;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: -1;
}
section h1 {
  font-size: 3.5rem;
}
section.visible {
  display: block;
}

.contact-container {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  padding: 20px;
}

.contact-list {
  list-style: none;
  padding: 0;
}

.contact-list li {
  margin: 10px 0;
}

.contact-list a {
  text-decoration: none;
  font-size: 28px;
  color: #0077cc;
  transition: color 0.3s ease-in-out;
}

.contact-list a:hover {
  color: #005599;
  text-decoration: underline;
}

.content__nav {
  display: none;
  top: 45%;
  position: fixed;
  width: 100%;
  height: 205px;
  z-index: 1;
}
.visible .content__nav {
  display: block;
}
.content__nav__button {
  display: none;
}
.content__nav__arrow {
  position: absolute;
  width: 60px;
  height: 200px;
  cursor: pointer;
}
.content__nav__arrow#right {
  transform: rotateZ(180deg);
  top: 0px;
  right: 15px;
}
.content__nav__arrow__line {
  background-color: #5f5f5f;
  width: 115px;
  height: 5px;
  left: -25px;
  position: absolute;
  border-radius: 3px;
}
.content__nav__arrow__line::before {
  content: "";
  background-color: #ffffff;
  width: 0px;
  height: 5px;
  left: 0px;
  position: absolute;
  border-radius: 2px;
  transition: all 0.5s;
}
.content__nav__arrow:hover > .content__nav__arrow__line::before {
  width: 115px;
}
.content__nav__arrow__line#top {
  transform: rotateZ(297.5deg);
  top: 50px;
}
.content__nav__arrow__line#bot {
  transform: rotateZ(-297.5deg);
  top: 150px;
}
.content__content {
  display: grid;
  grid-template-areas: "header  header" "description img" "footer  footer";
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  gap: 10px;
  margin: 130px 100px 0 100px;
}
@media (max-width: 1000px) {
  .content__content {
    grid-template-areas: "header" "img" "description" "footer";
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 10px;
    margin: 170px 100px 0 100px;
  }
}
.content__title {
  grid-area: header;
  font-family: nasa;
}
.content__model3d {
  grid-area: img;
  position: relative;
}
.content.visible .content__model3d {
  display: block;
}
.content__visual {
  grid-area: img;
  height: 100vh;
}
.content__visual > img {
  position: relative;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.content__background {
  position: absolute;
  top: 140px;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #5f5f5f;
  opacity: 0;
  z-index: -1;
}
.content__background .primary {
  background-color: #ffffff;
}
.content__radio {
  position: absolute;
  --coef: 0;
  --is-mod: 0;
  top: calc((1 - var(--is-mod)) * 50vw + var(--is-mod) * (0px + var(--coef) * (100vw - 600px)));
  left: 75%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
@media (max-width: 1000px) {
  .content__radio {
    top: calc((1 - var(--is-mod)) * 50vw + var(--is-mod) * (120px + var(--coef) * (100vw - 200px)));
    left: 50%;
  }
}
.content__radio__input {
  display: none;
}
.content__radio__label {
  margin: 10px 10px;
  cursor: pointer;
}
.content__radio__label:before {
  content: "";
  display: inline-block;
  height: 30px;
  width: 30px;
  background: #222;
  border-radius: 50%;
  z-index: 2;
  transition: box-shadow 0.6s ease, background 0.3s ease;
}
.content__radio__input:checked + .content__radio__label:before {
  box-shadow: inset 0px 3px 0 2px rgb(2, 2, 2);
  background: #fff;
}
.content__radio #slider {
  position: absolute;
  left: 6%;
  top: 20%;
  width: 10%;
  padding-bottom: 10%;
  margin: 2.5% 0 0 5%;
  background: #fff;
  transition: transform 3s;
  border-radius: 50%;
  animation-timing-function: ease-in-out;
  animation-duration: 5s;
  animation-fill-mode: forwards;
  transition: 0.2s left 0.05s ease-in-out;
}
.content__decription {
  grid-area: description;
  font-size: 1.3rem;
  font-family: "cafe";
}
.content__decription h1 {
  font-size: 2.3rem;
}
.content__decription pre {
  overflow: hidden;
}/*# sourceMappingURL=style.css.map */