/* === OXYGEN Issue with these Flex Mixins - They can't be used as a base Oxy Class (.ct-div-block) overides them in the DOM  ===*/
.contact-card {
  /*@include flexStart(row, space-between;*/
  width: 100%;
  height: 24rem;
  padding: 2rem;
  border-bottom: 2px solid var(--black);
  background: var(--white);
  /*&__body {
        width: 100%;
        height: 24rem;
        padding: 2rem;
        border: 2px solid var(--white);
        border-bottom: 0;
    }*/
}
.contact-card__footer {
  /*@include flexCenter(row, center);*/
  width: 100%;
  height: 4rem;
  margin-top: auto;
}
.contact-card__footer h6 {
  color: var(--black);
  cursor: pointer;
}
.contact-card__footer h6 a {
  color: var(--black);
}
.contact-card__footer h6:hover a {
  color: var(--primary);
  text-decoration: underline;
}
.contact-card__footer h6:hover + .footer-item__icon {
  stroke: var(--primary);
  transform: rotate(45deg);
  transition: 0.2s;
}
