:root {
  --purple: #5f4cf8;
  --paragraph-color: #6872a1;
  --grayish-blue: #f2f3f8;
  --aqua: #4abff1;
  --green: #85c92f;
  --light-paragraph: #d1d9ff;
}

h1 {
  color: var(--purple);
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Quicksand, sans-serif;
  font-size: 64px;
  font-weight: 700;
  line-height: 125%;
}

h2 {
  color: #000;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Quicksand, sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 140%;
}

h3 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
}

p {
  color: var(--paragraph-color);
  margin-bottom: 0;
  font-size: 24px;
  line-height: 150%;
}

.section {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 112px;
  padding-bottom: 112px;
  display: flex;
}

.section.hero {
  background-color: var(--grayish-blue);
  padding-top: 136px;
  overflow: hidden;
}

.section.no-padding-desktop {
  padding-top: 0;
  padding-bottom: 0;
}

.section.relative {
  position: relative;
}

.section.relative.pricing {
  padding-bottom: 0;
}

.section.relative.customers-section {
  padding-top: 212px;
  overflow: hidden;
}

.section.purple {
  background-color: var(--purple);
  padding-top: 10px;
  padding-bottom: 40px;
}

.wide-container {
  width: 100%;
  max-width: 1276px;
  padding-left: 30px;
  padding-right: 30px;
}

.wide-container.center {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.wide-container.purple-background {
  background-color: var(--purple);
  border-radius: 24px;
  padding: 80px 0;
  display: flex;
}

.wide-container.wider {
  max-width: 1340px;
}

.wide-container.narrow {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 1164px;
  display: flex;
}

.heading-1 {
  max-width: 750px;
}

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

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

.hero-paragraph-wrapper {
  text-align: center;
  max-width: 640px;
  margin-top: 16px;
  margin-bottom: 32px;
}

.paragraph {
  font-family: Nunito, sans-serif;
}

.paragraph.light {
  color: var(--light-paragraph);
}

.paragraph.for-buy-sell {
  color: #fff;
  max-width: 560px;
}

.hero-buttons-wrapper {
  grid-column-gap: 10px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  place-items: center;
  margin-top: 60px;
  margin-bottom: 56px;
  display: grid;
}

.hero-buttons-wrapper.for-navigation-bar {
  margin-bottom: 0;
}

.primary-button {
  background-color: var(--purple);
  border-radius: 24px;
  justify-content: center;
  align-items: center;
  padding: 8px 24px;
  text-decoration: none;
  display: flex;
}

.primary-button.paragraph-color {
  background-color: var(--paragraph-color);
}

.primary-button.paragraph-color.wider-on-mobile {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.primary-button.wider-on-mobile {
  border: 1px solid #fff;
}

.primary-button.full-width {
  width: 100%;
}

.primary-button.white {
  background-color: #fff;
  width: auto;
  margin-top: 16px;
}

.button-icon {
  width: 20px;
  height: 20px;
  margin-right: 8px;
}

.button-icon.relative {
  position: relative;
  top: -2px;
}

.button-text {
  color: #fff;
  font-family: Nunito, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 150%;
}

.button-text.purple {
  color: var(--purple);
}

.iphone-container {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.iphone-image {
  z-index: 3;
  position: relative;
}

.iphone-screen-image {
  z-index: 1;
  position: absolute;
}

.category-item {
  z-index: 2;
  background-color: #fff;
  border-radius: 8px;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 152px;
  height: 176px;
  margin-left: 8px;
  margin-right: 8px;
  padding: 12px;
  display: flex;
  position: relative;
}

.category-image {
  width: 40px;
  height: 40px;
}

.category-name {
  color: #000;
  margin-bottom: 8px;
  font-family: Nunito, sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 109%;
}

.category-item-number-text {
  color: #848484;
  font-family: Nunito, sans-serif;
  font-size: 12px;
  line-height: 133%;
}

.category-items-track {
  justify-content: center;
  align-items: center;
  width: 100vw;
  display: flex;
  position: absolute;
  top: 232.5px;
}

.repeatable-category-item-container {
  grid-column-gap: 2px;
  grid-row-gap: 2px;
  justify-content: center;
  align-items: center;
  padding-top: 20px;
  display: flex;
}

.featured-item {
  background-color: #fff;
  border-radius: 8px;
  width: 343px;
  height: 216px;
  margin-left: 12px;
  margin-right: 12px;
  padding: 12px;
}

.featured-item-image {
  margin-bottom: 16px;
}

.name-and-price-container {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.repeatable-featured-item-container {
  justify-content: center;
  align-items: center;
  display: flex;
}

.featured-items-track {
  z-index: 2;
  justify-content: center;
  align-items: center;
  width: 100vw;
  display: flex;
  position: absolute;
  bottom: 152px;
}

.small-device-categories-container, .iphone-image-mobile {
  display: none;
}

.part-container {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
}

.left-part {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 50%;
  padding: 0 40px 0 55px;
  display: flex;
}

.heading-2.white {
  color: #fff;
}

.heading-2.white.for-slider-section {
  text-align: center;
  max-width: 550px;
  font-size: 56px;
  line-height: 129%;
}

.heading-2.for-buy-sell {
  color: #fff;
  font-size: 56px;
  line-height: 129%;
}

.heading-2.bigger {
  font-size: 56px;
  line-height: 129%;
}

.heading-2.bigger.center {
  text-align: center;
  max-width: 550px;
}

.left-part-paragraph-wrapper {
  margin-top: 16px;
  margin-bottom: 32px;
}

.testimonial {
  background-color: #f2f3f8;
  border-radius: 12px;
  width: 100%;
  max-width: 440px;
  padding: 16px;
  display: flex;
}

.testimonial-image {
  object-fit: contain;
  width: 100%;
  position: relative;
  bottom: -6px;
}

.testimonial-content {
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  margin-left: 12px;
  display: flex;
}

.testimonial-image-container {
  border-radius: 4px;
  width: 60px;
  min-width: 60px;
  height: 60px;
  min-height: 60px;
  position: relative;
}

.testimonial-image-container.pink {
  background-color: #f5dad7;
  overflow: hidden;
}

.testimonial-image-container.green {
  background-color: #cee9ac;
}

.testimonial-text {
  color: var(--paragraph-color);
  font-family: Nunito, sans-serif;
  line-height: 129%;
}

.testimonial-name {
  color: #1e1e1e;
  font-family: Nunito, sans-serif;
  font-weight: 800;
  line-height: 114%;
}

.right-part {
  justify-content: flex-end;
  width: 50%;
  padding: 0 55px 0 0;
  display: flex;
}

.social {
  border-radius: 12px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 72px;
  height: 72px;
  margin-left: 12px;
  margin-right: 12px;
  display: flex;
}

.social.blue-1 {
  background-color: #1da1f2;
  margin-left: 12px;
  margin-right: 12px;
}

.social.white {
  background-color: #fff;
}

.social.orange-1 {
  background-color: #ff4500;
}

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

.social.purple-1 {
  background-color: #7289da;
}

.social.red-1 {
  background-color: #e60023;
}

.social.blue-2 {
  background-color: #0a66c2;
}

.social.blue-3 {
  background-color: #016fd0;
}

.social.red-2 {
  background-color: red;
}

.social.blue-4 {
  background-color: #28a0d3;
}

.social.blue-5 {
  background-color: #1434cb;
}

.social.yellow {
  background-color: #f7f447;
}

.socials-container {
  background-color: var(--grayish-blue);
  transform-style: preserve-3d;
  border-radius: 24px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 480px;
  height: 480px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.socials-container.for-mobile {
  display: none;
}

.row {
  justify-content: center;
  align-items: center;
  margin-top: 12px;
  margin-bottom: 12px;
  display: flex;
}

.row.first {
  position: absolute;
}

.row.landscape {
  display: none;
}

.purple-background {
  background-color: var(--purple);
  border-radius: 24px;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 80px;
  display: flex;
}

.website-image-wrapper {
  height: 480px;
}

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

.image.website-image {
  object-fit: scale-down;
}

.purple-left-half {
  align-items: flex-start;
  width: 50%;
  display: flex;
}

.purple-right-half {
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  width: 50%;
  padding-right: 55px;
  display: flex;
}

.purple-right-half-content {
  width: 480px;
}

.wrapper-with-margins {
  margin-top: 16px;
  margin-bottom: 16px;
}

.feature {
  align-items: center;
  margin-top: 16px;
  display: flex;
}

.feature-icon {
  width: 32px;
  height: 32px;
  margin-right: 12px;
}

.small-white-text {
  color: #fff;
  font-family: Nunito, sans-serif;
  font-size: 20px;
  line-height: 160%;
}

.testimonial-type-2 {
  background-color: #fff;
  border-radius: 13px;
  align-items: center;
  width: 352px;
  margin-top: 4.3px;
  margin-bottom: 4.3px;
  padding: 12px 10px;
  display: flex;
}

.testimonial-type-2-image {
  object-fit: cover;
  min-width: 31.5px;
  min-height: 31.5px;
}

.testimonial-type-2-text-content {
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  margin-left: 8px;
  display: flex;
}

.testimonial-type-2-title {
  color: #000;
  font-family: Inter, sans-serif;
  font-size: 14.7px;
  font-weight: 600;
  line-height: 133%;
}

.testimonial-type-2-text {
  color: #000;
  font-family: Inter, sans-serif;
  font-size: 14.7px;
  line-height: 133%;
}

.testimonial-type-2-header {
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  margin-bottom: 2px;
  display: flex;
}

.testimonial-type-2-date {
  color: #3c3c4399;
  font-family: Inter, sans-serif;
  font-size: 12.75px;
  line-height: 138%;
}

.pricing-tabs {
  background-color: var(--grayish-blue);
  border-top: 1px solid #d8d8d8;
  border-bottom: 1px solid #d8d8d8;
  border-left: 1px solid #d8d8d8;
  border-top-left-radius: 16px;
  border-bottom-left-radius: 16px;
}

.tab-link-container {
  background-color: #0000;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 42px;
  padding: 24px 0 0;
  display: flex;
}

.tab-link-container.w--current {
  background-color: #0000;
}

.tab-link-text {
  color: #000;
  margin-top: 14px;
  font-family: Nunito, sans-serif;
  font-size: 12px;
  line-height: 133%;
}

.price-line {
  background-color: #5f4cf866;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 42px;
  height: 4px;
  display: flex;
  position: relative;
}

.price-line-middle {
  background-color: #b7b0f8;
  border-radius: 8px;
  width: 4px;
  height: 12px;
  position: absolute;
}

.tabs-menu {
  align-items: center;
  margin-left: 76px;
  margin-right: 76px;
  padding-bottom: 32px;
  display: flex;
  overflow: hidden;
}

.price-circle-container {
  z-index: 5;
  background-color: var(--purple);
  opacity: 0;
  border-radius: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  display: flex;
  position: absolute;
}

.price-inner-circle {
  background-color: #fff;
  border-radius: 100%;
  width: 12px;
  height: 12px;
}

.price-line-active {
  z-index: 3;
  background-color: var(--purple);
  opacity: 0;
  justify-content: flex-end;
  align-items: center;
  width: 400px;
  height: 4px;
  display: flex;
  position: absolute;
  right: 18px;
}

.price-active-marker {
  background-color: var(--purple);
  border-radius: 8px;
  width: 4px;
  height: 12px;
  margin-left: 38px;
}

.tab-pane-content {
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  padding-top: 32px;
  padding-bottom: 16px;
  display: flex;
}

.tab-pane-text {
  color: var(--paragraph-color);
  font-family: Nunito, sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 133%;
}

.pricing-container {
  margin-top: 8px;
  margin-bottom: 8px;
}

.heading-3 {
  color: #000;
  font-family: Quicksand, sans-serif;
  font-size: 40px;
  line-height: 140%;
}

.pricing-tabs-container {
  background-color: #fff;
  border-radius: 16px;
  align-items: stretch;
  margin-top: 56px;
  display: flex;
}

.pricing-description-container {
  background-color: #fff;
  border-top: 1px solid #d8d8d8;
  border-bottom: 1px solid #d8d8d8;
  border-right: 1px solid #d8d8d8;
  border-top-right-radius: 16px;
  border-bottom-right-radius: 16px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 376px;
  padding-left: 32px;
  padding-right: 32px;
  display: flex;
}

.pricing-feature {
  align-items: center;
  margin-top: 8px;
  margin-bottom: 8px;
  display: flex;
}

.check-circle-image {
  min-width: 20px;
  min-height: 20px;
  margin-right: 12px;
}

.pricing-feature-text {
  color: #6872a1;
  font-family: Nunito, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 150%;
}

.pricing-button-wrapper {
  width: 100%;
  margin-top: 18px;
}

.pricing-container-mobile {
  display: none;
}

.ellipse-top-image {
  z-index: -1;
  width: 100%;
  display: none;
  position: absolute;
  bottom: 0;
}

.ellipse-top-image-mobile {
  display: none;
}

.buy-sell-tabs-menu {
  z-index: 2;
  white-space: nowrap;
  align-items: center;
  display: flex;
  position: absolute;
  top: 153px;
}

.buy-sell-tab-link {
  color: #fff6;
  background-color: #0000;
  padding: 0 32px 0 0;
  font-family: Quicksand, sans-serif;
  font-size: 160px;
  font-weight: 700;
  line-height: 110%;
  transition: all .2s;
}

.buy-sell-tab-link.w--current {
  color: #ffc15e;
  background-color: #0000;
  transition: all .2s;
}

.buy-sell-tab-pane {
  max-width: 732px;
}

.buy-sell-heading {
  margin-bottom: 225px;
}

.buy-sell-image {
  z-index: 20;
  position: relative;
}

.buy-sell-container {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.ellipse-bottom-image {
  z-index: -1;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.orange-span {
  color: #ffc15e;
}

.slider {
  background-color: #0000;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 20vw;
  height: 400px;
  margin-top: 36px;
  margin-bottom: 36px;
  display: flex;
}

.slide {
  width: 20vw;
}

.mask {
  width: 20vw;
  overflow: visible;
}

.rect {
  background-color: #00f;
  width: 500px;
  height: 500px;
}

.slide-container {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.slider-image-container {
  border-radius: 12px;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  width: 184px;
  height: 208px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.slider-image-container.purple {
  background-color: #bfb7fc;
}

.slider-image-container.pink {
  background-color: #f5dad7;
}

.slider-image-container.yellow {
  background-color: #ffe6be;
}

.slider-image-container.green {
  background-color: #cee9ac;
}

.slider-image-container.blue {
  background-color: #b7e5f9;
}

.top-purple-overlay {
  z-index: -1;
  background-color: var(--purple);
  border-top-left-radius: 80px;
  border-top-right-radius: 80px;
  height: 100px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.bottom-purple-overlay {
  z-index: -1;
  background-color: var(--purple);
  border-bottom-right-radius: 80px;
  border-bottom-left-radius: 80px;
  height: 100px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.slider-name-tag {
  background-color: #fff;
  border-radius: 16px;
  padding-left: 8px;
  padding-right: 8px;
  position: absolute;
  bottom: 12px;
}

.person-name-text {
  color: #1e1e1e;
  font-family: Nunito, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 150%;
}

.slide-nav, .right-arrow, .left-arrow {
  display: none;
}

.slider-text-container {
  margin-top: 24px;
}

.medium-text {
  opacity: 0;
  color: #1e1e1e;
  text-align: center;
  font-family: Nunito, sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 150%;
}

.medium-text.full-opac {
  opacity: 1;
  font-weight: 700;
}

.slider-buttons-container {
  align-items: center;
  display: flex;
}

.slider-button {
  background-color: var(--purple);
  cursor: pointer;
  border-radius: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  display: flex;
}

.slider-arrow.rotated {
  transform: rotate(180deg);
}

.icon, .icon-2 {
  display: none;
}

.slider-number-text {
  color: #000;
  margin-left: 32px;
  margin-right: 32px;
  font-family: Nunito, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 100%;
}

.features-container {
  align-items: center;
  width: 100%;
  display: flex;
}

.features-text-content {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  max-width: 490px;
  margin-right: 80px;
  display: flex;
}

.features-paragraph-container {
  margin-top: 16px;
  margin-bottom: 32px;
}

.features-card-container {
  align-items: center;
  display: flex;
  position: relative;
}

.features-card-column {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 60px;
  display: flex;
}

.features-card-column.with-bot-margin {
  margin-top: 0;
  margin-bottom: 60px;
  margin-right: 24px;
}

.feature-card {
  z-index: 2;
  background-color: #fff;
  border-radius: 12px;
  flex-direction: column;
  align-items: flex-start;
  width: 352px;
  height: 240px;
  margin: 12px 0;
  padding: 24px;
  display: flex;
  position: relative;
}

.feature-card-image {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-width: 40px;
  min-height: 40px;
  display: flex;
}

.feature-header {
  margin-top: 16px;
  margin-bottom: 8px;
}

.feature-card-text {
  color: gray;
  font-family: Nunito, sans-serif;
  font-size: 20px;
  line-height: 140%;
}

.features-background {
  position: absolute;
}

.features-background-mobile {
  display: none;
}

.blogs-grid {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  grid-template-rows: 1fr 1fr 1fr;
  width: 100%;
  margin-top: 56px;
}

.blog-item {
  height: 100%;
  position: relative;
}

.collection-list {
  height: 100%;
}

.main-blog-item {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-size: cover;
  border-radius: 16px;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  height: 100%;
  padding: 24px;
  display: flex;
}

.main-blog-item.no-bg-picture {
  background-color: var(--purple);
  background-image: none;
}

.extra-small-white-text {
  z-index: 5;
  color: #fff;
  font-family: Nunito, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 150%;
  position: relative;
}

.extra-small-white-text.with-margin {
  margin-bottom: 430px;
}

.blog-content {
  z-index: 5;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
  position: relative;
}

.blog-title {
  color: #fff;
  font-family: Quicksand, sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 125%;
}

.blog-short-description {
  color: #f2f3f8;
  margin-top: 8px;
  font-family: Nunito, sans-serif;
  font-size: 24px;
  line-height: 150%;
}

.blog-overlay {
  background-color: #0003;
  border-radius: 16px;
  position: absolute;
  inset: 0;
}

.faq-section-container {
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
  position: relative;
}

.faq-section-heading {
  max-width: 480px;
  padding-right: 30px;
}

.faq-container {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.faq {
  background-color: #fff;
  border: 1px solid #d8d8d8;
  border-radius: 12px;
  width: 488px;
  margin-bottom: 20px;
  padding: 24px;
}

.faq-header {
  cursor: pointer;
  align-items: center;
  display: flex;
}

.faq-header-text {
  color: #000;
  font-family: Inter, sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 140%;
}

.expand-faq-image {
  width: 12px;
  height: 12px;
  margin-right: 12px;
}

.faq-content {
  overflow: hidden;
}

.faq-answer {
  color: #000;
  padding-top: 12px;
  padding-left: 24px;
  font-family: Inter, sans-serif;
  font-size: 18px;
  line-height: 150%;
}

.faq-background-image {
  z-index: -1;
  min-width: 1200px;
  position: absolute;
  top: -310px;
  right: -300px;
}

.page-content {
  position: relative;
  overflow: hidden;
}

.footer {
  text-align: center;
  background-color: #212121;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 24px;
  padding-bottom: 16px;
  display: flex;
}

.footer-flex-container {
  text-align: left;
  justify-content: space-between;
  margin-bottom: 40px;
  display: flex;
}

.footer-logo-link {
  flex: 0 auto;
  min-width: 60px;
  max-height: 60px;
}

.footer-image {
  object-fit: contain;
  object-position: 0% 50%;
  width: 100%;
  height: 100%;
}

.footer-heading {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 1.5;
}

.footer-link {
  color: #bdbdbd;
  margin-bottom: 0;
  margin-left: 28px;
  margin-right: 28px;
  font-family: Nunito, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 125%;
  text-decoration: none;
  transition: all .2s;
  display: block;
}

.footer-link:hover {
  color: #fff;
  text-decoration: none;
}

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

.navigation-container {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
}

.footer-container {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
}

.footer-top {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
}

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

.footer-logo {
  flex-direction: row;
  align-items: center;
  margin-right: 28px;
  text-decoration: none;
  display: flex;
}

.footer-logo-image {
  width: 34px;
  height: 32px;
  margin-right: 12px;
}

.footer-logo-text {
  color: #fff;
  font-family: Quicksand, sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 133%;
}

.footer-buttons-container {
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.footer-button {
  width: 136px;
  height: 40px;
}

.footer-button.with-margin {
  margin-left: 16px;
}

.footer-divider {
  background-color: #616161;
  width: 100%;
  height: 1px;
  margin-top: 24px;
  margin-bottom: 16px;
}

.footer-bottom {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
}

.company-and-year-text {
  color: #bdbdbd;
  font-family: Inter, sans-serif;
  line-height: 143%;
}

.navigation-bar {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.navigtaion-logo-container {
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  text-decoration: none;
  display: flex;
}

.navigation-logo-image {
  width: 43px;
  height: 40px;
  margin-right: 12px;
}

.navigation-logo-text {
  color: var(--purple);
  font-family: Quicksand, sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 125%;
}

.navigation-main-links {
  justify-content: flex-start;
  align-items: center;
  display: flex;
  position: absolute;
  left: 50%;
  transform: translate(-50%);
}

.navlink {
  color: var(--paragraph-color);
  margin-left: 28px;
  margin-right: 28px;
  font-family: Nunito, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 150%;
  text-decoration: none;
  display: block;
}

.navigation-styles {
  display: none;
}

.text-block {
  font-size: 130px;
}

@media screen and (max-width: 991px) {
  .section {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .section.relative.customers-section {
    padding-top: 190px;
  }

  .wide-container.purple-container {
    padding-left: 0;
    padding-right: 0;
  }

  .paragraph {
    font-size: 20px;
  }

  .left-part {
    text-align: left;
    align-items: flex-start;
    width: 50%;
    max-width: 640px;
    padding-left: 0;
    padding-right: 40px;
  }

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

  .heading-2.for-buy-sell {
    font-size: 4.5vw;
  }

  .heading-2.bigger {
    max-width: 50vw;
    font-size: 4.5vw;
  }

  .heading-2.bigger.center {
    max-width: 50vw;
  }

  .testimonial.hidden-on-mobile {
    text-align: left;
    display: flex;
  }

  .right-part {
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    width: 50%;
    padding-right: 0;
    display: flex;
  }

  .right-part.mobile {
    margin-top: 16px;
    display: none;
  }

  .social {
    width: 58px;
    height: 58px;
    margin-left: 6px;
    margin-right: 6px;
  }

  .socials-container {
    width: 360px;
    height: 360px;
  }

  .socials-container.for-mobile {
    display: flex;
  }

  .purple-background {
    border-radius: 0;
    flex-direction: column-reverse;
    align-items: flex-start;
  }

  .website-image-wrapper {
    height: 680px;
  }

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

  .purple-left-half {
    width: 100%;
    margin-top: 32px;
    padding-right: 30px;
  }

  .purple-right-half {
    align-items: flex-start;
    width: auto;
    padding-left: 30px;
    padding-right: 0;
  }

  .purple-right-half-content {
    width: 80%;
  }

  .testimonial-type-2 {
    width: 320px;
  }

  .tabs-menu {
    margin-left: 36px;
    margin-right: 36px;
  }

  .pricing-description-container {
    width: 100%;
    max-width: 376px;
  }

  .ellipse-top-image {
    width: 150%;
    max-width: none;
  }

  .buy-sell-tabs-menu {
    top: 113px;
  }

  .buy-sell-tab-link {
    padding-right: 16px;
    font-size: 8vw;
  }

  .buy-sell-tab-pane {
    max-width: 600px;
  }

  .buy-sell-heading {
    margin-bottom: 121px;
  }

  .buy-sell-image {
    width: 40vw;
    padding-left: 30px;
  }

  .slide, .mask {
    width: 40vw;
  }

  .top-purple-overlay {
    border-top-left-radius: 60px;
    border-top-right-radius: 60px;
  }

  .bottom-purple-overlay {
    border-bottom-right-radius: 60px;
    border-bottom-left-radius: 60px;
  }

  .features-container {
    flex-direction: column;
  }

  .features-text-content {
    text-align: center;
    align-items: center;
    margin-right: 0;
  }

  .features-card-container {
    margin-top: 32px;
  }

  .features-background {
    z-index: -1;
  }

  .blog-title {
    font-size: 28px;
  }

  .blog-short-description {
    font-size: 22px;
  }

  .faq {
    width: 400px;
    padding: 16px;
  }

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

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

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

  .footer-buttons-container {
    margin-top: 24px;
  }

  .navigation-main-links {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .section {
    padding-top: 75px;
    padding-bottom: 75px;
  }

  .section.hero {
    height: 100vh;
    padding-top: 0;
    padding-bottom: 0;
  }

  .section.relative.customers-section {
    padding-top: 135px;
  }

  .wide-container {
    padding-left: 24px;
    padding-right: 24px;
  }

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

  .hero-paragraph-wrapper {
    margin-top: 8px;
    margin-bottom: 16px;
  }

  .paragraph {
    font-size: 18px;
  }

  .hero-buttons-wrapper {
    grid-row-gap: 8px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    width: 100%;
    margin-bottom: 0;
  }

  .hero-buttons-wrapper.for-navigation-bar {
    grid-template-rows: auto;
    width: auto;
  }

  .primary-button.paragraph-color.wider-on-mobile.for-navigation {
    display: none;
  }

  .primary-button.wider-on-mobile {
    width: 100%;
    max-width: 300px;
  }

  .primary-button.white {
    padding-left: 48px;
    padding-right: 48px;
  }

  .iphone-container {
    display: none;
  }

  .part-container {
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
  }

  .left-part {
    width: 100%;
    max-width: 100%;
    padding-right: 0;
  }

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

  .heading-2.for-buy-sell {
    font-size: 28px;
    line-height: 133%;
  }

  .heading-2.bigger {
    max-width: none;
    font-size: 28px;
  }

  .heading-2.bigger.center {
    max-width: 305px;
  }

  .left-part-paragraph-wrapper {
    margin-top: 8px;
    margin-bottom: 16px;
  }

  .testimonial.hidden-on-mobile {
    max-width: 100%;
    margin-bottom: 24px;
  }

  .right-part {
    width: 100%;
    display: block;
  }

  .right-part.mobile {
    align-items: flex-start;
    display: flex;
  }

  .socials-container {
    transform: scale3d(1none, 1none, 1none);
    width: 100%;
    height: 350px;
  }

  .row.landscape {
    display: flex;
  }

  .purple-background {
    padding-top: 75px;
    padding-bottom: 75px;
  }

  .website-image-wrapper {
    width: 100%;
    height: 100%;
  }

  .purple-left-half {
    margin-top: 24px;
    padding-right: 24px;
  }

  .purple-right-half {
    padding-left: 24px;
    padding-right: 24px;
  }

  .purple-right-half-content {
    width: 100%;
  }

  .feature-icon {
    width: 28px;
    height: 28px;
  }

  .small-white-text {
    font-size: 18px;
  }

  .testimonial-type-2 {
    width: 90%;
  }

  .pricing-tabs {
    display: none;
  }

  .tab-pane-content {
    width: 100%;
    padding-bottom: 16px;
  }

  .pricing-tabs-container {
    border: 1px solid #d8d8d8;
    border-radius: 16px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 500px;
    margin-top: 24px;
    padding-bottom: 32px;
    overflow: hidden;
  }

  .pricing-description-container {
    border-top-style: none;
    border-bottom-style: none;
    border-right-style: none;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    padding-top: 8px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .pricing-container-mobile {
    background-color: var(--grayish-blue);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    display: flex;
  }

  .pricing-form {
    width: 100%;
    max-width: 376px;
    margin-top: 32px;
    margin-bottom: 0;
    padding-left: 16px;
    padding-right: 16px;
  }

  .hidden-button {
    display: none;
  }

  .field-label {
    color: #000;
    letter-spacing: .04em;
    margin-bottom: 4px;
    font-family: Nunito, sans-serif;
    font-size: 10px;
    line-height: 140%;
  }

  .text-field {
    color: #000;
    letter-spacing: .04em;
    border: 1px solid #6872a1;
    border-radius: 6px;
    font-family: Nunito, sans-serif;
    font-size: 16px;
    line-height: 125%;
  }

  .text-field::placeholder {
    color: #000;
  }

  .pricing-mobile-content {
    padding-left: 16px;
    padding-right: 16px;
  }

  .ellipse-top-image {
    display: none;
  }

  .ellipse-top-image-mobile {
    z-index: -1;
    width: 100%;
    max-width: none;
    display: block;
    position: absolute;
    bottom: -80vw;
  }

  .buy-sell-tabs {
    max-width: 550px;
  }

  .buy-sell-tabs-menu {
    top: 79px;
  }

  .buy-sell-tab-link {
    font-size: 56px;
  }

  .buy-sell-tab-pane {
    max-width: 500px;
  }

  .buy-sell-heading {
    margin-bottom: 87px;
  }

  .buy-sell-image {
    width: 100%;
    max-width: 500px;
    margin-top: 32px;
    padding-left: 0;
  }

  .buy-sell-container {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .slider {
    margin-top: 24px;
  }

  .slide, .mask {
    width: 60vw;
  }

  .top-purple-overlay {
    height: 400px;
  }

  .bottom-purple-overlay {
    height: 60px;
  }

  .medium-text {
    font-size: 22px;
  }

  .features-container {
    justify-content: center;
    align-items: center;
  }

  .features-text-content {
    text-align: left;
    align-items: flex-start;
    max-width: none;
  }

  .features-card-container {
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
  }

  .features-card-column {
    margin-top: 0;
  }

  .features-card-column.with-bot-margin {
    margin-bottom: 0;
    margin-right: 0;
  }

  .feature-card {
    width: 100%;
  }

  .feature-card-text {
    font-size: 20px;
  }

  .features-background {
    display: none;
  }

  .features-background-mobile {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    left: 0;
    right: 0;
  }

  .blogs-grid {
    grid-template-columns: 1fr;
    margin-top: 32px;
  }

  .extra-small-white-text.with-margin {
    margin-bottom: 80px;
  }

  .blog-short-description {
    display: none;
  }

  .faq-section-container {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .faq-section-heading {
    margin-bottom: 32px;
    padding-right: 0;
  }

  .faq {
    width: 100%;
  }

  .footer {
    padding: 32px 0 24px;
  }

  .footer-image {
    object-fit: contain;
  }

  .footer-link {
    margin: 12px;
  }

  .footer-link.no-left-margin {
    margin-left: 12px;
    margin-right: 12px;
  }

  .footer-top {
    justify-content: center;
    align-items: center;
  }

  .main-links-container {
    flex-direction: column;
    justify-content: center;
  }

  .main-links-container.bottom-part {
    flex-direction: row;
    justify-content: flex-start;
  }

  .footer-logo {
    margin-bottom: 12px;
    margin-right: 0;
  }

  .footer-buttons-container {
    margin-top: 12px;
  }

  .footer-bottom {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .company-and-year-text {
    margin-top: 4px;
  }
}

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

  .section.relative.customers-section {
    padding-top: 115px;
  }

  .wide-container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .wide-container.center {
    position: relative;
  }

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

  .hero-paragraph-wrapper {
    margin-bottom: 24px;
  }

  .paragraph {
    font-size: 14px;
  }

  .hero-buttons-wrapper {
    margin-bottom: 0;
  }

  .primary-button.wider-on-mobile.full-width-mobile {
    max-width: none;
  }

  .primary-button.white {
    width: 100%;
  }

  .iphone-container {
    display: none;
  }

  .iphone-image {
    position: absolute;
  }

  .small-device-categories-container {
    justify-content: center;
    align-items: center;
    display: flex;
    position: absolute;
    top: 231px;
    left: 31px;
  }

  .iphone-image-mobile {
    width: 100%;
    max-width: 300px;
    margin-top: 16px;
    display: block;
  }

  .heading-2, .heading-2.for-buy-sell {
    font-size: 24px;
  }

  .heading-2.bigger {
    max-width: none;
    font-size: 24px;
  }

  .heading-2.bigger.center {
    max-width: 280px;
  }

  .social {
    margin-left: 0;
    margin-right: 0;
    transform: scale(.8);
  }

  .social.blue-1 {
    margin-left: 0;
    margin-right: 0;
  }

  .socials-container {
    width: 100%;
    max-width: 100%;
    height: 275px;
  }

  .row {
    margin-top: 0;
    margin-bottom: 0;
  }

  .purple-background {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .feature-icon {
    width: 24px;
    height: 24px;
  }

  .small-white-text {
    font-size: 14px;
  }

  .buy-sell-tab-link {
    font-size: 40px;
  }

  .slider {
    height: 350px;
    margin-top: 8px;
  }

  .slide {
    width: 100vw;
    padding-left: 16px;
    padding-right: 16px;
  }

  .mask {
    width: 100vw;
  }

  .top-purple-overlay {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
  }

  .bottom-purple-overlay {
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px;
    height: 40px;
  }

  .medium-text {
    font-size: 20px;
  }

  .feature-card {
    height: auto;
    min-height: 192px;
    padding: 16px;
  }

  .feature-header {
    margin-top: 8px;
  }

  .feature-card-text {
    font-size: 14px;
  }

  .features-background-mobile {
    height: 100%;
  }

  .main-blog-item {
    padding: 16px;
  }

  .blog-title {
    font-size: 24px;
  }

  .blog-short-description {
    display: none;
  }

  .faq-background-image {
    top: auto;
    right: auto;
  }

  .footer {
    text-align: left;
    padding-left: 0;
    padding-right: 0;
  }

  .footer-flex-container {
    flex-direction: column;
  }

  .footer-logo-link {
    height: 60px;
  }

  .footer-heading {
    margin-top: 20px;
  }

  .footer-buttons-container {
    flex-direction: column;
    justify-content: center;
  }

  .footer-button.with-margin {
    margin-top: 16px;
    margin-left: 0;
  }

  .navigation-logo-image {
    width: 34px;
    height: 32px;
  }

  .navigation-logo-text {
    font-size: 24px;
  }
}


