/******* Do not edit this file *******
Code Snippets Manager
Saved: Jul 25 2025 | 14:16:00 */
/* hide bulletpoints from lists */
.no-bullets ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* different color for links */
.footer-color {
  a {
    color: white;
    transition: color 0.3s ease;
  }
  a:hover {
    color: #8BC53F;
  }
}

/* meet the team cards */
.minimal-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 25px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.minimal-card:hover {
    background: rgba(139, 197, 63, 0.1);
    border-color: #8BC53F;
    transform: translateY(-5px);
}

/* Increase spacing between list items */
.green-bullet ul li {
  margin-bottom: 1.2em;
}

/* Change bullet colour only */
.green-bullet ul li::marker {
  color: #8bc53f;
}