PRJCT—Archi
design + development
.lab-cta {
position: relative;
}
.lab-cta::after {
content: '';
position: absolute;
width: 100%;
height: .5px;
bottom: 1px; /* Adjust this value to position the line */
right: 0;
background-color: var(--white);
transform: scaleX(0);
transform-origin: right;
transition: transform .8s cubic-bezier(0.04, 0.72, 0.165, 1);
}
.lab-cta:hover::after {
transform: scaleX(1);
transform-origin: left;
}