

/*<!--For X-small device-->*/

@media (max-width: 767px) {
    .display-2{
        font-size: 31px !important;
    }
    .name{
        font-size: 38px;
    }
    .hi-text{
        font-size: 20px !important;
    }
    .section-title span{
        display: none;
    }
    #about-type{
        font-size: 20px !important;
    }
    #type-skill{
        font-size: 16px !important;
    }
}


/*<!--For small device-->*/

@media only screen and (min-width:768px) and (max-width: 991px) {
    .display-2{
        font-size: 32px !important;
    }
    .name{
        font-size: 38px;
    }
    .hi-text{
        font-size: 20px !important;
    }
    #about-type{
        font-size: 20px !important;
    }
    #type-skill{
        font-size: 18px !important;
    }
}


/*<!--For medium device-->*/

@media only screen and (min-width:992px) and (max-width: 1199px) {
    #about img{
        filter: grayscale(100);
        transition: ease-in-out 0.5s;
    }
    #about img:hover{
        filter: grayscale(00);
    }
}



/*<!--For Large device-->*/

@media (min-width:1200px) {
    #about img{
        filter: grayscale(100);
        transition: ease-in-out 0.5s;
    }
    #about img:hover{
        filter: grayscale(0);
    }
}