* {
  margin: 0;
  padding: 0;
  font-family: 'Archivo Black', sans-serif;
}

.start-screen {
  width: 100%;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.start-screen .screen {
  width: 40vw;
  height: 40vw;
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  margin: 0 100px;
  border-radius: 20px;
  -webkit-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.3);
  overflow: hidden;
  cursor: pointer;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}

.start-screen .screen.vfx {
  background-image: url("./assets/images/2D-VFX-Particle-Rain-Fire.webp");
}

.start-screen .screen.engineering {
  background-image: url("./assets/images/image.design-engineering.webp");
}

.start-screen .screen.active {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border-radius: 0;
  z-index: 51;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.start-screen .screen.active .overlay {
  background-color: #fff;
  opacity: 1;
}

.start-screen .screen .overlay {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: black;
  opacity: .5;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}

.start-screen .screen .text {
  color: white;
  position: absolute;
  bottom: 10%;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 3.5vw;
  -webkit-transition: bottom .5s ease;
  transition: bottom .5s ease;
}

.start-screen .screen .text::before {
  content: "";
  position: absolute;
  height: 5px;
  background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(white), to(transparent));
  background: linear-gradient(to right, transparent, white, transparent);
  left: 100%;
  bottom: 0;
  right: 100%;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}

.start-screen .screen:hover .text {
  bottom: 40%;
}

.start-screen .screen:hover .text::before {
  right: 20%;
  left: 20%;
}

.start-screen .brand {
  position: absolute;
  left: 0;
  right: 0;
  top: 20px;
  width: 10%;
  margin: auto;
}

.start-screen .brand img {
  width: 100%;
}

.pointer {
  position: fixed;
  width: 50px;
  height: 50px;
  -webkit-backdrop-filter: invert(100%);
          backdrop-filter: invert(100%);
  left: -10%;
  top: -10%;
  border-radius: 50%;
  border: 1px solid white;
  -webkit-transition: all .1s ease;
  transition: all .1s ease;
}

@media only screen and (max-width: 700px) {
  .start-screen {
    display: inline-block;
    height: auto;
    min-height: 100vh;
    margin-top: 10%;
  }
  .start-screen .brand {
    width: 20%;
  }
  .start-screen .screen {
    width: 90vw;
    height: 90vw;
    margin: 40px auto;
  }
  .start-screen .screen .text {
    font-size: 2rem;
  }
}

.loader {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 100;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #000;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
  -webkit-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.3);
}

.loader.hide {
  -webkit-transform: translateY(-110%);
          transform: translateY(-110%);
}

.loader img {
  width: 80px;
  margin: 20px 0;
  -webkit-animation: blink 1s infinite ease;
          animation: blink 1s infinite ease;
  -webkit-filter: invert(100%);
          filter: invert(100%);
}

.loader p {
  font-size: 15px;
  text-transform: uppercase;
}

@-webkit-keyframes blink {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes blink {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/*# sourceMappingURL=style.css.map */