.container-app {
  margin-top: 30px;
  margin-bottom: 40px;
}
.container-app .content {
  animation: contentIn 1s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
}
.container-app .content .title {
  font-size: 24px;
  margin-bottom: 10px;
  margin-top: 50px;
}
.container-app .content .link {
  font-size: 15px;
  color: #6ea8fe;
  margin-top: 5px;
}
.container-app .content .link:hover {
  color: rgba(110, 168, 254, 0.6);
}
.container-app .content .text {
  color: #636972;
  font-size: 14px;
  line-height: 24px;
  margin-top: 10px;
}
.container-app .content .qr-code {
  margin-top: 20px;
}
.container-app .content .qr-code .qr-code-item {
  width: 50%;
}
.container-app .content .qr-code .qr-code-item img {
  width: 85%;
  border-radius: 6px;
  box-shadow: 0 0.0125rem 0.25rem rgba(0, 0, 0, 0.1254901961) !important;
}
.container-app .content .qr-code .qr-code-item span {
  font-size: 13px;
  margin-top: 16px;
  color: #636972;
}
.container-app .app-img {
  display: flex;
  justify-content: flex-end;
}
.container-app .app-img img {
  width: 94%;
  animation: imgIn 1.2s cubic-bezier(0.455, 0.03, 0.515, 0.955) both;
}
.container-app .xqb-row {
  margin-top: 50px;
}

@keyframes contentIn {
  0% {
    filter: blur(12px);
    transform: translateY(-100px);
    opacity: 0;
  }
  100% {
    filter: blur(0px);
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes imgIn {
  0% {
    transform: translateY(-100%) rotateX(-180deg);
    transform-origin: 50% 100%;
    scale: 0.2;
    opacity: 0;
  }
  100% {
    transform: translateY(0) rotateX(0);
    transform-origin: 50% 0%;
    scale: 1;
    opacity: 1;
  }
}
@media (max-width: 991.98px) {
  .container-app {
    margin-top: 12px;
  }
  .container-app .content .title {
    margin-top: 0px;
    margin-bottom: 0px;
  }
  .container-app .content .text {
    margin-top: 5px;
  }
  .container-app .app-img {
    justify-content: center;
    margin-top: 20px;
  }
}
