.about-us-icon-span{
    background-color: var(--secondary-color);
    color: var(--primary-color);
    width: 60px;  /* Define a fixed width */
    height: 60px; /* Define a fixed height */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-us-icon{
    font-size: 30px;
}

.about-us-row{
    background-color:var(--light-color);
    border-radius: 10px;
    padding:15px;
    transition: 0.5s all ease;
}

.about-us-row:hover{
    transform: translateY(-5px);
    /*box-shadow: 1px 1px 2px rgba(0,0,0,0.3);*/
    box-shadow: 3px 5px 8px rgba(0,0,0,0.1);
}