.l-main .contact-block {
  display: flex;
  justify-content: space-around;
  text-align: center;
  gap: 32px;
  height: 100%
}
.l-main .contact-block a {
  border-radius: 8px;
  background: #eaebe8;
  padding: 32px 24px 24px 24px;
  width: 100%;
}
.l-main .contact-block figure {
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.l-main .contact-block .contact-button button {
  display: inline-block;
  width: 48px;
  height: 48px;
  background: #5f9928;
  border-radius: 50%;
}
.l-main .contact-block .contact-button:hover button {
  background-color: #2b3e34;
}
.l-main .contact-block .contact-button button img {
  width: 20px;
  filter: brightness(0) saturate(100%) invert(100%) sepia(5%) saturate(7478%) hue-rotate(190deg) brightness(104%) contrast(103%);
  position: relative;
  bottom: 1px;
}
@media screen and (max-width: 767px) {
  .l-main .contact-block {
    display: grid;
    justify-content: normal;
    gap:  16px;
    margin: 0 20px;
  }
}