body {
  overflow: hidden;
}

.desktop {
  background-color: #f5f5f2;
  display: flex;
  flex-direction: row;
  justify-content: center;
  width: 100%;
  height: 100%;
  overflow-y: none;
  display: flex;
  justify-content: center;
  align-items: center;
}

.desktop .area-carregamento {
  background-color: #f5f5f2;
  width: 300px; 
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  overflow-y: none;
}

.desktop .group {
  width: 100%;
}

.desktop .text-wrapper {
  font-family: "Roboto Condensed", Helvetica;
  font-weight: 400;
  color: #005e96fc;
  font-size: 2rem;
  letter-spacing: 0;
  white-space: nowrap;
  margin-top: 1rem;
}

.desktop .img {
  width: 100%;
}

.desktop .component {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

.desktop .overlap-group-wrapper {
  width: 70%;
  height: 10px;
}

.desktop .overlap-group {
  height: 10px;
  border-radius: 30px;
  width: 100%;
}

.desktop .rectangle {
  width: 100%;
  background-color: #005e969e;
  opacity: 0.2;
  height: 1rem;
  border-radius: 30px;
  position: relative;
}

.desktop .rectangle-2 {
  position: relative;
  top: -1rem;
  width: 10px;
  background-color: #005e96;
  height: 1rem;
  border-radius: 30px;
  animation: expandWidth 2s infinite;
}

@keyframes expandWidth {
  0% {
    width: 10%;
  }
  100% {
    width: 100%;
  }
}


@media screen and (max-width: 1000px) {
  .desktop .area-carregamento {
    width: 600px;
  }

  .desktop .text-wrapper {
    font-size: 3.5rem;
  }
  .desktop .component {
    margin-top: 3rem;
  }

  .desktop .rectangle {
    height: 3rem;
  }

  .desktop .rectangle-2 {
    top: -3rem;
    height: 3rem;
  }
}