/*
[Table of contents]

1. @media only screen and (min-width:0\0)
   - IE

2. @media only screen and (-webkit-min-device-pixel-ratio:0)
   - Chrome/Safari

3. @media only screen and (min-width: 1780px) and (max-width: 1980px)
   - Larger Screens

4. @media only screen and (min-width: 1500px) and (max-width: 1600px)
   - Larger Screens

5. @media only screen and (max-width : 1280px)
   - Macbook and other devices

6. @media only screen and (max-width : 1024px)
   - iPad devices Landscape

7. @media only screen and (max-width : 991px)
   - Tabs and Tablets Landscape

8. @media only screen and (max-width : 800px)
   - iPad Potrait and other devices

9. @media only screen and (max-width : 767px)
   - iPhone 6Plus/Nexus 6 Landscape

10. @media only screen and (max-width : 680px)
   - iPhone 6 Landscape

11. @media only screen and (max-width : 480px)
   - iPhone 4 Landscape and iPhone 6/6Plus Potrait

12. @media only screen and (max-width : 380px)
   - iPhone 6/6Plus Potrait/Nexus 5/Samsung Galaxy Potrait

*/

/* M E D I A   Q U E R I E S */


@media only screen and (min-width:0\0) {

}

@media only screen and (-webkit-min-device-pixel-ratio:0) {}

@media only screen and (min-width: 1200px) and (max-width: 1300px){
    .container {
        width: 1180px;
    }  
}

@media only screen and (max-width: 1024px){
        
}

@media only screen and (max-width: 991px){
  
}

@media only screen and (max-width: 800px){

} 

@media only screen and (max-width: 360px){
    .btn {
        min-width: 250px;
        width: 100%;
    }
}