/* ----------------------------------------------------------------------------- */
/* shadows
-------------------------------------------------------------------------------- */
.shadow{
    /* Create smoother box-shadows by layering multiple shadows with gradually increasing radius and offset */
        box-shadow: 0 -1px 1px rgba(66,81,92,0.12), 
                    0 2px 2px rgba(66,81,92,0.12), 
                    0 4px 4px rgba(66,81,92,0.12), 
                    0 8px 8px rgba(66,81,92,0.12),
                    0 16px 16px rgba(66,81,92,0.12);
    }
    .title-shadow{
        margin-top:50px;
        margin-bottom:30px;
        margin-right:auto;
        margin-left:auto;
        text-align:center;

        display:inline-block;
    }
    .title-shadow img{
        width:80%;
        height:auto;
    }