:root {
  --midnight-blue: #27233a;
  --aquamarine: #9cfde4;
  --medium-purple: #9381ff;
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

body {
  color: #333;
  font-family: Barlow, sans-serif;
  font-size: 1vw;
  font-weight: 400;
  line-height: 1;
}

h1 {
  color: #fff;
  letter-spacing: -.5px;
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Barlow, sans-serif;
  font-size: 4.2em;
  font-weight: 200;
  line-height: 1;
}

h2 {
  text-align: center;
  letter-spacing: -1px;
  margin-top: 8px;
  margin-bottom: 40px;
  font-size: 3em;
  font-weight: 200;
  line-height: 1.1;
}

h3 {
  color: #fff;
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 2.2em;
  font-weight: 200;
  line-height: 1.1;
}

h4 {
  margin-top: 16px;
  margin-bottom: 16px;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.2;
}

p {
  margin-bottom: 10px;
  font-size: 18px;
  line-height: 1.3;
}

.hero-section {
  min-height: 100svh;
  background-color: var(--midnight-blue);
  color: #fff;
  justify-content: center;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 100px;
  display: flex;
  position: relative;
}

.navbar {
  background-color: rgba(0, 0, 0, 0);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  position: absolute;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: 0%;
}

.container {
  max-width: 1300px;
  flex: 1;
  padding-left: 20px;
  padding-right: 20px;
}

.container.flex-navbar {
  max-width: 100%;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.flex {
  justify-content: center;
  align-items: center;
  display: flex;
}

.flex.right {
  justify-content: flex-end;
}

.flex.top {
  align-items: flex-start;
}

.flex.margin-top-100 {
  margin-top: 100px;
}

.flex.break {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
}

.flex.break.margin-top-100 {
  margin-top: 140px;
}

._50-flex {
  width: 50%;
}

.heading {
  font-size: 4em;
}

.pink {
  color: #9381ff;
  text-align: left;
  font-style: italic;
}

.under-h1 {
  margin-top: 20px;
  font-size: 1.2em;
  line-height: 1.4;
}

.cta-primary {
  background-color: #fff;
  border-radius: 70px;
  margin-top: 40px;
  padding: 12px 32px;
}

.cta-primary:hover {
  background-color: #c7c7c7;
}

.hero_bg {
  width: 46%;
  background-image: url('../../img/landing/Group-340.png');
  background-position: 0%;
  background-repeat: no-repeat;
  background-size: contain;
  flex: 1;
  position: absolute;
  top: 16%;
  bottom: 12%;
  left: 0%;
  right: auto;
  overflow: hidden;
}

.image {
  width: 100%;
  height: 100%;
}

.section {
  padding-top: 100px;
  padding-bottom: 100px;
}

.section.dark {
  background-color: var(--midnight-blue);
}

.section.faq {
  background-color: #b6aaff;
}

.section.whoweare {
  min-height: 80svh;
  align-items: center;
  display: flex;
  position: relative;
  overflow: hidden;
}

.above-h2 {
  text-align: center;
  font-size: 14px;
}

.center {
  text-align: center;
}

._50per {
  width: 50%;
  margin-left: auto;
  margin-right: auto;
}

.sign {
  color: #9381ff;
  font-size: 20px;
  text-decoration: underline;
}

.flex-container {
  justify-content: center;
  display: flex;
}

.flex-container.compare {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  align-items: center;
  margin-top: 60px;
  margin-left: auto;
  margin-right: auto;
}

.flex-container.worthy {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  margin-top: 60px;
}

.flex-grow {
  flex: 1;
}

.app-wrapper {
  min-height: 300px;
  grid-column-gap: 4%;
  grid-row-gap: 4%;
  border: 1px solid rgba(0, 0, 0, .16);
  border-radius: 12px;
  justify-content: center;
  align-items: stretch;
  margin-left: 0;
  margin-right: 0;
  padding: 20px;
  display: flex;
}

.app-wrapper-left {
  width: 38%;
  flex-direction: column;
  justify-content: space-between;
  display: flex;
}

.app-wrapper-right {
  width: 60%;
  flex: none;
}

.app-wrapper-right.green {
  width: 58%;
  background-color: #a0fedc;
  border-radius: 8px;
}

.app-wrapper-right.purple {
  background-color: #9381ff;
  border-radius: 8px;
}

.app_name {
  text-transform: uppercase;
  font-size: 16px;
  display: inline-block;
}

.app_name.green {
  color: var(--aquamarine);
}

.app_name.purple {
  color: var(--medium-purple);
}

.big-tet {
  font-size: 24px;
}

.small {
  margin-top: 8px;
  font-size: 14px;
}

.list-item {
  color: #fff;
}

.list {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  color: #fff;
  flex-direction: column;
  margin-top: 26px;
  padding-left: 16px;
  font-size: 18px;
  display: flex;
}

.cta-color {
  color: #000;
  background-color: #fff;
  background-image: linear-gradient(to right, #c2fd7c, #a0fedc);
  border-radius: 70px;
  margin-top: 40px;
  padding: 20px 44px;
  font-size: 18px;
  text-decoration: none;
}

.cta-color:hover {
  background-image: linear-gradient(rgba(255, 255, 255, .5), rgba(255, 255, 255, .5));
}

.cta-color.no-margin-40 {
  margin-top: 0;
  font-size: 16px;
  transition: all .2s;
  position: static;
}

.cta-color.no-margin-40:hover {
  background-image: linear-gradient(rgba(255, 255, 255, .5), rgba(255, 255, 255, .5));
}

.half {
  width: 40%;
}

.left {
  text-align: left;
}

.who_side {
  width: 50%;
  height: 100%;
  background-color: var(--aquamarine);
  background-image: url('../../img/landing/plum.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: auto;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: auto;
  right: 0%;
}

.footer {
  background-color: var(--midnight-blue);
  color: rgba(255, 255, 255, .52);
  padding-top: 40px;
  padding-bottom: 20px;
  font-size: 14px;
}

.flex-aside {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.above-h1 {
  color: var(--aquamarine);
  font-size: 1.3em;
  display: block;
}

.nav-menu {
  text-align: center;
  flex: 1;
  justify-content: center;
  align-items: center;
}

.nav-item {
  color: rgba(255, 255, 255, .6);
  flex: 0 auto;
  font-size: 14px;
  transition: all .2s;
}

.nav-item:hover {
  color: var(--medium-purple);
}

.div-block {
  width: 100%;
  height: 1px;
}

.faq-wrapper {
  margin-left: auto;
  margin-right: auto;
}

.faq-paragraph {
  color: #000;
  letter-spacing: -.03em;
  margin-bottom: 0;
  margin-right: 220px;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-right: 0;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.3;
}

.faq-grid {
  width: 100%;
  grid-template-columns: 1fr 3fr;
  justify-content: stretch;
  align-items: stretch;
  justify-items: start;
  display: flex;
}

.question-title {
  letter-spacing: -.03em;
  margin-right: 10px;
  font-size: 24px;
  font-weight: 400;
}

.faq-circle {
  width: 55px;
  height: 55px;
  min-height: 55px;
  min-width: 55px;
  background-color: #b6aaff;
  border: 1px solid #000;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  display: flex;
}

.faq-question-bar {
  color: #1a1e27;
  border-bottom: 1px solid rgba(0, 0, 0, .07);
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 0;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  text-decoration: none;
  display: flex;
}

.faq-question-wrap {
  cursor: pointer;
  padding-left: 0;
  padding-right: 0;
}

.faq-content {
  overflow: hidden;
  max-height:0;
  transition: max-height .2s;
}
.active.faq-question-wrap .faq-content{
  max-height: 1000px;
  transition: max-height 1s;

}

.link {
  color: var(--midnight-blue);
  background-color: rgba(0, 0, 0, 0);
}

.link-2 {
  color: var(--midnight-blue);
}

.image-2 {
  text-align: left;
  object-fit: fill;
  object-position: 50% 50%;
  flex: 0 auto;
  display: block;
  position: static;
  overflow: scroll;
  transform: rotate(90deg);
}

.text-span {
  color: var(--midnight-blue);
  background-color: rgba(0, 0, 0, 0);
}

.link-3 {
  color: var(--midnight-blue);
}

.image-3 {
  max-width: 50%;
  font-size: .5vw;
  line-height: .5;
}

.image-4, .image-5 {
  max-width: 90%;
}

.heading-6 {
  text-align: left;
}

.cta-color-copy {
  color: #000;
  background-color: #fff;
  background-image: linear-gradient(to right, #c2fd7c, #a0fedc);
  border-radius: 70px;
  margin-top: 0;
  padding: 20px 44px;
  font-size: 18px;
  text-decoration: none;
}

.cta-color-copy:hover {
  background-image: linear-gradient(rgba(255, 255, 255, .5), rgba(255, 255, 255, .5));
}

.cta-color-copy.no-margin-40 {
  margin-top: 0;
  font-size: 16px;
  transition: all .2s;
  position: static;
}

.cta-color-copy.no-margin-40:hover {
  background-image: linear-gradient(rgba(255, 255, 255, .5), rgba(255, 255, 255, .5));
}

.image-9, .image-10, .image-11, .image-14, .logo-mobile {
  display: none;
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 60px;
  }

  h2 {
    font-size: 48px;
  }

  h3 {
    font-size: 32px;
  }

  .container {
    text-align: center;
  }

  .flex.right {
    justify-content: center;
  }

  .flex.break {
    flex-direction: column;
  }

  ._50-flex {
    width: 100%;
    text-align: center;
  }

  .under-h1 {
    font-size: 20px;
  }

  .hero_bg {
    display: none;
  }

  .section.whoweare {
    min-height: auto;
    flex-direction: column;
  }

  .above-h2.left {
    text-align: center;
  }

  ._50per.center {
    width: 100%;
  }

  .flex-container.compare {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    flex-direction: column;
  }

  .flex-container.worthy {
    width: 60%;
    grid-column-gap: 60px;
    grid-row-gap: 60px;
    flex-direction: column;
    margin-left: auto;
    margin-right: auto;
  }

  .flex-grow.green.first {
    text-align: center;
    order: -1;
  }

  .app_name, .big-tet, .small {
    text-align: left;
  }

  .list {
    list-style-type: none;
  }

  .cta-color.no-margin-40 {
    margin-right: -82px;
  }

  .half {
    width: 100%;
    text-align: center;
  }

  .who_side {
    width: 100%;
    height: 400px;
    margin-top: 40px;
    margin-bottom: -100px;
    position: relative;
  }

  .above-h1 {
    font-size: 3em;
  }

  .nav-menu {
    background-color: #3d3758;
    padding-top: 60px;
    position: fixed;
    top: 0%;
    bottom: 0%;
    left: auto;
    right: 0%;
  }

  .faq-paragraph {
    text-align: left;
  }

  .faq-grid {
    grid-template-columns: 1fr 4fr;
  }

  .faq-question-wrap {
    padding-left: 20px;
    padding-right: 20px;
  }

  .image-2 {
    transform: rotate(0);
  }

  .image-6 {
    text-align: left;
  }

  .brand {
    text-align: left;
    flex: 1;
  }

  .heading-6 {
    text-align: center;
  }

  .menu-button {
    clear: none;
    margin-top: 10px;
    display: block;
  }

  .menu-button.w--open {
    background-color: #3d3758;
  }

  .cta-color-copy.no-margin-40 {
    margin-right: -82px;
  }

  .image-12, .image-13 {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  h2 {
    font-size: 40px;
  }

  .flex-container.worthy {
    width: 80%;
  }

  .faq-grid {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 479px) {
  .container {
    text-align: left;
  }

  .container.flex-navbar {
    display: flex;
  }

  ._50-flex, .under-h1, .cta-primary {
    text-align: left;
  }

  .above-h2 {
    text-align: left;
    padding-bottom: 30px;
  }

  .above-h2.left, ._50per.center {
    text-align: left;
  }

  .flex-container.worthy {
    width: 100%;
  }

  .flex-grow.green.first {
    text-align: left;
  }

  .app-wrapper {
    grid-column-gap: 4%;
    grid-row-gap: 4%;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    align-items: stretch;
    justify-items: center;
    padding: 20px 0 30px 20px;
    display: block;
  }

  .app-wrapper-right.green, .app-wrapper-right.purple {
    width: 90%;
  }

  .app_name {
    text-align: left;
    padding-bottom: 30px;
  }

  .app_name.green {
    text-align: left;
  }

  .big-tet {
    width: 200px;
  }

  .small {
    width: 200px;
    margin-bottom: 20px;
  }

  .list {
    text-align: left;
    padding-left: 0;
  }

  .above-h1 {
    text-align: left;
    font-size: 5em;
  }

  .plus-icon {
    max-width: 80%;
  }

  .faq-paragraph {
    width: 100%;
    margin-right: 0;
    font-size: 16px;
    font-weight: 400;
  }

  .question-title {
    text-align: left;
    flex: 1;
    margin-right: 15px;
    font-size: 18px;
  }

  .faq-circle {
    width: 10%;
    height: 35px;
    min-height: 25px;
    min-width: 35px;
  }

  .image-6 {
    max-height: 70px;
    max-width: 120%;
    margin-left: 0;
    margin-right: 79px;
    padding-left: 0;
    display: none;
  }

  .brand {
    padding-left: 0;
  }

  .image-7 {
    display: block;
  }

  .heading-2 {
    text-align: left;
    font-size: 50px;
  }

  .image-8 {
    height: 100%;
    max-width: 100%;
  }

  .paragraph {
    font-size: 18px;
  }

  .text-block {
    max-width: 80%;
    font-size: 10px;
  }

  .heading-3, .heading-4 {
    text-align: left;
    font-size: 32px;
  }

  .heading-5 {
    font-size: 32px;
  }

  .heading-6 {
    text-align: left;
    font-size: 32px;
  }

  .heading-7, .list-item-2, .heading-8, .paragraph-2, .paragraph-3 {
    text-align: left;
  }

  .menu-button {
    margin-top: 0;
    display: flex;
  }

  .list-2 {
    font-size: 4vw;
  }

  .cta-color-copy {
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 15px 30px;
    font-size: 16px;
  }

  .image-11 {
    display: none;
  }

  .image-15 {
    width: 100px;
    height: 45px;
    max-width: 100%;
    float: none;
    display: none;
  }

  .icon {
    max-width: 80%;
  }

  .logo-mobile {
    display: block;
  }
}

#w-node-c750b53d-19ff-f180-4d59-0d1da89cd831-fdecf79c, #w-node-_447a20c6-5b14-044d-727d-8a177b6461a1-fdecf79c {
  grid-area: 1 / 2 / 2 / 3;
}

@media screen and (max-width: 767px) {
  #w-node-c750b53d-19ff-f180-4d59-0d1da89cd831-fdecf79c, #w-node-_447a20c6-5b14-044d-727d-8a177b6461a1-fdecf79c {
    grid-area: 1 / 1 / 2 / 2;
  }
}


.cookie-info {
  position: fixed;
  min-width: 100%;
  height: auto;
  z-index: 100000;
  font-size: 13px;
  line-height: 20px;
  left: 0;
  text-align: center;
  color: #000519;
  padding: 20px;
  background: rgba(156, 253, 228, 0.85);
  opacity: 0;
  bottom: -100px;
  transition: all 0.5s; }
  a {
    color: #fff;
  }
  .cookie-info .btn {
    border: 1px solid transparent;
    background-color: #9cfde4;
    color: #27233a;
    border-radius: 30px;
    text-align: center;
    font-weight: 700;
    font-size: 14px;
    padding: 10px 25px;
    transition: background 0.2s ease-in-out;
    font-size: 13px;
    min-width: 0;
    padding: 3px 30px;
    margin-left: 10px;
    cursor: pointer; 
}

.cookie-not-accepted {
  bottom: 0;
  opacity: 1; }