:root {
  --black: black;
  --white: white;
  --off-white: #f5f3f2;
  --purple: #e6def0;
  --turquoise: #c1dedc;
  --dark-grey: #595959;
  --grey: #d9d9d9;
  --light-grey: #f2f2f2;
  --firebrick: #cb2c1f;
  --56ac66: #595959;
}

.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;
}

body {
  color: var(--black);
  font-family: Circularstd, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
}

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

.header {
  z-index: 100;
  background-color: rgba(0, 0, 0, 0);
  justify-content: space-between;
  padding: 24px 40px;
  position: relative;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: 0%;
}

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

.container.large {
  max-width: 1344px;
}

.container.align-right {
  justify-content: flex-end;
  display: flex;
}

.container.margin-l {
  margin-top: 0;
  padding-top: 104px;
  padding-bottom: 104px;
}

.nav-wrap {
  z-index: 1;
  background-color: rgba(0, 0, 0, 0);
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-top: 0;
  padding: 0;
  display: flex;
  position: relative;
}

.nav-logo {
  width: 240px;
  padding-top: 8px;
}

.nav-link-wrap {
  align-items: center;
  display: flex;
}

.button {
  background-color: var(--white);
  color: var(--black);
  border: 2px solid #000;
  border-radius: 12px;
  padding: 10px 24px;
  transition: color .2s, background-color .2s;
}

.button:hover, .button.black {
  background-color: var(--black);
  color: var(--white);
}

.button.black:hover {
  background-color: #303030;
  border-color: #303030;
}

.button.black.form {
  margin-left: 24px;
  font-family: Varela Round, sans-serif;
  font-size: 31px;
}

.button.black.mob {
  border-color: var(--white);
  color: var(--white);
  background-color: rgba(0, 0, 0, 0);
  flex: 0 auto;
  margin-top: -4px;
  padding: 0 50px 0 30px;
  font-family: Varela Round, sans-serif;
  font-size: 16px;
}

.button.nav {
  padding: 8px 20px;
}

.button.nav.hide-on-mobile {
  border-width: 3px;
  border-color: var(--white);
  color: var(--white);
  background-color: rgba(0, 0, 0, 0);
  font-family: Varela Round, sans-serif;
}

.button.nav.sec.mob {
  color: #fff;
  background-color: rgba(0, 0, 0, 0);
  border-width: 3px;
  border-color: #fff;
  padding-top: 14px;
  font-family: Varela Round, sans-serif;
}

.nav-link {
  color: var(--black);
  margin-left: 20px;
  margin-right: 20px;
  text-decoration: none;
  transition: all .3s;
  display: inline-block;
}

.nav-link:hover {
  opacity: .65;
  transform: translate(0, -2px);
}

.nav-link.last {
  margin-right: 0;
}

.section {
  width: 100%;
  padding-left: 40px;
  padding-right: 40px;
  position: relative;
}

.section.hero {
  justify-content: center;
  align-items: center;
  height: 100vh;
  max-height: 800px;
  padding-top: 0;
  display: flex;
  overflow: visible;
}

.section.full {
  padding-left: 0;
  padding-right: 0;
}

.section.off-white {
  background-color: var(--off-white);
}

.section.off-white.full {
  color: #cb2c1f;
}

.section.footer {
  background-color: #cb2c1f;
}

.section.gradient-180 {
  background-image: linear-gradient(to bottom, var(--purple) 5%, var(--turquoise) 95%);
}

.section.margin-top-76 {
  margin-top: 76px;
}

.section.backgroud-2 {
  background-color: #000;
  padding-top: 0;
  padding-left: 0;
  padding-right: 0;
}

.hero_text-wrap {
  z-index: 5;
  width: 56%;
  max-width: 560px;
  position: relative;
}

.h1 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 80px;
  line-height: 72px;
  overflow: hidden;
}

.inline {
  color: var(--white);
  font-family: Varela Round, sans-serif;
  display: inline-block;
  position: relative;
}

.paragraph.hero {
  color: var(--white);
  max-width: 480px;
  margin-top: 32px;
  margin-bottom: 40px;
  font-family: Varela, sans-serif;
  font-size: 21px;
}

.hero-form {
  width: 100%;
  height: 56px;
  display: flex;
}

.form-field {
  background-color: var(--white);
  border: 2px solid rgba(0, 0, 0, .1);
  border-radius: 12px;
  height: 100%;
  margin-bottom: 22px;
  padding: 14px 24px;
  font-size: 18px;
  transition: all .3s;
}

.form-field:hover {
  border-style: solid;
  border-color: var(--black);
}

.form-field:focus {
  border-width: 2px;
  border-color: var(--black);
  padding: 13px 24px;
}

.form-field::placeholder {
  color: rgba(0, 0, 0, .5);
}

.form-field.white {
  background-color: var(--white);
  border-color: rgba(0, 0, 0, .15);
}

.form-field.white:focus {
  border-color: var(--black);
}

.creators_wrap {
  color: #56ac66;
  background-color: #cb2c1f;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 120px;
  display: block;
  position: relative;
}

.creator_block {
  background-color: var(--white);
  border-radius: 12px;
  min-width: 394px;
  margin-right: 24px;
  padding: 34px 32px 0;
  display: block;
}

.creator_block.mob {
  padding: 15px 15px 0;
}

.creator_container {
  color: #cb2c1f;
  background-color: #cb2c1f;
  justify-content: flex-start;
  align-items: center;
  padding: 64px 24px 120px;
  overflow: hidden;
}

.creator_content {
  display: flex;
}

.block_top-wrap {
  align-items: center;
  margin-bottom: 24px;
  display: flex;
}

.block-profile-img {
  width: 64px;
  height: 64px;
  margin-right: 24px;
}

.block_top-text-wrap {
  padding-left: 0;
  padding-right: 0;
}

.block_username {
  font-size: 24px;
  font-weight: 700;
}

.block_followers {
  margin-top: 5px;
}

.block_text {
  max-width: 330px;
}

.hero_illustration {
  width: 65vw;
  height: 100%;
  position: absolute;
  top: auto;
  bottom: 0%;
  left: auto;
  right: 0%;
  overflow: visible;
}

.illustration {
  object-fit: contain;
  object-position: 100% 100%;
  width: 100%;
  max-height: 750px;
  display: block;
  position: absolute;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.illustration._2 {
  z-index: 2;
}

.illustration._1 {
  z-index: 1;
}

.illustration._3 {
  z-index: 3;
}

.illustration._4 {
  z-index: 4;
}

.overflow-hidden {
  overflow: hidden;
}

.full-centre {
  color: var(--white);
  justify-content: center;
  align-items: center;
  width: 100%;
  font-size: 23px;
  display: flex;
}

.h3 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 32px;
  line-height: 40px;
}

.h3.centre {
  color: var(--white);
  text-align: center;
  font-family: Varela Round, sans-serif;
}

.h3.centre.contact-header {
  margin-bottom: 40px;
}

.b1-bar2 {
  background-color: #24232f;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 2px;
  margin-top: 8px;
  margin-bottom: 0;
  display: flex;
}

.b1-bar1 {
  background-color: #24232f;
  width: 24px;
  height: 2px;
}

.hero_mobile-image {
  display: none;
}

.how_wrap {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
}

.h2 {
  color: var(--white);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 56px;
  line-height: 64px;
}

.h2.how {
  color: var(--white);
  margin-bottom: 32px;
  font-family: Varela Round, sans-serif;
}

.h2.how.white {
  color: var(--white);
}

.h2.about-us {
  font-size: 48px;
}

.how_grid {
  grid-column-gap: 48px;
  grid-template-rows: 205px;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  margin-top: 88px;
}

.how_grid._2 {
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-flow: row;
}

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

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

.work-image {
  width: 250px;
  margin-bottom: 40px;
  display: block;
}

.how_text {
  text-align: center;
  margin-top: 16px;
}

.feature_wrap {
  padding-top: 66px;
  padding-bottom: 106px;
}

.feature_wrap._2 {
  padding-bottom: 140px;
}

.feature_grid {
  grid-column-gap: 23px;
  grid-row-gap: 23px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  height: 52vw;
}

._480 {
  max-width: 480px;
}

._480.sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 120px;
}

.feature_image-wrap {
  width: 100%;
  max-width: 567px;
  position: relative;
}

.feature_image-wrap.sec1 {
  width: 70%;
  margin-top: 147px;
}

.feature_image {
  width: 100%;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.feature_image._2 {
  border: 5px solid var(--white);
  border-radius: 20px;
}

.feature_image._2.poznajorg {
  border-width: 0;
  width: 80%;
}

.feature_image._3, .feature_image._4 {
  border: 5px solid var(--white);
  border-radius: 20px;
}

.feature_text {
  color: var(--white);
  font-family: Varela Round, sans-serif;
}

.feature_text.white {
  color: var(--white);
}

.brand_wrap {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
  position: relative;
}

.brand_container {
  justify-content: flex-start;
  align-items: center;
  overflow: visible;
}

.brand_content {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  padding-top: 64px;
  padding-bottom: 80px;
  display: grid;
  transform: translate(0);
}

.brand_block {
  background-color: var(--white);
  border-radius: 12px;
  width: 100%;
  max-width: 300px;
  display: block;
  overflow: hidden;
}

.brand_image {
  object-fit: cover;
  width: 100%;
  min-height: 300px;
  display: block;
  position: relative;
}

.brand_logo-wrap {
  justify-content: center;
  align-items: center;
  height: 100px;
  padding: 20px;
  display: flex;
}

.brand_logo {
  transform: scale(.5);
}

.brand_grid-text {
  padding-top: 120px;
  padding-bottom: 120px;
}

.success-message {
  background-color: var(--turquoise);
  background-image: linear-gradient(135deg, var(--purple), var(--turquoise));
  border-radius: 12px;
}

.about-menu-wrap {
  z-index: 2;
  background-color: var(--white);
  transform-origin: 100%;
  justify-content: center;
  align-items: flex-start;
  width: 50vw;
  min-width: 720px;
  padding: 80px;
  display: block;
  position: fixed;
  top: 0%;
  bottom: 0%;
  left: auto;
  right: 0%;
  overflow: auto;
}

.close-block {
  z-index: 3;
  padding: 10px;
  position: absolute;
  top: 22px;
  bottom: auto;
  left: auto;
  right: 22px;
}

.close {
  width: 17px;
  display: block;
}

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

.influencer-logo {
  width: 150px;
  display: block;
}

.about-wrap {
  z-index: 2;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  display: flex;
  position: relative;
}

.image {
  width: 100%;
  margin-top: 40px;
  margin-bottom: 40px;
}

.about-text {
  margin-bottom: 56px;
  display: block;
}

.faq_container {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 120px;
  padding-bottom: 120px;
  display: flex;
}

.faq_wrapper {
  border-top: 1px solid rgba(0, 0, 0, .15);
  width: 100%;
  margin-top: 72px;
  padding-top: 24px;
}

.h4 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 20px;
  line-height: 28px;
}

.faq_arrow {
  width: 24px;
}

.faq_top {
  cursor: pointer;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.faq_bottom {
  transform-origin: 50% 0;
  overflow: hidden;
}

.faq_divider {
  background-color: rgba(0, 0, 0, .15);
  height: 1px;
  margin-top: 24px;
  margin-bottom: 24px;
}

.faq_text {
  margin-top: 16px;
}

.footer-wrap {
  flex-direction: column;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 40px;
  display: flex;
}

.footer-grid {
  grid-column-gap: 56px;
  grid-template-rows: auto;
  grid-template-columns: auto auto auto;
  margin-bottom: 88px;
}

.footer_cta {
  text-align: center;
  flex-direction: column;
  width: 100%;
  max-width: 560px;
  margin-bottom: 80px;
}

.footer-text {
  color: var(--white);
  max-width: 480px;
  margin: 24px auto 40px;
}

.form-block {
  margin-bottom: 0;
}

.line {
  background-color: rgba(0, 0, 0, .15);
  width: 100%;
  height: 2px;
}

.footer-link {
  color: var(--black);
  margin-bottom: 16px;
  text-decoration: none;
  transition: opacity .3s;
  display: block;
}

.footer-link:hover {
  opacity: .65;
}

.footer-block {
  flex-direction: column;
  align-items: flex-start;
  max-width: 277px;
  margin-top: 22px;
  display: flex;
}

.footer-img {
  max-width: 240px;
  margin-bottom: 24px;
}

.footer-small-text {
  margin-bottom: 40px;
  font-size: 16px;
  line-height: 24px;
}

.footer-small-text.no-margin {
  margin-bottom: 0;
  font-size: 18px;
}

.footer-small-text.no-margin.bold {
  margin-bottom: 16px;
  font-weight: 700;
}

.fotter_bottom-wrap {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-top: 36px;
  display: flex;
}

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

.small.right {
  color: var(--black);
  margin-left: 10px;
  margin-right: 10px;
}

.footer-flex {
  display: flex;
}

.contact {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding-top: 76px;
  display: flex;
}

.about-menu {
  z-index: 10;
  width: 100vw;
  height: 100vh;
  display: none;
  position: fixed;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.blur {
  background-color: rgba(0, 0, 0, .25);
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.loader {
  z-index: 99;
  background-color: #fff;
  justify-content: center;
  align-items: center;
  display: none;
  position: fixed;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.lottie {
  height: 150px;
}

.nav_button-wrap {
  z-index: 1000;
  justify-content: flex-end;
  padding-top: 24px;
  padding-left: 40px;
  padding-right: 40px;
  display: none;
  position: fixed;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: 0%;
}

.hamburger {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  display: none;
}

.mobile-menu {
  z-index: 10;
  width: 100vw;
  height: 100vh;
  display: none;
  position: fixed;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.mobile-menu-modal {
  z-index: 2;
  background-color: var(--white);
  transform-origin: 100%;
  justify-content: center;
  align-items: flex-start;
  width: 50vw;
  min-width: 720px;
  padding: 56px 80px;
  display: flex;
  position: fixed;
  top: 0%;
  bottom: 0%;
  left: auto;
  right: 0%;
  overflow: auto;
}

.mob-menu-wrap {
  z-index: 2;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  display: flex;
  position: relative;
}

.grid {
  grid-column-gap: 56px;
  grid-template-rows: auto;
  grid-template-columns: .5fr 1fr;
}

.tab-link {
  border-left: 4px solid var(--off-white);
  background-color: var(--white);
  color: var(--black);
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  padding: 16px 24px;
  text-decoration: none;
  display: inline-block;
}

.tab-link.w--current {
  background-color: var(--white);
  border-left: 4px solid #000;
  width: 100%;
  margin-right: 0;
  padding: 16px 24px;
}

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

.error-message {
  background-color: #fce1e4;
}

.error-text {
  color: #ee2139;
}

.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: 400px;
  display: flex;
}

.div-block-3 {
  margin-bottom: 32px;
}

.navbar {
  justify-content: space-between;
  align-items: center;
  height: 88px;
  padding-left: 40px;
  padding-right: 40px;
  display: flex;
}

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

.body {
  background-color: #cb2c1f;
}

.image-2 {
  max-width: 100%;
  margin-top: 0;
  margin-left: 0;
}

.form {
  width: 100%;
}

.form-field-2 {
  color: #096ad0;
  background-color: #fff;
  background-image: none;
  border-style: none;
  border-radius: 3px;
  min-width: 200px;
  margin-bottom: 20px;
  padding: 26px 16px;
}

.form-field-2::placeholder {
  color: #096ad0;
}

.button-2 {
  background-color: #096ad0;
  border: 1px solid #096ad0;
  border-radius: 40px;
  padding: 10px 25px;
  font-size: 16px;
  font-weight: 300;
  transition: all .2s;
  box-shadow: 0 4px 11px rgba(1, 58, 117, .33);
}

.button-2:hover {
  color: #fff;
  background-color: #096ad0;
  border: 1px solid #096ad0;
  transform: translate(0, -4px);
  box-shadow: 0 6px 20px rgba(1, 58, 117, .33);
}

.button-2.ghost {
  box-shadow: none;
  color: #096ad0;
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid #096ad0;
  margin-left: 0;
  margin-right: 20px;
}

.button-2.ghost:hover {
  color: #fff;
  background-color: #096ad0;
  background-image: none;
  transform: none;
}

.button-2.ghost.partner-button {
  margin-top: 50px;
  margin-right: 0;
}

.button-2.ghost.partner-button.custom-button-margin-padding {
  margin-top: 0;
}

.button-2.ghost.partner-button.custom-button-margin-padding.cta-big.cta-big-form-button {
  color: #2145aa;
  background-color: #fff;
  border-color: #fff;
  margin-top: 35px;
}

.button-2.ghost.partner-button.custom-button-margin-padding.cta-big.cta-big-form-button:hover {
  color: #fff;
  background-color: #2145aa;
  border-color: #fff;
}

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

.checkbox-field-6 {
  margin-top: 40px;
}

.checkbox-label-2, .checkbox-label-3, .checkbox-label-4, .checkbox-label-5, .checkbox-label-6 {
  color: var(--white);
}

.link {
  color: var(--grey);
  font-style: normal;
  font-weight: 400;
  position: static;
  top: -17px;
}

.featured-brands {
  z-index: 1;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding-top: 30px;
  padding-bottom: 30px;
  display: flex;
  position: relative;
  box-shadow: 0 3px 3px rgba(0, 0, 0, .03);
}

.holder-div {
  opacity: 1;
  justify-content: center;
  align-items: center;
  margin-left: 2%;
  margin-right: 2%;
  display: flex;
}

.img-block {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.img-block.loaf {
  position: relative;
  top: 5px;
}

.testimonial-div {
  opacity: 1;
  text-align: center;
  width: 19%;
  padding-top: 0;
  padding-bottom: 0;
}

.testimonial-div.zapier {
  text-align: center;
}

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

.grid-3 {
  grid-template: "Area Area-2 Area-3 Area-4 Area-5 Area-6"
  / 1fr 1fr 1fr 1fr 1fr 1fr;
}

.div-block-4 {
  display: flex;
}

.image-3, .image-4 {
  max-width: 200%;
}

.sponsorbox {
  padding-right: 26px;
}

.container-2 {
  position: relative;
  top: -69px;
}

.div-block-6 {
  position: relative;
  top: -34px;
}

.bold-text {
  font-size: 30px;
}

@media screen and (min-width: 1440px) {
  .container.large.absolute {
    position: absolute;
    top: auto;
    bottom: 0%;
    left: 0%;
    right: 0%;
  }

  .button.black {
    font-family: Varela Round, sans-serif;
  }

  .button.black.form {
    padding-left: 11px;
  }

  .button.black.mob {
    border-color: var(--white);
    background-color: rgba(0, 0, 0, 0);
  }

  .button.nav {
    font-family: Varela Round, sans-serif;
  }

  .button.nav.hide-on-mobile {
    border-color: var(--white);
    color: var(--white);
    background-color: rgba(0, 0, 0, 0);
    margin-top: 33px;
  }

  .button.nav.sec {
    text-align: center;
    position: absolute;
  }

  .button.nav.sec.mob {
    color: #fff;
    background-color: rgba(0, 0, 0, 0);
    border-color: #fff;
  }

  .section {
    margin-top: 0;
    padding-top: 0;
  }

  .section.footer {
    background-color: #cb2c1f;
  }

  .hero_text-wrap {
    max-width: 560px;
  }

  .hero-form {
    height: 60px;
    margin-top: 9px;
    margin-left: -1px;
    padding-left: 0;
  }

  .form-field {
    margin-bottom: 16px;
    font-family: Varela Round, sans-serif;
  }

  .form-field.white {
    margin-bottom: 37px;
    padding-bottom: 20px;
  }

  .creators_wrap {
    background-color: #cb2c1f;
  }

  .creator_block {
    background-color: rgba(0, 0, 0, 0);
    padding: 14px 13px 0 15px;
  }

  .creator_block.mob {
    padding-top: 15px;
  }

  .creator_container {
    background-color: #cb2c1f;
  }

  .hero_illustration {
    width: 100%;
    margin-top: 0;
  }

  .illustration {
    width: auto;
    height: 750px;
    top: auto;
    bottom: 0%;
    left: auto;
    right: 0%;
  }

  .h2 {
    color: #fff;
  }

  .h2.how {
    color: var(--white);
    font-family: Varela Round, sans-serif;
  }

  .feature_wrap {
    padding-bottom: 14px;
  }

  .feature_wrap._2 {
    padding-bottom: 0;
  }

  .feature_grid {
    height: 640px;
  }

  .feature_image-wrap {
    max-width: 400px;
  }

  .feature_image._3 {
    max-width: 250%;
  }

  .feature_text {
    color: var(--white);
    font-family: Varela Round, sans-serif;
  }

  .brand_content {
    grid-row-gap: 32px;
  }

  .faq_container {
    padding-top: 0;
  }

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

  .nav_button-wrap {
    display: none;
  }

  .nav_logo {
    margin-top: 73px;
  }

  .image-2 {
    border: 7px solid var(--white);
    border-radius: 20px;
    padding-left: 0;
  }

  .checkbox-label {
    text-align: left;
  }

  .checkbox-label.wh {
    color: var(--dark-grey);
  }

  .form-field-2 {
    color: #fff;
    background-color: #000;
    font-family: Varela Round, sans-serif;
  }

  .checkbox-field, .checkbox-field-8 {
    text-align: left;
  }

  .checkbox-field-3 {
    color: #fff;
    text-align: left;
  }

  .checkbox-field-4, .checkbox-field-5, .checkbox-field-6, .checkbox-label-2 {
    text-align: left;
  }

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

  .checkbox-label-4 {
    color: #fff;
  }

  .checkbox-label-5, .checkbox-label-6 {
    color: var(--white);
    background-color: rgba(0, 0, 0, 0);
  }

  .link {
    text-align: center;
    display: flex;
  }

  .featured-brands {
    display: flex;
  }

  .grid-2 {
    flex: 1;
    grid-template: "Area . Area-2 Area-3 . Area-4"
    / 1fr 1fr 1fr 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    align-items: end;
    justify-items: stretch;
    display: grid;
  }

  .sponsorbox {
    padding-right: 44px;
  }

  .div-block-5 {
    position: relative;
    bottom: 71px;
  }
}

@media screen and (max-width: 991px) {
  .header {
    padding-left: 0;
    padding-right: 0;
    position: relative;
  }

  .container {
    width: 90%;
  }

  .container.large {
    z-index: 2;
    position: relative;
  }

  .container.large.absolute {
    height: 100%;
  }

  .container.margin-l {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .nav-wrap {
    align-items: center;
    padding-left: 0;
    padding-right: 0;
  }

  .nav-logo {
    width: 200px;
    padding-top: 4px;
  }

  .nav-link-wrap {
    display: flex;
  }

  .button.black.form {
    margin-left: 10px;
  }

  .button.black.mob {
    margin-right: 25px;
    padding-right: 18px;
  }

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

  .section.hero {
    height: auto;
    min-height: 0;
    max-height: none;
    margin-top: 0;
    padding-top: 64px;
    padding-bottom: 120px;
  }

  .hero_text-wrap {
    width: 60%;
  }

  .h1 {
    font-size: 48px;
    line-height: 1.2;
  }

  .creators_wrap {
    padding-top: 80px;
  }

  .creator_block {
    display: block;
  }

  .creator_container {
    padding-bottom: 80px;
  }

  .h3 {
    font-size: 28px;
    line-height: 1.2;
  }

  .b1-bar1 {
    height: 2px;
  }

  .how_wrap {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .h2 {
    font-size: 40px;
    line-height: 1.2;
  }

  .how_grid {
    grid-column-gap: 24px;
  }

  .how_text {
    margin-bottom: auto;
  }

  .feature_wrap {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .feature_wrap._2 {
    padding-bottom: 120px;
  }

  .brand_content {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
  }

  .brand_image {
    min-height: 0;
  }

  .brand_logo-wrap {
    padding: 15px;
  }

  .close-block {
    top: 24px;
    right: 24px;
  }

  .faq_container {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .h4 {
    font-size: 22px;
    line-height: 1.3;
  }

  .footer-grid {
    grid-column-gap: 22px;
    grid-row-gap: 50px;
    grid-template-columns: auto auto;
  }

  .contact {
    padding-top: 64px;
  }

  .about-menu {
    display: none;
  }

  .blur {
    background-color: rgba(0, 0, 0, .25);
  }

  .nav_button-wrap {
    padding-top: 20px;
    padding-right: 0;
    display: none;
  }

  .hamburger, .mobile-menu {
    display: none;
  }

  .mobile-menu-modal {
    background-image: linear-gradient(to bottom, var(--turquoise), var(--purple));
    flex-direction: column;
    width: 80%;
    min-width: auto;
    padding-top: 80px;
    padding-left: 40px;
    padding-right: 40px;
    display: block;
  }

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

  .navbar_container {
    width: 90%;
  }

  .button-2.ghost {
    margin-top: 35px;
    padding-top: 10px;
  }

  .holder-div {
    justify-content: space-between;
    padding-left: 26px;
    padding-right: 26px;
  }

  .testimonial-div {
    width: 11%;
    margin-right: 2%;
  }

  .testimonial-div.loaf {
    width: 7%;
  }

  .testimonial-div.dwell {
    width: 9%;
  }
}

@media screen and (max-width: 767px) {
  .header {
    padding-top: 16px;
    padding-bottom: 0;
  }

  .container {
    width: 90%;
  }

  .container.margin-l {
    padding-top: 40px;
    padding-bottom: 64px;
  }

  .nav-wrap {
    padding-left: 0;
    padding-right: 0;
  }

  .nav-logo {
    width: 200px;
    margin-top: 4px;
  }

  .nav-link-wrap {
    display: none;
  }

  .nav-link-wrap.in-menu {
    display: block;
  }

  .button.black.form {
    height: 56px;
    margin-top: 24px;
    margin-left: 0;
  }

  .button.nav {
    padding: 8px 16px;
  }

  .nav-link {
    margin-left: 16px;
    margin-right: 16px;
  }

  .nav-link.about-open {
    margin-left: 0;
    margin-right: 16px;
  }

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

  .section.hero {
    flex-direction: column;
    padding: 56px 0 0;
  }

  .hero_text-wrap {
    width: 100%;
    max-width: none;
  }

  .paragraph.hero {
    margin-top: 24px;
  }

  .hero-form {
    flex-direction: column;
    height: auto;
  }

  .creators_wrap {
    padding-top: 80px;
  }

  .creator_block {
    display: block;
  }

  .creator_container {
    padding-top: 48px;
    padding-bottom: 80px;
  }

  .hero_illustration {
    width: 100%;
    height: 408px;
    margin-top: 48px;
    display: none;
    position: relative;
  }

  .illustration {
    width: auto;
    height: 408px;
    margin-left: auto;
    margin-right: auto;
  }

  .full-centre {
    padding-left: 20px;
    padding-right: 20px;
  }

  .b1-bar2, .b1-bar1 {
    height: 2px;
  }

  .hero_mobile-image {
    width: 100%;
    margin-top: 16px;
    display: block;
  }

  .how_wrap {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .how_grid {
    grid-row-gap: 48px;
    grid-template-columns: 1fr;
    justify-items: center;
    margin-top: 48px;
  }

  .how_block {
    max-width: 300px;
  }

  .work-image {
    margin-bottom: 24px;
  }

  .feature_wrap {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .feature_wrap._2 {
    padding-bottom: 80px;
  }

  .feature_grid {
    flex-direction: column;
    grid-template-columns: 1fr;
    height: auto;
    display: flex;
  }

  .feature_grid.flip {
    flex-direction: column-reverse;
  }

  ._480 {
    max-width: none;
    margin-bottom: 40px;
  }

  .feature_image-wrap {
    max-width: none;
    height: auto;
  }

  .feature_image._1 {
    position: relative;
  }

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

  .brand_container {
    width: 100%;
    padding-bottom: 80px;
  }

  .brand_content {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    padding-top: 0;
    padding-bottom: 0;
  }

  .brand_grid-text {
    padding-top: 80px;
    padding-bottom: 40px;
  }

  .about-menu-wrap {
    width: 100vw;
    min-width: 0;
    padding-top: 80px;
    padding-left: 40px;
    padding-right: 40px;
  }

  .faq_container {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .h4 {
    font-size: 22px;
    line-height: 34px;
  }

  .footer-grid {
    flex-direction: column;
    grid-template-columns: auto;
    display: flex;
  }

  .footer-block {
    max-width: none;
  }

  .fotter_bottom-wrap {
    flex-direction: column-reverse;
    align-items: flex-start;
  }

  .small.right {
    margin: 10px 0;
  }

  .small.margin-bottom-16 {
    margin-bottom: 16px;
  }

  .footer-flex {
    flex-direction: column;
    margin-bottom: 40px;
  }

  .contact {
    padding-top: 64px;
  }

  .about-menu {
    z-index: 25;
    height: auto;
  }

  .hamburger {
    display: flex;
  }

  .mobile-menu {
    height: 0;
    margin-top: 16px;
    display: block;
    position: relative;
    overflow: hidden;
  }

  .mobile-menu-modal {
    background-image: linear-gradient(to right, var(--turquoise), var(--purple));
    width: 100vw;
    min-width: 0;
    padding: 24px 0;
    position: relative;
  }

  .mob-menu-wrap {
    align-items: center;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }

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

  .tabs-wrapper {
    display: flex;
  }

  .tab-link {
    border-bottom: 2px solid var(--off-white);
    text-align: center;
    border-left-style: none;
    justify-content: center;
    align-items: center;
    margin-left: 0;
    margin-right: 0;
    padding: 16px 8px;
    display: flex;
  }

  .tab-link.w--current {
    border-bottom-color: var(--black);
    border-left-style: none;
    margin-left: 0;
    padding: 16px 8px;
  }

  .legal-text-wrapper {
    padding-top: 24px;
  }

  .navbar_container {
    width: 90%;
  }

  .nav_logo {
    height: 28px;
  }

  .button-2.ghost {
    margin-top: 30px;
  }

  .button-2.ghost.partner-button.custom-button-margin-padding.cta-big.cta-big-form-button {
    font-size: 18px;
  }

  .featured-brands {
    flex-wrap: wrap;
    justify-content: space-between;
    margin-left: 0%;
    margin-right: 0%;
    padding: 20px 2%;
    display: flex;
  }

  .holder-div {
    flex-wrap: wrap;
    justify-content: center;
    padding-left: 0;
    padding-right: 0;
  }

  .testimonial-div {
    width: 30%;
    margin-bottom: 16px;
    margin-left: 1.5%;
    margin-right: 1.5%;
    padding-left: 30px;
    padding-right: 30px;
  }

  .testimonial-div.west-elm {
    padding-left: 25px;
    padding-right: 25px;
  }

  .testimonial-div.loaf, .testimonial-div.dwell {
    width: 30%;
  }
}

@media screen and (max-width: 479px) {
  body {
    font-size: 16px;
    line-height: 24px;
  }

  .header {
    padding-top: 16px;
  }

  .nav-logo {
    width: 180px;
    margin-right: 0;
  }

  .nav-link-wrap {
    display: none;
  }

  .nav-link-wrap.in-menu {
    display: block;
  }

  .button {
    padding-left: 16px;
    padding-right: 16px;
  }

  .button.black {
    margin-top: 11px;
    font-family: Varela Round, sans-serif;
  }

  .button.black.form {
    margin-top: 16px;
    margin-left: 0;
  }

  .button.nav.hide-on-mobile {
    display: inline-block;
  }

  .button.nav.sec {
    font-family: Varela Round, sans-serif;
  }

  .button.nav.sec.mob {
    border-width: 2px;
    border-color: var(--white);
    color: #fff;
    text-align: center;
    background-color: rgba(0, 0, 0, 0);
    margin-left: 37px;
    margin-right: 40px;
    font-size: 22px;
  }

  .nav-link.about-open {
    margin-left: 0;
  }

  .section.hero {
    margin-top: 11px;
    padding-top: 64px;
  }

  .section.footer {
    background-color: #cb2c1f;
  }

  .section.s_dolne {
    margin-top: 329px;
  }

  .section.s_dolne.warszataty {
    margin-top: 0;
  }

  .h1 {
    font-size: 40px;
  }

  .inline {
    margin-top: -67px;
    font-size: 55px;
  }

  .inline.statinline {
    margin-top: -76px;
  }

  .hero-form {
    flex-direction: column;
    height: auto;
    padding-left: 35px;
    padding-right: 35px;
  }

  .form-field {
    height: auto;
    margin-bottom: 14px;
    font-family: Varela Round, sans-serif;
  }

  .creators_wrap {
    background-color: #cb2c1f;
    padding-top: 64px;
  }

  .creator_block {
    background-color: rgba(0, 0, 0, 0);
    border: 1px solid rgba(0, 0, 0, 0);
    border-radius: 0;
    padding-top: 10px;
    padding-left: 10px;
    padding-right: 10px;
    display: block;
  }

  .creator_block.mob {
    margin-bottom: 70px;
    margin-left: -3px;
    padding: 13px 0 0 44px;
  }

  .creator_container {
    background-color: #cb2c1f;
    padding-bottom: 63px;
  }

  .block_username {
    font-size: 22px;
  }

  .hero_illustration {
    margin-top: 0;
    display: none;
    overflow: visible;
  }

  .illustration {
    width: 100%;
    height: 100%;
  }

  .h3.centre {
    text-align: center;
    margin-top: 0;
    margin-bottom: 9px;
    font-size: 24px;
  }

  .h3.centre.contact-header {
    margin-bottom: 32px;
  }

  .hero_mobile-image {
    order: -1;
    width: 100%;
    height: auto;
    margin-top: 24px;
    display: block;
  }

  .hero_mobile-image.mobiim {
    order: -1;
    align-self: flex-end;
    margin-top: -220px;
    padding-left: 141px;
    padding-right: 0;
  }

  .hero_mobile-image.mobiim.mainlogo {
    object-fit: contain;
    flex: 0 auto;
    order: -1;
    align-self: flex-end;
    margin-top: -100px;
    position: relative;
  }

  .how_wrap {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .h2 {
    font-size: 32px;
  }

  .h2.about-us {
    font-size: 40px;
  }

  .work-image {
    width: 80px;
  }

  .feature_wrap {
    padding-top: 0;
  }

  .feature_wrap._2 {
    padding-top: 0;
    padding-bottom: 69px;
  }

  .feature_wrap._2.ninjawrap, .feature_wrap._2.poznajorganizatora {
    padding-bottom: 0;
  }

  .feature_grid.flip {
    margin-top: 106px;
  }

  ._480.sticky {
    margin-bottom: 0;
  }

  .feature_image-wrap {
    margin-left: auto;
    margin-right: auto;
  }

  .feature_image-wrap.sec1 {
    width: 70%;
    margin-top: -27px;
  }

  .feature_image._1 {
    top: 0%;
  }

  .brand_container {
    padding-bottom: 64px;
  }

  .brand_content {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
  }

  .brand_logo-wrap {
    height: 60px;
  }

  .brand_logo {
    max-height: 60px;
  }

  .brand_grid-text {
    padding-top: 64px;
  }

  .about-menu-wrap {
    padding-left: 20px;
    padding-right: 20px;
  }

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

  .influencer-logo {
    width: 120px;
    margin-top: 20px;
  }

  .faq_container {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .faq_container.faqcontainer {
    padding-top: 0;
  }

  .h4 {
    margin-right: 20px;
    font-size: 20px;
    line-height: 28px;
  }

  .faq_arrow {
    width: 20px;
    margin-top: 10px;
  }

  .faq_top {
    align-items: flex-start;
  }

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

  .footer-grid {
    grid-row-gap: 36px;
    grid-template-columns: 1fr;
    margin-bottom: 36px;
  }

  .footer-text {
    margin-bottom: 24px;
  }

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

  .footer-block {
    margin-top: 24px;
  }

  .footer-small-text {
    margin-bottom: 24px;
  }

  .fotter_bottom-wrap {
    flex-direction: column-reverse;
    align-items: flex-start;
  }

  .small.right {
    margin: 10px 0;
  }

  .footer-flex {
    flex-direction: column;
    margin-bottom: 40px;
  }

  .contact {
    padding-top: 40px;
  }

  .hamburger {
    display: flex;
  }

  .mobile-menu {
    height: 0;
    margin-top: 16px;
    display: block;
    position: relative;
    overflow: hidden;
  }

  .mobile-menu-modal {
    margin-top: 0;
    padding: 24px 0;
    position: relative;
  }

  .mob-menu-wrap {
    align-items: center;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }

  .image-2 {
    border: 5px solid var(--white);
    border-radius: 20px;
  }

  .form-field-2 {
    min-width: 0;
  }

  .button-2.ghost {
    clear: none;
    margin-top: 18px;
    margin-bottom: 11px;
    margin-right: 0;
    padding-bottom: 11px;
  }

  .button-2.ghost.partner-button {
    text-align: center;
    padding-top: 10px;
  }

  .button-2.ghost.partner-button.custom-button-margin-padding.cta-big.cta-big-form-button {
    padding: 10px 20px;
    font-size: 14px;
  }

  .link {
    position: relative;
    top: -1px;
  }

  .featured-brands {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: space-around;
    margin-top: 33px;
    padding-top: 20px;
    padding-bottom: 0;
    display: flex;
  }

  .featured-brands.fb2 {
    margin-top: 0;
    padding-top: 0;
  }

  .holder-div {
    flex-flow: row;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    margin-right: 0%;
    overflow: scroll;
  }

  .img-block {
    max-width: 50%;
  }

  .testimonial-div {
    flex-direction: column;
    flex: none;
    justify-content: center;
    align-items: center;
    width: 30%;
    margin-bottom: 6px;
    padding-left: 10px;
    padding-right: 10px;
    display: block;
  }

  .testimonial-div.zapier, .testimonial-div.west-elm {
    padding-left: 0;
    padding-right: 0;
  }

  .testimonial-div.loaf {
    padding-left: 23px;
    padding-right: 23px;
  }

  .testimonial-div.dwell {
    width: 47%;
    padding-left: 40px;
    padding-right: 40px;
  }

  .grid-3 {
    grid-template: "Area Area-2 Area-3 . Area-5 Area-6"
                   ". . . . . ."
                   / 1fr 1fr 1fr;
  }

  .columns {
    display: block;
  }

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

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

  .sponsorbox {
    order: 0;
    margin-top: -44px;
    margin-right: -22px;
    padding-left: 0;
    padding-right: 0;
  }

  .sponsorbox.sp2 {
    margin-top: 6px;
    margin-left: -28px;
    margin-right: 0;
    padding-top: 0;
    padding-left: 0;
  }
}

#w-node-c3b3f129-cc55-0809-ae34-af08ca318d7f-ba493728 {
  justify-self: center;
}

#w-node-c3b3f129-cc55-0809-ae34-af08ca318d7a-ba493728 {
  align-self: center;
  justify-self: end;
}

#w-node-_18b19f71-6b22-a5f4-e094-e4db99115e84-ba493728 {
  align-self: center;
}

#w-node-_18b19f71-6b22-a5f4-e094-e4db99115e89-ba493728, #w-node-d232a750-ae1b-03cc-3465-4ab1effdb55a-ba493728 {
  justify-self: center;
}

#w-node-d232a750-ae1b-03cc-3465-4ab1effdb55d-ba493728 {
  align-self: center;
  justify-self: end;
}

#w-node-_184aed18-3fad-4c0b-1548-be732f791098-ba493728 {
  align-self: center;
}

#w-node-_184aed18-3fad-4c0b-1548-be732f7910a0-ba493728, #w-node-_343b2986-3001-f5e7-6d67-0011e20c2dd4-ba493728 {
  justify-self: center;
}

#w-node-_343b2986-3001-f5e7-6d67-0011e20c2dd7-ba493728 {
  align-self: center;
  justify-self: end;
}

#w-node-_4eaa18bf-6989-7f86-d99e-31b09e8b93d4-44eab212 {
  align-self: center;
}

#w-node-_0f07fd7f-39cc-efa0-f9c1-b30028744934-44eab212, #w-node-c3b3f129-cc55-0809-ae34-af08ca318d7f-44eab212 {
  justify-self: center;
}

#w-node-c3b3f129-cc55-0809-ae34-af08ca318d7a-44eab212 {
  align-self: center;
  justify-self: end;
}

#w-node-c3b3f129-cc55-0809-ae34-af08ca318d7f-d3e40907 {
  justify-self: center;
}

#w-node-c3b3f129-cc55-0809-ae34-af08ca318d7a-d3e40907 {
  align-self: center;
  justify-self: end;
}

#w-node-_18b19f71-6b22-a5f4-e094-e4db99115e84-d3e40907 {
  align-self: center;
}

#w-node-_18b19f71-6b22-a5f4-e094-e4db99115e89-d3e40907, #w-node-d232a750-ae1b-03cc-3465-4ab1effdb55a-d3e40907 {
  justify-self: center;
}

#w-node-d232a750-ae1b-03cc-3465-4ab1effdb55d-d3e40907 {
  align-self: center;
  justify-self: end;
}

#w-node-_184aed18-3fad-4c0b-1548-be732f791098-d3e40907 {
  align-self: center;
}

#w-node-_184aed18-3fad-4c0b-1548-be732f7910a0-d3e40907, #w-node-c3b3f129-cc55-0809-ae34-af08ca318d7f-f8c40f30 {
  justify-self: center;
}

#w-node-c3b3f129-cc55-0809-ae34-af08ca318d7a-f8c40f30 {
  align-self: center;
  justify-self: end;
}

#w-node-_18b19f71-6b22-a5f4-e094-e4db99115e84-f8c40f30 {
  align-self: center;
}

#w-node-_18b19f71-6b22-a5f4-e094-e4db99115e89-f8c40f30, #w-node-d232a750-ae1b-03cc-3465-4ab1effdb55a-f8c40f30 {
  justify-self: center;
}

#w-node-d232a750-ae1b-03cc-3465-4ab1effdb55d-f8c40f30 {
  align-self: center;
  justify-self: end;
}

#w-node-_184aed18-3fad-4c0b-1548-be732f791098-f8c40f30 {
  align-self: center;
}

#w-node-_184aed18-3fad-4c0b-1548-be732f7910a0-f8c40f30 {
  justify-self: center;
}

@media screen and (min-width: 1440px) {
  #w-node-c3b3f129-cc55-0809-ae34-af08ca318d7a-ba493728, #w-node-_18b19f71-6b22-a5f4-e094-e4db99115e84-ba493728, #w-node-d232a750-ae1b-03cc-3465-4ab1effdb55d-ba493728, #w-node-_184aed18-3fad-4c0b-1548-be732f791098-ba493728, #w-node-_343b2986-3001-f5e7-6d67-0011e20c2dd7-ba493728, #w-node-_4eaa18bf-6989-7f86-d99e-31b09e8b93d4-44eab212, #w-node-c3b3f129-cc55-0809-ae34-af08ca318d7a-44eab212, #w-node-c3b3f129-cc55-0809-ae34-af08ca318d7a-d3e40907, #w-node-_18b19f71-6b22-a5f4-e094-e4db99115e84-d3e40907, #w-node-d232a750-ae1b-03cc-3465-4ab1effdb55d-d3e40907, #w-node-_184aed18-3fad-4c0b-1548-be732f791098-d3e40907, #w-node-c3b3f129-cc55-0809-ae34-af08ca318d7a-f8c40f30, #w-node-_18b19f71-6b22-a5f4-e094-e4db99115e84-f8c40f30, #w-node-d232a750-ae1b-03cc-3465-4ab1effdb55d-f8c40f30, #w-node-_184aed18-3fad-4c0b-1548-be732f791098-f8c40f30 {
    align-self: center;
  }
}

@media screen and (max-width: 767px) {
  #w-node-c3b3f129-cc55-0809-ae34-af08ca318d7f-ba493728 {
    grid-area: 2 / 1 / 2 / 2;
  }

  #w-node-c3b3f129-cc55-0809-ae34-af08ca318d7a-ba493728 {
    justify-self: start;
  }

  #w-node-d232a750-ae1b-03cc-3465-4ab1effdb55a-ba493728 {
    grid-area: 2 / 1 / 2 / 2;
  }

  #w-node-d232a750-ae1b-03cc-3465-4ab1effdb55d-ba493728 {
    justify-self: start;
  }

  #w-node-_343b2986-3001-f5e7-6d67-0011e20c2dd4-ba493728 {
    grid-area: 2 / 1 / 2 / 2;
  }

  #w-node-_343b2986-3001-f5e7-6d67-0011e20c2dd7-ba493728 {
    justify-self: start;
  }

  #w-node-c3b3f129-cc55-0809-ae34-af08ca318d7f-44eab212 {
    grid-area: 2 / 1 / 2 / 2;
  }

  #w-node-c3b3f129-cc55-0809-ae34-af08ca318d7a-44eab212 {
    justify-self: start;
  }

  #w-node-c3b3f129-cc55-0809-ae34-af08ca318d7f-d3e40907 {
    grid-area: 2 / 1 / 2 / 2;
  }

  #w-node-c3b3f129-cc55-0809-ae34-af08ca318d7a-d3e40907 {
    justify-self: start;
  }

  #w-node-d232a750-ae1b-03cc-3465-4ab1effdb55a-d3e40907 {
    grid-area: 2 / 1 / 2 / 2;
  }

  #w-node-d232a750-ae1b-03cc-3465-4ab1effdb55d-d3e40907 {
    justify-self: start;
  }

  #w-node-c3b3f129-cc55-0809-ae34-af08ca318d7f-f8c40f30 {
    grid-area: 2 / 1 / 2 / 2;
  }

  #w-node-c3b3f129-cc55-0809-ae34-af08ca318d7a-f8c40f30 {
    justify-self: start;
  }

  #w-node-d232a750-ae1b-03cc-3465-4ab1effdb55a-f8c40f30 {
    grid-area: 2 / 1 / 2 / 2;
  }

  #w-node-d232a750-ae1b-03cc-3465-4ab1effdb55d-f8c40f30 {
    justify-self: start;
  }
}


@font-face {
  font-family: 'Circularstd';
  src: url('../fonts/CircularStd-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Circularstd';
  src: url('../fonts/CircularStd-Book.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}