/** Shopify CDN: Minification failed

Line 18:19 Expected identifier but found whitespace
Line 18:21 Unexpected "{"
Line 18:30 Expected ":"
Line 19:14 Expected identifier but found whitespace
Line 19:16 Unexpected "{"
Line 19:25 Expected ":"
Line 19:51 Expected ":"
Line 20:17 Expected identifier but found whitespace
Line 20:19 Unexpected "{"
Line 20:28 Expected ":"
... and 55 more hidden warnings

**/
.two-row-section {
  width: 100%;
  background-color: {{ section.settings.background_color }};
  padding-top: {{ section.settings.padding_top }}px;
  padding-bottom: {{ section.settings.padding_bottom }}px;
  padding-left: {{ section.settings.padding_left }}px;
  padding-right: {{ section.settings.padding_right }}px;
}
.section-heading, .sub-heading {
  text-align: center;
  margin-bottom: 30px;
  font-size: {{ section.settings.heading_font_size }}px;
  color: {{ section.settings.heading_font_color }};
  font-weight: {{ section.settings.heading_font_weight }};
  line-height: 1.2;
  text-transform: uppercase;
}
.columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}
.column {
  margin: 10px;
  font-size: {{ section.settings.paragraph_font_size }}px;
  color: {{ section.settings.paragraph_font_color }};
  font-weight: {{ section.settings.paragraph_font_weight }};
}
.tech-image-row {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
.techimage1, .techimage2 {
  width: 40%;
  text-align: center;
}
.techimage-1 img {
  max-width: {{ section.settings.image_size_1 }}px;
  width: 100%;
  height: auto;
}
.techimage-2 img {
  max-width: {{ section.settings.image_size_2 }}px;
  width: 100%;
  height: auto;
}
.third-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
  margin-top: 40px;
}
.button-tech {
  padding: 16px 30px;
  border-radius: 50px;
  background-color: {{ section.settings.button_background_color }};
  color: {{ section.settings.button_text_color }};
  border: 1px solid {{ section.settings.button_background_color }};
  font-size: {{ section.settings.button_font_size }}px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.button-tech:hover {
  opacity: 0.9;
}
.anchor-column a {
  font-size: 16px;
  color: #007BFF;
  text-decoration: none;
}

/* Mobile styles */
@media screen and (max-width: 768px) {
  .tech-image-row {
    flex-direction: column;
    align-items: center;
  }
  .techimage1, .techimage2 {
    width: 100%;
  }
  .third-row {
    flex-direction: column;
    gap: 20px;
  }
  .section-heading, .sub-heading {
    font-size: {{ section.settings.heading_font_size_mobile }}px !important;
    margin-bottom: 10px;
  }
  .columns {
    gap: 10px;
  }
  /* .columns .column p {
    display: none;
  } */
}