/* ADYWEB Hollow Heading */
.adyweb-hh-wrapper {
    display: block;
}

.adyweb-hh-heading {
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: #000000;
    text-stroke-width: 2px;
    text-stroke-color: #000000;
    color: transparent;
    line-height: 1.2;
    display: inline-block;
    transform-origin: center;
    transition: all 0.3s ease;
}

/* Hover animation variants */

/* Grow */
.adyweb-hh-anim-grow:hover {
    transform: scale(1.08);
}

/* Shrink */
.adyweb-hh-anim-shrink:hover {
    transform: scale(0.94);
}

/* Lift */
.adyweb-hh-anim-lift:hover {
    transform: translateY(-4px);
}

/* Underline */
.adyweb-hh-anim-underline {
    position: relative;
}

.adyweb-hh-anim-underline::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.25em;
    width: 0;
    height: 2px;
    background: currentColor;
    transition: width 0.3s ease;
}

.adyweb-hh-anim-underline:hover::after {
    width: 100%;
}

/* Glow */
.adyweb-hh-anim-glow:hover {
    text-shadow:
        0 0 4px currentColor,
        0 0 10px currentColor;
}
