:root {
  --royal-blue: #0f6eff;
  --cornflower-blue: #4f95ff;
  --sandy-brown: #fca25d;
  --white-smoke: #f6f9fc;
  --black: black;
  --text: #6d859e;
  --white: white;
}

.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;
}

h1 {
  color: #fff;
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 60px;
  font-weight: 700;
  line-height: 65px;
}

.hero-section {
  background-color: var(--royal-blue);
  background-image: url('../images/hero-dots-min.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  align-items: center;
  height: 800px;
  padding-top: 60px;
  display: flex;
}

.navbar {
  z-index: 9999;
  background-color: rgba(0, 0, 0, 0);
  padding-top: 20px;
  padding-bottom: 20px;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: 0%;
}

.body {
  font-family: Roboto, sans-serif;
}

.nav-wrapper {
  justify-content: space-between;
  align-items: center;
  width: 90%;
  max-width: 1200px;
  height: 60px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.image {
  width: 108px;
}

.navlink {
  color: #fff;
  padding-top: 0;
  padding-bottom: 0;
  font-size: 15px;
}

.nav-button {
  background-color: var(--cornflower-blue);
  border-radius: 5px;
  padding: 14px 20px;
  font-size: 16px;
  font-weight: 700;
  transition: all .25s;
}

.nav-button:hover {
  background-color: #83b4ff;
}

.wrapper {
  width: 90%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.hero-grid {
  grid-column-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr .25fr;
}

.hero-content {
  padding-right: 75px;
}

.hero-image {
  max-width: 700px;
}

.hero-sub-heading {
  color: #fff;
  margin-bottom: 20px;
  padding-right: 155px;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.5;
}

.button {
  background-color: var(--sandy-brown);
  border-radius: 5px;
  padding: 14px 20px;
  font-size: 16px;
  font-weight: 700;
  transition: all .25s;
  display: none;
}

.button:hover {
  background-color: #ff923f;
}

.button.form-button {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  height: 70px;
  font-size: 20px;
}

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

.section.background {
  background-color: var(--white-smoke);
}

.section.background.logo-top {
  padding-top: 80px;
  padding-bottom: 80px;
}

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

.section.grey-background {
  background-color: var(--white-smoke);
}

.section.footer-section {
  padding-bottom: 25px;
}

.logo-grid {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  margin-bottom: 100px;
  margin-left: auto;
  margin-right: auto;
  display: none;
}

.logo-div {
  text-align: center;
}

.logo-div.footer {
  text-align: left;
  padding-right: 30%;
}

.logo-image {
  width: 65%;
}

.body-heading {
  color: var(--black);
  font-size: 40px;
  line-height: 1.2;
}

.body-heading.white-text {
  color: #fff;
}

.heading-centered {
  text-align: center;
  max-width: 500px;
  margin-bottom: 60px;
  margin-left: auto;
  margin-right: auto;
}

.body-text {
  color: var(--text);
  font-size: 18px;
  line-height: 1.5;
}

.body-text.space-under {
  margin-bottom: 25px;
}

.body-text.white-body-text {
  color: #fff;
  display: none;
}

.core-features-grid {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.core-feature-div {
  text-align: center;
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0);
  padding: 50px 25px;
  transition: all .2s;
}

.core-feature-div:hover {
  background-color: #fff;
}

.core-feature-image {
  width: 100px;
}

.feat-big-text {
  text-transform: capitalize;
  margin-bottom: 5px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}

.small-text {
  color: var(--text);
  font-size: 15px;
  line-height: 1.5;
}

.heading-1 {
  font-size: 55px;
  line-height: 1.2;
}

.grid-twos {
  grid-column-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: .75fr .5fr;
  margin-bottom: 50px;
  position: relative;
}

.grid-twos.send-funds-grid, .grid-twos.receive-money-grid {
  grid-template-columns: .5fr .5fr;
}

.grid-twos.try-grid {
  grid-column-gap: 0px;
  grid-template-columns: auto;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.grid-content.left-indent {
  padding-left: 100px;
}

.grid-content.right-indent {
  padding-right: 100px;
}

.grid-image {
  position: relative;
}

.how-it-works {
  margin-bottom: 70px;
}

.more-features-grid {
  grid-column-gap: 30px;
  grid-row-gap: 50px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

.more-feat-div {
  align-items: center;
  display: flex;
}

.more-feat-image {
  width: 80px;
}

.how-it-works-grid {
  grid-column-gap: 130px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.works-div {
  text-align: center;
  padding-left: 15px;
  padding-right: 15px;
}

.works-image {
  width: 90px;
  margin-bottom: 10px;
}

.works-image.transaction-image {
  margin-bottom: 28px;
}

.dot-div {
  width: 195px;
  position: absolute;
  top: 35px;
  left: 215px;
}

.dot-div-2 {
  width: 195px;
  position: absolute;
  top: -10px;
  left: 595px;
}

.off-screen-image {
  width: 500%;
}

.special-wrapper {
  max-width: 1200px;
  margin-left: auto;
}

.off-screen-div {
  position: relative;
}

.numbers-div {
  margin-bottom: 25px;
  display: flex;
}

.solo-number {
  margin-right: 50px;
}

.number-text {
  font-size: 35px;
  font-weight: 700;
  line-height: 1;
}

.review-grid {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

.review-text {
  color: #fff;
  font-size: 16px;
  font-style: italic;
  line-height: 1.5;
}

.review-image {
  width: 60px;
  margin-right: 15px;
}

.review-person-div {
  align-items: center;
  display: flex;
}

.stars-image {
  width: 100px;
}

.review-name {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
}

.review-txt {
  color: #fff;
  margin-bottom: 20px;
  font-size: 16px;
  font-style: italic;
  line-height: 1.5;
}

.get-started-grid {
  grid-column-gap: 49px;
  grid-template-rows: auto;
}

.form-content {
  text-align: center;
  display: none;
}

.form-field {
  border: 1px #000;
  border-radius: 5px 0 0 5px;
  height: 70px;
  padding-left: 30px;
}

.form-field::placeholder {
  color: var(--text);
  font-size: 20px;
}

.submit-button {
  height: 70px;
}

.form {
  display: flex;
}

.form-block {
  margin-bottom: 0;
}

.footer-grid {
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

.footer-logo {
  width: 125px;
  margin-bottom: 10px;
}

.menu-div {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.footer-link {
  color: var(--text);
  text-transform: capitalize;
  font-size: 15px;
  line-height: 2;
  text-decoration: none;
  transition: all .2s;
  display: inline;
}

.footer-link:hover {
  color: var(--black);
}

.footer-line {
  background-color: #e6e6e6;
  width: 100%;
  height: 1px;
  margin-top: 50px;
  margin-bottom: 50px;
}

.bottom {
  text-align: center;
  justify-content: space-between;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.social-image {
  width: 40px;
  padding-left: 5px;
  padding-right: 5px;
}

.nav-menu {
  display: none;
}

.jarods-plug {
  color: var(--royal-blue);
}

.nav-plug {
  color: #fff;
}

.tour-diamond {
  z-index: 1;
  background-color: #f4f8fa;
  border: 3px solid #2aa8ff;
  border-radius: 2px;
  width: 16px;
  height: 16px;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  top: -7px;
  bottom: auto;
  left: 0%;
  right: 0%;
  transform: rotate(45deg);
}

.tour-diamond.top-right {
  left: auto;
  right: 20px;
}

.help-tooltip {
  text-align: left;
  background-color: #f4f8fa;
  border: 1px solid #d8e3f0;
  border-radius: 5px;
  width: 300px;
  font-size: 11.5px;
  font-weight: 400;
  line-height: 1.4em;
  display: none;
  position: absolute;
  top: 20px;
  left: 100%;
  box-shadow: 1px 1px 8px 1px rgba(45, 62, 80, .12);
}

.help-tooltip.tour-tooltip {
  z-index: 99;
  color: #000;
  background-color: #f4f8fa;
  border: 3px solid #4e70f8;
  width: 420px;
  min-height: 0;
  margin-top: 20px;
  font-size: 14px;
  line-height: 1.7em;
  display: block;
  top: 0%;
  bottom: auto;
  left: auto;
  right: 20px;
  box-shadow: 0 -5px 20px -5px rgba(45, 62, 80, .12), 1px 1px 8px 1px rgba(45, 62, 80, .12);
}

.plug {
  color: #4e70f8;
}

.help-title {
  margin-bottom: 3px;
  font-size: 18px;
  font-weight: 800;
  line-height: 25px;
}

.welcome-text {
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 24px;
  position: relative;
}

.delete-me-welcome {
  z-index: 100000;
  background-color: rgba(0, 0, 0, .5);
  justify-content: flex-end;
  align-items: flex-start;
  display: block;
  position: fixed;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.twitter {
  color: #4e70f8;
}

.tour-dot {
  color: #64636e;
  background-color: #2aa8ff;
  border-radius: 50%;
  width: 14px;
  height: 14px;
  position: absolute;
  top: -30px;
  bottom: auto;
  left: auto;
  right: 5%;
  box-shadow: 0 0 0 30px rgba(42, 168, 255, .53);
}

.text-block-2 {
  font-size: 12px;
  line-height: 20px;
}

.tour-bottom-row {
  z-index: 2;
  color: #64636e;
  background-color: #fff;
  border-top: 1px solid #d8e3f0;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  justify-content: flex-start;
  align-items: center;
  padding: 11px 10px 10px 22px;
  display: flex;
  position: relative;
  bottom: 3px;
}

.help-tooltip-content {
  z-index: 2;
  background-color: #fff;
  border-radius: 5px;
  padding: 20px 30px 22px 22px;
  position: relative;
}

@media screen and (max-width: 991px) {
  .hero-section {
    height: auto;
    padding-top: 100px;
    padding-bottom: 50px;
  }

  .navbar {
    padding-top: 6px;
    padding-bottom: 6px;
  }

  .nav-button-wrap {
    display: none;
  }

  .hero-grid {
    grid-row-gap: 50px;
    grid-template-columns: 1fr;
  }

  .hero-content {
    text-align: center;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    padding-right: 0;
  }

  .hero-sub-heading {
    padding-right: 0;
  }

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

  .logo-grid {
    margin-bottom: 75px;
  }

  .logo-div, .logo-div.footer {
    padding-right: 0%;
  }

  .logo-image {
    width: 80%;
  }

  .heading-centered {
    margin-bottom: 40px;
  }

  .core-features-grid {
    max-width: none;
  }

  .core-feature-div {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .core-feature-div:hover {
    box-shadow: none;
    background-color: rgba(0, 0, 0, 0);
    border-radius: 0;
  }

  .feat-big-text {
    font-size: 20px;
  }

  .icon {
    color: #fff;
    font-size: 30px;
  }

  .heading-1 {
    font-size: 55px;
  }

  .grid-twos.send-funds-grid, .grid-twos.receive-money-grid {
    grid-column-gap: 15px;
    grid-template-columns: .5fr .5fr;
  }

  .grid-content.left-indent {
    padding-left: 0;
  }

  .grid-content.right-indent {
    padding-right: 0;
  }

  .more-features-grid {
    grid-template-columns: 1fr 1fr;
  }

  .how-it-works-grid {
    grid-column-gap: 50px;
  }

  .works-div {
    padding-left: 0;
    padding-right: 0;
  }

  .dot-div {
    width: 100px;
    top: 50px;
    left: 170px;
  }

  .dot-div-2 {
    width: 100px;
    top: 10px;
    left: 420px;
  }

  .review-grid {
    grid-column-gap: 20px;
  }

  .get-started-grid {
    grid-column-gap: 25px;
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template: "Area Area"
                   "Area-2 Area-3"
                   "Area-4 Area-5"
                   / 1fr 1fr;
  }

  .nav-plug {
    font-size: 12px;
  }
}

@media screen and (max-width: 767px) {
  .nav-wrapper {
    justify-content: space-between;
  }

  .navlink {
    border-top: 1px #000;
    border-bottom: 1px solid rgba(255, 255, 255, .09);
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .hero-content, .hero-image {
    width: 100%;
  }

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

  .logo-grid {
    margin-bottom: 50px;
  }

  .logo-image {
    width: 100%;
  }

  .body-heading {
    font-size: 35px;
  }

  .core-features-grid {
    grid-row-gap: 0px;
    grid-template-columns: 1fr;
    max-width: 60%;
  }

  .core-feature-div {
    padding: 25px 25px 35px;
  }

  .icon {
    display: none;
  }

  .heading-1 {
    font-size: 40px;
  }

  .grid-twos {
    text-align: center;
    flex-direction: column;
    grid-template-columns: 1fr;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .grid-twos.receive-money-grid {
    flex-direction: column-reverse;
  }

  .grid-content {
    text-align: center;
  }

  .grid-content.left-indent, .grid-content.right-indent {
    margin-bottom: 30px;
  }

  .how-it-works-grid {
    grid-row-gap: 75px;
    grid-template-columns: 1fr;
  }

  .works-image.transaction-image {
    margin-bottom: 10px;
  }

  .dot-div, .dot-div-2 {
    display: none;
  }

  .numbers-div {
    justify-content: center;
    align-items: center;
  }

  .solo-number {
    margin-left: 20px;
    margin-right: 20px;
  }

  .review-grid {
    grid-template-columns: 1fr;
    max-width: 75%;
    margin-left: auto;
    margin-right: auto;
  }

  .try-image {
    width: 350px;
  }

  .get-started-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .bottom {
    flex-direction: column;
    align-items: center;
  }

  .social {
    margin-top: 5px;
  }

  .menu-button {
    padding-top: 0;
    padding-bottom: 0;
  }

  .menu-button.w--open {
    background-color: rgba(0, 0, 0, 0);
  }

  .nav-menu {
    background-color: var(--cornflower-blue);
  }
}

@media screen and (max-width: 479px) {
  .hero-sub-heading {
    font-size: 18px;
  }

  .button.form-button {
    font-size: 16px;
  }

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

  .logo-grid {
    grid-template-columns: 1fr 1fr;
  }

  .logo-div {
    text-align: center;
  }

  .logo-div.footer {
    text-align: left;
  }

  .logo-div.mobile-hide {
    display: none;
  }

  .logo-image {
    width: 80%;
  }

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

  .body-text {
    font-size: 17px;
  }

  .core-features-grid {
    max-width: 100%;
  }

  .heading-1 {
    font-size: 38px;
  }

  .more-features-grid {
    grid-row-gap: 40px;
    grid-template-columns: 1fr;
  }

  .solo-number {
    margin-left: 10px;
    margin-right: 10px;
  }

  .number-text {
    font-size: 25px;
  }

  .review-grid {
    max-width: 100%;
  }

  .form-field::placeholder {
    font-size: 16px;
  }

  .footer-grid {
    grid-template: "."
                   "."
                   "."
                   "."
                   "."
                   / 1fr;
  }
}

#w-node-_6d9de2b0-48e2-7a59-f098-c18755ebf6d5-3735a6c4 {
  align-self: center;
}

#w-node-a2408f32-13c0-53c8-8a08-9f0c9672910b-3735a6c4, #w-node-_86c8e1ce-99af-9521-2f15-5214cacc1932-3735a6c4, #w-node-fef810cb-46c1-2612-d0c0-575ab921f853-3735a6c4, #w-node-_84917a19-6a7d-944b-a6c5-860456083c9b-3735a6c4, #w-node-b11a2476-4eaf-8d94-9570-a706636ab420-3735a6c4, #w-node-_45875e0a-670a-0dab-eea7-d1ac0ef73010-3735a6c4 {
  align-self: center;
  justify-self: center;
}

#w-node-f6375df2-6e2f-4526-7265-7feafdeb04fc-3735a6c4 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-ff316fc8-0b99-6ae3-067d-23353632fa6f-3735a6c4 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
  justify-self: center;
}

#w-node-_3528002c-f796-685a-dca9-b0cbe9495980-3735a6c4, #w-node-_34f17e51-d5dc-732e-4a22-8fef36947724-3735a6c4, #w-node-b650eaa3-bae8-7ad7-134c-d7ba696619e8-3735a6c4 {
  align-self: center;
}

#w-node-bb3cfdc5-b55a-655c-354d-2b06cf9b7a76-3735a6c4, #w-node-_3f71f541-4bf5-f98f-83d9-e879ecd552b8-3735a6c4 {
  align-self: center;
  justify-self: center;
}

#w-node-_3f71f541-4bf5-f98f-83d9-e879ecd552b1-3735a6c4 {
  align-self: center;
}

#w-node-a8bceaee-cfa8-c73e-b673-3948b15a9092-3735a6c4 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-f6a5a760-1139-1e26-b337-cc8cba4b5054-3735a6c4 {
  align-self: center;
}

@media screen and (max-width: 991px) {
  #w-node-ff316fc8-0b99-6ae3-067d-23353632fa6f-3735a6c4 {
    align-self: center;
    justify-self: center;
  }

  #w-node-_34f17e51-d5dc-732e-4a22-8fef36947724-3735a6c4 {
    align-self: center;
  }

  #w-node-bb3cfdc5-b55a-655c-354d-2b06cf9b7a76-3735a6c4, #w-node-_3f71f541-4bf5-f98f-83d9-e879ecd552b8-3735a6c4 {
    align-self: center;
    justify-self: center;
  }

  #w-node-ec4fb4fc-f400-47fb-d891-fdfeb3214a3d-3735a6c4 {
    align-self: center;
  }

  #w-node-_4f804971-5f59-35ed-c772-60e040d11703-3735a6c4 {
    grid-area: Area;
  }

  #w-node-_092fc22e-313b-2a8c-1557-44c7a94ceecb-3735a6c4 {
    grid-area: Area-2;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_86c8e1ce-99af-9521-2f15-5214cacc1932-3735a6c4 {
    align-self: center;
    justify-self: center;
  }

  #w-node-_4f804971-5f59-35ed-c772-60e040d11703-3735a6c4, #w-node-_092fc22e-313b-2a8c-1557-44c7a94ceecb-3735a6c4 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}


