/* Media Queries
–––––––––––––––––––––––––––––––––––––––––––––––––– */
/*
Note: The best way to structure the use of media queries is to create the queries
near the relevant code. For example, if you wanted to change the styles for buttons
on small devices, paste the mobile query code up in the buttons section and style it
there.
*/



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

    .container, .kc-container {
        max-width: 1800px !important;
    }

}






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

    .container, .kc-container {
        max-width: 1600px !important;
    }

}


/* ======================================================================================================================== */
@media only screen and (max-width: 1680px){
  
    .container, .kc-container {
        max-width:1400px !important;
    }
  
}



/* ======================================================================================================================== */
@media only screen and (max-width: 1440px){
  
    .container, .kc-container {
        max-width:1200px !important;
    }

  
}


/* ======================================================================================================================== */
@media only screen and (max-width: 1366px){

    .container, .kc-container{
        max-width: 1170px !important;
    }    



}


/* ======================================================================================================================== */
/* Larger than Desktop HD */
@media (max-width: 1339px) {
    .container, .kc-container {
        max-width: 1000px !important;
    }
   
    
}
@media (max-width: 1280px) and (min-width: 1024px) {


}



/* ======================================================================================================================== */
/* Larger than desktop */
@media (max-width: 1024px) {

    .container, .kc-container {
        max-width: 900px !important;
    }
    html {
        overflow-x: hidden;
    }
    

  
}
/* ======================================================================================================================== */
@media screen and (max-width: 999px) {
    .container,.kc-container {
        max-width: 800px !important;
    }
    


}

/* ======================================================================================================================== */
/* Larger than tablet */
@media screen and (max-width: 768px) {
    .container, .kc-container {
        max-width: 668px !important;
    }
    


}
/* ======================================================================================================================== */
/* Larger than tablet */
@media screen and (max-width: 767px) {
    .container, .kc-container {
        max-width: 667px !important;
    }
   
    

}
/*iPhone 6Plus Landscape Mode*/
@media screen and (max-width: 736px) {
    .container, .kc-container {
        max-width: 636px !important;
    }
   
  
}


/*iPhone 6 Landscape Mode*/
@media screen and (max-width: 667px) {
    .container, .kc-container {
        max-width: 567px !important;
    }
    
  
}


/*Google Nexus and Other Large Smart Phones v1*/
@media screen and (max-width: 600px) {
    .container, .kc-container {
        max-width: 510px !important;
    }
    

}

/*iPhone Landscape Mode and Mediium Smart Phones*/
@media screen and (max-width: 480px) {
    .container, .kc-container {
        max-width: 410px !important;
    }
   
  
}

/*iPhone 6Plus Portrait Mode*/
@media screen and (max-width: 414px) {
    .container, .kc-container {
        max-width: 384px !important;
    }

  
}
/* ======================================================================================================================== */
/*iPhone 6 Portrait Mode*/
@media screen and (max-width: 375px) {
    .container, .kc-container {
        max-width: 335px !important;
    }
    
}

/* Microsoft Lumia 940 */
@media screen and (max-width: 360px) {
    .container, .kc-container {
        max-width: 330px !important;
    }
   
  
}

/*iPhone 5S, 5, 4S & 4 Portrait Mode and Very Small Mobile Phones*/
@media screen and (max-width: 320px) {
    .container, .kc-container {
        max-width: 290px !important;
    }
   
  
}

