/*media query */





/* 

  ##Device = Desktops

  ##Screen = 1281px to higher resolution desktops

*/



@media (min-width: 1281px) {

  

  /*body{

    background: pink;

  }*/

  

}



/* 

  ##Device = Laptops, Desktops

  ##Screen = B/w 1025px to 1280px

*/



@media (min-width: 1025px) and (max-width: 1280px) {

  

  /*body{

    background: yellow;

  }*/

  

}



/* 

  ##Device = Tablets, Ipads (portrait)

  ##Screen = B/w 1024px to 1366px

*/



@media (min-width: 1024px) and (max-width: 1366px) {

  

  /*body{

    background: orange;

  }*/







  

}



/* 

  ##Device = Tablets, Ipads (portrait)

  ##Screen = B/w 768px to 1024px

*/



@media (min-width: 768px) and (max-width: 1024px) {

  



}



/* 

  ##Device = Tablets, Ipads (landscape)

  ##Screen = B/w 768px to 1024px

*/



@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {

  

  

}



/* 

  ##Device = Low Resolution Tablets, Mobiles (Landscape)

  ##Screen = B/w 481px to 767px

*/



@media (min-width: 481px) and (max-width: 767px) {



.caption_header h1 {

    font-size: 2.3em;

    color: #fff;

    font-weight: 600;

}



.itemacademic {

    padding: 22px 0px;

    text-align: center;

}



.breadcrumb_bg h3 {

    padding-top: 0em;

    color: #fff;

    font-size: 35px;

}

.breadcrumb_bg {

    background: #ea222c;

    padding: 4em 0;

    padding-top: inherit;

}

.essayitem ul li {
    display: inline-block;
    color: #fff;
    padding: 23px 14px;
}

.footerinfo {
    display: none;
}

.footer_sec ul.social {
    margin-bottom: 20px;
}

  

}









/* 

  ##Device = Most of the Smartphones Mobiles (Portrait)

  ##Screen = B/w 320px to 479px

*/



@media (min-width: 320px) and (max-width: 480px) {

    .footerinfo {
    display: none;
}

.footer_sec ul.social {
    margin-bottom: 20px;
}

.caption_header h1 {

    font-size: 2.3em;

    color: #fff;

    font-weight: 600;

}

.itemacademic {

    padding: 22px 0px;

    text-align: center;

}



.breadcrumb_bg h3 {

    padding-top: 2em;

    color: #fff;

    font-size: 35px;

}



.breadcrumb_bg {

    background: #ea222c;

    padding: 4em 0;

    padding-top: inherit;

}

.essayitem ul li {
    display: inline-block;
    color: #fff;
    padding: 23px 14px;
}



}

