/** Shopify CDN: Minification failed

Line 107:21 Expected identifier but found whitespace
Line 107:23 Unexpected "{"
Line 107:32 Expected ":"
Line 133:21 Expected identifier but found whitespace
Line 133:23 Unexpected "{"
Line 133:32 Expected ":"
Line 134:10 Expected identifier but found whitespace
Line 134:12 Unexpected "{"
Line 134:21 Expected ":"
Line 134:51 Expected identifier but found "!"
... and 3 more hidden warnings

**/


/* CSS from section stylesheet tags */
.standardization-section {
    padding: 40px 20px 40px; /* Keep the original padding for the section */
    position: relative;
  }

  .section-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
  }

  .logo-container {
    position: absolute;
    top: 0; /* Keep logo at the top */
    left: 0;
    z-index: 1;
  }

  .small-logo {
    max-width: 100px;
    height: auto;
  }

  .content-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start; /* Ensure elements align to the start */
    flex-wrap: wrap;
    padding-top: 80px; /* Add padding to the top of the text content */
  }

  .text-content {
    flex: 1;
    padding-right: 40px;
    max-width: 50%;
  }

  .image-container {
    flex: 1;
    max-width: 50%;
  }

  .text-content h2 {
    margin-bottom: 15px; /* Adjusted margin for title */
  }

  .text-content p {
    line-height: 1.6; /* Increase line-height for better readability */
    margin-top: 10px; /* Add margin above the paragraph */
    margin-bottom: 20px; /* Add margin below the paragraph to separate from buttons */
  }

  .main-image {
    width: 100%;
    height: auto;
  }

  .btn {
    display: inline-block;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 4px;
    transition: opacity 0.3s;
    margin-top: 20px; /* Spacing above the button */
  }

  .btn:hover {
    opacity: 0.9;
  }

  /* Dot styles */
  .dots-container {
    text-align: center;
    margin-top: 10px;
  }

  .dot {
    height: 12px;
    width: 12px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.3s;
  }

  .dot.active {
    background-color: {{ section.settings.highlight_color }};
  }

  /* Navigation buttons */
  .nav-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
  }

  .nav-button {
    width: 40px;
    height: 40px;
    border: 2px solid currentColor;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    background-color: transparent;
    transition: background-color 0.3s, color 0.3s;
  }

  .nav-button:hover {
    background-color: {{ section.settings.highlight_color }};
    color: {{ section.settings.background_color }} !important;
    border-color: {{ section.settings.highlight_color }};
  }

  /* Mirrored layout styles */
  .mirrored .content-container {
    flex-direction: row-reverse;
  }

  .mirrored .text-content {
    padding-right: 0;
    padding-left: 40px;
  }

  .mirrored .logo-container {
    left: auto;
    right: 0;
  }

  /* Animations */
  .slide {
    transition: opacity 0.3s ease-in-out;
  }

  .slide-title {
    transition: opacity 0.3s ease-in-out;
  }

  @media (max-width: 768px) {
    .content-container,
    .mirrored .content-container {
      flex-direction: column;
    }

    .text-content,
    .image-container,
    .mirrored .text-content {
      max-width: 100%;
      padding-right: 0;
      padding-left: 0;
      margin-bottom: 20px;
    }

    .logo-container,
    .mirrored .logo-container {
      position: relative;
      top: auto;
      left: auto;
      right: auto;
      margin-bottom: 2px; /* Further reduced margin for mobile */
    }

    .content-container {
      padding-top: 10px; /* Further reduced top padding for mobile */
    }
  }