body {
  display: flex;
  justify-content: center;
  align-items: center;
}

p {
  color: #444444;
  font-size: 1.3em;
  font-weight: 500;
  font-family: Montserrat, sans-serif;
}

.calcContainer {
  display: flex;
  align-items: center;
  align-content: center;
  flex-direction: column;
}

.textHeader {
  padding: 10px;
  font-size: 1.3em;
  font-weight: 900;
  text-align: center;
}

.container {
  display: flex;
  align-content: center;
  justify-content: center;
  align-items: center;
  max-width: 90%;
  flex-direction: row;
}

.boxContainerAgua {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex-direction: column;
  max-width: 100%;
  text-align: center;
}

.subBoxContainerAgua {
  display: flex;
  flex-direction: column;
  max-width: 100%;
}

.boxContainer {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex-direction: column;
  max-width: 100%;
  text-align: center;
}

.generalBox2 img {
  width: 70%;
  height: auto;
  transition: all 1s;
}

.generalBox img {
  max-width: 100%;
  height: auto;
  transition: all 1s;
}

.generalBox2 img:hover {
  transform: scale(1.3);
}

.generalBox img:hover {
  transform: scale(1.3);
}

.generalBox2 {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000022;
  border: solid #fff 3px;
  border-radius: 50px;
  width: 12rem;
  height: 5rem;
  padding-right: 15px;
  margin-bottom: 20px;
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.generalBox {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000022;
  border: solid #fff 3px;
  border-radius: 50px;
  width: 10rem;
  height: 10rem;
  margin: 0.5em;
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.resultBox {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000022;
  border: solid #fff 3px;
  border-radius: 50px;
  width: 15rem;
  min-height: 60px;
  margin: 0.5em;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  color: #fff;
  font-size: 20px;
  font-weight: 900;
  font-family: Montserrat, sans-serif;
  transition: all 1s;
}

.resultBox:hover {
  transform: scale(1.1);
}

span.num {
  display: grid;
  color: #fff;
  place-items: center;
  font-size: 1.3em;
  font-weight: 900;
  font-family: Montserrat, sans-serif;
}

.arrow img{
  width: 2em;
}

.textFooter {
  padding: 10px;
  font-size: 0.9em;
  font-weight: 900;
  text-align: center;
  width: 80%;
}

.loading, .loading:before, .loading:after {
  border-radius: 50%;
  width: 1.5em;
  height: 1.5em;
  animation-fill-mode: both;
  animation: bblFadInOut 1.8s infinite ease-in-out;
}
.loading {
  color: #FFF;
  font-size: 7px;
  position: relative;
  text-indent: -9999em;
  transform: translateZ(0);
  animation-delay: -0.16s;
}
.loading:before,
.loading:after {
  content: '';
  position: absolute;
}
.loading:before {
  left: -3.5em;
  animation-delay: -0.32s;
}
.loading:after {
  left: 3.5em;
}

@media (max-width: 767px) {
  .container {
    flex-direction: column;
  }

  .arrow img{
    transform: rotate(90deg);
    transform-origin: center;
  }
}

@keyframes bblFadInOut {
  0%, 80%, 100% { box-shadow: 0 2.5em 0 -1.3em }
  40% { box-shadow: 0 2.5em 0 0 }
}

@keyframes increase {
  0% {
      transform: scale(1);
  }
  100% {
      transform: scale(1.2);
  }
}

.resultBox .num {
  animation: increase 0.5s ease-in-out;
}
