.work-area {
    padding: 4rem 20px;
}

.work-area>h2 {
    text-align: center;
    margin-bottom: 10px;
}

.work-area>p {
    max-width: 1000px;
    margin-inline: auto;
    text-align: center;
    margin-bottom: 40px;
}


.work-area-content {
    max-width: 1200px;
    margin-inline: auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}


.work-area-content .work {
    border: 1px solid rgba(0, 0, 0, 0.2);
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

.work-area-content .work .icon img {
    width: 70px;
    margin-bottom: 10px;
    display: none;
}

.work-area-content .work h4 {
    /* color: #4e4e4e; */
    font-size: 18px;
    text-align: center;
    margin-bottom: 5px;
}

.work-area-content .work p {
    margin-bottom: 10px;
    text-align: center;
}

.work-area-content .work a {
    text-align: center;
    color: white;
    padding: 5px 10px;
      background: #ffd900;
    background: linear-gradient(160deg, rgba(255, 217, 0, 1) 1%, rgba(255, 0, 0, 1) 99%);
    border-radius: 4px;

}







@media screen and (max-width:768px) {
    .work-area-content {
        grid-template-columns: 1fr 1fr ;
    }
}



@media screen and (max-width:576px) {
      .work-area-content {
        grid-template-columns: 1fr  ;
    }
}