.contactCard
{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2px;
    border-radius: 24px;
    overflow: hidden;
    /* line-height: 1.6; */
    transition: all 0.48s cubic-bezier(0.23, 1, 0.32, 1);
}
.contactCard1
{
    width: 300px;
    height: 90px;
}

.contactContent
{
    display: flex;
    flex-flow: wrap column;
    justify-content: center;
    height: 100%;
    width: 100%;
    /* align-items: flex-start; */
    /* gap: 24px; */
    padding: 5px;
    border-radius: 22px;
    color: #ffffff;
    overflow: hidden;
    background: #ffffff;
    transition: all 0.48s cubic-bezier(0.23, 1, 0.32, 1);
}
  
.contactContent .contactHeading
{
    font-weight: 700;
    font-size: 17px;
    z-index: 1;
    margin-bottom: 3px;
    text-align: center;
    transition: all 0.48s cubic-bezier(0.23, 1, 0.32, 1);
}
  
.contactContent .contactText
{
    z-index: 1;
    opacity: 0.8;
    font-size: 14px;
    margin-bottom: 0px;
    text-align: center;
    transition: all 0.48s cubic-bezier(0.23, 1, 0.32, 1);
}
  
.contactCard1::before
{
    content: "";
    position: absolute;
    height: 400%;
    width: 250%;
    border-radius: inherit;
    background: #000000;
    background: linear-gradient(to right, #64a45c, #64a45c);
    transform-origin: center;
    animation: moving 4.8s linear infinite paused;
    transition: all 0.88s cubic-bezier(0.23, 1, 0.32, 1);
}
  
.contactCard:hover::before
{
    animation-play-state: running;
    z-index: -1;
    width: 20%;
}
  
.contactCard:hover .contactContent .contactHeading,
.contactCard:hover .contactContent .contactText
{
    color: #000000;
}
  
.contactCard1:hover 
{
    box-shadow: 0rem 6px 13px rgba(100, 164, 92, 0.1), 0rem 24px 24px rgba(100, 164, 92, 0.09), 0rem 55px 33px rgba(100, 164, 92, 0.05), 0rem 97px 39px rgba(100, 164, 92, 0.01), 0rem 152px 43px rgba(100, 164, 92, 0);
    scale: 1.05;
    color: #000000;
}

  
@keyframes moving
{
    0%
    {
        transform: rotate(0);
    }
    100%
    {
        transform: rotate(360deg);
    }
}
  