body {
  overflow-y: visible;
  height: unset;
}
body .footer {
  position: relative;
  margin-top: 3rem;
}

.content {
  display: flex;
  width: 80vw;
  min-height: auto;
  height: auto;
  padding: 1rem 2rem;
  margin: 0 auto;
  line-break: loose;
  flex-direction: column;
}
.content .simple-page {
  width: 90%;
  min-height: 67vh;
}
.content .simple-page .page-body {
  width: 80%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}
@media only screen and (max-width: 1023px) {
  .content .simple-page .page-body {
    width: 100%;
    flex-direction: column-reverse;
  }
}
.content .simple-page h1 {
  opacity: 0;
  transform: translateY(10px);
  animation: animate-bottom 2s forwards cubic-bezier(0.5, 1, 0.89, 1);
}
.content .simple-page p {
  opacity: 0;
  transform: translateY(10px);
  animation: animate-bottom 2s 0.2s forwards cubic-bezier(0.5, 1, 0.89, 1);
}
@media only screen and (max-width: 1023px) {
  .content .simple-page .other-contacts {
    display: flex;
    flex-direction: column-reverse;
  }
}
@media only screen and (max-width: 1023px) {
  .content .simple-page .other-contacts div {
    margin-top: 1rem;
    flex-direction: column-reverse;
  }
  .content .simple-page .other-contacts div h2 {
    margin-bottom: 0.6rem;
  }
}
@media only screen and (max-width: 1023px) {
  .content .simple-page .phones {
    margin-bottom: 3rem;
  }
}
@media only screen and (max-width: 1023px) {
  .content .simple-page .phones .phone {
    margin-top: 3rem;
    flex-direction: column-reverse;
  }
}
@media only screen and (max-width: 1023px) {
  .content .simple-page .phones .phone h2 {
    margin-bottom: 0.6rem;
  }
}
.content .simple-page .counters {
  display: flex;
  margin-top: 3rem;
}
.content .simple-page .counters .item {
  display: flex;
  margin-right: 2rem;
  flex-direction: column;
  opacity: 0;
  transform: translateY(10px);
  animation: animate-bottom 2s 0.4s forwards cubic-bezier(0.5, 1, 0.89, 1);
}
.content .simple-page .counters .item span {
  font-size: 0.8rem;
}
.content .simple-page .counters .item span.count {
  font-size: 2.4rem;
  font-weight: 900;
}

@keyframes animate-bottom {
  100% {
    opacity: 1;
    transform: translateY(0px) translateX(0px);
  }
}

/*# sourceMappingURL=simple-page.css.map */
