.clock {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 8px 10px 20px;
    background: url(../images/clock/clockface2.png);
    list-style: none;
    display:inline-block;
    }

.sec, .min, .hour {
    position: absolute;
    width: 4px;
    height: 80px;
    top: 0px;
    left: 38px;
    }

.sec {
    background: url(../images/clock/sechand1.png);
    z-index: 3;
    }

.min {
    background: url(../images/clock/minhand1.png);
    z-index: 2;
    }

.hour {
    background: url(../images/clock/hourhand1.png);
    z-index: 1;
    }
.clock span {
    display:block;
    width:100%;
    text-align:center;
    position:absolute;
    bottom:-22px;
    font-size:12px;
}

.clock-wrap {
    display:inline-block;
}




@media (max-width:330px) {
    
    .clock-wrap {
        width:100%;
        text-align:center;
        margin:8px 0;
    }
    
}