.cataloglayout__home {
  flex: 1 0 0px;
}

h2.catalog__home {
  color: #5a2a82;
  font-weight: 300;
  font-size: 2rem;

  border-bottom: 5px solid #5a2a82;
}

p {
    line-height: 1.7rem;
    margin-bottom: 0.5rem;
}

/* New IP */

.product__container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  /* row-gap: 10px;
        column-gap: 10px; */
  gap: 40px 40px;
  width: 85%;
  max-width: 1000px;
  margin: 30px 60px;
}

.product__article {
  height: 280px;
  padding: 4px;
  cursor: pointer;
  border: 1px solid #dbdbdb;
  box-shadow: 15px 15px 0 0 transparent, 0 4px 16px 0 rgba(116, 117, 124, 0.1);
}

.product__article:hover {
  box-shadow: 15px 15px 0 0 #49b170, 4px 4px 20px 0 rgba(0, 0, 0, 0.25);
  border: 1px transparent;
}

/* .product__h2 {
			grid-column: span 3;
			font-weight: 900;
			font-size: 4rem;
			text-align: center;

		} */

.product__feature, .ecosytem__feature {
  height: 0;
  opacity: 0;
  display: block;
  padding-left: 30px;
  overflow: hidden;
  transition: overflow 1s, height 1s, opacity 1s;
  z-index: -1;
}

.product__article:hover .product__feature {
  height: 200px;
  opacity: 1;
}

/* .product__details {
			padding-bottom: 20px;
		} */
.product__link {
  /* display: block; */
  padding-bottom: 20px;
  text-decoration: none;
}

.product__article .product__link {
  /* color: #5A2982; */
  color: black;
  /* letter-spacing: 0.05em; */
}


.product__title {
  /* font-family: 'Open Sans', sans-serif;   */
  font-weight: 500;
  font-size: 1.2rem;
  line-height: 1.6rem;
  padding-left: 15px;
  /* color: #5A2982; */
  /* letter-spacing: 0.1em; */
}

.ecosytem__title {
  /* font-family: 'Open Sans', sans-serif;   */
  font-weight: 500;
  font-size: 1.2rem;
  line-height: 1.6rem;
  padding-left: 15px;
  /* color: #5A2982; */
  /* letter-spacing: 0.1em; */
  height: 60px;
}

.product__figure, .ecosystem__logo {
  height: 150px;
  max-height: 150px;
  /* text-align: center; */
  display: flex;
  align-items: center;
  /* border: lightcoral 1px solid; */
  opacity: 1;
  transition: max-height 1s, opacity 1s;
  justify-content: center;
  align-items: center;
}

.product__article:hover .product__figure {
  max-height: 0;
  opacity: 0;
}

.product__thumbnail {
  max-width: 100%;
  max-height: 100%;
}

.product__image {
  max-width: 100%;
  max-height: 150px;
  margin: auto;
  transform: translateY(0);
  /* transition: transform 10s; */
  overflow: hidden;
}

.product__ul,
.product__feature ul {
  list-style: square;
  margin: 20px 10px;
  line-height: 1.3rem;
  font-size: 0.9rem;
}

.product__button {
  border: 0 solid #e20d17;
  margin: 10px;
  background: #5a2982;
  color: #ffffff;
  display: block;
  border-radius: 3px;
  padding: 7px;
  font-weight: bold;
  font-size: 15px;
  text-transform: uppercase;
  text-decoration: none;
  width: 150px;
  text-align: center;
}

.product__button:hover {
  background: #fcaf1a;
}
