.work{
    display: flex;
}

.work_content{
    width: 85%;
    height: 100%;
    display: flex;
    /* gap: 40px; */
    align-items: center;
    justify-content: space-evenly;
}

.work_card{
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: url("../assets/images/cursor_action.png"), auto;
}

.work_card>img{
    max-width: 220px;
}

.work_card:hover{
    transition: 800ms;
    transform: scale(1.1);
}


.work_card>*{
    cursor: url("../assets/images/cursor_action.svg"), auto;
}



.work_mobile{
    margin: auto;
    width: 85%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.mb_work_content{
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    gap: 80px;
}

.mb_work_card{
    display: flex;
    flex-direction: column;
    width: 100%;
}

.mb_work_card>a>img{
    max-width: 100%;
}

.mb_work_card>h1{
    font-family: "Lato", sans-serif;
    font-weight: 300;
    font-size: 24px;
}




@media screen and (max-width: 991px) {
    .work{
        flex-direction: column;
        align-items: center;
        min-height: 100% !important;
    }

    .work_content{
        flex-direction: column;
        align-items: center;
    }

    .work_card:hover{
        transform: none;
    }
}