/** Shopify CDN: Minification failed

Line 16:8 Expected identifier but found whitespace
Line 16:10 Unexpected "{"
Line 16:19 Expected ":"

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:revenue-partner (INDEX:79) */
.revenue-partner-section {
  display: flex;
  flex-wrap: wrap;
  color: {{ section.settings.text_color }};
  gap: 40px;
  background: #F5F5F5;
  padding: 60px 80px;
  border-radius: 30px;
  
}
.revenue-left, .revenue-right {
  flex: 1 1 45%;
}
.revenue-left p{
    margin-top: 0;
    margin-bottom: 25px;
    font-size: 16px;
    line-height: 24px;
}
.revenue-left h2{
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 45px;
    line-height: 55px;
    font-weight: 600;
}
.quote-box small {
    color: antiquewhite;
}
.revenue-right{
    position: sticky;
    top: 0;
    right: 0;
    height: 100%;
}
/* .quote-box::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-family: 'Playfair Display', serif;
    font-size: 200px;
    color: bisque;
    opacity: 0.15;
    line-height: 1;
} */
.feature-card, .stat-card {
  background-color: #fff;
  border-radius: 20px;
  padding: 20px;
  margin-bottom: 20px;
}
.quote-box p{
  margin-top: 0;
  font-size: 20px;
}
.stat-card {
  flex: 0 0 50%;
  max-width: calc(50% - 10px); 
  margin-bottom: 0;
}
.feature-card img {
  width: 80px;
  margin-bottom: 15px;
}
.feature-card p{
    margin-top: 0;
    margin-bottom: 0;
    font-size: 16px;
    line-height: 24px;
}
.stat-card {
  background-color: #fff;
  color: #fff;
  text-align: left;
}
.stat-label {
    font-size: 15px;
    line-height: normal;
    color: #000;
}
.stat-number {
  font-size: 36px;
  line-height: 56px;
  font-weight: bold;
  color: #000;
  margin-bottom: 10px;
}
.main-state-card {
    display: flex;
    align-items: stretch;
    gap: 20px;
    flex-wrap: wrap;
}
.revenue-left h2 b{
    color: #E8532A;
    font-weight: 600;
}
.feature-card h4{
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 20px;
    line-height: 28px; 
}
.image-stat-card img {
    width: 100%;
    max-width: 80px;
}
.image-stat-card {
  margin-right: 17px;
}
 
.quote-box {
  background-color: #1a1a1a;
  color: #fff;
  padding: 30px;
  border-radius: 20px;
  margin-bottom: 25px;
}
.feature-card {
  background-color: #fff;
  border-radius: 12px;
  padding: 25px 30px;
  margin-bottom: 25px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
  display: flex;
  gap: 20px;
    align-items: flex-start;
    border-radius: 28px;
    padding: 21px;
}

.feature-card:hover {
  transform: translateY(-5px) scale(1.01);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
.feature-card img {
  transition: transform 0.4s ease;
}

.feature-card:hover img {
  transform: scale(1.2);
}
@media(max-width: 768px) {
  .revenue-partner-section {
    flex-direction: column;
  }
}
/* END_SECTION:revenue-partner */

/* START_SECTION:states-bar (INDEX:85) */
.stats-bar-section {
  overflow: hidden;
  padding: 25px 0;
}

.scroll-wrapper {
  display: flex;
  gap: 50px;
  animation: scroll-left linear infinite;
  animation-duration: 10s;
}

.stats-bar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  color: #fff;
}

.stats-bar-item img {
  width: 24px;
  height: 24px;
}

.stats-bar-number {
  font-weight: bold;
  margin-left: 5px;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}
/* END_SECTION:states-bar */