/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
html {
  font-family: "lato", sans-serif;
  background-color: #f8f9fe;
  color: #1e3a70;
  overflow-x: hidden;
}

/* Main Content */
.principale-container {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 70px;
  padding: 2% 10%;
  height: 100%;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

/* Limit to a maximum of 4 columns */
/* Card Styling */
.card {
  background-color: white;
  border-radius: 4px;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.2);
  padding: 10px;
  text-align: center;
  width: 285px;
  margin: auto;
  min-height: 390px;
  transition: all 0.5s ease;
}

.card:hover {
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0);
}

.icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.icon img {
  width: 50px;
}

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

.card ul {
  list-style: none;
  padding: 0;
}

.card ul li {
  color: #189cd0;
  font-size: 14px;
  line-height: 1.8;
  cursor: pointer;
  transition: color 0.3s, text-decoration 0.3s;
}

.card ul li:hover {
  /*text-decoration: underline;*/
  color: #005f8d;
}

/* Responsive Design */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
  }
  .navbar-right {
    width: 100%;
    justify-content: space-between;
  }
  .principale-container {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
  .card {
    width: 100%;
  }
}


/*# sourceMappingURL=principale.css.map */
