.section {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  display: flex;
}

.logo-container {
  flex-flow: column;
  align-items: center;
  max-width: 300px;
  display: flex;
}

.body {
  background-color: #fff;
}

.logo.small {
  max-width: 200px;
  display: none;
}

.logo.intro {
  max-width: 100px;
}

.preloader {
  z-index: 10000;
  justify-content: center;
  align-items: center;
  display: none;
  position: fixed;
  inset: 0%;
}

.preloader-indicator {
  z-index: 25;
  background-color: #ffffff24;
  width: 40%;
  max-width: 250px;
  height: 4px;
  position: relative;
}

.prloader-fill {
  color: #fff;
  background-color: #fff;
  width: 20%;
  height: 100%;
}

.preloader-top {
  background-color: #dedfe4;
  justify-content: center;
  align-items: flex-end;
  height: 50%;
  display: flex;
  position: absolute;
  inset: 0% 0% auto;
}

.preloader-logo-container {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  min-width: 250px;
  padding-bottom: 2rem;
  display: flex;
}

.preloader-logo {
  width: 100%;
  height: auto;
}

.preloader-bottom {
  background-color: #dedfe5;
  height: 50%;
  position: absolute;
  inset: auto 0% 0%;
}

@media screen and (max-width: 479px) {
  .logo.small {
    display: inline-flex;
  }

  .logo.big {
    display: none;
  }
}


