/** Shopify CDN: Minification failed

Line 243:1 Expected "}" to go with "{"

**/


/* CSS from section stylesheet tags */
.four-cards {
  padding: 40px 20px;
 
}

.page-width {
  max-width: 1200px;
  margin: 0 auto;
}

.section-heading {
  text-align: center;
  font-size: 24px;
  margin-bottom: 30px;
}

.cards-container-4cards {
  display: grid;
  max-width:1200px;
  margin: 0 auto;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.card-4cards { 
  padding: 20px; 
  border-radius: 8px;
  text-align: center; 
}

.card-4cards:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.card-image-4cards {
  width: 100%;
  height: auto;
  margin-bottom: 15px;
  border-radius: 30px;
}

.card-title-4cards {
  color:#d5878b;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}

.card-description-4cards {
  
  font-size: 14px;
  color: #666666;
}

@media screen and (max-width: 768px) {
  .cards-container-4cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 480px) {
  .cards-container-4cards {
    grid-template-columns: 1fr;
  }
}
.page-width {
  max-width: 1200px;
  margin: 0 auto;
}

.section-heading {
  text-align: center;
  font-size: 24px;
  margin-bottom: 30px;
}

.cards-with-Readmore-container {
  max-width:1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.card-with-Readmore { 
  padding: 20px; 
  border-radius: 8px;
  text-align: center; 
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-with-Readmore:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.card-with-readmore-image {
  display:flex;
  justify-content:center;
  align-items:center;
  width: 100%;
  height: auto;
  margin-bottom: 15px;
  border-radius: 4px;
}

.card-with-readmore-title {
  color:#d5878b;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}

.cards-with-Readmore-container .card-read-more {
  display: inline-block !important; 
  margin-top:10px; 
}

.card-with-readmore-description {
  display:none;
  font-size: 14px;
  color: #666666;
}

@media screen and (max-width: 768px) {
  .cards-with-Readmore-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 480px) {
  .cards-with-Readmore-container {
    grid-template-columns: 1fr;
  }
}
.image-content-section {
  padding: clamp(20px, 5vw, 40px);
  width: 100%;
  box-sizing: border-box;
}

.image-container {
  position: relative;
  width: 100%;
  margin: 0 auto;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: clamp(30px, 5vw, 70px);
}

.image-container::after {
  content: '';
  display: block;
  padding-bottom: 85.25%; /* 16:9 Aspect ratio */
}

.content-overlay-onImage {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(650px, 90%); 
  text-align: center;   
  border-radius: clamp(5px, 2vw, 10px);
  z-index: 2;
}
  @media screen and (max-width: 768px){
    .content-overlay-onImage p {
line-height:1 !important;
      font-size:14px !important;
  }

.content-overlay h3 {
  font-size: clamp(20px, 4vw, 32px);
  margin-bottom: clamp(10px, 2vw, 20px);
  line-height: 1.2;
}

.content-overlay-onImage p {
  font-size: clamp(16px, 2.5vw, 24px);
  line-height: 1.4;
  margin: 0;
}

.placeholder-text {
  text-align: center;
  color: gray;
  padding: 40px;
  font-size: 16px;
}

/* Tablet Styles */
@media screen and (max-width: 992px) {
  .image-container {
    width: min(100%, {{ section.settings.image_width }}px);
  }
  
  .content-overlay-onImage {
    width: min(500px, 85%);
  }
}

/* Mobile Styles */
@media screen and (max-width: 768px) {
  .image-content-section {
    padding: 15px;
  }

  .image-container {
    border-radius: 30px;
  }
  
  .content-overlay-onImage {
    width: min(400px, 85%);
    padding: 15px;
  }
}

/* Small Mobile Styles */
@media screen and (max-width: 480px) {
  .image-container {
    border-radius: 20px;
  }
  
  .content-overlay-onImage {
    width: 90%;
    padding: 12px;
  }
  
  .content-overlay h3 {
    margin-bottom: 8px;
  }
}