/* Home hook CSS */

.add-blocks.displayWPBannerTop {margin-bottom: 2rem;}
.add-blocks.displayWPBannerTop .wp-add, .add-blocks.displayWPBannerBottom .wp-add {margin-bottom: 30px}
.add-blocks.displayWPBannerTop .wp-add {position: relative; display: block;
    -webkit-transition: all 0.2s ease-in-out 0.1s;
    transition: all 0.2s ease-in-out 0.1s}

.displayWPBannerTop  figure figcaption, .displayWPBannerTop figure figcaption > a {
    height: 100%;
    overflow: hidden;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    text-align: center;
} 

.displayWPBannerTop  figure.effect-ming figcaption::before {
  position: absolute;
  top: 25px;
  right: 37px;
  bottom: 25px;
  left: 37px;
  border: 2px solid #fff;
  box-shadow: 0 0 0 30px rgba(255,255,255,0.2);
  content: '';
  opacity: 0;
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  -webkit-transform: scale3d(1.4,1.4,1);
  transform: scale3d(1.4,1.4,1);
}

.displayWPBannerTop figure.effect-ming .wp-title {
  margin: 30% 0 10px 0;
  background: #000;
  color: #fff;
  padding: 10px 20px;  
  display: inline-block;
  -webkit-transition: -webkit-transform 0.35s;
  transition: transform 0.35s;
  text-transform: uppercase;
}

 
.wp-home.effect-ming .wp-title {font-size: 16px; padding: 5px 10px; margin-top: 28%; text-transform: uppercase;} 
 
.displayWPBannerTop figure.effect-ming:hover figcaption::before {
  opacity: 1;
  -webkit-transform: scale3d(1,1,1);
  transform: scale3d(1,1,1);
}

.displayWPBannerTop figure.effect-ming:hover figcaption {
  background-color: rgba(58,52,42,0);
}

.displayWPBannerTop .effect-ming img {
  opacity: 0.9;
  -webkit-transition: opacity 0.35s;
  transition: opacity 0.35s;
}
 

#htmlcontent_home { margin-bottom: 25px  }
#htmlcontent_home ul {
  margin: 0 -5px;  }
  #htmlcontent_home ul li {
    padding: 0 5px 10px; }
    @media (max-width: 479px) {
      #htmlcontent_home ul li {
        width: 100%; } }
    #htmlcontent_home ul li img {
      max-width: 100%;
      height: auto; }
      @media (max-width: 479px) {
        #htmlcontent_home ul li img {
          min-width: 100%; } }
    #htmlcontent_home ul li.htmlcontent-item-5 {
      width: 66.6667%; }
      @media (max-width: 479px) {
        #htmlcontent_home ul li.htmlcontent-item-5 {
          width: 100%; } }

/* Top hook CSS */
  #htmlcontent_top {
    float: right;
    width: 33%;
    max-width: 391px;
    padding-left: 5px;
}
  @media (max-width: 767px) {
    #htmlcontent_top {
      width: 100%;
      max-width: 100%;
      padding-left: 0;
      padding-top: 0px; } }
  @media (max-width: 767px) {
    #htmlcontent_top ul {
      margin: 0 -5px; } }
  #htmlcontent_top ul li {
    width: 100%;
    margin-bottom: 10px; }
    @media (max-width: 767px) {
      #htmlcontent_top ul li {
        float: left;
        padding-left: 5px;
        padding-right: 5px;
        width: 50%; } }
    #htmlcontent_top ul li:last-child {
      margin-bottom: 0; }
    #htmlcontent_top ul li img {
      max-width: 100%;
      height: auto; }

/* Left hook CSS */

/* Shine effect */
.shine-fx {
  position: relative;
  background: #fff;
  overflow: hidden;
  display: block;
}
/* you can set opacity by changing background 0.1 value */ 
.shine-fx:before {
  position: absolute;
  top: 0;
  left: -75%;
  z-index: 2;
  display: block;
  content: '';
  width: 50%;
  height: 100%;
  background: -webkit-linear-gradient(left,rgba(255,255,255,0) 0, rgba(255,255,255,0.1) 100%);
  background: linear-gradient(to right,rgba(255,255,255,0) 0, rgba(255,255,255,0.1) 100%);
  transform: skew(-25deg,0)
}
.shine-fx:hover::before {
  animation: shine .75s
}
@-webkit-keyframes shine {
100% {
  left: 125%
}
}
@keyframes shine {
100% {
  left: 125%
}
}