.multi-square-tags {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
}
.multi-square-tags .m-square-tag {
  display: block;
  position: relative;
  width: 100%;
  max-width: 250px;
  text-align: center;
  margin: auto;
  cursor: pointer;
}
.multi-square-tags .m-sqtag-hldr {
  display: block;
  width: 100%;
  position: relative;
    background: #fff;
}
.multi-square-tags .m-sqtag-hldr:before {
  content: "";
  display: block;
  padding-top: 100%;
  position: relative;
}
.multi-square-tags .m-square-tag .m-sqtag-wrap {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  background: #fff;
  transition: all .4s;
  box-shadow: 0 10px 10px 0 rgba(6, 59, 85, 0.2);
}
.multi-square-tags .m-square-tag .m-sqtag-wrap .m-sqtag-content {
  position: absolute;
  height: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}
.multi-square-tags .m-square-tag .m-sqtag-wrap .m-sqtag-content img {
  display: block;
  width: 60px;
  margin: 0 auto 10px;
}
.multi-square-tags .m-square-tag .m-sqtag-wrap .m-sqtag-content span {
  display: block;
  color: #222;
}
.multi-square-tags .m-square-tag .m-sqtag-wrap .m-sqtag-content span.m-sqtag-heading {
  font-size: var(--heading-tertiary);
  font-weight: 600;
  margin-bottom: 5px;
}
.multi-square-tags .m-square-tag .m-sqtag-wrap .m-sqtag-content span.m-sqtag-subheading {
  text-transform: uppercase;
  color: #5d5d5d;
  font-size: 16px;
  letter-spacing: 1px;
}
.multi-square-tags .m-square-tag:hover .m-sqtag-wrap,
.multi-square-tags .m-square-tag.active .m-sqtag-wrap {
  height: 110%;
}
.multi-square-tags .m-tag-overlay {
  border-radius: 0px;
  height: 1px;
  width: 25%;
  position: absolute;
  left: 0;
  bottom: 0;
  transition: all 0.6s;
}
.multi-square-tags .m-tag-overlay:before {
  content: "";
  position: absolute;
  display: block;
  transform: translateX(-50%);
  left: 50%;
  bottom: 8px;
  border: 18px solid rgba(0, 0, 0, 0);
  border-bottom-color: var(--color-primary);
}
.multi-square-tags.row-four .m-square-tag {
  width: 25%;
  margin: 0;
  padding: 10px;
  box-sizing: border-box;
}
@media(max-width:980px) {
  .multi-square-tags .m-square-tag .m-sqtag-wrap .m-sqtag-content span.m-sqtag-heading {
    font-size: 18px;
  }
  .multi-square-tags .m-square-tag .m-sqtag-wrap .m-sqtag-content span.m-sqtag-subheading {
    display: none;
  }
} 
@media(max-width:767px) {
  .multi-square-tags.row-four .m-square-tag {
    width: 50%;
  }
  .multi-square-tags .m-tag-overlay {
    display: none;
  }
  .multi-square-tags .m-square-tag .m-sqtag-wrap .m-sqtag-content span.m-sqtag-subheading {
    display: none;
  }
}