.heading-text-box .box-content, .box-content-title {   
    position: relative;
}
.box-content-title {
    font-family: 'Nexa XBold';
    font-size: 40px;
    line-height: 40px;
}
.heading-text-box.hover-line .box-content {
    padding-left: 52px;
    position: relative;
    display: block;
}
.heading-text-box.hover-line .box-content::before {
    content: '';
    display: block;
    position: absolute;
    width: 40px;
    height: 2px;
    background: #000;
    top: 18px;
    left: 0;
    transform-origin: right;
    transform: scale(0);
    transition: all 0.5s ease;
}
.heading-text-box.hover-line .box-content:hover::before {
    transform: scale(1);
}
.heading-text-box.hover-line .box-content .box-content-title > a, .heading-text-box.hover-line .box-content .box-content-sub-title > a {
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    color: inherit;
    font: inherit;
}