.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;
}
.w-layout-layout {
  grid-row-gap: 20px;
  grid-column-gap: 20px;
  grid-auto-columns: 1fr;
  justify-content: center;
  padding: 20px;
}

.w-layout-cell {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

body {
  color: #d7d9de;
  background-color: #000;
  padding-top: 59px;
  font-family: Roboto, sans-serif;
  font-size: 14px;
  line-height: 20px;
}

h1 {
  color: #f2f4f7;
  text-transform: uppercase;
  margin: 10px 0;
  font-family: Roboto Condensed, sans-serif;
  font-size: 38px;
  font-weight: 400;
  line-height: 44px;
}

h2 {
  color: #f2f4f7;
  text-transform: capitalize;
  margin-top: 0;
  margin-bottom: 12px;
  font-family: Roboto, sans-serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 36px;
}

h3 {
  text-transform: uppercase;
  margin: 10px 0;
  font-family: Roboto Condensed, sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 30px;
}

h4 {
  text-transform: uppercase;
  margin: 0 0 10px;
  font-family: Roboto Condensed, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

h5 {
  margin: 10px 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
}

h6 {
  margin: 10px 0;
  font-size: 12px;
  font-weight: 700;
  line-height: 18px;
}

p {
  color: #a5a7ad;
  margin-top: 0;
  margin-bottom: 15px;
  font-family: Roboto, sans-serif;
  font-size: 14px;
  line-height: 22px;
}

a {
  text-decoration: underline;
}

.button {
  float: none;
  color: #fff;
  text-align: center;
  letter-spacing: .5px;
  text-transform: uppercase;
  text-shadow: 0 1px rgba(0, 0, 0, .1);
  object-fit: fill;
  background-color: #0ac278;
  border-radius: 2px;
  margin-top: 21px;
  margin-bottom: 21px;
  padding: 13px 24px;
  font-family: Roboto Condensed, sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: background-color .2s, box-shadow .2s;
  display: inline-block;
  position: static;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, .11), inset 0 -34px 50px -25px rgba(0, 0, 0, .16), inset 0 1px rgba(255, 255, 255, .3);
}

.button:hover {
  box-shadow: 0 0 0 1px rgba(0, 0, 0, .11), inset 0 -34px 50px -25px rgba(0, 0, 0, 0), inset 0 1px rgba(255, 255, 255, .3);
}

.button:active {
  background-color: #00c274;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, .26), inset 0 2px 5px rgba(0, 0, 0, 0), inset 0 2px 2px 1px rgba(0, 0, 0, .16);
}

.button.form {
  width: 27%;
  float: right;
  color: rgba(255, 255, 255, .68);
  background-color: #6e7278;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  margin-right: 0;
  padding: 9px 10px;
}

.button.form:hover {
  color: rgba(255, 255, 255, .94);
  background-color: #80858c;
}

.button.form:active {
  background-color: #168c5d;
}

.button.on-white {
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0), inset 0 -34px 50px -25px rgba(0, 0, 0, .16), inset 0 1px rgba(0, 0, 0, 0);
}

.button.contact {
  background-color: #0f8ad1;
  margin-top: 17px;
  margin-bottom: 17px;
  padding: 18px 53px;
  font-size: 18px;
}

.button.sign-up {
  padding: 18px 53px;
  font-size: 19px;
}

.navbar {
  object-fit: fill;
  background-color: #2c2f30;
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

.nav-link {
  float: left;
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 20px;
  font-size: 11px;
  text-decoration: none;
  transition: background-color .2s;
  display: block;
}

.nav-link:hover {
  color: #fff;
  background-color: #000;
}

.nav-link.w--current {
  color: #fff;
  background-color: #3f4345;
}

.nav-link.right {
  float: right;
  border: 1px solid #5f6266;
  border-radius: 2px;
  margin-top: 14px;
  margin-bottom: 16px;
  padding-top: 4px;
  padding-bottom: 4px;
}

.logo-text {
  color: #fff;
  letter-spacing: 1px;
  border-bottom: 3px solid #5f6266;
  margin-top: 18px;
  padding-bottom: 3px;
  font-size: 21px;
  font-weight: 500;
  transition: border-color .2s;
  display: inline-block;
}

.logo-text:hover {
  border-bottom-color: #4c709e;
}

.logo-text.footer {
  color: #5f6266;
}

.nav-menu {
  width: 88%;
  float: left;
}

.brand-wrapper {
  width: 12%;
}

.section {
  z-index: 10;
  background-color: #1d1f21;
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
}

.section.hero {
  color: #fff;
  text-align: center;
  background-image: url('../images/vgpnow_dark.png');
  background-position: 0 0;
  background-repeat: repeat;
  background-size: cover;
  background-attachment: scroll;
  padding-top: 108px;
  padding-bottom: 135px;
}

.section.darkgrey {
  background-color: #2b2d30;
  display: block;
}

.section.darkestgrey {
  background-color: #1d1f21;
}

.section.press {
  background-color: #000;
  padding-top: 29px;
  padding-bottom: 29px;
}

.section.black {
  background-color: #000;
}

.section.sign-up {
  color: #ebedf2;
  background-color: #000;
  background-image: linear-gradient(312deg, rgba(136, 92, 156, .63) 6%, rgba(143, 90, 166, .8));
}

.section.white {
  color: #1d1f21;
  background-color: #fff;
}

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

.section.about-image {
  height: 330px;
  background-image: url('../images/team.jpg');
  background-position: 50%;
  background-size: cover;
}

.huge-heading {
  color: #fff;
  letter-spacing: 0;
  text-shadow: 0 3px rgba(0, 0, 0, .1);
  margin-top: 0;
  margin-bottom: 28px;
  padding-bottom: 4px;
  font-family: Roboto Condensed, sans-serif;
  font-size: 94px;
  font-weight: 800;
  line-height: 88px;
  display: block;
}

.subtitle {
  color: rgba(242, 246, 252, .63);
  text-shadow: 0 2px rgba(0, 0, 0, .1);
  margin-bottom: 40px;
  font-family: Roboto Slab, sans-serif;
  font-size: 20px;
  font-weight: 300;
}

.subtitle.pricing {
  margin-bottom: 0;
  font-size: 18px;
}

.subtitle.content-pages {
  margin-bottom: 0;
}

.outline-button {
  color: rgba(255, 255, 255, .65);
  border: 2px solid rgba(255, 255, 255, .54);
  border-radius: 2px;
  margin-left: 15px;
  padding: 11px 24px;
  font-family: Roboto Condensed, sans-serif;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  transition: border-color .2s, color .5s;
  display: inline-block;
}

.outline-button:hover {
  color: #fff;
  border-color: #fff;
}

.outline-button:active {
  color: rgba(255, 255, 255, .78);
  background-color: rgba(0, 0, 0, .2);
  border-color: rgba(255, 255, 255, .78);
}

.slide {
  background-color: #6e4040;
}

.press-title {
  color: #696969;
  text-transform: uppercase;
  font-family: Roboto Slab, sans-serif;
}

.press-image-wrapper {
  width: 16.66%;
  float: left;
  text-align: center;
}

.press-image-wrapper.title {
  padding-top: 21px;
}

.press-logo {
  opacity: .35;
  transition: opacity .2s;
}

.press-logo:hover {
  opacity: .48;
}

.footer-link {
  color: #909499;
  text-decoration: none;
  transition: color .2s;
  display: inline-block;
}

.footer-link:hover {
  color: #d9d9d9;
}

.field-left {
  width: 49%;
  float: left;
  color: #d7d9de;
  background-color: #5f6266;
  border-style: none;
  border-top-left-radius: 2px;
  border-bottom-left-radius: 2px;
  margin-bottom: 10px;
}

.field-left:focus {
  background-color: #525559;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0);
}

.success-message {
  background-color: #5f6266;
}

.success-message.big {
  padding: 41px;
}

.no-spam {
  clear: both;
  color: #5f6266;
  margin-top: 10px;
  font-size: 11px;
}

.social-link {
  opacity: .29;
  margin-right: 11px;
  transition: opacity .2s;
}

.social-link:hover {
  opacity: .74;
}

.sign-up-column {
  text-align: center;
  padding-top: 9px;
}

.sign-up-title {
  text-shadow: 0 2px rgba(0, 0, 0, .1);
  margin-bottom: 7px;
  font-family: Roboto Condensed, sans-serif;
}

.small-heading {
  margin-bottom: 6px;
  font-family: Roboto, sans-serif;
  font-weight: 600;
}

.image-column {
  text-align: center;
}

.image-crop {
  height: 431px;
  margin-bottom: -80px;
  overflow: hidden;
}

.image-crop.ipad {
  height: 425px;
}

.image-crop.iphone {
  height: 429px;
}

.image-crop.hero {
  width: 492px;
  height: 130px;
  margin: 78px auto -135px;
  transition: height .5s;
  display: block;
  position: relative;
}

.image-crop.hero:hover {
  height: 200px;
}

.feature-icon-wrapper {
  width: 60px;
  height: 60px;
  float: left;
  text-align: center;
  border: 2px solid #5f6266;
  margin-right: 16px;
  padding-top: 13px;
}

.feature-list {
  margin-top: 24px;
}

.feature-list.no-padding {
  margin-top: 0;
}

.feature-item {
  margin-top: 12px;
}

.feature-icon {
  opacity: .81;
  color: #000;
  -webkit-text-fill-color: inherit;
  background-color: rgba(0, 0, 0, 0);
  background-clip: border-box;
}

.feature-text {
  color: #8f9196;
  margin-top: 6px;
  font-size: 12px;
  line-height: 15px;
}

.feature-text.title {
  color: #d7d9de;
  margin-top: 11px;
  font-family: Roboto Condensed, sans-serif;
  font-size: 16px;
  font-weight: 400;
}

.pricing-column {
  background-color: #2c2f30;
}

.pricing-row {
  margin-top: 28px;
  margin-bottom: 19px;
}

.plan-title {
  text-align: center;
  border-bottom: 3px solid rgba(218, 224, 232, 0);
  padding: 19px 15px;
  font-size: 21px;
}

.plan-title.pro {
  background-color: rgba(215, 217, 222, .09);
  border-bottom-color: rgba(0, 0, 0, 0);
}

.price {
  text-align: center;
  margin-top: 36px;
  margin-bottom: 13px;
  font-family: Roboto, sans-serif;
  font-size: 52px;
  font-weight: 300;
  line-height: 41px;
}

.per-month {
  color: #6f7378;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 25px;
  font-size: 16px;
}

.price-feature {
  text-align: center;
  padding: 10px 19px;
  font-size: 16px;
}

.price-feature.deactivate {
  color: rgba(215, 217, 222, .7);
  text-decoration: line-through;
}

.get-started-link {
  color: #0bd685;
  text-align: center;
  text-transform: uppercase;
  justify-content: center;
  margin-top: 18px;
  margin-bottom: 18px;
  font-weight: 500;
  text-decoration: none;
  transition: color .2s, border-color .5s;
  display: flex;
}

.get-started-link:hover {
  color: #fff;
}

.get-started-link.w--current {
  font-size: 24px;
}

.get-started-link.pricing {
  padding-top: 32px;
  padding-bottom: 32px;
  display: block;
}

.get-started-link.in-hero {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.get-started-link.in-hero:hover {
  color: #000;
}

.get-started-link.simple {
  color: #d7d9de;
  border-bottom: 3px solid rgba(215, 217, 222, .2);
  margin-top: 18px;
  margin-bottom: 18px;
}

.get-started-link.simple:hover {
  color: #e8eaed;
  border-bottom-color: rgba(215, 217, 222, .56);
}

.support {
  text-align: right;
}

.no-pad-section {
  background-color: #1d1f21;
}

.padded-column {
  padding: 66px 32px;
}

.padded-column.picture {
  height: 366px;
  background-image: url('../images/bag-and-hands-bw.jpg');
  background-position: 50%;
  background-size: cover;
}

.width-limiter {
  max-width: 500px;
}

.question {
  color: #f2f4f7;
  margin-top: 52px;
  margin-bottom: 8px;
  font-size: 19px;
  font-weight: 400;
}

.question.help {
  margin-top: 0;
  margin-bottom: 0;
}

.need-help-row {
  background-color: rgba(95, 98, 102, .54);
  margin-top: 41px;
  padding: 29px;
}

.float-left {
  float: left;
}

.float-right {
  float: right;
}

.contact-text {
  text-transform: none;
  font-family: Roboto, sans-serif;
  font-weight: 300;
}

.more-questions {
  float: left;
  margin-right: 22px;
}

.service-block {
  background-color: #2c2f30;
  padding: 12px;
}

.number, .service-title {
  text-align: center;
}

.field {
  height: 52px;
  color: #fff;
  background-color: #5f6266;
  border: 1px solid rgba(0, 0, 0, 0);
  border-radius: 2px;
  margin-bottom: 21px;
  padding-top: 13px;
  padding-bottom: 13px;
  font-size: 16px;
  transition: background-color .25s, box-shadow .25s;
  box-shadow: inset 0 0 rgba(0, 0, 0, 0);
}

.field:hover {
  background-color: #515357;
}

.field:focus {
  border-color: #0f8ad1;
  box-shadow: inset 0 0 0 2px #0f8ad1;
}

.field.left {
  width: 49%;
  float: left;
  margin-right: 2%;
}

.field.right {
  width: 49%;
  float: left;
}

.testimonial-wrapper {
  border-radius: 3px;
}

.testimonials-title {
  color: rgba(165, 167, 173, .54);
  text-align: left;
  text-transform: uppercase;
  margin-bottom: 11px;
  font-family: Roboto Condensed, sans-serif;
  font-size: 16px;
}

.testimonial {
  color: #a0a2a8;
  margin-top: 25px;
  margin-bottom: 7px;
  font-family: Roboto Slab, sans-serif;
  font-size: 17px;
}

.testimonials-author {
  color: #85878c;
  padding-left: 24px;
  font-family: Roboto Condensed, sans-serif;
  font-size: 16px;
}

.testimonials-column {
  padding-left: 0;
}

.testimonials-block {
  border-left: 1px solid #5f6266;
  margin-left: 16px;
  padding-left: 17px;
}

.sign-up-form {
  border-right: 1px solid rgba(255, 255, 255, .22);
  padding-right: 23px;
}

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

.footer-column {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

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

.image {
  flex: 0 auto;
  order: 1;
  align-self: center;
  display: block;
}

.image-2 {
  width: 150px;
}

.fs_accordion-2_message {
  color: #9b9b9b;
}

.fs_accordion-2_paragraph {
  margin-bottom: 0;
  display: block;
}

.fs_accordion-2_body {
  background-color: #fff;
  padding: 1rem 1.5rem;
}

.fs_accordion-2_content {
  transition: max-height .2s;
  overflow: hidden;
}

.fs_accordion-2_icon {
  margin-right: 0;
  font-size: 1.125rem;
  position: relative;
}

.fs_accordion-2_arrow-wrapper {
  transition: transform .2s;
}

.fs_accordion-2_arrow-wrapper.is-active-accordion {
  transform: rotate(180deg);
}

.fs_accordion-2_label {
  color: #080809;
  font-size: 1.25rem;
  font-weight: 500;
}

.fs_accordion-2_header {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  color: #060607;
  cursor: pointer;
  background-color: #f5f5f5;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  display: flex;
}

.fs_accordion-2_header:focus-visible {
  outline-offset: 4px;
  outline: 2px solid #9b9b9b;
}

.fs_accordion-2_header[data-wf-focus-visible] {
  outline-offset: 4px;
  outline: 2px solid #9b9b9b;
}

.fs_accordion-2_embed {
  margin-bottom: 0;
}

.fs_accordion-2_component {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.fs_modal-2_message {
  color: #9b9b9b;
}

.fs_modal-2_close-icon {
  width: 1rem;
  height: 1rem;
}

.fs_modal-2_close {
  cursor: pointer;
  background-color: #f5f5f5;
  padding: 1.5rem;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: auto;
  right: 0%;
}

.fs_modal-2_close:focus-visible {
  outline-offset: 4px;
  outline: 2px solid #9b9b9b;
}

.fs_modal-2_close[data-wf-focus-visible] {
  outline-offset: 4px;
  outline: 2px solid #9b9b9b;
}

.fs_modal-2_description {
  margin-bottom: 0;
}

.fs_modal-2_heading {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 2.5rem;
}

.fs_modal-2_content {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  align-content: center;
  justify-content: start;
  align-items: center;
  justify-items: start;
  padding: 4rem;
  display: grid;
}

.fs_modal-2_image {
  width: 100%;
  object-fit: cover;
}

.fs_modal-2_wrapper {
  z-index: 999;
  width: 100%;
  max-width: 60rem;
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  color: #000;
  background-color: #fff;
  grid-template-rows: auto;
  grid-template-columns: .75fr 1fr;
  grid-auto-columns: 1fr;
  align-items: stretch;
  justify-items: start;
  display: grid;
  position: relative;
}

.fs_modal-2_cover {
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.fs_modal-2_popup {
  z-index: 999;
  background-color: rgba(0, 0, 0, .5);
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding-left: 2rem;
  padding-right: 2rem;
  display: none;
  position: fixed;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.fs_modal-2_button {
  color: #fff;
  text-align: center;
  cursor: pointer;
  background-color: #1378d1;
  border-radius: 2px;
  margin-bottom: 0;
  padding: 13px 24px;
  font-family: Roboto Condensed, sans-serif;
  font-weight: 400;
  display: inline-block;
}

.fs_modal-2_button:focus-visible {
  outline-offset: 4px;
  outline: 2px solid #9b9b9b;
}

.fs_modal-2_button[data-wf-focus-visible] {
  outline-offset: 4px;
  outline: 2px solid #9b9b9b;
}

.fs_modal-2_embed {
  margin-bottom: 0;
}

.fs_modal-2_component {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template: "Area-3 Area-4 Area Area-2"
  / 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: start;
  justify-items: start;
  display: grid;
}

.fs_selectcustom-4_message {
  color: #9b9b9b;
}

.fs_selectcustom-4_link {
  border-top: 1px solid #f0f0f0;
  padding: .5rem 1rem;
}

.fs_selectcustom-4_link:hover {
  opacity: .7;
}

.fs_selectcustom-4_link:focus-visible {
  z-index: 1;
  outline-offset: 4px;
  outline: 2px solid #9b9b9b;
}

.fs_selectcustom-4_link[data-wf-focus-visible] {
  z-index: 1;
  outline-offset: 4px;
  outline: 2px solid #9b9b9b;
}

.fs_selectcustom-4_link.w--current {
  color: #696969;
  background-color: #f0f0f0;
}

.fs_selectcustom-4_link-icon {
  width: 1.5rem;
  height: 1.5rem;
  margin-right: .25rem;
}

.fs_selectcustom-4_link-block {
  width: 100%;
  border-radius: 0;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  padding: .5rem 1rem;
  font-weight: 500;
  text-decoration: none;
  display: flex;
}

.fs_selectcustom-4_link-block:focus-visible {
  z-index: 2;
  outline-offset: 4px;
  outline: 2px solid #9b9b9b;
  position: relative;
}

.fs_selectcustom-4_link-block[data-wf-focus-visible] {
  z-index: 2;
  outline-offset: 4px;
  outline: 2px solid #9b9b9b;
  position: relative;
}

.fs_selectcustom-4_field {
  margin-bottom: 0;
  display: none;
}

.fs_selectcustom-4_list-block {
  background-color: #fff;
  border: 1px solid #ddd;
  margin-top: 1rem;
}

.fs_selectcustom-4_list {
  background-color: rgba(0, 0, 0, 0);
}

.fs_selectcustom-4_toggle {
  background-color: #f5f5f5;
  padding: .75rem 4rem .75rem 1rem;
}

.fs_selectcustom-4_toggle:focus-visible {
  outline-offset: 4px;
  outline: 2px solid #9b9b9b;
}

.fs_selectcustom-4_toggle[data-wf-focus-visible] {
  outline-offset: 4px;
  outline: 2px solid #9b9b9b;
}

.fs_selectcustom-4_dropdown {
  z-index: 99;
  margin-left: 0;
}

.fs_selectcustom-4_embed {
  margin-bottom: 0;
}

.fs_selectcustom-4_component {
  grid-column-gap: 1rem;
  grid-row-gap: .5rem;
  grid-template: ". ."
                 "Area ."
                 "Area-2 Area-3"
                 "Area-4 Area-5"
                 "Area-6 Area-7"
                 "Area-8 Area-9"
                 "Area-10 Area-11"
                 / 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.text-block {
  margin-left: 0;
  margin-right: 0;
  padding: 13px 24px;
}

.grid {
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-areas: "Area Area-2 Area-3 Area-4"
                       "Area-5 Area-6 Area-7 Area-8";
}

.form-block {
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.field-copy {
  height: 52px;
  color: #fff;
  background-color: #5f6266;
  border: 1px solid rgba(0, 0, 0, 0);
  border-radius: 2px;
  margin-bottom: 21px;
  padding-top: 13px;
  padding-bottom: 13px;
  font-size: 16px;
  transition: background-color .25s, box-shadow .25s;
  box-shadow: inset 0 0 rgba(0, 0, 0, 0);
}

.field-copy:hover {
  background-color: #515357;
}

.field-copy:focus {
  border-color: #0f8ad1;
  box-shadow: inset 0 0 0 2px #0f8ad1;
}

.field-copy.left {
  width: 49%;
  float: left;
  margin-right: 2%;
}

.field-copy.right {
  width: 49%;
  float: left;
}

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

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

.html-embed {
  width: 100%;
}

.form-2 {
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-end;
  display: flex;
}

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

.fs_modal-2_message-2 {
  color: #9b9b9b;
}

.fs_modal-2_close-icon-2 {
  width: 1rem;
  height: 1rem;
}

.fs_modal-2_close-2 {
  cursor: pointer;
  background-color: #f5f5f5;
  padding: 1.5rem;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: auto;
  right: 0%;
}

.fs_modal-2_close-2:focus-visible {
  outline-offset: 4px;
  outline: 2px solid #9b9b9b;
}

.fs_modal-2_close-2[data-wf-focus-visible] {
  outline-offset: 4px;
  outline: 2px solid #9b9b9b;
}

.fs_modal-2_description-2 {
  margin-bottom: 0;
}

.fs_modal-2_heading-2 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 2.5rem;
}

.fs_modal-2_content-2 {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  align-content: center;
  justify-content: start;
  align-items: center;
  justify-items: start;
  padding: 4rem;
  display: grid;
}

.fs_modal-2_image-2 {
  width: 100%;
  object-fit: cover;
}

.fs_modal-2_wrapper-2 {
  z-index: 999;
  width: 100%;
  max-width: 60rem;
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  color: #000;
  background-color: #fff;
  grid-template-rows: auto;
  grid-template-columns: .75fr 1fr;
  grid-auto-columns: 1fr;
  align-items: stretch;
  justify-items: start;
  display: grid;
  position: relative;
}

.fs_modal-2_cover-2 {
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.fs_modal-2_popup-2 {
  z-index: 999;
  background-color: rgba(0, 0, 0, .5);
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding-left: 2rem;
  padding-right: 2rem;
  display: none;
  position: fixed;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.fs_modal-2_button-2 {
  color: #fff;
  cursor: pointer;
  background-color: #1378d1;
  padding: .5rem 1rem;
}

.fs_modal-2_button-2:focus-visible {
  outline-offset: 4px;
  outline: 2px solid #9b9b9b;
}

.fs_modal-2_button-2[data-wf-focus-visible] {
  outline-offset: 4px;
  outline: 2px solid #9b9b9b;
}

.fs_modal-2_embed-2 {
  margin-bottom: 0;
}

.fs_modal-2_component-2 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-content: start;
  justify-items: start;
  display: grid;
}

.paragraph {
  color: #eef0f5;
}

@media screen and (max-width: 991px) {
  .button {
    background-color: #0bd685;
  }

  .nav-link {
    max-width: 100%;
    float: none;
    padding-left: 25px;
    padding-right: 25px;
    box-shadow: inset 0 1px rgba(255, 255, 255, .2);
  }

  .nav-link:hover {
    background-color: #5f6266;
  }

  .nav-link.w--current {
    background-color: #005282;
  }

  .nav-link.right {
    width: 100%;
    float: left;
    border-style: none;
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 0;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .nav-menu {
    width: 100%;
    background-color: #000;
    box-shadow: 0 7px 12px rgba(0, 0, 0, .28);
  }

  .menu-button {
    color: #fff;
  }

  .menu-button:hover, .menu-button.w--open {
    background-color: #000;
  }

  .section.hero {
    padding-top: 78px;
    padding-bottom: 104px;
  }

  .huge-heading {
    margin-bottom: 12px;
    font-size: 71px;
    line-height: 66px;
  }

  .subtitle {
    font-size: 19px;
    line-height: 25px;
  }

  .press-image-wrapper {
    padding-left: 8px;
    padding-right: 8px;
  }

  .press-image-wrapper.title {
    padding-top: 12px;
  }

  .small-heading {
    font-size: 34px;
  }

  .image-crop {
    height: 451px;
    margin-bottom: -80px;
  }

  .image-crop.ipad {
    height: 449px;
    margin-bottom: -80px;
  }

  .image-crop.iphone {
    height: 489px;
    margin-bottom: -80px;
  }

  .image-crop.hero {
    height: 250px;
    transition: none;
  }

  .image-crop.hero:hover {
    height: 250px;
  }

  .price-feature {
    padding-top: 5px;
    padding-bottom: 5px;
  }

  .get-started-link.pricing {
    padding-top: 26px;
    padding-bottom: 26px;
  }

  .padded-column.picture {
    height: 436px;
  }

  .fs_modal-2_image {
    max-height: 30vh;
    display: none;
  }

  .fs_modal-2_wrapper {
    grid-template-columns: 1fr;
  }

  .fs_modal-2_image-2 {
    max-height: 30vh;
    display: none;
  }

  .fs_modal-2_wrapper-2 {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 767px) {
  body {
    padding-top: 0;
  }

  .navbar {
    padding-left: 20px;
    padding-right: 20px;
    position: relative;
  }

  .section {
    padding: 40px 20px;
  }

  .section.hero {
    padding-top: 74px;
    padding-bottom: 74px;
  }

  .section.press {
    text-align: center;
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .section.sign-up {
    text-align: center;
  }

  .section.about-image {
    height: 280px;
  }

  .huge-heading {
    font-size: 50px;
    line-height: 48px;
  }

  .subtitle.pricing {
    margin-bottom: 16px;
  }

  .press-title {
    display: block;
  }

  .press-image-wrapper {
    width: 33%;
  }

  .press-image-wrapper.title {
    width: 100%;
    padding-top: 5px;
  }

  .small-heading {
    margin-top: 0;
    margin-bottom: 8px;
    font-size: 32px;
    font-weight: 400;
    line-height: 34px;
  }

  .image-crop {
    text-align: center;
    border-bottom: 3px solid #5f6266;
    margin-bottom: 36px;
  }

  .image-crop.ipad {
    margin-bottom: 36px;
  }

  .image-crop.iphone {
    height: 389px;
    border-bottom-style: none;
    margin-bottom: -40px;
  }

  .image-crop.hero {
    width: auto;
  }

  .feature-list {
    margin-bottom: 20px;
  }

  .pricing-column {
    margin-left: 33px;
    margin-right: 33px;
  }

  .pricing-row {
    margin-top: 9px;
  }

  .get-started-link {
    margin-left: auto;
    margin-right: auto;
    display: block;
  }

  .get-started-link.simple {
    display: inline-block;
  }

  .support {
    text-align: center;
  }

  .all-devices-image {
    width: 50%;
  }

  .padded-column {
    padding: 41px 30px;
  }

  .padded-column.picture {
    height: 246px;
  }

  .question {
    margin-top: 32px;
  }

  .contact-text {
    clear: left;
  }

  .service-block {
    margin-bottom: 19px;
    padding-left: 40px;
    padding-right: 40px;
  }

  .field.left {
    width: 49%;
    margin-right: 3%;
  }

  .field.right {
    width: 48%;
  }

  .testimonials-column {
    border: 2px solid rgba(95, 98, 102, .79);
    padding: 16px 22px 22px;
  }

  .sign-up-form {
    border-right-style: none;
    padding-right: 0;
  }

  .center {
    text-align: center;
  }

  .title {
    padding-left: 10px;
    padding-right: 10px;
  }

  .footer-column {
    margin-bottom: 33px;
  }

  .fs_modal-2_close {
    padding: 1rem;
  }

  .fs_modal-2_heading {
    font-size: 2rem;
  }

  .fs_modal-2_content {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    padding: 3rem 2rem;
  }

  .fs_modal-2_popup {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .field-copy.left {
    width: 49%;
    margin-right: 3%;
  }

  .field-copy.right {
    width: 48%;
  }

  .fs_modal-2_close-2 {
    padding: 1rem;
  }

  .fs_modal-2_heading-2 {
    font-size: 2rem;
  }

  .fs_modal-2_content-2 {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    padding: 3rem 2rem;
  }

  .fs_modal-2_popup-2 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media screen and (max-width: 479px) {
  .button {
    margin-bottom: 14px;
    display: block;
  }

  .navbar, .section {
    padding-left: 10px;
    padding-right: 10px;
  }

  .section.hero {
    padding: 54px 20px;
  }

  .subtitle {
    margin-bottom: 29px;
  }

  .outline-button {
    width: 100%;
    margin-left: 0;
    display: block;
  }

  .press-image-wrapper {
    width: 100%;
    height: 47px;
  }

  .small-heading {
    font-size: 21px;
    line-height: 26px;
  }

  .image-crop {
    height: 270px;
  }

  .image-crop.iphone {
    height: 325px;
  }

  .pricing-column {
    margin-left: 0;
    margin-right: 0;
  }

  .all-devices-image {
    width: 70%;
  }

  .padded-column {
    padding-left: 20px;
    padding-right: 20px;
  }

  .padded-column.picture {
    height: 226px;
  }

  .field.left {
    width: 100%;
    margin-right: 0%;
  }

  .field.right {
    width: 100%;
  }

  .ipad-image {
    padding-left: 14px;
    padding-right: 14px;
  }

  .iphone-image {
    padding-left: 25px;
    padding-right: 25px;
  }

  .field-copy.left {
    width: 100%;
    margin-right: 0%;
  }

  .field-copy.right {
    width: 100%;
  }
}

#field-5.w-node-fec5f704-4aa0-d4a4-0b58-e5d1c9bd47f2-b6ca4711, #field-2.w-node-e5bfed70-1bcd-9c70-07b4-74c802d935e7-b6ca4711, #field-5.w-node-_6eabf231-ee25-bfca-95af-e9526ca52293-b6ca4711, #w-node-_159952b5-1898-54e2-f3c0-c6a301ac7e75-b6ca4711, #w-node-_4918e33a-8ad3-27d6-04a3-fbcf3aaa3f1d-b6ca4711, #w-node-_700488f2-430f-5fb1-7429-3d63418290ae-b6ca4711 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}


