:root {
  --black: black;
  --primary-blue: #4084fc;
  --secondary-pink: #e20b6b;
  --white: white;
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

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

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

.navbar {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.navbar-no-shadow-container {
  z-index: 5;
  background-color: rgba(0, 0, 0, 0);
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 1.7em 2em;
  position: absolute;
}

.navbar-no-shadow-container.navbar-padding {
  padding-left: 10%;
  padding-right: 10%;
}

.container-regular {
  width: 100%;
  min-height: auto;
  margin-left: auto;
  margin-right: auto;
}

.navbar-wrapper {
  grid-column-gap: 4.5em;
  grid-row-gap: 4.5em;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.navbar-brand.w--current {
  width: auto;
}

.nav-menu {
  grid-column-gap: .5em;
  grid-row-gap: .5em;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0;
  padding-bottom: 0;
  padding-left: 0;
  display: flex;
}

.nav-link {
  color: var(--black);
  letter-spacing: .25px;
  margin-left: .1em;
  margin-right: .1em;
  padding: 5px .5em;
  font-size: 1.8em;
  font-weight: 500;
  line-height: 20px;
  text-decoration: none;
}

.nav-link:hover {
  color: rgba(26, 27, 31, .75);
  border-bottom: 2px solid #000;
}

.nav-link:focus-visible {
  outline-offset: 0px;
  color: #0050bd;
  border-radius: 4px;
  outline: 2px solid #0050bd;
}

.nav-link[data-wf-focus-visible] {
  outline-offset: 0px;
  color: #0050bd;
  border-radius: 4px;
  outline: 2px solid #0050bd;
}

.nav-link.w--current {
  border: 1px #000;
  border-bottom-width: 2px;
}

.nav-link.navlink {
  font-size: 26px;
  line-height: 30.47px;
}

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

.nav-link.navlink.w--current {
  border-bottom-style: solid;
  font-size: 26px;
  line-height: 30.47px;
}

.nav-dropdown {
  margin-left: 5px;
  margin-right: 5px;
}

.nav-dropdown-toggle {
  letter-spacing: .25px;
  padding: 5px 30px 5px 10px;
  font-size: 14px;
  line-height: 20px;
}

.nav-dropdown-toggle:hover {
  color: rgba(26, 27, 31, .75);
}

.nav-dropdown-toggle:focus-visible {
  outline-offset: 0px;
  color: #0050bd;
  border-radius: 5px;
  outline: 2px solid #0050bd;
}

.nav-dropdown-toggle[data-wf-focus-visible] {
  outline-offset: 0px;
  color: #0050bd;
  border-radius: 5px;
  outline: 2px solid #0050bd;
}

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

.nav-dropdown-list {
  background-color: #fff;
  border-radius: 12px;
}

.nav-dropdown-list.w--open {
  padding-top: 10px;
  padding-bottom: 10px;
}

.nav-dropdown-link {
  padding-top: 5px;
  padding-bottom: 5px;
  font-size: 14px;
}

.nav-dropdown-link:focus-visible {
  outline-offset: 0px;
  color: #0050bd;
  border-radius: 5px;
  outline: 2px solid #0050bd;
}

.nav-dropdown-link[data-wf-focus-visible] {
  outline-offset: 0px;
  color: #0050bd;
  border-radius: 5px;
  outline: 2px solid #0050bd;
}

.nav-button-wrapper {
  margin-left: 120px;
}

.button-primary {
  background-color: var(--primary-blue);
  color: #fff;
  letter-spacing: 0;
  text-transform: none;
  border-radius: .3em;
  padding: 20px 40px;
  font-size: 22px;
  font-weight: 500;
  line-height: 25.78px;
  transition: all .5s;
}

.button-primary:hover {
  background-image: linear-gradient(45deg, var(--primary-blue), var(--secondary-pink));
  color: #fff;
  transform: scale(1.07);
}

.button-primary:active {
  background-color: #43464d;
}

.button-primary.btn-border {
  border: 2px solid var(--primary-blue);
  color: var(--primary-blue);
  background-color: rgba(64, 132, 252, 0);
}

.button-primary.btn-border:hover {
  background-image: linear-gradient(45deg, var(--primary-blue), var(--secondary-pink));
  color: var(--white);
}

.button-primary.btn-white {
  background-color: var(--white);
  color: var(--primary-blue);
  padding: 20px 40px;
}

.button-primary.btn-white:hover {
  background-image: none;
}

.button-primary.btn-gradient {
  background-color: #4084fc;
  background-image: radial-gradient(circle farthest-corner at 0% 0%, var(--secondary-pink), var(--primary-blue));
}

.button-primary.btn-gradient.mt-1 {
  margin-top: 20px;
  padding: 20px 40px;
}

.button-primary.btn-gradient.mt-1:hover {
  transform: scale(1.08);
}

.section {
  background-color: var(--primary-blue);
  border-bottom: 1px solid #e4ebf3;
  flex-flow: column;
  align-items: center;
  padding: 100px 0;
  display: flex;
  position: relative;
}

.section.mb-0 {
  padding-bottom: 0;
}

.section.mb-0.mx-0 {
  background-color: var(--white);
  border: 1px #000;
  height: 120vh;
  padding-left: 0;
  padding-right: 0;
}

.section.mb-0.mx-0.hero-bg {
  background-image: url('../images/Header-section.svg');
  background-position: 50%;
  background-size: cover;
  height: auto;
}

.main-container {
  width: 100%;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  padding-left: 10%;
  padding-right: 10%;
  position: relative;
}

.main-container.flex-center {
  flex-flow: column;
  align-items: center;
  display: flex;
}

.main-container.flex-center.top-padding {
  padding-top: 0;
}

.main-container.fx-0 {
  padding-left: 0%;
  padding-right: 0%;
}

.main-container.px-00 {
  padding-left: 5%;
  padding-right: 5%;
}

.main-container.px-00.padding {
  padding-top: 70px;
}

.main-container.vertical-padding {
  padding-left: 10%;
  padding-right: 10%;
}

.hero-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  display: grid;
}

.hero-split {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 46%;
  display: flex;
  position: relative;
}

.margin-bottom-24px {
  color: var(--black);
  margin-bottom: 1em;
  font-size: 30px;
  font-weight: 500;
  line-height: 35.16px;
}

.hero-inner {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1.5fr 1fr;
  grid-auto-columns: 1fr;
  height: 100%;
  display: grid;
  position: relative;
}

.bg-image {
  object-fit: cover;
  max-width: none;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: auto;
  right: 0%;
}

.right-content {
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.left-image {
  z-index: 11;
  flex-flow: column;
  justify-content: flex-end;
  align-items: flex-end;
  height: 100%;
  display: flex;
  position: relative;
}

.left-image.left-padding {
  z-index: 0;
  padding-right: 20px;
}

.image {
  object-fit: cover;
  width: 95%;
  max-width: none;
  display: block;
}

.heading-main-gradient {
  font-size: 150px;
  font-weight: 500;
  line-height: 175.78px;
}

.btn-outer {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  align-items: center;
  display: flex;
}

.features-metrics {
  background-image: linear-gradient(315deg, rgba(64, 132, 252, .8), rgba(226, 11, 107, .8));
  border-bottom: 1px solid #e4ebf3;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 4em 30px;
  display: flex;
  position: relative;
}

.features-metrics.nopadding {
  z-index: 1;
  padding: 2.7em 0;
}

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

.features-wrapper {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

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

.features-title {
  color: var(--white);
  margin-bottom: 8px;
  font-size: 60px;
  font-weight: 600;
  line-height: 70.31px;
}

.features-title-small {
  font-size: 24px;
  line-height: 32px;
}

.feature-text-sm {
  color: var(--white);
  font-size: 20px;
  line-height: 23.44px;
}

.feature-text-sm.padding {
  margin-top: 10px;
  font-size: 20px;
  line-height: 23.44px;
}

.section-how-to {
  border-bottom: 1px solid #e4ebf3;
  flex-flow: column;
  align-items: center;
  padding: 7em 0;
  display: flex;
  position: relative;
}

.section-how-to.space {
  padding-top: 4.6em;
  padding-bottom: 4.6em;
}

.centered-heading {
  text-align: center;
  margin-bottom: 16px;
}

.centered-heading.mt-0 {
  margin-top: 0;
}

.text-para {
  color: var(--black);
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  font-size: 18px;
  line-height: 26px;
}

.text-para.text-center {
  font-size: 18px;
  line-height: 21.09px;
}

.text-para.text-center._w-65 {
  max-width: 65%;
  font-size: 28px;
  line-height: 1.3em;
}

.text-para.white {
  line-height: 26px;
}

.text-para.fw-medium {
  font-weight: 500;
}

.text-para.fw-medium.mb-1 {
  margin-bottom: 10px;
}

.text-para.fw-medium.mb-1._21-09px {
  line-height: 21.09px;
}

.text-para.height {
  font-size: 22px;
  line-height: 25.78px;
}

.text-para.width {
  font-size: 28px;
  line-height: 1.3em;
}

.pricing-grid {
  grid-column-gap: 64px;
  grid-row-gap: 50px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 50px;
  display: grid;
}

.pricing-card-three {
  text-align: center;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.pricing-image {
  object-fit: cover;
  width: 60px;
  margin-bottom: 16px;
}

.step-text {
  color: rgba(0, 0, 0, .6);
  margin-bottom: 20px;
  font-size: 1.6em;
  line-height: 1.4em;
}

.step-text._500-weight {
  font-size: 26px;
  font-weight: 500;
  line-height: 1.3em;
}

.text-link-arrow {
  color: #1a1b1f;
  justify-content: flex-start;
  align-items: center;
  font-size: 14px;
  line-height: 20px;
  text-decoration: none;
  display: flex;
}

.arrow-embed {
  margin-left: 2px;
  display: flex;
}

.footer {
  background-color: #f5f7fa;
  background-image: linear-gradient(0deg, #fff 28%, #f3f8ff);
  border-bottom: 1px solid #e4ebf3;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding: 40px 0;
  display: flex;
  position: relative;
}

.footer-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.footer-content {
  grid-column-gap: 70px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

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

.title-small {
  color: var(--primary-blue);
  letter-spacing: 1px;
  text-transform: capitalize;
  margin-bottom: 12px;
  font-size: 22px;
  font-weight: 500;
  line-height: 25.78px;
}

.footer-link {
  color: var(--black);
  margin-top: 12px;
  margin-bottom: 6px;
  font-size: 18px;
  line-height: 21.09px;
  text-decoration: none;
}

.footer-link:hover {
  color: rgba(26, 27, 31, .75);
}

.footer-link.fs {
  font-size: 16px;
  line-height: 20px;
}

.footer-social-block {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  justify-content: flex-start;
  align-items: center;
  margin-top: 12px;
  margin-left: 0;
  display: flex;
}

.footer-social-link {
  margin-left: 0;
}

.footer-divider {
  background-color: #e4ebf3;
  width: 100%;
  height: 1px;
  margin-top: 6em;
  margin-bottom: 1.7em;
}

.footer-text {
  color: var(--black);
  text-align: center;
  font-size: 16px;
  line-height: 20px;
}

.div-block {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.div-block-2 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  display: flex;
}

.cta-grid {
  grid-template-rows: auto;
}

.right-div {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.logos-wrapper {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  background-color: var(--white);
  border-radius: 14px;
  justify-content: center;
  align-items: center;
  width: 405.13px;
  height: 70px;
  margin-top: 20px;
  padding: 10px 0;
  display: flex;
}

.app-feature-section {
  background-image: url('../images/App-features-section.png');
  background-position: 0 0;
  background-size: cover;
  flex-flow: column;
  align-items: center;
  padding-top: 9em;
  padding-bottom: 9em;
  display: flex;
}

.app-feature-section.no-bottom-padding, .app-feature-section.no-bottom-paddin {
  padding-bottom: 4em;
}

.app-feature-section.no-bottom-pad {
  background-position: 9% 0;
  padding-bottom: 40px;
}

.app-features-grid {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1.5fr;
}

.app-features-grid.width.hide {
  display: none;
}

.logo-icon {
  object-fit: cover;
  width: 47px;
}

.logo-icon._44px {
  width: 36px;
}

.feature-left {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.image-2 {
  object-fit: cover;
}

.social-icon {
  width: 20px;
  max-width: none;
}

.text-flex {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  font-size: .7vw;
  display: flex;
}

.sub-head {
  color: var(--black);
  font-size: 18px;
  font-weight: 500;
  line-height: 21.09px;
}

.div-block-3 {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.div-block-3.padding {
  margin-top: 10px;
}

.heading-2 {
  color: var(--black);
  margin-top: 0;
  margin-bottom: .5em;
  font-size: 50px;
  line-height: 58.59px;
}

.heading-2.text-center {
  text-align: center;
  margin-bottom: 20px;
  font-size: 60px;
  line-height: 1.3em;
}

.heading-2.text-center.mt-4 {
  margin-top: 60px;
  font-size: 3.4em;
}

.heading-2.text-center.mt-4._46-88px {
  font-size: 40px;
  line-height: 46.88px;
}

.heading-2.text-center.mb-3 {
  margin-bottom: 30px;
}

.heading-2.text-center.text-white {
  color: var(--white);
}

.heading-2.text-center.text-white.mb-3 {
  margin-bottom: 10px;
}

.heading-2.text-center.top-padding {
  margin-top: 20px;
}

.heading-2.white.mb-0 {
  font-size: 50px;
  line-height: 60px;
}

.heading-2.white.italic300 {
  font-size: 50px;
  font-style: italic;
  font-weight: 300;
  line-height: 60px;
}

.step-heading {
  color: var(--black);
  font-size: 1.8em;
}

.step-heading._500-weight {
  font-size: 20px;
  font-weight: 500;
  line-height: 23.44px;
}

.white {
  color: #fff;
}

.italic400 {
  font-style: italic;
  font-weight: 400;
}

.mb-0 {
  margin-bottom: 0;
}

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

.about-hero {
  background-image: url('../images/Header-section.png');
  background-position: 50%;
  background-size: cover;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-top: 140px;
  padding-bottom: 60px;
  display: flex;
}

.about-hero.hero-title {
  padding-top: 180px;
}

.hero-grid-outer {
  margin-top: 40px;
}

.grid {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
}

.image-3 {
  width: 551px;
  height: 500px;
  display: block;
}

.gradient-border {
  border-radius: 5px;
  padding: 0;
}

.how-to-section {
  background-image: radial-gradient(circle at 0 0, rgba(226, 11, 107, .3), rgba(64, 132, 252, .3));
  flex-flow: column;
  align-items: center;
  width: 100%;
  padding-top: 7em;
  padding-bottom: 9em;
  display: flex;
}

.how-to-section.sec-support.less-padding {
  padding-top: 40px;
}

.how-to-section.nobg {
  background-image: radial-gradient(circle at 100% 0, rgba(226, 11, 107, .3), rgba(64, 132, 252, .3) 41%);
}

.how-to-section.no-background {
  background-image: none;
  padding-top: 0;
  padding-bottom: 0;
}

.grid-2 {
  grid-column-gap: 3.8em;
  grid-row-gap: 3.8em;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.icon-card {
  background-color: var(--white);
  border-radius: 4px;
  padding: 30px;
  text-decoration: none;
  box-shadow: 0 2px 22.9px rgba(0, 0, 0, .25);
}

.flex-icon {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.icon-card-text {
  color: rgba(0, 0, 0, .6);
  margin-top: 30px;
  font-size: 18px;
  line-height: 21.09px;
}

.icon-card-text.mt-0 {
  margin-top: 0;
}

.icon-card-text.mt-0.fw-med {
  font-weight: 500;
}

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

.div-block-4 {
  margin-top: 40px;
}

.heading-2-sm {
  color: var(--black);
  font-size: 3.2em;
  font-weight: 500;
  line-height: 1.2em;
}

.heading-2-sm.mt-0 {
  margin-top: 0;
}

.heading-2-sm.mt-0.bottom-padding {
  margin-bottom: 30px;
  font-size: 38px;
  line-height: 44.53px;
}

.how-we-protect {
  background-image: url('../images/App-features-section-bg.png');
  background-position: 50%;
  background-size: cover;
  flex-flow: column;
  align-items: center;
  width: 100%;
  padding-top: 8em;
  padding-bottom: 9em;
  display: flex;
}

.grid-wrap {
  margin-top: 60px;
}

.grid-3 {
  grid-column-gap: 100px;
  grid-row-gap: 100px;
  grid-template-rows: auto;
}

.fees-hero {
  background-image: url('../images/Header-section-fees.png');
  background-position: 50%;
  background-size: cover;
  flex-flow: column;
  align-items: center;
  padding-top: 180px;
  padding-bottom: 8em;
  display: flex;
}

.pricing-comparison {
  border-bottom: 1px solid #e4ebf3;
  padding: 80px 30px;
  position: relative;
}

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

.pricing-wrapper {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  height: 40em;
  margin-top: 30px;
  display: grid;
}

.pricing-card {
  background-color: var(--white);
  border: 1px solid rgba(64, 132, 252, .5);
  border-radius: 4px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  min-height: 72vh;
  padding: 4em 30px;
  display: flex;
  position: relative;
}

.pricing-card.featured-pricing {
  z-index: 2;
}

.pricing-card.border-right {
  border-right-style: solid;
}

.pricing-card.border-right.height, .pricing-card.heighht {
  min-height: 100%;
  padding-top: 60px;
  padding-bottom: 60px;
}

.pricing-image-2 {
  object-fit: cover;
  width: 80px;
  height: 80px;
  margin-bottom: 16px;
}

.pricing-title {
  color: var(--black);
  text-align: center;
  margin-top: 10px;
  margin-bottom: 8px;
  font-size: 22px;
  font-weight: 500;
  line-height: 25.78px;
}

.pricing-subtitle {
  color: var(--primary-blue);
  margin-bottom: 12px;
  font-size: 20px;
  line-height: 23.44px;
}

.pricing-price {
  margin-bottom: 8px;
  font-size: 80px;
  font-weight: 700;
  line-height: 93.75px;
}

.paragraph-regular {
  color: var(--black);
  font-size: 18px;
  line-height: 26px;
}

.paragraph-regular.margin-bottom-20 {
  margin-bottom: 20px;
}

.button-primary-2 {
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  background-color: #1a1b1f;
  padding: 12px 25px;
  font-size: 12px;
  line-height: 20px;
  transition: all .2s;
}

.button-primary-2:hover {
  color: #fff;
  background-color: #32343a;
}

.button-primary-2:active {
  background-color: #43464d;
}

.button-primary-2.outline-button {
  color: #1a1b1f;
  background-color: rgba(0, 0, 0, 0);
  box-shadow: inset 0 0 0 1px #1a1b1f;
}

.button-primary-2.outline-button:hover {
  color: #fff;
  background-color: #1a1b1f;
}

.pricing-divider {
  background-color: rgba(118, 135, 157, .1);
  align-self: stretch;
  height: 1px;
  margin: 56px -24px 16px;
}

.pricing-feature-list {
  align-self: stretch;
}

.pricing-feature {
  background-image: url('../images/');
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: auto;
  align-self: stretch;
  margin-top: 16px;
  padding-left: 32px;
  font-size: 14px;
  line-height: 24px;
}

.pricing-tag {
  color: #3a4554;
  background-color: #fff;
  border-radius: 24px;
  padding: 7px 16px;
  position: absolute;
  top: -19px;
  box-shadow: 0 3px 10px rgba(150, 163, 181, .2);
}

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

.custom-list {
  grid-column-gap: 7px;
  grid-row-gap: 7px;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.cus-list-wrapper {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: column;
  align-items: flex-start;
  display: flex;
}

.table_cell {
  color: var(--black);
  padding-top: 20px;
  padding-bottom: 20px;
  font-size: 22px;
  font-weight: 500;
  line-height: 25.78px;
}

.table_cell.bold {
  font-size: 22px;
  font-weight: 700;
  line-height: 25.78px;
}

.table_row {
  border-bottom: 1px solid rgba(64, 132, 252, .3);
}

.table_body {
  width: 100%;
}

.table_header {
  color: var(--black);
  text-align: left;
  width: 30%;
  padding-bottom: 20px;
  font-size: 22px;
  font-weight: 500;
  line-height: 25.78px;
}

.table_component {
  width: 100%;
}

.fee-tier {
  flex-flow: column;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 100px;
  display: flex;
}

.tier-table {
  margin-top: 40px;
}

._w-80 {
  width: 85%;
}

.div-block-5 {
  margin-top: 40px;
}

.sections-assets {
  background-image: url('../images/Header-section-assets.png');
  background-position: 50%;
  background-size: cover;
  flex-flow: column;
  align-items: center;
  padding-top: 12em;
  display: flex;
}

.sections-assets.top {
  padding-top: 180px;
}

.assets-wrapper {
  background-color: rgba(255, 255, 255, .8);
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  flex-flow: column;
  align-items: center;
  padding: 60px 40px 0;
  display: flex;
  overflow: hidden;
}

.assets-collection {
  width: 100%;
  margin-top: 10px;
}

.assets-collection-list {
  grid-column-gap: 3em;
  grid-row-gap: 3em;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.coins-outer {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  align-items: center;
  padding-top: .5em;
  padding-bottom: .5em;
  display: flex;
}

.asset-heading {
  color: var(--black);
  margin-top: 0;
  margin-bottom: 2px;
  font-size: 1.6em;
  font-weight: 500;
  line-height: 1.4em;
}

.asset-heading.name {
  font-size: 20px;
  line-height: 23.44px;
}

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

.sub-text {
  font-size: 20px;
  font-weight: 300;
  line-height: 23.44px;
}

.utility-page-wrap {
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  display: flex;
}

.utility-page-content {
  text-align: center;
  flex-direction: column;
  width: 260px;
  display: flex;
}

.utility-page-form {
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.search {
  margin-bottom: 30px;
}

.search.text-center {
  justify-content: center;
  width: 40%;
  display: flex;
  position: relative;
}

.image-4 {
  width: 98.87px;
  height: 74.84px;
}

.section-faqs {
  padding-top: 140px;
}

.section-faqs.cetner-align {
  flex-flow: column;
  align-items: center;
  padding-top: 14.5em;
  display: flex;
}

.white-card-gead {
  color: var(--black);
  margin-top: 1.5em;
  font-size: 20px;
  font-weight: 500;
  line-height: 23.44px;
}

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

.head-sub {
  color: rgba(0, 0, 0, .7);
  margin-bottom: 10px;
  font-size: 16px;
  font-style: italic;
  font-weight: 400;
  line-height: 18.75px;
}

.features-hero {
  background-image: url('../images/Header-sectionrt4.png');
  background-position: 50% 0;
  background-size: cover;
  flex-flow: column;
  align-items: center;
  padding-top: 180px;
  padding-bottom: 100px;
  display: flex;
}

.hero-faqs-wrapper {
  flex-flow: column;
  align-items: center;
  margin-top: 70px;
  display: flex;
}

.hero-faqs-wrapper.hide-section {
  display: none;
}

.grid-4 {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  grid-template-rows: auto;
  width: 85%;
}

.left-faqs {
  margin-top: 5px;
}

.section-download-now {
  background-image: url('../images/download-section.png');
  background-position: 50%;
  background-size: cover;
  padding-top: 2em;
  padding-bottom: 4em;
}

.section-download-now.center-align {
  flex-flow: column;
  align-items: center;
  display: flex;
}

.section-download-now.center-alignn {
  background-position: 38% 0;
  flex-flow: column;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
  display: flex;
}

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

.content-download {
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  padding-left: 100px;
  display: flex;
}

.grid-5 {
  grid-column-gap: 8em;
  grid-row-gap: 8em;
  grid-template-rows: auto;
}

.google-store-outer {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  justify-content: flex-start;
  width: 100%;
  margin-top: 2.5em;
  display: flex;
}

.black-outer {
  background-color: var(--black);
  border: 1.25px solid #a6a6a6;
  border-radius: 1em;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 156.75px;
  height: 55px;
  padding: 10px;
  display: flex;
}

.testimonial-column-light {
  border-bottom: 1px solid #e4ebf3;
  padding: 80px 30px;
  position: relative;
}

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

.centered-heading-2 {
  text-align: center;
  margin-bottom: 16px;
}

.testimonial-grid-two {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 50px;
  display: grid;
}

.testimonial-card-two {
  background-color: #fff;
  border: 1px solid #e4ebf3;
  border-radius: 3.4em;
  flex-direction: column;
  width: 25%;
  padding: 40px 30px;
  display: flex;
  box-shadow: 0 0 30px rgba(0, 0, 0, .25);
}

.testimonial-text-two {
  margin-bottom: 0;
  font-size: 1.8em;
  line-height: 1.3em;
}

.testimonial-info-three {
  background-color: #fff;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding: 0;
  display: flex;
}

.testimonial-image {
  object-fit: cover;
  border-radius: 50%;
  width: 100px;
  height: 20px;
  margin-right: 0;
}

.testimonial-main-heading {
  color: var(--primary-blue);
  margin-top: 0;
  margin-bottom: 2px;
  font-size: 24px;
  font-weight: 700;
  line-height: 36px;
}

.sect-testimonials {
  background-color: var(--primary-blue);
  padding-top: 80px;
  padding-bottom: 40px;
  overflow: hidden;
}

.content-flex {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  align-items: center;
  display: flex;
}

.accordion-wrapper {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  width: 90%;
  margin-top: 0;
  display: flex;
}

.accordion-item {
  background-color: #f8f8f8;
  border-radius: 10px;
  margin-bottom: 0;
  padding: 24px 30px 14px;
  box-shadow: 0 3px 7px rgba(0, 0, 0, .03);
}

.accordion-item-trigger {
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.accordion-heading {
  color: var(--black);
  cursor: pointer;
  flex: 1;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 3em;
  line-height: 1.3em;
}

.accordion-heading.fw-500 {
  font-size: 38px;
  font-weight: 500;
}

.icon.accordion-icon {
  color: rgba(0, 0, 0, .6);
  cursor: pointer;
  cursor: pointer;
  cursor: pointer;
  font-family: Material Icons, sans-serif;
  font-size: 32px;
  line-height: 30px;
}

.icon.accordion-icon.size {
  font-size: 50px;
}

.icon.accordion-icon {
  color: var(--black);
  cursor: pointer;
  font-size: 32px;
  line-height: 30px;
}

.accordion-item-content {
  margin-top: 10px;
  margin-right: 30px;
  overflow: hidden;
}

.text-field {
  background-color: rgba(255, 255, 255, 0);
  border: 1px solid #000;
  border-radius: 4px;
  width: 100%;
  height: 3.8em;
  margin-bottom: 0;
  padding-left: 42px;
  font-size: 1em;
}

.text-field.padding {
  height: auto;
  padding: 20px;
  font-size: 20px;
  font-weight: 300;
  line-height: 23.44px;
}

.accordion-item-copy {
  background-color: #f8f8f8;
  border-radius: 0;
  margin-bottom: 0;
  padding: 24px 30px 14px;
  box-shadow: 0 3px 7px rgba(0, 0, 0, .03);
}

.accordion-item-trigger-copy {
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.accordion-heading-copy {
  color: var(--black);
  cursor: pointer;
  flex: 1;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 32px;
  line-height: 1.3em;
}

.icon-copy.accordion-icon {
  color: var(--black);
  cursor: pointer;
  font-family: Material Icons, sans-serif;
  font-size: 40px;
  line-height: 30px;
}

.accordion-item-content-copy {
  margin-top: 10px;
  margin-right: 30px;
  overflow: hidden;
}

.accordion-item-1 {
  background-color: #f8f8f8;
  border-radius: 0;
  margin-bottom: 0;
  padding: 24px 30px 14px;
  box-shadow: 0 3px 7px rgba(0, 0, 0, .03);
}

.accordion-heading-2 {
  color: var(--black);
  cursor: pointer;
  flex: 1;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 32px;
  line-height: 1.3em;
}

.accordion-item-trigger-2 {
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.icon-2.accordion-icon {
  color: var(--black);
  cursor: pointer;
  font-family: Material Icons, sans-serif;
  font-size: 40px;
  line-height: 30px;
}

.accordion-item-content-2 {
  margin-top: 10px;
  margin-right: 30px;
  overflow: hidden;
}

.accordion-heading-3 {
  color: var(--black);
  cursor: pointer;
  flex: 1;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 32px;
  line-height: 1.3em;
}

.accordion-item-3 {
  background-color: #f8f8f8;
  border-radius: 0;
  margin-bottom: 0;
  padding: 24px 30px 14px;
  box-shadow: 0 3px 7px rgba(0, 0, 0, .03);
}

.accordion-item-trigger-3 {
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.icon-3.accordion-icon {
  color: var(--black);
  cursor: pointer;
  font-family: Material Icons, sans-serif;
  font-size: 40px;
  line-height: 30px;
}

.accordion-heading-4 {
  color: var(--black);
  cursor: pointer;
  flex: 1;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 32px;
  line-height: 1.3em;
}

.accordion-item-trigger-4 {
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.accordion-item-4 {
  background-color: #f8f8f8;
  border-radius: 0;
  margin-bottom: 0;
  padding: 24px 30px 14px;
  box-shadow: 0 3px 7px rgba(0, 0, 0, .03);
}

.icon-4.accordion-icon {
  color: var(--black);
  cursor: pointer;
  font-family: Material Icons, sans-serif;
  font-size: 40px;
  line-height: 30px;
}

.accordion-item-content-4 {
  margin-top: 10px;
  margin-right: 30px;
  overflow: hidden;
}

.accordion-heading-5 {
  color: var(--black);
  cursor: pointer;
  flex: 1;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 32px;
  line-height: 1.3em;
}

.accordion-item-trigger-5 {
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.icon-5.accordion-icon {
  color: var(--black);
  cursor: pointer;
  font-family: Material Icons, sans-serif;
  font-size: 40px;
  line-height: 30px;
}

.accordion-item-5 {
  background-color: #f8f8f8;
  border-radius: 0;
  margin-bottom: 0;
  padding: 24px 30px 14px;
  box-shadow: 0 3px 7px rgba(0, 0, 0, .03);
}

.accordion-item-content-5 {
  margin-top: 10px;
  margin-right: 30px;
  overflow: hidden;
}

.search-button {
  display: none;
}

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

.section-logos-carousal {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-color: #a4dc74;
  flex-direction: row;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: center;
  min-height: auto;
  margin-left: auto;
  margin-right: auto;
  padding: 20px 0;
  display: flex;
  overflow: hidden;
}

.infinite-loop-card-container {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 40vw;
  grid-auto-columns: 42vw;
  grid-auto-flow: column;
  padding-left: 0;
  display: grid;
}

.logo-card {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 0 15px;
  display: flex;
}

.logo-wrapper {
  flex-direction: row;
  justify-content: center;
  align-items: center;
  display: flex;
}

.circle-img {
  width: 45px;
  margin-top: 6px;
  margin-right: 30px;
}

.carousal-text {
  color: #12141d;
  margin-bottom: auto;
  margin-left: 0;
  font-size: 45px;
  line-height: 100%;
}

.box-gradient-border-content {
  padding: 20px;
}

.box-gradient-border-content.mid {
  flex-flow: column;
  align-items: center;
  display: flex;
}

.section-slide {
  background-color: var(--primary-blue);
  flex-flow: row;
  align-content: stretch;
  align-items: flex-start;
  display: flex;
  position: relative;
  overflow: hidden;
}

.bild-slider1 {
  object-fit: contain;
  object-position: 50% 50%;
  width: 100vw;
  height: 30vh;
  position: static;
}

.logo-slide_section {
  justify-content: center;
  align-items: center;
  height: 36em;
  display: flex;
}

.page-padding {
  padding: 5em 5%;
}

.page-padding.s0 {
  padding: 2em 0%;
}

.padding-vertical {
  padding-left: 0;
  padding-right: 0;
}

.padding-vertical.padding-xxlarge {
  margin-top: 20px;
  padding: 0;
}

.container-large {
  width: 100%;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
}

.logo-slider-img {
  width: 200px;
}

.section-logo {
  display: block;
  overflow: hidden;
}

.logo_component-slider {
  grid-column-gap: 3.8em;
  grid-row-gap: 3.8em;
  grid-template-rows: auto;
  grid-template-columns: max-content 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: center;
  width: 900em;
  display: flex;
}

.slide {
  width: 75%;
  height: 100%;
  margin-right: 2em;
}

.blue-card {
  background-color: var(--primary-blue);
  border-radius: 4px;
  flex-flow: column;
  justify-content: space-around;
  align-items: flex-start;
  height: 100%;
  padding: 3.5em 3em;
  display: flex;
}

.blue-card.max-height {
  justify-content: center;
  padding: 40px;
}

.slider {
  background-color: rgba(221, 221, 221, 0);
  width: 100%;
  height: 85vh;
}

.slide-nav {
  display: none;
}

.slide-head {
  color: var(--white);
  margin-top: 0;
  font-size: 3em;
  font-weight: 400;
}

.paragraph {
  color: var(--white);
  font-size: 1.7em;
  line-height: 1.4em;
}

.paragraph.padding {
  margin-top: 20px;
  margin-bottom: 35px;
  font-size: 18px;
  line-height: 26px;
}

.right-arrow {
  margin-right: -60px;
  display: block;
}

.left-arrow {
  margin-left: -60px;
}

.icon-6 {
  color: var(--primary-blue);
  font-size: 30px;
}

.div-block-6 {
  background-image: linear-gradient(45deg, rgba(64, 132, 252, .4), rgba(255, 255, 255, .6));
  height: 100%;
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.icon-7 {
  color: var(--primary-blue);
  font-size: 30px;
}

.grid-6 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-columns: 1.7fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  width: 100%;
}

.tab-head-1 {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.image-5 {
  object-fit: cover;
}

.tab-head1 {
  color: var(--black);
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  line-height: 20.7px;
}

.grey-line {
  border-top: 1px solid #d4d4d8;
  margin-top: 2.1em;
  margin-bottom: 2.1em;
}

.text-block {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  display: flex;
}

.text-block.left {
  justify-content: flex-start;
}

.tab-text {
  color: #18181b;
  font-size: 16px;
  font-weight: 500;
  line-height: 18.4px;
}

.section-2 {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding-bottom: 100px;
  display: flex;
}

.accordion-item-5-copy {
  background-color: #f8f8f8;
  border-radius: 0;
  margin-bottom: 0;
  padding: 24px 30px 14px;
  box-shadow: 0 3px 7px rgba(0, 0, 0, .03);
}

.image-6 {
  object-fit: cover;
  position: absolute;
  top: 30%;
  bottom: 0%;
  left: auto;
  right: 5%;
}

.div-block-7 {
  flex-flow: column;
  align-items: center;
  display: flex;
}

.grid-2-copy {
  grid-column-gap: 3.1em;
  grid-row-gap: 3.1em;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.logo-inner-cont {
  width: 100%;
  height: 40em;
  margin-top: 10px;
  padding-right: 40px;
  overflow: auto;
}

.image-7 {
  object-fit: cover;
}

.image-7._80 {
  width: 80%;
}

.image-7.height {
  height: 830px;
}

.border-2 {
  background-image: linear-gradient(180deg, var(--primary-blue), var(--secondary-pink));
  border-radius: 10px;
  padding: 2px;
}

.accordian-wrapper-2 {
  width: 90%;
  margin-top: 0;
}

.accordian-wrapper-2._w-55 {
  width: 55%;
}

.accordian-wrapper-2._w-100 {
  background-color: #fff;
  border-radius: 4px;
  width: 100%;
}

.accordian-card {
  background-color: #fff;
  border-radius: 4px;
  margin-bottom: 20px;
  padding: 2.4em 3.5em 2em;
  box-shadow: 0 3px 7px rgba(0, 0, 0, .03);
}

.accordian-card.white-bg {
  background-color: var(--white);
  margin-bottom: 0;
  padding: 30px 40px;
}

.accordian-card.pb-0 {
  margin-bottom: 0;
  padding: 40px 40px 30px;
}

.accordian-card.pb-0.style {
  box-shadow: none;
  background-color: #f8f8f8;
  border-radius: 0;
  margin-bottom: 10px;
  padding-top: 40px;
  padding-bottom: 30px;
}

.accordian-card.pb-0.style.mb-0 {
  margin-bottom: 0;
}

.accordian-card.pb-0.open {
  padding: 40px 40px 30px;
}

.accordion-heading-6 {
  color: var(--black);
  cursor: pointer;
  flex: 1;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.3em;
}

.faq-head {
  color: var(--black);
  font-size: 30px;
  line-height: 1.3em;
}

.faq-para {
  color: var(--black);
  margin-top: 10px;
  font-size: 18px;
  line-height: 26px;
}

.accordion-wrapper-2 {
  width: 60%;
  margin-top: 50px;
}

.accordion-item-6 {
  background-color: #fff;
  border-radius: 10px;
  margin-bottom: 20px;
  padding: 24px 30px 14px;
  box-shadow: 0 3px 7px rgba(0, 0, 0, .03);
}

.accordion-heading-7 {
  cursor: pointer;
  flex: 1;
  margin-top: 0;
  margin-bottom: 0;
  line-height: 30px;
}

.faq-outer-cont {
  flex-flow: column;
  align-items: center;
  height: 600px;
  margin-top: 4em;
  padding-top: 10px;
  display: flex;
  overflow: auto;
}

.gradient-border-faq {
  background-image: linear-gradient(180deg, var(--primary-blue), var(--secondary-pink));
  border-radius: 4px;
  padding: 1px;
}

.gradient-border-faq.mb-2 {
  background-image: linear-gradient(90deg, var(--secondary-pink) 18%, var(--primary-blue));
  margin-bottom: 20px;
}

.gradient-border-faq.grad-border-2 {
  background-image: linear-gradient(0deg, var(--primary-blue), var(--secondary-pink));
  border-radius: 5px;
  margin-bottom: 40px;
  padding: 2px;
}

.accordion-wrapper-3 {
  margin-top: 50px;
}

.accordion-item-7 {
  background-color: #fff;
  border-radius: 10px;
  margin-bottom: 20px;
  padding: 24px 30px 14px;
  box-shadow: 0 3px 7px rgba(0, 0, 0, .03);
}

.accordion-heading-8 {
  cursor: pointer;
  flex: 1;
  margin-top: 0;
  margin-bottom: 0;
  line-height: 30px;
}

.outer-gradient-border {
  background-image: linear-gradient(360deg, var(--primary-blue), var(--secondary-pink));
  border-radius: 4px;
  width: 97%;
  padding: 2px;
}

.accordion-heading {
  font-size: 38px;
  font-weight: 500;
  line-height: 44.53px;
}

.image-8 {
  width: 51px;
}

.tick-icon {
  width: 22px;
  height: 22px;
}

.ques-mark-icon {
  width: 2em;
}

.test-icon {
  width: 36.6px;
  height: 36.6px;
}

.slider-img {
  width: 23em;
}

.tooltip {
  width: 18px;
  height: 18px;
}

.grid-7 {
  grid-column-gap: 70px;
  grid-row-gap: 70px;
  grid-template-rows: auto;
  height: 100%;
}

.grid-7.bottom-padding {
  margin-bottom: 40px;
}

.slider-2 {
  height: 100%;
  overflow: hidden;
}

.slide-2 {
  margin-right: 20px;
}

.swiper-slide {
  opacity: .9;
  color: rgba(255, 255, 255, .5);
  align-items: center;
  display: flex;
}

.carousel-arrow-w {
  cursor: pointer;
  flex: none;
  justify-content: flex-start;
  align-items: center;
  height: 100%;
  display: flex;
  position: relative;
}

.carousel-arrow-w.arrow-next {
  margin-right: 2.5em;
}

.carousel-arrow-w.arrow-previous {
  margin-left: 0;
  left: 84%;
}

.slide-3 {
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  height: 500px;
  display: flex;
  position: relative;
}

.gradient-bg {
  z-index: -1;
  width: auto;
  height: 175%;
  margin: auto;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.swiper-wrapper {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  display: flex;
}

.swiper-wrapper.first-swiper-wrapper {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: flex;
}

.slide-head-2 {
  color: #fff;
  margin-top: 0;
  font-size: 30px;
  font-weight: 400;
  line-height: 35.16px;
}

.paragraph-2 {
  color: #fff;
  font-size: 1.7em;
  line-height: 1.4em;
}

.carousel-arrows {
  z-index: 4;
  flex: none;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  justify-items: end;
  width: 100%;
  display: flex;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.swiper.first-swiper {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
  position: relative;
}

.carousel-arrow-icon {
  z-index: 4;
  filter: brightness(200%);
  flex: none;
  justify-content: center;
  align-items: center;
  height: auto;
  margin-bottom: 10px;
  position: relative;
}

.carousel-arrow-oval {
  z-index: 3;
  border-radius: 100%;
  width: 3.25em;
  height: 3.25em;
  margin-top: auto;
  margin-bottom: auto;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: auto;
}

.carousel-arrow-oval.next-arrow {
  top: 0%;
  bottom: 0%;
  left: auto;
  right: 0%;
}

.carousel-arrow {
  align-items: center;
  width: 28px;
  padding-top: 1em;
  padding-bottom: 1em;
  padding-left: 1em;
  display: flex;
  position: absolute;
  top: auto;
  bottom: 0;
}

.carousel-arrow.arrow-next {
  padding-left: 0;
  padding-right: 1em;
}

.slider-3 {
  margin-bottom: 4em;
  position: relative;
  overflow: visible;
}

.blue-card-2 {
  background-color: #4084fc;
  border-radius: 4px;
  flex-flow: column;
  justify-content: space-around;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  padding: 3.5em 3em;
  display: flex;
}

.section-3 {
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
  display: flex;
}

.credential {
  align-items: center;
  text-decoration: none;
  display: flex;
}

.header {
  margin-top: 4em;
  margin-bottom: 4em;
}

.text-f-15 {
  color: #000;
  white-space: nowrap;
  font-family: Inconsolata, monospace;
  font-size: 1.2em;
  font-weight: 400;
  line-height: 1;
}

.text-f-15.grey-font {
  color: rgba(0, 0, 0, .75);
}

.text-f-15.light-grey-font {
  color: rgba(0, 0, 0, .5);
}

.text-f-14-w {
  justify-content: center;
  align-items: center;
  margin-bottom: 1.5em;
  display: flex;
}

.credentials {
  justify-content: space-between;
  margin-top: 2em;
  padding-bottom: 2em;
  padding-left: 3em;
  padding-right: 3em;
  display: flex;
}

.text-f-14 {
  color: #878787;
  letter-spacing: .25em;
  text-transform: uppercase;
  font-family: Oswald, sans-serif;
  font-size: 1.1em;
  font-weight: 300;
  line-height: 1;
}

.slider-4 {
  width: 45vw;
  margin-bottom: 4em;
  position: relative;
  overflow: visible;
}

.blue-card-3 {
  background-color: #4084fc;
  border-radius: 4px;
  flex-flow: column;
  justify-content: space-around;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  padding: 3.5em 3em;
  display: flex;
}

.dot-divider {
  background-color: #ff7a00;
  border-radius: 100%;
  width: .25em;
  height: .25em;
  margin-left: .75em;
  margin-right: .75em;
}

.heading {
  color: #000;
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 5.5em;
  font-weight: 400;
  line-height: 1;
}

.divider {
  background-color: #878787;
  width: 4em;
  height: 1px;
  margin-right: 1.5em;
}

.divider.left-margin {
  margin-left: 1.2em;
  margin-right: 0;
}

.tabs {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  flex-flow: row;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  justify-content: space-between;
  align-items: stretch;
  display: flex;
}

.tabs.height, .tabs.heightt {
  margin-top: 60px;
}

.tab-link-tab-2 {
  background-color: #fff;
  padding: 0;
}

.tab-link-tab-2.w--current {
  background-color: #fff;
}

.tab-link-tab-1 {
  background-color: #fff;
  padding: 0;
}

.tab-link-tab-1.w--current {
  background-color: #fff;
  padding-left: 0;
  padding-right: 0;
}

.tab-link-tab-3 {
  background-color: #fff;
  padding: 0;
}

.tab-link-tab-3.w--current {
  background-color: #fff;
  padding-top: 0;
  padding-bottom: 0;
}

.tabs-menu {
  background-image: linear-gradient(90deg, var(--secondary-pink) 18%, var(--primary-blue));
  border-radius: 4px;
  flex-flow: column;
  width: 40%;
  margin-top: 20px;
  padding: 2px;
  display: flex;
}

.image-10 {
  overflow: auto;
}

.tabs-content {
  flex-flow: column;
  justify-content: center;
  align-items: center;
}

.image-11 {
  width: 30.5px;
  height: 36.6px;
}

.image-m {
  object-fit: cover;
  width: 95%;
  max-width: none;
  display: block;
}

.fees-hero-section {
  background-image: url('../images/Header-section-fees.png');
  background-position: 50%;
  background-size: cover;
  flex-flow: column;
  align-items: center;
  padding-top: 180px;
  padding-bottom: 8em;
  display: flex;
}

.div-block-10 {
  margin-bottom: 80px;
}

@media screen and (min-width: 1280px) {
  .container-regular {
    margin-left: 0;
    margin-right: 0;
  }

  .footer-divider {
    margin-top: 4em;
  }

  .app-feature-section.no-bottom-pad {
    padding-bottom: 20px;
  }

  .pricing-card.border-right.height {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .image-4 {
    width: auto;
    height: auto;
  }

  .blue-card.max-height {
    padding-left: 40px;
    padding-right: 40px;
  }

  .grid-7.bottom-padding {
    margin-bottom: 40px;
  }

  .slider-4 {
    width: 35vw;
  }

  .div-block-10 {
    margin-bottom: 60px;
  }
}

@media screen and (min-width: 1440px) {
  .navbar {
    padding-left: 5%;
    padding-right: 5%;
  }

  .navbar-no-shadow-container {
    max-width: 1440px;
  }

  .navbar-no-shadow-container.navbar-padding {
    max-width: none;
  }

  .nav-link.navlink, .nav-link.navlink.w--current {
    font-size: 26px;
    line-height: 30.47px;
  }

  .main-container.px-00 {
    padding-left: 0%;
    padding-right: 0%;
  }

  .image {
    width: 100%;
  }

  .text-para.white {
    font-size: 18px;
    line-height: 26px;
  }

  .pricing-image {
    height: 60px;
  }

  .footer {
    flex-flow: column;
    align-items: center;
    display: flex;
  }

  .title-small {
    font-size: 22px;
    line-height: 25.78px;
  }

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

  .footer-link.fs {
    font-size: 16px;
    line-height: 20px;
  }

  .footer-divider {
    margin-top: 2em;
  }

  .footer-text {
    font-size: 16px;
    line-height: 20px;
  }

  .logos-wrapper {
    padding-top: 10px;
    padding-bottom: 10px;
  }

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

  .grid-3 {
    grid-column-gap: 55px;
  }

  .pricing-wrapper {
    height: auto;
  }

  .image-4 {
    width: 98.87px;
    height: 74.84px;
  }

  .infinite-loop-card-container {
    grid-template-columns: 40vw;
    grid-auto-columns: 40vw;
  }

  .logo-card {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    flex-direction: row;
    justify-content: space-around;
  }

  .logo-wrapper {
    grid-column-gap: 50px;
    grid-row-gap: 50px;
  }

  .circle-img {
    margin-right: 0;
  }

  .carousal-text {
    font-size: 68px;
  }

  .blue-card.max-height {
    padding-left: 40px;
    padding-right: 40px;
  }

  .paragraph.padding {
    font-size: 18px;
    line-height: 26px;
  }

  .section-2 {
    padding-left: 5%;
    padding-right: 5%;
  }

  .grid-7.bottom-padding {
    margin-bottom: 30px;
  }

  .slide-3 {
    height: 600px;
  }

  .slide-head-2 {
    font-size: 30px;
    line-height: 35.16px;
  }

  .slider-4 {
    width: 25vw;
  }

  .image-m {
    width: 90%;
  }

  .fees-hero-section {
    padding-bottom: 7em;
  }

  .div-block-10 {
    margin-bottom: 80px;
  }
}

@media screen and (min-width: 1920px) {
  .navbar-no-shadow-container {
    max-width: 1920px;
  }

  .navbar-no-shadow-container.navbar-padding {
    flex-flow: column;
    align-items: center;
    padding-left: 0%;
    padding-right: 0%;
    display: flex;
  }

  .container-regular {
    max-width: 1440px;
  }

  .button-primary {
    font-size: 28px;
    line-height: 27px;
  }

  .button-primary.btn-gradient.mt-1 {
    align-self: center;
  }

  .main-container {
    max-width: 1440px;
    padding-left: 0%;
    padding-right: 0%;
  }

  .main-container.px-00.padding {
    max-width: 1440px;
  }

  .main-container.vertical-padding {
    padding-left: 0%;
    padding-right: 0%;
  }

  .margin-bottom-24px {
    font-size: 43px;
    line-height: 1.2em;
  }

  .left-image.left-padding {
    padding-right: 0;
  }

  .image {
    width: 88%;
  }

  .heading-main-gradient {
    font-size: 180px;
    line-height: 1.2em;
  }

  .features-metrics.nopadding {
    padding-top: 3em;
    padding-bottom: 3em;
  }

  .features-wrapper {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    justify-content: space-between;
  }

  .features-title {
    font-size: 80px;
    line-height: 1.1em;
  }

  .feature-text-sm, .feature-text-sm.padding {
    font-size: 30px;
    line-height: 1.3em;
  }

  .text-para, .text-para.text-center {
    font-size: 26px;
    line-height: 1.3em;
  }

  .text-para.white {
    font-size: 28px;
    line-height: 1.3em;
  }

  .text-para.fw-medium.mb-1._21-09px {
    font-size: 26px;
    line-height: 1.3em;
  }

  .text-para.height {
    font-size: 28px;
    line-height: 1.3em;
  }

  .footer-brand.w--current {
    flex-flow: row;
    justify-content: center;
  }

  .title-small {
    font-size: 30px;
    line-height: 1.3em;
  }

  .footer-link {
    font-size: 26px;
    line-height: 1.4em;
  }

  .footer-divider {
    margin-top: 2em;
    margin-bottom: .5em;
  }

  .logos-wrapper {
    width: 430px;
  }

  .app-feature-section.no-bottom-paddin {
    padding-top: 6em;
    padding-bottom: 6em;
  }

  .app-feature-section.no-bottom-pad {
    padding-top: 6em;
    padding-bottom: 20px;
  }

  .logo-icon {
    width: 54px;
  }

  .sub-head {
    font-size: 26px;
    line-height: 22px;
  }

  .heading-2.text-center.mt-4._46-88px {
    font-size: 60px;
    line-height: 1.3em;
  }

  .heading-2.white.mb-0 {
    font-size: 65px;
    line-height: 1.3em;
  }

  .heading-2.white.italic300 {
    font-size: 65px;
    line-height: 65px;
  }

  .step-heading._500-weight {
    font-size: 30px;
    line-height: 1.3em;
  }

  .about-hero.hero-title {
    padding-bottom: 5em;
  }

  .grid {
    grid-column-gap: 50px;
    grid-row-gap: 50px;
  }

  .image-3 {
    width: 100%;
    height: 100%;
  }

  .text-gradient {
    line-height: 1.3em;
  }

  .how-to-section.sec-support, .how-to-section.sec-support.padding-below {
    padding-top: 5em;
    padding-bottom: 5em;
  }

  .icon-card-text {
    font-size: 26px;
    line-height: 1.3em;
  }

  .icon-card-text.mt-0.fw-med {
    font-size: 26px;
    line-height: 1.1em;
  }

  .heading-2-sm.mt-0.bottom-padding {
    font-size: 46px;
    line-height: 1.3em;
  }

  .how-we-protect {
    padding-top: 5em;
    padding-bottom: 5em;
  }

  .grid-3 {
    grid-column-gap: 67px;
  }

  .grid-right {
    flex-flow: column;
    align-items: flex-end;
    display: flex;
  }

  .pricing-wrapper {
    height: auto;
  }

  .pricing-card.border-right.height {
    justify-content: flex-start;
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .pricing-title {
    font-size: 30px;
    line-height: 1.2em;
  }

  .pricing-subtitle {
    font-size: 35px;
    line-height: 1.2em;
  }

  .paragraph-regular {
    font-size: 26px;
    line-height: 1.4em;
  }

  .table_cell, .table_cell.bold, .table_header {
    font-size: 30px;
    line-height: 1.3em;
  }

  .asset-heading.name {
    font-size: 28px;
    line-height: 1.3em;
  }

  .sub-text {
    font-size: 24px;
    line-height: 1.3em;
  }

  .section-faqs.cetner-align {
    padding-top: 180px;
  }

  .white-card-gead {
    font-size: 28px;
    line-height: 1.3em;
  }

  .head-sub {
    font-size: 26px;
    line-height: 1.3em;
  }

  .right-image {
    height: 100%;
  }

  .section-download-now.center-alignn {
    background-position: 0 0;
    padding-bottom: 20px;
  }

  .grid-5 {
    grid-column-gap: 2.4em;
    grid-row-gap: 8em;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .grid-5._80 {
    width: 80%;
  }

  .black-outer {
    width: auto;
    height: auto;
  }

  .testimonial-card-two {
    border-radius: 1.9em;
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .testimonial-text-two {
    font-size: 1.3em;
  }

  .testimonial-image {
    width: auto;
    height: 27px;
  }

  .testimonial-main-heading {
    font-size: 31px;
  }

  .sect-testimonials {
    padding-top: 100px;
  }

  .accordion-heading.fw-500 {
    font-size: 45px;
    line-height: 1.3em;
  }

  .section-logos-carousal {
    flex-direction: row;
    display: flex;
  }

  .infinite-loop-card-container {
    grid-template-columns: 35vw;
    grid-auto-columns: 35vw;
  }

  .logo-wrapper {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
  }

  .circle-img {
    margin-right: 0;
  }

  .carousal-text {
    font-size: 80px;
  }

  .box-gradient-border-content.mid.left, .box-gradient-border-content.mid.left-center {
    align-items: flex-start;
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .logo-slide_section {
    height: auto;
  }

  .page-padding.s0, .padding-vertical.padding-xxlarge, .logo_component-slider {
    overflow: hidden;
  }

  .blue-card.max-height {
    justify-content: center;
    padding: 60px;
  }

  .tab-head1 {
    font-size: 28px;
    line-height: 1.3em;
  }

  .tab-text {
    font-size: 26px;
    line-height: 1.3em;
  }

  .image-7 {
    height: 60vh;
  }

  .accordian-wrapper-2 {
    width: 100%;
  }

  .accordian-card.pb-0.style, .accordian-card.pb-0.style.open {
    padding-top: 30px;
    padding-bottom: 15px;
  }

  .faq-para {
    margin-bottom: 0;
    font-size: 26px;
    line-height: 1.3em;
  }

  .accordion-heading {
    font-size: 45px;
    line-height: 1.3em;
  }

  .tick-icon {
    width: 35px;
    max-width: 35px;
    height: 35px;
  }

  .btn-image {
    width: 100%;
  }

  .tooltip {
    width: 25px;
    height: 25px;
  }

  .grid-7 {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
  }

  .grid-7.bottom-padding {
    margin-bottom: 80px;
  }

  .slide-3 {
    height: 650px;
  }

  .carousel-arrow-icon {
    height: 1.5em;
    margin-bottom: 10px;
  }

  .carousel-arrow-oval, .carousel-arrow-oval.next-arrow {
    height: 4.1em;
  }

  .carousel-arrow {
    width: 45px;
    padding-top: .5em;
    padding-bottom: .5em;
    padding-left: 0;
  }

  .carousel-arrow.arrow-next {
    width: 45px;
    padding-right: 0;
  }

  .slider-3 {
    margin-bottom: 8em;
  }

  .header {
    margin-top: 8em;
    margin-bottom: 2em;
  }

  .slider-4 {
    width: 30vw;
    margin-bottom: 0;
  }

  .tabs.heightt {
    height: 100%;
  }

  .tabs-menu.padin {
    background-image: linear-gradient(90deg, var(--secondary-pink) 18%, var(--primary-blue));
    width: 42%;
    height: 100%;
  }

  .tab-pane-tab-1 {
    height: 100%;
    margin-top: 20px;
  }

  .image-11 {
    width: 38px;
    height: 38px;
  }

  .image-12 {
    display: block;
  }

  .div-block-9 {
    justify-content: flex-end;
    display: flex;
  }

  .tab-pane-tab-2, .tab-pane-tab-3, .tab-pane-tab-4, .tab-pane-tab-5, .tab-pane-tab-6, .tab-pane-tab-7 {
    margin-top: 20px;
  }

  .image-m {
    object-position: 100% 50%;
    width: 80%;
  }

  .fees-hero-section {
    padding-bottom: 5em;
  }

  .image-14 {
    width: 100%;
  }

  .div-block-10 {
    flex-flow: column;
    align-items: center;
    margin-bottom: 100px;
    display: flex;
  }
}

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

  .nav-menu-wrapper {
    background-color: rgba(0, 0, 0, 0);
  }

  .nav-menu {
    background-color: #fff;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    padding-left: 0;
  }

  .nav-link {
    padding-left: 5px;
    padding-right: 5px;
  }

  .nav-link.navlink {
    font-size: 16px;
  }

  .nav-link.navlink:hover {
    border-bottom-style: none;
  }

  .nav-link.navlink.w--current {
    border-bottom-style: none;
    font-size: 16px;
  }

  .nav-dropdown-list.shadow-three.w--open {
    position: absolute;
  }

  .nav-button-wrapper {
    width: 100%;
    margin-left: 0;
  }

  .button-primary {
    font-size: 19px;
  }

  .button-primary.btn-gradient {
    margin-top: 20px;
  }

  .button-primary.btn-gradient.mt-1 {
    font-size: 18px;
  }

  .button-primary.wdith-button {
    font-size: 19px;
  }

  .menu-button {
    padding: 12px;
  }

  .menu-button.w--open {
    background-color: var(--primary-blue);
    color: #fff;
  }

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

  .section.mb-0.mx-0.hero-bg {
    padding-top: 70px;
  }

  .main-container {
    max-width: 100%;
    padding-left: 5%;
    padding-right: 5%;
  }

  .hero-wrapper {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: -40px;
  }

  .hero-split {
    max-width: 100%;
    margin-bottom: 40px;
  }

  .margin-bottom-24px {
    text-align: center;
    font-size: 20px;
  }

  .hero-inner {
    grid-template-columns: 1.5fr;
  }

  .hero-inner.splash {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-template-rows: auto;
    grid-template-columns: 1.5fr;
    grid-auto-columns: 1fr;
    margin-top: 60px;
    display: grid;
  }

  .right-content, .left-image {
    align-items: center;
  }

  .left-image.left-padding {
    padding-top: 40px;
    padding-right: 0;
  }

  .image {
    width: 50%;
  }

  .heading-main-gradient {
    font-size: 120px;
    line-height: 130px;
  }

  .features-metrics {
    padding-left: 0;
    padding-right: 0;
  }

  .container {
    max-width: 728px;
  }

  .features-wrapper {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: space-between;
    justify-items: stretch;
    display: grid;
  }

  .features-block {
    align-items: center;
  }

  .features-title {
    font-size: 32px;
    line-height: 40px;
  }

  .feature-text-sm {
    font-size: 16px;
  }

  .feature-text-sm.padding {
    margin-top: 0;
    font-size: 16px;
  }

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

  .text-para {
    text-align: center;
    font-size: 17px;
  }

  .text-para.text-center {
    font-size: 16px;
    line-height: 1.5em;
  }

  .text-para.text-center._w-65 {
    font-size: 16px;
  }

  .text-para.white {
    text-align: center;
    font-size: 16px;
    line-height: 1.8em;
  }

  .text-para.height {
    font-size: 20px;
    line-height: 1.6em;
  }

  .text-para.width {
    font-size: 16px;
  }

  .pricing-grid {
    grid-column-gap: 30px;
    margin-bottom: 20px;
  }

  .step-text._500-weight {
    font-size: 16px;
  }

  .footer-content {
    grid-column-gap: 60px;
  }

  .title-small {
    font-size: 18px;
  }

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

  .footer-link.fs, .footer-text {
    font-size: 14px;
  }

  .cta-grid {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .right-div {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    align-items: center;
    margin-top: 20px;
  }

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

  .app-feature-section.no-bottom-pad {
    background-position: 11% 0;
    padding-bottom: 10px;
  }

  .app-features-grid {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    grid-template-columns: 1fr;
  }

  .logo-icon {
    width: 47px;
  }

  .logo-icon._44px {
    width: 34px;
  }

  .feature-left {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    align-items: center;
  }

  .text-flex {
    font-size: 1.3vw;
  }

  .div-block-3 {
    flex-flow: column;
  }

  .div-block-3.padding {
    margin-top: 0;
  }

  .heading-2 {
    text-align: center;
  }

  .heading-2.text-center {
    margin-bottom: 0;
    font-size: 40px;
  }

  .heading-2.text-center.mt-4 {
    margin-bottom: 20px;
  }

  .heading-2.white.italic400, .heading-2.white.mb-0, .heading-2.white.italic300 {
    text-align: center;
    font-size: 40px;
  }

  .heading-2.text-left {
    text-align: left;
  }

  .heading-2.text-left.center {
    text-align: center;
    font-size: 45px;
  }

  .step-heading._500-weight {
    font-size: 20px;
  }

  .about-hero {
    padding-top: 120px;
  }

  .about-hero.hero-title {
    padding-top: 100px;
  }

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

  .image-3 {
    width: auto;
    height: auto;
  }

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

  .grid-2 {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    grid-template-columns: 1fr 1fr;
  }

  .icon-card {
    flex-flow: column;
    align-items: stretch;
    padding: 25px;
    display: flex;
  }

  .icon-card-text, .icon-card-text.mt-0.fw-med {
    font-size: 16px;
  }

  .heading-2-sm.mt-0 {
    text-align: center;
    margin-bottom: 20px;
  }

  .heading-2-sm.mt-0.bottom-padding {
    font-size: 35px;
  }

  .how-we-protect {
    padding-top: 60px;
  }

  .grid-3 {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    grid-template-columns: 1fr;
  }

  .fees-hero {
    padding-top: 100px;
  }

  .container-2 {
    max-width: 728px;
  }

  .pricing-wrapper {
    grid-template-columns: 1fr;
    justify-items: center;
    height: auto;
  }

  .pricing-card {
    width: 350px;
  }

  .pricing-card.border-right.height, .pricing-card.heighht {
    width: 100%;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .pricing-title {
    font-size: 25px;
  }

  .pricing-subtitle {
    font-size: 22px;
  }

  .paragraph-regular {
    font-size: 16px;
  }

  .table_cell, .table_cell.bold, .table_header {
    font-size: 20px;
  }

  .fee-tier {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  ._w-80 {
    width: 90%;
  }

  .sections-assets.top {
    padding-top: 140px;
  }

  .assets-wrapper {
    padding-bottom: 0;
  }

  .assets-collection-list {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }

  .asset-heading.name {
    font-size: 16px;
  }

  .sub-text {
    font-size: 14px;
  }

  .image-4 {
    width: auto;
    height: auto;
  }

  .section-faqs.cetner-align {
    padding-top: 15.1em;
  }

  .white-card-gead {
    font-size: 22px;
  }

  .head-sub {
    font-size: 18px;
  }

  .features-hero {
    padding-top: 18.4em;
  }

  .section-download-now.center-alignn {
    background-position: 49% 0;
    padding-top: 2em;
    padding-bottom: 2em;
  }

  .content-download {
    align-items: center;
    padding-left: 0;
  }

  .container-3 {
    max-width: 728px;
  }

  .testimonial-grid-two {
    grid-column-gap: 30px;
  }

  .testimonial-card-two {
    padding: 30px;
  }

  .testimonial-text-two {
    font-size: 16px;
  }

  .testimonial-info-three {
    flex-flow: row;
    align-items: flex-start;
  }

  .testimonial-main-heading {
    font-size: 22px;
  }

  .sect-testimonials {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .accordion-wrapper {
    width: 100%;
  }

  .accordion-heading.fw-500 {
    font-size: 30px;
    line-height: 36px;
  }

  .text-field.padding {
    padding: 15px 10px;
    font-size: 14px;
  }

  .section-logos-carousal {
    margin-left: auto;
    margin-right: auto;
    padding: 10px 40px;
  }

  .infinite-loop-card-container {
    grid-template-columns: repeat(auto-fit, minmax(50vw, 1fr));
    grid-auto-columns: 50vw;
  }

  .logo-card {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
  }

  .logo-wrapper {
    grid-column-gap: 70px;
    grid-row-gap: 70px;
  }

  .circle-img {
    margin-right: 0;
  }

  .carousal-text {
    font-size: 35px;
  }

  .box-gradient-border-content {
    flex-flow: column;
    align-items: center;
    display: flex;
  }

  .box-gradient-border-content.mid {
    padding-bottom: 0;
  }

  .bild-slider1 {
    height: 20vh;
  }

  .page-padding.s0 {
    margin-top: 4rem;
    margin-bottom: 4rem;
  }

  .padding-vertical {
    padding-left: 0;
    padding-right: 0;
  }

  .logo-slider-img {
    width: 174px;
  }

  .section-logo {
    overflow: hidden;
  }

  .logo_component-slider {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    width: 8000px;
    margin-top: 20px;
  }

  .paragraph.padding {
    font-size: 16px;
  }

  .feature-table {
    overflow: scroll;
  }

  .tab-head-1 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .tab-head1 {
    font-size: 16px;
  }

  .text-block {
    padding-left: 10px;
    padding-right: 10px;
  }

  .tab-text {
    font-size: 16px;
  }

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

  .grid-2-copy {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    grid-template-columns: 1fr 1fr;
  }

  .accordian-wrapper-2 {
    width: 100%;
  }

  .accordian-wrapper-2._w-55 {
    width: 70%;
  }

  .accordian-card.white-bg {
    padding: 25px 30px;
  }

  .accordian-card.pb-0.style, .accordian-card.pb-0.style.open {
    padding: 20px;
  }

  .faq-para {
    font-size: 18px;
  }

  .gradient-border-faq.mb-2 {
    border-radius: 4px;
  }

  .accordion-heading {
    font-size: 30px;
  }

  .tick-icon, .ques-mark-icon {
    width: 20px;
  }

  .btn-image {
    width: auto;
  }

  .tooltip {
    width: 20px;
  }

  .slide-head-2 {
    font-size: 20px;
    line-height: 31px;
  }

  .slider-3 {
    display: flex;
  }

  .header {
    z-index: 0;
    margin-top: 8em;
    margin-bottom: 4em;
  }

  .credentials {
    margin-top: 4em;
    padding-bottom: 6em;
  }

  .slider-4 {
    display: flex;
  }

  .tabs {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    margin-top: 40px;
  }

  .tabs-menu {
    width: 85%;
  }

  .image-m {
    width: 50%;
  }

  .fees-hero-section {
    padding-top: 100px;
  }
}

@media screen and (max-width: 767px) {
  .navbar-no-shadow-container.navbar-padding {
    padding-left: 5%;
    padding-right: 5%;
  }

  .navbar-brand {
    padding-left: 0;
  }

  .navbar-brand.w--current {
    width: auto;
  }

  .nav-menu {
    flex-direction: column;
    padding-bottom: 30px;
    padding-left: 0;
  }

  .nav-link {
    padding-top: 10px;
    padding-bottom: 10px;
    display: inline-block;
  }

  .nav-dropdown {
    flex-direction: column;
    align-items: center;
    display: flex;
  }

  .nav-dropdown-toggle {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .nav-dropdown-list.shadow-three {
    box-shadow: 0 8px 50px rgba(0, 0, 0, .05);
  }

  .nav-dropdown-list.shadow-three.w--open {
    position: relative;
  }

  .nav-dropdown-list.shadow-three.mobile-shadow-hide {
    box-shadow: none;
  }

  .mobile-margin-top-10 {
    margin-top: 10px;
  }

  .button-primary {
    font-size: 3.6em;
  }

  .section {
    padding: 60px 15px;
  }

  .section.mb-0.mx-0.hero-bg {
    padding-top: 120px;
  }

  .main-container {
    max-width: 100%;
  }

  .margin-bottom-24px {
    font-size: 25px;
  }

  .hero-inner.splash {
    margin-top: 10px;
  }

  .left-image {
    align-items: center;
    padding-top: 20px;
  }

  .image {
    width: 60%;
  }

  .heading-main-gradient {
    font-size: 100px;
    line-height: 120px;
  }

  .features-metrics {
    padding: 40px 15px;
  }

  .features-metrics.nopadding {
    padding-top: 4em;
    padding-bottom: 4em;
  }

  .features-wrapper {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    flex-wrap: wrap;
    grid-template-columns: 1fr 1fr;
    justify-items: center;
    margin-bottom: 0;
  }

  .features-block {
    width: 100%;
    margin-bottom: 40px;
  }

  .feature-text-sm, .feature-text-sm.padding {
    font-size: 14px;
  }

  .section-how-to {
    padding: 60px 0;
  }

  .text-para.text-center._w-65 {
    margin-top: 10px;
  }

  .text-para.height {
    font-size: 16px;
    line-height: 1.6em;
  }

  .pricing-grid {
    grid-row-gap: 38px;
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
  }

  .footer {
    padding-left: 15px;
    padding-right: 15px;
  }

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

  .footer-content {
    grid-template-columns: 1fr;
    margin-top: 40px;
  }

  .footer-block {
    align-items: center;
  }

  .footer-link:hover {
    color: rgba(26, 27, 31, .75);
  }

  .footer-social-block {
    margin-top: 20px;
    margin-left: -20px;
  }

  .footer-social-link {
    margin-left: 20px;
  }

  .footer-divider {
    margin-top: 15px;
  }

  .div-block {
    flex-flow: column;
  }

  .app-feature-section.no-bottom-pad {
    background-position: 12% 0;
  }

  .sub-head {
    font-size: 15px;
  }

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

  .heading-2.text-center {
    font-size: 32px;
    line-height: 125%;
  }

  .heading-2.text-center.mt-4 {
    font-size: 32px;
  }

  .heading-2.white.italic400, .heading-2.white.mb-0, .heading-2.white.italic300 {
    font-size: 35px;
  }

  .heading-2.text-left {
    text-align: center;
    font-size: 34px;
    line-height: 40px;
  }

  .heading-2.text-left.center {
    font-size: 39px;
  }

  .about-hero.hero-title {
    padding-top: 100px;
  }

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

  .heading-2-sm.mt-0.bottom-padding {
    line-height: 40px;
  }

  .how-we-protect {
    padding-bottom: 60px;
  }

  .grid-left {
    flex-flow: column;
    align-items: center;
    display: flex;
  }

  .fees-hero {
    padding-top: 100px;
    padding-bottom: 60px;
  }

  .pricing-comparison {
    padding: 60px 15px;
  }

  .pricing-wrapper {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    grid-template-rows: auto auto auto;
    justify-items: stretch;
  }

  .pricing-card {
    width: auto;
    min-height: auto;
  }

  .pricing-title {
    font-size: 27px;
    line-height: 42px;
  }

  .pricing-price {
    font-size: 54px;
  }

  .table_cell, .table_cell.bold, .table_header {
    font-size: 20px;
  }

  .fee-tier {
    padding-left: 20px;
    padding-right: 20px;
  }

  ._w-80 {
    width: 100%;
  }

  .assets-wrapper {
    padding-bottom: 0;
  }

  .assets-collection-list {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .search.text-center {
    width: 80%;
  }

  .section-faqs.cetner-align {
    padding-top: 21.4em;
  }

  .grid-4 {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    grid-template-columns: 1fr;
  }

  .section-download-now.center-alignn {
    background-position: 55% 0;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .black-outer {
    width: 130px;
    height: 48px;
    padding-left: 1em;
    padding-right: 1em;
  }

  .testimonial-column-light {
    padding: 60px 15px;
  }

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

  .testimonial-info-three {
    flex-direction: row;
    align-items: center;
  }

  .testimonial-image {
    width: auto;
  }

  .testimonial-main-heading {
    margin-bottom: 0;
  }

  .sect-testimonials {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .accordion-heading.fw-500 {
    font-size: 25px;
    line-height: 33px;
  }

  .icon.accordion-icon {
    font-size: 25px;
    line-height: 25px;
  }

  .accordion-item-content, .accordion-item-content-copy, .accordion-item-content-2, .accordion-item-content-4, .accordion-item-content-5 {
    margin-right: 0;
  }

  .section-logos-carousal {
    margin-left: auto;
    margin-right: auto;
    padding-left: 30px;
    padding-right: 30px;
  }

  .infinite-loop-card-container {
    grid-template-columns: 45vw;
    grid-auto-columns: 45vw;
  }

  .logo-card {
    margin-left: 10px;
    margin-right: 10px;
  }

  .logo-wrapper {
    grid-column-gap: 50px;
    grid-row-gap: 50px;
  }

  .circle-img {
    width: 20px;
  }

  .carousal-text {
    font-size: 26px;
  }

  .logo-slide_section {
    height: auto;
  }

  .page-padding.s0 {
    margin-top: 2rem;
    margin-bottom: 4rem;
  }

  .padding-vertical {
    padding-left: 0;
    padding-right: 0;
  }

  .logo-slider-img {
    width: 125px;
  }

  .logo_component-slider {
    grid-row-gap: 2rem;
    flex-direction: row;
    grid-template-columns: 1fr;
    justify-content: flex-start;
    align-items: center;
  }

  .tab-head1 {
    font-size: 15px;
  }

  .text-block {
    padding-right: 15px;
  }

  .tab-text {
    font-size: 15px;
  }

  .image-6 {
    width: auto;
  }

  .div-block-7 {
    flex-flow: column;
    align-items: center;
    display: flex;
  }

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

  .accordian-wrapper-2 {
    width: 91%;
  }

  .accordian-wrapper-2._w-55 {
    width: 100%;
  }

  .accordian-card.pb-0 {
    padding-bottom: 2.1em;
  }

  .accordian-card.pb-0.style {
    padding-left: 20px;
    padding-right: 20px;
  }

  .accordian-card.pb-0.style.open {
    padding: 20px;
  }

  .gradient-border-faq.mb-2 {
    margin-bottom: 40px;
  }

  .outer-gradient-border {
    width: 100%;
  }

  .test-icon {
    width: auto;
  }

  .grid-7 {
    grid-column-gap: 19px;
    grid-row-gap: 19px;
    flex-flow: column;
    display: flex;
  }

  .swiper-wrapper.first-swiper-wrapper {
    margin-top: 40px;
  }

  .carousel-arrow.arrow-next {
    right: -4px;
  }

  .header {
    margin-top: 4em;
  }

  .slider-4 {
    width: auto;
  }

  .image-m {
    width: 60%;
  }

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

@media screen and (max-width: 479px) {
  .navbar-no-shadow-container {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .navbar-wrapper {
    justify-content: space-between;
  }

  .nav-menu {
    flex-direction: column;
    padding-top: 10px;
    padding-bottom: 20px;
  }

  .nav-link.navlink, .nav-link.navlink.w--current {
    font-size: 17px;
  }

  .nav-button-wrapper {
    width: auto;
  }

  .button-primary {
    text-align: center;
    width: 100%;
    padding-left: 40px;
    padding-right: 40px;
    font-size: 16px;
  }

  .button-primary.btn-white {
    text-align: center;
    width: auto;
  }

  .button-primary.btn-gradient {
    text-align: center;
  }

  .button-primary.btn-gradient.mt-1 {
    width: auto;
    padding-left: 20px;
    padding-right: 20px;
  }

  .button-primary.wdith-button {
    width: auto;
  }

  .section {
    padding: 40px 0;
  }

  .section.mb-0.mx-0.hero-bg {
    padding-top: 100px;
  }

  .main-container.flex-center.top-padding {
    padding-top: 0;
  }

  .main-container.px-00.padding {
    padding-top: 40px;
  }

  .main-container.invest-column {
    flex-flow: column;
    align-items: center;
    display: flex;
  }

  .margin-bottom-24px {
    font-size: 22px;
    line-height: 130%;
  }

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

  .image {
    width: 70%;
  }

  .heading-main-gradient {
    margin-top: 10px;
    font-size: 60px;
    line-height: 80px;
  }

  .btn-outer {
    flex-flow: column;
  }

  .features-metrics.nopadding {
    padding-top: 20px;
  }

  .container {
    max-width: none;
  }

  .features-wrapper {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-flow: column;
    grid-template-columns: 1fr;
    margin-bottom: 0;
  }

  .features-block {
    width: 100%;
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .features-title {
    font-size: 36px;
    line-height: 52px;
  }

  .feature-text-sm, .feature-text-sm.padding {
    font-size: 17px;
    line-height: 25px;
  }

  .section-how-to {
    padding: 40px 0;
  }

  .section-how-to.space {
    padding-top: 8em;
    padding-bottom: 6em;
  }

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

  .text-para {
    width: 100%;
    font-size: 14px;
    line-height: 22px;
  }

  .text-para.text-center._w-65 {
    max-width: 100%;
  }

  .text-para.height {
    font-size: 14px;
    line-height: 22px;
  }

  .text-para.width {
    width: auto;
  }

  .pricing-grid {
    grid-row-gap: 20px;
    grid-template-columns: 1fr;
    margin-top: 20px;
  }

  .step-text._500-weight {
    font-size: 16px;
  }

  .footer {
    padding-top: 40px;
    padding-left: 0;
    padding-right: 0;
  }

  .footer-content {
    grid-row-gap: 20px;
    grid-template-rows: auto auto auto auto auto;
    margin-top: 0;
  }

  .footer-link {
    margin-top: 6px;
  }

  .footer-link.fs {
    font-size: 14px;
  }

  .footer-divider {
    margin-top: 10px;
  }

  .footer-text {
    line-height: 22px;
  }

  .div-block {
    flex-flow: column;
  }

  .right-div {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }

  .logos-wrapper {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    width: auto;
    height: auto;
  }

  .app-feature-section {
    padding-top: 40px;
    padding-bottom: 40px;
    overflow: hidden;
  }

  .app-feature-section.no-bottom-padding, .app-feature-section.no-bottom-paddin {
    padding-bottom: 40px;
  }

  .app-feature-section.no-bottom-pad {
    background-position: 14% 25%;
    padding-bottom: 20px;
  }

  .app-features-grid {
    grid-template-rows: auto auto;
    width: 100%;
  }

  .app-features-grid.width {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-flow: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    grid-auto-flow: row;
    display: flex;
  }

  .logo-icon {
    width: 30px;
  }

  .logo-icon._44px {
    width: 25px;
  }

  .feature-left, .feature-right {
    width: 100%;
  }

  .text-flex {
    grid-column-gap: 4px;
    grid-row-gap: 4px;
    flex-flow: row;
  }

  .vertical-line {
    background-color: var(--black);
  }

  .sub-head {
    text-align: center;
    font-size: 14px;
  }

  .heading-2 {
    margin-bottom: 15px;
    font-size: 25px;
  }

  .heading-2.text-center {
    margin-bottom: 20px;
    font-size: 29px;
  }

  .heading-2.text-center.mt-4 {
    font-size: 29px;
  }

  .heading-2.text-center.mt-4._46-88px {
    font-size: 32px;
    line-height: 40px;
  }

  .heading-2.text-center.mb-3 {
    font-size: 24px;
  }

  .heading-2.text-center.text-white.mb-3 {
    margin-bottom: 10px;
  }

  .heading-2.white.mb-0 {
    margin-bottom: 0;
  }

  .heading-2.text-left.center {
    font-size: 36px;
  }

  .step-heading._500-weight {
    font-size: 20px;
  }

  .about-hero {
    padding-top: 100px;
  }

  .grid {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
  }

  .how-to-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

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

  .heading-2-sm.mt-0 {
    font-size: 25px;
  }

  .heading-2-sm.mt-0.bottom-padding {
    font-size: 25px;
    line-height: 30px;
  }

  .how-we-protect {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .grid-wrap {
    margin-top: 20px;
  }

  .fees-hero {
    padding-bottom: 40px;
  }

  .container-2 {
    max-width: none;
  }

  .pricing-wrapper {
    width: 100%;
    height: auto;
    margin-top: 10px;
  }

  .pricing-card {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }

  .pricing-title {
    font-size: 28px;
    line-height: 1.3em;
  }

  .pricing-subtitle {
    margin-bottom: 0;
  }

  .pricing-price {
    font-size: 60px;
    line-height: 72px;
  }

  .paragraph-regular, .table_cell {
    font-size: 15px;
  }

  .table_cell.bold {
    font-size: 16px;
  }

  .table_header {
    padding-right: 10px;
    font-size: 15px;
  }

  .fee-tier {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .sections-assets.top {
    padding-top: 100px;
  }

  .assets-wrapper {
    padding: 40px 20px 0;
  }

  .assets-collection-list {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-flow: column;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    align-items: center;
    justify-items: center;
    display: grid;
  }

  .coins-outer {
    flex-flow: column;
    justify-content: center;
    align-items: center;
  }

  .asset-heading.name {
    font-size: 14px;
  }

  .sub-text {
    text-align: center;
    font-size: 12px;
  }

  .search.text-center {
    width: 100%;
    margin-bottom: 20px;
  }

  .image-4 {
    width: 85%;
  }

  .section-faqs.cetner-align {
    padding-top: 100px;
  }

  .features-hero {
    padding-top: 120px;
    padding-bottom: 0;
  }

  .hero-faqs-wrapper {
    margin-top: 20px;
  }

  .grid-4 {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    width: 100%;
  }

  .section-download-now {
    padding-top: 30px;
  }

  .section-download-now.center-align {
    padding-top: 40px;
  }

  .section-download-now.center-alignn {
    background-position: 50%;
    padding-top: 40px;
  }

  .content-download {
    align-items: center;
  }

  .grid-5 {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    grid-template-columns: 1fr;
  }

  .google-store-outer {
    justify-content: center;
    margin-top: 15px;
  }

  .black-outer {
    padding: 10px;
  }

  .container-3 {
    max-width: none;
  }

  .centered-heading-2 {
    margin-bottom: 24px;
  }

  .testimonial-card-two {
    width: auto;
    padding: 20px;
  }

  .testimonial-text-two {
    font-size: 14px;
    line-height: 22px;
  }

  .testimonial-image {
    width: 88px;
  }

  .testimonial-main-heading {
    font-size: 18px;
  }

  .sect-testimonials {
    padding-top: 40px;
    padding-bottom: 30px;
    padding-left: 5%;
  }

  .accordion-heading {
    font-size: 21px;
  }

  .accordion-heading.fw-500 {
    font-size: 22px;
    line-height: 28px;
  }

  .icon.accordion-icon.size {
    font-size: 28px;
    line-height: 26px;
  }

  .text-field {
    padding-left: 20px;
  }

  .section-logos-carousal {
    padding: 0 10px 0 0;
  }

  .infinite-loop-card-container {
    grid-template-columns: repeat(auto-fit, 95vw);
    grid-auto-columns: 95vw;
    grid-auto-flow: column;
  }

  .logo-card {
    justify-content: center;
    align-items: center;
    margin-left: 10px;
    margin-right: 10px;
    padding: 15px 7px 18px;
  }

  .logo-wrapper {
    grid-column-gap: 50px;
    grid-row-gap: 50px;
    text-align: left;
    justify-content: flex-start;
  }

  .circle-img {
    width: 22px;
    margin-top: 6px;
  }

  .carousal-text {
    margin-left: 0;
    font-size: 40px;
  }

  .box-gradient-border-content.mid {
    padding-left: 0;
    padding-right: 0;
  }

  .bild-slider1 {
    height: 10vh;
  }

  .logo-slide_section {
    justify-content: flex-start;
    height: auto;
  }

  .page-padding.s0 {
    align-items: center;
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 0;
    display: flex;
  }

  .padding-vertical {
    padding-left: 0;
    padding-right: 0;
  }

  .padding-vertical.padding-xxlarge {
    align-items: center;
    margin-top: 0;
    padding-top: 0;
    padding-bottom: 0;
    display: flex;
  }

  .logo-slider-img {
    width: 100px;
  }

  .logo_component-slider {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    justify-content: flex-start;
    align-items: flex-start;
    width: 8400px;
    overflow: visible;
  }

  .slide {
    width: 100%;
  }

  .blue-card {
    align-items: center;
    padding: 20px;
  }

  .blue-card.max-height {
    justify-content: center;
    height: 400px;
  }

  .slider {
    height: 58vh;
  }

  .mask {
    width: auto;
  }

  .slide-head {
    text-align: center;
    font-size: 20px;
  }

  .paragraph {
    text-align: center;
    font-size: 16px;
  }

  .grey-line {
    margin-top: 15px;
    margin-bottom: 15px;
  }

  .section-2 {
    padding-bottom: 40px;
  }

  .image-6 {
    margin-top: -2px;
    margin-bottom: 0;
  }

  .arrow-grad {
    width: 30px;
  }

  .grid-2-copy {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    grid-template-rows: auto auto auto auto;
    grid-template-columns: 1fr;
  }

  .logo-inner-cont {
    flex-flow: column;
    justify-content: center;
    align-items: center;
    height: 250px;
    padding-right: 10px;
  }

  .div-block-8 {
    align-items: center;
    display: flex;
  }

  .image-7, .accordian-wrapper-2, .accordian-wrapper-2._w-55 {
    width: 100%;
  }

  .accordian-card.white-bg {
    padding-left: 20px;
    padding-right: 20px;
  }

  .accordian-card.pb-0 {
    margin-bottom: 0;
    padding: 20px 20px 24px;
  }

  .accordian-card.pb-0.style {
    padding-top: 4em;
    padding-left: 20px;
    padding-right: 20px;
  }

  .accordian-card.pb-0.open {
    padding: 20px;
  }

  .accordion-heading-6 {
    font-size: 23px;
  }

  .faq-para {
    font-size: 14px;
    line-height: 22px;
  }

  .gradient-border-faq.mb-2 {
    margin-bottom: 30px;
  }

  .outer-gradient-border {
    width: 100%;
  }

  .image-8 {
    width: 35px;
  }

  .btn-image {
    width: auto;
  }

  .slider-img {
    width: 150px;
  }

  .image-9 {
    width: 25px;
  }

  .grid-7 {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    width: 100%;
  }

  .carousel-arrow-w.arrow-next {
    margin-right: 0;
  }

  .carousel-arrow-w.arrow-previous {
    left: 77%;
  }

  .slide-3 {
    height: auto;
  }

  .slide-head-2 {
    text-align: center;
    font-size: 20px;
  }

  .paragraph-2 {
    text-align: center;
    font-size: 16px;
  }

  .carousel-arrows {
    margin-top: 60px;
  }

  .carousel-arrow-icon {
    margin-left: 0;
  }

  .carousel-arrow.arrow-next {
    right: 0;
  }

  .blue-card-2 {
    align-items: center;
    padding: 20px;
  }

  .section-3 {
    min-height: 90vh;
  }

  .credential.top-margin {
    margin-top: 2em;
  }

  .header {
    margin-top: 5em;
    margin-bottom: 5em;
  }

  .text-f-15 {
    font-size: 1.4em;
  }

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

  .text-f-14 {
    font-size: 1.4em;
  }

  .blue-card-3 {
    align-items: center;
    padding: 20px;
  }

  .heading {
    font-size: 5em;
  }

  .tabs {
    flex-flow: column;
    align-items: center;
    height: 100%;
    margin-top: 20px;
  }

  .tabs.height {
    margin-top: 20px;
  }

  .tabs.heightt {
    margin-top: 0;
  }

  .tab-link-tab-1 {
    flex-flow: column;
  }

  .tab-link-tab-3 {
    flex-flow: column;
    align-items: center;
    display: flex;
  }

  .tabs-menu {
    width: 100%;
  }

  .tabs-menu.padin {
    margin-top: 0;
  }

  .tab-pane-tab-1 {
    height: 100%;
  }

  .image-m {
    width: 70%;
  }

  .fees-hero-section {
    padding-bottom: 40px;
  }
}

#w-node-_58c78a5e-25f2-dec4-86e0-709fa3c708fe-9b3e00db, #w-node-_58c78a5e-25f2-dec4-86e0-709fa3c70908-9b3e00db, #w-node-_58c78a5e-25f2-dec4-86e0-709fa3c70912-9b3e00db {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_3689a43e-74f4-f21f-e2dd-c847d879859a-9b3e00db {
  align-self: center;
  justify-self: end;
}

#w-node-_48249dfa-2d74-bb2d-ea3f-0d427ad0078b-9b3e00db, #w-node-_48249dfa-2d74-bb2d-ea3f-0d427ad00798-9b3e00db, #w-node-_48249dfa-2d74-bb2d-ea3f-0d427ad007a1-9b3e00db, #w-node-_48249dfa-2d74-bb2d-ea3f-0d427ad007a6-9b3e00db {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_8ac0716c-9dc7-599c-ce98-ab24c058c5e2-6023171b {
  align-self: start;
}

#w-node-_37f0b6e7-7d78-ac9d-9714-b12f9bd5eb1f-9bd5eb0a, #w-node-_37f0b6e7-7d78-ac9d-9714-b12f9bd5eb2c-9bd5eb0a, #w-node-_37f0b6e7-7d78-ac9d-9714-b12f9bd5eb35-9bd5eb0a, #w-node-_37f0b6e7-7d78-ac9d-9714-b12f9bd5eb3a-9bd5eb0a, #w-node-_4f6580bb-7527-8e2b-d5da-0cecb89c22d6-b586207f, #w-node-_00a7a231-f131-9a76-cd84-cefd675248bd-b586207f, #w-node-_968b54c3-9393-4694-aea4-894d3f78e97c-b586207f, #w-node-_283ef949-2009-f029-9059-dc9ff8b9d171-70fe9da4, #w-node-_283ef949-2009-f029-9059-dc9ff8b9d177-70fe9da4, #w-node-_283ef949-2009-f029-9059-dc9ff8b9d17d-70fe9da4 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_8f15259c-fc7e-e6d6-6f6f-d066b559b943-7a2cb0d8 {
  justify-self: end;
}

#w-node-_76facfa4-b3de-b17d-c349-39f7535923e9-7a2cb0d8, #w-node-_76facfa4-b3de-b17d-c349-39f7535923f6-7a2cb0d8, #w-node-_76facfa4-b3de-b17d-c349-39f7535923ff-7a2cb0d8, #w-node-_76facfa4-b3de-b17d-c349-39f753592404-7a2cb0d8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (min-width: 1920px) {
  #w-node-_968b54c3-9393-4694-aea4-894d3f78e97c-b586207f {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}

@media screen and (max-width: 991px) {
  #w-node-e44b8f53-77b9-d17f-2834-714bebf02142-9b3e00db, #w-node-eba60a63-0c3f-30b2-64d4-74755854fba8-5854fba5 {
    justify-self: center;
  }

  #w-node-ba903ac5-9a84-76c4-092d-10ba2065afd7-6023171b, #w-node-_991fa56b-7959-42de-5df7-4ab37eec2b13-6023171b {
    order: -9999;
    justify-self: center;
  }
}

@media screen and (max-width: 767px) {
  #w-node-e50dbcad-647e-5f01-f1a1-0fcad6aaa9d2-9b3e00db {
    justify-self: center;
  }

  #w-node-_48249dfa-2d74-bb2d-ea3f-0d427ad0077a-9b3e00db, #w-node-_37f0b6e7-7d78-ac9d-9714-b12f9bd5eb0e-9bd5eb0a {
    align-self: center;
    justify-self: center;
  }

  #w-node-_8f15259c-fc7e-e6d6-6f6f-d066b559b943-7a2cb0d8 {
    justify-self: center;
  }

  #w-node-_76facfa4-b3de-b17d-c349-39f7535923d8-7a2cb0d8 {
    align-self: center;
    justify-self: center;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_48249dfa-2d74-bb2d-ea3f-0d427ad0077a-9b3e00db, #w-node-_37f0b6e7-7d78-ac9d-9714-b12f9bd5eb0e-9bd5eb0a {
    justify-self: center;
  }

  #w-node-a35c6980-01d0-83ec-c9f0-c134a2e6561a-7a2cb0d8 {
    align-self: center;
    justify-self: center;
  }

  #w-node-_76facfa4-b3de-b17d-c349-39f7535923d8-7a2cb0d8 {
    justify-self: center;
  }
}


