/* Medium Devices, Desktops */
@media only screen and (max-width : 1024px) {    
    /*HREO AREA */
    #home{
        max-height: 660px;
        background-position: 50% 10px;
    }    
    
    /* FEATURED CLIENTS SECTION*/
    #clients img{height: 50px;}
}

/* Small Devices, Tablets */
@media only screen and (max-width : 980px) {
    
    /*HREO AREA */
    #home{
        height: 540px;
        background-position: 50% 10px;
    }
    
    /*ABOUT SECTION*/
    #about{padding-top: 40px;}
    
    /* FEATURED CLIENTS SECTION*/
    #clients {text-align: center;}
    #clients img{height: 40px;}
    #clients ul{float: none;}
    #clients h4 {display: none;}
    
    /* collection SECTION */
    #shotsByPlayerId li{width: 47%;}
    #shotsByPlayerId li:first-child{width: 97%;}
    
    .aboutImage{text-align: center;}

    /*COLLUPSABLE NAVIGATION MENU*/
    .navbar-header {float: none;}
    .navbar-left,.navbar-right {float: none !important;}
    .navbar-toggle {display: block;}
    .navbar-collapse.collapse {display: none!important;}
	.navbar-nav>li {
        float: none;
        padding-left: 30px;
        overflow: hidden;
    }
    .collapse.in{display:block !important;}
}


/* Mobile Devices */
@media only screen and (max-width : 640px) {
    
    h2{font-size: 2.5em;}
    h3{font-size: 2em}
    h4{font-size: 1.4em;}

    .aboutImage{display: none;}

    /*home area*/
    #home{
        height: 400px;
        background-position: 50% 30px;
    }    
    .homecontent{padding-top: 30px;}
    
    /*About section*/
    #about{text-align: center;}
    
    /*collection*/
    #shotsByPlayerId li {width: 96%;}
    
    /*Footer*/
    .footerlinks li{display: none;}       
}

/* Smaller Mobile Devices */
@media only screen and (max-width : 480px) {
    #home{height: 320px;}    
    #clients {display: none;}
    .footersocial li{font-size: 1.5em}
}

/* Smallest Mobile Devices */
@media only screen and (max-width : 320px) {
    #home{height: 480px;}
    .homecontent{padding-top: 100px; padding-bottom: 30px;}

}


