@charset "utf-8";
:root {
  --color-blue: #007bff;
  --color-indigo: #6610f2;
  --color-purple: #6f42c1;
  --color-pink: #e83e8c;
  --color-red: #dc3545;
  --color-orange: #fd7e14;
  --color-yellow: #ffc107;
  --color-green: #28a745;
  --color-teal: #20c997;
  --color-cyan: #17a2b8;
  --color-white: #fff;
  --color-black: #000;
  --color-bg: #292929;
  --color-transparent: rgba(0, 0, 0, 0);
  --color-gray: #868e96;
  --color-gray-dark: #343a40;
  --color-primary: #007bff;
  --color-secondary: #868e96;
  --color-success: #28a745;
  --color-info: #17a2b8;
  --color-warning: #ffc107;
  --color-danger: #dc3545;
  --color-light: #f8f9fa;
  --color-dark: #343a40;
  --breakpoint-xs: 0;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
  --font-headline: 'PT Sans', sans-serif;
  --font-theme: 'PT Sans', sans-serif;
}
@-ms-viewport {
  width: device-width
}
body {
  font-size: 15px;
  font-weight: 600;
  background: rgba(0, 0, 0, 0);
  font-family: var(--font-theme);
  color: var(--color-black);
  opacity: 1;
  overflow-x: hidden;
  font-style: normal;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.is-loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: translate3d(0, 0, 0);
  overflow: hidden;
}
.is-loading .app-container {
  opacity: 0;
}
.loading {
  display: none;
}
.is-loading .loading {
  display: block;
}
span.loading {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
  background-image: url(../images/loading.svg);
  z-index: 9999;
}
html, body {
  height: 100%;
  overflow: hidden;
  position: fixed;
  width: 100%;
  transform: translateZ(0);
}
.is-hide {
  display: none !important;
}
.is-show {
  display: block !important;
}
p {
  line-height: 160%;
  margin-bottom: 25px;
  margin: 0;
}
a {
  text-decoration: none;
  outline: none;
}
button, a {
  outline: none;
  transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
}
h1, h2, h3, h4, h5, h6 {
  font-weight: 400;
  font-size: 100%;
  font-family: var(--font-headline);
}
.app-container {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  /*
  max-width: 360px;
  height: 552px;	
*/
  margin: 0px auto 0 auto;
  background: #fff;
  position: relative;
  opacity: 1;
  transition: opacity 1s ease-in-out;
  overflow-y: hidden;
  overflow-x: hidden;
}
/*Theme CSS*/
.intro-bg {
  display: block;
  position: relative;
  z-index: 1;
}
.intro-bg img.is-bg {
  width: 100%;
}
.ani-box {
  position: absolute;
  z-index: 2;
  width: 13%;
  top: 37%;
  left: 52%;
  -webkit-animation: updown 1s infinite alternate;
  animation: updown 1s infinite alternate;
}
.ani-box img {
  width: 100%;
}
@-webkit-keyframes updown {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-15px);
  }
}
@keyframes updown {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-15px);
  }
}
.app-nav {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  -webkit-animation: ops 1s infinite alternate;
  animation: ops 1s infinite alternate;
}
@-webkit-keyframes ops {
  0% {
    opacity: 0.3;
  }
  100% {
    opacity: 1;
  }
}
@keyframes ops {
  0% {
    opacity: 0.3;
  }
  100% {
    opacity: 1;
  }
}
.app-nav ul {
  position: absolute;
  left: 0;
  width: 100%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-around;
}
.app-nav ul li {
  width: 25%;
  text-align: center;
  position: relative;
}
.app-nav ul li a {
  display: inline-block;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  width: 30%;
}
.app-nav ul li a img {
  width: 100%;
}
.app-nav .top-nav {
  top: 13%;
}
.app-nav .bottom-nav {
  bottom: 6%;
}
.app-nav ul.top-nav li:nth-child(1) a {
  width: 32%;
}
.app-nav ul.top-nav li:nth-child(2) a {
  width: 32%;
}
.app-nav ul.top-nav li:nth-child(3) a {
  width: 32%;
}
.app-nav ul.top-nav li:nth-child(4) a {
  width: 22%;
}
.app-nav ul.bottom-nav li:nth-child(1) a {
  width: 32%;
}
.app-nav ul.bottom-nav li:nth-child(2) a {
  width: 32%;
}
.app-nav ul.bottom-nav li:nth-child(3) a {
  width: 32%;
}
.app-nav ul.bottom-nav li:nth-child(4) a {
  width: 27%;
}
.app-features {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease-in-out;
}
.is-features .app-features {
  opacity: 1;
  pointer-events: inherit;
}
.app-features ul {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.app-features ul li {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
}
.app-features ul li.is-active {
  display: block;
}
.app-features ul li img {
  width: 100%;
}
.btn-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 100;
  display: block;
  width: 25px;
  height: 25px;
}
.btn-close svg {
  width: 100%;
  transition: all 0.2s ease-in-out;
}
.btn-close svg path#Path-close {
  fill: #191919;
  transition: all 0.2s ease-in-out;
}
.btn-close svg:hover path#Path-close {
  fill: #dc3545;
}