/** Shopify CDN: Minification failed

Line 176:15 Unexpected "{"
Line 176:24 Expected ":"
Line 176:31 Unexpected "{"
Line 177:19 Expected identifier but found whitespace
Line 177:21 Unexpected "{"
Line 177:30 Expected ":"
Line 178:16 Expected identifier but found whitespace
Line 178:18 Unexpected "{"
Line 178:27 Expected ":"
Line 178:56 Expected ":"
... and 20 more hidden warnings

**/


/* CSS from section stylesheet tags */
section#shopify-section-template--24656785047849__compare_table_HbxBGf {
        margin-top: 40px;
}

.compare-table-wrap {
    background: #FBFBFB;
    border-radius: 20px;
 }
.compare-table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 0 56px 56px 56px;
}
.compare-column {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  text-align: center;
}
.our-column {
  background-color: #055CCB;
}
.other-column {
  background: #d9e5f5;
}
.compare-logo img {
  margin-bottom: 20px;
  width: 200px;
}
.compare-feature {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 20px 0;
}
.compare-feature img {
  width: 24px;
  height: 24px;
}
.our-column .compare-feature span {
  font-weight: 500;
  text-align: left;
  font-size: 22px;
  line-height: 30px;
  color: #ffffff;
}
.other-column .compare-feature span {
  font-weight: 500;
  text-align: left;
  font-size: 22px;
  line-height: 30px;
  color: #000;
}


.heading_icon_text_wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  padding: 0 56px;
}
.heading_icon_text_wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 40px;
}

.heading_icon_text_wrap .heading {
 font-size: 70.07px;
    line-height: 84px;
    color: #000000;
    width: 50%;
    margin: 0;
}

.icon_text_wrap {
  display: flex;
  gap: 30px;
  flex-shrink: 0;
}

.icon_text_block {
  text-align: center;
}

.icon_text_block img {
  height: 40px;
}

.icon_heading {
  margin: 8px 0 0;
  font-size: 20px;
  font-weight: 600;
}

.icon_text {
  margin: 0;
  font-size: 14px;
      font-weight: bold;
}
.heading_icon_text_wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    padding: 0 56px;
}

@media screen and (max-width: 768px) {
  .compare-table {
    grid-template-columns: 1fr;
  }
  .icon_text_wrap {
    flex-wrap: wrap;
    justify-content: center;
  }
  .compare-table {
  padding: 0;
}
.heading_icon_text_wrap .heading {
      font-size: 52.07px;
    line-height: 58px;
    color: #000000;
    width: 100%;
    margin: 0;
}
.heading_icon_text_wrap {
    padding: 20px;
}
}
a.button.button--primary {
    background: #F77700;
    color: #ffffff;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 395px;
    height: 51px;
    border-radius: 8px;
    margin-bottom: 40px;
    font-size: 16px;
    line-height: 16px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: unset;
    letter-spacing: 2px;
    gap: 8px;
    margin-top: 20px;
}
#three-column-{{ section.id }} {
  background-color: {{ section.settings.section_bg }};
  border-radius: {{ section.settings.section_radius }}px;
  padding: 40px 20px;
  overflow-x: hidden; /* prevent horizontal scroll outside the wrapper */
}

#three-column-{{ section.id }} .three-column-title {
  text-align: center;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 32px;
}

#three-column-{{ section.id }} .column-wrapper {
  display: grid;
  grid-template-columns: repeat({{ section.settings.desktop_columns | default: '3' }}, 1fr);
  gap: 20px;
}

#three-column-{{ section.id }} .column-block {
  padding: 20px;
  border-radius: 12px;
  color: #fff;
  text-align: center;
}

#three-column-{{ section.id }} .column-block img.img-b {
  margin-top: 12px;
  height: 40px;
  width: auto;
}

#three-column-{{ section.id }} .column-block h4 {
  min-height: 100px;
  font-size: 22px;
  line-height: 29px;
  color: #ffffff;
}

#three-column-{{ section.id }} .column-block p {
  font-size: 14px;
  line-height: 1.5;
  color: #ffffff;
}
  #three-column-{{ section.id }} .column-wrapper {
    display: flex; 
    gap: 12px;
  }

@media only screen and (max-width: 840px) {
  #three-column-{{ section.id }} .column-wrapper {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding-left: 16px;
    padding-right: 16px;
  }
  #three-column-{{ section.id }} .column-wrapper::-webkit-scrollbar {
    display: none;
  }
  #three-column-{{ section.id }} .column-block {
    flex: 0 0 240px; /* fixed width to enable scrolling */
    scroll-snap-align: start;
  }
}