/* FONDO GENERAL */
.home-body-home {
  background-color: white;
}

.main-content-home {
  background-color: white;
}

/* TITULO */
.welcome-message-home {
  text-align: left;
  color: rgb(27, 27, 27);
  font-size: 14px;
  margin: 20px 0 0 50px;
}

.welcome-message-home-title {
  font-size: 28px;
  font-weight: 500;
}

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

/* ITEM */
.grid-item {
  display: flex;
  flex-direction: column;
  width: 300px;
  height: 150px;
  align-items: flex-start;
  justify-content: center;
  background-color: white;
  padding: 20px;
  text-align: left;
  border-radius: 5%;
  transition: transform 0.3s ease-in-out;
  color: black;
  font-weight: bold;
  box-shadow: none;
  gap: 8px;
  margin: auto;
  position: relative;
}

.grid-item:hover {
  cursor: pointer;
  transform: scale(1.05);
  box-shadow: 1px 5px 5px 5px rgba(68, 68, 68, 0.1);
}

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

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

/* DESCRIPCION */
.sub-title-icon {
  font-size: 12px;
  font-weight: 400;
  text-align: left;
  color: #1c1c1c;
}
