@font-face {
  font-family: Circularstd;
  src: url('../fonts/CircularStd-Medium.woff') format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: auto;
}

@font-face {
  font-family: Circularstd;
  src: url('../fonts/CircularStd-Bold.woff') format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: auto;
}

@font-face {
  font-family: Circularstd book;
  src: url('../fonts/CircularStd-Book.woff') format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: auto;
}

:root {
  --black: black;
  --slate-grey: #5e727d;
  --midnight-blue: #1b2d45;
  --white: white;
  --dark-turquoise: #37def5;
  --magenta: #e10e74;
  --gainsboro: #e2e4e8;
  --dim-grey: #566073b3;
  --gold: #face55;
}

.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-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

@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: Circularstd, sans-serif;
  font-size: 14px;
  line-height: 20px;
}

h1 {
  color: var(--black);
  margin-top: 0;
  margin-bottom: 0;
  font-family: Circularstd, sans-serif;
  font-size: 70px;
  font-weight: 700;
  line-height: 1;
}

h2 {
  color: var(--black);
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Circularstd, sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  position: static;
}

h3 {
  color: var(--black);
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Circularstd, sans-serif;
  font-size: 38px;
  font-weight: 700;
  line-height: 46px;
}

a {
  color: var(--black);
  text-decoration: none;
}

img {
  max-width: 100%;
  display: inline-block;
}

.flex-container {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.flex-container.horizontal {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-direction: row;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: flex-start;
  padding-top: 100px;
  display: flex;
}

.nav-link {
  color: var(--slate-grey);
  padding-left: 16px;
  padding-right: 16px;
  font-family: Circularstd book, sans-serif;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
}

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

.nav-link.dark-blue {
  color: var(--white);
  white-space: nowrap;
  margin-right: 4px;
  padding-left: 4px;
  padding-right: 4px;
}

.hero-graphic-right {
  z-index: -1;
  display: block;
  position: absolute;
  inset: 0% 0% auto auto;
}

.primary-cta {
  background-color: #e10e74;
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  margin-left: 16px;
  padding: 20px 26px;
  text-decoration: none;
  display: flex;
  box-shadow: 0 3px 3px #00000012;
}

.hero-section {
  padding: 100px 3%;
}

.hero-grid-wrapper {
  grid-column-gap: 19px;
  flex: 1;
  grid-template-rows: auto;
  grid-template-columns: .75fr 1fr;
}

.button {
  background-color: var(--dark-turquoise);
  border-radius: 100px;
  margin-top: 40px;
  padding: 18px 32px;
  font-family: Circularstd, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 23px;
  transition: all .3s;
}

.button:hover {
  background-color: #30cde3;
}

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

.button.dark-blue:hover {
  background-color: #132134;
}

.button._0-top-margin {
  background-color: var(--magenta);
  margin-top: 0;
}

.service-section {
  border-bottom: 1px solid var(--gainsboro);
  padding: 50px 3% 100px;
}

.service-grid {
  grid-column-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  margin-top: 55px;
  margin-bottom: 75px;
}

.grid-block {
  background-color: #f9fafb;
  border: 1.4px solid #0000;
  border-radius: 10px;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  padding: 24px;
  text-decoration: none;
  transition: all .2s;
  display: flex;
}

.grid-block:hover {
  border-color: var(--magenta);
}

.profile-details {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.grid-icon {
  margin-right: 20px;
}

.faq-title {
  color: var(--midnight-blue);
  margin-bottom: 8px;
  font-family: Circularstd, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 22px;
  display: inline-block;
}

.paragraph-basic {
  color: var(--dim-grey);
  letter-spacing: 0;
  margin-bottom: 0;
  font-family: Circularstd book, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
  text-decoration: none;
}

.paragraph-basic._40-bottom-padding {
  margin-bottom: 18px;
}

.content-section {
  padding: 120px 3% 200px;
}

.features-grid-wrapper {
  grid-column-gap: 60px;
  grid-row-gap: 30px;
  align-self: stretch;
}

.feature-image-1 {
  -webkit-text-fill-color: inherit;
  background-clip: border-box;
  border-radius: 20px;
  width: 100%;
  max-width: 540px;
  display: block;
  box-shadow: 0 4px 6px -3px #0003;
}

.h2 {
  margin-bottom: 14px;
}

.h2.white {
  color: #fff;
}

.h2.h2-centre {
  margin-top: 60px;
  margin-bottom: 0;
}

.standard-paragraph {
  color: var(--dim-grey);
  letter-spacing: 0;
  margin-bottom: 0;
  font-family: Circularstd book, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
}

.standard-paragraph.center {
  text-align: center;
  max-width: 650px;
  display: block;
}

.standard-paragraph.center.white {
  color: var(--white);
}

.standard-paragraph._40-bottom-margin {
  margin-bottom: 40px;
}

.feature-text-block {
  padding-top: 25px;
  padding-bottom: 25px;
  padding-right: 60px;
}

.small-blocks {
  align-items: center;
  margin-bottom: 20px;
  display: flex;
}

.feature-icon {
  width: 49px;
  margin-right: 16px;
}

.feature-text {
  color: var(--dim-grey);
  letter-spacing: 0;
  margin-bottom: 0;
  font-family: Circularstd book, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 25px;
}

.feature-text-block-2 {
  padding: 25px 0 25px 60px;
}

.feature-section {
  border-bottom: 1px solid var(--gainsboro);
  padding: 80px 3% 200px;
  position: relative;
}

.gradient-div {
  background-image: linear-gradient(#f7f7f7, #f6fcff 0% 0%, #f6fcff00);
  height: 130px;
  display: block;
  position: absolute;
  inset: 0% 0% auto;
}

.halftone-pattern {
  z-index: -1;
  position: absolute;
  inset: 50% auto 0% -60px;
}

.grid-wrapper-2 {
  grid-column-gap: 49px;
  grid-row-gap: 65px;
  grid-template-columns: 1fr 1fr 1fr;
  align-self: stretch;
  margin-top: 75px;
}

.feature-grid-block {
  text-align: center;
  padding: 24px;
}

.feature-header {
  margin-bottom: 12px;
  font-family: Circularstd, sans-serif;
  font-size: 21px;
  font-weight: 700;
  line-height: 34px;
}

.testimonial-section {
  background-color: var(--magenta);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 75px 3% 170px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.slider {
  background-color: #ddd0;
  width: 100%;
  max-width: 750px;
  height: 100%;
  margin-top: 90px;
}

.slide {
  background-color: #fff;
  border: 1px #4689d733;
  border-radius: 10px;
  margin-right: 50px;
  padding: 0;
}

.mask {
  background-color: #0000;
  overflow: visible;
  box-shadow: 0 20px 50px #4689d733;
}

.quotes-icon {
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  inset: -40px 0 auto;
}

.profile-block {
  align-items: center;
  margin-top: 40px;
  display: flex;
}

.profile-image {
  border-radius: 100px;
  margin-right: 25px;
}

.slide-nav {
  display: none;
}

.slide-wrap {
  flex-direction: column;
  justify-content: space-between;
  min-height: 350px;
  padding: 90px 60px 50px;
  display: flex;
}

.arrow-right {
  background-color: #fff;
  border-radius: 100px;
  width: 55px;
  height: 55px;
  inset: 0% -25px 0% auto;
  box-shadow: 0 5px 10px #1b2d451a;
}

.icon {
  color: var(--midnight-blue);
  font-size: 15px;
}

.arrow-left {
  background-color: #fff;
  border-radius: 100px;
  width: 55px;
  height: 55px;
  inset: 0% auto 0% -25px;
  box-shadow: 0 5px 10px #1b2d451a;
}

.halftone-pattern-2 {
  position: absolute;
  inset: auto 0% -70px 4%;
}

.blog-section {
  padding: 140px 3%;
}

.news-grid {
  grid-column-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  align-self: auto;
  margin-top: 56px;
}

.articles-block {
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none;
  display: flex;
}

.article-thumbnail {
  border-radius: 10px;
  margin-bottom: 24px;
}

.article-profile-block {
  align-items: center;
  margin-top: 12px;
  display: flex;
}

.author-title {
  color: var(--midnight-blue);
  margin-bottom: 8px;
  font-family: Circularstd, sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 100%;
}

.date {
  color: var(--dim-grey);
  letter-spacing: 0;
  margin-bottom: 0;
  font-family: Circularstd book, sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 100%;
}

.article-profile-image {
  border-radius: 100px;
  margin-right: 12px;
}

.bottom-section {
  margin-top: 0;
  padding: 0 3% 140px;
  position: relative;
}

.h3 {
  flex: 0 auto;
  margin-top: 0;
  margin-bottom: 0;
}

.grid-faq {
  grid-column-gap: 60px;
  grid-row-gap: 49px;
  flex: 0 auto;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  align-self: auto;
  justify-items: stretch;
  width: 110%;
  margin-top: 0;
  margin-left: 100px;
}

.banner {
  background-color: #fff;
  background-image: url('../images/CTA-Shapes2x.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 15px;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1140px;
  min-height: 285px;
  margin: 140px auto 160px;
  padding-left: 80px;
  padding-right: 80px;
  display: flex;
  position: relative;
  box-shadow: 0 32px 64px #0e567c29;
}

.cta-header {
  color: var(--midnight-blue);
  margin-bottom: 8px;
  font-family: Circularstd, sans-serif;
  font-size: 36px;
  font-weight: 500;
  line-height: 1;
  display: inline-block;
}

.banner-text-wrapper {
  z-index: 20;
  position: relative;
}

.banner-button {
  background-color: var(--magenta);
  border-radius: 500px;
  margin-left: 0;
  padding: 20px;
  font-family: Circularstd, sans-serif;
  font-size: 16px;
  font-weight: 500;
  position: relative;
}

.footer-grid {
  grid-column-gap: 220px;
  grid-row-gap: 500px;
  grid-template-rows: auto;
  grid-template-columns: .6fr .4fr .4fr;
  display: flex;
}

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

.footer-logo {
  margin-bottom: 30px;
}

.footer-title {
  color: var(--midnight-blue);
  margin-bottom: 36px;
  font-family: Circularstd, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 22px;
  display: inline-block;
}

.input-field {
  background-image: url('../images/mail-icon.svg');
  background-position: 10%;
  background-repeat: no-repeat;
  background-size: 20px;
  border: 0 #000;
  padding-top: 28px;
  padding-bottom: 28px;
  padding-left: 80px;
  font-family: Circularstd book, sans-serif;
  font-size: 16px;
  box-shadow: 0 33px 84px #0e567c29;
}

.submit-button {
  background-color: var(--magenta);
  border-radius: 5px;
  width: 100%;
  margin-top: 12px;
  padding-top: 20px;
  padding-bottom: 20px;
  font-family: Circularstd, sans-serif;
  font-size: 16px;
  font-weight: 500;
  display: inline-block;
}

.arrow {
  width: 15px;
}

.nav-content-wrap {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  padding-left: 12px;
  display: flex;
}

.dropdown-toggle {
  color: var(--slate-grey);
  padding-left: 16px;
  padding-right: 16px;
  transition: all .2s;
}

.dropdown-toggle:hover {
  color: var(--midnight-blue);
}

.nav-blog-item {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  padding-top: 4px;
  padding-bottom: 4px;
  text-decoration: none;
  display: flex;
}

.dropdown-pointer {
  position: relative;
}

.nav-link-details {
  color: #28333899;
  white-space: normal;
  font-size: 14px;
}

.navigation-container-mob {
  align-items: center;
  width: 100%;
  max-width: 1300px;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.brand {
  margin-right: 44px;
}

.navigation-mob {
  background-color: #0000;
  flex-direction: column;
  align-items: center;
  display: none;
  position: relative;
  inset: 0% 0% auto;
}

.navigation-container {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1140px;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.navigation-dropdown {
  min-width: 140px;
}

.navigation-dropdown.w--open {
  background-color: #0000;
  min-width: 320px;
  max-height: 100vh;
  padding-top: 10px;
  left: -100px;
}

.navigation-left {
  align-items: center;
  display: flex;
}

.dropdown-block {
  z-index: 25;
  color: #283338;
  background-color: #fafafa;
  border-top: 1px solid #00000014;
  align-items: center;
  width: 100%;
  padding: 20px;
  font-size: 16px;
  text-decoration: none;
  position: relative;
}

.dropdown-title {
  margin-bottom: 2px;
  font-size: 15px;
}

.navigation-right {
  justify-content: flex-end;
  align-items: center;
  font-size: 16px;
  display: flex;
}

.dropdown-wrapper {
  background-color: #fff;
  border-radius: 10px;
  min-width: 140px;
  overflow: hidden;
  box-shadow: 4px -19px 35px #20355a14, 11px 11px 30px -10px #20355a26;
}

.dropdown-wrapper.w--open {
  background-color: #fff;
  border-radius: 15px;
  min-width: 300px;
  max-height: 100vh;
  left: -97px;
  box-shadow: 0 50px 25px -50px #20355a26, 8px 18px 60px 4px #00000021;
}

.nav-menu-2 {
  color: #283338;
  align-items: center;
  font-size: 15px;
  font-weight: 500;
  display: flex;
  position: static;
}

.nav-logo {
  width: 54px;
}

.icon-wrap {
  flex: none;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  display: flex;
}

.dropdown-icon {
  width: 100%;
}

.pointer {
  z-index: 20;
  background-color: #fff;
  border-radius: 2px;
  width: 20px;
  height: 20px;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  inset: -3% 4% auto 0%;
  transform: rotate(45deg);
}

.nav-link-blog {
  color: var(--gold);
  white-space: normal;
  font-size: 14px;
}

.navigation {
  background-color: #0000;
  flex-direction: column;
  align-items: center;
  padding: 16px 3%;
  display: flex;
  position: relative;
  inset: 0% 0% auto;
}

.dropdown {
  color: #5e727d;
  font-family: Circularstd book, sans-serif;
  font-size: 16px;
}

.dropdown-link {
  z-index: 25;
  color: #283338;
  align-items: center;
  padding: 20px;
  font-size: 16px;
  text-decoration: none;
  transition: all .2s;
  display: flex;
  position: relative;
}

.dropdown-link:hover {
  color: var(--midnight-blue);
  background-color: #fafafacc;
}

.hero-paragraph {
  color: var(--dim-grey);
  letter-spacing: 0;
  margin-bottom: 0;
  font-family: Circularstd book, sans-serif;
  font-size: 21px;
  font-weight: 400;
  line-height: 29px;
}

.blog-title {
  color: var(--midnight-blue);
  margin-bottom: 8px;
  font-family: Circularstd, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 22px;
  display: inline-block;
}

.blog-category {
  color: var(--gold);
  margin-bottom: 12px;
  font-family: Circularstd, sans-serif;
  font-size: 19px;
  font-weight: 500;
  line-height: 22px;
  display: inline-block;
}

.hero-image {
  width: 93%;
}

.icon-image {
  width: 60px;
  margin-bottom: 20px;
}

.footer {
  padding: 20px 3% 140px;
  position: relative;
}

.button-hero {
  background-color: var(--magenta);
  border-radius: 100px;
  margin-top: 40px;
  padding: 18px 32px;
  font-family: Circularstd, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 23px;
  transition: all .3s;
}

.button-hero:hover {
  background-color: #000;
}

.hero-h1 {
  color: var(--black);
  letter-spacing: -1.4px;
  margin-bottom: 16px;
  font-size: 65px;
}

.flowbase-close-card {
  opacity: .43;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  padding: 10px 13px 10px 10px;
  transition: all .2s ease-out;
  display: flex;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
}

.flowbase-close-card:hover {
  opacity: 1;
}

.flowbase-logo {
  position: absolute;
  inset: 0;
}

.flowbase-title {
  color: #5b3acc;
  margin-bottom: 4px;
  font-size: 17px;
  font-weight: 700;
}

.flowbase-author {
  color: #9b9eb8;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
}

.flowbase-left-wrap {
  display: flex;
}

.flowbase-title-wrap {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  min-height: 40px;
  margin-right: 25px;
  display: flex;
}

.notice-wrapper {
  justify-content: space-between;
  align-items: center;
  min-height: 40px;
  padding: 15px 20px;
  display: flex;
  position: relative;
}

.button-card {
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
  background-color: #8c54ff;
  background-image: linear-gradient(159deg, #8c54ff, #7b41f1);
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  min-width: 150px;
  min-height: 50px;
  margin-right: 15px;
  padding-left: 20px;
  padding-right: 20px;
  font-size: 13px;
  text-decoration: none;
  transition: all .4s ease-out;
  display: flex;
  box-shadow: inset -1px -1px 3px #201b3d99, inset 1px 1px 3px #eee6ff70, 1px 1px 2px #5b3acc;
}

.button-card:hover {
  box-shadow: inset 1px 1px 3px #201b3d38, inset -1px -1px 3px #eee6ff00, 1px 1px 2px #5b3acc;
}

.highlight-text {
  color: #5b3acc;
}

.notice-delete {
  z-index: 99999;
  background-color: #fff;
  border-radius: 200px;
  min-width: 520px;
  margin-bottom: 30px;
  margin-left: 30px;
  position: fixed;
  bottom: 0;
  left: 0;
  box-shadow: 8px 1px 20px #807c8e26;
}

.flowbase-underline {
  text-decoration: underline;
}

.flowbase-icon-wrap {
  background-color: #5b3acc;
  border-radius: 200px;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  margin-right: 25px;
  display: flex;
  position: relative;
}

.flowbase-banner {
  height: 64px;
}

.html-embed {
  margin-top: 30px;
}

.link, .link-2 {
  color: var(--dim-grey);
}

.code-embed {
  margin-top: 140px;
  padding-top: 0;
  padding-bottom: 0;
}

.banner-copy {
  background-color: #fff;
  background-image: url('../images/CTA-Shapes2x.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 15px;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1140px;
  min-height: 285px;
  margin: 40px auto 160px;
  padding-left: 80px;
  padding-right: 80px;
  display: flex;
  position: relative;
  box-shadow: 0 32px 64px #0e567c29;
}

.bottom-section-copy {
  margin-top: 0;
  padding: 0 3% 140px;
  position: relative;
}

@media screen and (max-width: 991px) {
  .hero-grid-wrapper {
    grid-column-gap: 25px;
    grid-template-columns: 1fr;
  }

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

  .hero-image-block {
    margin-top: 80px;
  }

  .service-grid {
    grid-template-columns: 1fr;
    justify-content: center;
    justify-items: center;
    width: 100%;
    max-width: 630px;
  }

  .grid-block {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .content-section {
    padding-bottom: 140px;
  }

  .features-grid-wrapper {
    grid-column-gap: 40px;
  }

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

  .h2 {
    font-size: 42px;
  }

  .h2.white, .h2.h2-centre {
    text-align: center;
  }

  .small-blocks {
    margin-bottom: 12px;
  }

  .feature-icon {
    width: 45px;
  }

  .feature-text-block-2 {
    padding-left: 0;
  }

  .grid-wrapper-2 {
    grid-column-gap: 14px;
    grid-row-gap: 17px;
  }

  .feature-grid-block {
    padding: 12px;
  }

  .arrow-right {
    right: -10px;
  }

  .arrow-left {
    left: -10px;
  }

  .grid-faq {
    grid-column-gap: 27px;
    margin-left: 25px;
  }

  .banner {
    background-position: 0 0;
    background-size: cover;
    padding-left: 42px;
    padding-right: 42px;
  }

  .banner-button {
    white-space: nowrap;
  }

  .mobile-nav-link {
    width: 100%;
  }

  .navigation-container-mob {
    justify-content: space-between;
  }

  .navigation-mob {
    border-bottom: 1px solid #4455671c;
    flex-direction: row;
    justify-content: center;
    height: 85px;
    padding-left: 3%;
    padding-right: 3%;
    display: flex;
  }

  .menu-mob {
    color: #000;
    background-color: #fafafa;
    border-radius: 100px;
    font-size: 22px;
  }

  .menu-mob.w--open {
    background-color: var(--dark-turquoise);
  }

  .navigation-left {
    display: flex;
  }

  .nav-menu-2 {
    display: none;
  }

  .mobile-nav {
    background-color: #fff;
    padding-top: 15px;
    box-shadow: 42px 42px 55px #20355a17;
  }

  .nav-logo {
    width: 40px;
  }

  .navigation {
    display: none;
  }

  .hero-paragraph {
    text-align: center;
    max-width: 500px;
  }

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

  .hero-h1 {
    text-align: center;
    max-width: 500px;
    font-size: 55px;
  }

  .notice-delete {
    min-width: auto;
    max-width: 610px;
    margin-right: 15px;
    display: block;
  }

  .banner-copy {
    background-position: 0 0;
    background-size: cover;
    padding-left: 42px;
    padding-right: 42px;
  }
}

@media screen and (max-width: 767px) {
  .flex-container.horizontal {
    flex-wrap: wrap;
  }

  .hero-grid-wrapper {
    grid-template-columns: 1fr;
  }

  .hero-text-block {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
    display: flex;
  }

  .button {
    margin-left: auto;
    margin-right: auto;
  }

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

  .feature-image-block {
    margin-bottom: 55px;
  }

  .feature-text-block-2 {
    padding-left: 0;
  }

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

  .slide-wrap {
    padding: 90px 50px;
  }

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

  .articles-block, .h3 {
    margin-bottom: 35px;
  }

  .grid-faq {
    grid-column-gap: 41px;
    margin-left: 0;
  }

  .banner {
    flex-wrap: wrap;
  }

  .footer-grid {
    grid-column-gap: 45px;
    grid-template-columns: .5fr 1fr;
  }

  .hero-paragraph {
    text-align: center;
  }

  .button-hero {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-h1 {
    text-align: center;
  }

  .notice-wrapper {
    display: none;
  }

  .notice-delete {
    min-width: auto;
    margin-left: 15px;
  }

  .banner-copy {
    flex-wrap: wrap;
  }
}

@media screen and (max-width: 479px) {
  .hero-section {
    padding-bottom: 50px;
  }

  .grid-block {
    flex-wrap: wrap;
  }

  .grid-icon {
    margin-bottom: 15px;
  }

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

  .profile-block {
    flex-wrap: wrap;
  }

  .profile-image {
    margin-bottom: 15px;
  }

  .grid-faq {
    grid-row-gap: 54px;
    grid-template-columns: 1fr;
  }

  .banner {
    padding: 55px 28px;
  }

  .banner-button {
    margin-top: 35px;
  }

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

  .flowbase-close-card {
    top: 0;
    bottom: auto;
    right: 0;
  }

  .flowbase-title-wrap {
    width: 100%;
    padding-left: 4px;
  }

  .notice-wrapper {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 10px;
    padding-right: 10px;
  }

  .notice-delete {
    min-width: auto;
    margin-left: 5px;
    margin-right: 5px;
  }

  .flowbase-icon-wrap {
    min-width: 60px;
  }

  .flowbase-banner {
    display: none;
  }

  .flowbase-footer {
    background-image: none;
    background-position: 50% 0;
    background-repeat: repeat-x;
    background-size: cover;
  }

  .banner-copy {
    padding: 55px 28px;
  }
}

#w-node-_96611e63-f868-bab7-b4e8-a00ebf768a65-e0504a8f {
  place-self: center;
}

#w-node-a39fd47a-3a83-c060-10b6-94a4efe98bb3-e0504a8f {
  justify-self: auto;
}

@media screen and (max-width: 767px) {
  #w-node-_81897d98-5728-bd56-d865-56baff40e11e-e0504a8f {
    order: 9999;
  }
}


@font-face {
  font-family: 'Circularstd';
  src: url('../fonts/CircularStd-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: auto;
}
@font-face {
  font-family: 'Circularstd';
  src: url('../fonts/CircularStd-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: auto;
}
@font-face {
  font-family: 'Circularstd book';
  src: url('../fonts/CircularStd-Book.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: auto;
}