/** Shopify CDN: Minification failed

Line 11:0 Unexpected "<"
Line 104:0 Unexpected "<"
Line 239:0 Unexpected "<"

**/


/* CSS from section stylesheet tags */
<style>
  .airlock-trio-section {
    padding: 60px 20px;
    background-image: url('/cdn/shop/files/imgi_50_gempages_567714598090703953-a7cbc32d-5813-4a3b-9cd4-37197d963e1b_607c59df-eb69-4d5f-bddb-11778fe3c50c.jpg?v=1753813253');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }

  .airlock-trio-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
    gap: 20px;
    flex-wrap: nowrap;
  }

  .airlock-trio-text {
    flex: 1;
    min-width: 280px;
    background: rgba(255, 255, 255, 0.92);
    padding: 24px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 100%;
  }

  .airlock-trio-text h2 {
    font-size: 20px;
    margin-bottom: 10px;
    text-align: center;
  }

  .airlock-trio-text ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .airlock-trio-text li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 8px;
    font-size: 15px;
    line-height: 1.5;
  }

  .airlock-trio-text li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #000;
  }

  .airlock-trio-video {
    flex: 1.2;
    min-width: 280px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .airlock-trio-video video {
    width: 100%;
    height: 100%;
    max-height: 360px;
    border-radius: 10px;
    object-fit: cover;
  }

  @media (max-width: 768px) {
    .airlock-trio-wrapper {
      flex-direction: column;
    }

    .airlock-trio-text {
      max-width: 100%;
      text-align: center;
    }

    .airlock-trio-text ul {
      text-align: left;
      margin: 0 auto;
      max-width: 300px;
    }

    .airlock-trio-video video {
      max-height: none;
    }
  }
</style>
<style>
.join-us-section {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 30px 10px;
  box-sizing: border-box;
}

.join-us-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 20px;
  justify-content: space-between;
  min-height: 360px;
}

.join-us-video,
.join-us-form {
  flex: 1;
  min-width: 300px;
  height: 360px;
  display: flex;
  flex-direction: column;
}

.join-us-video video {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  object-fit: cover;
}

.join-us-button {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 0 0 220px;
}

.join-us-button button {
  background: white;
  border: 2px solid black;
  border-radius: 9999px;
  padding: 16px 32px;
  font-size: 20px;
  font-weight: bold;
  box-shadow: 3px 4px 6px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: all 0.2s ease;
  width: 100%;
}

.join-us-button button:hover {
  transform: scale(1.05);
}

.join-us-form form {
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 12px;
  justify-content: space-between;
}

.join-us-form .row {
  display: flex;
  gap: 8px;
  flex-grow: 1;
}

.join-us-form .row.full {
  flex-direction: column;
}

.join-us-form input,
.join-us-form textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #999;
  border-radius: 4px;
  font-size: 14px;
  outline: none;
  margin: 0;
  height: 100%;
  box-sizing: border-box;
}

.join-us-form textarea {
  resize: none;
}

.join-us-form button[type="submit"] {
  background-color: #000;
  color: #fff;
  padding: 12px 24px;
  border: none;
  border-radius: 9999px;
  font-size: 15px;
  cursor: pointer;
  width: fit-content;
  align-self: flex-start;
}

@media (max-width: 768px) {
  .join-us-wrapper {
    flex-direction: column;
  }

  .join-us-button {
    order: 2;
    margin: 14px 0;
  }

  .join-us-video {
    order: 1;
    height: auto;
  }

  .join-us-form {
    order: 3;
    height: auto;
  }

  .join-us-form .row {
    flex-direction: column;
  }

  .join-us-form input,
  .join-us-form textarea {
    height: auto;
  }
}
</style>