@charset "utf-8";
/* CSS Document */
.child-pages-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1100px;
  margin: 30px auto;
}
.child-page {
  flex: 1 1 calc(33.333% - 20px);
  min-width: 250px;
  max-width: 301px;
  box-sizing: border-box;
  border: 1px solid #83ab75;
  padding: 10px;
  text-align: center;
  background-color: #1e7c7c;
  border-radius: 10px;
  overflow: hidden;
  height: 75px;
  transition: all 0.5s ease-in-out;
  box-shadow: 0px 0 20px #29342a63;
}
.child-page:hover {
  outline: 4px solid #adcda2;
  transition: all 0.5s ease-in-out;
}
.child-page a {
display: block;
  height: 100%;
  width: 100%;
  align-content: center;
  position: relative;
}
.child-page img {
  max-width: 100%;
  height: auto;
}
.child-page p {
  font-size: 18px;
  margin: 0 10px ;
	font-weight:650;
	line-height: 1.3em;
	color: #FFF !important;
}

@media (max-width:980px) {
  .child-pages-grid {
    justify-content: center;
  }
}