* {
  margin:0;
  padding:0;
}

*,*:focus,*:hover{
  outline:none!important;
}

a {
  text-decoration: none;
  color: deepskyblue;
}

html {
   height: 100%;
}

body {
  min-height: 100%;
  font-family: 'Open Sans',Helvetica,Arial,sans-serif;
  position: relative;
  padding: 0;
  margin: 0;
  background: black;
  font-size: 16px;
}

.footer {
  font-size: 15px;
  color: darkslategray;
  margin-top: 60px;
  padding-bottom: 20px;
  text-align: center;
}

.clear {
  clear: both;
  display: block;
  line-height: 0;
  height: 0;
  font-size: 0;
}

ul li::marker, ol li::marker {
  color: red; /* Change the color here (e.g., "red", "#FF0000", "rgb(255, 0, 0)") */
  font-size: 1.2em; /* You can also change the size */
}

.hero-banner img {
  width: 100%;
  margin: 20px 0;
}

.heading {
  color: lightgray;
  font-weight: bold;
  font-size: 2.0rem;
  margin-bottom: 1rem;
}

.subheading {
  color: lightgray;
  font-weight: bold;
  font-size: 1.6rem;
  margin-bottom: 2rem;
}

.emphasis {
  color: lightgray;
  font-weight: bold;
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
}

p, .text {
  color: rgba(252, 252, 252, 0.7);
  font-size: 1.2rem;
}

p {
  margin-top: 1.2rem;
}

.spaced-list li {
  margin-bottom: 10px;
}

.container {
  max-width: 750px;
  padding: 2.0rem 1.5rem;
  margin: 0 auto;
}

.header {
  margin-bottom: 2rem;
}

.main-logo {
  font-size: 25px;
  font-weight: bold;
  color: bisque;
}

.menu {
  float: right;
  vertical-align: bottom;
}

.menu a {
  display: inline-block;
  color: rgba(252, 252, 252, 0.6);
  font-size: 1.0rem;
  margin-left: .5rem;
  font-weight: bold;;
}

.main-cta {
  display: inline-block;
  padding: 10px;
  font-size: 1rem;
  font-weight: bold;
  color: black;
  background: royalblue;
  border-radius: 24px;
  margin-top: 10px;
}

.demo-section {
  margin-top: 4.0rem;
}

.demo-section > img {
  width: 100%;
  height: auto;
  max-width: 450px;
  margin-top: .5rem;
  border-radius: 20px;
}

/**************************** TWO COLUMN CARDS *****************************************/
.card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 40px;
}

.card img {
  flex: 1;
  min-width: 350px;
  height: auto;
  border-radius: 20px;
  margin-right: 20px;
}

.card .text-content {
  flex: 2;
}

.card-swap {
  flex-direction: row-reverse;
}

.card-swap img {
  margin-right: 0;
  margin-left: 20px;
}

@media (max-width: 768px) {
  .card,
  .card-swap {
    flex-direction: column;
  }

  .card img,
  .card-swap img {
    margin: 0 0 15px 0;
    width: 100%;
    min-width: 100px;
    max-width: 550px;
  }
}

/**************************** PRICING TABLE ******************************************/
.pricing-table-container {
  margin: 4rem 0 2rem 0;
}

.pricing-columns {
  float: left;
  width: 50%;
  padding: 8px;
  box-sizing: border-box;
  border-radius: 20px;
  margin-bottom: 3rem;
}

.price {
  list-style-type: none;
  border: 1px solid dimgray;
  margin: 0;
  padding: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border-radius: 20px;
  background: whitesmoke;
}

.price:hover {
  box-shadow: 0 8px 12px 0 rgba(0,0,0,0.2)
}

.price .pricing-header {
  background-color: #111;
  color: white;
  font-size: 25px;
  border-radius: 20px 20px 0 0;
}

.price li {
  border-bottom: 1px solid #eee;
  padding: 20px;
  text-align: center;
}

.price .pricing-grey {
  background-color: #eee;
  font-size: 20px;
  border-radius: 0 0 20px 20px;
}

.the-price {
  font-weight: bold;
}

.pricing-button {
  background-color: #04AA6D;
  border: none;
  color: white;
  padding: 10px 25px;
  text-align: center;
  text-decoration: none;
  font-size: 18px;
  border-radius: 24px;
}

@media only screen and (max-width: 730px) {
  .pricing-columns {
    width: 100%;
  }
}

/***************************** FAQ ***************************************************/
.faq-container {
  max-width: 800px;
  margin: 0 auto 2.0rem auto;
  background-color: rgb(17 24 39 / 1);;
  padding: 10px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.faq-item {
  margin-bottom: 10px;
  border-radius: 5px;
  overflow: hidden; /* Ensures smooth transition for the details element */
}

.faq-question {
  padding: 15px;
  background-color: #c0c0c0;
  cursor: pointer;
  font-weight: bold;
  display: block; /* Makes the whole summary area clickable */
  user-select: none; /* Prevents text selection when rapidly clicking */
}

.faq-answer, .faq-answer2 {
  padding: 15px;
  background-color: #2f2f2f;
  border-top: 1px solid #ddd;
  margin: 0; /* Remove default paragraph margin */
  color: lightgray;
  font-size: 1.1rem;
}

.faq-answer2 {
  border-top: none;
}

/*********************************** STICKY CTA ***********************************/
.fixed-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 60%;
  background-color: #ff4d4d;
  color: white;
  padding: 15px;
  text-align: center;
  z-index: 1000;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
}

/************************************ SHARING BUTTONS ******************************/
#st-1 {
  font-family: "Helvetica Neue", Verdana, Helvetica, Arial, sans-serif;;
  direction: ltr;
  display: block;
  opacity: 1;
  text-align: center;
}
#st-1 .st-btn {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -moz-border-radius: 20px;
  -webkit-border-radius: 20px;
  border-radius: 20px;
  border: none;
  cursor: pointer;
  display: inline-block;
  font-size: 16px;
  height: 48px;
  line-height: 48px;
  margin-right: 20px;
  padding: 0 12px;
  position: relative;
  text-align: center;
  top: 0;
  vertical-align: top;
  white-space: nowrap;
}
#st-1 .st-btn:last-child {
  margin-right: 0;
}
#st-1 .st-btn > svg {
  height: 24px;
  width: 24px;
  position: relative;
  top: 12px;
  vertical-align: top;
}
#st-1 .st-btn > img {
  display: inline-block;
  height: 24px;
  width: 24px;
  position: relative;
  top: 12px;
  vertical-align: top;
}
#st-1 .st-btn > span {
  color: #fff;
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0.5px;
  min-width: 75px;
  opacity: 1;
  padding: 0 6px;
  position: relative;
  vertical-align: top;
}
#st-1.st-has-labels .st-btn {
  min-width: 150px;
}
#st-1.st-has-labels .st-btn.st-remove-label {
  min-width: 50px;
}
#st-1.st-has-labels .st-btn.st-remove-label > span {
  display: none;
}
#st-1.st-has-labels .st-btn.st-hide-label > span {
  display: none;
}
#st-1 .st-total {
  color: #555;
  display: inline-block;
  font-weight: 500;
  line-height: 18px;
  margin-right: 0;
  max-width: 80px;
  padding: 4px 8px;
  text-align: center;
}
#st-1 .st-total.st-hidden {
  display: none;
}
#st-1 .st-total > span {
  font-size: 24px;
  line-height: 26px;
  display: block;
  padding: 0;
}
#st-1 .st-total > span.st-shares {
  font-size: 14px;
  line-height: 14px;
}
#st-1.st-justified {
  display: flex;
  text-align: center;
}
#st-1.st-justified .st-btn {
  -moz-flex: 1;
  -ms-flex: 1;
  -webkit-flex: 1;
  flex: 1;
}
#st-1 .st-btn[data-network='facebook'] {
  background-color: #4267B2;
}
#st-1 .st-btn[data-network='facebook'] svg {
  fill: #fff;
}
#st-1 .st-btn[data-network='facebook'] > span {
  color: #fff;
}
#st-1 .st-btn[data-network='twitter'] {
  background-color: #55acee;
}
#st-1 .st-btn[data-network='twitter'] svg {
  fill: #fff;
}
#st-1 .st-btn[data-network='twitter'] > span {
  color: #fff;
}
#st-1 .st-btn[data-network='whatsapp'] {
  background-color: #25d366;
}
#st-1 .st-btn[data-network='whatsapp'] svg {
  fill: #fff;
}
#st-1 .st-btn[data-network='whatsapp'] > span {
  color: #fff;
}
#st-1 .st-btn[data-network='messenger'] {
  background-color: #448AFF;
}
#st-1 .st-btn[data-network='messenger'] svg {
  fill: #fff;
}
#st-1 .st-btn[data-network='messenger'] > span {
  color: #fff;
}
#st-1 .st-btn[data-network='native'] {
  background-color: #EF9B0F;
}
#st-1 .st-btn[data-network='native'] svg {
  fill: #fff;
}
#st-1 .st-btn[data-network='native'] > span {
  color: #fff;
}

/***************************** EMBLA *************************************************/
.embla {
  color: rgb(49, 49, 49);
  font-size: 1.6rem;
  line-height: 1.65;
  max-width: 48rem;
  margin: auto;
  --slide-height: auto;
  --slide-spacing: 15px;
  --slide-size: 80%;
}
.embla__viewport {
  overflow: hidden;
}
.embla__container {
  display: flex;
  touch-action: pan-y pinch-zoom;
  margin-left: calc(var(--slide-spacing) * -1);
}
.embla__slide {
  transform: translate3d(0, 0, 0);
  flex: 0 0 var(--slide-size);
  min-width: 0;
  padding-left: var(--slide-spacing);
}
.embla__slide__img {
  border-radius: 1.8rem;
  display: block;
  height: var(--slide-height);
  width: 100%;
  object-fit: cover;
  cursor: pointer;
}
.embla__controls {
  display: grid;
  grid-template-columns: auto 1fr;
  justify-content: space-between;
  gap: 1.2rem;
  margin-top: 25px;
}
.embla__buttons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem;
  align-items: center;
}
.embla__button {
  -webkit-tap-highlight-color: rgba(49, 49, 49, 0.5);
  -webkit-appearance: none;
  appearance: none;
  background-color: transparent;
  touch-action: manipulation;
  display: inline-flex;
  text-decoration: none;
  cursor: pointer;
  border: 0;
  padding: 0;
  margin: 0;
  box-shadow: inset 0 0 0 2px rgb(234, 234, 234);
  width: 36px;
  height: 36px;
  z-index: 1;
  border-radius: 50%;
  color: rgb(54, 49, 61);
  display: flex;
  align-items: center;
  justify-content: center;
}
.embla__button:disabled {
  color: darkgray;
}
.embla__button__svg {
  width: 35%;
  height: 35%;
}
.embla__dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  /*margin-right: calc((2.6rem - 1.4rem) / 2 * -1);*/
}
.embla__dot {
  -webkit-tap-highlight-color: rgba(49, 49, 49, 0.5);
  -webkit-appearance: none;
  appearance: none;
  background-color: transparent;
  touch-action: manipulation;
  display: inline-flex;
  text-decoration: none;
  cursor: pointer;
  border: 0;
  padding: 0;
  margin: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.embla__dot:after {
  box-shadow: inset 0 0 0 1px rgb(196 195 195);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  content: '';
}
.embla__dot--selected:after {
  box-shadow: inset 0 0 0 0.1rem rgb(54, 49, 61);
}
.embla__lazy-load {
  position: relative;
  height: 100%;
}
.embla__lazy-load__spinner {
  border: 0.4rem solid rgba(49, 49, 49, 0.2);
  border-left: 0.4rem solid rgb(49, 49, 49);
  font-size: 1rem;
  display: inline-flex;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  text-indent: -9999em;
  animation: loading 1.1s infinite linear;
  border-radius: 50%;
  width: 5rem;
  height: 5rem;
}
.embla__lazy-load__spinner:after {
  border-radius: inherit;
  width: 5rem;
  height: 5rem;
}
.embla__lazy-load__img {
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
}
.embla__lazy-load--has-loaded .embla__lazy-load__img {
  opacity: 1;
}
@keyframes loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}