/*
d8888b. d88888b  d888b   d888b  db    db      d8888b. db       .d88b.   .d88b.  .88b  d88. d88888b d8888b. 
88  `8D 88'     88' Y8b 88' Y8b `8b  d8'      88  `8D 88      .8P  Y8. .8P  Y8. 88'YbdP`88 88'     88  `8D 
88oodD' 88ooooo 88      88       `8bd8'       88oooY' 88      88    88 88    88 88  88  88 88ooooo 88oobY' 
88~~~   88~~~~~ 88  ooo 88  ooo    88         88~~~b. 88      88    88 88    88 88  88  88 88~~~~~ 88`8b   
88      88.     88. ~8~ 88. ~8~    88         88   8D 88booo. `8b  d8' `8b  d8' 88  88  88 88.     88 `88. 
88      Y88888P  Y888P   Y888P     YP         Y8888P' Y88888P  `Y88P'   `Y88P'  YP  YP  YP Y88888P 88   YD 
 */
    
/* Portfolio Isotope Transitions */ 

    .isotope, .isotope .isotope-item {
        -webkit-transition-duration: 0.8s;
        -moz-transition-duration: 0.8s;
        -ms-transition-duration: 0.8s;
        -o-transition-duration: 0.8s;
        transition-duration: 0.8s;
    }
    
    .isotope {
        -webkit-transition-property: height, width;
        -moz-transition-property: height, width;
        -ms-transition-property: height, width;
        -o-transition-property: height, width;
        transition-property: height, width;
    }
    
    .isotope .isotope-item {
        -webkit-transition-property: -webkit-transform, opacity;
        -moz-transition-property: -moz-transform, opacity;
        -ms-transition-property: -ms-transform, opacity;
        -o-transition-property: -o-transform, opacity;
        transition-property: transform, opacity;
    }
    
    .isotope.no-transition, .isotope.no-transition .isotope-item, .isotope .isotope-item.no-transition {
        -webkit-transition-duration: 0s;
        -moz-transition-duration: 0s;
        -ms-transition-duration: 0s;
        -o-transition-duration: 0s;
        transition-duration: 0s;
    }

