body {
  margin: 0;
  top: 0;
  left: 0;
  overflow: hidden auto;
}

.first_impact {
  width: 100%;
  height: 100vh;
  background-image: url("./img/panorama.png");
}
.first_impact .fi_child {
  width: 100%;
  height: 100%;
  -webkit-backdrop-filter: brightness(0.5) blur(5px);
          backdrop-filter: brightness(0.5) blur(5px);
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: space-evenly;
  align-items: center;
}
.first_impact .logo {
  max-height: 40vh;
  max-width: 85vmin;
  margin-top: 10vh;
}
.first_impact .subtitle {
  color: white;
  text-align: center;
}
.first_impact hr {
  width: 90%;
}
.first_impact .Download_button {
  background: rgb(0, 0, 0);
  color: white;
  width: 30vmin;
  height: 10vmin;
  border: white solid 1px;
  border-radius: 20px;
  font-size: 3.5vmin;
}
.first_impact .Download_button i {
  margin-right: 1vmin;
}
.first_impact .version {
  text-align: center;
  background: rgb(71, 0, 0);
  color: white;
  width: 30vmin;
  height: 10vmin;
  border: white solid 1px;
  border-radius: 20px;
  font-size: 3.5vmin;
}
.first_impact .Git_hub {
  text-align: center;
  background: rgb(234, 234, 234);
  color: #000000;
  width: 30vmin;
  height: 10vmin;
  border: white solid 1px;
  border-radius: 20px;
  font-size: 3.5vmin;
  display: flex;
  flex-direction: row;
  align-content: center;
  justify-content: center;
  align-items: center;
}
.first_impact .Git_hub img {
  max-height: 50%;
  max-width: 5vmin;
  margin-right: 1vmin;
}
.first_impact .buttons {
  width: 100vmin;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 1000px) {
  .first_impact .buttons {
    width: 95vmin;
  }
}

.WCD_pre {
  background-image: url(./img/panorama.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: center;
}
.WCD_pre .back {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: center;
  transition: 0.8s;
  -webkit-backdrop-filter: brightness(0.8);
          backdrop-filter: brightness(0.8);
  position: relative;
}
.WCD_pre .back > div {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  left: 0%;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: center;
  transition: 1s;
}
.WCD_pre .back > div .list {
  color: white;
  width: 100%;
  font-size: 3vmin;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: space-around;
  align-items: center;
  text-shadow: 0 0 3px black;
}
.WCD_pre .back > div .list li {
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-style: normal;
  height: 10vh;
  display: list-item;
  align-content: center;
  align-items: center;
}
@media screen and (max-width: 1000px) {
  .WCD_pre .back > div .list ul {
    padding: 0;
    margin: 0;
    width: 100%;
    text-align: center;
  }
  .WCD_pre .back > div .list ul li {
    list-style: none;
    font-size: 2.5vmin;
  }
}
.WCD_pre #WCD_title {
  letter-spacing: 3vmin;
  text-shadow: 0 0 4px #000000;
  font-size: 8vmin;
  color: hsl(231deg, 100%, 87%);
}
.WCD_pre .disappear-dots {
  -webkit-animation: dotFadeOut 1s forwards;
          animation: dotFadeOut 1s forwards;
}
@-webkit-keyframes dotFadeOut {
  0% {
    opacity: 1;
    -webkit-clip-path: circle(100%);
            clip-path: circle(100%);
  }
  50% {
    opacity: 0.5;
    -webkit-clip-path: circle(50%);
            clip-path: circle(50%);
  }
  100% {
    opacity: 0;
    -webkit-clip-path: circle(0%);
            clip-path: circle(0%);
  }
}
@keyframes dotFadeOut {
  0% {
    opacity: 1;
    -webkit-clip-path: circle(100%);
            clip-path: circle(100%);
  }
  50% {
    opacity: 0.5;
    -webkit-clip-path: circle(50%);
            clip-path: circle(50%);
  }
  100% {
    opacity: 0;
    -webkit-clip-path: circle(0%);
            clip-path: circle(0%);
  }
}
.WCD_pre .disappear-curtain {
  position: relative;
  overflow: hidden;
  -webkit-animation: curtainFadeOut 1.5s forwards;
          animation: curtainFadeOut 1.5s forwards;
}
@-webkit-keyframes curtainFadeOut {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
  }
  100% {
    opacity: 0;
    -webkit-clip-path: inset(50% 50% 50% 50%);
            clip-path: inset(50% 50% 50% 50%);
  }
}
@keyframes curtainFadeOut {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
  }
  100% {
    opacity: 0;
    -webkit-clip-path: inset(50% 50% 50% 50%);
            clip-path: inset(50% 50% 50% 50%);
  }
}

.WCD_title {
  text-align: center;
  color: white;
}

.width_80 {
  width: 80%;
}

.AF_title {
  text-align: center;
  color: black;
}

.AF {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  align-items: stretch;
  width: 95vw;
  margin: 0 2.5vw;
}
.AF > div {
  min-height: 60vmin;
  margin: 0 1vw 1vmin;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: flex-start;
  justify-content: flex-start;
  align-items: flex-start;
  color: rgb(0, 0, 0);
  box-shadow: 0px 0px 6px 0px #989898;
  width: 26vw;
}
.AF .child_tls {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: center;
  border: black solid 1px;
  border-width: 0 0 1px 0;
  width: 90%;
  margin: 0 5%;
  padding: 1vmin 0;
}
.AF .child_tls .AF_title {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  align-content: center;
  flex-wrap: wrap;
  flex-direction: row;
}
.AF .child_tls .AF_title * {
  margin: 0 1vmin;
}
.AF .child_tls .AF_infomation {
  margin: 0;
}
.AF .child_tls img {
  height: 7.5vmin;
}
.AF .child_tls svg {
  height: 7.5vmin;
  fill: #a90000;
}
@media screen and (max-width: 1000px) {
  .AF {
    display: flex;
    flex-direction: column;
  }
  .AF > div {
    width: 95vw;
  }
}

.Update_infomation {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: flex-start;
  justify-content: center;
  align-items: flex-start;
  margin: 0 10%;
  width: 80%;
}
.Update_infomation h1 {
  margin: 0;
  text-align: center;
  width: 100%;
}
.Update_infomation > div {
  width: 100%;
  padding: 1vmin 2%;
  border: black solid 1px;
}
.Update_infomation > div h2 {
  margin: 0;
  border: black solid;
  border-width: 0 0 1px 0;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: space-between;
}

footer {
  background: black;
  color: white;
  text-align: center;
  margin: 10vmin 0 0 0;
  padding: 0.5vmin 0;
}

.DA_app_pre {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  position: relative;
  background-color: black;
}
.DA_app_pre .left {
  font-family: "Shippori Mincho", serif;
  color: whitesmoke;
  width: 30%;
  padding: 0 10%;
  border-right: rgba(255, 255, 255, 0.3019607843) solid 1px;
}
.DA_app_pre .left h1 {
  margin-bottom: 3rem;
}
.DA_app_pre .right {
  width: 30%;
  padding: 0 10%;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: center;
  color: ghostwhite;
}
.DA_app_pre .right p i {
  margin-left: 10px;
}
.DA_app_pre .right > div {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: center;
  border: rgba(234, 253, 255, 0.7411764706) solid 1px;
  width: 30%;
  padding: 1%;
}
.DA_app_pre .right > div i {
  font-size: 4rem;
}
.DA_app_pre .right > div:hover {
  background-color: rgba(0, 0, 0, 0.3960784314);
  transform: scale(1.01);
}
.DA_app_pre .background {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  background-image: url("./img/background_app.png");
  filter: blur(3px) brightness(0.5);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.zi_1 {
  z-index: 1;
}

@media screen and (max-width: 1000px) {
  .DA_app_pre {
    flex-direction: column;
    overflow: hidden scroll;
  }
  .DA_app_pre > div {
    width: 90% !important;
    padding: 0;
  }
}
/*# sourceMappingURL=style.css.map */