/*==========  Mobile First Method  ==========*/

    /* Custom, iPhone Retina */ 
    @media only screen and (min-width : 320px) {
        
    }

    /* Extra Small Devices, Phones */ 
    @media only screen and (min-width : 480px) {

    }

    /* Small Devices, Tablets */
    @media only screen and (min-width : 768px) {

    }

    /* Medium Devices, Desktops */
    @media only screen and (min-width : 992px) {

    }

    /* Large Devices, Wide Screens */
    @media only screen and (min-width : 1200px) {

    }



    /*==========  Non-Mobile First Method  ==========*/

    /* Large Devices, Wide Screens */
    @media only screen and (max-width : 1200px) {
        
    }
    
    @media only screen and (min-width:1200px) {

    }

    /* Medium Devices, Desktops */
    @media only screen and (max-width : 992px) {	
   		header { 
   			line-height: 60px; 
   			height:120px;
		}
		header.sticky {
			height: 150px; 
		}
    	header #phone {
    		text-align: right;
    	}
    	header nav li {
			margin: 0px 10px
        }
        header nav ul { 
        	text-align: center;
        }
        header nav li a {
        	line-height: 20px;
        	font-size: 16px;
        }
        #intro {
        	margin-top: 150px;
        }
    }

    /* Small Devices, Tablets */
    @media only screen and (max-width : 768px) {
    	header nav li { 
			margin: 0px 5px
        }
    	header nav li a {
        	line-height: 20px;
        	font-size: 14px;
        }
        #rekviziti .download {
			margin: 0 0 40px 0;
		}
		footer, footer .email {
			text-align: center!important;
		}
    }

    /* Extra Small Devices, Phones */ 
    @media only screen and (max-width : 480px) {
    	header nav li a {
        	font-size: 14px;
        }
        
    }    

    /* Custom, iPhone Retina */ 
    @media only screen and (max-width : 320px) {
        
    }


