/* loading */
#load_container {
  margin: 0;
  padding: 0;
  border: 0;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #fff;
  z-index: 80;
  overflow: hidden;
  pointer-events: none;
}

#load_logo {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-content: center;
}

#load_logo img {
  width: 400px;
  animation: fadeLoading 4s 3s both;
}

@media only screen and (max-width:780px) {
  #load_logo img {
    width: 90%;
  }
}

#load_container #load_svg {
  display: none;
  position: absolute;
  z-index: 105;
}

.f_fade{
  animation: fadeLoading 1s both;
}
.s_fade{
  animation: fadeLoading 1.5s 1s both;
}

@keyframes fadeLoading {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    display: none;
  }
}