@charset "UTF-8";
.content {
  display: flex;
  width: 80vw;
  height: 100%;
  padding: 1rem 2rem;
  margin: 0 auto;
  align-items: center;
  line-break: loose;
}
@media only screen and (max-width: 1023px) {
  .content {
    flex-direction: column-reverse;
    height: unset;
  }
}
.content .products {
  padding: 0 6rem 0 2rem;
  display: flex;
  flex-direction: column;
  transform: translateX(-50px);
  opacity: 0;
  animation: animate-bottom 1s forwards cubic-bezier(0.5, 1, 0.89, 1);
}
@media only screen and (max-width: 1023px) {
  .content .products {
    padding: 0;
    margin-top: 2rem;
  }
}
.content .products h5 {
  font-size: 1rem;
  margin: 0;
}
.content .products .select-product {
  color: #0066FF;
}
.content .products ul {
  list-style: none;
  padding: 0;
}
.content .products ul li {
  padding: 1rem 0;
}
.content .products ul li a {
  text-decoration: none;
  color: #000;
}
.content .products ul li.inactive {
  opacity: 0.3;
}
.content .products ul li.inactive h5::after {
  content: "скоро";
  font-size: 0.6rem;
  padding: 0.2rem 0.6rem;
  margin-left: 10px;
  background: rgba(0, 102, 255, 0.45);
  color: #fff;
  position: relative;
  top: -6px;
}
.content .products ul li h5 {
  font-size: 1.6rem;
  padding: 0;
  margin: 0.2rem 0;
}
.content .products ul li span {
  font-size: 0.8rem;
}
.content .texts {
  display: flex;
  flex-direction: column;
  text-transform: uppercase;
  font-weight: 600;
  width: 40vw;
  padding: 0 3rem;
}
@media only screen and (max-width: 1023px) {
  .content .texts {
    padding: 0;
    width: 100%;
    margin-top: 3rem;
    margin-bottom: 3rem;
  }
}
.content .texts h1 {
  font-size: 3.6rem;
  margin-bottom: 1rem;
  margin-top: 0;
  filter: blur(5px);
  color: #0066FF;
  animation: animate 1s forwards cubic-bezier(0.5, 1, 0.89, 1);
}
.content .texts h1 span {
  font-size: 3.6rem;
  color: #0066FF;
  opacity: 0;
  filter: blur(10px);
  animation: animate 2s forwards cubic-bezier(0.5, 1, 0.89, 1);
}
.content .texts span {
  font-size: 1.6rem;
  line-height: 2.4rem;
  transform: translateY(10px);
  opacity: 0;
  animation: animate-bottom 1s forwards cubic-bezier(0.5, 1, 0.89, 1);
}
.content .texts .text {
  transform: translateY(10px);
  animation: animate-bottom 2.2s forwards cubic-bezier(0.5, 1, 0.89, 1);
}
.content .texts .text p {
  font-size: 0.8rem;
  text-transform: none;
  font-weight: normal;
  color: #5b5b5b;
}
.content .texts .counters {
  display: flex;
  margin-top: 3rem;
  justify-content: space-between;
}
@media only screen and (max-width: 1023px) {
  .content .texts .counters {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
.content .texts .counters .item {
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(10px);
  animation: animate-bottom 2s forwards cubic-bezier(0.5, 1, 0.89, 1);
}
@media only screen and (max-width: 1023px) {
  .content .texts .counters .item {
    justify-content: flex-start;
    text-align: center;
  }
}
.content .texts .counters .item span {
  font-size: 0.8rem;
}
.content .texts .counters .item span.count {
  font-size: 2.4rem;
  font-weight: 900;
}

@keyframes animate {
  50% {
    color: #0066FF;
    transform: translateX(0px);
  }
  100% {
    opacity: 1;
    color: #000;
    filter: blur(0);
  }
}
@keyframes animate-bottom {
  100% {
    opacity: 1;
    transform: translateY(0px) translateX(0px);
  }
}

/*# sourceMappingURL=homepage.css.map */
