/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Feb 03 2026 | 04:11:40 */
/* Section background */
.info-section {
  width: 100%;
  background-color: #e6e6e6;
  padding: 60px 20px;
}

/* Layout container */
.info-section .info-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* Card */
.info-section .info-card {
  background-color: #ffffff;
  padding: 40px 30px;
  text-align: center;
  border-radius: 4px;
}

/* Icon */
.info-section .info-icon {
  font-size: 75px;
  color: #0a84d8;
  margin-bottom: 20px;
}

/* Title */
.info-section .info-title {
  font-size: 16px;
  letter-spacing: 1px;
  margin-bottom: 16px;
	
}

/* Text */
.info-section .info-text {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
}

/* Responsive */
@media (max-width: 900px) {
  .info-section .info-container {
    grid-template-columns: 1fr;
  }
}