.ideas {
  margin-top: 40px;
  margin-bottom: 60px;
  display: flex;
  flex-wrap: wrap;
}
.ideas a {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin: 15px 0;
}
.ideas a:hover {
  box-shadow: 4px 4px 5px #F3F3F3, -4px -4px 5px #F5F5F5;
}
.ideas a:hover h2 {
  background: #fff;
}
.ideas a:hover div img {
  transform: scale(1.05);
}
.ideas a h2 {
  width: 100%;
  padding: 20px;
  background: #f3f3f3;
  font-size: 20px;
  margin-bottom: 0;
  font-weight: 500;
}
.ideas a div {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.ideas a div img {
  width: 100%;
  object-fit: contain;
  transition: 0.7s;
}
.ideas_inner h1 {
  font-size: 26px;
  margin: 40px 0;
  font-weight: 700;
  text-transform: uppercase;
}
.ideas_inner div a {
  position: relative;
  margin-bottom: 20px;
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
}
.ideas_inner div a::after {
  position: absolute;
  bottom: -3px;
  content: " ";
  background: #000;
  width: 50%;
  height: 1px;
  display: flex;
  transition: 0.7s;
}
.ideas_inner div a:hover::after {
  width: 100%;
}
.ideas_inner div p {
  max-width: 1170px;
  color: #828282;
  margin-bottom: 20px;
}
