section.contacts-list .contacts-box .image-wrapper {
  position: relative;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
section.contacts-list .contacts-box .image-wrapper img {
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
}
section.contacts-list .contacts-box .image-wrapper::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(199, 221, 241, 0.3);
  -webkit-transition: background 0.3s linear;
  transition: background 0.3s linear;
  z-index: 9;
  opacity: 1;
}
section.contacts-list .contacts-box .image-wrapper:hover::before {
  background: rgba(199, 221, 241, 0);
}
section.contacts-list .contacts-box a {
  color: var(--secondary-color);
  text-decoration: underline;
}
section.contacts-list .contacts-box a:hover {
  color: var(--highlight-color);
}