:root {
  --white: #fff;
  --dark-text: #5c7390;
  --blue-main: #191b35;
  --gray: #f4f5f7;
  --yellow: #ffbd59;
  --blue-2: #5f6fb4;
  --white-2: white;
  --black: black;
  --ffbd59: var(--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: 1280px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

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

body {
  background-color: var(--white);
  color: var(--dark-text);
  font-family: Circularstd Book, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

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

h2 {
  color: var(--blue-main);
  margin-top: 0;
  margin-bottom: 0;
  font-family: Circularstd, sans-serif;
  font-size: 34px;
  font-weight: 700;
  line-height: 130%;
}

h3 {
  color: var(--blue-main);
  margin-top: 0;
  margin-bottom: 0;
  font-family: Circularstd, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
}

p {
  color: var(--dark-text);
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 24px;
}

.section {
  position: relative;
  overflow: hidden;
}

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

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

.section.blue.about-section,
.section.hide {
  display: none;
}

.section.hero {
  background-color: #191b35;
}

.section.hero.pro {
  background-color: #191b3500;
}

.container {
  z-index: 10;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.container.nav-container {
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
}

.hero-image-layover {
  background-image: linear-gradient(#0000, #00000052);
  background-position: 0 0;
  height: 100%;
  display: none;
  position: absolute;
  inset: 0%;
}

.hero-container {
  z-index: 10;
  background-color: #191b3500;
  padding-top: 60px;
  padding-bottom: 90px;
  position: relative;
}

.navbar {
  color: var(--white);
  background-color: #191b3500;
}

.navbar.bue {
  background-color: #191b35;
}

.nav-link {
  color: var(--white);
  font-size: 16px;
  transition: all 0.2s;
  text-align: center;
}

.nav-link:hover {
  text-decoration: underline;
}

.nav-link.w--current {
  color: var(--yellow);
  text-align: center;
}

.nav-link.pro {
  color: #fff0;
  background-image: url("../svg/8_probadge.svg");
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: auto;
  text-align: center;
}

.brand {
  flex: 1;
}

.brand-logo {
  width: 240px;
}

.nav-buttons-wrap {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex: 1;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.nav-buttons-wrap.desktop,
.nav-buttons-wrap.mobile {
  display: none;
}

.button {
  border: 1px solid var(--white);
  background-color: #3898ec00;
  border-radius: 30px;
  padding: 18px 40px;
  font-size: 15px;
  transition: all 0.2s;
}

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

.button.white {
  background-color: var(--white);
  color: var(--blue-main);
}

.button.white:hover {
  color: var(--white);
  background-color: #fff0;
}

.button.white.hide {
  display: none;
}

.button.blue {
  border-color: var(--blue-main);
  background-color: var(--blue-main);
  color: var(--white);
}

.button.blue:hover {
  border-color: var(--blue-main);
  background-color: var(--white);
  color: var(--blue-main);
}

.button.blue.submiit {
  width: 100%;
}

.button.blue-outline {
  border-color: var(--blue-main);
  color: var(--blue-main);
}

.button.blue-outline:hover {
  background-color: var(--blue-main);
  color: var(--white);
}

.button.blue-outline.hide {
  display: none;
}

.button.footer {
  color: var(--white);
  background-color: #ffffff1a;
  border-color: #fff0;
}

.button.footer:hover {
  border-color: var(--white);
  background-color: var(--white);
  color: var(--blue-main);
}

.heading-1 {
  z-index: 1;
  line-height: 120%;
  position: relative;
}

.hero-buttons-wrap {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  align-items: center;
  margin-top: 46px;
  margin-bottom: 40px;
  display: flex;
}

.hero-buttons-wrap.hide {
  display: block;
}

.download-links-section {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: column;
  margin-top: 40px;
  display: flex;
}

.download-links-section.mobile {
  display: none;
  position: relative;
}

.download-buttons-wrap {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  align-items: center;
  display: flex;
}

.download-logo {
  width: 128px;
}

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

.stars {
  width: 160px;
}

.text-block {
  color: var(--white);
  margin-top: 5px;
  font-size: 12px;
  line-height: 12px;
}

.text-block.f-menu {
  color: #ffffffb3;
  text-transform: uppercase;
}

.text-block.copyright-text {
  color: #fff6;
  text-align: center;
  text-transform: none;
}

._2nd-section-wrap {
  padding-top: 120px;
  padding-bottom: 120px;
}

._2nd-section-wrap.ambassodors {
  padding-top: 80px;
}

._2nd-section-wrap.logos {
  padding-bottom: 60px;
}

.header-text {
  color: var(--yellow);
  margin-top: 5px;
  font-family: Circularstd, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 20px;
}

.header-text.dark {
  color: var(--blue-main);
  margin-top: 0;
  margin-bottom: 5px;
}

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

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

.header-wrap.bottom-padding {
  margin-bottom: 0;
}

.tab-link {
  color: var(--blue-main);
  background-color: #f5f6f8;
  border-radius: 0;
  padding-top: 10px;
  padding-bottom: 10px;
  font-family: Circularstd, sans-serif;
  font-size: 16px;
  font-weight: 500;
}

.tab-link.w--current {
  padding-top: 12px;
  padding-bottom: 12px;
}

.tabs-menu {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-flow: wrap;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: center;
  display: block;
}

.tab-link.w--current {
  background-color: var(--blue-main);
  color: var(--white);
  border-radius: 30px;
}

.tab-link.right {
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
}

.tab-link.left {
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
  padding-top: 12px;
  padding-bottom: 12px;
}

.tabs-standard {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.tabs-menu-toggle {
  background-color: #f5f6f8;
  border-radius: 30px;
  align-items: center;
  margin-bottom: 24px;
  padding: 8px;
  display: flex;
}

.tab-button-toggle {
  color: #160042;
  text-align: center;
  letter-spacing: -0.01em;
  background-color: #0000;
  border-radius: 30px;
  padding: 12px 30px;
  font-family: Circularstd, sans-serif;
  font-size: 16px;
  font-weight: 500;
}

.tab-button-toggle.w--current {
  background-color: var(--blue-main);
  color: var(--white);
  font-weight: 500;
  box-shadow: 3px 8px 20px #8d9bbe29;
}

.tab-pane {
  background-color: #f7f9fd00;
  border-radius: 12px;
  width: 100%;
  max-width: 100%;
  padding: 0;
}

.tab-small-heading {
  color: #160042;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}

.paragraph-regular {
  color: var(--blue-main);
  font-size: 16px;
  line-height: 24px;
}

.paragraph-regular.center {
  text-align: center;
  margin-bottom: 0;
}

.paragraph-regular.dark {
  color: #282c25;
  margin-bottom: 0;
}

.paragraph-regular.white {
  color: var(--white);
  margin-bottom: 0;
}

.paragraph-regular.white._50 {
  color: #ffffffb3;
}

.paragraph-regular.white.main {
  font-size: 20px;
  line-height: 150%;
}

.paragraph-regular.medium {
  color: var(--white);
  margin-bottom: 0;
  font-family: Circularstd, sans-serif;
  font-size: 17px;
  font-weight: 500;
}

.paragraph-regular.medium._50 {
  color: #ffffffb3;
}

.tabs-content {
  width: 100%;
  max-width: 100%;
}

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

.features-text-wrap {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  padding-right: 140px;
  display: flex;
}

.features-text-wrap.about {
  padding-right: 100px;
}

.features-text-wrap.pro {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  padding-right: 0;
}

.features-points-wrap {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  flex-flow: column;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.features-point {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  display: flex;
}

.f-icon {
  width: 40px;
}

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

.f-image.pro {
  object-fit: contain;
  height: auto;
}

.f-image.pro.scan,
.f-image.pro.ex {
  background-color: #f4f5f7;
  width: 80%;
}

._3rd-section-wrap {
  padding-top: 120px;
  padding-bottom: 120px;
}

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

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

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

.heading-2.small {
  color: var(--white);
  text-align: left;
  font-size: 30px;
}

.heading-2.popup {
  text-align: center;
  margin-bottom: 30px;
}

.key-f-header {
  grid-column-gap: 290px;
  grid-row-gap: 290px;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
  display: flex;
}

.key-f-header.faq {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 0;
}

.h2-wrap {
  max-width: 550px;
}

.h2-wrap.big {
  max-width: 600px;
}

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

.key-features-card {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  background-color: var(--white);
  border-radius: 10px;
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: 20px;
  transition: all 0.2s;
  display: flex;
  box-shadow: 3px 4px 4px #0003;
}

.key-features-card:hover {
  box-shadow: 8px 10px 0 0 var(--yellow);
}

.key-f-image-wrap {
  background-image: url("../png/insights-s.png");
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 8px;
  width: 100%;
  height: 300px;
}

.key-f-image-wrap._2 {
  background-image: url("../png/effortless-product-search.png");
}

.key-f-image-wrap._3 {
  background-image: url("../png/track-all-your-collectibles.png");
}

.card-heading-wrap {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-flow: column;
  display: flex;
}

.heading-3.white {
  color: var(--white);
}

.partners-header {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
  align-items: center;
  max-width: 815px;
  margin-bottom: 60px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.collaborators-card {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  background-color: #f4f5f7;
  border-radius: 10px;
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: 30px 20px 20px;
  transition: all 0.2s;
  display: flex;
  box-shadow: 3px 4px 4px #0003;
}

.collaborators-card:hover {
  box-shadow: 8px 10px 0 0 var(--yellow);
}

.logos-holder {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  background-color: var(--white);
  border-radius: 10px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 20px;
  display: block;
}

.logos-grid {
  grid-column-gap: 35px;
  grid-row-gap: 35px;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.partners-logo {
  height: 25px;
}

.partners-logo.cdm {
  height: 22px;
}

.partners-logo.ntwrk {
  width: 160px;
}

.partners-logo.ebay {
  height: 40px;
}

.partners-logo.heritage {
  height: 28px;
}

.partners-logo.tcg {
  height: 35px;
}

.partners-logo.fl {
  flex: none;
  height: 60px;
}

.partners-logo.drip {
  height: 40px;
}

.partners-logo.what {
  height: 50px;
}

.paragraph-large {
  letter-spacing: -0.02em;
  margin-bottom: 0;
  font-size: 20px;
  line-height: 32px;
}

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

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

.logo-card {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  justify-content: center;
  align-items: center;
  width: 160px;
  padding: 0;
  display: flex;
}

.logo-card.tcg {
  width: 132px;
}

.logo-card.ebay {
  width: 126px;
}

.logo-card.market {
  width: 240px;
}

.logo-card.heritage {
  width: 160px;
}

.logo-card.pwcc {
  width: 180px;
}

.logo-card.f-live {
  width: 80px;
}

.logo-card.drip {
  width: 100px;
}

.logo-card.what {
  width: 80px;
}

.logo-card.ntwrk {
  width: 260px;
}

.logo-card.psa {
  width: 126px;
}

.logo-card.cgc {
  width: 132px;
}

.logo-card.tag {
  width: 136px;
}

.logo-card.bucket {
  width: 180px;
}

.logo-overlay-left {
  background-image: linear-gradient(to right, #fff, #fff0);
  width: 160px;
  position: absolute;
  inset: 0% auto 0% 0%;
}

.text-color-purple {
  color: #8870d7;
}

.logo-overlay-right {
  background-image: linear-gradient(270deg, #fff, #fff0);
  width: 160px;
  position: absolute;
  inset: 0% 0% 0% auto;
}

.logo-button-group {
  align-items: center;
  margin-top: 32px;
  display: flex;
}

.logo-ticker {
  grid-column-gap: 40px;
  flex: none;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  overflow: hidden;
}

.button-outline {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  color: #080808;
  text-align: center;
  letter-spacing: -0.02em;
  background-color: #fff;
  border: 1px solid #ebebeb;
  border-radius: 8px;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 12px 32px;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  display: inline-block;
}

.logo-ticker-group {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  display: flex;
}

.loop-wrapper {
  align-items: center;
  min-height: 100px;
  margin-top: 0;
  margin-bottom: 0;
  display: flex;
  position: relative;
  overflow: hidden;
}

.logo-divider-a {
  background-color: #e4e4e7;
  width: 1px;
  height: 32px;
}

.logo-ticker-code {
  display: none;
}

.wrap-centre {
  text-align: center;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.section-large {
  padding: 120px 5%;
  position: relative;
}

.section-large.background-gray {
  background-color: #f5f5f5;
}

.ambassadors-card {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  background-color: #f4f5f7;
  border-radius: 10px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 24px;
  transition: all 0.2s;
  display: flex;
  box-shadow: 3px 4px 4px #0003;
}

.ambassadors-card:hover {
  box-shadow: 8px 10px 0 0 var(--yellow);
}

.image-wrap {
  background-image: url("../webp/small-mockup_1small%20mockup.webp");
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 8px;
  width: 100%;
  height: 300px;
}

.ambassadors-image {
  aspect-ratio: auto;
  object-fit: contain;
  background-image: url("../webp/dondiego-p-500-1_1-p-500%201.webp");
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: contain;
  width: 100%;
  height: 300px;
}

.ambassadors-image._2 {
  background-image: url("../webp/image-28_1image%2028.webp");
}

.ambassadors-image._3 {
  background-image: url("../webp/image-29_1image%2029.webp");
}

.ambassadors-image._4 {
  background-image: url("../webp/gin-1_1gin%201.webp");
}

.ambassadors-image._6 {
  background-image: url("../webp/juice-1_1juice%201.webp");
}

.ambassadors-image._5 {
  background-image: url("../webp/ruxin34-1-1_1ruxin34-1%201.webp");
}

.ambassador-cta {
  background-color: var(--blue-main);
  border-radius: 24px;
  margin-top: 90px;
  padding: 60px;
}

.ambassador-cta._2 {
  justify-content: space-between;
  align-items: stretch;
  margin-top: 120px;
  padding: 10px 0;
  display: flex;
  overflow: hidden;
}

.ambassador-cta.hide {
  display: none;
}

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

.ambassador-cta-grid._1-colomn {
  grid-template-columns: 1fr;
}

.ambassador-text {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  align-items: flex-start;
  display: flex;
}

.about-section-wrap {
  padding-top: 120px;
  padding-bottom: 120px;
}

.about-section-wrap.ambassodors {
  padding-top: 80px;
}

.about-grid {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-auto-flow: row dense;
}

.about-colomn-2 {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-flow: column;
  display: flex;
}

.about-image {
  object-fit: fill;
  background-image: url("../webp/rectangle-50.jpg_1rectangle-50.jpg.webp");
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 12px;
  width: 700px;
  height: 390px;
}

.about-image._2 {
  background-image: url("../webp/img_1img.webp");
}

.about-image._3 {
  background-image: url("../webp/img-1_1img-1.webp");
}

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

.about-sub-card {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  background-color: var(--yellow);
  border-radius: 10px;
  flex-flow: column;
  align-items: flex-start;
  padding: 30px 24px;
  display: flex;
}

.about-sub-card.blue-bg {
  background-color: var(--blue-2);
}

.about-sub-card.grey-bg {
  background-color: #cdd2e8;
}

.section-large-2 {
  padding: 120px 5%;
  position: relative;
}

.faq-title-wrapper {
  color: #160042;
  white-space: normal;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-top: 4px;
  margin-bottom: 4px;
  display: flex;
}

.faq-toggle {
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0;
  display: flex;
}

.faq-toggle:hover {
  color: #338cff;
}

.grid-one-column {
  grid-column-gap: 40px;
  grid-row-gap: 24px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  width: 700px;
}

.faq-icon-square {
  background-color: #f7f9fd;
  border-radius: 4px;
  justify-content: center;
  align-items: center;
  width: 40px;
  min-width: 40px;
  height: 40px;
  min-height: 40px;
  display: flex;
}

.paragraph-regular-bold {
  letter-spacing: -0.03em;
  font-family: Circularstd, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}

.faq-content {
  background-color: #0000;
  width: 100%;
  display: block;
  position: static;
  overflow: hidden;
}

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

.flex-wrapper-centre {
  z-index: 5;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 700px;
  margin-bottom: 48px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}

.faq-item-line {
  border: 1px solid #e4e6f1;
  border-radius: 10px;
  padding: 28px 32px;
  transition: all 0.3s;
  display: block;
}

.faq-content-wrapper {
  width: 100%;
  max-width: 90%;
  line-height: 36px;
}

.paragraph-regular-2 {
  letter-spacing: -0.02em;
  font-size: 16px;
  line-height: 24px;
}

.container-x-small {
  width: 100%;
  max-width: 840px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.faq-arrow {
  color: #6b7094;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  display: flex;
}

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

.main-cta-text {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  padding-top: 60px;
  padding-bottom: 60px;
  padding-left: 60px;
  display: flex;
}

.main-cta-mockup {
  background-image: url("../png/cti-image.png");
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  width: 50%;
  height: 400px;
}

.footer-wrap {
  padding-top: 80px;
  padding-bottom: 40px;
}

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

.f-grid-1 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
}

.top-colomn-left {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.top-colomn-left.links {
  grid-column-gap: 140px;
  grid-row-gap: 140px;
  justify-content: flex-start;
  align-items: flex-start;
}

.top-colomn-right {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.top-colomn-right.fotter-cta {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
}

.social-link-box {
  width: 30px;
  height: 30px;
}

.seperator {
  background-color: #ffffff1c;
  height: 1px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.fotter-links-block {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.f-links-block {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: column;
  align-items: flex-start;
  display: flex;
}

.footer-link {
  color: var(--white);
  font-size: 15px;
  text-decoration: none;
}

.pop-up-form-wrap {
  z-index: 10000;
  background-color: #00000080;
  justify-content: center;
  align-items: center;
  display: none;
  position: fixed;
  inset: 0%;
}

.pop-up-form {
  background-color: var(--white);
  border-radius: 30px;
  flex-flow: column;
  width: 55vw;
  max-width: 70vw;
  padding: 75px 40px;
  display: flex;
  position: relative;
}

.fields-wrap {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  justify-content: space-between;
  display: flex;
}

.text-field {
  border-radius: 14px;
  min-height: 56px;
  margin-bottom: 34px;
  padding-left: 20px;
  padding-right: 20px;
}

.text-field.text {
  min-height: 130px;
  padding-top: 20px;
  padding-left: 20px;
  padding-right: 20px;
}

.text-field.search {
  border-radius: 30px;
  width: 440px;
  margin-bottom: 0;
}

.cross {
  opacity: 0.39;
  cursor: pointer;
  width: 24px;
  height: 24px;
  position: absolute;
  inset: 20px 20px auto auto;
}

.nav-menu {
  justify-content: center;
  align-items: center;
  display: flex;
}

.background-video {
  height: 100%;
}

.dark-span {
  color: var(--blue-main);
  font-family: Circularstd, sans-serif;
  font-size: 17px;
  font-weight: 700;
}

.hero-grid {
  grid-template-rows: auto;
  place-items: center;
}

.mobile-mockup {
  width: 350px;
}

.mobile-mockup.pro {
  width: 400px;
}

.yellow-span {
  color: var(--yellow);
}

.yellow-span.mobile-only {
  color: var(--white);
}

.search-wrapper {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  justify-content: flex-start;
  align-items: center;
  margin-top: 46px;
  margin-bottom: 40px;
  display: flex;
}

.search-wrapper.hide {
  display: block;
}

.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 {
  justify-content: flex-start;
  align-items: center;
  display: flex;
  position: relative;
}

.search-button {
  border: 1px none var(--blue-main);
  background-color: var(--blue-main);
  color: var(--white);
  border-radius: 30px;
  flex: none;
  margin-top: 1px;
  margin-bottom: 1px;
  margin-right: 1px;
  padding: 18px 40px;
  font-size: 15px;
  transition: all 0.2s;
  position: absolute;
  inset: 0% 0% 0% auto;
}

.search-button:hover {
  background-color: var(--blue-main);
  color: var(--white);
}

.search-button.white {
  background-color: var(--white);
  color: var(--blue-main);
}

.search-button.white:hover {
  color: var(--white);
  background-color: #fff0;
}

.search-button.blue {
  border-color: var(--blue-main);
  background-color: var(--blue-main);
  color: var(--white);
}

.search-button.blue:hover {
  border-color: var(--blue-main);
  background-color: var(--white);
  color: var(--blue-main);
}

.search-button.blue.submiit {
  width: 100%;
}

.search-button.blue-outline {
  border-color: var(--blue-main);
  color: var(--blue-main);
}

.search-button.blue-outline:hover {
  background-color: var(--blue-main);
  color: var(--white);
}

.search-button.footer {
  color: var(--white);
  background-color: #ffffff1a;
  border-color: #fff0;
}

.search-button.footer:hover {
  border-color: var(--white);
  background-color: var(--white);
  color: var(--blue-main);
}

.pro-link {
  margin-left: 20px;
}

.search-input {
  border-radius: 30px;
  width: 440px;
  min-height: 56px;
  margin-bottom: 0;
  padding-left: 20px;
  padding-right: 20px;
  position: relative;
}

.search-input.text {
  min-height: 130px;
  padding-top: 20px;
  padding-left: 20px;
  padding-right: 20px;
}

.search-input.search {
  border-radius: 30px;
  width: 440px;
  margin-bottom: 0;
}

.pro-body {
  background-color: #191b35;
}

.pro-head-wrap {
  position: relative;
}

.yello-heading-bg {
  position: absolute;
  inset: 0% auto auto 0%;
}

.f-logo-group {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

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

.f-logo-gradient-r {
  z-index: 5;
  background-image: linear-gradient(267deg, #191b35, #191b3580 34%, #191b3540 71%, #191b3500);
  width: 140px;
  position: absolute;
  inset: 0% 0% 0% auto;
}

.f-logo-css {
  display: block;
}

.f-logo-cell {
  background-color: #f3f5fb00;
  border-radius: 6px;
  justify-content: center;
  align-items: center;
  min-width: 140px;
  min-height: 96px;
  margin-left: 14px;
  margin-right: 14px;
  padding: 0 24px;
  transition: background-color 0.3s;
  display: flex;
}

.f-logo-cell:hover {
  background-color: #e4e6f100;
}

.f-logo-carousel-wrap {
  background-color: #fff0;
  border-radius: 0;
  align-items: center;
  min-height: 104px;
  margin-left: auto;
  margin-right: auto;
  padding: 32px;
  display: none;
  position: relative;
  overflow: hidden;
}

.f-logo-gradient-l {
  z-index: 5;
  background-image: linear-gradient(90deg, #191b35, #191b35 0%, #191b3580 25%, #191b3540 60%, #191b3500);
  width: 140px;
  position: absolute;
  inset: 0% auto 0% 0%;
}

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

.f-logo-carousel {
  flex: none;
  display: flex;
}

.section-header.pricing {
  margin-bottom: 80px;
}

.features-container {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  flex-flow: column;
  align-items: stretch;
  max-width: 1160px;
  margin-top: 100px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.features-grid {
  grid-column-gap: 190px;
  grid-row-gap: 190px;
  grid-template-rows: auto;
  margin-top: 20px;
}

._80px-padding {
  padding-top: 80px;
}

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

.pricing-row-grid.gray {
  background-color: #5f6fb414;
  border-radius: 8px;
}

.button-wrap {
  flex-direction: column;
  width: 100%;
  display: flex;
}

.pricing-radio {
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.paragraph-regular-3 {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.7;
}

.paragraph-regular-3.text-gray-900 {
  color: var(--white);
  font-size: 17px;
  font-weight: 400;
}

.h2-heading {
  letter-spacing: -0.02em;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 56px;
  line-height: 1.2;
}

.pricing-radio-wrap {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  border: 1px solid #f0f0f0;
  border-radius: 12px;
  flex-direction: column;
  align-items: flex-start;
  padding: 16px;
  display: flex;
}

.radio-dot {
  background-color: #fff;
  border-radius: 6px;
  flex: none;
  width: 6px;
  height: 6px;
}

.block {
  margin-bottom: 20px;
}

.pricing-table {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-direction: column;
  display: flex;
}

.max-width-medium {
  width: 100%;
  max-width: 536px;
}

.label-small {
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 0;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.75;
}

.pricing-title {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  text-align: center;
  border-radius: 12px;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 24px 32px 32px;
  display: flex;
}

.pricing-title.black {
  color: #fff;
  background-color: #000;
  margin-top: -20px;
  padding-top: 44px;
}

.pricing-title.left {
  justify-content: flex-start;
  align-items: flex-start;
}

.pricing-table-cell {
  justify-content: center;
  align-items: center;
  height: 56px;
  display: flex;
}

.button-primary {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  color: #fff;
  text-align: center;
  background-color: #292929;
  border-radius: 10px;
  flex-direction: row;
  flex: none;
  justify-content: center;
  align-items: center;
  padding: 6px 16px;
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  text-decoration: none;
  transition: background-color 0.2s;
  display: flex;
  box-shadow: inset 1px 1px 0.25px #ffffff1f, inset -1px 1px 0.25px #ffffff1f, 0 0 0 1px #000, 0 1px 2px #000000a3;
}

.button-primary:hover {
  background-color: #141414;
}

.text-span-strong {
  color: #000;
  font-weight: 500;
}

.label-regular {
  color: var(--white);
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7;
}

.wrap-v-xsmall {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-direction: column;
  justify-content: space-between;
  display: flex;
}

.pricing-radio-badge {
  color: #141414;
  background-color: #f5f5f5;
  border-radius: 40px;
  padding: 3px 6px;
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
}

.sub-heading-regular {
  color: var(--white);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
}

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

.pricing-title-cell {
  background-color: #5f6fb400;
  align-items: center;
  padding-top: 16px;
  padding-bottom: 16px;
  padding-left: 20px;
  display: flex;
}

.button-secondary {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  color: #fff;
  text-align: center;
  background-color: #ff4b0f;
  background-image: linear-gradient(#ffffff3d, #0000 50%);
  border-radius: 8px;
  flex-direction: row;
  flex: none;
  justify-content: center;
  align-items: center;
  padding: 6px 12px;
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  transition: all 0.5s cubic-bezier(0.6, 0.6, 0, 1);
  box-shadow: 0 0 0 1px #ff4b0f, 0 1px 2px #ff4b0fa3, inset 1px 1px 0.25px #ffffff1f, inset -1px 1px 0.25px #ffffff1f;
}

.badge {
  color: #000;
  background-color: #fff;
  border-radius: 99px;
  padding: 4px 12px;
  font-size: 12px;
  line-height: 20px;
  display: flex;
  box-shadow: 0 0 0 1px #0000000f, 0 1px 2px #0000000f;
}

.pricing-table-wrapper {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  color: var(--white);
  background-color: #191b35;
  border: 1px solid #e5e7eb33;
  border-radius: 24px;
  flex-direction: column;
  padding: 8px;
  display: flex;
  box-shadow: 0 1px 2px #0000000f, 0 0 0 1px #0000000f;
}

.pricing-title-wrapper {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  text-align: center;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 584px;
  margin-bottom: 56px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.pricing-radio-button {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  color: #000;
  cursor: pointer;
  align-items: center;
  display: flex;
}

.pricing-cost {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-direction: row;
  align-items: center;
  display: flex;
}

.pricing-cost.monthly {
  justify-content: center;
  align-items: center;
}

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

.paragraph-small {
  margin-bottom: 0;
  font-size: 12px;
  line-height: 1.7;
}

.paragraph-small.text-gray-400 {
  color: #8f8f8f;
}

.icon-regular {
  flex: none;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  transition: color 0.2s;
  display: none;
}

.pricing-radio-deactive {
  z-index: 0;
  border: 1px solid #f5f5f5;
  border-radius: 20px;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  display: flex;
  position: absolute;
  box-shadow: 0 0 0 1px #f0f0f0, 0 1px 2px #e3e3e3;
}

.h5-heading {
  letter-spacing: -0.02em;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.25;
}

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

.pricing-radio-active {
  z-index: 2;
  background-color: #000;
  border-radius: 20px;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  display: flex;
  position: relative;
}

.pricing-radio-title {
  padding-left: 24px;
}

.pricing-section-wrap {
  padding-top: 140px;
  padding-bottom: 140px;
}

.tick-cross-icon {
  width: 24px;
  height: 24px;
}

.body-wrapper {
  position: relative;
  overflow: hidden;
}

.blurr-left {
  opacity: 1;
  filter: blur(160px);
  background-color: #ffbd59;
  border-radius: 100%;
  width: 350px;
  height: 350px;
  position: absolute;
  inset: 4% auto auto -6%;
}

.blurr-left._2 {
  top: 38%;
}

.blurr-left._3 {
  inset: auto auto 30% 0%;
}

.bllurr-right {
  opacity: 1;
  filter: blur(160px);
  background-color: #ffbd59;
  border-radius: 100%;
  width: 350px;
  height: 350px;
  position: absolute;
  inset: 8% 0% auto auto;
}

.bllurr-right._2 {
  top: 45%;
}

.bllurr-right._3 {
  inset: auto 0% 15% auto;
}

.title-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  text-align: center;
  flex-direction: column;
  align-items: center;
  max-width: 858px;
  margin-bottom: 64px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.pricing-sectioni {
  padding: 96px 5%;
  position: relative;
}

.pricing-card-heading {
  padding: 12px;
}

.max-width-small {
  max-width: 418px;
}

.icon-small {
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  display: flex;
}

.pricing-review-rating {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  align-items: center;
  display: flex;
}

.pricing-feature-item {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  align-items: flex-start;
  display: flex;
}

.paragraph-regular-4 {
  margin-bottom: 0;
  font-size: 16px;
  line-height: 28px;
}

.paragraph-regular-4.text-color-gray-700 {
  color: var(--dark-text);
}

.paragraph-regular-4.text-color-gray-700.hide {
  opacity: 0;
}

.paragraph-regular-4.text-color-gray-600 {
  color: #525f75;
}

.pricing-price-wrapper {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  align-items: center;
  display: flex;
}

.pricing-card-top {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-direction: column;
  display: flex;
}

.h2-heading-2 {
  color: var(--white);
  letter-spacing: 0;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Circularstd, sans-serif;
  font-size: 56px;
  font-weight: 700;
  line-height: 72px;
}

.button-background {
  pointer-events: none;
  object-fit: fill;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.pricing-logo-title {
  flex-direction: column;
  align-items: center;
  font-weight: 500;
  display: flex;
}

.pricing-button-wrapper {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  background-color: #1f223f;
  border: 1px solid #e5e7eb33;
  border-radius: 12px;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  display: flex;
}

.pricing-button-wrapper.featured {
  background-color: #1f223f;
  border-style: solid;
  border-color: #e5e7eb33;
}

.pricing-logo {
  width: 32px;
  height: 32px;
}

.text-color-orange {
  color: #fe5b25;
}

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

.overline {
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  line-height: 20px;
}

.pricing-card-bottom {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  border-top: 0.5px solid #e5e7eb33;
  flex-direction: column;
  padding: 20px 12px 12px;
  display: none;
}

.pricing-feature-text {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  flex-direction: column;
  display: flex;
}

.pricing-feature-list {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  padding: 12px;
  display: grid;
}

.h5-heading-2 {
  color: var(--white);
  letter-spacing: 0;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Circularstd, sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 48px;
}

.paragraph-small-2 {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 20px;
}

.paragraph-small-2.text-color-gray-600 {
  color: var(--white);
}

.paragraph-small-2.text-color-orange-950 {
  color: var(--gray);
}

.pricing-logo-row {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  display: flex;
}

.pricing-card {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  background-color: #191b35;
  border: 0.5px solid #e5e7eb33;
  border-radius: 12px;
  flex-direction: column;
  justify-content: space-between;
  padding: 12px 12px 20px;
  transition: all 0.2s;
  display: flex;
  box-shadow: 0 1px 2px #23272e14;
}

.pricing-card:hover {
  box-shadow: 8px 8px 0 0 var(--yellow);
}

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

.pricing-logos {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  text-align: center;
  flex-direction: column;
  align-items: center;
  max-width: 638px;
  margin-top: 64px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.pricing-star {
  background-color: #fdf9ed;
  border-top: 0.5px solid #f8edce;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  padding: 4px;
  display: flex;
}

.button-outline-large {
  color: #23272f;
  background-color: #fff;
  border: 2px solid #d5d9e2;
  border-top-width: 1px;
  border-radius: 52px;
  justify-content: center;
  align-items: center;
  padding: 12px 32px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  display: flex;
  box-shadow: 0 1px 2px #23272e14;
}

.button-outline-large.w--current {
  background-color: #344256;
  border-color: #48566a;
}

.icon-x-small {
  flex: none;
  justify-content: center;
  align-items: center;
  width: 16px;
  height: 16px;
  display: flex;
}

.button-text {
  z-index: 1;
  position: relative;
}

.paragraph-regular-bg {
  margin-bottom: 0;
  font-size: 16px;
  line-height: 28px;
}

.paragraph-regular-bg.text-weight-bold {
  font-weight: 700;
}

.paragraph-regular-bg.text-weigh-medium {
  font-weight: 500;
}

.button-primary-rounded-large {
  color: #fff;
  background-color: #23272f;
  border: 2px solid #23272f;
  border-radius: 52px;
  justify-content: center;
  align-items: center;
  padding: 12px 32px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: box-shadow 0.3s;
  display: flex;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 12px -2px #fe5b2500, 0 0 12px -2px #a355f700, 0 0 4px 2px #23272e3d, inset 0 2px 2px #ffffff3d;
}

.button-primary-rounded-large:hover {
  box-shadow: 0 0 12px -2px #fe5b25, 0 0 12px -2px #a355f7, 0 0 4px 2px #23272e3d, inset 0 2px 2px #ffffff3d;
}

.button-primary-rounded-large.w--current {
  background-color: #344256;
  border-color: #48566a;
}

.h6-heading {
  letter-spacing: -0.5px;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 24px;
  font-weight: 600;
  line-height: 40px;
}

.pricing-check {
  background-color: #2c8d3e00;
  border: 1px #2c8d3e;
  border-radius: 100%;
  padding: 2px;
}

.yellow-span-small {
  color: var(--yellow);
  font-family: Circularstd Book, sans-serif;
  font-size: 24px;
  font-weight: 400;
}

.price-section-1 {
  display: none;
  position: relative;
}

.price-section-1.grey {
  background-color: var(--gray);
}

.price-section-1.blue {
  background-color: var(--blue-main);
}

.price-section-1.blue.about-section,
.price-section-1.hide {
  display: none;
}

.price-section-1.hero {
  background-color: #191b35;
}

.price-section-1.hero.pro {
  background-color: #191b3500;
}

.main-body-wrap {
  overflow: hidden;
}

@media screen and (min-width: 1280px) {
  .section.hero {
    background-color: #191b35;
  }

  .hero-container {
    background-color: #191b3500;
  }

  .nav-buttons-wrap.desktop,
  .button.blue-outline.hide {
    display: none;
  }

  .key-f-header.center {
    justify-content: space-between;
    align-items: center;
  }

  .main-cta-mockup {
    background-image: url("../avif/iphone15pro-2_1iphone15pro-2.avif");
  }

  .top-colomn-left.links {
    justify-content: flex-start;
    align-items: flex-start;
  }

  .mobile-mockup {
    width: 460px;
  }

  .yellow-span {
    color: var(--yellow);
  }

  .price-section-1.hero {
    background-color: #191b35;
  }
}

@media screen and (min-width: 1920px) {
  .mobile-mockup.pro {
    width: 450px;
  }

  .blurr-left,
  .blurr-left._3 {
    left: 12%;
  }

  .bllurr-right {
    right: 15%;
  }

  .bllurr-right._3 {
    right: 10%;
  }
}

@media screen and (max-width: 1280px) {
  .section.hero {
    background-color: var(--blue-main);
  }

  .container {
    max-width: 720px;
  }

  .container.nav-container {
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .hero-image-layover {
    background-image: linear-gradient(#0000, #00000080);
    background-position: 0 0;
    background-repeat: repeat;
    background-size: auto;
  }

  .hero-container {
    padding-top: 40px;
    padding-bottom: 40px;
  }

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

  .nav-link.pro {
    text-align: left;
    background-position: 3%;
  }

  .brand-logo {
    width: 220px;
  }

  .nav-buttons-wrap.desktop {
    display: none;
  }

  .nav-buttons-wrap.mobile {
    flex-flow: column;
    justify-content: center;
    align-items: flex-start;
    margin-left: 0;
    display: none;
  }

  .hero-heading-wrap {
    max-width: 100%;
  }

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

  .hero-buttons-wrap {
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .text-block.copyright-text {
    text-align: left;
  }

  ._2nd-section-wrap {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  ._2nd-section-wrap.logos {
    padding-bottom: 0;
  }

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

  .features-text-wrap.pro {
    text-align: center;
    justify-content: center;
    align-items: center;
  }

  .features-image-wrap {
    text-align: center;
  }

  .features-points-wrap {
    justify-content: flex-start;
    align-items: center;
  }

  .f-image.pro.scan,
  .f-image.pro.ex {
    width: 50%;
  }

  ._3rd-section-wrap {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .key-f-header {
    grid-column-gap: 100px;
    grid-row-gap: 100px;
  }

  .h2-wrap {
    max-width: none;
  }

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

  .key-f-image-wrap {
    background-position: 50% 0;
    height: 520px;
  }

  .ambassadors-image {
    height: 300px;
  }

  .ambassador-cta {
    margin-top: 60px;
    padding-left: 40px;
    padding-right: 40px;
  }

  .ambassador-cta._2 {
    flex-flow: column;
    justify-content: space-between;
    align-items: stretch;
    margin-top: 60px;
  }

  .about-section-wrap {
    padding-top: 80px;
    padding-bottom: 80px;
  }

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

  .faq-content {
    width: 100%;
  }

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

  .main-cta-mockup {
    background-position: 50% 0;
    width: 100%;
    height: 400px;
  }

  .top-colomn {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    flex-flow: column;
    justify-content: space-between;
    align-items: flex-start;
  }

  .menu-button {
    padding-right: 0;
    font-size: 28px;
  }

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

  .nav-menu {
    background-color: var(--blue-main);
    justify-content: flex-start;
    align-items: center;
    width: 728px;
    max-width: 728px;
    padding-bottom: 40px;
    padding-left: 25px;
  }

  .mobile-mockup {
    width: 320px;
  }

  .mobile-mockup.pro {
    width: 330px;
  }

  .yellow-span {
    color: var(--yellow);
  }

  .search-wrapper {
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .pro-link {
    text-align: left;
    flex: none;
    width: 100%;
    margin-top: 20px;
    margin-bottom: 40px;
    margin-left: 0;
  }

  .f-logo-group {
    margin-top: 20px;
  }

  .f-logo-cell {
    min-width: 100px;
    min-height: auto;
    padding-left: 0;
    padding-right: 0;
  }

  .f-logo-carousel-wrap {
    width: 95%;
  }

  .features-container {
    max-width: 728px;
    margin-top: 60px;
  }

  .features-grid {
    grid-column-gap: 80px;
    grid-row-gap: 80px;
    grid-template-columns: 1fr;
    margin-top: 10px;
  }

  .pricing-row-grid {
    width: 1064px;
  }

  .pricing-row-grid.gray.last-item {
    border-bottom-right-radius: 16px;
    border-bottom-left-radius: 16px;
  }

  .pricing-title.black {
    margin-top: 0;
    padding-top: 24px;
  }

  .button-primary {
    display: flex;
  }

  .button-secondary {
    max-width: 150px;
    display: flex;
  }

  .pricing-table-wrapper {
    overflow: auto;
  }

  .pricing-section-wrap {
    padding-bottom: 60px;
  }

  .blurr-left {
    filter: blur(120px);
    width: 220px;
    height: 220px;
  }

  .blurr-left._2 {
    left: -19%;
  }

  .bllurr-right {
    filter: blur(110px);
    width: 220px;
    height: 220px;
    right: -11%;
  }

  .paragraph-regular-4.text-color-gray-700.hide {
    display: none;
  }

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

  .pricing-feature-list {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .price-section-1.hero {
    background-color: var(--blue-main);
  }
}

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

  .brand.w--current {
    padding-left: 0;
  }

  .brand-logo {
    width: 200px;
  }

  .nav-buttons-wrap.mobile {
    margin-left: 0;
  }

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

  .download-links-section.desktop {
    display: none;
  }

  .download-links-section.mobile {
    display: flex;
  }

  .download-buttons-wrap {
    justify-content: center;
    align-items: flex-end;
  }

  .ratings-wrap {
    justify-content: center;
    align-items: center;
  }

  ._2nd-section-wrap,
  ._2nd-section-wrap.logos {
    padding-top: 60px;
  }

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

  .tabs-menu-toggle {
    flex-flow: row;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 40px;
  }

  .tab-button-toggle {
    flex: 1;
    width: 100%;
  }

  .features-text-wrap {
    padding-right: 40px;
  }

  .features-text-wrap.about {
    padding-right: 0;
  }

  .features-text-wrap.pro {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }

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

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

  .key-f-header {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    flex-flow: column;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
  }

  .key-f-image-wrap {
    height: 400px;
  }

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

  .ambassadors-image {
    height: 260px;
  }

  .ambassadors-image._2 {
    background-position: 50%;
    height: 260px;
  }

  .ambassadors-image._3,
  .ambassadors-image._4 {
    background-position: 50%;
  }

  .ambassadors-image._6 {
    background-position: 50%;
    height: 260px;
  }

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

  .about-image {
    width: 100%;
  }

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

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

  .grid-one-column {
    width: auto;
  }

  .main-cta-text {
    padding-left: 40px;
  }

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

  .nav-menu {
    width: 100%;
    max-width: 100%;
  }

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

  .mobile-mockup {
    width: 300px;
  }

  .search-wrapper {
    text-align: center;
    justify-content: center;
    align-items: center;
  }

  .pro-link {
    margin-bottom: 40px;
  }

  .yello-heading-bg {
    width: 25%;
    max-width: 90%;
    left: 16%;
  }

  .f-logo-cell {
    min-width: 80px;
  }

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

  .section-header.pricing {
    margin-bottom: 60px;
  }

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

  .pricing-row-grid {
    width: 930px;
  }

  .button-secondary {
    max-width: 100%;
  }

  .h5-heading {
    font-size: 28px;
    font-weight: 400;
  }

  .pricing-section-wrap {
    padding-top: 100px;
  }

  .blurr-left {
    filter: blur(100px);
    width: 180px;
    height: 180px;
    left: -17%;
  }

  .pricing-sectioni {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .pricing-button-wrapper.featured {
    flex-flow: column;
    justify-content: space-between;
    align-items: flex-start;
  }

  .pricing-feature-list {
    padding-left: 0;
    padding-right: 0;
  }
}

@media screen and (max-width: 479px) {
  .section {
    overflow: hidden;
  }

  .container {
    max-width: 90vw;
  }

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

  .hero-container {
    padding-top: 60px;
  }

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

  .nav-link.pro {
    background-position: 50%;
  }

  .brand.w--current {
    padding-left: 0;
  }

  .nav-buttons-wrap.mobile {
    justify-content: center;
    align-items: center;
  }

  .button {
    text-align: center;
  }

  .button.white {
    text-align: center;
    padding-top: 12px;
    padding-bottom: 12px;
  }

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

  .hero-heading-wrap {
    max-width: 100%;
  }

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

  .heading-1.small {
    font-size: 30px;
  }

  .heading-1.small.left {
    text-align: left;
  }

  .hero-buttons-wrap {
    flex-flow: row;
    justify-content: flex-start;
    align-items: stretch;
  }

  .download-buttons-wrap,
  .ratings-wrap {
    justify-content: center;
    align-items: center;
  }

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

  ._2nd-section-wrap {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  ._2nd-section-wrap.logos {
    padding-top: 60px;
  }

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

  .header-wrap {
    margin-bottom: 10px;
  }

  .tabs-menu-toggle {
    flex-flow: column;
    flex: none;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 4px;
  }

  .tab-button-toggle {
    flex: none;
    padding-left: 20px;
    padding-right: 20px;
    font-size: 14px;
    line-height: 18px;
  }

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

  .paragraph-regular.white.left {
    text-align: left;
  }

  .paragraph-regular.white.main {
    font-size: 18px;
  }

  .paragraph-regular.left {
    text-align: left;
  }

  .features-text-wrap,
  .features-text-wrap.about {
    padding-right: 0;
  }

  .features-text-wrap.pro {
    grid-column-gap: 5px;
    grid-row-gap: 5px;
  }

  .features-point {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
  }

  .f-image.pro {
    height: 300px;
  }

  .f-image.pro.scan,
  .f-image.pro.ex {
    width: 250px;
    height: auto;
  }

  ._3rd-section-wrap {
    padding-top: 40px;
    padding-bottom: 40px;
  }

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

  .key-f-image-wrap {
    height: 280px;
  }

  .card-heading-wrap {
    justify-content: center;
    align-items: center;
  }

  .heading-3.white {
    font-size: 30px;
  }

  .partners-header {
    margin-bottom: 40px;
  }

  .partners-header._2 {
    margin-bottom: 0;
  }

  .logo-card {
    width: 324px;
  }

  .button-outline {
    flex: none;
    width: 100%;
  }

  .ambassadors-card {
    justify-content: flex-start;
    align-items: center;
  }

  .ambassadors-image {
    height: 200px;
  }

  .ambassadors-image._2,
  .ambassadors-image._6 {
    height: 240px;
  }

  .ambassador-cta {
    margin-top: 40px;
    padding: 40px 20px;
  }

  .ambassador-cta._2 {
    margin-top: 40px;
    padding-bottom: 20px;
  }

  .cta-heading-wrap {
    margin-bottom: 10px;
  }

  .ambassador-text {
    justify-content: flex-start;
    align-items: flex-start;
  }

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

  .about-image {
    height: 300px;
  }

  .faq-item-line {
    padding: 24px;
  }

  .main-cta-text {
    padding-bottom: 40px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .main-cta-mockup {
    background-position: 50%;
    background-size: cover;
    height: 350px;
  }

  .top-colomn {
    justify-content: space-between;
    align-items: center;
  }

  .top-colomn-left {
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
  }

  .top-colomn-left.links {
    grid-column-gap: 50px;
    grid-row-gap: 50px;
  }

  .top-colomn-right.fotter-cta {
    justify-content: center;
    align-items: center;
  }

  .f-links-block {
    justify-content: flex-start;
    align-items: center;
  }

  .text-field.search {
    width: 90vw;
    padding-left: 15px;
  }

  .nav-menu {
    padding-left: 0;
  }

  .mobile-mockup,
  .mobile-mockup.pro {
    width: 100%;
  }

  .yellow-span.mobile-only {
    color: var(--yellow);
  }

  .search-wrapper {
    flex-flow: row;
    justify-content: space-between;
    align-items: center;
  }

  .search {
    flex: 1;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0;
  }

  .search-button {
    padding-left: 25px;
    padding-right: 25px;
    font-size: 12px;
  }

  .search-button.white,
  .search-button.blue,
  .pro-link {
    text-align: center;
  }

  .search-input {
    width: 100%;
    padding-left: 15px;
  }

  .search-input.search {
    width: 90vw;
    padding-left: 15px;
  }

  .yello-heading-bg {
    width: 35%;
    display: none;
    left: 8%;
  }

  .f-logo-gradient-r {
    width: 40px;
  }

  .f-logo-cell {
    min-width: 50px;
    margin-left: 0;
    margin-right: 0;
  }

  .f-logo-gradient-l {
    width: 40px;
  }

  .section-header.pricing {
    margin-bottom: 40px;
  }

  .features-container {
    grid-column-gap: 35px;
    grid-row-gap: 35px;
    max-width: 100%;
    margin-top: 40px;
  }

  .features-grid {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .pricing-row-grid {
    width: 840px;
  }

  .button-wrap {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
  }

  .button-primary {
    width: 100%;
  }

  .pricing-section-wrap {
    padding-top: 80px;
    padding-bottom: 20px;
  }

  .pricing-price-wrapper {
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
  }

  .pricing-button-wrapper {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    flex-direction: column;
    align-items: stretch;
  }

  .pricing-button-wrapper.featured {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    justify-content: space-between;
    align-items: stretch;
  }

  .pricing-feature-list {
    grid-template-columns: 1fr;
  }

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

  .price-section-1 {
    overflow: hidden;
  }
}

#w-node-_3485bbbe-7a1c-a192-1e62-4f0180777a96-bce23891 {
  place-self: center;
}

#w-node-feec0564-06eb-3e29-0a4a-2356f3ae895a-bce23891 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_3485bbbe-7a1c-a192-1e62-4f0180777a96-0e868932 {
  place-self: center;
}

#w-node-e285dff0-7c2d-ac4d-46ed-c119cdd26d05-0e868932 {
  justify-self: start;
}

#w-node-_6fe72af7-5da0-c7b5-a8be-e5b6e03907f2-0e868932,
#w-node-_95ffb67d-40b8-8021-6f6b-4967ef9eaa0d-0e868932 {
  order: -9999;
}

#w-node-_11c10cd0-1ac4-24de-8cac-837cb1a233b6-0e868932 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_11c10cd0-1ac4-24de-8cac-837cb1a233d4-0e868932 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: stretch;
}

#w-node-_6ee98c9e-d7a4-3024-93f7-f5fb43c9076e-0e868932,
#w-node-_11c10cd0-1ac4-24de-8cac-837cb1a233e5-0e868932,
#w-node-_11c10cd0-1ac4-24de-8cac-837cb1a233e8-0e868932,
#w-node-_11c10cd0-1ac4-24de-8cac-837cb1a233ec-0e868932,
#w-node-_11c10cd0-1ac4-24de-8cac-837cb1a233ef-0e868932,
#w-node-_11c10cd0-1ac4-24de-8cac-837cb1a233f2-0e868932,
#w-node-_11c10cd0-1ac4-24de-8cac-837cb1a233f6-0e868932,
#w-node-_11c10cd0-1ac4-24de-8cac-837cb1a233f9-0e868932,
#w-node-_11c10cd0-1ac4-24de-8cac-837cb1a233fc-0e868932,
#w-node-_11c10cd0-1ac4-24de-8cac-837cb1a23400-0e868932,
#w-node-_11c10cd0-1ac4-24de-8cac-837cb1a23403-0e868932,
#w-node-_11c10cd0-1ac4-24de-8cac-837cb1a23406-0e868932,
#w-node-_11c10cd0-1ac4-24de-8cac-837cb1a23409-0e868932,
#w-node-_11c10cd0-1ac4-24de-8cac-837cb1a2340c-0e868932,
#w-node-_11c10cd0-1ac4-24de-8cac-837cb1a2340f-0e868932,
#w-node-_11c10cd0-1ac4-24de-8cac-837cb1a23411-0e868932,
#w-node-_5b9263e9-4b3e-455a-9501-0ee87f4656cb-0e868932,
#w-node-_5b9263e9-4b3e-455a-9501-0ee87f4656ce-0e868932,
#w-node-_5b9263e9-4b3e-455a-9501-0ee87f4656d1-0e868932,
#w-node-d698c227-6c64-8804-dee0-407039d89797-0e868932,
#w-node-d698c227-6c64-8804-dee0-407039d8979a-0e868932,
#w-node-d698c227-6c64-8804-dee0-407039d8979d-0e868932,
#w-node-b3c1d409-158e-8fb2-c825-8867a529cb22-0e868932,
#w-node-b3c1d409-158e-8fb2-c825-8867a529cb25-0e868932,
#w-node-b3c1d409-158e-8fb2-c825-8867a529cb28-0e868932,
#w-node-abb12bee-ad80-10d1-cc58-33906b5e5a55-0e868932,
#w-node-abb12bee-ad80-10d1-cc58-33906b5e5a58-0e868932,
#w-node-abb12bee-ad80-10d1-cc58-33906b5e5a5b-0e868932,
#w-node-ae8ddbff-8d1e-6ffd-a94a-19dabbd94189-0e868932,
#w-node-ae8ddbff-8d1e-6ffd-a94a-19dabbd9418c-0e868932,
#w-node-ae8ddbff-8d1e-6ffd-a94a-19dabbd9418f-0e868932,
#w-node-aba3a8a4-230a-ac7e-9445-6d97d9fabb1e-0e868932,
#w-node-aba3a8a4-230a-ac7e-9445-6d97d9fabb21-0e868932,
#w-node-aba3a8a4-230a-ac7e-9445-6d97d9fabb24-0e868932,
#w-node-_32b2b240-8aee-2185-3bed-d789a46fc440-0e868932,
#w-node-_32b2b240-8aee-2185-3bed-d789a46fc443-0e868932,
#w-node-_32b2b240-8aee-2185-3bed-d789a46fc446-0e868932,
#w-node-ad9d86ae-0096-f7e3-8037-ffc5700f3520-0e868932,
#w-node-ad9d86ae-0096-f7e3-8037-ffc5700f3523-0e868932,
#w-node-ad9d86ae-0096-f7e3-8037-ffc5700f3526-0e868932,
#w-node-ddf530a0-b83b-1fe1-8b09-a3f42110897a-0e868932,
#w-node-ddf530a0-b83b-1fe1-8b09-a3f42110897d-0e868932,
#w-node-ddf530a0-b83b-1fe1-8b09-a3f421108980-0e868932,
#w-node-bbe174bb-9fd9-87d4-d06a-7545853c4db0-0e868932,
#w-node-bbe174bb-9fd9-87d4-d06a-7545853c4db3-0e868932,
#w-node-bbe174bb-9fd9-87d4-d06a-7545853c4db6-0e868932,
#w-node-cdbe20af-e7d5-09f3-cc1c-5e66f8f7fc6f-0e868932,
#w-node-cdbe20af-e7d5-09f3-cc1c-5e66f8f7fc72-0e868932,
#w-node-cdbe20af-e7d5-09f3-cc1c-5e66f8f7fc75-0e868932,
#w-node-_6d0eea1d-31d8-27a2-5bb7-c722fb772031-0e868932,
#w-node-_6d0eea1d-31d8-27a2-5bb7-c722fb772034-0e868932,
#w-node-_6d0eea1d-31d8-27a2-5bb7-c722fb772037-0e868932,
#w-node-c4666542-db2f-1f6d-8841-44053ce67aaf-0e868932,
#w-node-c4666542-db2f-1f6d-8841-44053ce67ab2-0e868932,
#w-node-c4666542-db2f-1f6d-8841-44053ce67ab5-0e868932,
#w-node-b14e8473-52cb-ebe6-a14d-dc82f0f18eb6-0e868932,
#w-node-b14e8473-52cb-ebe6-a14d-dc82f0f18ee3-0e868932 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (max-width: 991px) {
  #w-node-e285dff0-7c2d-ac4d-46ed-c119cdd26d05-0e868932 {
    justify-self: center;
  }

  #w-node-_6fe72af7-5da0-c7b5-a8be-e5b6e03907f0-0e868932,
  #w-node-_95ffb67d-40b8-8021-6f6b-4967ef9eaa0b-0e868932 {
    order: -9999;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_3485bbbe-7a1c-a192-1e62-4f0180777a96-bce23891,
  #w-node-_3485bbbe-7a1c-a192-1e62-4f0180777a96-0e868932 {
    order: 9999;
    justify-self: center;
  }

  #w-node-_6fe72af7-5da0-c7b5-a8be-e5b6e03907f0-0e868932,
  #w-node-_95ffb67d-40b8-8021-6f6b-4967ef9eaa0b-0e868932 {
    order: -9999;
  }
}

@font-face {
  font-family: "Circularstd";
  src: url("../eot/circularstd-bold.eot") format("embedded-opentype"), url("../ttf/circularstd-bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Circularstd";
  src: url("../ttf/circularstd-black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Circularstd Book";
  src: url("../ttf/circularstd-book.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Circularstd";
  src: url("../ttf/circularstd-medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
