/* SectionTags */

/* Iconframe */
    zh-iframe{
      display: inline-block;
      width: 100%;
      height: 100%;
      color: white;
      border: 3px solid white;
      padding: 2rem;
      border-radius: 50%;
      max-width: 8rem;
      max-height: 8rem;
    }
    zh-frame img{
        width: 58px;
        height: 58px;
    }
/* IconFrame */

/* Card */
    zh-card{
      display: block;
      background-color: white;
      box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.05);
      cursor: pointer;
      transition: background .3s, color .2s, box-shadow .5s, transform .6s linear;
    }
    zh-card p{
        color: #8A8787;
    }
    zh-card:hover p{
        color: white;
    }
    zh-card a{
        z-index: 9999;
    }
    zh-card:hover{
      background-color: #CDBD00;
      color: white;
      box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.226);

    }
/* Card */