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

.section {
  height: 100vh;
}

.menu-wrap {
  position: static;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  color: #283338;
  font-size: 15px;
}

.icon {
  margin-right: 10px;
}

.brand {
  margin-right: 40px;
}

.image-block {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  height: 100%;
  margin-top: 40px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 20px;
}

.dropdown-wrapper {
  overflow: hidden;
  padding: 30px 3%;
  background-color: #fff;
  box-shadow: 33px 115px 100px 0 rgba(4, 20, 52, 0.1);
}

.navigation-link-block {
  position: relative;
  padding: 24px;
  border-radius: 30px;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  text-decoration: none;
}

.navigation-link-block:hover {
  background-color: #fff3ed;
}

.large-navigation-title {
  margin-bottom: 14px;
  color: #181945;
  font-size: 19px;
  line-height: 28px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.navigation-right {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  min-height: 60px;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.search-input {
  min-height: 48px;
  margin-bottom: 0px;
  border-style: solid;
  border-width: 1px;
  border-color: rgba(24, 25, 69, 0.1);
  border-radius: 10px;
  background-color: rgba(24, 25, 69, 0.05);
  color: #181945;
}

.search-input:focus {
  border-style: solid;
  border-color: #ff8c4b;
}

.search-input::-webkit-input-placeholder {
  color: rgba(24, 25, 69, 0.4);
  font-weight: 500;
  letter-spacing: -0.03em;
}

.search-input:-ms-input-placeholder {
  color: rgba(24, 25, 69, 0.4);
  font-weight: 500;
  letter-spacing: -0.03em;
}

.search-input::-ms-input-placeholder {
  color: rgba(24, 25, 69, 0.4);
  font-weight: 500;
  letter-spacing: -0.03em;
}

.search-input::placeholder {
  color: rgba(24, 25, 69, 0.4);
  font-weight: 500;
  letter-spacing: -0.03em;
}

.toggle {
  padding-right: 30px;
  padding-left: 18px;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
  color: rgba(24, 25, 69, 0.6);
  font-size: 14px;
  font-weight: 700;
}

.toggle:hover {
  color: #ff8c4b;
}

.toggle.w--open {
  color: #ff8c4b;
}

.navigation-left {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  min-height: 60px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.navigation-link-text {
  color: rgba(24, 25, 69, 0.5);
  font-size: 14px;
  line-height: 24px;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.search-icon {
  position: absolute;
  left: auto;
  top: auto;
  right: 12px;
  bottom: auto;
}

.navigation-grid {
  width: 100%;
  grid-column-gap: 32px;
  grid-row-gap: 0px;
  -ms-grid-columns: 3fr 1fr;
  grid-template-columns: 3fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.image-full {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.logo {
  width: auto;
  min-width: 150px;
}

.video-link {
  position: absolute;
}

.chevron-arrow {
  width: 6px;
  margin-left: 10px;
}

.featured-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 32px 20px 20px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  border-radius: 30px;
  background-color: rgba(255, 140, 75, 0.1);
}

.link-grid-large {
  grid-column-gap: 32px;
  grid-row-gap: 0px;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.navigation-button {
  margin-left: 20px;
  padding: 14px 20px;
  border-radius: 0px;
  background-color: #141e44;
  -webkit-transition: all 350ms ease;
  transition: all 350ms ease;
  color: #fff;
  font-weight: 700;
  white-space: nowrap;
}

.navigation-button:hover {
  background-color: #e07437;
}

.dropdown-list {
  min-width: 100%;
}

.dropdown-list.w--open {
  position: absolute;
  left: 0px;
  top: 80px;
  right: 0px;
  bottom: auto;
  min-width: auto;
  margin-right: auto;
  margin-left: auto;
  padding-top: 35px;
  background-color: transparent;
}

.search {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 330px;
  margin-bottom: 0px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.dropdown-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  max-width: 1280px;
  margin-right: auto;
  margin-left: auto;
  background-color: #fff;
}

.container-navigation {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  max-width: 1280px;
  margin-right: auto;
  margin-left: auto;
  padding-top: 24px;
  padding-bottom: 24px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-bottom: 1px none rgba(4, 20, 52, 0.1);
}

.search-button {
  position: absolute;
  left: auto;
  top: 0%;
  right: 0%;
  bottom: 0%;
  min-width: 50px;
  background-color: transparent;
}

.navigation {
  position: fixed;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: auto;
}

.navigation-wrap {
  position: relative;
  z-index: 99;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding-right: 3%;
  padding-left: 3%;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-bottom: 1px solid rgba(4, 20, 52, 0.1);
  background-color: #fff;
  font-family: Ubuntu, Helvetica, sans-serif;
}

.navigation-link-title {
  margin-bottom: 4px;
  color: #181945;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.navigation-link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 26px;
  padding-top: 4px;
  padding-bottom: 4px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
  color: #ff8c4b;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 500;
  text-decoration: none;
}

.navigation-icon-block {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  padding: 8px;
  border-radius: 16px;
  background-color: rgba(255, 140, 75, 0.1);
}

.navigation-paragraph {
  color: #181945;
  font-size: 14px;
  line-height: 24px;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.dropdown {
  position: static;
}

.link-block {
  padding: 20px 18px;
  color: rgba(24, 25, 69, 0.6);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.link-block:hover {
  color: #ff8c4b;
}

.link-grid-small {
  grid-column-gap: 32px;
  grid-row-gap: 20px;
  -ms-grid-columns: 1fr 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.input-field {
  margin-bottom: 0px;
  border: 1px none #000;
  background-color: transparent;
  letter-spacing: -0.02em;
}

.person {
  width: 100%;
  background-color: #4cd17c;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: 50% 100%;
  object-position: 50% 100%;
}

.header-section {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  height: 100vh;
  padding: 0px 3%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #fff;
  font-family: Ubuntu, Helvetica, sans-serif;
}

.header-paragraph {
  color: #000;
  font-size: 18px;
  line-height: 36px;
  font-weight: 400;
  letter-spacing: -0.03em;
}

.header-grid {
  -webkit-box-align: start;
  -webkit-align-items: start;
  -ms-flex-align: start;
  align-items: start;
  grid-column-gap: 52px;
  grid-row-gap: 80px;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.number-text {
  color: #000;
  font-size: 16px;
  line-height: 1.2;
}

.nav-menu {
  position: static;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: auto;
  height: 100%;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  color: #000;
}

.pattern-accent {
  position: absolute;
  left: auto;
  top: -30px;
  right: -30px;
  bottom: auto;
}

.icon-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 38px;
  height: 38px;
  margin-right: 14px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 8px;
  background-color: #141e44;
}

.header-icon {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 55px;
  height: 55px;
  margin-right: 20px;
  margin-left: 20px;
  padding: 10px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100px;
  background-color: #fd7e41;
}

.form-block {
  max-width: 380px;
  margin-top: 40px;
}

.title-medium {
  color: #312b51;
  font-size: 16px;
  line-height: 22px;
  font-weight: 500;
}

.navigation-2 {
  position: absolute;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 100px;
  padding-right: 3%;
  padding-left: 3%;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: transparent;
}

.button-sign-up {
  margin-left: 18px;
  padding: 12px 24px;
  border: 1px solid #000;
  border-radius: 100px;
  background-color: #000;
  -webkit-transition: all 350ms ease;
  transition: all 350ms ease;
}

.button-sign-up:hover {
  border: 1px solid #000;
  background-color: #fff;
  color: #000;
}

.avatar-group {
  max-width: 190px;
  margin-top: 10px;
}

.number-large {
  margin-right: 14px;
  color: #000;
  font-size: 50px;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.05em;
}

.nav-link {
  margin-right: 0px;
  margin-left: 0px;
  padding: 20px;
  -webkit-transition: all 350ms ease;
  transition: all 350ms ease;
  color: #000;
  font-size: 14px;
  font-weight: 500;
}

.nav-link:hover {
  color: #fd7e41;
}

.card-block-top {
  position: absolute;
  left: -21%;
  top: 27%;
  right: auto;
  bottom: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 24px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 14px;
  background-color: #fff;
  box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.15);
  font-family: Montserrat, sans-serif;
}

.feature-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 48px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.hero-heading {
  margin-top: 0px;
  margin-bottom: 0px;
  color: #000;
  font-size: 68px;
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.number-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.brand-2 {
  margin-right: 60px;
}

.container-navigation-2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 1140px;
  margin-right: auto;
  margin-left: auto;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.submit-button {
  min-height: 56px;
  padding-right: 32px;
  padding-left: 32px;
  border-radius: 33px;
  background-color: #fd7e41;
}

.navigation-menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.card-block {
  position: absolute;
  left: auto;
  top: auto;
  right: -11%;
  bottom: -10%;
  padding: 24px;
  border-radius: 14px;
  background-color: #fff;
  box-shadow: 21px 21px 40px 0 hsla(0, 0%, 89.8%, 0.51);
}

.header-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 32px;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.container {
  width: 100%;
  max-width: 1140px;
  margin-right: auto;
  margin-left: auto;
}

.header-block {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 610px;
  max-width: 440px;
  margin-right: auto;
  margin-left: auto;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
  border-top-left-radius: 220px;
  background-color: #21d093;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
}

.brand-logo {
  width: 60px;
}

.green-title {
  margin-bottom: 4px;
  font-family: Syncopate, sans-serif;
  color: #141e44;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.line-break {
  width: 1px;
  height: 46px;
  margin-right: 30px;
  margin-left: 30px;
  background-color: #000;
}

.form {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 6px 6px 6px 20px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100px;
  background-color: #f6f6f6;
}

.process-heading {
  margin-top: 0px;
  margin-bottom: 14px;
  color: #2a323c;
  font-size: 42px;
  line-height: 1.3;
  letter-spacing: -0.03em;
}

.process-graphic {
  max-width: 80%;
}

.process-step {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 60px;
  height: 60px;
  min-height: 60px;
  min-width: 60px;
  margin-right: 70px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100px;
  background-color: #e3eefc;
  color: #4790eb;
  font-size: 24px;
  line-height: 32px;
  font-weight: 600;
}

.process-content {
  max-width: 460px;
}

.process-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.process-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.process-sub-heading {
  margin-bottom: 20px;
  color: #4790eb;
  font-weight: 700;
  letter-spacing: 2px;
}

.process-full-wrapper {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.line-break-2 {
  width: 100%;
  height: 2px;
  max-width: 80%;
  margin-top: 40px;
  margin-bottom: 40px;
  background-color: #e1e5ea;
}

.process-title {
  margin-top: 0px;
  margin-bottom: 20px;
  color: #2a323c;
  font-size: 32px;
  line-height: 42px;
}

.process-container {
  max-width: 850px;
  margin-right: auto;
  margin-left: auto;
}

.text-span {
  color: #4790eb;
}

.process-main-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.process-section {
  padding: 100px 5%;
}

.process-paragraph {
  margin-bottom: 24px;
  color: #546478;
  font-size: 16px;
  line-height: 28px;
}

.process-title-wrap {
  max-width: 680px;
  margin-right: auto;
  margin-bottom: 100px;
  margin-left: auto;
  text-align: center;
}

.process-line {
  position: absolute;
  left: 30px;
  z-index: -1;
  width: 2px;
  height: 100%;
  background-color: #e1e5ea;
}

.process-button {
  padding: 14px 24px;
  border-radius: 8px;
  background-color: #e3eefc;
  -webkit-transition: background-color 200ms ease, color 200ms ease;
  transition: background-color 200ms ease, color 200ms ease;
  color: #4790eb;
}

.process-button:hover {
  background-color: #4790eb;
  color: #fff;
}

.process-detail {
  color: #999;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.process-heading-2 {
  margin-top: 0px;
  margin-bottom: 20px;
  color: #000;
  font-size: 46px;
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.shape-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 40px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.line-break-3 {
  width: 100%;
  height: 2px;
  border: 1px dashed #d9d9d9;
}

.process-title-wrap-2 {
  max-width: 610px;
  margin-right: auto;
  margin-bottom: 140px;
  margin-left: auto;
  text-align: center;
}

.process-block-2 {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 30px;
  text-align: center;
}

.process-container-2 {
  max-width: 1260px;
  margin-right: auto;
  margin-left: auto;
  font-family: Montserrat, sans-serif;
}

.number-large-2 {
  position: absolute;
  top: -24px;
  margin-top: 0px;
  margin-bottom: 0px;
  font-size: 80px;
  line-height: 80px;
  font-weight: 600;
}

.process-paragraph-2 {
  color: #999;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
}

.process-title-2 {
  margin-top: 0px;
  margin-bottom: 20px;
  color: #262626;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.process-grid {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  grid-column-gap: 14px;
  grid-row-gap: 100px;
  -ms-grid-columns: 1fr 0.25fr 1fr 0.25fr 1fr 0.25fr 1fr;
  grid-template-columns: 1fr 0.25fr 1fr 0.25fr 1fr 0.25fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.title-small {
  margin-bottom: 16px;
  color: #8e8e8e;
  font-size: 16px;
  line-height: 28px;
  font-weight: 600;
  letter-spacing: 2px;
}

.process-section-2 {
  padding: 100px 5%;
  background-color: #fff;
}

.container-2 {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: 1140px;
  margin-right: auto;
  margin-left: auto;
}

.button-standard {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 19px 25px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border: 2px none #1355ff;
  border-radius: 0px;
  background-color: #141e44;
  box-shadow: 7px 7px 0 0 #4cd17c;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  font-family: Syncopate, sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
}

.button-standard:hover {
  background-color: #141e44;
  color: #fff;
}

.button-spacer {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 60px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.h3-heading {
  margin-top: 0px;
  margin-bottom: 24px;
  font-family: Syncopate, sans-serif;
  color: #141e44;
  font-size: 36px;
  line-height: 47px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.heading-large {
  margin-bottom: 14px;
  color: #061237;
  font-size: 20px;
  line-height: 32px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.section-process {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  min-height: 720px;
  padding: 100px 5%;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  font-family: Ubuntu, Helvetica, sans-serif;
}

.grid-process-section {
  grid-column-gap: 92px;
  grid-row-gap: 32px;
  -ms-grid-columns: 1fr 1.5fr;
  grid-template-columns: 1fr 1.5fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.card-process {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 32px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  border: 1px solid #f2f3f8;
  border-radius: 20px;
}

.paragraph-large {
  max-width: 600px;
  margin-bottom: 0px;
  color: #67718e;
  font-size: 18px;
  line-height: 32px;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.process-content-2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.process-icon {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 60px;
  height: 60px;
  min-height: 60px;
  min-width: 60px;
  margin-bottom: 24px;
  padding: 8px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100px;
  background-color: #1355ff;
  color: #fff;
  font-size: 24px;
  line-height: 32px;
  font-weight: 600;
}

.paragraph-standard {
  max-width: 600px;
  margin-bottom: 0px;
  color: #67718e;
  font-size: 16px;
  line-height: 32px;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.title-large {
  margin-bottom: 16px;
  color: #1355ff;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.grid-process-stacked {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
}

.span-blue {
  color: #141e44;
}

.grid-features {
  width: 100%;
  margin-top: 24px;
  margin-bottom: 32px;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
}

.section-content {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  padding: 140px 5%;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  font-family: Ubuntu, Helvetica, sans-serif;
}

.image-block-small {
  position: relative;
  height: 380px;
}

.grid-content {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  grid-column-gap: 92px;
  grid-row-gap: 40px;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.content-background {
  position: absolute;
  left: -20px;
  top: -20px;
  right: auto;
  bottom: auto;
  z-index: -1;
  width: 80%;
  height: 80%;
  border-radius: 20px;
  background-color: #f2f3f8;
}

.check-icon-large {
  width: 20px;
  margin-right: 14px;
}

.card-ui {
  position: absolute;
  left: auto;
  top: auto;
  right: -5%;
  bottom: -5%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 200px;
  min-height: 140px;
  padding: 32px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 20px;
  background-color: #fff;
  box-shadow: 58px 58px 95px -24px rgba(6, 18, 55, 0.08);
  text-align: center;
}

.image-cover {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  -o-object-fit: cover;
  object-fit: cover;
}

.feature-wrapper-2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  color: #18264e;
  font-size: 16px;
}

.ui-card-detail {
  margin-bottom: 24px;
  color: #67718e;
  font-weight: 600;
}

.circle-graph-svg {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.content-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  font-family: Montserrat, sans-serif;
}

.feature-icon-circle {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 54px;
  height: 54px;
  min-height: 54px;
  min-width: 54px;
  margin-right: 24px;
  padding: 8px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100px;
  background-color: #fff;
  box-shadow: 8px 8px 32px 0 rgba(49, 106, 255, 0.08);
}

.card-heading {
  color: #1355ff;
  font-size: 18px;
  line-height: 32px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.card-ui-graph {
  position: absolute;
  left: auto;
  top: auto;
  right: -5%;
  bottom: -5%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 280px;
  min-height: 140px;
  padding: 24px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 20px;
  background-color: #fff;
  box-shadow: 58px 58px 95px -24px rgba(6, 18, 55, 0.08);
}

.grid-content-feature {
  margin-top: 32px;
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
}

.feature-wrapper-horizontal {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.card-text {
  max-width: 600px;
  margin-bottom: 0px;
  color: #67718e;
  font-size: 14px;
  line-height: 24px;
  font-weight: 400;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.graph-svg {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-right: 16px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.cta-section {
  padding: 150px 3%;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), color-stop(50%, #fff), color-stop(0, #0f1529));
  background-image: linear-gradient(180deg, #fff, #fff 50%, #0f1529 0);
}

.cta-container {
  position: relative;
  max-width: 1060px;
  margin-right: auto;
  margin-left: auto;
}

.cta-button-wrap {
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.cta-button {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 67px;
  max-width: 222px;
  margin-bottom: 24px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 10px;
  background-color: #0dc8e9;
  -webkit-transition: color 200ms ease, background-color 200ms ease;
  transition: color 200ms ease, background-color 200ms ease;
  font-size: 18px;
  line-height: 27px;
  font-weight: 700;
}

.cta-button:hover {
  background-color: #fff;
  color: #0f1529;
}

.cta-subheading {
  max-width: 410px;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  line-height: 27px;
  font-weight: 500;
}

.cta-grid {
  padding: 120px 90px 100px;
  grid-column-gap: 110px;
  -ms-grid-columns: 1fr 0.45fr;
  grid-template-columns: 1fr 0.45fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  border-radius: 40px;
  background-color: #1a40c9;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
  font-family: Ubuntu, Helvetica, sans-serif;
  color: #fff;
}

.feature-text {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

.cta-heading-wrap {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.accent-line {
  width: 60px;
  height: 6px;
  border-radius: 20px;
  background-color: #0dc8e9;
}

.cta-heading {
  margin-top: 0px;
  margin-bottom: 32px;
  font-size: 48px;
  line-height: 58px;
}

.check-icon {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 24px;
  height: 24px;
  margin-right: 16px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 50%;
  background-color: #0dc8e9;
}

.feature-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 16px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.icon-square-03 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 80px;
  height: 80px;
  min-height: 80px;
  min-width: 80px;
  margin-bottom: 32px;
  padding: 10px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #f3ebe3;
}

.feature-details {
  color: #737373;
  font-size: 16px;
  line-height: 32px;
  font-weight: 400;
}

.feature-card-04 {
  display: block;
  padding: 32px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.feature-card-03 {
  display: block;
  padding: 32px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-right: 1px dashed #e5e5e5;
}

.icon-square-02 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 80px;
  height: 80px;
  min-height: 80px;
  min-width: 80px;
  margin-bottom: 32px;
  padding: 10px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #e9e7ff;
}

.grid-feature-wrapper {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  grid-column-gap: 72px;
  grid-row-gap: 32px;
  -ms-grid-columns: 1fr 2fr;
  grid-template-columns: 1fr 2fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.feature-card-02 {
  display: block;
  padding: 32px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-bottom: 1px dashed #e5e5e5;
}

.grid-features-2 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.feature-card-01 {
  display: block;
  padding: 32px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-right: 1px dashed #e5e5e5;
  border-bottom: 1px dashed #e5e5e5;
}

.icon-square-01 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 80px;
  height: 80px;
  min-height: 80px;
  min-width: 80px;
  margin-bottom: 32px;
  padding: 10px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #e2f8f8;
}

.icon-square-04 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 80px;
  height: 80px;
  min-height: 80px;
  min-width: 80px;
  margin-bottom: 32px;
  padding: 10px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #e3f3e4;
}

.section-feature {
  padding: 140px 5%;
  font-family: Ubuntu, Helvetica, sans-serif;
}

.button-feature {
  margin-top: 32px;
  padding: 16px 32px;
  border-radius: 4px;
  background-color: #1a1e21;
}

.heading-large-2 {
  margin-bottom: 24px;
  color: #262626;
  font-size: 50px;
  line-height: 60px;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.title-large-2 {
  margin-bottom: 16px;
  color: #8e8e8e;
  font-size: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.feature-title {
  max-width: 300px;
  margin-top: 0px;
  margin-bottom: 16px;
  color: #202020;
  font-size: 24px;
  line-height: 34px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.container-features {
  max-width: 1140px;
  margin-right: auto;
  margin-left: auto;
}

.quote-icon {
  margin-bottom: 32px;
}

.testimonial-card {
  width: 100%;
  padding: 40px 32px;
  border-radius: 10px;
  background-color: #fff;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
  color: #1f2937;
  text-decoration: none;
}

.testimonial-card:hover {
  border-color: hsla(0, 0%, 89.8%, 0);
  background-color: #fff;
  box-shadow: 13px 20px 32px 0 hsla(0, 0%, 89.8%, 0.25);
}

.title-testimonial {
  margin-top: 0px;
  margin-bottom: 14px;
  color: #262626;
  font-size: 22px;
  line-height: 32px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.left-arrow {
  left: -3%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 50px;
  height: 50px;
  padding: 14px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100px;
  background-color: #ef8b7c;
}

.section-testimonial {
  position: relative;
  overflow: hidden;
  padding: 100px 5% 140px;
  background-color: #f8f8f8;
  font-family: Ubuntu, Helvetica, sans-serif;
}

.title-wrapper {
  max-width: 600px;
  margin-right: auto;
  margin-bottom: 60px;
  margin-left: auto;
  text-align: center;
}

.grid-testimonial {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.testimonial-details {
  color: #8e8e8e;
  font-size: 16px;
  line-height: 32px;
}

.container-testimonial {
  position: relative;
  z-index: 5;
  max-width: 1140px;
  margin-right: auto;
  margin-left: auto;
}

.right-arrow {
  right: -3%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 50px;
  height: 50px;
  padding: 14px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100px;
  background-color: #ef8b7c;
}

.testimonial-line {
  width: 100%;
  height: 1px;
  margin-top: 32px;
  margin-bottom: 24px;
  background-color: #e5e5e5;
}

.star {
  margin-right: 4px;
}

.testimonial-slider {
  width: 100%;
  height: auto;
  background-color: transparent;
}

.star-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.testimonial-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.slider-dots {
  display: none;
}

.testimonial-mask {
  overflow: hidden;
}

.testimonial-detail-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.heading-large-3 {
  color: #262626;
  font-size: 50px;
  line-height: 60px;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.slide-nav {
  bottom: -60px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.testimonial-credentials {
  color: #8e8e8e;
  line-height: 20px;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.paragraph {
  font-size: 16px;
  line-height: 24px;
}

.faq-image {
  position: relative;
  top: -50px;
}

.faq-question-bar {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-top: 16px;
  padding-right: 15px;
  padding-bottom: 16px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  -webkit-transition: color 200ms ease;
  transition: color 200ms ease;
  color: #1f2430;
  text-decoration: none;
}

.faq-question-bar:hover {
  color: #6366f1;
}

.faq-wrap {
  max-width: 1000px;
  margin-right: auto;
  margin-left: auto;
}

.paragraph-large-2 {
  color: #51596c;
  font-size: 16px;
  line-height: 32px;
}

.faq-section {
  padding: 100px 3%;
  font-family: Ubuntu, Helvetica, sans-serif;
}

.faq-paragraph {
  margin-bottom: 0px;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #51596c;
  font-size: 16px;
  line-height: 28px;
  letter-spacing: -0.02em;
}

.faq-grid {
  grid-column-gap: 52px;
  grid-row-gap: 52px;
  -ms-grid-columns: 2fr 1fr;
  grid-template-columns: 2fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.title-cta {
  margin-bottom: 8px;
  color: #1f2430;
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.title-wrap {
  display: block;
  max-width: 720px;
  margin-bottom: 60px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: left;
}

.faq-content {
  overflow: hidden;
}

.heading-large-4 {
  margin-top: 0px;
  color: #232936;
  font-size: 48px;
  line-height: 54px;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.question-title {
  font-size: 20px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.faq-cta {
  position: -webkit-sticky;
  position: sticky;
  top: 40px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 30px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 20px;
  background-color: #f3f4f6;
  text-align: center;
}

.faq-question-wrap {
  margin-top: 10px;
  margin-bottom: 10px;
}

.faq-container {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
}

.button-faq {
  margin-top: 16px;
  padding: 16px 34px;
  border-radius: 32px;
  background-color: #6366f1;
}

.footer-social-links {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-right: 14px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.footer-link {
  display: inline-block;
  margin-bottom: 16px;
  -webkit-transition: color 200ms ease;
  transition: color 200ms ease;
  color: #52527a;
  line-height: 27px;
  text-decoration: none;
}

.footer-link:hover {
  color: #3385ff;
}

.footer-column {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.footer-container {
  width: 100%;
  max-width: 1080px;
  margin-right: auto;
  margin-left: auto;
}

.footer-text-field {
  min-height: 70px;
  margin-right: 10px;
  margin-bottom: 0px;
  padding-right: 120px;
  padding-left: 65px;
  border: 1px none #000;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 20px 40px 0 hsla(0, 0%, 89.8%, 0.4);
  -webkit-transition: box-shadow 300ms ease;
  transition: box-shadow 300ms ease;
  font-size: 18px;
}

.footer-text-field:hover {
  box-shadow: 0 10px 20px 0 hsla(0, 0%, 89.8%, 0.6);
}

.footer-text-field:focus {
  box-shadow: 0 10px 20px 0 hsla(0, 0%, 89.8%, 0.6);
}

.footer-text-field::-webkit-input-placeholder {
  color: #b4b4b4;
}

.footer-text-field:-ms-input-placeholder {
  color: #b4b4b4;
}

.footer-text-field::-ms-input-placeholder {
  color: #b4b4b4;
}

.footer-text-field::placeholder {
  color: #b4b4b4;
}

.footer-submit-button {
  min-height: 54px;
  padding-right: 34px;
  padding-left: 34px;
  border-radius: 10px;
  background-color: #3385ff;
  -webkit-transition: background-color 300ms ease;
  transition: background-color 300ms ease;
  font-size: 18px;
}

.footer-submit-button:hover {
  background-color: #2d2d2d;
}

.footer-form {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.footer-section {
  padding: 100px 3% 40px;
  background-color: #fff;
  font-family: Ubuntu, Helvetica, sans-serif;
  color: #8d88a7;
  font-size: 20px;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 60px;
  color: #1e1e48;
  font-size: 34px;
  line-height: 50px;
  font-weight: 700;
  text-decoration: none;
}

.field-wrapper {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.footer-social-link {
  margin-right: 26px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  -webkit-transition: opacity 200ms ease;
  transition: opacity 200ms ease;
}

.footer-social-link:hover {
  opacity: 0.6;
}

.footer-title {
  margin-top: 0px;
  margin-bottom: 30px;
  font-size: 18px;
  line-height: 23px;
  font-weight: 700;
  text-transform: uppercase;
}

.footer-bottom {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-top: 34px;
  padding-bottom: 34px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  font-size: 16px;
  line-height: 24px;
}

.footer-newsletter {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 450px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.footer-blue-link {
  -webkit-transition: color 200ms ease;
  transition: color 200ms ease;
  color: #3385ff;
  text-decoration: none;
}

.footer-blue-link:hover {
  color: #2d2d2d;
}

.footer-contact-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-right: -20px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.footer-left-col {
  grid-column-gap: 40px;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.footer-form-block {
  margin-bottom: 40px;
}

.footer-contact-item {
  margin-right: 20px;
}

.footer-grid {
  display: -ms-grid;
  display: grid;
  margin-bottom: 100px;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  grid-auto-columns: 1fr;
  grid-column-gap: 60px;
  grid-row-gap: 0px;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.image {
  position: absolute;
  left: 20px;
  top: auto;
  right: auto;
  bottom: auto;
}

.image-2 {
  width: 250px;
}

.navigation-button-2 {
  margin-left: 18px;
  padding: 12px 24px;
  border-radius: 4px;
  background-color: #f67468;
  -webkit-transition: all 350ms ease;
  transition: all 350ms ease;
  font-weight: 500;
}

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

.quote-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.hero-white-bar {
  position: absolute;
  left: 0%;
  top: auto;
  right: 0%;
  bottom: 0%;
  min-height: 100px;
  background-color: #fff;
}

.hero-heading-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  max-width: 700px;
  margin-bottom: 24px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.nav-menu-2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: auto;
  height: 100%;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  color: #000;
  white-space: nowrap;
}

.hero-column {
  position: relative;
}

.hero-quote-card {
  overflow: hidden;
  width: 100%;
  margin-right: auto;
  margin-bottom: 14px;
  margin-left: auto;
  padding: 24px 24px 14px;
  border-radius: 24px 24px 0px;
  background-color: #fff;
  box-shadow: 17px 17px 32px -5px rgba(0, 0, 0, 0.03);
}

.hero-grid {
  margin-top: 100px;
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  -ms-grid-columns: 1fr 2fr 1fr;
  grid-template-columns: 1fr 2fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.navigation-3 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 100px;
  padding-right: 5%;
  padding-left: 5%;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #fff;
}

.container-navigation-3 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 1160px;
  margin-right: auto;
  margin-left: auto;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.hero-button {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 24px;
  padding: 12px 32px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border: 2px solid #f67468;
  border-radius: 4px;
  background-color: #f67468;
  -webkit-transition: background-color 300ms ease, color 300ms ease;
  transition: background-color 300ms ease, color 300ms ease;
  color: #fff;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
}

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

.stars {
  margin-bottom: 14px;
}

.hero-paragraph {
  max-width: 460px;
  margin-bottom: 0px;
  color: #1a1a1a;
  font-size: 18px;
  line-height: 32px;
  font-weight: 500;
}

.hero-ui-card {
  overflow: hidden;
  width: 100%;
  max-width: 220px;
  margin-right: auto;
  margin-left: auto;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 17px 17px 32px -5px rgba(0, 0, 0, 0.03);
}

.navigation-right-2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 50%;
  min-height: 50px;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.ui-card-line {
  overflow: hidden;
  width: 100%;
  height: 5px;
  max-width: 57px;
  margin-top: 12px;
  border-radius: 10px;
  background-color: #f4f1f1;
}

.hero-heading-2 {
  margin-top: 0px;
  margin-bottom: 0px;
  color: #1a1a1a;
  font-size: 72px;
  line-height: 82px;
  letter-spacing: -0.03em;
}

.quote-text {
  margin-top: 14px;
  margin-bottom: 8px;
  color: #000;
  font-size: 14px;
  line-height: 24px;
  font-weight: 600;
}

.avatar {
  width: 44px;
}

.nav-link-2 {
  margin-right: 0px;
  margin-left: 0px;
  padding: 20px;
  -webkit-transition: all 350ms ease;
  transition: all 350ms ease;
  color: #000;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.nav-link-2:hover {
  color: #289f8a;
}

.ui-card-content {
  padding: 20px 14px;
}

.bg-bloom {
  position: absolute;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.hero-detail-small {
  margin-top: 12px;
  color: #1a1a1a;
  font-size: 12px;
  line-height: 24px;
  font-weight: 600;
}

.container-3 {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: 1160px;
  margin-right: auto;
  margin-left: auto;
}

.header-section-2 {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 60px 5% 100px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: transparent;
}

.map-image-wrapper {
  height: 120px;
}

.hero-icon {
  margin-right: 10px;
  margin-left: 10px;
}

.hero-column-middle {
  position: relative;
}

.bg-wrapper {
  position: absolute;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-color: #f9f9f9;
}

.navigation-left-2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 50%;
  min-height: 50px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.business-name {
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 600;
}

.hero-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

.card-map {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.text-span-3 {
  color: rgba(51, 51, 51, 0.4);
}

.arrow-pointer {
  position: absolute;
  left: auto;
  top: -100px;
  right: 0%;
  bottom: auto;
}

.form-block-2 {
  width: 100%;
  max-width: 506px;
  margin-bottom: 0px;
}

.search-field {
  width: 100%;
  min-height: 54px;
  margin-bottom: 0px;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 58px;
  border: 1px solid #f2f3f8;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  background-color: transparent;
  color: #67718e;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.search-field::-webkit-input-placeholder {
  color: #b6bcce;
}

.search-field:-ms-input-placeholder {
  color: #b6bcce;
}

.search-field::-ms-input-placeholder {
  color: #b6bcce;
}

.search-field::placeholder {
  color: #b6bcce;
}

.hero-feature-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-right: 20px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  color: #37456c;
  font-weight: 500;
}

.search-block-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  max-width: 600px;
  margin-top: 0px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.hero-card-bg {
  position: absolute;
  left: -20px;
  top: 20px;
  right: 20px;
  bottom: -20px;
  z-index: -1;
  background-color: #f5f7f9;
}

.header-section-large {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  height: 100vh;
  padding: 120px 5%;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: rgba(59, 84, 190, 0.09);
  color: #141e44;
}

.grid-image-large {
  position: relative;
  height: 280px;
  margin-left: 60px;
}

.hero-image-grid {
  width: 100%;
  max-width: 750px;
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  -ms-grid-columns: 3fr 1fr;
  grid-template-columns: 3fr 1fr;
}

.hero-image-cover {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: 50% 0%;
  object-position: 50% 0%;
}

.hero-feature-icon {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 30px;
  height: 30px;
  margin-right: 8px;
  padding: 8px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100px;
  background-color: rgba(20, 30, 68, 0.03);
}

.success-message {
  background-color: #3cdfa5;
  font-weight: 700;
}

.header-paragraph-2 {
  max-width: 600px;
  margin-bottom: 25px;
  font-family: Montserrat, sans-serif;
  color: rgba(20, 30, 68, 0.55);
  font-size: 19px;
  line-height: 38px;
  font-weight: 400;
}

.address-icon {
  position: absolute;
  left: 24px;
  top: auto;
  right: auto;
  bottom: auto;
}

.form-2 {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: transparent;
  -webkit-transition: border-color 300ms ease;
  transition: border-color 300ms ease;
}

.hero-heading-3 {
  margin-top: 0px;
  margin-bottom: 24px;
  font-family: Montserrat, sans-serif;
  color: #141e44;
  font-size: 62px;
  line-height: 68px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.feature-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 24px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  font-family: Montserrat, sans-serif;
  font-size: 16px;
}

.image-fixed-wrapper {
  position: absolute;
  left: auto;
  top: 0%;
  right: 0%;
  bottom: 0%;
  z-index: 5;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 50%;
  height: 100%;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: rgba(168, 33, 33, 0);
}

.grid-hero-small {
  grid-column-gap: 72px;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.submit-button-2 {
  width: auto;
  height: 100%;
  min-height: 54px;
  padding-right: 24px;
  padding-left: 24px;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  background-color: #1355ff;
  box-shadow: 20px 20px 45px -9px rgba(33, 37, 56, 0.13);
  -webkit-transition: background-color 300ms ease;
  transition: background-color 300ms ease;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
}

.submit-button-2:hover {
  background-color: #154ee2;
}

.grid-image-standard {
  position: relative;
  height: 240px;
}

.nav-badge-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.badge-new {
  margin-left: 8px;
  padding: 2px 8px;
  border-radius: 4px;
  background-color: #40bf6a;
  color: #f7f7f7;
  font-size: 12px;
  line-height: 16px;
  font-weight: 600;
}

.container-navigation-4 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  max-width: 1280px;
  margin-right: auto;
  margin-left: auto;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  border-bottom: 1px none rgba(4, 20, 52, 0.1);
}

.badge-popular {
  margin-left: 8px;
  padding: 2px 8px;
  border-radius: 4px;
  background-color: #e6191a;
  color: #f7f7f7;
  font-size: 12px;
  line-height: 16px;
  font-weight: 600;
}

.navigation-link-2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  padding-right: 20px;
  padding-left: 20px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
  color: #1a1a1a;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  text-decoration: none;
}

.navigation-link-2:hover {
  color: #6070c8;
}

.navigation-link-2.w--open {
  color: #4c4cb3;
}

.logo-image {
  width: 250px;
}

.nav-bottom-both {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.nav-button-blue {
  display: none;
  min-height: 40px;
  padding: 12px 14px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-style: none;
  border-width: 1.5px 1.5px 3px;
  border-color: #6070c8 #6070c8 #141e44;
  border-radius: 0px;
  background-color: #141e44;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  color: #fff;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
}

.nav-button-blue:hover {
  background-color: #4cd17c;
  color: #f7f7f7;
}

.nav-column-small {
  grid-column-gap: 20px;
  grid-row-gap: 14px;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
}

.nav-button-plain {
  display: none;
  padding: 8px 14px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: transparent;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  color: #1a1a1a;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
}

.nav-button-plain:hover {
  color: #4255bd;
}

.navigation-polka {
  z-index: 99;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 90px;
  padding-right: 3%;
  padding-left: 3%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-bottom: 1px none #000;
  background-color: #fff;
}

.nav-icon {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 24px;
  height: 24px;
  margin-right: 24px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.nav-line {
  height: 1px;
  margin-top: 32px;
  margin-bottom: 20px;
  background-color: #e0e3e6;
}

.navigation-toggle {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  padding-right: 30px;
  padding-left: 20px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
  color: #1a1a1a;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
}

.navigation-toggle:hover {
  color: #6070c8;
}

.navigation-toggle.w--open {
  color: #6070c8;
}

.banner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 14px 5%;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #fff;
}

.banner-detail {
  color: #666;
  line-height: 24px;
  font-weight: 500;
}

.icon-small-user {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 36px;
  height: 36px;
  margin-right: 5px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.paragraph-small-regular {
  color: #141e44;
  font-size: 14px;
  line-height: 24px;
}

.text-link-default {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-left: 10px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: opacity 300ms ease;
  transition: opacity 300ms ease;
  color: #6070c8;
  text-decoration: none;
}

.text-link-default:hover {
  opacity: 0.8;
}

.nav-dropdown-base {
  overflow: hidden;
  max-width: 1100px;
  margin-right: auto;
  margin-left: auto;
  padding: 36px 20px 20px;
  border-style: solid;
  border-width: 1px;
  border-color: #f7f7f7;
  border-radius: 20px;
  background-color: #fff;
  box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.08);
  color: #fff;
}

.dropdown-list-small {
  z-index: 99;
  min-width: 100%;
}

.dropdown-list-small.w--open {
  position: absolute;
  left: 0px;
  top: 90px;
  right: 0px;
  bottom: auto;
  z-index: 99;
  max-width: 1280px;
  min-width: auto;
  margin-right: auto;
  margin-left: auto;
  padding-top: 20px;
  background-color: transparent;
}

.nav-link-large {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 12px 24px;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 8px;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  color: #141e44;
  text-decoration: none;
}

.nav-link-large:hover {
  background-color: #edf0f9;
  color: #4255bd;
}

.nav-title {
  color: #141e44;
  font-size: 18px;
  line-height: 32px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.navigation-button-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.polka-heading-detail-small {
  margin-bottom: 8px;
  color: #141e44;
  font-size: 16px;
  line-height: 16px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.icon-small-arrow {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 18px;
  height: 18px;
  margin-left: 5px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.nav-grid {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.nav-column-large {
  grid-column-gap: 20px;
  grid-row-gap: 14px;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
}

.brand-3 {
  margin-right: 20px;
}

.navigation-full {
  position: fixed;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: auto;
  z-index: 999999;
  background-color: rgba(237, 240, 249, 0);
  box-shadow: 0 1px 20px -1px rgba(0, 0, 0, 0.11);
  font-family: Montserrat, sans-serif;
  color: #b13d3d;
  font-weight: 400;
}

.nav-title-wrapper {
  margin-bottom: 24px;
  border-bottom: 1px solid #b2b2b2;
}

.navigation-link-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 100%;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.menu-wrap-2 {
  position: static;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  padding-right: 25px;
  padding-left: 25px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  color: #283338;
}

.navigation-bottom-wrapper {
  padding-right: 16px;
  padding-left: 16px;
}

.paragraph-small {
  font-size: 14px;
  line-height: 24px;
  letter-spacing: -0.01em;
}

.paragraph-small.text-weight-semibold {
  font-weight: 600;
}

.nav-contact {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-left: 14px;
  padding: 8px 14px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-style: solid;
  border-width: 1px;
  border-color: #6070c8;
  border-radius: 8px;
  background-color: transparent;
  -webkit-transition: border-color 400ms ease;
  transition: border-color 400ms ease;
  color: #4255bd;
  font-size: 14px;
  line-height: 24px;
  font-weight: 500;
  text-decoration: none;
}

.nav-contact:hover {
  border-color: #d3d3d3;
}

.navigation-line-break {
  width: 1px;
  height: 100%;
  max-height: 48px;
  margin-right: 10px;
  margin-left: 10px;
  background-color: #1a1a1a;
}

.nav-contact-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.icon-nav {
  margin-right: 10px;
}

.dropdown-2 {
  position: static;
  height: 100%;
}

.phone-icon {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 24px;
  height: 24px;
  margin-left: 4px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.text-block {
  font-family: Syncopate, sans-serif;
  color: #141e44;
  font-size: 13px;
  font-weight: 700;
}

.text-block-2 {
  font-family: Syncopate, sans-serif;
  color: #141e44;
  font-size: 13px;
  font-weight: 700;
}

.text-block-3 {
  font-family: Syncopate, sans-serif;
  color: #141e44;
  font-size: 13px;
  font-weight: 700;
}

.text-block-4 {
  color: #141e44;
}

.text-block-5 {
  color: #141e44;
}

.button {
  width: 100%;
  padding: 17px 20px;
  background-color: #141e44;
  box-shadow: 8px 8px 0 0 #4cd17c;
  font-family: Montserrat, sans-serif;
  color: #fff;
  font-size: 17px;
  font-weight: 800;
  text-align: center;
}

.image-3 {
  width: 20px;
}

.image-4 {
  width: 20px;
}

.grid-two-column {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.grid-two-column.align-centre {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.button-grid {
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.button-neutral {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  min-height: 48px;
  min-width: 120px;
  margin-right: 0px;
  margin-left: 0px;
  padding: 17px 30px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 0px;
  background-color: #141e44;
  box-shadow: 7px 7px 0 0 #4cd17c;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  text-align: center;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.button-neutral:hover {
  background-color: #141e44;
}

.button-neutral:active {
  background-color: #160042;
}

.button-neutral:focus {
  outline-color: #6b7094;
  outline-offset: 0px;
  outline-style: none;
  outline-width: 2px;
}

.container-regular {
  position: relative;
  width: 100%;
  max-width: 1140px;
  margin-right: auto;
  margin-left: auto;
}

.button-secondary {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  min-height: 48px;
  min-width: 120px;
  margin-left: 27px;
  padding: 17px 32px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-style: solid;
  border-width: 1px;
  border-color: #e4e6f1;
  border-radius: 0px;
  background-color: transparent;
  outline-color: transparent;
  outline-offset: 0px;
  outline-style: solid;
  outline-width: 2px;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
  color: #160042;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.button-secondary:hover {
  border-color: transparent;
  background-color: #edf0f9;
}

.button-secondary:active {
  background-color: #e4e6f1;
  color: #642eff;
}

.button-secondary:focus {
  outline-color: #160042;
  outline-offset: 0px;
  outline-style: solid;
  outline-width: 2px;
}

.image-cover-2 {
  width: 100%;
  height: 100%;
  padding-right: 0px;
  padding-left: 0px;
  -o-object-fit: cover;
  object-fit: cover;
}

.h1-heading {
  margin-top: 0px;
  font-size: 64px;
  line-height: 1.2;
  letter-spacing: -0.04em;
}

.h1-heading.margin-bottom-32 {
  margin-bottom: 10px;
  font-family: Syncopate, sans-serif;
  font-size: 50px;
  font-weight: 800;
}

.paragraph-large-3 {
  font-size: 18px;
  line-height: 32px;
  letter-spacing: -0.02em;
}

.paragraph-large-3.text-color-gray-500 {
  margin-bottom: 20px;
  color: rgba(20, 30, 68, 0.64);
  font-size: 20px;
  line-height: 38px;
}

.placeholder-image-tall {
  overflow: hidden;
  width: 100%;
  height: 640px;
  max-width: 500px;
  border-radius: 12px;
}

.button-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 32px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.section-regular {
  position: relative;
  padding: 92px 5%;
}

.heading-detail-small {
  font-size: 14px;
  line-height: 24px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.heading-detail-small.margin-bottom-12 {
  margin-bottom: 12px;
}

.heading-detail-small.margin-bottom-12.text-color-gray-500 {
  font-family: Syncopate, sans-serif;
  color: rgba(20, 30, 68, 0.26);
}

.section-2 {
  height: 100vh;
  background-color: #edf0f9;
}

.div-block {
  font-family: Montserrat, sans-serif;
  color: #141e44;
}

.arrow {
  margin-left: 20px;
}

.hero-person {
  position: relative;
  z-index: 5;
  width: 100%;
  max-height: 1000px;
  max-width: none;
}

.display-heading {
  position: relative;
  z-index: 5;
  margin-top: 0px;
  margin-bottom: 0px;
  color: #161c27;
  font-size: 80px;
  line-height: 88px;
  font-weight: 400;
  letter-spacing: -0.03em;
}

.header-block-2 {
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.navigation-menu-2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.nav-link-3 {
  margin-right: 0px;
  margin-left: 0px;
  padding: 20px;
  -webkit-transition: all 350ms ease;
  transition: all 350ms ease;
  color: #000;
  font-size: 14px;
  font-weight: 500;
}

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

.card-02 {
  position: absolute;
  left: auto;
  top: -120px;
  right: 0%;
  bottom: auto;
  z-index: 5;
  box-shadow: 17px 17px 52px 0 hsla(0, 0%, 40%, 0.2);
}

.hero-block-right {
  position: absolute;
  left: auto;
  top: 0%;
  right: 0%;
  bottom: 0%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 40%;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
  background-color: #141e44;
}

.play-icon {
  width: 40px;
  margin-right: 10px;
}

.header-container {
  width: 100%;
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
}

.header-paragraph-3 {
  color: #6f6f6f;
  font-size: 20px;
  line-height: 32px;
  letter-spacing: -0.02em;
}

.hero-title-wrap {
  position: relative;
}

.container-navigation-5 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.header-wrapper-3 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 40px;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.hero-image-wrapper {
  position: relative;
  left: -60px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.button-wrapper-2 {
  position: relative;
  z-index: 5;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 100px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.header-section-3 {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  height: 100vh;
  min-height: 0px;
  padding: 160px 3% 140px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.card-01 {
  position: absolute;
  left: 0%;
  top: 0%;
  right: auto;
  bottom: auto;
  z-index: 9;
  box-shadow: 17px 17px 52px 0 hsla(0, 0%, 40%, 0.2);
}

.hero-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.button-header {
  padding: 16px 48px;
  border: 1px solid #000;
  border-radius: 50px;
  background-color: #000;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  color: #fff;
  font-size: 18px;
}

.button-header:hover {
  border: 1px solid #000;
  background-color: #fff;
  color: #000;
}

.header-accent-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.header-accent-text {
  color: #6f6f6f;
  font-size: 24px;
  line-height: 36px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.video-play-link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-left: 20px;
  padding: 10px 16px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: opacity 300ms ease;
  transition: opacity 300ms ease;
  color: #000;
  font-size: 18px;
  line-height: 32px;
  text-decoration: none;
}

.video-play-link:hover {
  opacity: 0.6;
}

.accent-header {
  position: absolute;
  left: auto;
  top: 0px;
  right: -50px;
  bottom: auto;
  opacity: 1;
}

.section-3 {
  height: 100vh;
}

.person-2 {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: 50% 100%;
  object-position: 50% 100%;
}

.header-section-4 {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  padding: 200px 3% 140px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #fff;
  background-image: none;
  background-position: 0% 0%;
  background-size: auto;
  background-repeat: no-repeat;
}

.header-grid-2 {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  grid-column-gap: 52px;
  grid-row-gap: 80px;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.form-block-3 {
  max-width: 380px;
  margin-top: 60px;
}

.title-medium-2 {
  color: rgba(20, 30, 68, 0.65);
  font-size: 16px;
  font-weight: 500;
}

.feature-wrapper-3 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 120px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.header-block-3 {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 610px;
  max-width: 440px;
  margin-right: auto;
  margin-left: auto;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
  border-top-left-radius: 220px;
  background-color: #fd7e41;
  background-image: none;
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
}

.image-5 {
  width: 24px;
}

.text-block-6 {
  color: #141e44;
  font-weight: 600;
}

.text-block-7 {
  color: #141e44;
  font-weight: 600;
}

.text-block-8 {
  color: #141e44;
}

.div-block-2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.content-section {
  padding: 100px 3%;
  background-color: #fff;
  color: #858b93;
  font-size: 18px;
  line-height: 30px;
}

.content-container {
  max-width: 1160px;
  margin-right: auto;
  margin-left: auto;
}

.content-grid {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.content-text-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  max-width: 480px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.content-preheader {
  margin-bottom: 12px;
  color: #5e38ff;
  font-size: 16px;
  line-height: 20px;
}

.content-heading {
  margin-top: 0px;
  margin-bottom: 24px;
  color: #001633;
  font-size: 48px;
  line-height: 60px;
  font-weight: 700;
  letter-spacing: -1px;
}

.content-paragraph {
  margin-bottom: 55px;
}

.content-button {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  min-height: 70px;
  padding: 20px 44px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #5e38ff;
  -webkit-transition: background-color 400ms ease;
  transition: background-color 400ms ease;
  color: #fff;
  text-decoration: none;
}

.content-button:hover {
  background-color: #001633;
}

.content-number-wrap {
  width: 250px;
  padding: 10px;
  border-top: 5px solid #4cd17c;
  background-color: rgba(20, 30, 68, 0);
  color: grey;
  font-size: 20px;
  line-height: 24px;
}

.content-header-line {
  width: 42px;
  height: 6px;
  margin-bottom: 24px;
  border-radius: 3px;
  background-color: #4cd17c;
}

.content-grid-2 {
  margin-bottom: 100px;
  justify-items: start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  grid-column-gap: 81px;
  grid-row-gap: 60px;
  -ms-grid-columns: 1.5fr 1fr;
  grid-template-columns: 1.5fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.content-image-wrap {
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.content-heading-2 {
  margin-top: 0px;
  margin-bottom: 30px;
  color: #000;
  font-size: 27px;
  line-height: 37px;
  font-weight: 800;
}

.content-section-2 {
  overflow: hidden;
  padding: 140px 3%;
  background-color: hsla(0, 0%, 100%, 0);
}

.content-image {
  position: relative;
  max-width: 500px;
  float: right;
  border-radius: 99px 0px 0px;
  -o-object-fit: fill;
  object-fit: fill;
}

.content-wrapper-2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  max-width: 800px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  font-family: Montserrat, sans-serif;
}

.content-number {
  margin-bottom: -10px;
  font-family: Syncopate, sans-serif;
  color: #141e44;
  font-size: 32px;
  line-height: 72px;
  font-weight: 800;
  text-align: center;
}

.content-numbers {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  font-family: Montserrat, sans-serif;
}

.content-paragraph-2 {
  margin-bottom: 0px;
  color: grey;
  font-size: 18px;
  line-height: 32px;
}

.content-container-2 {
  max-width: 1040px;
  margin-right: auto;
  margin-left: auto;
}

.content-image-card {
  position: absolute;
  left: -20%;
  top: -10%;
  right: auto;
  bottom: auto;
  z-index: 2;
  border-radius: 10px;
  box-shadow: 0 4px 50px 0 rgba(51, 51, 51, 0.05);
}

.text-block-9 {
  color: rgba(20, 30, 68, 0.62);
  font-size: 16px;
  font-weight: 400;
  text-align: center;
}

.text-block-10 {
  color: rgba(20, 30, 68, 0.62);
  font-size: 16px;
  font-weight: 400;
  text-align: center;
}

.text-block-11 {
  color: rgba(20, 30, 68, 0.62);
  font-size: 16px;
  font-weight: 400;
  text-align: center;
}

.section-4 {
  height: auto;
}

.process-title-wrap-3 {
  max-width: 800px;
  margin-right: auto;
  margin-bottom: 63px;
  margin-left: auto;
  text-align: center;
}

.process-section-3 {
  padding: 100px 3%;
  background-color: rgba(20, 30, 68, 0.05);
  background-image: none;
  background-size: auto;
  background-repeat: repeat;
}

.feature-title-2 {
  margin-top: 0px;
  margin-bottom: 16px;
  font-family: Syncopate, sans-serif;
  color: #141e44;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.feature-icon-square {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 70px;
  height: 30px;
  margin-right: auto;
  margin-bottom: 40px;
  margin-left: auto;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-style: solid;
  border-width: 1px;
  border-color: rgba(20, 30, 68, 0.2);
  border-radius: 0px;
  background-color: rgba(75, 142, 209, 0);
  color: #141e44;
  font-size: 24px;
  font-weight: 600;
}

.feature-icon-square.feature-icon {
  width: 70px;
  height: 30px;
  border-radius: 0px;
  background-color: #e7cf14;
  color: #fff;
  font-size: 15px;
}

.feature-icon-square.feature-icon.s {
  border-style: none;
}

.feature-icon-square.rtedgf {
  width: 70px;
  height: 30px;
  border-radius: 0px;
  background-color: #4cd17c;
}

.feature-icon-square.rtedgf.ss {
  border-style: none;
}

.feature-paragraph {
  color: rgba(20, 30, 68, 0.63);
  font-size: 16px;
  line-height: 32px;
}

.process-heading-3 {
  margin-top: 0px;
  margin-bottom: 14px;
  font-family: Syncopate, sans-serif;
  color: #141e44;
  font-size: 50px;
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.process-arrow-01 {
  position: absolute;
  left: auto;
  top: 15%;
  right: -150px;
  bottom: auto;
  max-width: 70%;
}

.process-grid-2 {
  grid-column-gap: 80px;
  grid-row-gap: 100px;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.process-card-primary {
  position: relative;
  padding: 40px 0px;
  border-radius: 30px;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  text-align: center;
}

.process-subheading {
  color: rgba(20, 30, 68, 0.62);
  font-size: 18px;
  line-height: 1.5;
}

.text-block-12 {
  font-size: 15px;
}

.text-block-13 {
  font-size: 15px;
}

.text-block-13.g {
  color: #fff;
}

.section-content-2 {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  padding: 140px 5%;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.text-span-4 {
  color: #4cd17c;
}

.text-block-14 {
  font-family: Syncopate, sans-serif;
}

.text-block-15 {
  font-family: Syncopate, sans-serif;
}

.text-block-16 {
  color: #141e44;
}

.text-block-17 {
  color: #141e44;
}

.text-block-18 {
  color: #141e44;
}

.text-block-19 {
  color: #141e44;
}

.error-message {
  padding: 18px;
  border-radius: 10px;
}

.cta-section-2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 100vh;
  padding: 110px 3%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #4cd17c;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(76, 209, 124, 0.86)), to(rgba(76, 209, 124, 0.86))), url('../images/sasan-hezarkhani--3x1B3b5gXo-unsplash.jpg');
  background-image: linear-gradient(180deg, rgba(76, 209, 124, 0.86), rgba(76, 209, 124, 0.86)), url('../images/sasan-hezarkhani--3x1B3b5gXo-unsplash.jpg');
  background-position: 0px 0px, 50% 50%;
  background-size: auto, cover;
}

.cta-heading-2 {
  margin-top: 0px;
  margin-bottom: 60px;
  font-family: Syncopate, sans-serif;
  color: #fff;
  font-size: 45px;
  line-height: 1.3;
  letter-spacing: -0.03em;
}

.success-message-2 {
  border-radius: 10px;
  background-color: #83d235;
}

.email-field {
  height: 60px;
  margin-bottom: 20px;
  border: 1px none #000;
  border-radius: 10px;
  background-color: #f4f5f8;
  color: #181945;
  line-height: 24px;
  font-weight: 500;
  text-align: center;
  letter-spacing: -0.02em;
}

.email-field:hover {
  border-style: solid;
  border-color: rgba(24, 25, 69, 0.1);
}

.email-field:focus {
  border-style: solid;
  border-color: rgba(24, 25, 69, 0.1);
}

.container-4 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  max-width: 1260px;
  margin-right: auto;
  margin-left: auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.feature-grid {
  grid-row-gap: 58px;
  grid-template-areas: "."
    "."
    "Area";
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -ms-grid-rows: auto 58px auto 58px auto;
  grid-template-rows: auto auto auto;
}

.feature-text-2 {
  color: #fff;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
}

.feature-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.cta-block {
  width: 90%;
  padding: 60px 3%;
  border-style: none;
  border-width: 5px;
  border-color: #fff;
  border-radius: 4px;
  background-color: #141e44;
  background-image: none;
  background-size: auto;
  background-repeat: repeat;
}

.white-check {
  font-size: 10px;
}

.green-circle {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 20px;
  height: 20px;
  margin-right: 20px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  border-radius: 50%;
  background-color: #4cd17c;
}

.submit-button-3 {
  width: 100%;
  padding-top: 20px;
  padding-bottom: 20px;
  border-radius: 10px;
  background-color: #83d235;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.submit-button-3:hover {
  background-color: rgba(131, 210, 53, 0.9);
}

.cta-grid-2 {
  grid-column-gap: 150px;
  -ms-grid-columns: 0.75fr 1fr;
  grid-template-columns: 0.75fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  font-family: Montserrat, sans-serif;
}

.button-2 {
  width: 100%;
  padding: 19px 25px;
  background-color: #fff;
  box-shadow: 7px 7px 0 0 #4cd17c;
  font-family: Syncopate, sans-serif;
  color: #141e44;
  font-weight: 700;
  text-align: center;
}

.title-medium-3 {
  margin-top: 0px;
  margin-bottom: 25px;
  color: #141e44;
  font-size: 26px;
  line-height: 36px;
}

.quote-text-2 {
  max-width: none;
  margin-bottom: 10px;
  padding: 12px 5px 12px 24px;
  border-left: 4px solid #4cd17c;
  background-color: rgba(20, 30, 68, 0.05);
  color: #6f7f97;
  font-size: 14px;
  line-height: 32px;
  font-style: italic;
  font-weight: 500;
}

.left-arrow-2 {
  left: -8%;
  width: 72px;
  height: 72px;
  border-radius: 50px;
  background-color: rgba(20, 30, 68, 0.05);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  color: #4cd17c;
}

.left-arrow-2:hover {
  background-color: #4cd17c;
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
  color: #fff;
}

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

.testimonial-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.testimonial-slide {
  width: 50%;
}

.author-text {
  max-width: 460px;
  margin-top: 32px;
  color: #445775;
  font-size: 16px;
  line-height: 25px;
  font-weight: 400;
}

.title-wrap-2 {
  max-width: 500px;
  margin-right: auto;
  margin-bottom: 5px;
  margin-left: auto;
  color: rgba(20, 30, 68, 0.62);
  font-size: 14px;
  line-height: 25px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 1px;
}

.testimonial-container {
  position: relative;
  z-index: 10;
  display: block;
  height: auto;
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-family: Montserrat, sans-serif;
}

.icon-2 {
  color: #141e44;
  font-size: 15px;
}

.icon-2:hover {
  color: #fff;
}

.brand-span {
  color: #4cd17c;
  font-weight: 700;
}

.right-arrow-2 {
  right: -8%;
  width: 72px;
  height: 72px;
  border-radius: 50px;
  background-color: rgba(20, 30, 68, 0.05);
  -webkit-transition: all 250ms ease;
  transition: all 250ms ease;
  color: #8dc63f;
}

.right-arrow-2:hover {
  background-color: #4cd17c;
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
  color: #fff;
}

.testimonial-card-2 {
  position: relative;
  width: 100%;
  margin-right: 20px;
  margin-left: 20px;
  padding: 40px;
  border-radius: 4px;
  background-color: #fff;
}

.slider {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  margin-top: 35px;
  padding-top: 20px;
  padding-bottom: 20px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: transparent;
}

.title-large-3 {
  margin: 0px auto 25px;
  font-family: Syncopate, sans-serif;
  color: #141e44;
  font-size: 50px;
  line-height: 56px;
  letter-spacing: -0.02em;
}

.title-wrapper-2 {
  max-width: 730px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.name-wrapper {
  position: relative;
  left: 0%;
  top: auto;
  right: 0%;
  bottom: 0%;
  margin-top: 25px;
}

.testimonial-section {
  position: relative;
  padding: 80px 10% 90px;
  border-bottom: 1px none #e6e6e6;
  background-color: rgba(236, 249, 255, 0);
}

.text-span-5 {
  color: #ff1518;
  font-weight: 800;
}

.footer-column-2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 32px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.footer-column-2.centre-cell {
  border-right: 1px solid #e8e7ee;
  border-left: 1px solid #e8e7ee;
}

.text-field-dark {
  min-height: 48px;
  margin-bottom: 0px;
  border-style: solid;
  border-width: 1.2px;
  border-color: #130b46;
  border-radius: 8px;
  background-color: transparent;
  color: #130b46;
}

.text-field-dark::-webkit-input-placeholder {
  color: #2f2a51;
}

.text-field-dark:-ms-input-placeholder {
  color: #2f2a51;
}

.text-field-dark::-ms-input-placeholder {
  color: #2f2a51;
}

.text-field-dark::placeholder {
  color: #2f2a51;
}

.footer-line-break {
  height: 1px;
  margin-top: 40px;
  margin-bottom: 40px;
  background-color: #e8e7ee;
}

.newsletter-row {
  position: relative;
  z-index: 5;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.container-large {
  position: relative;
  display: block;
  width: 100%;
  max-width: 1280px;
  margin-right: auto;
  margin-left: auto;
}

.icon-regular {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 24px;
  height: 24px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  color: #160042;
}

.footer-grid-link-bold {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-top: 4px;
  padding-bottom: 4px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  color: #130b46;
  font-size: 14px;
  line-height: 24px;
  font-weight: 600;
  letter-spacing: -0.02em;
  text-decoration: underline;
  text-transform: uppercase;
}

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

.form-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.button-submit {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-left: 12px;
  padding: 12px 24px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 8px;
  background-color: #130b46;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  color: #fff;
  line-height: 24px;
  font-weight: 600;
  text-align: center;
}

.button-submit:hover {
  background-color: #2f2a51;
}

.footer-logo-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.logo-circle {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 40px;
  height: 40px;
  margin-right: 16px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100px;
  background-color: #d6ffd8;
}

.heading-detail-footer {
  color: #130b46;
  font-size: 18px;
  line-height: 32px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-link-grid {
  min-width: 50%;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
}

.footer-grid-link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-top: 4px;
  padding-bottom: 4px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  color: #130b46;
  font-size: 16px;
  line-height: 24px;
  text-decoration: none;
}

.paragraph-small-2 {
  color: #6c678e;
}

.footer {
  padding: 100px 5%;
  background-color: #141e44;
}

.newsletter-form {
  margin-bottom: 0px;
}

.icon-regular-social {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 24px;
  height: 24px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.logo-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  color: #130b46;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-decoration: none;
}

.newsletter-heading {
  margin-top: 0px;
  margin-right: 32px;
  margin-bottom: 0px;
  color: #130b46;
  font-size: 32px;
  line-height: 40px;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.accent {
  position: absolute;
  left: auto;
  top: 0%;
  right: 0%;
  bottom: 0%;
  z-index: 0;
  height: 100%;
}

.icon-regular-contact {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 24px;
  height: 24px;
  margin-right: 12px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  color: #9895b2;
}

.success-message-3 {
  background-color: #ebffeb;
  color: #006603;
}

.footer-newsletter-2 {
  position: relative;
  margin-top: 40px;
  margin-bottom: 40px;
  padding: 60px 5%;
  border-radius: 12px;
  background-color: #f6f6f9;
}

.footer-grid-2 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  border: 1px solid #e8e7ee;
  border-radius: 12px;
}

.container-5 {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: 1060px;
  margin-right: auto;
  margin-left: auto;
}

.icon-circle {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 40px;
  height: 40px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border: 1px solid #e8e7ee;
  border-radius: 100px;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
  color: #6c678e;
}

.icon-circle:hover {
  color: #130b46;
}

.footer-line-break-small {
  width: 100%;
  height: 1px;
  margin-top: 24px;
  margin-bottom: 24px;
  background-color: #e8e7ee;
}

.company-logo {
  width: 250px;
}

.footer-link-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-decoration: none;
}

.logo-wrap {
  max-width: 410px;
}

.footer-section-2 {
  padding: 80px 3% 31px;
  border-top: 1px solid rgba(20, 30, 68, 0.18);
  background-color: rgba(165, 168, 180, 0);
}

.grey-dot {
  width: 4px;
  height: 4px;
  margin-right: 16px;
  margin-left: 16px;
  border-radius: 50%;
  background-color: rgba(20, 30, 68, 0.62);
}

.footer-grid-3 {
  grid-row-gap: 60px;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  font-family: Montserrat, sans-serif;
  color: #c74848;
}

.footer-link-title {
  margin-bottom: 20px;
  font-family: Syncopate, sans-serif;
  font-size: 18px;
  font-weight: 700;
  white-space: nowrap;
}

.footer-paragraph {
  color: #141e44;
  font-size: 15px;
  line-height: 26px;
  font-weight: 400;
}

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

.legal-text {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-family: Montserrat, sans-serif;
  color: rgba(20, 30, 68, 0.62);
  font-weight: 500;
  text-align: center;
}

.legal-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-top: 1px none rgba(76, 209, 124, 0.88);
}

.company-logo-link {
  margin-bottom: 32px;
}

.container-6 {
  max-width: 1260px;
  margin-right: auto;
  margin-left: auto;
}

.footer-link-2 {
  display: block;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-transition: color 200ms ease;
  transition: color 200ms ease;
  color: #141e44;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
}

.footer-link-2:hover {
  color: #4cd17c;
}

.footer-link-2.no-padding {
  margin-bottom: 0px;
}

.footer-link-column {
  color: #141e44;
}

.social-icon {
  margin-right: 14px;
  opacity: 0.6;
}

.grey-divider {
  height: 1px;
  margin-top: 100px;
  margin-bottom: 24px;
  background-color: hsla(0, 0%, 100%, 0.1);
}

.navigation-4 {
  position: fixed;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  min-height: 88px;
  padding: 24px 5%;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #fff;
  box-shadow: 0 2px 20px 0 rgba(0, 0, 0, 0.09);
}

.logo-link {
  margin-right: 24px;
}

.navigation-container {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 1280px;
  margin-right: auto;
  margin-left: auto;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.logo-2 {
  width: 250px;
  margin-left: 23px;
}

.navigation-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.navigation-button-3 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  min-height: 48px;
  min-width: 120px;
  margin-left: 10px;
  padding: 12px 15px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 0px;
  background-color: #141e44;
  outline-color: transparent;
  outline-offset: 0px;
  outline-style: solid;
  outline-width: 2px;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
  font-family: Syncopate, sans-serif;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.navigation-button-3:hover {
  background-color: #4cd17c;
}

.navigation-button-3:active {
  background-color: #160042;
}

.navigation-button-3:focus {
  outline-color: #6b7094;
  outline-offset: 0px;
  outline-style: solid;
  outline-width: 2px;
}

.navigation-link-3 {
  margin-right: 0px;
  margin-left: 0px;
  padding: 12px 24px;
  border-radius: 50px;
  background-color: transparent;
  -webkit-transition: all 350ms ease;
  transition: all 350ms ease;
  font-family: Syncopate, sans-serif;
  color: #141e44;
  font-size: 12px;
  line-height: 24px;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-decoration: none;
  white-space: nowrap;
}

.navigation-link-3:hover {
  background-color: rgba(243, 245, 251, 0);
  color: #160042;
}

.navigation-link-3.w--current {
  color: #4cd17c;
}

.navigation-link-3.rsdfs {
  display: none;
}

.navigation-menu-3 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.navigation-button-secondary {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  min-height: 48px;
  min-width: 120px;
  margin-left: 8px;
  padding: 12px 15px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-style: solid;
  border-width: 1px;
  border-color: #e4e6f1;
  border-radius: 0px;
  background-color: transparent;
  outline-color: hsla(0, 0%, 100%, 0);
  outline-offset: 0px;
  outline-style: solid;
  outline-width: 2px;
  -webkit-transition: border-color 200ms ease;
  transition: border-color 200ms ease;
  color: #160042;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.navigation-button-secondary:hover {
  border-style: none;
  border-color: transparent;
  background-color: rgba(243, 245, 251, 0);
  color: #4cd17c;
}

.navigation-button-secondary:active {
  background-color: #e4e6f1;
  color: #642eff;
}

.navigation-button-secondary:focus {
  outline-color: #160042;
  outline-offset: 0px;
  outline-style: solid;
  outline-width: 2px;
}

.text-block-20 {
  font-family: Syncopate, sans-serif;
  color: #141e44;
  font-size: 12px;
  font-weight: 700;
}

.text-block-20:hover {
  color: #4cd17c;
}

.section-5 {
  height: auto;
}

.form-wrap-2 {
  max-width: 700px;
  margin-right: auto;
  margin-left: auto;
  padding: 40px;
  border-radius: 16px;
  background-color: #fff;
  font-family: Montserrat, sans-serif;
}

.text-field-large {
  min-height: 150px;
  border: 1px solid #c4cee8;
  border-radius: 9px;
}

.text-field-large:hover {
  border-width: 2px;
}

.text-field-large:active {
  border-width: 2px;
  border-color: #5f30e2;
}

.text-field-large:focus {
  border-width: 2px;
  border-color: #5f30e2;
}

.display-normal {
  color: #02044a;
  font-size: 16px;
  line-height: 1.1;
  font-weight: 400;
}

.form-block-5 {
  margin-right: auto;
  margin-left: auto;
}

.button-wrap-right {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 32px;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.form-section-touch {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  min-height: 0vh;
  padding: 196px 3% 140px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #141e44;
}

.submit-button-4 {
  padding: 20px 40px;
  border-radius: 8px;
  background-color: #141e44;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  font-family: Syncopate, sans-serif;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
}

.submit-button-4:hover {
  background-color: #4cd17c;
}

.container-7 {
  width: 100%;
  max-width: 1280px;
  margin-right: auto;
  margin-left: auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.field-wrap {
  margin-bottom: 24px;
}

.text-field {
  min-height: 56px;
  border: 1px solid #c4cee8;
  border-radius: 9px;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
  font-size: 16px;
}

.text-field:hover {
  border-width: 2px;
}

.text-field:active {
  border-width: 2px;
  border-color: #5f30e2;
}

.text-field:focus {
  border-width: 2px;
  border-color: #5f30e2;
}

.title-wrap-3 {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin-bottom: 32px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  color: #7b88a8;
  text-align: left;
}

.heading {
  font-family: Syncopate, sans-serif;
  color: #141e44;
}

.paragraph-2 {
  color: rgba(20, 30, 68, 0.62);
  font-size: 16px;
  line-height: 24px;
}

.text-span-6 {
  font-size: 15px;
}

@media screen and (max-width: 991px) {
  .menu-wrap {
    position: absolute;
    height: auto;
    background-color: #fff;
  }

  .brand {
    margin-right: 10px;
    padding: 0px;
  }

  .dropdown-wrapper {
    padding-top: 20px;
    padding-bottom: 20px;
    border-radius: 0px;
    box-shadow: none;
  }

  .navigation-link-block {
    padding: 16px;
  }

  .toggle {
    width: 100%;
  }

  .toggle.w--open {
    width: 100%;
    background-color: #ff8c4b;
    color: #fff;
  }

  .navigation-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .image-full {
    max-width: 440px;
  }

  .logo {
    width: auto;
  }

  .featured-block {
    display: none;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .link-grid-large {
    grid-column-gap: 12px;
  }

  .navigation-button {
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .dropdown-list.w--open {
    position: static;
    padding-top: 0px;
  }

  .search {
    display: none;
  }

  .menu-button {
    margin-left: 14px;
    border-radius: 15px;
    background-color: #f3f3f6;
    color: #ff8c4b;
  }

  .menu-button.w--open {
    background-color: #ff8c4b;
    color: #fff;
  }

  .dropdown-container {
    padding: 0px;
  }

  .navigation-wrap {
    background-color: #fff;
  }

  .link-block {
    width: 100%;
    text-align: left;
  }

  .link-grid-small {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }

  .header-section {
    padding-top: 164px;
  }

  .header-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .nav-menu {
    position: absolute;
    top: 80px;
    height: auto;
    background-color: #fff;
  }

  .navigation-button-wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .navigation-2 {
    padding-right: 3%;
    padding-left: 3%;
  }

  .nav-link {
    width: 100%;
    color: #000;
  }

  .brand-2 {
    margin-right: 10px;
    padding: 0px;
  }

  .container-navigation-2 {
    position: relative;
  }

  .navigation-menu {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .menu-button-2 {
    margin-left: 14px;
    padding: 14px;
    border-radius: 100px;
    background-color: #000;
    color: #fff;
  }

  .menu-button-2:hover {
    border-radius: 100px;
    background-color: #fd7e41;
    color: #fff;
  }

  .menu-button-2.w--open {
    background-color: #fd7e41;
    color: #fff;
  }

  .process-graphic {
    margin-right: auto;
    margin-left: auto;
  }

  .process-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .line-break-3 {
    display: none;
  }

  .process-title-wrap-2 {
    max-width: 600px;
    margin-bottom: 100px;
  }

  .process-grid {
    max-width: 450px;
    margin-right: auto;
    margin-left: auto;
    grid-column-gap: 32px;
    grid-row-gap: 60px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    background-image: none;
    background-size: auto;
    background-repeat: repeat;
  }

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

  .grid-process-section {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

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

  .grid-content {
    grid-row-gap: 72px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .card-ui {
    right: 5%;
  }

  .card-ui-graph {
    right: 5%;
  }

  .cta-container {
    max-width: 640px;
  }

  .cta-grid {
    padding: 100px 50px 70px;
    grid-row-gap: 80px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

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

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

  .left-arrow {
    display: none;
  }

  .grid-testimonial {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .right-arrow {
    display: none;
  }

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

  .footer-newsletter {
    max-width: 100%;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .footer-form-block {
    width: 100%;
  }

  .footer-contact-item {
    margin-right: 40px;
  }

  .footer-grid {
    grid-row-gap: 60px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .nav-menu-2 {
    position: absolute;
    top: 80px;
    height: auto;
    background-color: #fff;
  }

  .hero-column {
    display: none;
  }

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

  .navigation-3 {
    padding-right: 3%;
    padding-left: 3%;
  }

  .container-navigation-3 {
    position: relative;
  }

  .navigation-right-2 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: auto;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .menu-button-3 {
    margin-left: 14px;
    padding: 12px;
    border-radius: 4px;
    background-color: #000;
    -webkit-transition: background-color 300ms ease;
    transition: background-color 300ms ease;
    color: #fff;
  }

  .menu-button-3:hover {
    background-color: #289f8a;
    color: #fff;
  }

  .menu-button-3.w--open {
    background-color: #289f8a;
    color: #fff;
  }

  .nav-link-2 {
    width: 100%;
    color: #262626;
  }

  .header-section-2 {
    padding-top: 60px;
  }

  .navigation-left-2 {
    width: auto;
  }

  .header-section-large {
    padding-top: 60px;
    padding-bottom: 60px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .hero-image-grid {
    max-width: none;
  }

  .hero-block-small {
    max-width: 680px;
  }

  .image-fixed-wrapper {
    position: relative;
    width: 100%;
    border-radius: 20px;
  }

  .grid-hero-small {
    margin-bottom: 60px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .navigation-link-2 {
    width: 100%;
    padding-top: 14px;
    padding-bottom: 14px;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

  .navigation-link-2.w--open {
    width: 100%;
    background-color: #7070c2;
    color: #fff;
  }

  .menu-button-4 {
    margin-left: 14px;
    padding: 8px;
    border-radius: 8px;
    background-color: #f4f5fb;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    color: #4255bd;
  }

  .menu-button-4:hover {
    background-color: #060606;
    color: #fff;
  }

  .menu-button-4.w--open {
    background-color: #4255bd;
    color: #fff;
  }

  .navigation-toggle {
    width: 100%;
    padding-top: 14px;
    padding-bottom: 14px;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    color: #060606;
  }

  .navigation-toggle.w--open {
    width: 100%;
    background-color: #4255bd;
    color: #fff;
  }

  .nav-dropdown-base {
    padding-top: 24px;
    padding-bottom: 24px;
    box-shadow: none;
  }

  .dropdown-list-small.w--open {
    position: static;
    overflow: auto;
    height: 50vh;
    border-bottom: 4px solid #1a1a1a;
  }

  .nav-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .nav-column-large {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .brand-3 {
    margin-right: 10px;
    padding: 0px;
  }

  .menu-wrap-2 {
    position: absolute;
    height: auto;
    background-color: #fff;
  }

  .nav-contact {
    display: none;
  }

  .navigation-line-break {
    display: none;
  }

  .dropdown-2 {
    width: 100%;
  }

  .grid-two-column {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .placeholder-image-tall {
    height: 500px;
    max-width: 100%;
  }

  .menu-button-5 {
    margin-left: 14px;
    padding: 14px;
    border-radius: 100px;
    background-color: #000;
    color: #fff;
  }

  .menu-button-5:hover {
    border-radius: 100px;
    color: #fff;
  }

  .menu-button-5.w--open {
    background-color: #000;
    color: #fff;
  }

  .hero-person {
    max-height: 600px;
  }

  .header-block-2 {
    margin-bottom: 140px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .navigation-menu-2 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .nav-link-3 {
    width: 100%;
    color: #000;
  }

  .card-02 {
    display: none;
  }

  .hero-block-right {
    position: relative;
    width: 100%;
    max-height: 420px;
  }

  .container-navigation-5 {
    position: relative;
  }

  .hero-image-wrapper {
    left: 0px;
    margin-right: auto;
    margin-left: auto;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .header-section-3 {
    min-height: auto;
    padding-bottom: 0px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .card-01 {
    display: none;
  }

  .header-section-4 {
    padding-top: 164px;
  }

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

  .content-number-wrap {
    margin-right: 30px;
  }

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

  .content-number {
    font-size: 55px;
    line-height: 65px;
  }

  .content-numbers {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .content-image-card {
    left: auto;
    top: -50px;
    right: -20%;
    bottom: auto;
  }

  .process-arrow-01 {
    display: none;
  }

  .process-grid-2 {
    max-width: 640px;
    margin-right: auto;
    margin-left: auto;
    grid-column-gap: 32px;
    grid-row-gap: 32px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .process-card-primary {
    background-color: #fff;
  }

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

  .form-block-4 {
    max-width: 450px;
    margin-right: auto;
    margin-left: auto;
  }

  .cta-grid-2 {
    grid-row-gap: 32px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .left-arrow-2 {
    left: -10px;
    width: 55px;
    height: 55px;
  }

  .testimonial-slide {
    width: 100%;
    padding-right: 50px;
    padding-left: 50px;
  }

  .author-text {
    max-width: 530px;
  }

  .testimonial-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .right-arrow-2 {
    right: -10px;
    width: 55px;
    height: 55px;
  }

  .testimonial-section {
    padding-right: 3%;
    padding-left: 3%;
  }

  .footer-column-2.centre-cell {
    border: 1px none #000;
  }

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

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

  .navigation-4 {
    position: relative;
  }

  .menu-button-6 {
    margin-left: 8px;
    padding: 12px;
    border-style: solid;
    border-width: 1px;
    border-color: #f3f5fb;
    border-radius: 8px;
    background-color: #fff;
    color: #393b6a;
  }

  .menu-button-6.w--open {
    border-color: #fff;
    background-color: #160042;
  }

  .navigation-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: auto;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .navigation-link-3 {
    width: 100%;
  }

  .navigation-menu-3 {
    margin-top: 26px;
    padding: 12px;
    border-style: solid;
    border-width: 1px;
    border-color: #f3f5fb;
    border-radius: 8px;
    background-color: #fff;
    color: #393b6a;
  }

  .navigation-menu-3.w--open {
    border-color: #fff;
    background-color: #282556;
  }
}

@media screen and (max-width: 767px) {
  .link-grid-large {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }

  .navigation-button {
    display: none;
  }

  .button-sign-up {
    display: none;
  }

  .card-block-top {
    left: -2%;
  }

  .hero-heading {
    font-size: 60px;
  }

  .navigation-menu {
    width: 100%;
  }

  .card-block {
    right: -3%;
  }

  .process-step {
    margin-right: 20px;
  }

  .process-title-wrap {
    margin-bottom: 60px;
  }

  .process-heading-2 {
    font-size: 50px;
  }

  .process-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .grid-process-stacked {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .feature-card-04 {
    border-bottom: 1px dashed #e5e5e5;
  }

  .feature-card-03 {
    border-bottom: 1px dashed #e5e5e5;
    border-right-style: none;
  }

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

  .feature-card-01 {
    border-right-style: none;
  }

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

  .left-arrow {
    display: none;
  }

  .right-arrow {
    display: none;
  }

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

  .footer-social-links {
    margin-top: 20px;
    margin-right: -24px;
    margin-bottom: 24px;
  }

  .footer-link {
    font-size: 18px;
  }

  .footer-section {
    background-position: 0% 100%, 70% 0%;
  }

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

  .footer-title {
    margin-bottom: 24px;
    font-size: 18px;
  }

  .footer-bottom {
    padding-bottom: 34px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

  .footer-blue-link {
    font-size: 16px;
  }

  .footer-grid {
    margin-bottom: 60px;
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .navigation-button-2 {
    display: none;
  }

  .hero-white-bar {
    display: none;
  }

  .header-section-2 {
    padding-bottom: 0px;
  }

  .grid-image-large {
    height: 200px;
  }

  .grid-image-standard {
    height: 180px;
  }

  .nav-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .grid-two-column {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .h1-heading {
    font-size: 48px;
  }

  .placeholder-image-tall {
    height: 400px;
  }

  .section-regular {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .display-heading {
    font-size: 60px;
    line-height: 70px;
  }

  .navigation-menu-2 {
    width: 100%;
  }

  .content-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .content-text-wrap {
    max-width: none;
  }

  .content-heading {
    margin-bottom: 40px;
    font-size: 40px;
    line-height: 50px;
  }

  .content-paragraph {
    margin-bottom: 60px;
  }

  .content-number-wrap {
    font-size: 18px;
  }

  .content-grid-2 {
    margin-bottom: 60px;
    grid-row-gap: 60px;
  }

  .content-image-wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .content-heading-2 {
    font-size: 40px;
    line-height: 50px;
  }

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

  .content-number {
    font-size: 44px;
    line-height: 55px;
  }

  .content-image-card {
    right: -10%;
  }

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

  .left-arrow-2 {
    left: 0px;
  }

  .slide-nav-2 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    opacity: 0.4;
  }

  .testimonial-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .right-arrow-2 {
    right: 0px;
  }

  .testimonial-card-2 {
    padding: 25px;
  }

  .testimonial-section {
    overflow: hidden;
  }

  .footer-column-2 {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .newsletter-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .social-grid {
    margin-top: 14px;
  }

  .footer-logo-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .logo-wrapper {
    margin-bottom: 14px;
  }

  .newsletter-heading {
    margin-bottom: 24px;
  }

  .accent {
    opacity: 0.1;
  }

  .footer-line-break-small {
    margin-top: 16px;
    margin-bottom: 16px;
  }

  .navigation-button-secondary {
    display: none;
  }
}

@media screen and (max-width: 479px) {
  .link-grid-large {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .navigation-link {
    margin-top: 12px;
  }

  .navigation-icon-block {
    display: none;
  }

  .link-grid-small {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .header-paragraph {
    font-size: 18px;
    line-height: 30px;
  }

  .header-icon {
    width: 32px;
    height: 32px;
    margin-right: 10px;
    margin-left: 10px;
  }

  .form-block {
    margin-top: 40px;
  }

  .number-large {
    margin-right: 0px;
  }

  .card-block-top {
    display: none;
  }

  .feature-wrapper {
    margin-top: 60px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    text-align: left;
  }

  .hero-heading {
    font-size: 52px;
    line-height: 60px;
  }

  .number-wrapper {
    margin-bottom: 40px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .card-block {
    right: auto;
  }

  .header-wrapper {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .header-block {
    height: auto;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .line-break {
    display: none;
  }

  .process-graphic {
    max-width: 100%;
  }

  .process-step {
    margin-right: 0px;
    margin-bottom: 20px;
  }

  .line-break-2 {
    max-width: 100%;
  }

  .process-main-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .process-line {
    display: none;
  }

  .process-heading-2 {
    font-size: 44px;
  }

  .process-container-2 {
    padding-right: 12px;
    padding-left: 12px;
  }

  .process-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .button-standard {
    text-align: center;
  }

  .h3-heading {
    font-size: 27px;
    line-height: 46px;
    font-style: normal;
    font-weight: 700;
  }

  .card-process {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .paragraph-large {
    color: rgba(20, 30, 68, 0.94);
    font-size: 18px;
    line-height: 30px;
  }

  .process-icon {
    margin-right: 0px;
    margin-bottom: 24px;
  }

  .span-blue {
    color: #141e44;
  }

  .check-icon-large {
    opacity: 1;
  }

  .content-wrapper {
    padding-right: 15px;
    padding-left: 15px;
  }

  .feature-icon-circle {
    margin-right: 0px;
    margin-bottom: 24px;
  }

  .feature-wrapper-horizontal {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .cta-grid {
    padding-right: 5%;
    padding-left: 5%;
  }

  .feature-card-04 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
  }

  .feature-card-03 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
  }

  .feature-card-02 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
  }

  .feature-card-01 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
  }

  .heading-large-2 {
    font-size: 48px;
  }

  .section-testimonial {
    overflow: hidden;
  }

  .star-row {
    margin-top: 4px;
    margin-bottom: 4px;
  }

  .testimonial-mask {
    width: 100%;
  }

  .testimonial-detail-wrapper {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .heading-large-3 {
    font-size: 48px;
  }

  .title-cta {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }

  .question-title {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }

  .footer-text-field {
    width: 100%;
    padding-right: 24px;
    padding-left: 60px;
    background-image: none;
    font-size: 18px;
    line-height: 24px;
  }

  .footer-submit-button {
    width: 100%;
  }

  .footer-form {
    max-width: 100%;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .footer-section {
    padding-right: 20px;
    padding-left: 20px;
  }

  .footer-contact-block {
    margin-bottom: -40px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }

  .footer-left-col {
    grid-column-gap: 20px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .footer-contact-item {
    margin-right: 0px;
    margin-bottom: 40px;
  }

  .hero-paragraph {
    font-size: 18px;
    line-height: 30px;
  }

  .hero-heading-2 {
    font-size: 14vw;
    line-height: 14vw;
  }

  .hero-icon {
    width: 14vw;
  }

  .search-field {
    margin-bottom: 10px;
    border-radius: 8px;
  }

  .hero-feature-wrapper {
    width: 50%;
    margin-right: 0px;
    margin-bottom: 20px;
    padding-right: 0px;
    padding-left: 0px;
    text-align: left;
  }

  .search-block-wrapper {
    display: block;
    margin-top: 21px;
    padding-right: 0px;
    padding-left: 0px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .hero-card-bg {
    left: -10px;
    top: 10px;
    right: 10px;
    bottom: -10px;
  }

  .header-section-large {
    padding-top: 40px;
  }

  .grid-image-large {
    margin-left: 40px;
  }

  .hero-image-grid {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }

  .hero-feature-icon {
    margin-right: 3px;
  }

  .header-paragraph-2 {
    font-size: 18px;
    line-height: 30px;
  }

  .hero-block-small {
    text-align: center;
  }

  .address-icon {
    display: none;
  }

  .form-2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .hero-heading-3 {
    font-size: 14vw;
    line-height: 16vw;
  }

  .feature-row {
    margin-top: 0px;
    margin-right: auto;
    margin-left: auto;
    padding-right: 0px;
    padding-left: 0px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .submit-button-2 {
    width: 100%;
    min-width: 120px;
    border-radius: 8px;
  }

  .nav-button-blue {
    display: block;
  }

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

  .nav-icon {
    margin-right: 0px;
    margin-bottom: 10px;
  }

  .menu-button-4 {
    margin-left: 0px;
    background-color: #141e44;
    color: #fff;
  }

  .menu-button-4:active {
    background-color: #141e44;
    color: #fff;
  }

  .menu-button-4.w--open {
    background-color: #edf0f9;
    color: #141e44;
  }

  .banner {
    display: none;
  }

  .text-link-default {
    margin-left: 0px;
  }

  .nav-dropdown-base {
    padding-right: 14px;
    padding-left: 14px;
  }

  .nav-link-large {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .navigation-button-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }

  .nav-contact-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .button-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .button-neutral {
    width: 50%;
    padding-right: 0px;
    padding-left: 0px;
  }

  .button-secondary {
    width: 50%;
    padding-right: 0px;
    padding-left: 0px;
    color: #141e44;
  }

  .h1-heading.margin-bottom-32 {
    margin-bottom: 9px;
    font-size: 33px;
  }

  .paragraph-large-3.text-color-gray-500 {
    font-size: 14px;
    line-height: 29px;
  }

  .button-wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .heading-detail-small.margin-bottom-12.text-color-gray-500 {
    display: none;
    font-size: 10px;
  }

  .div-block {
    margin-bottom: 0px;
    padding-right: 20px;
    padding-left: 0px;
  }

  .arrow {
    display: none;
  }

  .hero-person {
    max-height: 600px;
    margin-top: 0px;
  }

  .header-block-2 {
    margin-bottom: 111px;
  }

  .hero-block-right {
    max-height: 280px;
  }

  .header-container {
    margin-bottom: 0px;
    padding-right: 10px;
    padding-left: 10px;
  }

  .button-wrapper-2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .header-section-3 {
    height: auto;
    max-height: none;
    padding-top: 33px;
    padding-right: 0%;
    padding-left: 0%;
  }

  .header-accent-wrapper {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .video-play-link {
    margin-top: 20px;
    margin-left: 0px;
  }

  .section-3 {
    height: auto;
    padding-top: 98px;
  }

  .form-block-3 {
    margin-top: 40px;
  }

  .feature-wrapper-3 {
    margin-top: 60px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    text-align: left;
  }

  .header-block-3 {
    height: auto;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .text-block-6 {
    font-size: 13px;
  }

  .text-block-7 {
    font-size: 13px;
  }

  .div-block-2 {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
  }

  .content-number-wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-right: 0px;
    margin-bottom: 19px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 18px;
    line-height: 26px;
  }

  .content-grid-2 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }

  .content-image-wrap {
    display: none;
  }

  .content-heading-2 {
    font-size: 37px;
  }

  .content-section-2 {
    padding-top: 40px;
    padding-bottom: 51px;
  }

  .content-image {
    max-width: 90%;
  }

  .content-number {
    margin-bottom: -10px;
    font-size: 22px;
  }

  .content-numbers {
    padding-top: 17px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .content-paragraph-2 {
    font-size: 16px;
  }

  .content-image-card {
    left: auto;
    top: auto;
    right: 4%;
    bottom: -12%;
    max-width: 60%;
  }

  .text-block-9 {
    font-size: 15px;
  }

  .text-block-10 {
    font-size: 15px;
  }

  .text-block-11 {
    font-size: 15px;
  }

  .section-4 {
    height: auto;
  }

  .process-title-wrap-3 {
    margin-bottom: 64px;
  }

  .process-section-3 {
    padding-top: 83px;
    padding-bottom: 83px;
    background-color: rgba(20, 30, 68, 0.05);
  }

  .feature-title-2 {
    font-size: 23px;
  }

  .feature-icon-square {
    height: 30px;
    margin-bottom: 21px;
    padding-top: 0px;
    padding-bottom: 0px;
    border-radius: 0px;
  }

  .feature-icon-square.feature-icon {
    height: 30px;
  }

  .feature-icon-square.rtedgf {
    height: 30px;
  }

  .process-heading-3 {
    font-size: 36px;
  }

  .process-arrow-01 {
    left: 55px;
    top: 94%;
    display: none;
  }

  .process-grid-2 {
    grid-row-gap: 1px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .process-card-primary {
    padding-right: 45px;
    padding-left: 45px;
    background-color: hsla(0, 0%, 100%, 0);
  }

  .process-subheading {
    font-size: 17px;
    line-height: 1.8;
    font-weight: 400;
  }

  .text-span-4 {
    color: #4cd17c;
    font-style: italic;
  }

  .text-block-14 {
    font-size: 14px;
  }

  .text-block-15:hover {
    color: #141e44;
  }

  .text-block-18 {
    line-height: 26px;
  }

  .text-block-19 {
    line-height: 26px;
  }

  .cta-section-2 {
    height: auto;
    padding-top: 34px;
    padding-bottom: 34px;
  }

  .cta-heading-2 {
    margin-bottom: 40px;
    font-size: 36px;
  }

  .email-field {
    margin-bottom: 10px;
  }

  .feature-grid {
    justify-items: stretch;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    grid-column-gap: 16px;
    grid-row-gap: 25px;
    -ms-grid-columns: 1.25fr;
    grid-template-columns: 1.25fr;
  }

  .form-wrap {
    padding-right: 10px;
    padding-left: 10px;
  }

  .cta-block {
    width: 100%;
    padding-right: 4%;
    padding-left: 4%;
  }

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

  .title-medium-3 {
    font-size: 22px;
    line-height: 32px;
  }

  .left-arrow-2 {
    display: none;
  }

  .slide-nav-2 {
    bottom: -40px;
  }

  .testimonial-slide {
    padding-right: 0px;
    padding-left: 0px;
  }

  .right-arrow-2 {
    display: none;
  }

  .testimonial-card-2 {
    margin-right: 0px;
    margin-left: 0px;
  }

  .title-large-3 {
    font-size: 40px;
    line-height: 40px;
  }

  .testimonial-section {
    overflow: hidden;
  }

  .div-block-3 {
    width: 100%;
  }

  .footer-newsletter-2 {
    background-image: none;
    background-position: 0px 0px;
    background-size: auto;
    background-repeat: repeat;
  }

  .footer-links-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    text-align: center;
  }

  .legal-text {
    font-weight: 400;
  }

  .legal-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .navigation-4 {
    position: fixed;
    left: 0%;
    top: 0%;
    right: 0%;
    bottom: auto;
    padding-left: 0%;
  }

  .logo-2 {
    margin-left: 12px;
  }

  .navigation-button-3 {
    display: none;
  }

  .navigation-link-3.rsdfs {
    display: block;
  }

  .form-wrap-2 {
    padding-right: 32px;
    padding-left: 32px;
  }

  .form-section-touch {
    padding-top: 144px;
    padding-bottom: 144px;
  }
}

#w-node-_98a30533-3037-13dc-23a4-165f48198da2-237d8eb1 {
  -ms-grid-column-align: end;
  justify-self: end;
}

#w-node-e0002a1a-7059-bed7-e6a3-ef62452b847c-237d8eb1 {
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
  -ms-grid-column: span 1;
  grid-column-start: span 1;
  -ms-grid-column-span: 1;
  grid-column-end: span 1;
}

#w-node-e0002a1a-7059-bed7-e6a3-ef62452b848b-237d8eb1 {
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}

#w-node-e0002a1a-7059-bed7-e6a3-ef62452b848d-237d8eb1 {
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
  -ms-grid-column: span 1;
  grid-column-start: span 1;
  -ms-grid-column-span: 1;
  grid-column-end: span 1;
}

@media screen and (max-width: 991px) {
  #w-node-_98a30533-3037-13dc-23a4-165f48198da2-237d8eb1 {
    -ms-grid-column-align: center;
    justify-self: center;
  }
}

@media screen and (max-width: 479px) {
  #w-node-e0002a1a-7059-bed7-e6a3-ef62452b848b-237d8eb1 {
    -ms-grid-row-align: center;
    align-self: center;
    -ms-grid-row: span 1;
    grid-row-start: span 1;
    -ms-grid-row-span: 1;
    grid-row-end: span 1;
    -ms-grid-column: span 1;
    grid-column-start: span 1;
    -ms-grid-column-span: 1;
    grid-column-end: span 1;
  }

  #w-node-_930e5b3a-2831-d67d-e100-9502e5c417c2-e5c417b7 {
    -ms-grid-column-align: center;
    justify-self: center;
  }
}

@font-face {
  font-family: 'Syncopate';
  src: url('../fonts/Syncopate-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Syncopate';
  src: url('../fonts/Syncopate-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}