/** Shopify CDN: Minification failed

Line 93:19 Expected identifier but found whitespace
Line 93:21 Unexpected "{"
Line 93:30 Expected ":"

**/


/* CSS from section stylesheet tags */
.circle-section {
 
  text-align: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.circle-section h2.section-heading {
  font-size: 32px;
  /* margin-bottom: 40px; */
  margin: 20px;
  color: #020202;
}

.circle-area-bg {
  background-color: #f9f0e1;
 padding: 68px 20px;
  border-radius: 20px;
}

.circle-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 40px;
}

.circle {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: bold;
  color: #333;
  text-align: center;
  padding: 20px;
}

.circle:hover {
  transform: scale(1.05);
}

.circle .hover-text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 20px;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.circle:hover .hover-text {
  opacity: 1;
}
  @media screen and (max-width: 768px) {
  .circle {
    width: 210px;
    height: 210px;
  }
}
.card-section {
  padding: 40px;
  padding-bottom: 60px;
  text-align: center;
  background-color: {{ section.settings.background_color }};
}

.card-section h2.section-heading {
    font-size: 2.5rem;
  margin-bottom: 6px;
  color: #020202;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  padding: 35px 20px 0; /* Less padding for smaller screens */
  max-width: 900px; /* Optional: center content */
  margin: 0 auto;
}

.card {
  flex: 1 1 calc(50% - 40px); /* 2 cards per row, accounting for gap */
  max-width: calc(50% - 40px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  background-color: #ffffff;
  padding: 25px;
  font-size: 18px;
  color: #333;
  text-align: center;
  border-radius: 10px;
}

.card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #111;
}

.card p {
  font-size: 15px;
  color: #060606;
}
  @media (max-width: 767px) {
  .card {
    flex: 1 1 100%;
    max-width: 100%;
  }
}