@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500&family=Poppins:wght@400;500;600;800;900&family=IBM+Plex+Mono:wght@100;300;400;500&family=Roboto:wght@300;400&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  scroll-behavior: smooth;
}
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}
:root {
  --color-1: #000000;
  --color-2: #007bff;
  --color-3: #010088;
  --color-4: #1d2238;

  --font-default: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  --font-primary: Poppins, sans-serif;
  --font-secondary: Poppins, sans-serif;

  --gradient-1: #e100ff, #6b81fa, #60bad6;
}
h2.p-heading {
  border-top: 3px solid #F8F7F6;
  border-bottom: 3px solid #F8F7F6;
  border-right: 5px solid #33967E;
  border-left: 5px solid #33967E;
  color: #000;    
  font-weight: 600;
  padding: 7px; 
}
.p-headingstyle {   
  font-weight: 500;    
  font-size: 22px;      
  margin-top: 20px;                   
  font-family: Georgia, serif;
  color: #FF6600;
  text-shadow: 
      0px 0px 0 #000,  
      0px 0px 0 #000,
      0px 0px 0 #000,
      0px 1px 0 #000;
}
.p-heading3 {
  color: #000;
  font-weight: 500;
  font-size: 22px;
  margin-top: 10px;
  font-family: Georgia, serif;
}

.custom-breadcrumb {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  margin: 0;
  background-color: white;
}

.custom-breadcrumb-item {
  margin-right: 5px;
  font-weight: bold;
  font-size: 20px;
}

.custom-breadcrumb-item + .custom-breadcrumb-item::before {
  content: "/";
  margin-right: 5px;
}

.custom-breadcrumb-item a {
  text-decoration: none;
  color: #007bff;
  font-weight: bold;
  font-size: 20px;
}

.custom-breadcrumb-item.active {
  color: #000;
}

.row-layout {
  background-color: #F5F1A8;
  border-radius: 10px;
  display: flex;
  padding: 20px;
}

body {
  margin: 3em auto;
  max-width: 80%;
  background-color: #535254;
  color: #222;
  font-family: var(--font-primary), var(--font-default);
  font-size: 14.5px;
  overflow-wrap: break-word;
  line-height: 2em;
  -webkit-box-shadow: rgb(0 0 0 / 19%) 0 0 20px 0;
  box-shadow: rgb(0 0 0 / 19%) 0 0 20px 0;
}
::-moz-selection {
  background-color: #33967e;
  color: #fff;
}
::selection {
  background-color: #33967e;
  color: #000;
}
a {
  text-decoration: none;
  color: #fff;
}

header {
  font-family: var(--font-secondary);
  background: #33967e;
  text-align: center;
}

a.logo img {
  width: 50px;
  height: 50px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
}

a.logo {
  display: block;
  font-size: calc(2vw + 1.5em);
  color: #fff;
  letter-spacing: 1px;
  font-variant-caps: all-small-caps;
  line-height: 2em;
}
nav {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(70px, 1fr));
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 1px;
  margin-left: 1px;
  margin-right: 1px;
  white-space: nowrap;
  overflow-x: scroll;
  overflow-y: scroll;
  font-variant-caps: all-small-caps;
  background: #15192a;
  overflow: visible;
  border-bottom: 2px solid #33967e;
}
nav a {
  position: relative;
  line-height: 50px;
  font-weight: bold;
}
nav a::after,
nav a::before {
  content: "";
  position: absolute;
  height: 1px;
  background: #ccc;
  width: 0;
  bottom: 0;
  -webkit-transition: width 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  -o-transition: width 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  transition: width 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}
nav a::before {
  right: 0;
}
nav a::after {
  left: 0;
}
nav a:hover::after,
nav a:hover::before {
  width: 50%;
}
.showcase {
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
  background-size: cover;
  overflow: hidden;
  color: #fff;
}
.show {
  padding: 1em;
  height: auto;
  color: #dfdfdf;
  text-align: center;
}
.show-img {
  width: 10em;
  margin: 2em auto;
}
.show ul {
  margin: 1em 0;
}
.show li {
  font-size: 16px;
  list-style-type: none;
}
.show p {
  line-height: 2;
  margin: 10px 0;
  color: inherit;
  text-align: center;
}
.show li::before {
  content: "-  ";
}
.cnt {
  padding: 10px;
  background-color: #fff;
}

.cnt p a::before,
li a::before {
  content: "";
  position: absolute;
  height: 1px;
  background: var(--color-2);
  width: 0;
  bottom: 0;
  -isn: width 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  -o-transition: width 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  transition: width 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}
.cnt p a:hover::before,
li a:hover::before {
  width: 100%;
}

.cnt p a,
li a {
  position: relative;
  color: #0000FF;
  font-weight: bold;
  border-bottom: 1px dashed #0000FF;
}

.cnt p a:hover,
li a:hover {
  opacity: 1;
  border-color: var(--color-2);
}
.app-container {
  max-width: 80%;
  margin: 50px auto;
  padding: 20px;
  background-color: #fff;
  border-radius: 10px;
  border:3px solid #000;
}

.app-header {
  text-align: center;
  margin-bottom: 20px;
}

.app-header h2 {
  margin: 0;
  font-size: 25px;
}

.app-rating {
  margin-top: 10px;
  font-size: 20px;
  color: #000;
}

.app-description {
  margin-top: 20px;
  font-size: 18px;
}

.sum-download-button {
  display: inline-block;
  margin-top: 5px;
  padding: 10px 20px;
  background-color: #15192A;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
}

.sum-download-button:hover {
  background-color: #2980b9;
}
p {
  margin: 15px 0;
  padding: 0;
  color: #000;
  font-size: 17px;
  line-height: 2.3em;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
}
.bg-info {
  color: #fff;
  background-color: #013b42;
  padding: 20px 30px;
  border-radius: 10px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #111;
  font-weight: 400;
  margin: 6px 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
h3 {
  font-size: calc(0.6vw + 1em);
}
h1.title {
  color: #fff;
  line-height: 40px;
  text-align: center;
  font-size: calc(0.5vw + 1.8em);
  margin: 1rem;
  font-weight: 300;
}
.entry-title {
  padding-top: 1em;
  text-align: center;
  font-size: calc(0.7vw + 20px);
  overflow-wrap: break-word;
  color: #222;
  font-weight: 700;
  line-height: 1.5em;
  margin: 0;
  background: #fff;
}
hr {
  margin: 1em auto;
  width: 30%;
  height: 2px;
  border: none;
  background:#0000FF;
  );
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#f85d7f),
    color-stop(36%, #e100ff),
    color-stop(68%, #6b81fa),
    to(#a0fbcd)
  );
  background: linear-gradient(
    90deg,
    #f85d7f,
    #e100ff 36%,
    #6b81fa 68%,
    #a0fbcd
  );
}
.boxdiv {
  margin: 4em 0;
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  -webkit-column-gap: 1em;
  -moz-column-gap: 1em;
  column-gap: 1em;
  row-gap: 4em;
}
.box {
  border-bottom: 2px solid #00bfb8;
  text-align: left;
  padding: 1em;
  -webkit-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
.box p {
  margin: 0;
}
.boxtxt {
  display: block;
  background: -o-linear-gradient(60deg, var(--gradient-1));
  background: -o-linear-gradient(30deg, var(--gradient-1));
  background: linear-gradient(60deg, var(--gradient-1));
  color: #ccc;
  font-weight: 500;
  margin: 0;
  padding: 10px 0;
  border-radius: 5px;
  font-size: calc(0.5vw + 1.3em);
  text-align: left;
  letter-spacing: 2px;
  text-transform: uppercase;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
}
.box-icon svg {
  width: 80px;
  height: 80px;
  fill: #000;
  -webkit-transition: 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  -o-transition: 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.box:hover {
  border-color: var(--color-1);
  -webkit-transform: scale(1.01) translateY(-5px);
  -ms-transform: scale(1.01) translateY(-5px);
  transform: scale(1.01) translateY(-5px);
}

.icon {
  color: #000;
  text-align: center;
  display: block;
  margin: auto;
  font-size: 80px;
}
.install-img {
  max-width: 40%;
}
.ss {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  padding: 0.5em 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-scroll-snap-type: x proximity;
  scroll-snap-type: x proximity;
  overflow-x: scroll;
}
.ss img {
  pointer-events: none;
  scroll-snap-align: center;
  margin: 0 1em;
  max-width: 250px;
}

footer {
  font-family: var(--font-secondary);
  border-top: 3px solid #15192A;
  color: #000;
  padding: 20px 40px;
  letter-spacing: 1px;
  line-height: 3.5em;
  color: #000;
  font-size: 13px;
  text-align: center;
  text-transform: uppercase;
  background-color: #70CDB7;
}
footer p {
  color: #000;
  font-size: 11px;
}
footer a,
footer a:hover {
  color: #1000FF;
}
.links a {
  font-size: 11px;
  padding: 0 5px;
  display: inline-block;
}
.links a:hover {
  opacity: 0.7;
}
.center {
  text-align: center;
}
ul {
  font-size: 13px;
  font-family: var(--font-secondary);
  font-weight: 500;
  margin: 1em 0 1em 2.5em;
  list-style-type: "\279C   ";
}
li {
  margin: 6px 0;
}
img {
  display: block;
  max-width: 100%;
}
table {
  margin: auto;
  width: 100%;
  border-collapse: collapse;
}
th {
  font-weight: 700;
  background-color: #33967e;
}
td,
th {
  text-align: center;
  padding: 9px 5px;
  vertical-align: top;
  border: 2px solid black;
}
tr:nth-child(odd) {
  background-color: #f5f5f5;
}
.btndiv {
  margin: 3.5em 0;
}
.btndiv a {
  color: #fff;
}
.btndiv a:hover {
  color: #fff;
}
a.btn {
  font-family: var(--font-secondary);
  background: var(--color-4);
  border-radius: 20px;
  color: #fff;
  font-size: calc(0.3vw + 0.9em);
  padding: 22px 30px;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
a.btn:hover {
  color: #fff;
  opacity:0.9;
}

.btndiv {
  transition: all ease 0.3s;
}
.btndiv:hover {
  transform: scale(0.85);
}
a.download {
  background: #fff;
  border: 2px solid #01ffa9;
  border-radius: 20px;
  padding: 1em 2em;
  font-size: 17px;
  color: #000;
  transition: all ease 0.3s;
}

a.download:hover {
  color: #000;
  box-shadow: 4px 10px 18px 0 #01ff116b;
  border: 2px solid #01ff116b;
}

.faq-list {
  list-style-type: none;
  margin: 0;
}

.faq {
  font-weight: 700;
  font-size: 20px;
  color: #000;
  background: #33967e;
  font-weight: 600;
  font-size: 20px;
  padding: 0 10px;
  border-radius: 5px;
}
.ans {
  list-style-type: none;
  margin: 0 0 20px 10px;
  text-align: left;
  padding: 1em;
  padding-top: 2em;
  font-size: 15px;
  border-radius: 10px;
  border: 1px dashed #e3e3e3;
  -webkit-box-shadow: 0px 2px 15px 0px #00000017;
  box-shadow: 0px 2px 15px 0px #00000017;
}
.faq::before {
  content: "\279C  ";
}

.ans::before {
  font-family: FontAwesome;
  content: "\f0da  ";
}
.r-radius {
  border-radius: 50%;
}
.toc {
  display: inline-block;
  border: var(--border-1);
  margin: 1em 0;
  border-radius: 10px;
  padding: 10px 1em;
  -webkit-box-shadow: rgb(0 0 0 / 19%) 0 0 13px 0;
  box-shadow: rgb(0 0 0 / 19%) 0 0 13px 0;
}
.toc li {
  margin: 0 1em;
  padding: 0.1em 0;
  list-style-type: square;
}
.toc a {
  font-weight: 600;
  color: var(--color-3);
}
.toc a:hover {
  text-decoration: none;
  border-color: var(--color-3);
}
.share {
  background-color: #fff;
  text-align: center;
  overflow: hidden;
  width: 100%;
  margin: 0 auto;
  padding: 1em 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.share a {
  list-style: none;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-size: 15px;
  margin: 1%;
  padding: 15px 0;
  color: #fff;
  border-radius: 20px;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  border: none;
}
.share a svg {
  fill: #fff;
  stroke: none;
  margin: 0;
  vertical-align: middle;
  width: 1em;
  height: 1em;
}
.whatsapp {
  background-color: #25d366;
}
.facebook {
  background-color: #3b5998;
}
.twitter {
  background-color: #55acee;
}
.telegram {
  background-color: #08c;
}
.email {
  background-color: #5a5a5a;
}
.share a:hover {
  color: #fff;
  opacity: 0.9;
}
.reviews {
  text-align: center;
  -webkit-box-shadow: 0 0 4px 1px #d6d6d6;
  box-shadow: 0 0 4px 1px #d6d6d6;
  font-family: roboto, sans-serif;
  padding: 10px 20px;
  border-radius: 3px;
  line-height: 2em;
}
.reviews span {
  display: block;
  font-size: 30px;
  margin: 10px 0;
}
.reviews img {
  border-radius: 20%;
  max-width: 6em;
  margin: 1em auto;
}
.ytbox {
  border: 1px solid #ddd;
  padding: 1em;
  margin: 1em 0;
}
.ytbox .btn {
  color: #fff;
  padding: 10px 22px;
  border-radius: 7px;
  font-size: 20px;
  background: #c00;
}
.text-glow {
  display: block;
  background: -o-linear-gradient(60deg, var(--gradient-1));
  background: linear-gradient(30deg, var(--gradient-1));
  color: #fff;
  font-weight: 700;
  margin: auto;
  padding: 0.5em 1em;
  border-radius: 5px;
  font-size: calc(0.7vw + 2em);
  background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  font-variant-caps: titling-caps;
  text-shadow: var(--color-1) 0px 5px 20px;
}
.typewrite {
  margin: 0;
}
.typewrite .wrap {
  border-right: 0.1em solid #ffffff31;
}

.dl-wrapper {
  display: -ms-grid;
  display: grid;
  place-items: center;
  margin: 2em 0;
}
.dl-wrapper p {
  margin: 0.2em 0;
}
.fh-sm {
  font-weight: bold;
  margin: 1em auto;
  font-size: calc(0.3vw + 1em);
}
#countdown {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 8px solid #afafaf;
  background: #232323;
  border-radius: 50%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 1em auto;
  text-align: center;
  width: 100px;
  height: 100px;
  font-size: 40px;
  color: #fff;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
#hidden-cnt {
  display: none;
}
@media screen and (max-width: 700px) {
  body,
  .install-img,
  img {
    max-width: 100%;
    margin: auto;
  }
}

h1, h2, h3, p{font-family:Poppins, sans-serif;}
h1 {font-size: 30px; font-weight:300}
h2 {font-size: 22px; font-weight:400}
h2 {font-size: 18px; font-weight:500}
p {font-size: 14px; font-weight:500}

.maxcontain {width:100%; max-width: 600px;margin: auto; }
#app-details-title {
  line-height: 1.38;
  margin-bottom: 6pt;
  margin-top: 18pt;
}

.app-details-table table {
  border-collapse: collapse;
  width: 100%;
}

.app-details-table td {
  background-color: #f7fafc;
  overflow-wrap: break-word;
  overflow: hidden;
  padding: 7pt;
  vertical-align: top;
}

.system-requirements-table table {
  border-collapse: collapse;
  width: 100%;
}

.system-requirements-table td {
  border: 1pt solid #000000;
  overflow-wrap: break-word;
  overflow: hidden;
  padding: 5pt;
  vertical-align: top;
}

.align-right {
  text-align: right;
}

td a {
  color: var(--color-2);
  font-weight: bold;
  border-bottom: 1px dashed #8d8d8d;
}

td a:hover {
  opacity: 1;
  border-bottom: 1px solid var(--color-2);
}

.switcher {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 20px;
  width: 100%;
}

.switch_item {
  cursor: pointer;
  width: calc(50% - 10px);
  max-width: calc(25% - 10px);
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 8px;
  padding-top: 10px;
  font-weight: 500;
  box-sizing: border-box;
  transition: all ease 0.3s;
}

.switch_item_icon {
  width: 50px; height: 50px;  
  font-size: 40px;
  transition: all ease 0.3s;
  margin-bottom: 40px;
}

.switch_item_icon .fas {
  font-size: 40px;
  background: linear-gradient(60deg, var(--gradient-1));
  text-transform: uppercase;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
}

.switch_item:hover {
  transform: scale(0.85);
}

.switch_item_name {
  text-align: center;
  margin-top: 5px; 
  background: linear-gradient(#07514a,#279ff3 );
  text-transform: uppercase;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
}

@media (max-width: 767px) {
  .switch_item_name {
    line-height: 1.2;
    font-size: 12px;
  }

  .switch_item_icon {
    margin-bottom: 10px;
  }
}

.list-container ul {
  font-size: 13px;
  font-family: var(--font-secondary);
  font-weight: 500;
  margin: 1em 0 1em 2.5em;
  list-style-type: "\279C ";
}

.list-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 700px;
  margin: auto;
  list-style-type: "\279C ";
}

.list {
  flex: 1 1 10%;
  padding: 0;
  list-style-type: none;
}

.list li {
  margin-bottom: 10px;
  padding-left: 4px;
}

@media (max-width: 768px) {
  .list {
    flex-basis: 30%;
  }
}