body,
html {
  font-family: "Lato";
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

.open-walkthrough {
  border: 0;
  background: hsl(222.7deg, 100%, 10.2%);
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 12px;
  height: 40px;
  width: 120px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -20px;
  margin-left: -60px;
}

.walkthrough {
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.23), 0 10px 40px rgba(0, 0, 0, 0.19);
  background: linear-gradient(to right bottom, #361c7f, #000f34);
  border-radius: 0;
  display: none;
  flex-direction: column;
  flex: 0 0 auto;
  font-size: 14px;
  overflow: hidden;
  transition: opacity 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  z-index: 1000;
  box-shadow: none;
  height: 100%;
  width: 100%;
}
.walkthrough.show {
  display: flex;
  opacity: 0;
  transform: translateY(72px);
}
.walkthrough.reveal {
  opacity: 1;
  transform: translateY(0);
}
.walkthrough .walkthrough-body {
  align-items: center;
  display: flex;
  flex: 1;
  text-align: center;
  /* keyframe */
}
.walkthrough .walkthrough-body .prev-screen,
.walkthrough .walkthrough-body .next-screen {
  align-self: stretch;
  background: none;
  border: 0;
  margin-top: 40px;
  color: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  flex: 0 0 auto;
  font-size: 24px;
  opacity: 1;
  outline: none;
  padding: 16px;
  transform: scale(1);
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), color 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  z-index: 1000;
  position: absolute;
  height: 100%;
  margin-top: 0;
}
.walkthrough .walkthrough-body .prev-screen:hover, .walkthrough .walkthrough-body .prev-screen:active,
.walkthrough .walkthrough-body .next-screen:hover,
.walkthrough .walkthrough-body .next-screen:active {
  color: white;
  transform-origin: center;
  transform: scale(1.25);
}
.walkthrough .walkthrough-body .prev-screen:disabled,
.walkthrough .walkthrough-body .next-screen:disabled {
  opacity: 0;
}
.walkthrough .walkthrough-body .prev-screen {
  order: 1;
  padding-left: 6px;
}
.walkthrough .walkthrough-body .next-screen {
  order: 3;
  right: 0;
}
.walkthrough .walkthrough-body .screens {
  flex: 1;
  align-self: stretch;
  position: relative;
  padding: 0;
}
.walkthrough .walkthrough-body .screens .screen {
  position: absolute;
  list-style-type: none;
  width: 100%;
  height: 100%;
  background: linear-gradient(#346fff, hsl(222.7deg, 100%, 10.2%));
}
.walkthrough .walkthrough-body .screens .screen.active .body .title {
  display: block;
}
.walkthrough .walkthrough-body .screens .screen.active .body .phone {
  display: block;
}
.walkthrough .walkthrough-body .screens .screen .body {
  height: 100%;
  width: 100%;
  margin-top: 23px;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}
.walkthrough .walkthrough-body .screens .screen .body .title {
  margin-bottom: 20px;
  display: none;
}
.walkthrough .walkthrough-body .screens .screen .body .title h1 {
  text-align: center;
  color: #fff;
  margin-top: 0;
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 0;
  line-height: 30px;
}
@media (max-width: 360px) {
  .walkthrough .walkthrough-body .screens .screen .body .title h1 {
    font-size: 26px;
  }
}
.walkthrough .walkthrough-body .screens .screen .body .title h1 span {
  display: block;
}
.walkthrough .walkthrough-body .screens .screen .body .phone {
  flex-grow: 1;
  position: relative;
  display: none;
}
.walkthrough .walkthrough-body .screens .screen .body .phone .layer {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: absolute;
  top: 0;
  left: 0;
}
.walkthrough .walkthrough-body .screens .screen.screen0 .body .phone .layer.main {
  animation: slideFadeUp 0.5s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
  animation-delay: 0.5s;
  opacity: 0;
}
.walkthrough .walkthrough-body .screens .screen.screen0 .body .phone .check {
  animation: slideFadeUpShort 1s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
  opacity: 0;
}
.walkthrough .walkthrough-body .screens .screen.screen0 .body .phone .check.check1 {
  animation-delay: 1.2s;
}
.walkthrough .walkthrough-body .screens .screen.screen0 .body .phone .check.check2 {
  animation-delay: 1.4s;
}
.walkthrough .walkthrough-body .screens .screen.screen0 .body .phone .check.check3 {
  animation-delay: 1.6s;
}
.walkthrough .walkthrough-body .screens .screen.screen0 .body .phone .check.check4 {
  animation-delay: 1.8s;
}
.walkthrough .walkthrough-body .screens .screen.screen0 .body .phone .check.check5 {
  animation-delay: 2s;
}
.walkthrough .walkthrough-body .screens .screen.screen0 .body .phone .check.check6 {
  animation-delay: 2.2s;
}
.walkthrough .walkthrough-body .screens .screen.screen1 .body .phone .layer.main, .walkthrough .walkthrough-body .screens .screen.screen2 .body .phone .layer.main {
  animation: slideFadeUp 0.5s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
  animation-delay: 0.5s;
  opacity: 0;
}
.walkthrough .walkthrough-body .screens .screen.screen1 .body .phone .signal.zoomInFadeIn, .walkthrough .walkthrough-body .screens .screen.screen2 .body .phone .signal.zoomInFadeIn {
  animation: zoomInFadeIn 1s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
  opacity: 0;
  transform: scale(0.6);
}
.walkthrough .walkthrough-body .screens .screen.screen1 .body .phone .signal.signal1, .walkthrough .walkthrough-body .screens .screen.screen2 .body .phone .signal.signal1 {
  animation-delay: 1.2s;
  transform-origin: 0 30%;
}
.walkthrough .walkthrough-body .screens .screen.screen1 .body .phone .signal.signal2, .walkthrough .walkthrough-body .screens .screen.screen2 .body .phone .signal.signal2 {
  animation-delay: 1.4s;
  transform-origin: 0 35%;
}
.walkthrough .walkthrough-body .screens .screen.screen1 .body .phone .signal.signal3, .walkthrough .walkthrough-body .screens .screen.screen2 .body .phone .signal.signal3 {
  animation-delay: 1.6s;
  transform-origin: 30% 35%;
}
.walkthrough .walkthrough-body .screens .screen.screen1 .body .phone .signal.signal4, .walkthrough .walkthrough-body .screens .screen.screen2 .body .phone .signal.signal4 {
  animation: slideFadeUpShort 1s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
  opacity: 0;
  top: 50px;
  animation-delay: 1.8s;
}
.walkthrough .walkthrough-body .screens .screen.screen3 .body .phone .layer.main {
  animation: slideFadeUp 0.5s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
  animation-delay: 0.5s;
  opacity: 0;
}
.walkthrough .walkthrough-body .screens .screen.screen3 .body .phone .signal {
  animation: slideFadeUpShort 1s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
  opacity: 0;
  top: 50px;
}
.walkthrough .walkthrough-body .screens .screen.screen3 .body .phone .signal.signal1 {
  animation-delay: 1.2s;
}
.walkthrough .walkthrough-body .screens .screen.screen3 .body .phone .signal.signal2 {
  animation-delay: 1.4s;
}
.walkthrough .walkthrough-body .screens .screen.screen3 .body .phone .signal.signal3 {
  animation-delay: 1.6s;
}
.walkthrough .walkthrough-body .screens .screen.screen3 .body .phone .signal.signal4 {
  animation-delay: 1.8s;
}
.walkthrough .walkthrough-body .screens .screen.screen3 .body .phone .signal.signal5 {
  animation-delay: 2s;
}
.walkthrough .walkthrough-body .screens .screen.screen3 .body .phone .signal.signal6 {
  animation-delay: 2.2s;
}
.walkthrough .walkthrough-body .screens .screen.screen3 .body .phone .signal.signal7 {
  animation-delay: 2.4s;
}
.walkthrough .walkthrough-body .screens .screen.screen3 .body .phone .signal.signal8 {
  animation-delay: 2.6s;
}
.walkthrough .walkthrough-body .screens .screen.screen3 .body .phone .signal.signal9 {
  animation-delay: 2.8s;
}
.walkthrough .walkthrough-body .screens .screen.screen4 .body .phone .layer.main {
  animation: slideFadeUp 0.5s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
  animation-delay: 0.5s;
  opacity: 0;
}
.walkthrough .walkthrough-body .screens .screen.screen4 .body .phone .news {
  animation: slideFadeUpShort 1s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
  opacity: 0;
}
.walkthrough .walkthrough-body .screens .screen.screen4 .body .phone .news.news1 {
  animation-delay: 1.2s;
}
.walkthrough .walkthrough-body .screens .screen.screen4 .body .phone .news.news2 {
  animation-delay: 1.4s;
}
@keyframes slideFadeUp {
  0% {
    opacity: 0;
    top: 100%;
  }
  100% {
    opacity: 1;
    top: 0;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes slideFadeUpShort {
  0% {
    opacity: 0;
    top: 50px;
  }
  100% {
    opacity: 1;
    top: 0;
  }
}
@keyframes zoomInFadeIn {
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.walkthrough .walkthrough-body .media {
  background: rgba(255, 255, 255, 0.25);
  border-radius: 132px;
  height: 132px;
  margin: 32px auto;
  width: 132px;
}
.walkthrough .walkthrough-body h3 {
  font-size: 15px;
  line-height: 1.4em;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}
.walkthrough .walkthrough-body p {
  line-height: 1.6em;
  font-size: 13px;
  margin-top: 16px;
  padding-top: 0;
  color: rgba(255, 255, 255, 0.8);
}
.walkthrough .walkthrough-pagination {
  align-items: center;
  display: flex;
  justify-content: center;
  margin-top: 12vh;
  margin: 0;
  position: absolute;
  right: 20px;
  top: 30px;
  z-index: 1;
}
.walkthrough .walkthrough-pagination .dot {
  background: rgba(0, 0, 0, 0.25);
  border-radius: 8px;
  height: 8px;
  margin: 0 4px;
  transform: scale(0.75);
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), background 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  width: 8px;
}
.walkthrough .walkthrough-pagination .dot.active {
  background: white;
  transform: scale(1);
  transition-delay: 0.4s;
}
.walkthrough .walkthrough-footer {
  display: flex;
  flex: 0 0 auto;
  justify-content: space-around;
  padding: 0;
  position: fixed;
  width: 100%;
  bottom: 0;
  z-index: 1;
}
.walkthrough .walkthrough-footer button {
  height: 60px;
  border: 0;
  background: var(--ion-color-primary);
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  border-radius: 0;
  color: white;
  flex: 1;
  font-size: 14px;
  margin: 0;
  outline: 0;
  padding: 12px;
  transition: opacity 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), background 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  cursor: pointer;
}
.walkthrough .walkthrough-footer button:active {
  background: #00164e;
}
.walkthrough .walkthrough-footer button:disabled {
  cursor: pointer;
}
.walkthrough .walkthrough-footer button.finish {
  background: var(--ion-color-primary-shade);
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  transform-origin: center;
  transition: opacity 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), background 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.walkthrough .walkthrough-footer button.finish:hover {
  background: var(--ion-color-primary-shade);
}
.walkthrough .walkthrough-footer button.finish:active {
  background: var(--ion-color-primary-shade);
}
.walkthrough .walkthrough-footer button.finish.active {
  transform: scale(1, 1);
  opacity: 1;
}
.walkthrough .screens {
  margin: 0;
}
.walkthrough .screens .media .status-badge {
  left: 136px;
  opacity: 0;
  position: absolute;
  top: 104px;
  transform: scale(0);
  transition: opacity 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition-delay: 0.6s;
}
.walkthrough .screens .media .status-badge i {
  display: inline;
}
.walkthrough .screens .media.logo .logo {
  margin-top: 20px;
  opacity: 0;
  transform: translateY(-60px);
  transition: opacity 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  width: 80px;
}
.walkthrough .screens .media .icon {
  position: absolute;
  opacity: 0;
  transform: translateY(-30px);
  transition: opacity 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  width: 132px;
  left: 48px;
  top: 32px;
}
.walkthrough .screens .media.bars .icon {
  transform: translate(40px, 20px);
}
.walkthrough .screens .media.bars .icon:nth-of-type(2) {
  transform: scale(0.25);
  transform-origin: 30% 54%;
}
.walkthrough .screens .media.bars .icon:nth-of-type(3) {
  transform: scale(0.25);
  transform-origin: 30% 40%;
}
.walkthrough .screens .media.bars .icon:nth-of-type(4) {
  transform: scale(0.25);
  transform-origin: 30% 26%;
}
.walkthrough .screens .media.files .icon {
  transform: translate(40px, 20px);
}
.walkthrough .screens .media.comm .icon {
  transform: scale(0.25);
  transform-origin: 29% 73%;
}
.walkthrough .screens .media.comm .icon:nth-child(2) {
  transform-origin: 66% 85%;
}
.walkthrough .screens .screen {
  opacity: 0;
  position: absolute;
  transform: translateX(-72px);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.walkthrough .screens .screen.active {
  opacity: 1;
  transform: translateX(0) scale(1);
  transition-delay: 0.4s;
}
.walkthrough .screens .screen.active ~ .screen {
  opacity: 0;
  transform: translateX(72px);
}
.walkthrough .screens .screen.active .media .status-badge {
  opacity: 1;
  transform: scale(1.75);
}
.walkthrough .screens .screen.active .media.logo .logo {
  opacity: 0.8;
  transform: translateY(0);
  transition-delay: 0.6s;
}
.walkthrough .screens .screen.active .media.logo .status-badge {
  transition-delay: 1s;
}
.walkthrough .screens .screen.active .media.books .icon {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.6s;
}
.walkthrough .screens .screen.active .media.books .icon:nth-child(2) {
  transition-delay: 0.725s;
}
.walkthrough .screens .screen.active .media.books .icon:nth-child(3) {
  transition-delay: 0.85s;
}
.walkthrough .screens .screen.active .media.books .status-badge {
  transition-delay: 1.4s;
}
.walkthrough .screens .screen.active .media.bars .icon {
  opacity: 1;
  transform: translate(0) scale(1);
  transition-delay: 0.6s;
}
.walkthrough .screens .screen.active .media.bars .icon:nth-child(2) {
  transition-delay: 1.05s;
}
.walkthrough .screens .screen.active .media.bars .icon:nth-child(3) {
  transition-delay: 0.925s;
}
.walkthrough .screens .screen.active .media.bars .icon:nth-child(4) {
  transition-delay: 0.8s;
}
.walkthrough .screens .screen.active .media.files .icon {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.9s;
}
.walkthrough .screens .screen.active .media.files .icon:nth-child(3) {
  transition-delay: 0.8s;
}
.walkthrough .screens .screen.active .media.files .icon:nth-child(2) {
  transition-delay: 0.7s;
}
.walkthrough .screens .screen.active .media.files .icon:nth-child(1) {
  transition-delay: 0.6s;
}
.walkthrough .screens .screen.active .media.files .status-badge {
  transition-delay: 1.6s;
}
.walkthrough .screens .screen.active .media.comm .icon {
  opacity: 1;
  transform: scale(1);
  transition-delay: 0.6s;
}
.walkthrough .screens .screen.active .media.comm .icon:nth-child(2) {
  transition-delay: 0.8s;
}
.walkthrough .screens .screen.active .media.comm .status-badge {
  transition-delay: 1.6s;
}

.screen {
  width: 100%;
}
.screen > h3 {
  color: #ffffff !important;
  font-size: 20px !important;
  font-weight: 800;
}
.screen > h3.h3-logo .sub-title {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
}
.screen > p {
  font-size: 14px !important;
}
.screen .media {
  height: 69vw !important;
  width: 69vw !important;
  margin: 50px auto !important;
  border-radius: 50% !important;
  max-width: 400px;
  max-height: 400px;
}
@media (max-height: 768px) {
  .screen .media {
    margin: 35px auto !important;
  }
}
@media (max-height: 568px) {
  .screen .media {
    margin: 20px auto !important;
  }
}
.screen .media .icons-wrap {
  position: relative !important;
}
.screen .media.logo {
  display: flex;
  justify-content: center;
  align-items: center;
}
.screen .media.logo img {
  margin: 0 !important;
  width: 51vw !important;
}
.screen .media.books img {
  margin: 0 !important;
  width: 264px !important;
  left: 34px !important;
  top: 66px !important;
}

img.icon {
  width: 100% !important;
  left: 0 !important;
  top: 0 !important;
}

#wave-comp {
  position: absolute;
  bottom: 60px;
  width: 100%;
  height: auto;
}

.lang-option {
  position: absolute;
  top: 55px;
  right: 20px;
  z-index: 1;
}

ion-button#get-app {
  --background: #4cb944;
}

ion-icon.arrow-forward-icon {
  position: relative;
  top: 2px;
}

#get-app-bottom-btn {
  background: #4cb944;
}
#get-app-bottom-btn ion-icon {
  position: relative;
  top: 2px;
}

#preloader {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(#346fff, hsl(222.7deg, 100%, 10.2%));
}
#preloader.hide {
  display: none;
}
#preloader .items {
  width: 80px;
}
#preloader .items .logo {
  width: 100%;
  opacity: 0.7;
}

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