/** Shopify CDN: Minification failed

Line 6:8 Expected URL token but found "url("

**/
@import url('{{ 'bootstrap.min.css' | asset_url }}');

.about-split__eyebrow {
  display: none !important;
}

/* Layout & Padding */
.about_section {
  width: 100%;
  padding: 90px 0;
  background-color: #f9fdfb;
}

.about_main {
  padding-left: 50px;
  max-width: 600px;
}

/* Headings */
.about_taital {
  font-size: 42px;
  color: #08a85b;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 30px;
  letter-spacing: 1px;
}

/* Paragraph Text */
.about_text {
  font-size: 18px;
  color: #333;
  line-height: 1.8;
  font-weight: 400;
  margin-bottom: 20px;
}

.about_text .highlight {
  color: #3a7fe0;
  font-weight: 600;
}

/* Image Styling */
.image_7 {
  padding: 20px;
  border: 2px solid #08a85b22;
  border-radius: 15px;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 20px;
}

.image_7:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
}

.image_7 img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

/* Stretch + stack layout */
.row.align-items-stretch {
  display: flex;
  flex-wrap: wrap;
}

.row.align-items-stretch > [class*='col-'] {
  display: flex;
  flex-direction: column;
}

/* Smooth scroll offset for anchor */
html {
  scroll-behavior: smooth;
}

#our-vision::before {
  content: "";
  display: block;
  height: 100px;
  margin-top: -100px;
  visibility: hidden;
}
/* Mobile tweaks: full width blocks and comfy spacing */
@media (max-width: 749px) {
  .about_section .about_main,
  .about_section .image_7 {
    width: 100%;
  }
  .about_section .about_main + .image_7 {
    margin-top: 12px;   /* space between text and its image */
  }
  .about_section .image_7 img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 8px; /* optional: match your style */
  }
  /* space between pairs */
  .about_section .image_7 + .about_main {
    margin-top: 28px;
  }
}

