/** Shopify CDN: Minification failed

Line 936:10 Expected ":"

**/
/* Minus Method — About / contact page (from html-template/about+contact.css) */

.minus-template-about,
.minus-template-about .content-for-layout {
  /* background-color: #1a4a6b; */
  color: #fffeec;
  overflow-x: hidden;
}

.minus-about {
  --bg-color: #1a4a6b;
  --accent-orange: #ee9151;
  --dark-orange: #9f490d;
  --off-white: #fffeec;
  --text-orange-tint: #ffe0c2;
  --font-primary: 'Archivo', sans-serif;
  --transition-smooth: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-bounce: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  font-family: var(--font-primary);
  color: var(--off-white);
  -webkit-font-smoothing: antialiased;
}

.minus-about a {
  text-decoration: none;
  color: inherit;
}

.minus-about picture {
  display: block;
  width: 100%;
  height: 100%;
}

/* --------------------------------------------------------------------------
   1. ABOUT INTRO
   -------------------------------------------------------------------------- */
.about-intro-section {
  padding: 24px 31px;
  max-width: 1440px;
  margin: 0 auto;
}

.about-intro-box {
  border: 5px solid var(--dark-orange);
  border-radius: 40px;
  padding: 45px 65px 44px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  background: rgba(26, 74, 107, 0.4);
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
}

.about-intro-text {
  flex: 1;
  max-width: 520px;
}

.about-intro-p {
  font-family: var(--font-primary);
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 150%;
  letter-spacing: -0.022em;
  color: var(--off-white);
  margin-bottom: 16px;
}

.about-intro-p:first-child {
  margin-top: 0;
}

.about-intro-p:last-child {
  margin-bottom: 0;
}

.about-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 169px);
  gap: 12px;
  align-items: center;
}

.about-card {
  position: relative;
  width: 169px;
  height: 189px;
  border-radius: 20px;
  overflow: hidden;
  background: #d9d9d9;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.35);
}

.about-card-img,
.about-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-card-overlay {
  position: absolute;
  top: 0;
  right: 0;
  width: 106px;
  height: 189px;
  background: rgba(26, 74, 107, 0.55);
  backdrop-filter: blur(4px);
  border-radius: 0 20px 20px 0;
  padding: 0 8px;
  display: flex;
  align-items: flex-start;
}

.about-card-overlay-text {
  font-family: var(--font-primary);
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: -2.2%;
  color: #FFFEEC;
  margin: 0;
}

.about-card-kit-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 169px;
  height: 76px;
  background: rgba(26, 74, 107, 0.45);
  backdrop-filter: blur(4px);
  border-radius: 0 0 20px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.about-kit-btn {
  width: 149px;
  height: 48px;
  background: var(--dark-orange);
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.15);
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-primary);
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 150%;
  letter-spacing: -2.2%;
  color: var(--off-white);
  text-decoration: none;
  transition: var(--transition-bounce);
}

.about-kit-btn:hover {
  background: var(--accent-orange);
  transform: scale(1.05);
}

/* --------------------------------------------------------------------------
   2. WHAT WE STAND FOR
   -------------------------------------------------------------------------- */
.stand-for-section {
  width: 100%;
  background: rgba(92, 156, 196, 0.8);
  box-shadow: 0px 4px 9.1px rgba(0, 0, 0, 0.15);
  padding: 1px 20px 56px;
  margin: 40px 0 0;
  margin-top: 0;
}

.stand-for-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.stand-for-title {
  font-family: var(--font-primary);
  font-style: normal;
  font-weight: 700;
  font-size: 48px;
  line-height: 150%;
  text-align: center;
  letter-spacing: -0.022em;
  color: var(--off-white);
  margin-top: 8px;
  margin-bottom: 24px;
}

.stand-for-cards {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 36px;
  flex-wrap: wrap;
}

.stand-for-card {
  width: 349px;
  min-height: 199px;
  background: var(--bg-color);
  border-radius: 40px;
  padding: 30px 41px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stand-for-card:hover {
  transform: translateY(-6px);
  box-shadow: 0px 10px 24px rgba(0, 0, 0, 0.3);
}

.stand-for-icon-wrapper {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stand-for-icon,
.stand-for-icon-wrapper img,
.stand-for-icon-wrapper svg {
  width: 64px;
  height: 64px;
  display: block;
}

.stand-for-card-text {
  font-family: var(--font-primary);
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 150%;
  text-align: center;
  letter-spacing: -0.022em;
  color: var(--off-white);
  margin: 0;
}

.text-highlight-orange {
  color: var(--accent-orange);
  font-weight: 700;
}

.text-italic-orange {
  color: var(--accent-orange);
  font-style: italic;
  font-weight: 700;
}

/* --------------------------------------------------------------------------
   3. WE'RE RIGHT HERE
   -------------------------------------------------------------------------- */
.right-here-section {
  width: 100%;
  position: relative;
}

.brown-bar-thick {
  width: 100%;
  height: 8px;
  background: var(--dark-orange);
}

.right-here-content {
  padding: 20px;
  text-align: center;
  background: var(--bg-color);
}

.right-here-heading {
  font-family: var(--font-primary);
  font-style: normal;
  font-weight: 600;
  font-size: 48px;
  line-height: 120%;
  letter-spacing: 0.02em;
  color: var(--off-white);
  text-transform: uppercase;
  margin: 0 0 6px;
}

.right-here-sub {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 36px;
  line-height: 120%;
  margin: 0;
}

.right-here-sub span { 
  color: var(--accent-orange);
  font-style: italic;
}

/* --------------------------------------------------------------------------
   4. FAQ ACCORDION
   -------------------------------------------------------------------------- */
.faq-accordion-section {
  width: 100%;
  min-height: 520px;
  background: var(--bg-color) var(--minus-about-faq-bg) center right / cover no-repeat;
  padding: 60px 8%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  scroll-margin-top: 90px;
}

.faq-accordion-container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 563px;
  margin: 0;
}

.accordion-card-box {
  background: rgba(26, 74, 107, 0.5);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 254, 236, 0.2);
  border-radius: 40px;
  padding: 40px 36px;
  box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.3);
}

.minus-about .accordion-item {
  border-bottom: 0.5px solid rgba(255, 254, 236, 0.4);
  padding: 20px 0;
}

.minus-about .accordion-item:last-child {
  border-bottom: none;
}

.minus-about .accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
  gap: 16px;
  width: 100%;
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  color: inherit;
  text-align: left;
}

.accordion-header-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.accordion-icon-badge {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.accordion-icon-img,
.accordion-icon-badge img,
.accordion-icon-badge svg {
  width: 40px;
  height: 40px;
  display: block;
}

.minus-about .accordion-title {
  display: block;
  font-family: var(--font-primary);
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 140%;
  color: var(--off-white);
  margin: 0;
}

.accordion-arrow {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  color: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.accordion-arrow svg {
  width: 22px;
  height: 22px;
  display: block;
}

.minus-about .accordion-item.active .accordion-arrow {
  transform: rotate(90deg);
}

.minus-about .accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  font-family: var(--font-primary);
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 150%;
  letter-spacing: -0.022em;
  color: var(--text-orange-tint);
  padding-left: 56px;
}

.minus-about .accordion-item.active .accordion-body {
  max-height: 400px;
  padding-top: 14px;
}

/* --------------------------------------------------------------------------
   5. CONTACT FORM
   -------------------------------------------------------------------------- */
.contact-section {
  padding: 70px 20px 60px;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  scroll-margin-top: 90px;
}

.contact-title-group {
  margin-bottom: 24px;
}

.contact-main-title {
  font-family: var(--font-primary);
  font-style: normal;
  font-weight: 600;
  font-size: 48px;
  line-height: 110%;
  color: var(--off-white);
  margin: 0;
}

.contact-title-highlight {
  font-style: italic;
  color: var(--accent-orange);
}

.contact-sub-title {
  font-family: var(--font-primary);
  font-style: normal;
  font-weight: 600;
  font-size: 36px;
  line-height: 120%;
  color: var(--off-white);
  margin: 0 0 24px;
}

.contact-desc-text {
  font-family: var(--font-primary);
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 140%;
  color: var(--off-white);
  opacity: 0.95;
  margin: 0;
}

.contact-form-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 628px;
  margin: 0 auto;
}

.contact-input-field {
  position: relative;
  width: 100%;
  height: 56px;
  background: rgba(92, 156, 196, 0.2);
  border-radius: 20px;
  display: flex;
  align-items: center;
  border: 1.5px solid transparent;
  transition: var(--transition-smooth);
}

.contact-input-field:focus-within {
  border-color: var(--accent-orange);
  background: rgba(92, 156, 196, 0.35);
}

.contact-textarea-field {
  height: 160px;
  align-items: flex-start;
  padding-top: 14px;
}

.field-icon {
  position: absolute;
  left: 20px;
  color: var(--accent-orange);
  width: 24px;
  height: 24px;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.field-icon svg {
  width: 24px;
  height: 24px;
  display: block;
}

.minus-about .field-input,
.minus-about .field-textarea {
  width: 100%;
  height: 100%;
  background: transparent;
  border: none;
  padding: 0 20px 0 56px;
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 400;
  color: var(--off-white);
  outline: none;
  box-shadow: none;
}

.minus-about .field-textarea {
  padding-top: 4px;
  resize: none;
}

.minus-about .field-input::placeholder,
.minus-about .field-textarea::placeholder {
  color: rgba(255, 254, 236, 0.5);
}

.minus-about .field-input:-webkit-autofill,
.minus-about .field-textarea:-webkit-autofill {
  -webkit-text-fill-color: #fffeec;
  box-shadow: 0 0 0 1000px rgba(26, 74, 107, 0.8) inset;
  transition: background-color 9999s ease-in-out 0s;
}

.contact-checkbox-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 10px;
  cursor: pointer;
  user-select: none;
}

.contact-checkbox-input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

.custom-checkbox {
  width: 24px;
  height: 24px;
  border-radius: 4px;
  background: rgba(255, 254, 236, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: transform 0.2s ease, background 0.2s ease;
  flex-shrink: 0;
}

.contact-checkbox-input:checked + .custom-checkbox {
  background: #44a266;
}

.contact-checkbox-input:focus-visible + .custom-checkbox {
  outline: 2px solid var(--accent-orange);
  outline-offset: 2px;
}

.custom-checkbox svg {
  width: 16px;
  height: 16px;
  display: none;
}

.contact-checkbox-input:checked + .custom-checkbox svg {
  display: block;
}

.contact-checkbox-row:hover .custom-checkbox {
  transform: scale(1.1);
}

.checkbox-label {
  font-family: var(--font-primary);
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: var(--off-white);
}

.contact-submit-btn {
  width: 100%;
  height: 64px;
  background: var(--dark-orange);
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.15);
  border-radius: 40px;
  border: none;
  font-family: var(--font-primary);
  font-style: normal;
  font-weight: 700;
  font-size: 32px;
  line-height: 150%;
  letter-spacing: -0.022em;
  color: var(--off-white);
  cursor: pointer;
  margin-top: 14px;
  transition: var(--transition-bounce);
}

.contact-submit-btn:hover {
  background: var(--accent-orange);
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0px 8px 16px rgba(159, 73, 13, 0.4);
}

.contact-submit-btn:active {
  transform: translateY(1px);
}

.form-toast {
  display: none;
  margin-top: 15px;
  padding: 14px 20px;
  background: rgba(68, 162, 102, 0.9);
  color: white;
  border-radius: 20px;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
}

.form-toast.is-visible,
.form-toast--error {
  display: block;
}

.form-toast--error {
  background: rgba(159, 73, 13, 0.92);
}

.form-toast ul {
  margin: 8px 0 0;
  padding-left: 18px;
  text-align: left;
}

/* --------------------------------------------------------------------------
   6. NEWSLETTER
   -------------------------------------------------------------------------- */
.newsletter-section {
  width: 100%;
  min-height: 174px;
  background: rgba(92, 156, 196, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 20px;
}

.newsletter-container {
  width: 100%;
  max-width: 450px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 0 auto;
}

.newsletter-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 8px;
}

.newsletter-icon,
.newsletter-icon svg {
  width: 24px;
  height: 24px;
  color: var(--off-white);
  display: block;
}

.newsletter-title {
  font-family: var(--font-primary);
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 26px;
  color: var(--off-white);
  margin: 0;
}

.newsletter-desc {
  font-family: var(--font-primary);
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: -0.022em;
  color: var(--text-orange-tint);
  max-width: 320px;
  margin: 0 auto 25px;
  text-align: left;
}

.newsletter-form {
  width: 100%;
  display: flex;
  justify-content: center;
}

.newsletter-input-wrapper {
  position: relative;
  width: 323px;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--off-white);
  padding-bottom: 6px;
}

.minus-about .newsletter-input {
  width: calc(100% - 32px);
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  outline: none;
  font-family: var(--font-primary);
  font-style: italic;
  font-weight: 400;
  font-size: 16px;
  color: var(--off-white);
  padding: 0;
}

.minus-about .newsletter-input::placeholder {
  color: rgba(255, 254, 236, 0.5);
  font-style: italic;
}

.newsletter-submit-btn {
  background: transparent !important;
  border: none !important;
  outline: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-orange);
  transition: transform 0.2s ease;
}

.newsletter-submit-btn:hover {
  transform: scale(1.15);
}

.newsletter-submit-btn svg {
  width: 24px;
  height: 24px;
  display: block;
}

.card-arrow {
  color: var(--accent-orange);
  font-weight: 700;
  margin-right: 4px;
  margin: 0 0 5px;
  font-size: 30px;
} 

@media (max-width: 1100px) {
  .about-intro-box {
    flex-direction: column;
    text-align: center;
  }

  .about-cards-grid {
    grid-template-columns: repeat(4, 169px);
    justify-content: center;
  }
}

@media (max-width: 768px) {
  
  .about-intro-section {
    padding: 0px;
  }

  .about-intro-box {
    border: none !important;
    background: transparent !important;
    box-shadow: none !important;
    padding: 16px 26px !important;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
  }

  .about-intro-text {
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
    text-align: left;
  }

  .about-intro-p {
    font-size: 16px;
    line-height: 150%;
    color: var(--off-white);
    margin-bottom: 16px;
  }

  .about-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 169px);
    gap: 12px;
    justify-content: center;
    width: 100%;
  }

  .about-card {
    width: 169px;
    height: 189px;
    border-radius: 20px;
  }

  .about-card-overlay {
    background: rgba(26, 74, 107, 0.6);
  }

  .about-card-overlay-text {
    color: var(--off-white);
    font-size: 16px;
    line-height: 140%;
    text-align: left;
  }

  .stand-for-section {
    padding: 1px 10px 15px 10px;
  }

  .stand-for-title {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .stand-for-cards {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 9px;
    flex-wrap: nowrap;
    width: 100%;
  }

  .stand-for-card {
    width: 115px;
    min-width: 100px;
    max-width: 115px;
    height: 145px;
    min-height: 145px;
    padding: 16px 6px 12px;
    border-radius: 20px;
    gap: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height
  }

  .stand-for-icon-wrapper,
  .stand-for-icon,
  .stand-for-icon-wrapper img,
  .stand-for-icon-wrapper svg {
    width: 36px;
    height: 36px;
  }

  .stand-for-card-text {
    font-size: 14px;
    line-height: 150%;
    text-align: center;
  }

  .right-here-heading {
    font-size: 28px;
  }

  .right-here-sub {
    font-size: 22px;
  }

  .faq-accordion-section {
    width: 100%;
    height: 310px;
    min-height: 310px;
    background: var(--bg-color) var(--minus-about-faq-bg-mobile, var(--minus-about-faq-bg)) center top / cover no-repeat;
    padding: 0;
    position: relative;
  }

  .faq-accordion-container {
    width: 90%;
    max-width: 100%;
    margin: 0 auto;
    position: absolute;
    top: 90px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
  }

  .accordion-card-box {
    width: 100%;
    max-width: 100%;
    min-height: 272px;
    background: rgba(26, 74, 107, 0.6) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1.5px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 35px;
    padding: 24px 20px;
    box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.3);
  }

  .minus-about .accordion-title {
    font-size: 16px;
  }

  .minus-about .accordion-body {
    font-size: 14px;
    line-height: 150%;
    color: #ffe0c2;
    padding-left: 0;
  }

  .contact-section {
    padding: 220px 16px 40px;
  }

  .contact-main-title {
    font-size: 24px;
    margin-bottom: 5px;
  }

  .contact-sub-title {
    font-size: 16px;
    margin-bottom: 15px;
  }

  .contact-desc-text {
    font-size: 16px;
  }

  .contact-submit-btn {
    height: 48px;
    font-size: 24px;
  }

  .right-here-content {
    padding: 10px;
  }
}

@media (max-width: 500px)  {
  .about-intro-text { 
    max-width: 100%;
  }

  .about-cards-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    width: 100%;
  }

  .about-card {
    width: 179px;
    height: 189px;
    border-radius: 20px;
  }

  .stand-for-card {
    width: 115px;
    min-width: 100px;
    max-width: 115px;
    height: 100%;
    min-height: stretch; 
  }
}

@media (max-width: 423px)  {

  .about-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 169px);
    gap: 12px;
    justify-content: center;
    width: 100%;
  }

  .about-card {
    width: 169px;
    height: 189px;
    border-radius: 20px;
  }
}