:root {
  --black: black;
  --white: white;
  --primary: "Helvetica Neue", Arial, sans-serif;
  --hbs_green: #007a33;
  --hbs_white: var(--white);
  --grey: #d9d9d9;
  --off-white: #f5f3f2;
  --hbs_green_light: #11a34e;
  --turquoise: #c1dedc;
  --purple: #e6def0;
  --secondary: Arial, "Helvetica Neue", Helvetica, sans-serif;
  --hbs_yellow: #febb30;
  --hbs_grey: #333;
  --hbs_brown: #94450b;
  --light_grey: #cbced2;
  --transparent: #fff0;
  --light-grey: #f2f2f2;
  --dark-grey: #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;
}

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

.w-layout-layout {
  grid-row-gap: 20px;
  grid-column-gap: 20px;
  grid-auto-columns: 1fr;
  justify-content: center;
  padding: 20px;
}

.w-layout-cell {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.w-embed-youtubevideo {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/static/youtube-placeholder.2b05e7d68d.svg');
  background-position: 50%;
  background-size: cover;
  width: 100%;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  position: relative;
}

.w-embed-youtubevideo:empty {
  min-height: 75px;
  padding-bottom: 56.25%;
}

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

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

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: #0000;
  justify-content: space-between;
  padding: 24px 40px;
  position: relative;
  inset: 0% 0% auto;
}

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

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

.container.large.absolute {
  height: 550px;
  margin-left: auto;
  margin-right: auto;
}

.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: #0000;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-top: 0;
  padding: 0;
  display: flex;
  position: relative;
}

.nav-logo {
  width: 240px;
  max-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 {
  background-color: var(--black);
  font-family: var(--primary);
  text-transform: uppercase;
  mix-blend-mode: normal;
  border-width: 0;
  border-radius: 0;
  margin-left: 24px;
  font-weight: 800;
}

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

.button.nav.hide-on-mobile {
  border-color: var(--hbs_green);
  font-family: var(--primary);
  text-align: center;
  -webkit-text-stroke-color: var(--hbs_green);
  text-transform: uppercase;
  -webkit-text-fill-color: inherit;
  background-clip: border-box;
  border-radius: 0;
  font-weight: 800;
  position: static;
}

.button.nav.hide-on-mobile:hover {
  background-color: var(--hbs_green);
}

.button.nav.black-button {
  border-color: var(--hbs_green);
  background-color: var(--black);
  font-family: var(--primary);
  color: var(--hbs_white);
  text-align: center;
  -webkit-text-stroke-color: var(--hbs_green);
  text-transform: uppercase;
  -webkit-text-fill-color: inherit;
  background-clip: border-box;
  border-radius: 0;
  font-weight: 800;
  position: static;
}

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

.button.nav.white-button {
  border-color: var(--hbs_green);
  background-color: var(--hbs_white);
  font-family: var(--primary);
  color: var(--black);
  text-align: center;
  -webkit-text-stroke-color: var(--hbs_green);
  text-transform: uppercase;
  -webkit-text-fill-color: inherit;
  background-clip: border-box;
  border-radius: 18px;
  font-weight: 800;
  position: static;
}

.button.nav.white-button:hover {
  background-color: var(--grey);
}

.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 {
  background-color: var(--hbs_white);
  width: 100%;
  padding-top: 1rem;
  padding-left: 40px;
  padding-right: 40px;
  position: relative;
}

.section.hero {
  background-color: var(--hbs_green);
  -webkit-text-fill-color: inherit;
  background-image: url('../images/header-pattern.png');
  background-position: 0 0;
  background-size: auto;
  background-clip: border-box;
  justify-content: center;
  align-items: center;
  height: 70vh;
  max-height: 800px;
  padding-top: 0;
  display: flex;
  overflow: visible;
}

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

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

.section.gradient-180 {
  background-image: linear-gradient(180deg, var(--hbs_green), white);
}

.section.gradient-180.padding-section-large {
  display: none;
}

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

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

.section.section-green {
  background-color: var(--hbs_green);
}

.section.section-green.section-margin-bottom {
  margin-bottom: 60px;
}

.section.section-margin-bottom {
  margin-bottom: 120px;
}

.section.section-green-copy {
  background-color: var(--hbs_green);
}

.section.section-green-copy.section-margin-bottom {
  margin-bottom: 60px;
}

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

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

.inline {
  font-family: var(--primary);
  color: var(--hbs_white);
  font-size: 42px;
  display: inline-block;
  position: relative;
}

.paragraph.hero {
  font-family: var(--primary);
  color: var(--hbs_white);
  max-width: 480px;
  margin-top: 32px;
  margin-bottom: 40px;
}

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

.form-field {
  background-color: var(--white);
  border: 2px solid #0000001a;
  border-radius: 12px;
  height: 100%;
  margin-bottom: 0;
  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: #00000080;
}

.form-field.white {
  background-color: var(--white);
  border-color: #00000026;
}

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

.creators_wrap {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: auto;
  max-width: none;
  padding-top: 60px;
  display: flex;
  position: relative;
  overflow: visible;
}

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

.creator_container {
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding: 64px 24px 60px;
  overflow: hidden;
}

.creator_content {
  display: flex;
}

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

.block-profile-img {
  vertical-align: baseline;
  align-self: flex-start;
  width: 64px;
  height: 64px;
  margin-right: 24px;
}

.block_username {
  font-family: var(--primary);
  font-size: 24px;
  font-weight: 700;
}

.block_followers {
  font-family: var(--primary);
  margin-top: 5px;
}

.block_text {
  font-family: var(--primary);
  max-width: 330px;
}

.hero_illustration {
  width: 46%;
  height: 550px;
  max-height: 95%;
  position: absolute;
  inset: auto 0% 0% auto;
  overflow: visible;
}

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

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

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

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

.illustration._4 {
  z-index: 4;
  box-sizing: content-box;
  aspect-ratio: auto;
  outline-offset: 0px;
  mix-blend-mode: normal;
  object-fit: fill;
  border: 0 solid #000;
  border-radius: 0;
  outline: 3px #000;
  width: auto;
  max-width: 100%;
  height: 550px;
  max-height: 100%;
  margin-bottom: 0;
  margin-right: -20px;
  position: absolute;
  inset: auto 0% 0% auto;
  overflow: clip;
}

.overflow-hidden {
  overflow: hidden;
}

.full-centre {
  flex-flow: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 20px;
  margin-bottom: 20px;
  display: flex;
}

.h3 {
  font-family: var(--primary);
  color: var(--hbs_white);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 32px;
  line-height: 40px;
}

.h3.centre {
  font-family: var(--primary);
  color: var(--black);
  text-align: center;
}

.h3.centre.contact-header {
  font-family: var(--primary);
  margin-bottom: 40px;
}

.h3.centre.contact-header.text-color-white, .h3.centre.color_white {
  color: var(--hbs_white);
}

.h3.centre.creators_wrap {
  padding-top: 20px;
}

.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: 2rem;
  padding-bottom: 2rem;
  display: flex;
}

.h2 {
  font-family: var(--primary);
  text-align: center;
  align-self: auto;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 20px;
  padding-bottom: 20px;
  font-size: 56px;
  line-height: 64px;
}

.h2.how {
  margin-bottom: 32px;
}

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

.how_grid {
  grid-column-gap: 19px;
  grid-row-gap: 120px;
  mix-blend-mode: normal;
  flex-flow: row;
  flex: 0 auto;
  order: 0;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: start center;
  width: 100%;
  margin-top: 88px;
  font-family: Montserrat, sans-serif;
  display: grid;
}

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

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

.how_text {
  font-family: var(--primary);
  text-align: center;
  flex: 0 auto;
  align-self: auto;
  margin-top: 16px;
}

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

.feature_wrap._2 {
  padding-top: 1rem;
  padding-bottom: 2.5rem;
}

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

.feature_grid.flip {
  height: auto;
}

._480 {
  max-width: 480px;
}

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

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

.feature_image {
  width: 100%;
  position: absolute;
  inset: 0%;
}

.feature_image._1, .feature_image._2 {
  opacity: 1;
}

.feature_image._3 {
  aspect-ratio: auto;
  vertical-align: baseline;
  object-fit: cover;
  width: 100%;
  max-width: 100%;
}

.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;
  inset: 0% 0% 0% auto;
  overflow: auto;
}

.close-block {
  z-index: 3;
  padding: 10px;
  position: absolute;
  inset: 22px 22px auto auto;
}

.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 #00000026;
  width: 100%;
  margin-top: 72px;
  padding-top: 24px;
}

.h4 {
  font-family: var(--primary);
  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: #00000026;
  height: 1px;
  margin-top: 24px;
  margin-bottom: 24px;
}

.faq_text {
  font-family: var(--secondary);
  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 {
  max-width: 480px;
  margin: 24px auto 40px;
}

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

.line {
  background-color: #00000026;
  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: 2rem;
  display: flex;
}

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

.blur {
  background-color: #00000040;
  position: absolute;
  inset: 0%;
}

.loader {
  z-index: 99;
  background-color: #fff;
  justify-content: center;
  align-items: center;
  display: none;
  position: fixed;
  inset: 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;
  inset: 0% 0% auto;
}

.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;
  inset: 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;
  inset: 0% 0% 0% auto;
  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 {
  background-color: var(--hbs_white);
  z-index: 10;
  justify-content: center;
  align-items: center;
  height: 100px;
  margin-top: .3em;
  margin-bottom: .3em;
  padding-bottom: 10px;
  padding-left: 0;
  padding-right: 0;
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  display: flex;
  position: sticky;
  top: 0;
}

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

.footer-credit {
  margin-left: 10px;
  font-size: 16px;
  line-height: 24px;
}

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

.button-icon-small-secondary {
  z-index: 500;
  color: #161616;
  letter-spacing: .8px;
  text-transform: uppercase;
  background-color: #fff;
  border: 2px solid #0a0a0a;
  border-radius: 8px;
  align-items: center;
  padding: 12px 20px 12px 18px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all .4s;
  display: flex;
}

.button-icon-small-secondary:hover {
  transform: translate(0, -2px);
}

.button-icon-small-secondary.margin-right-small {
  margin-right: 16px;
}

.button-icon {
  width: 24px;
  height: 24px;
  margin-right: 12px;
  position: relative;
}

.section_testimonial21 {
  overflow: hidden;
}

.padding-section-large {
  padding-top: 7rem;
  padding-bottom: 7rem;
}

.margin-bottom {
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
}

.margin-bottom.margin-small {
  object-fit: fill;
}

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

.max-width-large {
  width: 100%;
  max-width: 48rem;
}

.text-size-medium {
  font-family: var(--primary);
  color: var(--hbs_white);
  font-size: 1.125rem;
}

.text-size-medium.text-color-darkgrey {
  font-family: var(--secondary);
}

.testimonial21_component {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: stretch;
  display: flex;
}

.testimonial21_loop-trigger {
  display: flex;
}

.testimonial21_content {
  border: 1px solid #0000;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 25rem;
  min-width: 25rem;
  margin-right: 2rem;
  padding: 2rem;
  display: flex;
}

.testimonial21_rating-wrapper {
  margin-bottom: 1.5rem;
  display: flex;
}

.testimonial21_rating-icon {
  color: #0000;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 1.25rem;
  height: 1.25rem;
  margin-right: .25rem;
  display: flex;
}

.testimonial21_client {
  text-align: left;
  align-items: center;
  margin-top: auto;
  display: flex;
}

.testimonial21_client-image-wrapper {
  margin-right: 1rem;
}

.testimonial21_customer-image {
  object-fit: cover;
  border-radius: 100%;
  width: 3rem;
  min-width: 3rem;
  height: 3rem;
  min-height: 3rem;
}

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

.bold-text {
  font-family: Montserrat, sans-serif;
}

.footer_cta-2 {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  background-color: #e4e2df;
  justify-content: center;
  align-items: center;
  padding: 1.25rem 2.5rem;
  display: flex;
}

.text-weight-medium {
  font-family: var(--primary);
  text-align: left;
  font-weight: 400;
}

.text-weight-medium.footer_cta-2-copy {
  font-family: Montserrat, sans-serif;
}

.footer_cta-button {
  color: #161616;
  text-align: center;
  background-color: #0000;
  border: 1px solid #16161626;
  border-radius: .5rem;
  padding: .75rem 1.25rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  transition: all .2s;
}

.footer_cta-button:hover {
  background-color: #d8d5d1;
}

.libraries-why_text {
  font-family: var(--primary);
  margin-top: 10px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
}

.text-style-link {
  text-decoration: underline;
}

.libraries-why_text-overlay {
  background-image: linear-gradient(#0000, #f1f0ee);
  position: absolute;
  inset: 0%;
}

.libraries-why_text-overlay.clickable-off {
  background-image: linear-gradient(#0000, #f1f0ee 95%);
  display: none;
}

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

.libraries-why_button {
  border-radius: .5rem;
  padding: .5rem .75rem;
  font-size: 1.125rem;
  font-weight: 500;
  transition: all .2s;
}

.libraries-why_button:hover {
  background-color: #e4e2df;
}

.libraries-why_button.w--current {
  color: #000;
}

.libraries-why_heading-wrapper {
  text-align: center;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.libraries-why_button-row {
  justify-content: center;
  display: none;
  position: absolute;
  inset: auto 0% 0%;
}

.max-width-custom2 {
  max-width: 50rem;
}

.padding-bottom {
  padding-top: 0;
  padding-left: 0;
  padding-right: 0;
}

.padding-bottom.padding-xxhuge.extra-padding-desktop {
  padding-bottom: 1rem;
}

.libraries-why_text-underline {
  background-image: url('../images/why-underline.svg');
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-size: 13.5rem;
  margin-bottom: 0;
  margin-left: -5rem;
  margin-right: -5rem;
  padding-bottom: 3rem;
  padding-left: 5rem;
  padding-right: 5rem;
  display: inline-block;
}

.heading-xhuge {
  font-family: Montserrat, sans-serif;
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1.2;
}

.libraries-why_text-wrapper {
  text-align: left;
  padding-bottom: 2rem;
  position: relative;
  overflow: hidden;
}

.libraries-howitworks_video-wrapper {
  z-index: 1;
  background-color: #fff;
  border-radius: .375rem;
  flex: none;
  align-items: center;
  width: 90%;
  padding-top: 56%;
  display: flex;
  position: absolute;
  left: auto;
  right: auto;
  overflow: hidden;
  box-shadow: 0 12px 2rem #0000001a;
}

.libraries-howitworks_tabs-menu {
  z-index: 1;
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  background-color: #fff;
  border-radius: .75rem;
  align-items: center;
  padding: .5rem;
  display: flex;
  position: sticky;
  top: 1.5rem;
  box-shadow: 0 2px .25rem #0000001a;
}

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

.libraries-howitworks_content-right {
  background-color: #d8d5d1;
  background-image: url('../images/noise.png'), url('../images/bg-blur3.svg');
  background-position: 0 0, 100% 100%;
  background-repeat: repeat, no-repeat;
  background-size: 18.75rem, 87.5rem;
  background-attachment: scroll, fixed;
  border-radius: 1rem;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 33.75rem;
  padding-top: 4rem;
  padding-bottom: 4rem;
  display: flex;
  position: absolute;
  overflow: hidden;
}

.libraries-howitworks_content-right.is-item3 {
  border: 1px solid var(--black);
  background-color: var(--white);
  background-image: url('../images/noise.png'), linear-gradient(180deg, var(--white) 60%, var(--hbs_yellow));
  background-position: 0 0, 0 0;
  background-repeat: repeat, repeat;
  background-size: 18.75rem, auto;
  background-attachment: scroll, scroll;
}

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

.libraries-howitworks_content {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  max-width: 30rem;
  height: 100vh;
  display: flex;
}

.libraries-howitworks_component {
  grid-column-gap: 5rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: .75fr 1fr;
  grid-auto-columns: 1fr;
  align-items: stretch;
  display: grid;
  position: relative;
}

.libraries-howitworks_mobile-image-wrapper {
  display: none;
}

.libraries-howitworks_desktop-content-wrapper {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  display: flex;
  position: sticky;
  top: 0;
}

.libraries-howitworks_content-wrapper {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.libraries-howitworks_mobile-video {
  object-position: 0% 50%;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.libraries-howitworks_tab-link {
  color: #161616a6;
  text-align: center;
  background-color: #fff;
  border-radius: .5rem;
  flex: none;
  padding: .5rem 1.25rem;
  font-weight: 500;
}

.libraries-howitworks_tab-link.w--current {
  color: #161616;
  background-color: #f1f0ee;
}

.libraries-howitworks_video {
  object-position: 0% 50%;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  inset: 0%;
}

.heading-huge {
  font-family: var(--primary);
  color: var(--black);
  font-size: 3.5rem;
  font-weight: 500;
  line-height: 1.2;
}

.header_cta.footer_cta-2-copy {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  background-color: var(--hbs_green);
  color: var(--hbs_white);
  z-index: 10;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  padding: .5rem 0;
  font-size: 16px;
  display: flex;
  position: static;
  inset: 0% 0% auto;
}

.footer_cta-2-copy {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  background-color: #e4e2df;
  justify-content: center;
  align-items: center;
  padding: 1.25rem 2.5rem;
  display: flex;
}

.footer-light {
  background-color: var(--hbs_grey);
  color: var(--hbs_white);
  border-bottom: 1px solid #e4ebf3;
  padding: 80px 30px 40px;
  position: relative;
}

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

.container-2.container-large-4 {
  max-width: none;
}

.footer-wrapper-two {
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

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

.footer-title {
  font-family: var(--secondary);
  color: var(--hbs_white);
  font-size: 18px;
  font-weight: 500;
  line-height: 32px;
}

.footer-link-two {
  color: #1a1b1f;
  margin-top: 20px;
  text-decoration: none;
}

.footer-link-two:hover {
  color: #1a1b1fbf;
}

.footer-form {
  width: 315px;
  max-width: 100%;
  margin-bottom: 0;
}

.footer-form-block {
  justify-content: center;
  align-items: center;
  margin-top: 24px;
  display: flex;
}

.footer-form-field {
  border: 1px solid #a6b1bf;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  height: 48px;
  margin-bottom: 0;
  padding: 12px 16px;
  font-size: 14px;
  line-height: 22px;
  transition: all .2s;
}

.footer-form-field:hover, .footer-form-field:focus {
  border-color: #76879d;
}

.footer-form-field::placeholder {
  color: #1a1b1fcc;
  font-size: 14px;
  line-height: 22px;
}

.footer-form-submit {
  background-color: #1a1b1f;
  background-image: url('../images/');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: auto;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  width: 50px;
  height: 48px;
  transition: all .2s;
}

.footer-form-submit:hover {
  background-color: #3a4554;
}

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

.footer-bottom {
  font-family: var(--primary);
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.footer-copyright {
  font-family: var(--primary);
  color: var(--hbs_white);
}

.footer-social-block-two {
  justify-content: flex-start;
  align-items: center;
  margin-top: 0;
  margin-left: -12px;
  display: flex;
}

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

.link {
  color: var(--hbs_white);
}

.image-2 {
  vertical-align: baseline;
  margin-bottom: 57px;
  margin-left: 0;
}

.link-2, .link-3 {
  color: var(--hbs_white);
}

.previous-button {
  opacity: .35;
  color: #000;
  text-indent: -2px;
  border-bottom: 1px dashed #0006;
  flex: none;
  align-self: center;
  padding: 5px 0;
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  transition: opacity .2s ease-in;
}

.previous-button:hover {
  opacity: 1;
  border-bottom-color: #0000008c;
}

.checkbox-label {
  z-index: 3;
  opacity: .45;
  text-align: right;
  letter-spacing: 0;
  text-transform: none;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 0;
  padding-left: 55px;
  padding-right: 20px;
  font-family: Montserrat, sans-serif;
  font-size: 1.1em;
  line-height: 1em;
  display: flex;
  position: absolute;
  inset: 0;
}

.checkbox-label.no-label {
  padding-left: 0;
  padding-right: 0;
}

.form-wrapper {
  background-color: #fff;
  border: 5px solid #00000026;
  border-radius: 25px;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
  display: block;
  box-shadow: 0 0 100px #0000004d;
}

.checkbox-wrapper {
  z-index: 1;
  background-color: #e1e4e940;
  background-image: url('../images/unchecked.png');
  background-position: 20px;
  background-repeat: no-repeat;
  background-size: 25px;
  border: 2px solid #cbced2;
  border-radius: 10px;
  width: 100%;
  height: 60px;
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  transition: border-color .2s ease-in;
  display: block;
  position: relative;
}

.checkbox-wrapper:hover {
  border-color: #0000004d;
}

.checkbox-wrapper:active {
  transform: scale(1.02);
}

.checkbox-wrapper.checkbox-square {
  background-position: 50%;
  background-size: 20px;
  border-radius: 5px;
  flex: none;
  width: 25px;
  height: 25px;
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 10px;
}

.checkbox-ticker {
  z-index: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
  margin-top: 0;
  margin-left: 0;
  position: absolute;
  inset: 0;
}

.error-message-2 {
  background-color: var(--hbs_brown);
  color: #fff;
  text-align: center;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
  padding-top: 20px;
  padding-bottom: 20px;
  font-size: 1em;
  line-height: 1em;
}

.form-content {
  width: 60%;
  margin-bottom: -20px;
}

.form-content.final {
  margin-top: -20px;
}

.form-title-line {
  background-color: #000;
  border-radius: 3px;
  width: 25px;
  height: 4px;
  margin: 25px auto 50px;
  display: block;
}

.step-paginator {
  background-color: #0000;
  height: 100%;
  position: relative;
}

.previous {
  justify-content: center;
  align-items: center;
  width: auto;
  max-width: 100px;
  height: 35px;
  margin: auto auto 30px 30px;
  display: flex;
  top: 0;
  bottom: 0;
  left: 0;
}

.checkbox-active-overlay {
  z-index: 2;
  opacity: 0;
  background-color: #edeff0;
  background-image: url('../images/checked.png');
  background-position: 20px;
  background-repeat: no-repeat;
  background-size: 25px;
  border: 2px solid #6c33da;
  border-radius: 10px;
  height: auto;
  margin: -2px;
  position: absolute;
  inset: 0;
}

.checkbox-active-overlay.square-overlay {
  background-position: 50%;
  background-size: 20px;
  border-radius: 5px;
}

.extra-option-wrap {
  color: #00000059;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  font-size: 1.1em;
  display: flex;
}

.step {
  background-color: #f0f1f3;
  border-radius: 20px;
  flex-wrap: wrap;
  width: 100%;
  height: 100%;
  padding-top: 0;
  padding-bottom: 0;
  position: static;
}

.form-section-title {
  font-family: var(--primary);
  margin-bottom: 10px;
  font-size: 1.6em;
  font-weight: 600;
  line-height: 1.5em;
}

.collaborate-form-step {
  text-align: center;
  background-color: #fff;
  border-bottom: 1px solid #0000001a;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  min-height: 500px;
  margin-bottom: 100px;
  margin-left: auto;
  margin-right: auto;
  padding: 100px 0 75px;
  display: flex;
  position: relative;
}

.field {
  border: 2px solid var(--light_grey);
  color: var(--hbs_grey);
  text-align: left;
  object-fit: fill;
  background-color: #e1e4e940;
  border-radius: 10px;
  height: auto;
  margin-top: 10px;
  margin-bottom: 30px;
  padding: 15px 25px;
  font-family: Montserrat, sans-serif;
  font-size: 1.2em;
  font-weight: 500;
  line-height: 1.5em;
  transition: border .2s ease-in;
}

.field:focus {
  border-color: var(--hbs_green);
  font-weight: 600;
}

.field.area {
  height: 150px;
  min-height: 150px;
  max-height: 150px;
}

.next {
  justify-content: center;
  align-items: center;
  width: auto;
  max-width: 159px;
  height: 47px;
  margin: auto auto 25px;
  display: block;
  bottom: 0;
  left: 0;
  right: 0;
}

.step-counter {
  color: #00000059;
  margin-bottom: 25px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.success-message-2 {
  background-color: var(--hbs_green);
  background-image: linear-gradient(135deg, var(--hbs_green), var(--hbs_green_light));
  color: #fff;
  letter-spacing: 1px;
  border-radius: 20px;
  padding: 50px;
  font-size: 1.2em;
  line-height: 1.5em;
}

.next-button {
  aspect-ratio: auto;
  background-color: var(--hbs_green);
  font-family: var(--primary);
  border-radius: 5px;
  flex: 1;
  align-self: center;
  height: 50px;
  padding: 10px 20px 15px;
  font-size: 20px;
  transition: background-color .2s ease-in;
}

.next-button:hover {
  background-color: var(--hbs_green_light);
}

.submit-button {
  background-color: var(--hbs_green);
  box-shadow: none;
  letter-spacing: 1px;
  border-radius: 10px;
  width: 60%;
  height: auto;
  margin-bottom: -80px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 20px;
  padding-bottom: 20px;
  font-family: Montserrat, sans-serif;
  font-size: 1.2em;
  font-weight: 700;
  line-height: 1em;
  transition: background-color .2s ease-in, box-shadow .2s ease-in;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.submit-button:hover {
  background-color: var(--hbs_green_light);
  box-shadow: 0 0 20px #0000004d;
}

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

.bold-text-2, .bold-text-3 {
  font-family: var(--primary);
  color: var(--black);
}

.bold-text-4 {
  font-family: var(--primary);
  font-size: 2.2rem;
}

.container-3 {
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  max-width: 1232px;
  margin-bottom: auto;
  padding-bottom: 0;
  display: flex;
  position: relative;
}

.container-3.container {
  max-width: none;
}

.step-content-block {
  text-align: left;
  align-self: center;
  position: relative;
}

.img-block {
  justify-content: center;
  align-self: center;
  align-items: center;
  width: 40%;
  display: flex;
}

.dot {
  z-index: 3;
  background-color: #eeeff4;
  border-radius: 50%;
  width: 12px;
  height: 12px;
  margin-top: -6px;
  margin-bottom: -6px;
  position: relative;
}

.step-2 {
  z-index: 2;
  background-color: #fff;
  border-radius: 16px;
  align-items: center;
  padding: 12%;
  display: flex;
  position: relative;
}

.scoll-wrap {
  flex-direction: column;
  align-items: center;
  height: 100%;
  display: flex;
  position: absolute;
  bottom: 50%;
}

.content-block {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
  position: sticky;
  top: 0;
}

.bg-shadow {
  z-index: 1;
  border-radius: 16px;
  position: absolute;
  inset: 0%;
  box-shadow: 7px 7px 20px #12121212;
}

.content-wrap {
  justify-content: flex-end;
  width: 40%;
  display: flex;
}

.label {
  color: var(--hbs_green);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
}

.steps-clone {
  flex-direction: column;
  justify-content: center;
  margin-top: 0;
  display: flex;
  position: relative;
}

.step-block {
  flex-wrap: nowrap;
  place-content: center space-around;
  align-items: center;
  min-height: 60vh;
  margin-top: -1px;
  display: flex;
  position: relative;
}

.scroll-base {
  transform-origin: 50% 0;
  background-color: #eeeff4;
  width: 6px;
  height: 100%;
}

.content {
  margin-top: 24px;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.4;
}

.scroll-animate {
  background-color: var(--hbs_green);
  transform-origin: 50% 0;
  width: 6px;
  height: 100%;
  position: absolute;
  bottom: 0;
}

.heading {
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Montserrat, sans-serif;
  font-size: 20px;
  display: flex;
}

.paragraph-2 {
  font-family: var(--secondary);
}

.bold-text-5 {
  font-family: var(--primary);
}

.paragraph-3, .bold-text-6, .paragraph-4 {
  font-family: Montserrat, sans-serif;
}

.container-4 {
  background-color: var(--hbs_green);
  width: 100%;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.video-wrapper {
  cursor: pointer;
  border-radius: .3125rem;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1232px;
  max-height: none;
  padding-top: 2rem;
  display: flex;
  position: relative;
  overflow: hidden;
}

.video-wrapper.container-2 {
  overflow: hidden;
}

.autoplay-code {
  display: none;
}

.video-thumbnail {
  z-index: 1;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 0%;
}

.thumbnail {
  z-index: -1;
  opacity: .4;
  transform: scale3d(1none, 1none, 1none);
  transform-style: preserve-3d;
  width: 100%;
  max-width: 1232%;
  height: 100%;
  transition: transform 1s cubic-bezier(.4, .01, .165, .99), opacity .7s cubic-bezier(.4, .01, .165, .99);
  position: absolute;
  inset: 0%;
}

.thumbnail:hover {
  opacity: .7;
}

.play-icon {
  color: #fff;
  width: 12%;
  position: relative;
}

.video-embed {
  z-index: 0;
  opacity: 0;
  background-image: none;
  position: relative;
}

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

.field-label {
  color: #160042;
  letter-spacing: -.02em;
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 20px;
}

.field-wrap {
  align-items: center;
  display: flex;
  position: relative;
}

.date-field {
  border: 1px solid var(--light_grey);
  color: #151e24;
  border-radius: 12px;
  width: 100%;
  min-height: 48px;
  margin-bottom: 0;
  padding: 12px 16px 12px 52px;
  font-family: Montserrat, sans-serif;
  font-size: 14px;
  transition: all .25s;
  box-shadow: 1px 1px 2px #7281a70a;
}

.date-field:hover {
  border-color: #ccd5e0;
}

.date-field:focus {
  border-color: var(--hbs_green_light);
}

.date-field::placeholder {
  color: #a0a6b0;
}

.field-icon {
  position: absolute;
  inset: auto auto auto 16px;
}

.button-2 {
  color: #fff;
  background-color: #ffac12;
  border-top-right-radius: 20px;
  align-items: center;
  padding: 20px 32px;
  font-weight: 700;
  text-decoration: none;
  transition: all .35s;
  display: flex;
}

.button-2.button-space {
  margin-top: 32px;
}

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

.paragraph-large-white {
  color: #ffffffa1;
  font-size: 20px;
}

.content-centre-wrap {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.content-section-dark {
  background-color: #000;
  padding: 142px 3%;
  position: relative;
}

.button-text {
  margin-right: 8px;
}

.title-line {
  background-color: #ffac12;
  background-image: none;
  border-radius: 20px;
  width: 100%;
  max-width: 170px;
  min-height: 4px;
  margin-bottom: 12px;
}

.heading-2 {
  color: #fff;
  margin-bottom: 32px;
}

.icon-wrapper {
  padding-top: 10px;
}

.image-4 {
  object-fit: cover;
  border-radius: 8px;
  height: 100%;
}

.services-item {
  grid-column-gap: 2px;
  grid-row-gap: 2px;
  grid-template-rows: auto;
  grid-template-columns: repeat(auto-fit, 60%);
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.medium-text {
  font-family: var(--primary);
  color: #1d2b4f;
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 48px;
}

.image_wrapper {
  background-image: url('../images/Ornament.svg');
  background-repeat: no-repeat;
  background-size: 90% 90%;
  height: 630px;
  padding-top: 40px;
  padding-left: 40px;
}

.image_wrapper.img {
  background-image: url('../images/Ornament.svg');
  background-position: 116% 0;
  background-size: 90% 90%;
  height: 630px;
  padding-top: 40px;
  padding-left: 0;
  padding-right: 40px;
}

.small-text {
  color: #798196;
  margin-bottom: 0;
  font-size: 16px;
  line-height: 27px;
}

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

.services_right-wrapper {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 120px;
  padding-right: 0%;
  display: flex;
}

.services-info {
  grid-row-gap: 30px;
  flex-direction: column;
  padding-top: 24px;
  padding-right: 11%;
}

.services_section-wrapper {
  padding-bottom: 160px;
}

.services-box {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: .25fr 3.5fr;
  grid-auto-columns: 1fr;
  place-items: center start;
  font-family: Helvetica Neue, Arial, sans-serif;
  display: grid;
}

.services_box-content {
  grid-row-gap: 2px;
  flex-direction: column;
  display: flex;
}

.services_description {
  grid-column-gap: 16px;
  grid-row-gap: 32px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  padding-top: 40px;
  display: block;
}

.heading-3 {
  justify-content: center;
  align-items: center;
  display: flex;
}

.bold-text-7 {
  font-family: var(--primary);
  color: var(--hbs_white);
}

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

.blog44_button-row {
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.blog44_button-row.show-mobile-landscape {
  display: none;
}

.blog44_image {
  aspect-ratio: 3 / 2;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.blog44_title-wrapper {
  margin-bottom: .5rem;
}

.blog44_heading-wrapper {
  grid-column-gap: 5rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr max-content;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: end;
  display: grid;
}

.blog44_meta-wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
  display: flex;
}

.spacer-xxlarge {
  width: 100%;
  padding-top: 5rem;
}

.blog44_item-content {
  font-family: var(--primary);
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
  padding: 1.5rem;
  display: flex;
}

.tag {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  color: #00060d;
  background-color: #00060d1a;
  border: 1px #eee;
  justify-content: center;
  align-items: center;
  padding: .25rem .5rem;
  font-size: .875rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
}

.tag.w--current {
  border-bottom: 2px solid #000;
}

.tag.is-alternate {
  background-color: #fff;
  border-color: #fff;
}

.blog44_list {
  grid-column-gap: 2rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  display: grid;
}

.blog44_item {
  background-color: #f2f3f3;
  border: 1px solid #00060d1a;
}

.heading-style-h5 {
  font-family: var(--primary);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
}

.text-size-regular {
  font-family: var(--primary);
  font-size: 1rem;
}

.padding-global {
  padding-left: 5%;
  padding-right: 5%;
}

.padding-global.padding-top {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.text-size-small {
  font-size: .875rem;
}

.text-size-small.text-weight-semibold {
  font-family: var(--primary);
}

.text-size-small.text-weight-semibold.text-inline {
  display: inline;
}

.read-more {
  color: #fff;
  text-align: center;
  background-color: #007bff;
  border: 1px solid #ffffff1a;
  border-left-color: #007bff;
  border-radius: 100rem;
  padding: .75rem 1.5rem;
  text-decoration: none;
}

.read-more.is-secondary {
  font-family: var(--primary);
  color: #00060d;
  background-color: #0000;
  border-color: #00060d;
}

.read-more.is-link {
  color: #00060d;
  background-color: #0000;
  border-style: none;
  padding: .25rem 0;
  line-height: 1;
  text-decoration: none;
}

.read-more.is-link.is-icon {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
}

.read-more.is-link.is-icon.is-alternate {
  background-color: var(--off-white);
  font-family: var(--primary);
  -webkit-text-fill-color: inherit;
  background-clip: border-box;
  border-radius: 0;
  height: 1.3em;
}

.read-more.is-small {
  padding: .5rem 1.25rem;
}

.read-more.is-alternate {
  color: #00060d;
  background-color: #fff;
  border-color: #fff;
}

.blog44_heading {
  flex: 1;
}

.section_blog44 {
  color: #00060d;
  background-color: #fff;
}

.blog44_item-link {
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
  text-decoration: none;
  display: flex;
}

.blog44_image-wrapper {
  background-color: #f2f3f3;
  width: 100%;
  overflow: hidden;
}

.icon-embed-xxsmall {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 1rem;
  height: 1rem;
  display: flex;
}

.spacer-xsmall {
  width: 100%;
  padding-top: 1rem;
}

.blog44_button-wrapper {
  font-family: var(--primary);
  justify-content: flex-end;
  align-items: center;
  margin-top: 1.5rem;
  display: flex;
}

.layout353_content-item {
  background-color: #f2f3f3;
  border: 1px solid #00060d1a;
  margin-bottom: 2rem;
  padding: 2rem;
  position: sticky;
}

.layout353_content-item.content-item-1 {
  top: 30%;
}

.layout353_content-item.content-item-3 {
  top: 34%;
}

.layout353_content-item.content-item-4 {
  top: 36%;
}

.layout353_content-item.content-item-2 {
  top: 32%;
}

.icon-1x1-medium {
  width: 3rem;
  height: 3rem;
}

.spacer-small {
  width: 100%;
  padding-top: 1.5rem;
}

.layout353_content-left {
  position: sticky;
  top: 30%;
}

.layout353_component {
  grid-column-gap: 5rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  display: grid;
}

.paragraph-5 {
  font-family: var(--primary);
}

.heading-5 {
  font-family: var(--primary);
  color: var(--hbs_white);
}

.text-block-4 {
  text-align: left;
  text-transform: uppercase;
  font-size: 1.2em;
  font-weight: 700;
  line-height: 1.3em;
}

.navbar1_link {
  font-family: var(--primary);
  padding: .5rem 1rem;
  display: block;
}

.navbar1_link.w--current {
  color: #00060d;
}

.navbar1_logo-link {
  padding-left: 0;
}

.navbar1_menu-button {
  padding: 0;
}

.navbar1_menu {
  align-items: center;
  display: flex;
  position: static;
}

.navbar1_container {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.navbar1_menu-buttons {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  margin-left: 1rem;
  display: flex;
}

.navbar1_component {
  font-family: var(--primary);
  background-color: #fff;
  border-bottom: 0 #00060d1a;
  border-radius: 0;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1232px;
  height: auto;
  min-height: 4.5rem;
  display: block;
}

._1-3-grid {
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

._1-3-grid._50-p {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  padding-top: 60px;
}

.content-wrap-stats {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  text-align: left;
  background-color: #fff;
  border-radius: 20px;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 0;
  display: flex;
}

.counter {
  color: var(--hbs_green);
  text-align: center;
  font-size: 45px;
  font-weight: 800;
  line-height: 1;
}

.spacer-blank {
  width: 0;
  height: 0;
  font-size: 1px;
}

.h3-2 {
  font-family: var(--primary);
  color: #000;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 19px;
  font-weight: 800;
}

.paragraph-6 {
  color: #181818e6;
  margin-bottom: 0;
  font-size: 16px;
  line-height: 1.6;
}

.image-overlay-layer {
  z-index: 1;
  opacity: .5;
  background-color: #000;
  position: absolute;
  inset: 0%;
}

.spacer-medium {
  width: 100%;
  padding-top: 2rem;
}

.cta53_background-image-wrapper {
  z-index: 0;
  width: 100%;
  position: absolute;
  inset: 0%;
}

.cta53_background-image {
  object-fit: cover;
  object-position: 50% 20%;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.cta53_card {
  z-index: 1;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 4rem;
  display: flex;
  position: relative;
}

.section_cta53 {
  background-color: #fff;
}

.section_cta53.color-scheme-4 {
  background-color: #fff0;
  justify-content: center;
  align-items: center;
  max-width: 1232px;
  display: flex;
}

.text-size-medium-2 {
  font-size: 1.125rem;
}

.button-group {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  display: flex;
}

.button-group.is-center {
  justify-content: center;
}

.cta53_component {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  position: relative;
}

.cta53_component.text-color-white {
  width: 100%;
  display: block;
}

.text-color-white {
  font-family: var(--primary);
  color: #fff;
}

.section-3 {
  padding-left: 40px;
  padding-right: 40px;
}

.body, .bold-text-8, .bold-text-9, .bold-text-10 {
  font-family: var(--primary);
}

.bold-text-10.text-primary {
  color: var(--hbs_green);
  font-size: 45px;
  font-weight: 700;
  line-height: 50px;
}

.bold-text-11 {
  font-family: var(--primary);
  color: var(--black);
}

.bold-text-12, .bold-text-13, .bold-text-14, .bold-text-15, .bold-text-16, .bold-text-17, .bold-text-18 {
  font-family: var(--primary);
}

.bold-text-19 {
  color: var(--black);
}

.mi-dynarodowe-projekty {
  color: #000;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 28px;
  font-weight: 400;
  line-height: 142%;
  text-decoration: none;
}

.frame-17757 {
  grid-column-gap: 10px;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  text-decoration: none;
  display: flex;
}

.frame-17756 {
  grid-column-gap: 40px;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  text-decoration: none;
  display: flex;
}

.frame-17556 {
  grid-row-gap: 41px;
  background-color: #cbe3d5;
  border-radius: 10px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: none;
  height: 26rem;
  min-height: auto;
  max-height: none;
  padding: 34px;
  text-decoration: none;
  display: flex;
  box-shadow: 0 4px 42.7px #1b4d29;
}

.frame-17552 {
  grid-column-gap: 10px;
  justify-content: center;
  align-items: center;
  width: 100%;
  text-decoration: none;
  display: flex;
}

.vectors-wrapper {
  background-color: var(--transparent);
  object-fit: cover;
  border-radius: 20px;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  padding: 5px;
  text-decoration: none;
  display: flex;
}

.frame-17551 {
  grid-row-gap: 28px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  display: flex;
}

.lorem-ipsum-dolor-sit-amet-consectetur-sed-tincidunt-id-rhoncus-pellentesque-accumsan-cursus-leo-sed-ut-dui-sagittis-nulla-bibendum {
  color: #000;
  letter-spacing: .02em;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  text-decoration: none;
}

.yellow-button {
  grid-column-gap: 11.2554px;
  text-align: left;
  background-color: #fbbf15;
  border: 3px solid #007832;
  border-radius: 6px;
  justify-content: flex-start;
  align-items: flex-start;
  width: auto;
  max-width: none;
  padding: 21.3853px 20px;
  text-decoration: none;
  display: flex;
}

.text-5 {
  color: #000;
  text-align: center;
  letter-spacing: .02em;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 22px;
  font-weight: 400;
  line-height: 100%;
  text-decoration: none;
}

.before-after {
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.before-after_after {
  border: 4px solid #ffffff5e;
  border-radius: 21px;
  flex-direction: column;
  width: 100%;
  max-width: 70rem;
  display: flex;
  position: relative;
  overflow: hidden;
}

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

.image-right {
  z-index: 0;
  width: 100%;
  position: absolute;
}

.handle-wrapper {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 1200px;
  height: 675px;
  margin-bottom: 20px;
  margin-right: 0;
  display: flex;
  position: relative;
  overflow: hidden;
}

.handle-bar {
  z-index: 10;
  color: #0000;
  cursor: grab;
  background-color: #fff;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 1px;
  height: 100%;
  display: flex;
  position: relative;
}

.circle-wrapper {
  cursor: grab;
  background-color: #fff;
  background-image: url('../images/cd-arrows-black.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 40px;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  position: absolute;
}

.handle {
  color: #fff;
  text-align: center;
  width: auto;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 18px;
}

.after {
  z-index: 3;
  background-color: #ffffff26;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100px;
  padding: 0 10px;
  transition: opacity .2s ease-in-out;
  display: flex;
  position: absolute;
  inset: 20px 20px auto auto;
}

.before {
  z-index: 3;
  background-color: #ffffff26;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100px;
  padding-left: 10px;
  padding-right: 10px;
  transition: opacity .2s ease-in-out;
  display: flex;
  position: absolute;
  inset: 20px auto auto 20px;
}

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

.ba-wrap {
  justify-content: center;
  width: 100%;
  height: 500px;
  display: flex;
  position: relative;
}

.back-img-wrap {
  position: absolute;
  inset: 0%;
}

.img {
  object-fit: cover;
  width: 800px;
  height: 100%;
}

.overflow-hidden-div {
  position: absolute;
  inset: 0%;
  overflow: hidden;
}

.fixed-width-div {
  width: 800px;
  height: 100%;
}

.move-icon {
  z-index: 10;
  background-color: #ffffff80;
  border: 1px solid #fff;
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: absolute;
  inset: 50% 0% auto;
  transform: translate(0%, -50%);
}

.tri-a {
  border-top: 14px solid #0000;
  border-bottom: 14px solid #0000;
  border-right: 12px solid #fff;
  width: 10px;
  height: 20px;
  margin-right: 2px;
}

.tri-b {
  border-top: 14px solid #0000;
  border-bottom: 14px solid #0000;
  border-left: 12px solid #fff;
  width: 10px;
  height: 20px;
  margin-left: 2px;
}

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

.pause-icon {
  align-items: center;
  width: .6em;
  height: 1em;
}

.play-icon-2 {
  align-items: center;
  width: .6em;
  height: 1em;
  margin-left: .2em;
}

.compare-scroll-media-wrapper {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.compare-scroll-media-wrapper.is-before {
  overflow: hidden;
}

.compare-scroll-inner {
  aspect-ratio: 16 / 9;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.background-video-button {
  color: #272531;
  background-color: #fffbf5;
  border-radius: 999em;
  justify-content: center;
  align-items: center;
  width: 3em;
  height: 3em;
  transition: all .2s;
  display: flex;
  bottom: 1.3em;
  right: 1.3em;
}

.background-video-button:hover {
  transform: scale(1.1);
}

.compare-media-overlay {
  opacity: 0;
  pointer-events: none;
  background-color: #000;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.compare-scroll-animation-size {
  max-width: 100rem;
  height: 300vh;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.compare-scroll-before-media, .compare-scroll-after-media {
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
  inset: 0%;
}

.compare-scroll-text-wrapper {
  color: #333;
  text-align: center;
  background-color: #fff;
  border-radius: 1rem;
  min-width: 15rem;
  padding: 1.4rem;
  font-size: 3rem;
  position: absolute;
  top: auto;
  bottom: 2rem;
  right: auto;
}

.compare-scroll-sticky {
  justify-content: center;
  align-items: center;
  height: 100vh;
  display: flex;
  position: sticky;
  top: 0;
}

.play-pause-state {
  justify-content: flex-start;
  align-items: center;
}

.container-7 {
  background-color: #fff;
  border-radius: 25px;
  flex: 1;
  height: 57vh;
  position: relative;
  overflow: hidden;
}

.drag {
  z-index: 5;
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  cursor: grab;
  background-color: #ffffff8c;
  justify-content: center;
  align-items: center;
  width: 2%;
  display: flex;
  position: absolute;
  inset: 0% auto 0% 49%;
}

.icon {
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  background-color: #ffffffe3;
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  width: 50px;
  min-width: 37px;
  height: 38px;
  min-height: 38px;
  padding: 5px;
  display: flex;
}

.before-2 {
  z-index: 2;
  background-image: url('../images/2023-GLB-SUV-CT-1-5-01-DR.jpeg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: auto 42vh;
  background-attachment: fixed;
  width: 50%;
  height: 100%;
  position: absolute;
  overflow: hidden;
}

.before_mobile {
  z-index: 2;
  background-image: url('../images/2023-GLB-SUV-CT-1-5-01-DR.jpeg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: auto 70%;
  background-attachment: fixed;
  width: 100%;
  height: 100%;
  display: none;
  position: absolute;
  overflow: hidden;
}

.after-2 {
  z-index: 1;
  background-image: url('../images/2023-GLB-SUV-CT-1-5-02-DR.jpeg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: auto 42vh;
  background-attachment: fixed;
  width: 100%;
  height: 100%;
  position: absolute;
  overflow: hidden;
}

.after_mobile {
  z-index: 1;
  background-image: url('../images/2023-GLB-SUV-CT-1-5-02-DR.jpeg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: auto 70%;
  background-attachment: fixed;
  width: 100%;
  height: 100%;
  display: none;
  position: absolute;
}

.frame-17760 {
  flex: 0 auto;
  justify-content: flex-start;
  align-items: center;
  text-decoration: none;
  display: flex;
}

.rectangle-34624125 {
  object-fit: cover;
}

.image-5 {
  padding-top: 64px;
}

.libraries-header_image-wrapper {
  background-color: var(--hbs_white);
  border-radius: 1.5rem;
  padding-top: 3rem;
  padding-bottom: 3rem;
  overflow: hidden;
}

.libraries-header_image-inner-wrapper {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: max-content max-content max-content;
  grid-auto-columns: 1fr;
  justify-content: center;
  justify-items: center;
  margin-left: 20%;
  display: grid;
}

.libraries-header_image {
  filter: brightness(98%);
  border-radius: .5rem;
  width: 30rem;
  box-shadow: 0 16px 2.5rem #0000000d;
}

.button-icon-2 {
  margin-right: .5rem;
}

.max-width-xlarge {
  width: 100%;
  max-width: 64rem;
}

.libraries-header_component {
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  display: flex;
}

.libraries-header_heading {
  letter-spacing: -.03em;
  font-size: 4.5rem;
  font-weight: 500;
  line-height: 1.3;
}

.button-3 {
  color: #fff;
  text-align: center;
  background-color: #161616;
  border: 2px solid #161616;
  border-radius: .5rem;
  padding: .75rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  transition: all .2s;
}

.button-3:hover {
  background-color: #2e2e2e;
  border-color: #0000;
}

.button-3.button-large {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.text-size-large {
  font-size: 1.25rem;
}

.libraries-header_heading-wrapper {
  text-align: center;
  justify-content: center;
  width: 100%;
  padding-bottom: 2.5rem;
}

.libraries-header_text-underline {
  background-image: url('../images/your-own-scribble.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 27.9375rem;
  background-attachment: scroll;
  margin: -5rem -3.5rem -5rem -5rem;
  padding: 5rem 3.5rem 5rem 5rem;
  display: inline-block;
  overflow: visible;
}

.button-secondary {
  color: #000;
  text-align: center;
  background-color: #fff;
  border: 2px solid #000;
  border-radius: .5rem;
  padding: .75rem 1.5rem;
  font-weight: 500;
  line-height: 1;
  transition: all .2s;
}

.button-secondary:hover {
  background-color: #d8d5d1;
}

.button-secondary.button-large {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.button-secondary.button-large.with-icon {
  align-items: center;
  height: 3.375rem;
  padding-left: 1.5rem;
  display: flex;
}

.margin-top {
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
}

.button-row {
  flex-wrap: wrap;
  align-items: center;
  display: flex;
}

.button-row.button-row-center {
  justify-content: center;
}

.button-wrapper {
  margin-top: 1rem;
  margin-right: 1rem;
}

.button-wrapper.button-wrapper-center {
  margin-left: .5rem;
  margin-right: .5rem;
}

.splitter_handle-wrapper {
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
}

.example_info_tags-wrapper {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  align-items: center;
  display: flex;
}

.arrow-image {
  width: 9.14px;
  height: 18.28px;
}

.example_component {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  width: auto;
  display: flex;
}

.splitter_before {
  width: 100%;
  position: absolute;
  inset: 0%;
}

.tag_colour-wrapper {
  background-color: #a484ff;
  border-radius: 50%;
  width: .5rem;
  height: .5rem;
}

.tag_colour-wrapper.is-5 {
  background-color: #fcd14f;
}

.padding-section-example {
  height: auto;
  padding-top: 20px;
}

.padding-0 {
  justify-content: center;
  align-items: center;
  height: auto;
  margin-bottom: 50px;
  padding: 0;
  display: block;
}

.tag_component {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  border: 1px solid #121b24;
  border-radius: 100px;
  align-items: center;
  padding: 10px 20px;
  display: flex;
}

.splitter_component {
  cursor: pointer;
  width: 70vw;
  height: 70vh;
  display: flex;
  position: relative;
  overflow: hidden;
}

.splitter_component.is-radius {
  border-radius: 1rem;
  justify-content: center;
  align-items: center;
  width: 85vw;
  height: 70vh;
}

.splitter_handle-circle {
  background-color: #fff;
  border: 1px solid #fff;
  border-radius: 2rem;
  width: 2.6875rem;
  height: 2.6875rem;
}

.splitter_handle-circle.is-2 {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  background-color: #0000;
  border-style: none;
  justify-content: center;
  align-items: center;
  width: 3.75rem;
  height: 3.75rem;
  display: flex;
}

.text-style-tag {
  font-size: .75rem;
  line-height: 1.3;
}

.splitter_image {
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
}

.splitter_image.is-after {
  width: 70vw;
  max-width: none;
  position: absolute;
  inset: 0% 0% auto auto;
}

.splitter_handle-component {
  z-index: 2;
  background-color: #fff;
  width: 2px;
  height: 100%;
  position: absolute;
  left: 50%;
}

.section_example {
  justify-content: center;
  align-items: center;
  height: 70vh;
  margin-bottom: 3rem;
  display: flex;
  position: static;
}

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

.spliter_after {
  z-index: 2;
  width: 50%;
  height: 100%;
  position: absolute;
  inset: 0% 0% auto auto;
  overflow: hidden;
}

.example_info_wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  justify-content: space-between;
  align-items: center;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  display: flex;
}

.line-wrapper {
  background-color: #fff;
  width: 10px;
  height: 100%;
}

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

.h3-3 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Helvetica Neue, Arial, sans-serif;
  font-size: 32px;
  line-height: 40px;
}

.h3-3.centre {
  text-align: center;
  font-family: Helvetica Neue, Arial, sans-serif;
}

.creator_block-2 {
  background-color: #fff;
  border-radius: 12px;
  min-width: 394px;
  margin-right: 24px;
  padding: 32px;
  display: block;
}

.block_username-2 {
  font-family: Helvetica Neue, Arial, sans-serif;
  font-size: 24px;
  font-weight: 700;
}

.block_followers-2 {
  margin-top: 5px;
  font-family: Helvetica Neue, Arial, sans-serif;
}

.block_text-2 {
  max-width: 330px;
  margin-top: 0;
  padding-top: 0;
  font-family: Helvetica Neue, Arial, sans-serif;
  display: block;
  position: static;
}

.video {
  max-width: none;
  max-height: none;
  display: block;
}

.text-color-darkgrey {
  color: #161616a6;
}

.libraries-usecases_card-overlay {
  z-index: 1;
  background-image: linear-gradient(#0000, #d8d5d1);
  height: 8rem;
  position: absolute;
  inset: auto 0% 0%;
}

.libraries-usecases_heading-wrapper {
  text-align: left;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

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

.libraries-usecases_typed-text {
  letter-spacing: -.02em;
  background-image: none;
  margin-left: 1rem;
  font-size: 4rem;
  font-weight: 500;
  line-height: 1.2;
  display: inline-block;
}

.libraries-usecases_component {
  grid-column-gap: 2.5rem;
  grid-row-gap: 2.5rem;
  grid-template-rows: auto;
}

.libraries-usecases_text-label {
  letter-spacing: .02em;
  text-transform: uppercase;
  background-color: #fff;
  border: .125rem solid #000;
  border-radius: .5rem;
  padding: .25rem .5rem;
  font-size: .875rem;
  font-weight: 700;
  display: inline-block;
  box-shadow: 2px 3px #000;
}

.text-size-medium-3 {
  font-size: 1.125rem;
}

.libraries-usecases_card3 {
  grid-column-gap: 5rem;
  grid-row-gap: 5rem;
  background-color: #e4e2df;
  border-radius: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  padding: 3.5rem;
  display: grid;
}

.heading-xhuge-2 {
  font-size: 4rem;
  font-weight: 500;
  line-height: 1.2;
}

.text-weight-medium-2 {
  font-weight: 500;
}

.page-padding-2 {
  padding-bottom: 120px;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.libraries-usecases_image {
  width: 100%;
  height: 45%;
  margin-top: 0;
  padding-top: 0;
  display: block;
}

.libraries-usecases_card2 {
  background-color: #e4e2df;
  border-radius: 1rem;
  flex-direction: column;
  justify-content: flex-start;
  padding: 2rem 3.5rem 1.5rem;
  display: flex;
  position: relative;
  overflow: hidden;
}

.libraries-usecases_card1 {
  background-color: #e4e2df;
  border-radius: 1rem;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  padding: 2rem 3.5rem 1.5rem;
  display: flex;
  position: relative;
  overflow: hidden;
}

.heading-large {
  letter-spacing: -.02em;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.2;
  position: static;
}

.h2-2 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 56px;
  line-height: 64px;
}

.h2-2.how {
  margin-bottom: 32px;
}

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

.testimonial21_content-2 {
  border: 1px solid #0000;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 25rem;
  min-width: 25rem;
  margin-right: 2rem;
  padding: 2rem;
  display: flex;
}

.testimonial21_rating-icon-2 {
  color: #0000;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 1.25rem;
  height: 1.25rem;
  margin-right: .25rem;
  display: flex;
}

.text-size-medium-4, .text-size-medium-5 {
  font-size: 1.125rem;
}

.product5_mask {
  width: 33%;
  overflow: visible;
}

.product5_image {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.product5_image-wrapper {
  width: 100%;
  padding-top: 120%;
  position: relative;
}

.product5_item {
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.product5_component {
  background-color: #0000;
  height: auto;
  padding-bottom: 6rem;
  position: relative;
  overflow: hidden;
}

.product5_slide-nav {
  height: 1.75rem;
  font-size: .5rem;
  inset: auto auto 0% 0%;
}

.text-size-medium-6 {
  font-size: 1.125rem;
}

.product5_slide {
  padding-right: 2rem;
}

.product5_item-link {
  flex-direction: column;
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  text-decoration: none;
  display: flex;
}

.product5_arrow {
  background-color: #fff;
  border: 1px solid #000;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 3rem;
  height: 3rem;
  display: flex;
  inset: auto 0% 0% auto;
}

.product5_arrow.left {
  right: 4rem;
}

.aaa-decor-1 {
  grid-column-gap: 2em;
  grid-row-gap: 2em;
  flex-direction: column;
  flex: 1;
  align-items: flex-start;
  display: flex;
}

.aaa-text-3 {
  color: var(--hbs_grey);
  width: auto;
  font-size: .8em;
  font-weight: 400;
  line-height: 1.6em;
}

.aaa-pic-1 {
  object-fit: contain;
  width: 8em;
}

.aaa-text-2 {
  color: var(--hbs_white);
  text-align: center;
  text-transform: uppercase;
  justify-content: center;
  align-items: center;
  font-size: 1.1em;
  font-weight: 400;
  line-height: 1.3em;
  display: flex;
}

.aaa-decor-3 {
  align-items: center;
  height: 5.5em;
  display: flex;
}

.aaa-wrap-7 {
  object-fit: fill;
  border: .1em solid #471c3b;
  border-radius: .5em;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  height: 37vh;
  padding: 1.5em 1.6em;
  display: flex;
}

.aaa-wrap-8 {
  background-color: var(--hbs_green);
  color: var(--hbs_white);
  border-radius: .5em;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  padding: .5em 1em;
  display: flex;
}

.aaa-text-4 {
  color: #3b0f31;
  text-transform: uppercase;
  font-size: 1.2em;
  font-weight: 700;
  line-height: 1.3em;
}

.aaa-link-block-2 {
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  align-items: center;
  margin-top: 1em;
  text-decoration: none;
  display: flex;
}

.aaa-icon-1 {
  object-fit: cover;
  height: 2.4em;
}

.list {
  font-size: .8em;
}

.bold-text-20 {
  color: var(--hbs_white);
  font-size: 1.2rem;
  line-height: 1.4rem;
}

.libraries-usecases_text-label-copy {
  letter-spacing: .02em;
  text-transform: uppercase;
  background-color: #fff;
  border: .125rem solid #000;
  border-radius: .5rem;
  padding: .25rem .5rem;
  font-size: .7rem;
  font-weight: 700;
  line-height: 20px;
  display: inline-block;
  box-shadow: 2px 3px #000;
}

.aaa-text-3-2 {
  color: #431939;
  font-size: 1em;
  font-weight: 400;
  line-height: 1.6em;
}

.aaa-text-2-2 {
  color: #4d2542;
  text-align: center;
  text-transform: uppercase;
  font-size: 1.1em;
  font-weight: 400;
  line-height: 1.3em;
}

.aaa-wrap-7-2 {
  border: .1em solid #471c3b;
  border-radius: .5em;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1.5em 1.6em;
  display: flex;
}

.aaa-wrap-8-2 {
  background-color: #eaeaea;
  border-radius: .5em;
  padding: .5em 1em;
}

.image-6 {
  height: 2.4em;
  padding-left: 10px;
}

.button-4 {
  background-color: #cb5d19;
  border-radius: 25px;
  padding: 11px 25px;
  font-size: 1.1rem;
}

.button-4.top-margin {
  background-color: #cb5d19;
  margin-top: 40px;
}

.button-4.top-margin:hover {
  background-color: #994512;
}

.button-4.secondary {
  float: right;
  color: #000;
  background-color: #f8e6abe6;
  height: 46px;
  margin-top: 20px;
  margin-bottom: 10px;
}

.button-4.secondary:hover {
  color: #fff;
  background-color: #000000e6;
}

.button-4.secondary._1 {
  height: 46px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.fp_component {
  grid-column-gap: 3vh;
  grid-row-gap: 0vw;
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  display: grid;
}

.mountain_image-wrapper {
  border-radius: 30px;
  width: 100%;
  height: 570px;
  display: flex;
  overflow: hidden;
}

.section-home-header {
  background-color: #f8e6abe6;
  padding-top: 60px;
  padding-bottom: 60px;
}

.footer-references {
  width: 100%;
  max-width: 1200px;
}

.about-me_left {
  background-color: #cb5d19;
  padding: 50px 65px;
}

.button-inverted {
  color: #333;
  background-color: #f8e6abe6;
  border-radius: 25px;
  margin-top: 70px;
  padding: 11px 25px;
  font-size: 1rem;
}

.button-inverted:hover {
  color: #fff;
  background-color: #000000e6;
}

.social-link {
  margin-right: 13px;
}

.heading-6 {
  flex: 1;
}

.about-me_component {
  border-radius: 25px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
  overflow: hidden;
}

.brand-copy {
  margin-top: 35px;
  margin-bottom: 35px;
}

.collection-list-2 {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  grid-auto-columns: 1fr;
  display: grid;
}

.paragraph-footer2 {
  margin-bottom: 0;
  font-size: .9rem;
  line-height: 1.7;
  display: inline-block;
}

.form-block-2 {
  margin-bottom: 60px;
}

.site-logo {
  margin-top: 20px;
  margin-bottom: 20px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.nav_link {
  margin-top: 30px;
  margin-bottom: 30px;
  padding: 0 20px;
  font-size: 1.125rem;
}

.nav_link:hover {
  color: #cb5d19;
}

.nav_link.w--current {
  color: #2b2a2a;
}

.nav_link.w--current:hover {
  color: #cb5d19;
}

.container-large-no-padding {
  width: 90%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.container-large-no-padding.modified {
  width: auto;
  max-width: none;
  padding-left: 20px;
}

.container-large-no-padding.flex {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.trending-post_component {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-bottom: -20px;
}

.nav_component {
  background-color: #fff;
}

.footer-social {
  width: 100%;
  max-width: 1200px;
  margin-top: 30px;
  margin-bottom: 30px;
}

.hero-img {
  object-fit: cover;
  width: 100%;
}

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

.fp-left {
  max-width: 545px;
  margin-top: 50px;
}

.about-me_image-wrapper {
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  width: auto;
  display: flex;
  overflow: hidden;
}

.social-icon {
  width: 24px;
}

.form {
  margin-top: 15px;
  margin-bottom: 20px;
  display: flex;
}

.additional-links {
  color: #333;
  margin-left: 20px;
  margin-right: 30px;
  font-size: 1.125rem;
  text-decoration: none;
  display: inline-block;
}

.additional-links:hover {
  color: #cb5d19;
}

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

.text-field {
  border-radius: 20px;
  margin-bottom: 0;
  margin-right: 10px;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-right: 280px;
  font-size: .9rem;
}

.fp-tag {
  letter-spacing: .1rem;
  text-transform: uppercase;
  margin-bottom: 50px;
  font-size: .75rem;
  font-weight: 600;
  line-height: 1;
}

.divisor-horizontal2 {
  background-color: #dfcac3;
  align-self: stretch;
  width: auto;
  height: 1px;
}

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

.text-field-4 {
  border-radius: 30px;
  width: 440px;
  margin-top: 15px;
  margin-bottom: 15px;
  margin-right: 20px;
}

.divisor-horizontal31 {
  background-color: #eeeeed;
  width: auto;
  height: 1px;
}

.recent-posts_component {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
}

.color-white {
  color: #fff;
}

.color-white.para-extra-margin {
  margin-top: 30px;
}

.h4-button-wrapper {
  justify-content: space-between;
  margin-bottom: 20px;
  display: flex;
}

.h4-button-wrapper.recent-post {
  justify-content: space-between;
}

.form_filter {
  display: flex;
}

.form_filter-block {
  flex: none;
  width: 490px;
  margin-top: 10px;
  margin-bottom: 20px;
}

.bold-text-link {
  color: #544b47;
  text-decoration: none;
}

.bold-text-link:hover {
  color: #cb5d19;
}

.submit-button-2 {
  background-color: #cb5d19;
  border-radius: 30px;
  padding: 10px 30px;
}

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

.paragraph-footer {
  text-align: center;
  flex-direction: column;
  align-items: flex-end;
  width: 630px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.social-wrapper {
  float: right;
  display: inline-block;
}

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

.link-wrapper {
  float: right;
  margin-top: 35px;
  margin-bottom: 34px;
  display: inline-block;
}

.collection-list-4 {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

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

.paragraph-max-size {
  max-width: 510px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.footer_component {
  background-color: #f8e6abe6;
  padding-top: 60px;
}

.page-wrapper {
  font-size: 1rem;
  line-height: 1.5;
}

.button-post-author {
  color: #544b47;
  letter-spacing: 0;
  background-color: #fff;
  border: 2px solid #e3e3e3;
  border-radius: 20px;
  margin-right: 10px;
  padding: 1px 10px;
  font-size: .875rem;
}

.blog-header_component {
  margin-top: 15px;
  padding-left: 40px;
  padding-right: 40px;
}

.heading-9 {
  flex: 1;
}

.author-wrapper {
  justify-content: center;
  display: flex;
}

.collection-list-5 {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  grid-auto-columns: 1fr;
  display: grid;
}

.form-block-3 {
  margin-bottom: 60px;
}

.image-author {
  object-fit: cover;
  border-radius: 30px;
}

.text-block-5 {
  display: inline-block;
}

.section-blog-header {
  background-color: #f8e6abe6;
  height: 700px;
  margin-bottom: 340px;
  padding-top: 60px;
  padding-bottom: 60px;
}

.body-text {
  width: 96%;
  max-width: 860px;
  font-size: 1rem;
  line-height: 2.1;
}

.text-block-6 {
  display: inline-block;
}

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

.featured-image-wrapper {
  border-radius: 20px;
  width: 88%;
  height: 610px;
  margin-top: 60px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  overflow: hidden;
}

.text-field-5 {
  border-radius: 20px;
  margin-bottom: 0;
  margin-right: 10px;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-right: 280px;
  font-size: .9rem;
}

.time-wrapper {
  letter-spacing: 2.5px;
  justify-content: center;
  align-items: center;
  margin-top: 25px;
  font-size: .75rem;
  display: flex;
}

.additional-image {
  object-fit: cover;
  border-radius: 10px;
  height: 570px;
  margin-top: -70px;
  overflow: hidden;
}

.featured-image {
  z-index: 1;
  object-fit: cover;
  flex: 1;
}

.author-name {
  color: #544b47;
  margin-left: 20px;
  font-size: .9rem;
  display: inline-block;
}

.paragraph-7 {
  text-align: center;
  margin-top: 20px;
}

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

.author-wrapper-link {
  text-decoration: none;
}

.bold-text-21 {
  vertical-align: baseline;
  display: block;
}

.container-4-copy {
  background-color: var(--hbs_green);
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  max-width: 1232%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

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

.container-8 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-flow: row;
  flex: 0 auto;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1232px;
  margin-left: 0;
  margin-right: 0;
  display: block;
  position: static;
}

.text-weight-medium-header-cta {
  font-family: var(--primary);
  text-align: left;
  letter-spacing: normal;
  text-indent: 10px;
  flex: 0 auto;
  order: 0;
  width: auto;
  font-weight: 500;
  line-height: 28px;
  display: block;
}

.text-weight-medium-header-cta.footer_cta-2-copy {
  font-family: Montserrat, sans-serif;
}

.problems_container {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: auto;
  max-width: 1232px;
  padding-top: 40px;
  display: flex;
  position: relative;
  overflow: visible;
}

.bold-text-22 {
  box-sizing: border-box;
  text-indent: 0;
  object-fit: fill;
  margin-left: 0;
  margin-right: 0;
  display: block;
}

.bold-text-23 {
  text-align: left;
  text-indent: 0;
  vertical-align: baseline;
  justify-content: flex-end;
  display: block;
}

.services_right-wrapper-2 {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 60px;
  padding-right: 0%;
  display: flex;
}

.div-block-5 {
  flex-flow: row;
  justify-content: space-between;
  display: flex;
}

.section-5 {
  padding-top: 5rem;
  padding-bottom: 2rem;
}

.link-4 {
  color: var(--hbs_white);
}

.link-5 {
  font-family: var(--secondary);
  color: var(--hbs_white);
}

.link-6 {
  color: var(--hbs_white);
}

.text-light {
  color: var(--hbs_grey);
  padding-top: .5rem;
  font-size: 15px;
  font-weight: 200;
}

.scroll-anchor {
  position: relative;
  top: -100px;
}

.select-field {
  float: none;
  aspect-ratio: auto;
  border: 1px solid var(--light_grey);
  background-color: var(--white);
  outline-offset: 0px;
  color: #595959;
  text-align: left;
  object-fit: fill;
  border-radius: 12px;
  outline: 3px #595959;
  width: 100%;
  min-height: 48px;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
  padding: 12px 52px 12px 47px;
  font-family: Montserrat, sans-serif;
  font-size: 14px;
  transition: all .25s;
  overflow: visible;
  box-shadow: 1px 1px 2px #7281a70a;
}

.select-field:hover {
  border-color: #ccd5e0;
}

.select-field:focus {
  border-color: var(--hbs_green_light);
}

.select-field::placeholder {
  color: #a0a6b0;
}

.paragraph-8 {
  color: var(--white);
  text-align: center;
  margin-top: 20px;
}

.paragraph-9 {
  background-image: linear-gradient(to bottom, var(--hbs_green), var(--hbs_green));
  opacity: 1;
  color: var(--white);
  text-align: left;
  -webkit-text-fill-color: inherit;
  mix-blend-mode: normal;
  object-fit: contain;
  background-clip: border-box;
  border-radius: 0;
  margin-top: 10px;
}

.paragraph-10 {
  color: var(--white);
  margin-top: 10px;
  margin-bottom: 0;
}

.text-color-white--bck {
  font-family: var(--primary);
  color: #fff;
}

.quick-stack {
  width: 90vw;
}

.example_info_wrapper-copy {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  justify-content: space-between;
  align-items: center;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  display: flex;
}

.section_example-copy {
  justify-content: center;
  align-items: center;
  margin-bottom: 3rem;
  display: flex;
  position: static;
}

.padding-0-copy {
  justify-content: center;
  align-items: center;
  margin-bottom: 50px;
  padding: 0 0 0 6rem;
  display: block;
}

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

.side_byy_side {
  cursor: pointer;
  width: 70vw;
  height: 70vh;
  display: flex;
  position: relative;
  overflow: hidden;
}

.side_byy_side.is-radius, .side_byy_side.is-radius-copy {
  border-radius: 1rem;
  justify-content: center;
  align-items: center;
  width: 85vw;
  height: 40vh;
}

.example_component-copy {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  width: 70vw;
  display: flex;
}

.max-width-large-copy {
  background-color: #0000008c;
  width: 100%;
  max-width: 48rem;
}

.padding-section-example-copy {
  height: auto;
  padding-top: 20px;
}

.spacer-small-copy {
  width: 100%;
  padding-top: 1.5rem;
}

.spacer-medium_mobile {
  width: 100%;
  padding-top: 2rem;
}

.container_pic.is_cen {
  max-width: 1314px;
  display: flex;
}

.text-size-medium-2-copy {
  font-size: 1.125rem;
}

.text-size-medium-2-copy.text-color-white-copy {
  background-color: #00000075;
  border-radius: 8px;
}

.text-color-white-copy {
  font-family: var(--primary);
  color: #fff;
  background-color: #00000075;
  border-radius: 8px;
}

.blog-image {
  width: 100vw;
  max-width: 100%;
  max-height: 2%;
  margin-top: auto;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  display: block;
  position: static;
  overflow: visible;
}

.text_blog_par {
  font-family: var(--secondary);
  margin-top: 10px;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
}

.list-item, .list-item-2, .list-item-3 {
  margin-top: 5px;
}

.blog_par_title {
  font-family: var(--primary);
  padding-bottom: 10px;
  font-size: 22px;
}

.image_small {
  max-width: 10%;
  margin-bottom: 20px;
  margin-left: 40px;
  padding-left: 0;
}

.blog_utitle_green {
  background-color: var(--hbs_green);
  color: var(--white);
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 10px;
  font-size: 20px;
}

.list-2, .list-3 {
  margin-bottom: 0;
}

.blog_utitle {
  margin-top: 1rem;
  font-size: 22px;
  font-weight: 700;
}

.libraries-why_text-overlay-blog {
  background-image: linear-gradient(#0000, #f1f0ee);
  position: absolute;
  inset: 0%;
}

.libraries-why_text-overlay-blog.clickable-off {
  background-image: linear-gradient(#0000, #f1f0ee 95%);
  display: none;
}

.blog_utitle_green-copy {
  background-color: var(--hbs_green);
  color: var(--white);
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 10px;
  font-size: 20px;
}

.blog_txt2 {
  text-align: justify;
  max-width: 95%;
}

.blog_txt_wrapper {
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  max-width: 60%;
  display: flex;
}

.blog_img_wrapper {
  max-width: 40%;
  max-height: none;
  display: flex;
}

.blog_content_wrapper {
  max-width: 100%;
  display: flex;
}

.blog_icon_wrapper {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  max-width: 10%;
  height: auto;
  max-height: 60%;
  padding-top: 10px;
  display: flex;
}

.blog_txt_long_wrapper {
  text-align: justify;
}

.blog_point-copy {
  background-color: var(--hbs_green);
  color: var(--white);
  text-align: center;
  justify-content: center;
  align-items: center;
  padding-top: 10px;
  display: flex;
}

.blog_row {
  grid-column-gap: 21px;
  grid-row-gap: 21px;
  justify-content: flex-start;
  align-items: center;
  max-width: 90%;
  display: flex;
}

.div-block-7 {
  clear: left;
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 80%;
  display: flex;
}

.blog_list_wrapper.full-centre {
  flex-flow: column;
  margin-left: auto;
  margin-right: auto;
  padding-left: 80px;
}

.blog_img_wrapper_smaller {
  max-width: 40%;
  max-height: 40%;
  display: flex;
}

.frame-17556-copy {
  grid-row-gap: 41px;
  grid-row-gap: 41px;
  grid-row-gap: 41px;
  background-color: #cbe3d5;
  border-radius: 10px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: none;
  height: 26rem;
  min-height: auto;
  max-height: none;
  padding: 34px;
  text-decoration: none;
  display: flex;
  box-shadow: 0 4px 42.7px #1b4d29;
}

.frame-17556-copy {
  grid-row-gap: 41px;
  background-color: #cbe3d5;
  border-radius: 10px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: none;
  height: 29rem;
  min-height: auto;
  max-height: none;
  padding: 34px;
  text-decoration: none;
  display: flex;
  box-shadow: 0 4px 42.7px #1b4d29;
}

.frame-17756-copy {
  grid-column-gap: 40px;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  height: 27em;
  min-height: auto;
  text-decoration: none;
  display: flex;
}

.frame-17551-copy {
  grid-row-gap: 20px;
  grid-row-gap: 28px;
  grid-row-gap: 20px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  display: flex;
}

.frame-17757-copy {
  grid-column-gap: 10px;
  grid-column-gap: 10px;
  grid-column-gap: 10px;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  font-size: 18px;
  line-height: 25px;
  text-decoration: none;
  display: flex;
}

.mi-dynarodowe-projekty-copy {
  color: #000;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 28px;
  font-weight: 400;
  line-height: 142%;
  text-decoration: none;
}

.mi-dynarodowe-projekty-copy-copy {
  color: #000;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 28px;
  font-weight: 400;
  line-height: 110%;
  text-decoration: none;
}

.section-copy {
  background-color: var(--hbs_white);
  width: 100%;
  padding-top: 1rem;
  padding-left: 40px;
  padding-right: 40px;
  position: relative;
}

.section-copy.hero {
  background-color: var(--hbs_green);
  -webkit-text-fill-color: inherit;
  background-image: url('../images/header-pattern.png');
  background-position: 0 0;
  background-size: auto;
  background-clip: border-box;
  justify-content: center;
  align-items: center;
  height: 70vh;
  max-height: 800px;
  padding-top: 0;
  display: flex;
  overflow: visible;
}

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

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

.section-copy.gradient-180 {
  background-image: linear-gradient(180deg, var(--hbs_green), white);
}

.section-copy.gradient-180.padding-section-large {
  display: none;
}

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

.section-copy.backgroud-2 {
  background-color: var(--white);
}

.section-copy.section-green {
  background-color: var(--hbs_green);
}

.section-copy.section-green.section-margin-bottom {
  margin-bottom: 60px;
}

.section-copy.section-margin-bottom {
  margin-bottom: 120px;
}

.section-copy.section-green-copy {
  background-color: var(--hbs_green);
}

.section-copy.section-green-copy.section-margin-bottom {
  margin-bottom: 60px;
}

.blog_title_img {
  background-color: #ffffffa8;
  width: auto;
  margin-left: 100px;
  margin-right: 100px;
}

.blog_title_img.full-centre {
  background-color: #ffffff8c;
  justify-content: center;
  align-items: center;
  width: auto;
  margin-top: 0;
  padding-bottom: 10px;
}

.blog_bckg_title {
  background-image: url('../images/cropped.jpg');
  background-position: 50%;
  background-repeat: repeat;
  background-size: cover;
  background-attachment: scroll;
  justify-content: center;
  align-items: center;
  min-height: 35rem;
  max-height: 40rem;
  display: flex;
}

.contact-_blog {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding-top: 2rem;
  display: flex;
}

.blog_tb_txt {
  padding-left: 60px;
}

.blog_bckg_title-2 {
  background-image: url('../images/_1252284-1.jpg');
  background-position: 50%;
  background-repeat: repeat;
  background-size: cover;
  background-attachment: scroll;
  justify-content: center;
  align-items: center;
  min-height: 35rem;
  max-height: 40rem;
  display: flex;
}

.blog_tb_section {
  margin-top: 60px;
}

.link-10 {
  display: block;
}

.list-item-4, .list-item-5, .list-item-6, .list-item-7 {
  padding-bottom: 10px;
}

.blog_bcg_title2 {
  background-image: url('../images/_1252231-1.jpg');
  background-position: 50%;
  background-size: cover;
  justify-content: center;
  align-items: center;
  min-height: 35rem;
  max-height: 40rem;
  display: flex;
}

.link-11 {
  display: block;
}

.div-block-10 {
  padding-left: 60px;
}

.illustration-copy._4 {
  z-index: 4;
  box-sizing: content-box;
  aspect-ratio: auto;
  object-fit: fill;
  width: 550px;
  height: 500px;
  max-height: 102%;
  margin-bottom: 0;
  margin-right: 100px;
  position: absolute;
  inset: auto 0% 0% auto;
  overflow: clip;
}

.illustration-copy._4-copy {
  z-index: 4;
  box-sizing: content-box;
  aspect-ratio: auto;
  object-fit: fill;
  width: 550px;
  max-width: 100%;
  height: 550px;
  max-height: 102%;
  margin-bottom: 0;
  margin-right: 70px;
  position: absolute;
  inset: auto 0% 0% auto;
  overflow: clip;
}

.container-13 {
  background-color: var(--white);
  border-radius: 18px;
  padding: 20px;
}

.text-light-copy {
  color: var(--white);
  padding-top: 0;
  font-size: 15px;
  font-weight: 200;
}

.text-light_white_2 {
  color: var(--white);
  padding-top: 2rem;
  font-size: 15px;
  font-weight: 200;
}

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

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

.container-copy.large.absolute {
  height: 550px;
  margin-left: auto;
  margin-right: auto;
}

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

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

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

.container-copy.large-copy.absolute {
  height: 550px;
  margin-left: auto;
  margin-right: auto;
}

.container-copy.large-copy.absolute-copy {
  height: 520px;
  margin-left: auto;
  margin-right: auto;
  padding-right: 50px;
}

.container-14 {
  max-width: 80%;
  margin-bottom: 100px;
}

.blog_landingi {
  background-color: var(--hbs_green);
  justify-content: center;
  align-items: center;
}

.button-5 {
  background-color: var(--hbs_green);
  text-align: center;
  vertical-align: baseline;
  justify-content: center;
  align-items: center;
  height: 45px;
  margin-top: 0;
  margin-right: 0;
  padding-left: 10px;
  padding-right: 10px;
  font-size: 16px;
  line-height: 20px;
  display: flex;
}

.button-5.w--current {
  background-color: var(--hbs_green);
  width: 200px;
  height: 45px;
  margin-top: 0;
  padding-top: 10px;
  line-height: 20px;
  display: block;
}

.quick-stack-2 {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  padding: 5px 20px;
}

.div-block-12 {
  min-height: 40px;
}

.blog_title_landing {
  font-family: var(--primary);
  padding-bottom: 10px;
  font-size: 25px;
  position: static;
}

.bold-text-27 {
  font-size: 15px;
}

.bold-text-28 {
  font-size: 16px;
}

.container-15.flex-center {
  flex-flow: row;
  justify-content: center;
  align-items: center;
  max-width: 100%;
}

.blog_landingi_p {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 200px;
  max-width: 200px;
  height: 150px;
  margin-left: 5px;
  margin-right: 5px;
  display: block;
}

.image_land_small {
  vertical-align: baseline;
  width: 200px;
  height: 120px;
  margin-left: 0;
  margin-right: 0;
  display: inline-block;
}

.button-5-copy {
  background-color: var(--hbs_green);
  text-align: center;
  width: 180px;
  height: 45px;
  margin-left: 0;
  margin-right: 0;
  padding-top: 10px;
  padding-left: 10px;
  padding-right: 10px;
  line-height: 14px;
  display: block;
}

.button-5-copy.w--current {
  background-color: #3898ec00;
}

.button-5-copy-2 {
  background-color: var(--hbs_green);
  text-align: center;
  width: auto;
  height: auto;
  margin-left: 0;
  margin-right: 0;
  padding-top: 10px;
  padding-left: 10px;
  padding-right: 10px;
  line-height: 20px;
  display: block;
}

.button-5-copy-2.w--current {
  background-color: #3898ec00;
}

.bold-text-29 {
  font-size: 16px;
}

.blog_img_centre {
  grid-column-gap: 35px;
  grid-row-gap: 35px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  max-width: none;
  height: 120px;
  display: flex;
}

.blog_icon {
  height: 100px;
  min-height: 60px;
}

.blog_bckg_title-4, .blog_bckg_title-5 {
  background-image: url('../images/_1252284-1.jpg');
  background-position: 50%;
  background-repeat: repeat;
  background-size: cover;
  background-attachment: scroll;
  justify-content: center;
  align-items: center;
  min-height: 35rem;
  max-height: 40rem;
  display: flex;
}

.blog_panels.flex-center {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  text-align: center;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  place-items: center;
  display: flex;
}

.blog_panel {
  grid-column-gap: 21px;
  grid-row-gap: 21px;
  background-color: var(--hbs_green);
  color: var(--white);
  border-radius: 9px;
  justify-content: center;
  align-items: center;
  min-width: 200px;
  min-height: 200px;
  padding: 5px;
  display: flex;
}

.blog_bckg_title-6 {
  background-image: url('../images/DSCF0402.jpg');
  background-position: 50%;
  background-size: cover;
  justify-content: center;
  align-items: center;
  min-height: 35rem;
  max-height: 40rem;
  display: flex;
}

.blog_frame {
  grid-row-gap: 41px;
  background-color: var(--hbs_green);
  color: var(--white);
  border-radius: 10px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: none;
  height: 26rem;
  min-height: auto;
  max-height: none;
  padding: 34px;
  text-decoration: none;
  display: flex;
}

.blog_frame_in {
  grid-row-gap: 20px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.blog_frame_title {
  grid-column-gap: 10px;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  font-size: 24px;
  font-weight: 700;
  text-decoration: none;
  display: flex;
}

.text-block-7, .text-block-8, .text-block-9 {
  text-align: left;
}

.problems_container-copy {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: auto;
  max-width: 1232px;
  padding-top: 0;
  display: flex;
  position: relative;
  overflow: visible;
}

.services_right-wrapper-2-copy {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 60px;
  padding-right: 0%;
  display: flex;
}

.vectors_wrapper_white {
  background-color: var(--white);
  object-fit: cover;
  border-radius: 20px;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  padding: 5px;
  text-decoration: none;
  display: flex;
}

.blog_bckg_title-7 {
  background-image: url('../images/Zrzut-ekranu-2025-02-18-183632.png');
  background-position: 50%;
  background-size: cover;
  justify-content: center;
  align-items: center;
  min-height: 35rem;
  max-height: 40rem;
  display: flex;
}

.image-62 {
  max-width: none;
  min-height: 50%;
}

.paragraph-15 {
  max-width: 60%;
}

.paragraph-16 {
  text-align: left;
  display: block;
}

.blog_bckg_title-8 {
  background-image: url('../images/Zrzut-ekranu-2025-02-18-192200.png');
  background-position: 50%;
  background-size: cover;
  justify-content: center;
  align-items: center;
  min-height: 35rem;
  max-height: 40rem;
  display: flex;
}

.blog_bckg_title-9 {
  background-image: url('../images/_1251955.jpg');
  background-position: 50%;
  background-repeat: repeat;
  background-size: cover;
  background-attachment: scroll;
  justify-content: center;
  align-items: center;
  min-height: 35rem;
  max-height: 40rem;
  display: flex;
}

.blog_bckg_title-10 {
  background-image: url('../images/DSCF0486.jpg');
  background-position: 50%;
  background-repeat: repeat;
  background-size: cover;
  background-attachment: scroll;
  justify-content: center;
  align-items: center;
  min-height: 35rem;
  max-height: 40rem;
  display: flex;
}

.blog_panels_4.flex-center {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  text-align: center;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  place-items: center;
  display: flex;
}

.blog_panel-2 {
  grid-column-gap: 21px;
  grid-row-gap: 21px;
  background-color: var(--hbs_green);
  color: var(--white);
  border-radius: 9px;
  justify-content: center;
  align-items: center;
  width: 240px;
  min-width: 200px;
  min-height: 200px;
  padding: 5px;
  display: flex;
}

.blog_bckg_title-11 {
  background-image: url('../images/DSC04903.jpg');
  background-position: 50%;
  background-repeat: repeat;
  background-size: cover;
  background-attachment: scroll;
  justify-content: center;
  align-items: center;
  min-height: 35rem;
  max-height: 40rem;
  display: flex;
}

.grid-2 {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  grid-template-rows: auto auto auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  place-items: center stretch;
  max-width: 75%;
}

.blog_table_up {
  background-color: var(--hbs_green);
  color: var(--white);
  object-fit: fill;
  justify-content: center;
  align-items: center;
  min-width: auto;
  height: 50px;
  padding-top: 5px;
  padding-left: 5px;
  padding-right: 5px;
  display: flex;
}

.blog_table_content, .div-block-16, .blog_table_name {
  justify-content: center;
  align-items: center;
  display: flex;
}

.blog_bckg_title-12 {
  background-image: url('../images/Zrzut-ekranu-2025-02-20-122938.png');
  background-position: 50%;
  background-repeat: repeat;
  background-size: cover;
  background-attachment: scroll;
  justify-content: center;
  align-items: center;
  min-height: 35rem;
  max-height: 40rem;
  display: flex;
}

.blog_panels-copy.flex-center {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  text-align: center;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  place-items: center;
  display: flex;
}

.blog_panel-copy {
  grid-column-gap: 21px;
  grid-row-gap: 21px;
  background-color: var(--hbs_green);
  color: var(--white);
  text-align: left;
  border-radius: 9px;
  justify-content: center;
  align-items: center;
  width: 250px;
  min-width: 200px;
  min-height: 200px;
  padding: 5px 5px 5px 10px;
  display: flex;
}

.blog_bckg_title-13 {
  background-image: url('../images/_1252295.jpg');
  background-position: 50%;
  background-repeat: repeat;
  background-size: cover;
  background-attachment: scroll;
  justify-content: center;
  align-items: center;
  min-height: 35rem;
  max-height: 40rem;
  display: flex;
}

.blog_txt_long_wrapper_lefr_mg, .blog_txt_long_wrapper-copy {
  text-align: justify;
}

.blog_bckg_title-14 {
  background-image: url('../images/aplikacja-ściana.png');
  background-position: 50%;
  background-repeat: repeat;
  background-size: cover;
  background-attachment: scroll;
  justify-content: center;
  align-items: center;
  min-height: 35rem;
  max-height: 40rem;
  display: flex;
}

.blog_copm {
  margin-left: 20px;
  margin-right: 20px;
}

.div-block-18 {
  justify-content: space-between;
  align-items: center;
  min-width: 70%;
  min-height: 200px;
  display: flex;
  overflow: auto;
}

.spacer_vertical {
  background-color: var(--hbs_green);
  width: 5px;
  height: 150px;
}

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

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

.main_pic_larrger.large.absolute {
  aspect-ratio: auto;
  object-fit: contain;
  width: 800px;
  height: 600px;
  margin-left: auto;
  margin-right: -50px;
}

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

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

.illustration-copy {
  object-fit: contain;
  object-position: 100% 100%;
  width: 100%;
  max-height: 750px;
  display: block;
  position: absolute;
  inset: auto 0% 0%;
}

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

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

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

.illustration-copy._4 {
  z-index: 4;
  box-sizing: content-box;
  aspect-ratio: auto;
  outline-offset: 0px;
  mix-blend-mode: normal;
  object-fit: fill;
  border: 0 solid #000;
  border-radius: 0;
  outline: 3px #000;
  width: auto;
  max-width: 100%;
  height: 550px;
  max-height: 100%;
  margin-bottom: 0;
  margin-right: -20px;
  position: absolute;
  inset: auto 0% 0% auto;
  overflow: clip;
}

.illustration-copy._4-copy {
  z-index: 4;
  box-sizing: content-box;
  aspect-ratio: auto;
  outline-offset: 0px;
  mix-blend-mode: normal;
  object-fit: fill;
  border: 0 solid #000;
  border-radius: 0;
  outline: 3px #000;
  width: auto;
  max-width: 100%;
  height: 600px;
  max-height: 100%;
  margin-bottom: 0;
  margin-right: -40px;
  position: absolute;
  inset: auto 0% 0% auto;
  overflow: clip;
}

.call_button {
  z-index: 99999;
  display: none;
  position: fixed;
  inset: auto 20px 20px auto;
}

.button_call {
  color: #fff;
  background-color: #f66a18;
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  width: 55px;
  height: 55px;
  display: flex;
  box-shadow: 0 10px 30px -10px #00000026;
}

.icon-embed-small {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  display: flex;
}

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

.blog_bckg_title-15 {
  background-image: url('../images/piana.jpg');
  background-position: 50%;
  background-repeat: repeat;
  background-size: cover;
  background-attachment: scroll;
  justify-content: center;
  align-items: center;
  min-height: 35rem;
  max-height: 40rem;
  display: flex;
}

.blog_adv_disadv {
  justify-content: center;
  align-items: flex-start;
  min-width: 70%;
  min-height: 200px;
  display: flex;
  overflow: auto;
}

.blog_adv {
  background-color: var(--hbs_green);
  color: var(--white);
  text-align: center;
  justify-content: center;
  align-items: flex-start;
  width: auto;
  min-width: 300px;
  max-width: 400px;
  padding-top: 10px;
  display: flex;
}

.list-item-22 {
  max-width: 300px;
}

.list-8 {
  min-width: 300px;
  max-width: 400px;
}

html.w-mod-js [data-ix="new-interaction"] {
  transform: translate(0);
}

@media screen and (min-width: 1440px) {
  .container.large.absolute {
    margin-right: 0;
    display: flex;
    position: absolute;
    inset: auto 0% 0%;
  }

  .section.hero {
    background-color: var(--hbs_green);
    height: 80vh;
  }

  .section.gradient-180 {
    background-image: linear-gradient(180deg, var(--hbs_green_light) 5%, var(--hbs_white));
  }

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

  .hero_illustration {
    width: 45%;
    height: 100%;
    margin-right: 100px;
  }

  .illustration {
    width: auto;
    height: 750px;
    inset: auto 0% 0% auto;
  }

  .illustration._4 {
    object-fit: contain;
    width: 100%;
    height: 550px;
    margin-bottom: 0;
    margin-right: 0;
  }

  .h3, .h3.centre.contact-header {
    font-family: Montserrat, sans-serif;
  }

  .h2 {
    z-index: 1;
    text-align: center;
    display: block;
    position: relative;
    overflow: visible;
  }

  .feature_grid {
    height: 640px;
  }

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

  .h4 {
    font-family: var(--secondary);
  }

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

  .navbar {
    background-color: var(--hbs_white);
    z-index: 10;
    padding-bottom: 5px;
  }

  .margin-bottom.margin-xlarge {
    margin-bottom: 1rem;
  }

  .text-align-center {
    background-color: #0000;
  }

  .max-width-large {
    color: #413b3b;
  }

  .text-size-medium {
    font-family: Montserrat, sans-serif;
  }

  .libraries-why_text {
    font-family: var(--primary);
    letter-spacing: normal;
    padding-bottom: 0;
    font-size: 18px;
  }

  .container-small {
    margin-left: auto;
  }

  .libraries-why_text-wrapper {
    margin-top: 1rem;
    padding-bottom: 1rem;
    display: block;
    position: static;
  }

  .heading-huge {
    font-family: Montserrat, sans-serif;
  }

  .header_cta.footer_cta-2-copy {
    z-index: 10;
  }

  .step {
    border-radius: 18px;
    margin-bottom: 0;
  }

  .next-button {
    border-radius: 7px 7px 10px 10px;
    height: 50px;
    padding-top: 10px;
  }

  .section-2 {
    border-radius: 0;
  }

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

  .video-wrapper {
    object-fit: contain;
    width: auto;
    max-height: none;
    overflow: visible;
  }

  .video-wrapper.container-2 {
    width: 100%;
    height: auto;
  }

  .content-section-dark {
    background-color: var(--hbs_green);
  }

  .services_description {
    line-height: 28px;
  }

  .heading-style-h5, .text-size-regular, .heading-4 {
    font-family: Montserrat, sans-serif;
  }

  .paragraph-5 {
    font-family: Helvetica Neue, Arial, sans-serif;
    font-weight: 400;
    position: static;
  }

  .heading-5, .text-block-2, .text-block-3, .text-block-4 {
    font-family: Montserrat, sans-serif;
  }

  .mi-dynarodowe-projekty {
    font-size: 23px;
  }

  .frame-17556 {
    height: 23rem;
  }

  .frame-17552 {
    font-size: 100%;
    line-height: 100%;
  }

  .vectors-wrapper {
    background-color: var(--transparent);
    -webkit-text-fill-color: inherit;
    background-clip: border-box;
    justify-content: center;
    align-items: center;
  }

  .frame-17551 {
    justify-content: flex-start;
    align-items: center;
  }

  .lorem-ipsum-dolor-sit-amet-consectetur-sed-tincidunt-id-rhoncus-pellentesque-accumsan-cursus-leo-sed-ut-dui-sagittis-nulla-bibendum {
    position: static;
  }

  .example_component {
    width: 100%;
    height: auto;
    line-height: 60;
  }

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

  .padding-section-example {
    width: auto;
    height: auto;
    padding-top: 0;
    line-height: 40vh;
    position: static;
    top: 220px;
  }

  .padding-0 {
    width: auto;
    height: auto;
    margin-bottom: 0;
    font-size: 100%;
    line-height: 90vh;
    position: static;
    inset: 0%;
  }

  .splitter_component.is-radius {
    clear: none;
    flex-flow: row;
    justify-content: flex-start;
    align-items: stretch;
    width: 70vw;
    height: 70vh;
  }

  .splitter_image {
    width: auto;
  }

  .splitter_handle-component {
    flex: 0 auto;
  }

  .section_example {
    height: auto;
    font-size: 100%;
    line-height: 100vh;
  }

  .container-large-2 {
    height: auto;
    position: static;
    top: 0;
    overflow: hidden;
  }

  .h3-3 {
    font-family: Montserrat, sans-serif;
  }

  .video {
    box-sizing: border-box;
    object-fit: contain;
    max-width: 100%;
    max-height: none;
    display: block;
  }

  .text-size-medium-3.text-color-darkgrey {
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 0;
  }

  .libraries-usecases_image {
    padding-top: 0;
  }

  .heading-large {
    font-weight: 400;
  }

  .aaa-text-3 {
    column-count: auto;
    word-break: normal;
    overflow-wrap: normal;
    font-style: normal;
    font-weight: 400;
  }

  .container-4-copy {
    background-color: var(--hbs_green);
  }

  .text-weight-medium-header-cta {
    letter-spacing: normal;
    word-break: normal;
    font-weight: 400;
  }

  .text-light {
    margin-top: 1rem;
  }

  .paragraph-9 {
    color: var(--black);
    background-image: none;
    padding-top: 15px;
    font-size: 20px;
  }

  .bold-text-24 {
    font-size: 25px;
  }

  .paragraph-10 {
    color: var(--white);
    text-align: center;
  }

  .container-9 {
    width: 1500px;
    height: 600px;
  }

  .image-56 {
    text-align: center;
    max-width: 100%;
    max-height: 75%;
  }

  .cell {
    justify-content: center;
    align-items: center;
  }

  .cell-2 {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .quick-stack {
    width: auto;
    height: 40vw;
    padding-top: 0;
  }

  .padding-0-copy {
    width: auto;
    height: 65vh;
    margin-bottom: 20px;
    padding-left: 0;
  }

  .container-large-2-copy {
    width: auto;
    height: auto;
    overflow: hidden;
  }

  .side_byy_side.is-radius {
    justify-content: center;
    align-items: flex-start;
    width: auto;
    height: 70vw;
    display: flex;
  }

  .side_byy_side.is-radius-copy {
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    height: 70vw;
    display: flex;
  }

  .example_component-copy {
    width: 100%;
  }

  .max-width-large-copy {
    color: #413b3b;
  }

  .padding-section-example-copy {
    width: auto;
    height: auto;
    padding-top: 0;
    line-height: 40vh;
    position: static;
    top: 220px;
  }

  .image-57 {
    height: auto;
    max-height: 75%;
  }

  .container_pic {
    max-width: 1413px;
  }

  .blog-image {
    max-width: 100%;
    height: auto;
    max-height: 60%;
    position: static;
  }

  .text_blog_par {
    font-family: var(--secondary);
    letter-spacing: normal;
    padding-bottom: 5px;
  }

  .blog_point {
    text-indent: 0;
    margin-left: auto;
    margin-right: auto;
    font-size: 20px;
    font-weight: 700;
  }

  .list-item {
    font-family: var(--secondary);
    padding-bottom: 5px;
  }

  .list-item-2 {
    font-family: var(--secondary);
    margin-bottom: 0;
    padding-bottom: 5px;
  }

  .list-item-3 {
    font-family: var(--secondary);
    padding-bottom: 5px;
  }

  .blog_par_title {
    font-family: var(--primary);
    font-size: 22px;
  }

  .image_small {
    vertical-align: baseline;
    display: block;
  }

  .list-2 {
    margin-bottom: 20px;
  }

  .blog_utitle {
    font-size: 21px;
  }

  .bold-text-25 {
    font-size: 22px;
  }

  .bold-text-26 {
    font-family: var(--primary);
  }

  .bold-text-26.blog_par_title {
    font-size: 24px;
  }

  .image-58 {
    text-align: right;
    vertical-align: baseline;
    object-fit: contain;
    margin-left: auto;
    margin-right: auto;
    display: inline-block;
    position: static;
    overflow: scroll;
  }

  .container-10 {
    object-fit: fill;
    max-width: 90%;
    display: block;
    overflow: clip;
  }

  .blog_container1 {
    max-width: 85%;
  }

  .blog_txt, .blog_txt-copy {
    text-align: justify;
  }

  .blog_yt {
    width: 80%;
    margin: 20px auto;
  }

  .blog_utitle_green-copy {
    height: 20px;
  }

  .paragraph-11 {
    font-size: 20px;
    font-weight: 400;
  }

  .blog_txt2 {
    font-family: var(--primary);
    text-align: justify;
    word-break: normal;
    align-self: flex-start;
    max-width: none;
    font-weight: 400;
  }

  .blog_txt_wrapper {
    flex-flow: column;
    flex: 0 auto;
    justify-content: center;
    align-items: flex-start;
    max-width: 50%;
    display: flex;
  }

  .blog_img_wrapper {
    order: 1;
    justify-content: flex-end;
    align-self: center;
    align-items: center;
    max-width: 50%;
    max-height: 50%;
    display: block;
  }

  .blog_content_wrapper {
    grid-column-gap: 27px;
    grid-row-gap: 27px;
    flex-flow: row;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .list-4 {
    list-style-type: lower-alpha;
  }

  .div-block-6 {
    grid-column-gap: 21px;
    grid-row-gap: 21px;
    flex-flow: wrap;
    display: flex;
  }

  .image-59 {
    min-width: 40px;
    max-width: 30%;
    min-height: 40px;
  }

  .blog_image_small {
    margin-top: 0;
  }

  .blog_icon_wrapper {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    flex-flow: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: center;
    align-items: center;
    width: auto;
    display: flex;
    position: static;
    inset: auto auto 0% 0%;
  }

  .blog_txt_long_wrapper {
    z-index: auto;
    clear: none;
    text-align: justify;
    flex-flow: column;
    justify-content: space-between;
    align-items: flex-start;
    width: 1200px;
    display: flex;
    position: static;
    inset: 0% 0% 0% auto;
  }

  .blog_margin {
    height: 15px;
  }

  .blog_point-copy {
    background-color: var(--hbs_green);
    color: var(--white);
    text-align: left;
    text-indent: 0;
    text-indent: 0;
    align-self: flex-start;
    margin-bottom: 10px;
    margin-left: auto;
    margin-right: auto;
    padding: 8px 40px 0;
    font-size: 20px;
    font-weight: 700;
    display: block;
  }

  .blog_point_left {
    text-indent: 0;
    margin-left: 0;
    margin-right: auto;
    font-size: 20px;
    font-weight: 700;
  }

  .blog_row {
    grid-column-gap: 18px;
    grid-row-gap: 18px;
    flex-flow: row;
    order: 0;
    justify-content: center;
    align-self: center;
    align-items: center;
    width: 70vw;
    display: flex;
  }

  .div-block-7 {
    clear: left;
    flex-flow: column;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 80%;
    position: static;
    overflow: hidden;
  }

  .image-60 {
    vertical-align: baseline;
  }

  .blog_list_wrapper {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .blog_list_wrapper.full-centre {
    margin-left: auto;
    margin-right: auto;
  }

  .div-block-8 {
    flex-flow: row;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .image-61 {
    height: auto;
  }

  .blog_img_wrapper_smaller {
    order: 1;
    justify-content: flex-end;
    align-self: center;
    align-items: center;
    max-width: 50%;
    height: 40vh;
    display: flex;
  }

  .list-5 {
    padding-left: 60px;
  }

  .frame-17556-copy {
    height: 26rem;
  }

  .frame-17551-copy {
    justify-content: flex-start;
    align-items: center;
  }

  .mi-dynarodowe-projekty-copy, .mi-dynarodowe-projekty-copy-copy {
    font-size: 23px;
  }

  .section-copy.hero {
    background-color: var(--hbs_green);
    height: 80vh;
  }

  .section-copy.gradient-180 {
    background-image: linear-gradient(180deg, var(--hbs_green_light) 5%, var(--hbs_white));
  }

  .blog_title_img {
    justify-content: space-between;
    align-items: center;
    max-width: 80%;
    margin-top: 10px;
    margin-bottom: 10px;
    padding-bottom: 20px;
    display: flex;
    position: static;
  }

  .blog_title_img.full-centre {
    background-color: #ffffffa8;
    justify-content: center;
    align-items: center;
    width: auto;
    margin-top: 10px;
    padding-bottom: 10px;
  }

  .section-6 {
    background-image: url('../images/cropped.jpg');
    background-position: 50%;
    background-size: auto;
    max-width: none;
  }

  .blog_bckg_title {
    background-image: url('../images/cropped.jpg');
    background-position: 0 0;
    background-size: auto;
    justify-content: center;
    align-items: center;
    min-width: auto;
    min-height: 35rem;
    max-height: none;
    display: flex;
  }

  .contact-_blog {
    flex-direction: column;
    align-items: center;
    padding-bottom: 2rem;
    display: flex;
  }

  .container-11 {
    margin-left: 60px;
  }

  .link-7, .link-8 {
    display: inline;
  }

  .paragraph-12 {
    padding-left: 40px;
  }

  .blog_tb_txt {
    margin-left: 0;
  }

  .section-7 {
    margin-top: 40px;
  }

  .div-block-9 {
    margin-bottom: 5px;
  }

  .blog_bckg_title-2 {
    background-image: url('../images/_1252060.jpg');
    background-position: 50%;
    background-size: cover;
    justify-content: center;
    align-items: center;
    min-width: auto;
    min-height: 35rem;
    max-height: none;
    display: flex;
  }

  .blog_tb_section {
    margin-top: 60px;
  }

  .link-9 {
    vertical-align: baseline;
    display: block;
  }

  .link-10 {
    display: block;
  }

  .list-6 {
    margin-left: 60px;
  }

  .list-item-4, .list-item-5, .list-item-6, .list-item-7 {
    padding-bottom: 10px;
  }

  .blog_bcg_title2 {
    background-image: url('../images/_1252231-1.jpg');
    background-position: 50%;
    background-size: cover;
    justify-content: center;
    align-items: center;
    min-width: auto;
    min-height: 35rem;
    max-height: none;
    display: flex;
  }

  .blog_spacer {
    min-width: auto;
    height: 60px;
    padding-bottom: 0;
    padding-right: 0;
  }

  .div-block-11 {
    height: 100px;
  }

  .illustration-copy._4-copy {
    object-fit: contain;
    width: 600px;
    max-width: 100%;
    height: 600px;
    max-height: none;
    margin-bottom: 0;
    margin-right: 0;
  }

  .text-light-copy, .text-light_white_2 {
    margin-top: 1rem;
  }

  .container-copy.large.absolute, .container-copy.large-copy.absolute, .container-copy.large-copy.absolute-copy {
    margin-right: 0;
    display: flex;
    position: absolute;
    inset: auto 0% 0%;
  }

  .button-5 {
    background-color: var(--hbs_green);
    text-align: center;
    width: 200px;
    height: 45px;
    margin-right: 0;
    padding-top: 10px;
    font-size: 16px;
    line-height: 18px;
  }

  .button-5.w--current {
    background-color: var(--hbs_green);
    text-align: center;
    width: 200px;
    height: 45px;
    margin-right: 0;
    padding-top: 10px;
  }

  .blog_title_landing {
    font-family: var(--primary);
    justify-content: center;
    align-items: center;
    font-size: 22px;
    display: flex;
  }

  .container-15 {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    grid-template-rows: auto auto auto auto auto;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    grid-auto-flow: row;
    place-items: center stretch;
    max-width: none;
    display: flex;
  }

  .blog_landingi_p {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    grid-auto-flow: row dense;
    align-content: start;
    place-items: center;
    width: 200px;
    max-width: 200px;
    height: auto;
    display: grid;
  }

  .image_land_small {
    width: 200px;
    max-width: none;
    height: 150px;
  }

  .button-5-copy {
    background-color: var(--hbs_green);
    text-align: center;
    width: 200px;
    height: 50px;
    padding-top: 5px;
    font-size: 15px;
    line-height: 18px;
  }

  .button-5-copy.w--current {
    background-color: var(--hbs_green);
    text-align: center;
    width: 180px;
    height: 60px;
    padding-top: 20px;
  }

  .button-5-copy-2 {
    background-color: var(--hbs_green);
    text-align: center;
    width: 200px;
    height: 60px;
    padding-top: 20px;
    font-size: 15px;
    line-height: 18px;
  }

  .button-5-copy-2.w--current {
    background-color: var(--hbs_green);
    text-align: center;
    width: 180px;
    height: 60px;
    padding-top: 20px;
  }

  .bold-text-29, .bold-text-30, .bold-text-31 {
    font-size: 16px;
  }

  .div-block-13 {
    justify-content: flex-end;
    align-items: center;
    display: flex;
  }

  .div-block-14 {
    justify-content: flex-start;
    align-items: center;
    display: flex;
  }

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

  .blog_icon {
    width: 100px;
  }

  .blog_bckg_title-4 {
    background-image: url('../images/przemysłowe5.jpeg');
    background-position: 50%;
    background-size: cover;
    justify-content: center;
    align-items: center;
    min-width: auto;
    min-height: 35rem;
    max-height: none;
    display: flex;
  }

  .blog_bckg_title-5 {
    background-image: url('../images/img_20200701_122430.jpg');
    background-position: 50%;
    background-size: cover;
    background-attachment: fixed;
    justify-content: center;
    align-items: center;
    min-width: auto;
    min-height: 35rem;
    max-height: none;
    display: flex;
  }

  .blog_panels {
    grid-column-gap: 28px;
    grid-row-gap: 28px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    place-items: center;
    max-width: 75%;
    display: grid;
  }

  .blog_panels.flex-center {
    grid-auto-flow: row;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
  }

  .div-block-15 {
    background-color: var(--hbs_green);
    color: var(--white);
    text-align: center;
    border-radius: 5px;
  }

  .blog_panel {
    background-color: var(--hbs_green);
    color: var(--white);
    text-align: center;
    border-radius: 9px;
    min-width: 200px;
    min-height: 200px;
    margin-top: auto;
    margin-bottom: auto;
    padding: 10px;
  }

  .blog_bckg_title-6 {
    background-image: url('../images/DSCF0402.jpg');
    background-position: 50%;
    background-size: cover;
    justify-content: center;
    align-items: center;
    min-width: auto;
    min-height: 35rem;
    max-height: none;
    display: flex;
  }

  .paragraph-13, .paragraph-14 {
    text-align: justify;
  }

  .blog_frame {
    height: 23rem;
  }

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

  .services_right-wrapper-2-copy {
    margin-bottom: 0;
  }

  .vectors_wrapper_white {
    background-color: var(--white);
    -webkit-text-fill-color: inherit;
    background-clip: border-box;
    justify-content: center;
    align-items: center;
  }

  .blog_bckg_title-7 {
    background-image: url('../images/Zrzut-ekranu-2025-02-18-183632.png');
    background-position: 50%;
    background-size: cover;
    justify-content: center;
    align-items: center;
    min-width: auto;
    min-height: 35rem;
    max-height: none;
    display: flex;
  }

  .image-62 {
    max-width: 80%;
    padding-left: 60px;
  }

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

  .blog_bckg_title-8 {
    background-image: url('../images/Zrzut-ekranu-2025-02-18-192200.png');
    background-position: 50%;
    background-size: cover;
    justify-content: center;
    align-items: center;
    min-width: auto;
    min-height: 35rem;
    max-height: none;
    display: flex;
  }

  .blog_bckg_title-9 {
    background-image: url('../images/_1251955.jpg');
    background-position: 50%;
    background-size: cover;
    justify-content: center;
    align-items: center;
    min-width: auto;
    min-height: 35rem;
    max-height: none;
    display: flex;
  }

  .blog_bckg_title-10 {
    background-image: url('../images/DSCF0486.jpg');
    background-position: 50%;
    background-size: auto;
    justify-content: center;
    align-items: center;
    min-width: auto;
    min-height: 35rem;
    max-height: none;
    display: flex;
  }

  .list-7 {
    margin-top: 20px;
  }

  .list-item-10 {
    text-align: justify;
    margin-top: 10px;
  }

  .list-item-11 {
    margin-top: 10px;
  }

  .blog_panels_4 {
    grid-column-gap: 28px;
    grid-row-gap: 28px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    place-items: center;
    max-width: 75%;
    display: grid;
  }

  .blog_panels_4.flex-center {
    grid-auto-flow: row;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
  }

  .blog_panel-2 {
    background-color: var(--hbs_green);
    color: var(--white);
    text-align: center;
    border-radius: 9px;
    width: 240px;
    min-width: 200px;
    min-height: 200px;
    margin-top: auto;
    margin-bottom: auto;
    padding: 10px;
  }

  .blog_bckg_title-11 {
    background-image: url('../images/DSC04903.jpg');
    background-position: 50%;
    background-size: auto;
    justify-content: center;
    align-items: center;
    min-width: auto;
    min-height: 35rem;
    max-height: none;
    display: flex;
  }

  .quick-stack-3 {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
  }

  .paragraph-17 {
    justify-content: center;
    align-items: center;
    display: block;
  }

  .cell-3 {
    justify-content: center;
    align-items: center;
  }

  .grid-2 {
    grid-column-gap: 3px;
    grid-row-gap: 3px;
    grid-template: "Area"
                   "."
                   "."
                   "."
                   / 1fr 1fr 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    grid-auto-flow: row;
    place-items: center;
    max-width: 80%;
    display: grid;
    position: static;
  }

  .paragraph-18 {
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .blog_table_up {
    background-color: var(--hbs_green);
    color: var(--white);
    text-align: center;
    justify-content: space-between;
    align-items: center;
    width: 190px;
    height: 40px;
    padding-bottom: 5px;
    padding-right: 5px;
    display: block;
  }

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

  .blog_bckg_title-12 {
    background-image: url('../images/Zrzut-ekranu-2025-02-20-122938.png');
    background-position: 50%;
    background-size: cover;
    justify-content: center;
    align-items: center;
    min-width: auto;
    min-height: 35rem;
    max-height: none;
    display: flex;
  }

  .blog_panels-copy {
    grid-column-gap: 28px;
    grid-row-gap: 28px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    place-items: center;
    max-width: 75%;
    display: grid;
  }

  .blog_panels-copy.flex-center {
    grid-auto-flow: row;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
  }

  .blog_panel-copy {
    background-color: var(--hbs_green);
    color: var(--white);
    text-align: left;
    border-radius: 9px;
    min-width: 200px;
    height: 220px;
    min-height: 180px;
    margin-top: auto;
    margin-bottom: auto;
    padding: 10px;
  }

  .paragraph-19, .paragraph-20, .paragraph-21 {
    text-align: left;
  }

  .blog_bckg_title-13 {
    background-image: url('../images/_1252295.jpg');
    background-position: 50%;
    background-size: cover;
    justify-content: center;
    align-items: center;
    min-width: auto;
    min-height: 35rem;
    max-height: none;
    display: flex;
  }

  .image-63 {
    background-image: url('../images/20200715_181239-1.jpg');
    background-position: 0 0;
    background-size: auto;
  }

  .blog_txt_long_wrapper_lefr_mg {
    z-index: auto;
    clear: none;
    text-align: justify;
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    width: 1200px;
    margin-left: 20px;
    display: flex;
    position: static;
    inset: 0% 0% 0% auto;
  }

  .blog_txt_long_wrapper-copy {
    z-index: auto;
    clear: none;
    text-align: justify;
    flex-flow: column;
    justify-content: space-between;
    align-items: flex-start;
    width: 1200px;
    display: block;
    position: static;
    inset: 0% 0% 0% auto;
  }

  .blog_bckg_title-14 {
    background-image: url('../images/aplikacja-ściana.png');
    background-position: 50%;
    background-size: cover;
    justify-content: center;
    align-items: center;
    min-width: auto;
    min-height: 35rem;
    max-height: none;
    display: flex;
  }

  .div-block-17 {
    max-width: 99.9997%;
    display: flex;
  }

  .blog_copm {
    max-width: 50%;
    height: 100%;
    margin-left: 20px;
    margin-right: 20px;
  }

  .div-block-18 {
    justify-content: space-between;
    align-items: center;
    min-width: 80%;
    min-height: 200px;
    display: flex;
    overflow: auto;
  }

  .spacer_vertical {
    background-color: var(--hbs_green);
    flex-flow: column;
    justify-content: space-between;
    align-items: center;
    width: 5px;
    height: 160px;
    min-height: 100%;
    padding-bottom: 0;
    padding-right: 0;
    display: flex;
  }

  .main_pic_larrger.large.absolute {
    height: 700px;
    margin-right: -150px;
    display: flex;
    position: absolute;
    inset: auto 0% 0%;
  }

  .illustration-copy {
    width: auto;
    height: 750px;
    inset: auto 0% 0% auto;
  }

  .illustration-copy._4 {
    object-fit: contain;
    width: 100%;
    height: 550px;
    margin-bottom: 0;
    margin-right: 0;
  }

  .illustration-copy._4-copy {
    object-fit: contain;
    width: auto;
    height: auto;
    margin-bottom: 0;
    margin-left: auto;
    margin-right: auto;
  }

  .blog_bckg_title-15 {
    background-image: url('../images/piana.jpg');
    background-position: 50%;
    background-size: cover;
    justify-content: center;
    align-items: center;
    min-width: auto;
    min-height: 35rem;
    max-height: none;
    display: flex;
  }

  .blog_adv_disadv {
    justify-content: center;
    align-items: flex-start;
    min-width: 70%;
    min-height: 200px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    overflow: auto;
  }

  .blog_adv {
    background-color: var(--hbs_green);
    color: var(--white);
    text-align: left;
    text-indent: 0;
    align-self: flex-start;
    width: 400px;
    min-width: auto;
    margin-bottom: 10px;
    margin-left: 0;
    margin-right: auto;
    padding: 8px 40px 0;
    font-size: 20px;
    font-weight: 700;
    display: block;
  }

  .list-item-22 {
    max-width: 400px;
  }

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

  .paragraph-23 {
    min-width: 50%;
    margin-top: 10px;
  }
}

@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: 70%;
  }

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

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

  .inline {
    box-sizing: border-box;
    object-fit: fill;
    width: 660px;
    position: relative;
  }

  .creators_wrap {
    padding-top: 80px;
  }

  .creator_block {
    display: block;
  }

  .creator_container {
    padding-bottom: 80px;
  }

  .hero_illustration {
    height: 70%;
  }

  .illustration._4 {
    object-fit: contain;
    height: 100%;
    margin-right: 0;
  }

  .overflow-hidden {
    width: 650px;
  }

  .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;
    display: none;
  }

  .about-menu {
    display: none;
  }

  .blur {
    background-color: #00000040;
  }

  .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 {
    margin-top: auto;
    padding-left: 0;
    padding-right: 0;
    position: sticky;
  }

  .navbar_container {
    width: 90%;
    min-width: auto;
  }

  .button-icon-small-secondary {
    position: static;
    top: 16px;
  }

  .padding-section-large {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .margin-bottom {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

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

  .text-weight-medium {
    display: block;
  }

  .libraries-why_text {
    font-size: 1.75rem;
  }

  .libraries-why_text-overlay.clickable-off {
    display: block;
    bottom: 0;
  }

  .libraries-why_button-row {
    display: flex;
  }

  .padding-bottom {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .padding-bottom.padding-xxhuge.extra-padding-desktop {
    padding-bottom: 7.5rem;
  }

  .libraries-why_text-underline {
    background-position: 50% 70%;
    background-size: 11.25rem;
  }

  .heading-xhuge {
    font-size: 3.5rem;
  }

  .libraries-howitworks_video-wrapper {
    width: 33.75rem;
    height: 21.0938rem;
  }

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

  .libraries-howitworks_content-right {
    height: 27.1875rem;
  }

  .container-large {
    width: 90%;
  }

  .libraries-howitworks_component {
    grid-column-gap: 3rem;
    grid-template-columns: 1fr 1fr;
    grid-auto-flow: row;
  }

  .heading-huge {
    font-size: 3.25rem;
  }

  .header_cta.footer_cta-2-copy {
    flex-flow: row;
    display: flex;
    position: static;
  }

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

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

  .footer-wrapper-two {
    flex-wrap: wrap;
  }

  .footer-form {
    width: 100%;
    margin-top: 40px;
  }

  .footer-form-container {
    max-width: 350px;
  }

  .checkbox-label {
    padding-left: 60px;
    font-size: 1em;
  }

  .checkbox-wrapper {
    width: 80%;
    height: 50px;
  }

  .extra-option-wrap {
    text-align: left;
    flex-wrap: nowrap;
    justify-content: center;
    font-size: .9em;
    line-height: 1.1em;
  }

  .collaborate-form-step {
    min-height: 565px;
  }

  .container-4 {
    width: 100%;
  }

  .play-icon {
    width: 8rem;
  }

  .services-item {
    grid-row-gap: 30px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

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

  .image_wrapper {
    background-position: -85% 0;
  }

  .image_wrapper.img {
    background-position: 185% 0;
  }

  .services_section-wrapper {
    padding-bottom: 100px;
  }

  .services_description {
    flex-flow: row;
    display: block;
  }

  .blog44_button-row {
    flex: none;
  }

  .blog44_heading-wrapper {
    grid-column-gap: 3rem;
  }

  .spacer-xxlarge {
    padding-top: 4.5rem;
  }

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

  .blog44_heading {
    margin-right: 3rem;
  }

  .layout353_component {
    grid-column-gap: 3rem;
    grid-template-columns: 1fr 1fr;
    grid-auto-flow: row;
    min-height: auto;
  }

  .navbar1_link {
    width: auto;
    padding: .75rem 0;
    font-size: 1.125rem;
  }

  .menu-icon1_line-bottom {
    background-color: #ffffff1a;
    width: 24px;
    height: 2px;
    padding-bottom: 0;
    padding-right: 0;
  }

  .navbar1_menu-button.w--open {
    background-color: #0000;
  }

  .menu-icon1 {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    margin-right: -.5rem;
    padding-bottom: 0;
    padding-right: 0;
    display: flex;
  }

  .navbar1_menu {
    -webkit-text-fill-color: inherit;
    background-color: #fff;
    background-clip: border-box;
    border-bottom: 1px solid #00060d1a;
    padding: 1rem 5% 2rem;
    position: absolute;
    overflow: auto;
  }

  .navbar1_menu.is-page-height-tablet {
    height: 100dvh;
    padding-bottom: 6.5rem;
    transition: height .5s;
  }

  .menu-icon1_line-middle {
    background-color: #ffffff1a;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 2px;
    margin-top: 6px;
    margin-bottom: 6px;
    padding-bottom: 0;
    padding-right: 0;
    display: flex;
  }

  .navbar1_menu-buttons {
    flex-direction: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    align-items: stretch;
    margin-top: 1.5rem;
    margin-left: 0;
  }

  .menu-icon1_line-top {
    background-color: #ffffff1a;
    width: 24px;
    height: 2px;
    padding-bottom: 0;
    padding-right: 0;
  }

  .menu-icon_line-middle-inner {
    width: 4px;
    height: 0;
    padding-bottom: 0;
    padding-right: 0;
  }

  ._1-3-grid {
    grid-row-gap: 25px;
    grid-template-columns: 1fr;
  }

  .cta53_card {
    padding: 3rem;
  }

  .menu-icon1-2 {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 3rem;
    height: 3rem;
    margin-right: -.5rem;
    padding-bottom: 0;
    padding-right: 0;
    display: flex;
  }

  .menu-icon1_line-top-2 {
    background-color: #161616;
    width: 1.5rem;
    height: .125rem;
    padding-bottom: 0;
    padding-right: 0;
  }

  .menu-icon1_line-middle-2 {
    background-color: #161616;
    justify-content: center;
    align-items: center;
    width: 1.5rem;
    height: .125rem;
    margin-top: .375rem;
    margin-bottom: .375rem;
    padding-bottom: 0;
    padding-right: 0;
    display: flex;
  }

  .menu-icon_line-middle-inner-2 {
    width: .25rem;
    height: 0;
    padding-bottom: 0;
    padding-right: 0;
  }

  .menu-icon1_line-bottom-2 {
    background-color: #161616;
    width: 1.5rem;
    height: .125rem;
    padding-bottom: 0;
    padding-right: 0;
  }

  .mi-dynarodowe-projekty {
    font-size: 24px;
  }

  .frame-17756 {
    grid-row-gap: 40px;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .frame-17556 {
    flex-flow: column;
    height: auto;
  }

  .handle-container {
    flex-direction: column;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }

  .handle-wrapper {
    width: 700px;
    max-width: none;
    height: 394px;
    margin-bottom: 20px;
    margin-right: 0;
  }

  .handle-bar {
    height: 500px;
  }

  .image-left {
    width: auto;
  }

  .compare-scroll-inner {
    aspect-ratio: auto;
    height: 60svh;
  }

  .compare-scroll-text-wrapper {
    padding: 1rem 1.3rem;
    font-size: 1.8rem;
    bottom: 1.3rem;
  }

  .before-2 {
    background-image: none;
    background-position: 0 0;
    background-repeat: repeat;
    background-size: auto;
    background-attachment: scroll;
  }

  .before_mobile {
    background-position: 50% 60%;
    background-size: auto 40vh;
    width: 100%;
    display: block;
  }

  .after-2 {
    background-image: none;
    background-position: 0 0;
    background-repeat: repeat;
    background-size: auto;
    background-attachment: scroll;
  }

  .after_mobile {
    background-position: 50% 60%;
    background-size: auto 40vh;
    width: 100%;
    display: block;
  }

  .libraries-header_image-inner-wrapper {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    margin-left: -50%;
  }

  .libraries-header_image {
    width: 40rem;
  }

  .libraries-header_heading {
    font-size: 3.75rem;
  }

  .libraries-header_text-underline {
    background-position: 50%;
    background-size: 22.5rem;
  }

  .margin-top {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .example_component {
    width: 85vw;
  }

  .splitter_before {
    width: 80vw;
  }

  .splitter_component, .splitter_component.is-radius, .splitter_image.is-after {
    width: 85vw;
  }

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

  .creator_block-2 {
    display: block;
  }

  .libraries-usecases_heading-wrapper {
    text-align: center;
    flex-direction: column;
  }

  .libraries-usecases_typed-text {
    font-size: 3.5rem;
  }

  .libraries-usecases_component {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
  }

  .libraries-usecases_card3 {
    padding: 3rem 2.5rem;
  }

  .heading-xhuge-2 {
    font-size: 3.5rem;
  }

  .libraries-usecases_card2, .libraries-usecases_card1 {
    padding: 2.5rem;
  }

  .heading-large {
    font-size: 1.7rem;
  }

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

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

  .product5_mask {
    width: 50%;
  }

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

  .product5_slide {
    padding-right: 2rem;
  }

  .aaa-wrap-7 {
    height: auto;
    min-height: 58vh;
  }

  .button-4.top-margin {
    justify-content: flex-end;
    margin-top: 20px;
  }

  .icon-2 {
    font-size: 2rem;
  }

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

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

  .about-me_left {
    text-align: center;
    padding: 30px 30px 40px;
  }

  .button-inverted {
    margin-top: 40px;
  }

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

  .brand-copy {
    margin-top: 30px;
    margin-bottom: 0;
  }

  .collection-list-2 {
    grid-template-columns: repeat(auto-fit, minmax(430px, 1fr));
  }

  .paragraph-footer2 {
    text-align: center;
    max-width: 240px;
  }

  .site-logo {
    padding-left: 0;
  }

  .nav_link {
    margin: 25px auto;
  }

  .container-large-no-padding.modified {
    padding-left: 10px;
  }

  .container-large-no-padding.flex {
    width: 95%;
  }

  .footer-social {
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
    display: flex;
  }

  .menu-button {
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 7px 5px 5px;
  }

  .menu-button.w--open {
    color: #000;
    background-color: #fff;
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 7px 5px 5px;
  }

  .fp-left {
    max-width: none;
    margin-top: 10px;
    margin-bottom: 30px;
  }

  .about-me_image-wrapper {
    width: auto;
  }

  .form {
    flex-direction: column;
  }

  .additional-links {
    margin-top: 30px;
  }

  .text-field {
    margin-bottom: 20px;
    padding-right: 390px;
  }

  .fp-tag {
    text-align: center;
    margin-bottom: 30px;
  }

  .nav-menu {
    background-color: #fff;
  }

  .home-para-wrapper {
    flex-direction: column;
    align-items: center;
    display: flex;
  }

  .image-55 {
    width: auto;
  }

  .social-wrapper {
    margin-top: 30px;
  }

  .link-wrapper {
    text-align: center;
    flex-direction: column;
    margin-top: 0;
    margin-bottom: 30px;
    display: flex;
  }

  .collection-list-4 {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .paragraph-max-size {
    text-align: center;
    max-width: 600px;
    margin-top: 30px;
  }

  .blog-header_component {
    margin-top: 10px;
  }

  .collection-list-5 {
    grid-template-columns: repeat(auto-fit, minmax(430px, 1fr));
  }

  .text-field-5 {
    margin-bottom: 20px;
    padding-right: 390px;
  }

  .additional-image {
    height: 470px;
  }

  .paragraph-7 {
    margin-top: 15px;
    margin-left: 15px;
    margin-right: 15px;
  }

  .heading-11 {
    letter-spacing: -2px;
    margin-top: 30px;
    font-size: 2.7rem;
  }

  .container-4-copy {
    width: 100%;
  }

  .container-8 {
    text-align: left;
    width: 90%;
  }

  .text-weight-medium-header-cta {
    text-align: left;
    display: block;
    overflow: visible;
  }

  .problems_container {
    padding-top: 80px;
  }

  .paragraph-8 {
    margin-left: 20px;
    margin-right: 20px;
    padding-right: 0;
  }

  .side_byy_side, .side_byy_side.is-radius, .side_byy_side.is-radius-copy, .example_component-copy {
    width: 85vw;
  }

  .text_blog_par {
    font-size: 1.75rem;
  }

  .libraries-why_text-overlay-blog.clickable-off {
    display: block;
    bottom: 0;
  }

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

  .blog_img_wrapper {
    flex-flow: row;
    justify-content: center;
    align-items: center;
    max-width: none;
    max-height: none;
  }

  .blog_content_wrapper {
    flex-flow: column;
  }

  .blog_img_wrapper_smaller {
    flex-flow: row;
    justify-content: center;
    align-items: center;
    max-width: none;
    max-height: none;
  }

  .frame-17556-copy {
    flex-flow: column;
    height: auto;
  }

  .frame-17756-copy {
    grid-row-gap: 40px;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .mi-dynarodowe-projekty-copy, .mi-dynarodowe-projekty-copy-copy {
    font-size: 24px;
  }

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

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

  .contact-_blog {
    padding-top: 64px;
    display: none;
  }

  .blog_tb_section {
    margin-top: 40px;
  }

  .illustration-copy._4, .illustration-copy._4-copy {
    object-fit: contain;
    height: 100%;
    margin-right: 0;
  }

  .container-copy {
    width: 90%;
  }

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

  .container-copy.large.absolute {
    height: 70%;
  }

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

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

  .container-copy.large-copy.absolute, .container-copy.large-copy.absolute-copy {
    height: 70%;
  }

  .blog_frame {
    flex-flow: column;
    height: auto;
  }

  .problems_container-copy {
    padding-top: 80px;
  }

  .blog_table_up {
    padding-bottom: 5px;
  }

  .blog_table_content, .bold-text-32, .bold-text-33, .bold-text-34 {
    text-align: center;
  }

  .main_pic_larrger {
    width: 90%;
  }

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

  .main_pic_larrger.large.absolute {
    width: 400px;
    height: 70%;
  }

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

  .illustration-copy._4, .illustration-copy._4-copy {
    object-fit: contain;
    height: 100%;
    margin-right: 0;
  }
}

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

  .button.nav.white-button {
    min-width: 100%;
  }

  .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;
    display: block;
  }

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

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

  .h1 {
    overflow: hidden;
  }

  .inline {
    width: 500px;
  }

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

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

  .overflow-hidden {
    width: 500px;
  }

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

  .footer-credit {
    margin-top: 10px;
    margin-bottom: 10px;
    margin-left: 0;
  }

  .footer-credit.right {
    margin: 10px 0;
  }

  .footer-credit.margin-bottom-16 {
    margin-bottom: 16px;
  }

  .button-icon-small-secondary {
    padding: 10px 16px 10px 14px;
  }

  .button-icon-small-secondary.margin-right-small.mobile-margin-right-zero {
    margin-right: 0;
  }

  .padding-section-large {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .margin-bottom {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .text-size-medium {
    font-size: 1rem;
  }

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

  .testimonial21_content {
    padding: 1.5rem;
  }

  .testimonial21_client {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .testimonial21_client-image-wrapper {
    margin-bottom: 1rem;
    margin-right: 0;
  }

  .footer_cta-2 {
    padding: 2rem 5vw;
  }

  .footer_cta-button {
    flex: none;
  }

  .libraries-why_text {
    font-size: 1.5rem;
    line-height: 1.4;
  }

  .padding-bottom {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .padding-bottom.padding-xxhuge.extra-padding-desktop {
    padding-bottom: 5rem;
  }

  .libraries-why_text-underline {
    background-position: 50% 35%;
    background-size: 8rem;
  }

  .heading-xhuge {
    font-size: 2.25rem;
  }

  .libraries-why_text-wrapper {
    padding-bottom: 2.5rem;
  }

  .page-padding {
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .libraries-howitworks_video-wrapper {
    width: 100%;
    height: auto;
    margin-left: auto;
    padding-top: 62.5%;
    position: relative;
  }

  .libraries-howitworks_tabs-menu {
    display: none;
    position: relative;
    top: 0;
  }

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

  .libraries-howitworks_content-right {
    background-position: 0 0, 50% 75%;
    background-size: 18.75rem, 50rem;
    background-attachment: scroll, scroll;
    padding: 2rem;
  }

  .libraries-howitworks_content-right.is-item1 {
    height: auto;
    position: relative;
  }

  .libraries-howitworks_content {
    height: auto;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .libraries-howitworks_component {
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
  }

  .libraries-howitworks_mobile-image-wrapper {
    width: 100%;
    height: 100%;
    margin-top: 2rem;
    display: block;
  }

  .libraries-howitworks_desktop-content-wrapper {
    display: none;
  }

  .libraries-howitworks_tab-link {
    padding-left: 1rem;
    padding-right: 1rem;
    font-size: .875rem;
  }

  .heading-huge {
    font-size: 2.125rem;
  }

  .header_cta.footer_cta-2-copy {
    grid-column-gap: 0rem;
    grid-row-gap: 0rem;
    flex-flow: column;
  }

  .footer_cta-2-copy {
    padding: 2rem 5vw;
  }

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

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

  .footer-copyright {
    font-size: 14px;
    line-height: 20px;
  }

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

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

  .checkbox-label {
    font-size: 1.1em;
    line-height: 1.2em;
  }

  .form-content {
    width: 90%;
  }

  .extra-option-wrap {
    justify-content: center;
  }

  .container-3 {
    max-width: 90%;
  }

  .step-content-block {
    z-index: 2;
    order: -1;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .img-block {
    z-index: 3;
    order: 3;
    width: 70%;
    min-height: 50vh;
    padding-top: 20px;
    position: relative;
  }

  .dot {
    z-index: 99;
    order: 2;
    align-self: center;
    margin-bottom: 0;
    position: absolute;
    bottom: 50%;
  }

  .step-2 {
    justify-content: center;
    padding: 8%;
  }

  .scoll-wrap {
    z-index: 1;
    height: 100%;
    bottom: 50%;
  }

  .content-wrap {
    justify-content: center;
    align-items: center;
    width: 90%;
    height: 50vh;
    padding-bottom: 20px;
  }

  .step-block {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 110vh;
  }

  .play-icon {
    width: 5rem;
  }

  .services-item {
    margin-left: 2%;
    margin-right: 2%;
  }

  .image_wrapper {
    background-position: -85% -36%;
  }

  .image_wrapper.img {
    background-position: 185% -36%;
  }

  .blog44_button-row {
    justify-content: flex-start;
    width: 100%;
  }

  .blog44_button-row.show-mobile-landscape {
    margin-top: 2.5rem;
    display: flex;
  }

  .blog44_heading-wrapper {
    grid-row-gap: 2rem;
    flex-direction: column;
    grid-template-columns: 1fr;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .spacer-xxlarge {
    padding-top: 3rem;
  }

  .blog44_list {
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
  }

  .heading-style-h5 {
    font-size: 1.25rem;
  }

  .blog44_heading {
    margin-right: 0;
  }

  .spacer-xsmall {
    padding-top: .75rem;
  }

  .spacer-small {
    padding-top: 1.25rem;
  }

  .layout353_content-left {
    position: static;
  }

  .layout353_component {
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
  }

  .navbar1_logo-link {
    padding-left: 0;
  }

  .navbar1_menu.is-page-height-tablet {
    padding-bottom: 6rem;
  }

  .navbar1_component {
    height: auto;
    min-height: 4rem;
  }

  .spacer-medium {
    padding-top: 1.5rem;
  }

  .cta53_card {
    padding: 2rem;
  }

  .text-size-medium-2 {
    font-size: 1rem;
  }

  .cta53_component {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
  }

  .frame-17756 {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    flex-flow: column;
  }

  .handle-wrapper {
    width: 470px;
    height: 265px;
  }

  .container-7 {
    height: 300px;
  }

  .before_mobile, .after_mobile {
    background-position: 50% 70%;
  }

  .libraries-header_image-wrapper {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .libraries-header_image {
    width: 25rem;
  }

  .libraries-header_heading {
    font-size: 2.5rem;
  }

  .text-size-large {
    font-size: 1.125rem;
  }

  .libraries-header_text-underline {
    background-position: 50%;
    background-size: 15rem;
  }

  .margin-top {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .example_component {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    width: 90vw;
  }

  .splitter_before {
    width: 90vw;
  }

  .splitter_component {
    width: 90vw;
    height: 55vh;
  }

  .splitter_component.is-radius {
    width: 90vw;
    height: 35vh;
  }

  .splitter_image.is-after {
    width: 90vw;
  }

  .example_info_wrapper {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    flex-direction: column;
    align-items: flex-start;
    padding-left: 0;
    padding-right: 0;
  }

  .creator_block-2 {
    display: block;
  }

  .libraries-usecases_typed-text {
    font-size: 2.25rem;
  }

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

  .text-size-medium-3 {
    font-size: 1rem;
  }

  .libraries-usecases_card3 {
    grid-column-gap: 2.5rem;
    grid-row-gap: 2.5rem;
    grid-template-columns: 1fr;
    padding: 2.5rem 2rem;
  }

  .heading-xhuge-2 {
    font-size: 2.25rem;
  }

  .page-padding-2 {
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .libraries-usecases_card2 {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .libraries-usecases_card1 {
    padding-top: 2.5rem;
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .heading-large {
    font-size: 1.875rem;
  }

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

  .testimonial21_content-2 {
    padding: 1.5rem;
  }

  .text-size-medium-4, .text-size-medium-5 {
    font-size: 1rem;
  }

  .product5_mask {
    width: 80%;
  }

  .product5_image-wrapper {
    height: 100%;
  }

  .text-size-medium-6 {
    font-size: 1rem;
  }

  .product5_slide {
    padding-right: 1.5rem;
  }

  .product5_arrow.left {
    right: 3.5rem;
  }

  .button-4.top-margin {
    font-size: 1rem;
  }

  .button-4.secondary {
    margin-top: 10px;
    font-size: 1rem;
  }

  .button-4.secondary._1 {
    width: 99px;
    font-size: .9rem;
  }

  .mountain_image-wrapper {
    height: 480px;
  }

  .section-home-header {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .about-me_left {
    padding: 15px;
  }

  .button-inverted {
    margin-top: 20px;
    margin-bottom: 10px;
  }

  .heading-6 {
    font-size: 2rem;
  }

  .about-me_component {
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  }

  .form-block-2 {
    margin-bottom: 30px;
  }

  .footer-social {
    margin-top: 0;
  }

  .menu-button {
    margin-bottom: 0;
  }

  .section-about-me {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .fp-left {
    margin-bottom: 10px;
  }

  .about-me_image-wrapper {
    min-height: 280px;
  }

  .additional-links {
    font-size: 1rem;
  }

  .text-field {
    padding-right: 190px;
  }

  .fp-tag {
    margin-bottom: 15px;
  }

  .heading-7, .heading-8 {
    font-size: 2rem;
  }

  .text-field-4 {
    width: 280px;
  }

  .color-white.para-extra-margin {
    margin-top: 20px;
    font-size: 1rem;
  }

  .h4-button-wrapper {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 0;
    display: flex;
  }

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

  .form_filter-block {
    align-self: center;
    width: 400px;
  }

  .paragraph-footer {
    width: auto;
    font-size: .9rem;
  }

  .section-recent-posts {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .collection-list-4 {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    grid-template-columns: minmax(auto, auto);
  }

  .section-trending-posts {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .paragraph-max-size {
    margin-top: 20px;
    font-size: 1rem;
  }

  .footer_component {
    padding-top: 30px;
  }

  .heading-9 {
    font-size: 2rem;
  }

  .form-block-3 {
    margin-bottom: 30px;
  }

  .section-blog-header {
    padding-top: 30px;
  }

  .section-blog-body {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .featured-image-wrapper {
    height: 510px;
    margin-top: 30px;
  }

  .text-field-5 {
    padding-right: 190px;
  }

  .heading-10 {
    font-size: 2rem;
  }

  .problems_container {
    padding-top: 80px;
  }

  .bold-text-22 {
    text-indent: 0;
  }

  .bold-text-23 {
    text-align: right;
    text-indent: 0;
  }

  .example_info_wrapper-copy {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    flex-direction: column;
    align-items: flex-start;
    padding-left: 0;
    padding-right: 0;
  }

  .side_byy_side {
    width: 90vw;
    height: 55vh;
  }

  .side_byy_side.is-radius, .side_byy_side.is-radius-copy {
    width: 90vw;
    height: 35vh;
  }

  .example_component-copy {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    width: 90vw;
  }

  .spacer-small-copy {
    padding-top: 1.25rem;
  }

  .spacer-medium_mobile {
    padding-top: 1.5rem;
  }

  .text-size-medium-2-copy {
    font-size: 1rem;
  }

  .text_blog_par {
    font-size: 1.5rem;
    line-height: 1.4;
  }

  .frame-17756-copy {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    flex-flow: column;
  }

  .section-copy {
    padding-left: 0;
    padding-right: 0;
    display: block;
  }

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

  .contact-_blog {
    padding-top: 64px;
  }

  .container-copy {
    width: 90%;
  }

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

  .problems_container-copy {
    padding-top: 80px;
  }

  .main_pic_larrger {
    width: 90%;
  }

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

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

  .call_button {
    display: block;
  }

  .button_call {
    background-color: var(--hbs_green);
  }
}

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

  .header {
    padding-top: 16px;
  }

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

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

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

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

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

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

  .button.nav.black-button {
    flex-flow: row;
    justify-content: center;
    align-items: center;
    padding-top: 16px;
    display: block;
  }

  .button.nav.white-button {
    background-color: var(--white);
    color: var(--black);
    border-radius: 20px;
    flex-flow: row;
    justify-content: center;
    align-items: center;
    padding-top: 16px;
    display: block;
  }

  .button.nav.white-button:hover {
    background-color: var(--grey);
    -webkit-text-fill-color: inherit;
    background-clip: border-box;
  }

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

  .section.hero {
    padding-top: 48px;
  }

  .h1 {
    font-size: 40px;
  }

  .inline {
    width: 300px;
    font-size: 28px;
  }

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

  .form-field {
    height: auto;
  }

  .creators_wrap {
    padding-top: 64px;
  }

  .creator_block {
    display: block;
  }

  .creator_container {
    padding-bottom: 64px;
  }

  .block_username {
    font-size: 22px;
  }

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

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

  .illustration._4 {
    margin-right: 50px;
  }

  .h3.centre {
    text-align: center;
    font-size: 24px;
  }

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

  .h3.centre.contact-header.text-color-white {
    color: var(--hbs_white);
  }

  .h3.centre.creators_wrap {
    padding-top: 0;
  }

  .hero_mobile-image {
    text-align: center;
    width: auto;
    max-width: 100%;
    height: 254px;
    margin: 24px auto 0;
    display: block;
    position: static;
    overflow: visible;
  }

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

  .h2 {
    font-size: 32px;
  }

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

  .work-image {
    width: 80px;
  }

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

  .feature_grid.flip {
    flex-flow: column;
  }

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

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

  .feature_image._2 {
    vertical-align: baseline;
    display: inline-block;
    position: static;
  }

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

  .h4 {
    font-family: var(--primary);
    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;
  }

  .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 {
    z-index: 2;
    padding-top: 40px;
    position: static;
  }

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

  .navbar {
    padding-bottom: 5px;
    position: sticky;
    top: 0;
  }

  .footer-credit.right {
    margin: 10px 0;
  }

  .button-icon-small-secondary {
    padding: 10px 14px;
    font-size: 13px;
    top: 18px;
  }

  .button-icon {
    display: none;
  }

  .margin-bottom {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .text-align-center {
    background-color: #0000;
  }

  .footer_cta-2 {
    text-align: center;
    flex-direction: column;
    padding-bottom: 4rem;
  }

  .text-weight-medium {
    text-align: center;
    display: block;
  }

  .footer_cta-button {
    width: 100%;
  }

  .libraries-why_text {
    font-size: 1.25rem;
  }

  .libraries-why_text-overlay.clickable-off {
    z-index: 1;
  }

  .container-small {
    margin-left: 0;
    margin-right: 0;
    padding-left: 20px;
    padding-right: 20px;
  }

  .libraries-why_button-row {
    z-index: 1;
  }

  .padding-bottom {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .libraries-why_text-wrapper {
    height: auto;
    padding-top: 1rem;
    display: block;
  }

  .libraries-howitworks_tabs-menu {
    justify-content: flex-start;
    width: 90vw;
    overflow: scroll;
  }

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

  .libraries-howitworks_content-right {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .libraries-howitworks_content {
    height: auto;
  }

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

  .header_cta.footer_cta-2-copy {
    display: none;
    position: static;
  }

  .footer_cta-2-copy {
    text-align: center;
    flex-direction: column;
  }

  .container-2 {
    max-width: none;
  }

  .footer-wrapper-two {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .footer-block-two {
    margin-top: 40px;
  }

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

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

  .image-2 {
    margin-bottom: 1rem;
  }

  .mask {
    height: 100%;
    position: static;
  }

  .checkbox-label {
    padding-left: 40px;
    padding-right: 20px;
    font-size: 1em;
  }

  .form-wrapper {
    padding: 0;
  }

  .checkbox-wrapper {
    background-position: 10px;
    background-size: 20px;
    height: 40px;
    margin-bottom: 15px;
  }

  .form-content {
    width: 100%;
  }

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

  .step-paginator {
    height: auto;
    padding-bottom: 0;
  }

  .previous {
    max-width: 75px;
    margin-bottom: 10px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    inset: auto 0 0;
  }

  .checkbox-active-overlay {
    background-position: 10px;
    background-size: 20px;
  }

  .extra-option-wrap {
    justify-content: center;
  }

  .form-section-title {
    font-size: 2em;
    line-height: 1.3em;
  }

  .collaborate-form-step {
    width: 100%;
    min-height: 555px;
    margin-bottom: 140px;
    padding: 50px 10px;
  }

  .next {
    margin-bottom: 50px;
  }

  .submit-button {
    margin-bottom: -85px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
  }

  .img-block {
    width: 90%;
  }

  .dot {
    display: none;
  }

  .step-2 {
    margin-top: 45px;
  }

  .content-wrap {
    height: 50vh;
    padding-bottom: 60px;
  }

  .steps-clone {
    display: block;
    position: static;
  }

  .step-block {
    min-height: 110vh;
  }

  .content {
    font-size: 20px;
  }

  .play-icon {
    width: 3rem;
  }

  .services-item {
    margin-left: auto;
    margin-right: auto;
  }

  .medium-text {
    font-size: 26px;
    line-height: 36px;
  }

  .image_wrapper {
    height: 300px;
    padding-top: 30px;
    padding-left: 30px;
  }

  .image_wrapper.img {
    height: 300px;
    padding-top: 30px;
    padding-right: 30px;
  }

  .small-text {
    font-size: 14px;
    line-height: 25px;
  }

  .services_section-wrapper {
    padding-bottom: 60px;
  }

  .services-box {
    grid-template-columns: .5fr 3fr;
  }

  .services_description {
    grid-row-gap: 24px;
    flex-flow: column;
    display: block;
  }

  .blog44_item-content {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .heading-style-h5, .text-size-regular {
    font-family: Montserrat, sans-serif;
  }

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

  .navbar1_link {
    display: block;
  }

  .menu-icon1 {
    font-family: Montserrat, sans-serif;
  }

  .counter {
    font-size: 40px;
  }

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

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

  .cta53_card {
    -webkit-text-fill-color: inherit;
    background-clip: border-box;
  }

  .button-group.is-center {
    justify-content: center;
    align-items: center;
  }

  .bold-text-10.text-primary {
    font-size: 28px;
  }

  .mi-dynarodowe-projekty {
    font-size: 20px;
  }

  .frame-17756 {
    grid-row-gap: 30px;
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
  }

  .frame-17556 {
    grid-column-gap: 16px;
    grid-row-gap: 41px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    max-width: 482px;
    height: auto;
    display: flex;
    overflow: visible;
  }

  .before-after_after {
    border-radius: 1rem;
  }

  .handle-wrapper {
    width: 240px;
    height: 135px;
  }

  .handle-bar {
    height: 300px;
  }

  .compare-scroll-inner {
    height: 70svh;
  }

  .container-7 {
    height: 300px;
  }

  .drag {
    width: 4%;
    left: 48%;
  }

  .before-2 {
    background-repeat: repeat-x;
    background-size: cover;
  }

  .before_mobile, .after_mobile {
    background-position: 50% 75%;
    background-size: auto 200px;
  }

  .libraries-header_heading {
    font-size: 2.3rem;
  }

  .button-secondary.button-large.with-icon {
    justify-content: center;
  }

  .margin-top {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .button-wrapper.button-wrapper-center.max-width-full-mobile-portrait {
    margin-left: 0;
    margin-right: 0;
  }

  .example_info_tags-wrapper {
    flex-wrap: wrap;
  }

  .example_component {
    width: auto;
  }

  .splitter_before {
    width: 90vw;
  }

  .padding-section-example {
    height: 100vw;
  }

  .padding-0 {
    width: auto;
    margin-bottom: 0;
    padding-left: 0;
  }

  .splitter_component {
    width: 90vw;
    height: 35vh;
  }

  .splitter_component.is-radius {
    justify-content: center;
    align-items: center;
    height: 30vh;
  }

  .splitter_image.is-after {
    width: 90vw;
  }

  .splitter_handle-component {
    width: 2px;
  }

  .section_example {
    justify-content: center;
    height: auto;
  }

  .h3-3.centre {
    text-align: center;
    font-size: 24px;
  }

  .creator_block-2 {
    display: block;
  }

  .block_username-2 {
    font-size: 22px;
  }

  .video {
    max-height: none;
  }

  .libraries-usecases_card3 {
    padding: 2rem 1.5rem;
  }

  .libraries-usecases_card2 {
    background-color: var(--off-white);
    padding: 2rem 1.5rem 1.5rem;
  }

  .libraries-usecases_card1 {
    background-color: var(--off-white);
    padding: 2rem 1.5rem;
  }

  .heading-large {
    font-size: 1.5rem;
  }

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

  .section-4 {
    flex-flow: column;
    display: flex;
  }

  .product5_mask {
    width: 95%;
  }

  .aaa-decor-1 {
    align-items: center;
  }

  .aaa-text-3 {
    font-size: 1.3em;
  }

  .aaa-wrap-7 {
    text-align: center;
  }

  .aaa-decor-2 {
    align-self: center;
  }

  .aaa-text-3-2 {
    font-size: 1.3em;
  }

  .aaa-wrap-7-2 {
    text-align: center;
  }

  .mountain_image-wrapper {
    height: 250px;
  }

  .section-home-header {
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .about-me_left {
    padding: 0 0 10px;
  }

  .about-me_component {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  }

  .brand-copy {
    margin-top: 15px;
  }

  .collection-list-2 {
    grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  }

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

  .nav_link {
    margin-top: 15px;
    margin-bottom: 15px;
  }

  .footer-social {
    margin-bottom: 15px;
  }

  .hero-img {
    height: 100%;
  }

  .social-icon {
    width: 20px;
  }

  .additional-links {
    margin-top: 15px;
  }

  .nav-menu {
    margin-left: auto;
  }

  .heading-7.color-white {
    font-size: 1.8rem;
  }

  .heading-8 {
    text-align: center;
    margin-top: 10px;
  }

  .h4-button-wrapper {
    align-items: center;
    margin-bottom: 0;
  }

  .paragraph-footer {
    margin-top: 10px;
  }

  .section-recent-posts {
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .link-wrapper {
    margin-bottom: 15px;
  }

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

  .section-trending-posts {
    margin-bottom: 10px;
    padding-top: 15px;
    padding-bottom: 40px;
  }

  .footer_component {
    padding-top: 15px;
  }

  .button-post-author {
    font-size: .7rem;
  }

  .blog-header_component {
    margin-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .collection-list-5 {
    grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  }

  .section-blog-header {
    height: 530px;
    margin-bottom: 160px;
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .section-blog-body {
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .featured-image-wrapper {
    height: 300px;
    margin-top: 20px;
  }

  .time-wrapper {
    margin-top: 15px;
    font-size: .6rem;
  }

  .additional-image {
    height: 220px;
  }

  .heading-10 {
    text-align: center;
    margin-top: 10px;
  }

  .paragraph-7 {
    font-size: 1rem;
  }

  .heading-11 {
    font-size: 2rem;
  }

  .text-weight-medium-header-cta {
    text-align: center;
    display: block;
  }

  .problems_container {
    justify-content: flex-end;
    align-items: center;
    height: auto;
    padding-top: 64px;
  }

  .services_right-wrapper-2 {
    justify-content: flex-start;
    align-items: center;
    height: 72rem;
  }

  .section-5 {
    padding-top: 0;
    padding-bottom: 0;
  }

  .select-field {
    background-color: var(--light-grey);
    outline-color: var(--light-grey);
    color: var(--hbs_grey);
    -webkit-text-fill-color: inherit;
    background-clip: border-box;
    border-width: 2px;
    width: auto;
    height: auto;
    min-height: auto;
    margin-left: 0;
    margin-right: 0;
    padding: 15px 25px;
    font-size: 1.2em;
    font-weight: 500;
    transition-duration: .2s;
    overflow: clip;
  }

  .cell-2 {
    display: flex;
  }

  .quick-stack {
    align-self: stretch;
    height: 30vw;
  }

  .section_example-copy {
    justify-content: center;
  }

  .padding-0-copy {
    width: 100%;
    height: 120vw;
    padding-left: 1rem;
  }

  .side_byy_side {
    width: 90vw;
    height: 35vh;
  }

  .side_byy_side.is-radius, .side_byy_side.is-radius-copy {
    justify-content: center;
    align-items: center;
    height: 60vh;
  }

  .example_component-copy {
    width: auto;
  }

  .max-width-large-copy {
    height: 60%;
  }

  .padding-section-example-copy {
    height: auto;
  }

  .spacer-small-copy {
    height: 10px;
    padding-top: 1rem;
  }

  .spacer-medium_mobile {
    padding-top: 1rem;
  }

  .text-size-medium-2-copy.text-color-white-copy {
    font-size: 15px;
  }

  .text-color-white-copy {
    font-size: 20px;
    position: static;
  }

  .text_blog_par {
    margin-bottom: 10px;
    font-size: 1.25rem;
  }

  .libraries-why_text-overlay-blog.clickable-off {
    margin-left: auto;
    margin-right: auto;
  }

  .blog_txt_wrapper {
    max-width: 90%;
  }

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

  .blog_icon_wrapper {
    justify-content: space-between;
    align-items: center;
    max-width: 60%;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }

  .blog_txt_long_wrapper {
    font-size: 16px;
  }

  .blog_point_left {
    flex-flow: row;
    justify-content: space-between;
    align-self: flex-start;
    align-items: flex-start;
    display: block;
  }

  .blog_row {
    flex-flow: column;
    display: flex;
  }

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

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

  .list-5 {
    max-width: none;
  }

  .collapsible_text {
    max-height: 40rem;
    overflow: hidden;
  }

  .frame-17556-copy {
    grid-column-gap: 16px;
    grid-row-gap: 41px;
    grid-column-gap: 16px;
    grid-row-gap: 41px;
    grid-column-gap: 16px;
    grid-row-gap: 41px;
    grid-column-gap: 16px;
    grid-row-gap: 41px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    max-width: 482px;
    height: auto;
    display: flex;
    overflow: visible;
  }

  .frame-17756-copy {
    grid-row-gap: 30px;
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
  }

  .mi-dynarodowe-projekty-copy, .mi-dynarodowe-projekty-copy-copy {
    font-size: 20px;
  }

  .section-copy.hero {
    padding-top: 48px;
  }

  .section-copy.section-green-copy {
    height: 110rem;
  }

  .blog_title_img {
    margin-left: 100px;
    padding-left: 0;
  }

  .blog_title_img.full-centre {
    background-color: #ffffffa8;
  }

  .blog_bckg_title {
    min-height: 30rem;
  }

  .contact-_blog {
    z-index: 2;
    padding-top: 40px;
    position: static;
  }

  .blog_bckg_title-2 {
    min-height: 30rem;
  }

  .blog_tb_section {
    margin-top: 60px;
  }

  .link-9 {
    display: block;
  }

  .container-12 {
    margin-left: 10px;
    margin-right: 10px;
  }

  .blog_bcg_title2 {
    min-height: 30rem;
  }

  .illustration-copy._4, .illustration-copy._4-copy {
    margin-right: 50px;
  }

  .button-5 {
    background-color: var(--hbs_green);
    height: 45px;
    margin-top: 0;
    padding-top: 10px;
    display: block;
  }

  .button-5.w--current {
    background-color: var(--hbs_green);
    text-align: center;
    height: 45px;
    padding-top: 10px;
    display: block;
  }

  .container-15 {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto auto auto auto auto auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    grid-auto-flow: row;
    place-items: center;
    display: grid;
  }

  .container-15.flex-center {
    grid-template-rows: auto 220px 220px 220px 220px 220px 220px;
    grid-template-columns: 1fr;
    grid-auto-flow: row;
    place-content: stretch;
    place-items: start center;
  }

  .blog_landingi_p {
    width: auto;
    margin-bottom: auto;
    display: block;
  }

  .image_land_small {
    height: 150px;
  }

  .button-5-copy {
    background-color: var(--hbs_green);
    width: auto;
    height: 45px;
    margin-top: 10px;
    margin-bottom: 0;
    padding-top: 5px;
    display: block;
  }

  .button-5-copy-2 {
    background-color: var(--hbs_green);
    height: 50px;
    margin-top: 10px;
    display: block;
  }

  .blog_bckg_title-4 {
    min-height: 30rem;
  }

  .blog_bckg_title-5 {
    background-image: url('../images/img_20200701_122430.jpg');
    background-position: 50% 0;
    background-size: cover;
    min-height: 30rem;
  }

  .blog_panels.flex-center {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    text-align: center;
    border-radius: 0;
    flex-flow: column;
  }

  .blog_panel {
    background-color: var(--hbs_green);
    color: var(--white);
    border-radius: 12px;
    padding: 10px;
  }

  .blog_bckg_title-6 {
    background-image: url('../images/DSCF0402.jpg');
    background-position: 50% 0;
    background-size: cover;
    min-height: 30rem;
  }

  .blog_frame {
    grid-column-gap: 16px;
    grid-row-gap: 41px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    max-width: 482px;
    height: auto;
    display: flex;
    overflow: visible;
  }

  .blog_frame_title {
    font-size: 20px;
  }

  .text-block-8 {
    font-size: 14px;
  }

  .problems_container-copy {
    justify-content: flex-end;
    align-items: center;
    max-width: none;
    height: auto;
    padding-top: 0;
  }

  .services_right-wrapper-2-copy {
    justify-content: flex-start;
    align-items: center;
    height: 75rem;
  }

  .blog_bckg_title-7 {
    background-image: url('../images/Zrzut-ekranu-2025-02-18-183632.png');
    background-position: 50%;
    background-size: cover;
    min-height: 30rem;
  }

  .list-item-8, .list-item-9 {
    font-size: 16px;
  }

  .blog_bckg_title-8 {
    background-image: url('../images/Zrzut-ekranu-2025-02-18-192200.png');
    background-position: 50%;
    background-size: cover;
    min-height: 30rem;
  }

  .blog_bckg_title-9, .blog_bckg_title-10 {
    background-position: 50%;
    background-size: cover;
    min-height: 30rem;
  }

  .list-item-10 {
    margin-top: 10px;
  }

  .blog_panels_4.flex-center {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    text-align: center;
    border-radius: 0;
    flex-flow: column;
  }

  .blog_panel-2 {
    background-color: var(--hbs_green);
    color: var(--white);
    border-radius: 12px;
    margin-top: 5px;
    padding: 10px;
  }

  .list-item-12, .list-item-13 {
    text-align: left;
  }

  .blog_bckg_title-11 {
    background-position: 50%;
    background-size: cover;
    min-height: 30rem;
  }

  .grid-2 {
    grid-auto-flow: row;
    max-width: 100%;
    max-height: none;
    font-size: 15px;
  }

  .blog_table_up {
    direction: ltr;
    word-break: normal;
    overflow-wrap: normal;
    object-fit: contain;
    width: auto;
    min-width: auto;
    max-width: 100%;
    min-height: 60px;
    padding-bottom: 5px;
    padding-right: 5px;
    font-size: 15px;
  }

  .blog_table_content {
    text-align: center;
  }

  .div-block-16 {
    object-fit: contain;
    flex-flow: row;
    justify-content: center;
    align-items: center;
    min-width: 150px;
    max-width: 100%;
    overflow: auto;
  }

  .blog_table_name {
    text-align: center;
  }

  .blog_bckg_title-12 {
    background-position: 50%;
    background-size: cover;
    min-height: 30rem;
  }

  .blog_panels-copy.flex-center {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    text-align: center;
    border-radius: 0;
    flex-flow: column;
  }

  .blog_panel-copy {
    background-color: var(--hbs_green);
    color: var(--white);
    border-radius: 12px;
    min-height: 150px;
    padding: 10px;
  }

  .blog_bckg_title-13 {
    background-position: 50%;
    background-size: cover;
    min-height: 30rem;
  }

  .blog_txt_long_wrapper_lefr_mg, .blog_txt_long_wrapper-copy {
    font-size: 16px;
  }

  .list-item-14, .list-item-15, .list-item-16, .list-item-17, .bold-text-35, .list-item-18, .list-item-19, .list-item-20, .list-item-21 {
    text-align: left;
  }

  .blog_bckg_title-14 {
    background-position: 50%;
    background-size: cover;
    min-height: 30rem;
  }

  .blog_copm {
    min-width: 250px;
    min-height: 300px;
  }

  .div-block-18 {
    justify-content: space-between;
    align-items: center;
    min-width: 200px;
    min-height: 150px;
  }

  .spacer_vertical {
    width: 6px;
    height: 500px;
  }

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

  .illustration-copy._4, .illustration-copy._4-copy {
    margin-right: 50px;
  }

  .call_button {
    z-index: 99;
    border-radius: 3px;
    position: fixed;
  }

  .button_call {
    border: 0px none var(--hbs_white);
    background-color: var(--hbs_green);
    cursor: pointer;
    position: static;
  }

  .icon-embed-small {
    mix-blend-mode: normal;
    position: static;
  }

  .blog_bckg_title-15 {
    background-position: 50%;
    background-size: cover;
    min-height: 30rem;
  }

  .blog_adv_disadv {
    flex-flow: column;
    justify-content: space-between;
    align-items: center;
    min-width: 200px;
    min-height: 150px;
  }
}

#w-node-_0facbd1f-3406-92ab-b6a1-3ec783f94bed-19e7974a {
  justify-self: center;
}

#w-node-bb920eba-fe05-7c7a-f6c5-b672622db207-19e7974a, #w-node-_21961b87-cc8d-b8c6-8284-54f5a8e10fb0-19e7974a, #w-node-_7bc014eb-533c-076c-a82d-959d5f5e5189-19e7974a {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_870ba4e4-cd6f-0b59-b3e6-8295349efb5c-349efb58 {
  justify-self: center;
}

#w-node-_870ba4e4-cd6f-0b59-b3e6-8295349efb5e-349efb58 {
  place-self: center end;
}

#w-node-_97730a6e-cd55-9e73-752c-a2fae9f810c2-e9f810bb {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: center;
}

#w-node-_97730a6e-cd55-9e73-752c-a2fae9f810ca-e9f810bb {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: center;
}

#w-node-_97730a6e-cd55-9e73-752c-a2fae9f810d0-e9f810bb {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_0facbd1f-3406-92ab-b6a1-3ec783f94bed-42e055bf {
  justify-self: center;
}

#w-node-_2023d8d6-638b-c0fc-a30d-d042393c90ee-42e055bf {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-bb920eba-fe05-7c7a-f6c5-b672622db207-42e055bf, #w-node-_21961b87-cc8d-b8c6-8284-54f5a8e10fb0-42e055bf, #w-node-_7bc014eb-533c-076c-a82d-959d5f5e5189-42e055bf, #w-node-bb920eba-fe05-7c7a-f6c5-b672622db207-b1b421ad, #w-node-_21961b87-cc8d-b8c6-8284-54f5a8e10fb0-b1b421ad, #w-node-_7bc014eb-533c-076c-a82d-959d5f5e5189-b1b421ad, #w-node-bb920eba-fe05-7c7a-f6c5-b672622db207-aa4ff2bb, #w-node-_21961b87-cc8d-b8c6-8284-54f5a8e10fb0-aa4ff2bb, #w-node-_7bc014eb-533c-076c-a82d-959d5f5e5189-aa4ff2bb {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_0facbd1f-3406-92ab-b6a1-3ec783f94bed-aa502a4c {
  justify-self: center;
}

#w-node-bb920eba-fe05-7c7a-f6c5-b672622db207-aa502a4c, #w-node-_21961b87-cc8d-b8c6-8284-54f5a8e10fb0-aa502a4c, #w-node-_7bc014eb-533c-076c-a82d-959d5f5e5189-aa502a4c {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_0facbd1f-3406-92ab-b6a1-3ec783f94bed-3862d2e3 {
  justify-self: center;
}

#w-node-bb920eba-fe05-7c7a-f6c5-b672622db207-3862d2e3, #w-node-_7bc014eb-533c-076c-a82d-959d5f5e5189-3862d2e3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-bb9aaecf-a502-19f8-9972-b076e530e2af-87715071, #w-node-_8b37524b-2156-7c2f-7a6c-338e36f51e29-efce6d8d, #w-node-_292fe3ba-c448-6b66-8026-c0e86f0020af-887833c9 {
  justify-self: center;
}

@media screen and (min-width: 1440px) {
  #w-node-_870ba4e4-cd6f-0b59-b3e6-8295349efb5e-349efb58 {
    align-self: center;
  }

  #w-node-_2023d8d6-638b-c0fc-a30d-d042393c90ee-42e055bf {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    display: grid;
  }

  #w-node-_97c31941-8806-66db-0f74-f629bb7a88c3-51059062, #w-node-_423b8e33-c9e1-c761-1fd5-e61b3bb1da32-51059062, #w-node-_60ba2992-be11-f735-d2f5-2a57048f1547-51059062 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-de29a0d4-89bb-40cb-307b-f0e6bba5d589-51059062 {
    place-self: auto;
  }

  #w-node-cfec9077-eb66-5286-5212-b390be264e57-51059062, #w-node-d655801b-d346-1f30-543a-2f308fa57f9c-7f7a5178, #w-node-d655801b-d346-1f30-543a-2f308fa57fa1-7f7a5178, #w-node-d655801b-d346-1f30-543a-2f308fa57fa6-7f7a5178 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-d655801b-d346-1f30-543a-2f308fa57fa7-7f7a5178 {
    place-self: auto;
  }

  #w-node-d655801b-d346-1f30-543a-2f308fa57fab-7f7a5178, #w-node-d9f6220a-ea69-a0da-de2d-637fa8fa21f0-71af989d, #w-node-d9f6220a-ea69-a0da-de2d-637fa8fa21f5-71af989d, #w-node-d9f6220a-ea69-a0da-de2d-637fa8fa21fa-71af989d {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-d9f6220a-ea69-a0da-de2d-637fa8fa21fb-71af989d {
    place-self: auto;
  }

  #w-node-d9f6220a-ea69-a0da-de2d-637fa8fa21ff-71af989d, #w-node-_97c31941-8806-66db-0f74-f629bb7a88c3-9d6bcd88, #w-node-_423b8e33-c9e1-c761-1fd5-e61b3bb1da32-9d6bcd88, #w-node-_60ba2992-be11-f735-d2f5-2a57048f1547-9d6bcd88 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-de29a0d4-89bb-40cb-307b-f0e6bba5d589-9d6bcd88 {
    place-self: auto;
  }

  #w-node-cfec9077-eb66-5286-5212-b390be264e57-9d6bcd88 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-a9512243-5c7f-1609-2406-390c44bdb411-c1a22292, #w-node-cb74e44d-70b7-9e93-69f3-05d1c6e68d41-c1a22292, #w-node-b0fefcf4-8f16-6e0e-26fa-2b81f24e5556-c1a22292 {
    place-self: auto;
  }

  #w-node-_97c31941-8806-66db-0f74-f629bb7a88c3-c1a22292, #w-node-_423b8e33-c9e1-c761-1fd5-e61b3bb1da32-c1a22292, #w-node-_60ba2992-be11-f735-d2f5-2a57048f1547-c1a22292 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-de29a0d4-89bb-40cb-307b-f0e6bba5d589-c1a22292 {
    place-self: auto;
  }

  #w-node-cfec9077-eb66-5286-5212-b390be264e57-c1a22292, #w-node-_97c31941-8806-66db-0f74-f629bb7a88c3-87715071, #w-node-_423b8e33-c9e1-c761-1fd5-e61b3bb1da32-87715071, #w-node-_60ba2992-be11-f735-d2f5-2a57048f1547-87715071 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-de29a0d4-89bb-40cb-307b-f0e6bba5d589-87715071 {
    place-self: auto;
  }

  #w-node-cfec9077-eb66-5286-5212-b390be264e57-87715071 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-f0bb3ade-5bca-834f-112b-e7abcacfa425-d2b6f115, #w-node-f0bb3ade-5bca-834f-112b-e7abcacfa428-d2b6f115, #w-node-f0bb3ade-5bca-834f-112b-e7abcacfa42b-d2b6f115 {
    place-self: auto;
  }

  #w-node-_97c31941-8806-66db-0f74-f629bb7a88c3-d2b6f115, #w-node-_423b8e33-c9e1-c761-1fd5-e61b3bb1da32-d2b6f115, #w-node-_60ba2992-be11-f735-d2f5-2a57048f1547-d2b6f115 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-de29a0d4-89bb-40cb-307b-f0e6bba5d589-d2b6f115 {
    place-self: auto;
  }

  #w-node-cfec9077-eb66-5286-5212-b390be264e57-d2b6f115, #w-node-_97c31941-8806-66db-0f74-f629bb7a88c3-efce6d8d, #w-node-_423b8e33-c9e1-c761-1fd5-e61b3bb1da32-efce6d8d, #w-node-_60ba2992-be11-f735-d2f5-2a57048f1547-efce6d8d {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-de29a0d4-89bb-40cb-307b-f0e6bba5d589-efce6d8d {
    place-self: auto;
  }

  #w-node-cfec9077-eb66-5286-5212-b390be264e57-efce6d8d {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_0bab62eb-0142-ef52-957c-157c04b77603-8f45d269, #w-node-_0bab62eb-0142-ef52-957c-157c04b77606-8f45d269, #w-node-_0bab62eb-0142-ef52-957c-157c04b77609-8f45d269 {
    place-self: auto;
  }

  #w-node-_97c31941-8806-66db-0f74-f629bb7a88c3-8f45d269, #w-node-_423b8e33-c9e1-c761-1fd5-e61b3bb1da32-8f45d269, #w-node-_60ba2992-be11-f735-d2f5-2a57048f1547-8f45d269 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-de29a0d4-89bb-40cb-307b-f0e6bba5d589-8f45d269 {
    place-self: auto;
  }

  #w-node-cfec9077-eb66-5286-5212-b390be264e57-8f45d269 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_0bab62eb-0142-ef52-957c-157c04b77603-f96614fc, #w-node-_0bab62eb-0142-ef52-957c-157c04b77606-f96614fc, #w-node-_0bab62eb-0142-ef52-957c-157c04b77609-f96614fc {
    place-self: auto;
  }

  #w-node-_97c31941-8806-66db-0f74-f629bb7a88c3-f96614fc, #w-node-_423b8e33-c9e1-c761-1fd5-e61b3bb1da32-f96614fc, #w-node-_60ba2992-be11-f735-d2f5-2a57048f1547-f96614fc {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-de29a0d4-89bb-40cb-307b-f0e6bba5d589-f96614fc {
    place-self: auto;
  }

  #w-node-cfec9077-eb66-5286-5212-b390be264e57-f96614fc, #w-node-_97c31941-8806-66db-0f74-f629bb7a88c3-d86b4802, #w-node-_423b8e33-c9e1-c761-1fd5-e61b3bb1da32-d86b4802, #w-node-_60ba2992-be11-f735-d2f5-2a57048f1547-d86b4802 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-de29a0d4-89bb-40cb-307b-f0e6bba5d589-d86b4802 {
    place-self: auto;
  }

  #w-node-cfec9077-eb66-5286-5212-b390be264e57-d86b4802 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_49b52452-f6f5-fc28-7f19-03eb03f8c217-cfd41410, #w-node-_49b52452-f6f5-fc28-7f19-03eb03f8c21a-cfd41410, #w-node-_49b52452-f6f5-fc28-7f19-03eb03f8c21d-cfd41410 {
    place-self: auto;
  }

  #w-node-_97c31941-8806-66db-0f74-f629bb7a88c3-cfd41410, #w-node-_423b8e33-c9e1-c761-1fd5-e61b3bb1da32-cfd41410, #w-node-_60ba2992-be11-f735-d2f5-2a57048f1547-cfd41410 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-de29a0d4-89bb-40cb-307b-f0e6bba5d589-cfd41410 {
    place-self: auto;
  }

  #w-node-cfec9077-eb66-5286-5212-b390be264e57-cfd41410, #w-node-_97c31941-8806-66db-0f74-f629bb7a88c3-887833c9, #w-node-_423b8e33-c9e1-c761-1fd5-e61b3bb1da32-887833c9, #w-node-_60ba2992-be11-f735-d2f5-2a57048f1547-887833c9 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-de29a0d4-89bb-40cb-307b-f0e6bba5d589-887833c9 {
    place-self: auto;
  }

  #w-node-cfec9077-eb66-5286-5212-b390be264e57-887833c9, #w-node-_97c31941-8806-66db-0f74-f629bb7a88c3-7614e110, #w-node-_423b8e33-c9e1-c761-1fd5-e61b3bb1da32-7614e110, #w-node-_60ba2992-be11-f735-d2f5-2a57048f1547-7614e110 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-de29a0d4-89bb-40cb-307b-f0e6bba5d589-7614e110 {
    place-self: auto;
  }

  #w-node-cfec9077-eb66-5286-5212-b390be264e57-7614e110, #w-node-_97c31941-8806-66db-0f74-f629bb7a88c3-a53c3d48, #w-node-_423b8e33-c9e1-c761-1fd5-e61b3bb1da32-a53c3d48, #w-node-_60ba2992-be11-f735-d2f5-2a57048f1547-a53c3d48 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-de29a0d4-89bb-40cb-307b-f0e6bba5d589-a53c3d48 {
    place-self: auto;
  }

  #w-node-cfec9077-eb66-5286-5212-b390be264e57-a53c3d48 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_870ba4e4-cd6f-0b59-b3e6-8295349efb5c-349efb58 {
    grid-area: 2 / 1 / 2 / 2;
  }

  #w-node-_870ba4e4-cd6f-0b59-b3e6-8295349efb5e-349efb58 {
    justify-self: start;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_2023d8d6-638b-c0fc-a30d-d042393c90ee-42e055bf {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  #w-node-_60ba2992-be11-f735-d2f5-2a57048f1546-51059062, #w-node-d655801b-d346-1f30-543a-2f308fa57fa5-7f7a5178, #w-node-d9f6220a-ea69-a0da-de2d-637fa8fa21f9-71af989d, #w-node-_60ba2992-be11-f735-d2f5-2a57048f1546-9d6bcd88, #w-node-_60ba2992-be11-f735-d2f5-2a57048f1546-c1a22292, #w-node-_60ba2992-be11-f735-d2f5-2a57048f1546-87715071, #w-node-_60ba2992-be11-f735-d2f5-2a57048f1546-d2b6f115, #w-node-_60ba2992-be11-f735-d2f5-2a57048f1546-efce6d8d, #w-node-_60ba2992-be11-f735-d2f5-2a57048f1546-8f45d269, #w-node-_60ba2992-be11-f735-d2f5-2a57048f1546-f96614fc, #w-node-_60ba2992-be11-f735-d2f5-2a57048f1546-d86b4802, #w-node-_60ba2992-be11-f735-d2f5-2a57048f1546-cfd41410, #w-node-_60ba2992-be11-f735-d2f5-2a57048f1546-887833c9, #w-node-_60ba2992-be11-f735-d2f5-2a57048f1546-7614e110, #w-node-_60ba2992-be11-f735-d2f5-2a57048f1546-a53c3d48 {
    place-self: center;
  }
}


@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;
}
@font-face {
  font-family: 'Helvetica Neue';
  src: url('../fonts/HelveticaNeueLTProTh.otf') format('opentype');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Helvetica Neue';
  src: url('../fonts/HelveticaNeueLTProRoman.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Helvetica Neue';
  src: url('../fonts/HelveticaNeueLTProUltLtIt.otf') format('opentype');
  font-weight: 100;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Helvetica Neue';
  src: url('../fonts/HelveticaNeueLTProTh.otf') format('opentype');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Helvetica Neue';
  src: url('../fonts/HelveticaNeueLTProThIt.otf') format('opentype');
  font-weight: 200;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Helvetica Neue';
  src: url('../fonts/HelveticaNeueLTProLt.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Helvetica Neue';
  src: url('../fonts/HelveticaNeueLTProLtIt.otf') format('opentype');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Helvetica Neue';
  src: url('../fonts/HelveticaNeueLTProIt.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Helvetica Neue';
  src: url('../fonts/HelveticaNeueLTProMd.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Helvetica Neue';
  src: url('../fonts/HelveticaNeueLTProMdIt.otf') format('opentype');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Helvetica Neue';
  src: url('../fonts/HelveticaNeueLTProBd.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Helvetica Neue';
  src: url('../fonts/HelveticaNeueLTProBdIt.otf') format('opentype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Helvetica Neue';
  src: url('../fonts/HelveticaNeueLTProHv.otf') format('opentype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Helvetica Neue';
  src: url('../fonts/HelveticaNeueLTProHvIt.otf') format('opentype');
  font-weight: 800;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Helvetica Neue';
  src: url('../fonts/HelveticaNeueLTProBlk.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Helvetica Neue';
  src: url('../fonts/HelveticaNeueLTProBlkIt.otf') format('opentype');
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}