/* FONDO GENERAL */
.home-body {
  background-color: var(--color-background);
}

/* TITULO */
.wellcome-message-home {
  text-align: left;
  color: rgb(27, 27, 27);
  font-size: 14px;
  margin-left: 50px;
  margin-top: 60px;
  margin: 60px 50px 40px;
}

/* GRID */
.grid-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;
  padding: 30px 30px;
}

/* ITEM */
.grid-item {
  display: flex;
  flex-direction: column;
  width: 300px;
  height: 170px;
  align-items: flex-start;
  justify-content: center;
  background-color: white;
  padding: 20px;
  border-radius: 5%;
  transition: transform 0.3s ease-in-out;
  color: black;
  font-weight: bold;
  gap: 8px;
  box-shadow: 1px 5px 5px 5px rgba(68, 68, 68, 0.1);
}

.grid-item:hover {
  cursor: pointer;
  transform: scale(1.05);
}

/* ICONO */
.icon-home {
  padding: 15px;
  margin-bottom: 5px;
  font-size: 20px !important;
  background-color: #474747;
  color: #d7d7d8;
  border-radius: 20%;
}

/* TITULO */
.title-icon {
  font-size: 16px;
  font-weight: 700;
}

/* DESCRIPCIÓN */
.sub-title-icon {
  font-size: 12px;
  font-weight: 100;
  text-align: left;
}
