@import url("https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;700&amp;display=swap");
:root {
  --primary-color: #17304E;
  --mute-color: #D8D8D8;
  --green-color: #51CFA3;
}

body {
  margin: 0;
  font-family: "Inter",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}

*, ::after, ::before {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

a {
  text-decoration: none;
  color: var(--primary-color);
}

ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

section {
  padding: 2em 2em;
}

p.lead {
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 2rem;
}

.filtered {
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
}

.navbar {
  padding: 1em;
  -webkit-box-shadow: -1px 4px 6px 0px rgba(0, 0, 0, 0.22);
          box-shadow: -1px 4px 6px 0px rgba(0, 0, 0, 0.22);
}

.navbar nav {
  display: none;
}

.navbar .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.navbar .mobile-menu {
  cursor: pointer;
}

.mobile-menu-exit {
  float: right;
  margin: .5em;
  cursor: pointer;
}

nav.menu-btn {
  display: block;
}

nav {
  position: fixed;
  z-index: 999;
  width: 50%;
  right: 0;
  top: 0;
  background-image: -webkit-gradient(linear, left bottom, right top, from(#008fef), color-stop(#00a8f5), color-stop(#00bce5), color-stop(#00ccc4), to(#00d89c));
  background-image: linear-gradient(to right top, #008fef, #00a8f5, #00bce5, #00ccc4, #00d89c);
  height: 100vh;
  padding: 1em;
}

nav ul.primary-nav {
  margin-top: 5em;
}

nav li a {
  color: white;
  text-decoration: none;
  display: block;
  padding: .5em;
  font-size: 1.3em;
  text-align: right;
}

nav li a:hover {
  font-weight: bold;
}

.welcome {
  text-align: center;
  padding: 2.5em 1.5em;
}

.welcome .left-col {
  color: black;
  border-radius: 1rem;
  padding: 1.5rem 1rem 0 1rem;
}

.welcome .left-col h1 {
  font-size: 3rem;
  line-height: 3.5rem;
  letter-spacing: -.041em;
  margin: 0;
  margin-bottom: .6em;
}

.welcome .left-col h1 span {
  color: #008fef;
}

.welcome .left-col .low-fee {
  font-size: 1.4em;
}

.welcome .left-col .welcome-cta {
  display: none;
}

.welcome .left-col .welcome-cta img {
  width: 150px;
  margin-left: -15px;
}

.welcome .welcome-img {
  margin-top: 1.5rem;
  text-align: center;
}

.welcome .welcome-img img {
  width: 100%;
}

.feat-brands {
  padding: 1.5em 2em;
  background-color: #f8f6f6;
}

.feat-brands h3 {
  color: gray;
  font-style: italic;
  text-align: center;
}

.feat-brands .beside::after {
  content: "As featured on:";
}

.feat-brands .brand-logos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.feat-brands .brand-logos .img {
  width: 50px;
}

.feat-brands .brand-logos .marketwatch {
  width: 12%;
}

.feat-brands .brand-logos .benzinga {
  width: 8%;
}

.performance {
  background: var(--primary-color);
  color: white;
  padding: 3em 3em;
  text-align: center;
}

.performance h2 {
  font-size: 2.3rem;
  line-height: 3rem;
}

.performance .stats {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}

.performance .stats h3 {
  font-size: 2rem;
  line-height: 1em;
}

.performance .links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: .5em 0;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}

.performance .links a {
  font-size: .8em;
  margin-right: 1.5em;
}

.performance .links button, .performance .links a {
  color: var(--mute-color);
  background-color: unset;
  border: unset;
  cursor: pointer;
}

.performance .links button img, .performance .links a img {
  width: 20px;
  -webkit-filter: invert(1);
          filter: invert(1);
  vertical-align: middle;
  padding-right: .3em;
}

.performance button {
  background-color: unset;
  border: unset;
  cursor: pointer;
}

.performance button img {
  width: 30px;
  -webkit-filter: invert(1);
          filter: invert(1);
}

.performance .modal-container {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background-color: rgba(0, 0, 0, 0.22);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  opacity: 0;
  pointer-events: none;
}

.performance .modal-container .modal {
  font-size: .7em;
  text-align: justify;
  background-color: white;
  color: var(--primary-color);
  width: 80vw;
  padding: 2em;
  z-index: 9999;
  border-radius: 1em;
}

.performance .modal-container .modal h2 {
  margin: -.6em 0 0 0;
  font-size: 1rem;
  padding: unset;
}

.performance .modal-container .modal p {
  opacity: 0.6;
}

.performance .modal-container .modal button {
  float: right;
}

.performance .modal-container .modal button img {
  width: 20px;
}

.performance .modal-container.show {
  pointer-events: auto;
  opacity: 1;
}

.values {
  text-align: center;
}

.values .topics {
  display: none;
}

.values .item {
  padding: 1em 0;
  background: #F2F2F2;
  margin: 2em 0;
  border-radius: 1em;
}

.values .item .title {
  display: block;
  position: relative;
  font-weight: bold;
  font-size: 1.5rem;
}

.values .item p {
  margin: 0 auto;
  padding: 1.5em;
  text-align: left;
}

.values .item img {
  width: 60%;
}

.terms, .privacy, .best-investment, .sweepstakes {
  text-align: justify;
  color: var(--primary-color);
}

.terms a, .privacy a, .best-investment a, .sweepstakes a {
  color: #008fef;
}

.terms ul, .privacy ul, .best-investment ul, .sweepstakes ul {
  list-style-type: unset !important;
}

.terms ul li, .privacy ul li, .best-investment ul li, .sweepstakes ul li {
  padding: .3em;
  margin: 0em 0em 0em 2em;
  text-align: left;
}

.faq-content .accordion {
  width: 80%;
  margin: 0 0 2rem 0;
}

.faq-content .accordion .accordion-item {
  background-color: #fff;
  color: var(--primary-color);
  margin: 1rem 0;
  border-radius: 0.5rem;
  -webkit-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.22);
          box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.22);
}

.faq-content .accordion .accordion-item .accordion-item-header {
  padding: 0.5rem 3rem .5rem 1rem;
  min-height: 3.5rem;
  line-height: 1.25rem;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  cursor: pointer;
}

.faq-content .accordion .accordion-item .accordion-item-header:hover {
  color: var(--mute-color);
}

.faq-content .accordion .accordion-item .accordion-item-header::after {
  content: "\002B";
  font-size: 2rem;
  position: absolute;
  right: 1rem;
}

.faq-content .accordion .accordion-item .accordion-item-header.active::after {
  content: "\2212";
}

.faq-content .accordion .accordion-item .accordion-item-body {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.2s ease-out;
  transition: max-height 0.2s ease-out;
}

.faq-content .accordion .accordion-item .accordion-item-body .accordion-item-body-content {
  padding: 1rem;
  line-height: 1.2rem;
  border-top: 2px solid;
  -o-border-image: linear-gradient(to right, transparent, #008FEF, #00D89C, transparent) 1;
     border-image: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(#008FEF), color-stop(#00D89C), to(transparent)) 1;
     border-image: linear-gradient(to right, transparent, #008FEF, #00D89C, transparent) 1;
}

.best-investment .accordion .accordion-item {
  border-bottom: 1px solid gray;
}

.best-investment .accordion .accordion-item button[aria-expanded="true"] {
  border-bottom: 1px solid var(--primary-color);
}

.best-investment .accordion button {
  position: relative;
  display: block;
  text-align: left;
  width: 100%;
  padding: 1em 0;
  color: var(--mute-color);
  font-size: 1.15rem;
  font-weight: 400;
  background: unset;
  border: unset;
  outline: unset;
}

.best-investment .accordion button:hover, .best-investment .accordion button:focus {
  cursor: pointer;
  color: var(--primary-color);
}

.best-investment .accordion button:hover::after, .best-investment .accordion button:focus::after {
  cursor: pointer;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.best-investment .accordion button .accordion-title {
  padding: 1em 1.5em 1em 0;
}

.best-investment .accordion button .icon {
  display: inline-block;
  position: absolute;
  top: 18px;
  right: 0;
  width: 22px;
  height: 22px;
  border: 1px solid;
  border-radius: 22px;
}

.best-investment .accordion button .icon::before {
  display: block;
  position: absolute;
  content: '';
  top: 9px;
  left: 5px;
  width: 10px;
  height: 2px;
  background: currentColor;
}

.best-investment .accordion button .icon::after {
  display: block;
  position: absolute;
  content: '';
  top: 5px;
  left: 9px;
  width: 2px;
  height: 10px;
  background: currentColor;
}

.best-investment .accordion button[aria-expanded="true"] {
  color: var(--primary-color);
}

.best-investment .accordion button[aria-expanded="true"] .icon::after {
  width: 0;
}

.best-investment .accordion button[aria-expanded="true"] + .accordion-content {
  opacity: 1;
  max-height: 100%;
  -webkit-transition: all 200ms;
  transition: all 200ms;
  will-change: opacity, max-height;
}

.best-investment .accordion .accordion-content {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: opacity 200ms linear, max-height 200ms linear;
  transition: opacity 200ms linear, max-height 200ms linear;
  will-change: opacity, max-height;
}

.best-investment .accordion .accordion-content p {
  font-size: 1rem;
  font-weight: 300;
  margin: 2em 0;
}

.foo-cta {
  display: block;
  color: white;
  background-image: -webkit-gradient(linear, left bottom, right top, from(#008fef), color-stop(#00a8f5), color-stop(#00bce5), color-stop(#00ccc4), to(#00d89c));
  background-image: linear-gradient(to right top, #008fef, #00a8f5, #00bce5, #00ccc4, #00d89c);
  padding: 2.5em;
  text-align: center;
}

.foo-cta img {
  width: 200px;
}

.footer {
  background: var(--primary-color);
  color: white;
  font-size: .8em;
  padding-bottom: 8em;
}

.footer .foo-logo {
  color: white;
}

.footer .site-map {
  border-bottom: 2px solid white;
  padding-bottom: 1.2em;
}

.footer .site-map .social {
  margin-top: 1em;
}

.footer .site-map .links a {
  color: unset;
}

.footer .copyright {
  font-size: .8em;
  text-align: justify;
  color: #8492a6;
  line-height: 2em;
}

.footer .copyright .foo-p {
  margin-top: 2em;
  margin-bottom: -2em;
  text-align: center;
  color: #8492a6;
}

.footer .copyright .foo-p a {
  color: #8492a6;
}

.footer .copyright .foo-p a:hover {
  color: var(--mute-color);
}

.get-the-app {
  background-image: -webkit-gradient(linear, left bottom, right top, from(#008fef), color-stop(#00a8f5), color-stop(#00bce5), color-stop(#00ccc4), to(#00d89c));
  background-image: linear-gradient(to right top, #008fef, #00a8f5, #00bce5, #00ccc4, #00d89c);
  position: fixed;
  bottom: 0;
  right: 0;
  left: 0;
  padding: .8em 1.5em;
}

.get-the-app .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.get-the-app .container img {
  width: 40%;
}

.get-the-app .container a {
  border: unset;
  padding: .8em 1em;
  background-color: white;
  color: #575757;
  font-weight: bold;
  font-size: 1em;
  border-radius: .5em;
}

@media only screen and (max-width: 414px) {
  .faq-header, .more-questions {
    font-size: .9rem;
    text-align: justify;
    text-justify: newspaper;
  }
  .faq-content .accordion {
    font-size: .9rem;
    width: 100%;
  }
  .feat-brands {
    padding: 1em 0.5em 1.5em 0.5em;
  }
  .feat-brands .beside {
    display: none;
  }
  .feat-brands .center::after {
    content: "As featured on:";
  }
  .feat-brands .brand-logos {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .feat-brands .brand-logos .img {
    width: 35px;
  }
  .feat-brands .brand-logos .marketwatch {
    width: 25%;
  }
  .feat-brands .brand-logos .benzinga {
    width: 20%;
  }
  .performance {
    padding: 3em 1.5em;
    text-align: center;
  }
  .performance h2 {
    font-size: 1.3rem;
    line-height: 2rem;
    margin-top: unset;
  }
  .performance .stats {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
  }
  .performance .stats h3 {
    font-size: 1em;
    line-height: .5em;
  }
  .performance .stats p {
    font-size: .8em;
  }
}

@media only screen and (min-width: 768px) {
  .mobile-menu, .mobile-menu-exit {
    display: none;
  }
  .navbar .container {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 180px auto;
        grid-template-columns: 180px auto;
    width: 100%;
  }
  .navbar nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background: none;
    position: unset;
    height: auto;
    width: 100%;
    padding: 0;
  }
  .navbar nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .navbar nav a {
    color: black;
    font-size: 1em;
    padding: .1em 1em;
  }
  .navbar nav ul.primary-nav {
    margin: 0;
  }
  .navbar nav li.current a {
    font-weight: bold;
  }
  .welcome .welcome-img img {
    width: 60%;
  }
  .values .item {
    width: 80%;
    margin: 2em auto;
  }
  .footer {
    font-size: unset;
  }
  .get-the-app .container img {
    width: 30%;
  }
}

@media only screen and (min-width: 1080px) {
  .container {
    max-width: 1080px;
    margin: 0 auto;
  }
  .welcome {
    padding: 2rem;
    padding-bottom: 4em;
    background: unset;
  }
  .welcome .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: left;
  }
  .welcome .container .left-col {
    -ms-flex-preferred-size: 45%;
        flex-basis: 45%;
    padding: unset;
  }
  .welcome .container .left-col h1 {
    font-size: 3em;
    width: 90%;
  }
  .welcome .container .left-col .welcome-cta {
    display: block;
  }
  .welcome .container .left-col .welcome-cta img {
    width: 200px;
    margin-left: -15px;
  }
  .welcome .container .welcome-img {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
  }
  .performance .modal-container .modal {
    width: 50vw;
    font-size: 1em;
  }
  .values .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .values .topics {
    display: block;
    -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
    text-align: left;
  }
  .values .topics button, .values .topics img {
    border: none;
    background: none;
    cursor: pointer;
    font-size: 1.3em;
    line-height: 2em;
    color: var(--primary-color);
  }
  .values .topics button:hover, .values .topics img:hover {
    font-weight: bold;
    color: #4b90e2;
  }
  .values .topics button.active {
    color: #4b90e2;
  }
  .values .topics img {
    width: 30px;
  }
  .values .topics .down-arrow {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  .values .item {
    display: none;
  }
  .values .item.active {
    min-height: 400px;
    padding: 2em;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    -ms-flex-preferred-size: 75%;
        flex-basis: 75%;
    background: unset;
    font-size: 1.4em;
    line-height: 1.5em;
  }
  .values .item.active .title {
    display: block;
    position: relative;
    font-weight: bold;
    margin-bottom: 1em;
  }
  .values .item.active .title::after {
    content: "";
    position: absolute;
    top: 1.5em;
    left: 0;
    border-bottom: 3px solid #008fef;
    width: 25%;
    margin: unset;
  }
  .values .item.active p {
    padding: unset;
    margin: unset;
    width: 40%;
    text-align: left;
  }
  .values .item.active img {
    margin: 0 auto;
    width: 45%;
  }
  .foo-cta {
    width: 55%;
    margin: 0 auto;
    text-align: center;
    position: relative;
    bottom: -6em;
    border-radius: 3em;
    padding: 2.5em;
  }
  .foo-cta .container {
    width: unset;
  }
  .footer {
    padding-bottom: 5em;
  }
  .footer .container {
    width: 90%;
    margin-top: 4em;
  }
  .footer .site-map {
    padding-top: 4em;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .footer .site-map a {
    line-height: 1.5em;
  }
  .get-the-app {
    display: none;
  }
}
/*# sourceMappingURL=main.css.map */