/** Shopify CDN: Minification failed

Line 211:16 Expected identifier but found whitespace
Line 211:18 Unexpected "{"
Line 211:27 Expected ":"
Line 211:53 Expected ":"
Line 212:19 Expected identifier but found whitespace
Line 212:21 Unexpected "{"
Line 212:30 Expected ":"
Line 212:59 Expected ":"
Line 213:21 Expected identifier but found whitespace
Line 213:23 Unexpected "{"
... and 4 more hidden warnings

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:binary-hero (INDEX:6) */
.binary-hero {
  text-align: center;
  padding: 4rem 1rem;
  font-family: sans-serif;
}

.binary-hero__top {
  display: flex;
  justify-content: center;
  font-size: 2rem;
  /* font-weight: bold; */
  /*max-width: 1000px;*/
  /* margin: 0 auto 1rem; */
  margin-bottom: 10px;
}

.binary-hero__image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  max-height: 400px;
}

.binary-hero__bottom {
  /* font-size: 2rem; */
  /* font-weight: bold; */
  margin-top: 10px;
}

.binary-hero__button {
  margin-top: 1.5rem;
}

.binary-hero__button a {
  display: inline-block;
  padding: 0.75rem 1.25rem;
  border: 1px solid black;
  text-decoration: none;
  color: #ffffff;
  background-color: #000000 !important;
  background: #000000 !important;
  font-size: 1rem;
  transition: background 0.2s;
}

/* .binary-hero__button a:hover {
  background: black;
  color: white;
} */
.binary-hero__button a {
  display: inline-block;
  padding: 4px 16px;
  border: 1px solid black;
  text-decoration: none;
  /* color: black; */
  /* font-weight: bold; */
  border-radius: 4px;
  transition: background 0.3s ease;
}

.binary-hero__button a:hover {
  background-color: #f3f3f3;
}
/* END_SECTION:binary-hero */

/* START_SECTION:custom-preloader (INDEX:17) */
.zhd_preloader{
    z-index: 99 !important;
  }
   .shopify-section .shopify-section-group-header-group .zhd_preloader{
     z-index: 99 !important;}
/* END_SECTION:custom-preloader */

/* START_SECTION:home-page-banner (INDEX:23) */
.animated-section-container {
  display: flex;
  height: 450px;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  align-items: center;
}

div.middle {
  text-align: center;
}

.text-type-animation {
  font-size: 3rem;
  min-height: 70px;
}

.animated-section_button {
  font-size: 1rem;
  padding: 5px 15px;
  border: 1px solid black;
  transition: all ease-in .3s;
  cursor: pointer;
}

.animated-section_button:hover {
  color: white;
  background-color: black;
}

.span-subheading-animation {
  max-width: 80%;
  margin: 0 auto;
}

.txt-rotate > .wrap {
  border-right: 0.08em solid #684141;
}

@media (max-width: 756px) {
  .span-subheading-animation {
    max-width: 100%;
  }

  .text-type-animation {
    font-size: 2rem;
    line-height: 40px;
    min-height: 80px;
  }

  .animated-section-container {
    height: fit-content;
    padding: 5rem 0;
    gap: 35px;
  }
}
/* END_SECTION:home-page-banner */

/* START_SECTION:how-we-work (INDEX:24) */
.how-we-work {
  background: #f9f5f1;
  padding: 0px 10px 20px 10px;
  margin: 0 auto;
  /* font-family: sans-serif; */
}

.how-we-work h2 {
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
  color: #333;
  margin-bottom: 60px;
}

.work-step {
  border-top: 1px solid #ccc; /* only top border */
  border-radius: 10px 10px 0 0; /* rounded only at top */
  margin: -47px 3px 20px 3px; /* slight overlap & side gap */
  padding: 15px;
  position: relative;
  cursor: pointer;
}

.work-step-header {
  display: flex;
  font-size: 28px;
  font-weight: bold;
}

.work-step-header span {
  font-size: 10px;
  margin-right: 10px;
  color: #aaa;
}

.work-step-content {
  max-height: 0;
  overflow: hidden; 
  transition: all 0.4s ease;
  font-size: 16px;
  color: #333;
}

.work-step.open .work-step-content {
  max-height: 300px;
}

.work-step.open {
  /* box-shadow: 0 4px 12px rgba(0,0,0,0.12); */
  margin-bottom: 40px;
}
/* END_SECTION:how-we-work */

/* START_SECTION:video-with-text (INDEX:71) */
.custom-img-text {
    padding-top: {{ section.settings.padding_top }}px;
    padding-bottom: {{ section.settings.padding_bottom }}px;
    background-color: {{ section.settings.bg_color }};
  }

  .custom-img-text .media-block {
    width: 50%;
  }

  .custom-img-text .content-block {
    width: 42%;
    height: auto;
  }

  .custom-img-text .media-block video,
  .custom-img-text .media-block img {
    height: 100%;
    width: 100%;
  }

  .custom-img-text .content-block {
    text-align: {{ section.settings.text_alignment }};
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 50px;
    padding-right: 20px;
  }

  .custom-img-text .content-block > * {
    max-width: 600px;
  }

  /* MOBILE STYLES */
  @media screen and (max-width: 749px) {
    .custom-img-text .flex-wrap {
      display: flex !important;
      flex-direction: column !important;
      gap: 0 !important;
    }

    .custom-img-text .page-width {
      padding-left: 20px !important;
      padding-right: 20px !important;
    }

    .custom-img-text .media-block,
    .custom-img-text .content-block {
      width: 100% !important;
      max-width: 100% !important;
    }

    .custom-img-text .media-block video,
    .custom-img-text .media-block img {
      width: 100% !important;
      height: auto !important;
      aspect-ratio: 2 / 1 !important;
      object-fit: cover !important;
      display: block !important;
    }

    /* Break content-block so children can reorder */
    .custom-img-text .content-block {
      display: contents !important;
    }

    /* Heading ABOVE video */
    .custom-img-text .content-block h2 {
      order: 1 !important;
      font-size: 28px !important;
      font-weight: 400 !important;
      letter-spacing: 0.06em !important;
      text-transform: uppercase !important;
      line-height: 1.25 !important;
      padding: 15px 0 12px !important;
      margin: 0 !important;
      text-align: center !important;
    }

    /* Video SECOND */
    .custom-img-text .media-block {
      order: 2 !important;
    }

  /* Description BELOW video */
  .custom-img-text .content-block .rich-text {
  order: 3 !important;
  padding: 15px 0 0 !important;
  margin-bottom: 0 !important;
  font-size: 15px !important;
  line-height: 1.7 !important;
  text-align: left !important;
}

  /* Button LAST */
  .custom-img-text .content-block .button {
  order: 4 !important;
  margin: 12px 0 0 !important;
  align-self: flex-start !important;
  padding: 12px 30px !important;
}

    /* Subtitle if present */
    .custom-img-text .content-block > p {
      order: 1 !important;
      padding: 0 !important;
      text-align: left !important;
    }
  }

  /* DESKTOP STYLES */
  @media (min-width: 750px) {
    .custom-img-text .page-width {
      display: flex;
      gap: 40px;
      align-items: center;
    }

    .custom-img-text .media-block {
      order: 1;
    }

    .custom-img-text .content-block {
      order: 2;
    }

    .custom-img-text .page-width.reverse .media-block {
      order: 2;
    }

    .custom-img-text .page-width.reverse .content-block {
      order: 1;
    }
  }

  .content-block h2 {
    margin-bottom: 0px;
  }

  .content-block .rich-text {
    margin-bottom: 25px;
  }

  .content-block .button {
    margin-top: 0px;
  }

  .custom-img-text .media-block {
    width: 60%;
  }

  .custom-img-text .content-block {
    width: 40%;
    padding-left: 0px;
  }

  .custom-img-text .page-width {
    gap: 30px;
  }

  .custom-img-text .button {
    width: 130px !important;
    text-align: center;
    text-transform: uppercase !important;
  }
/* END_SECTION:video-with-text */