/*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) {
  
  .navbar-toggle {
    background-color: #d6432f;
    margin: 2.7em 1em;
}
  
  .navbar-toggle .icon-bar {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 1px;
    background: #fff;
}

.itemslider .item{
    height:320px;
}
.itemslider .item img{
    height:100%;
    object-fit:cover;
    object-position: center;
}

.caption_title {
    width: 100%;
    text-align: left;
    max-width: 100%;
    margin: 0 auto;
    position: absolute;
    top: 10%;
    left: 0;
    padding: 0px 18px;
}

.caption_title h1 {
    color: #fff;
    text-transform: uppercase;
    font-size: 25px;
    font-weight: 600;
    line-height: inherit;
}

.tab_url ul li {
    display: grid;
    float: initial;
    width: 100%;
}

.tab_url ul li a {
    display: block;
    padding: 18px 69.9px;
    font-size: 17px;
    color: #000;
    float: initial;
    border: none;
    border-radius: 0;
    text-align: center;
}

.nav_sec ul {
    padding: 0;
}

}




/* 
  ##Device = Most of the Smartphones Mobiles (Portrait)
  ##Screen = B/w 320px to 479px
*/

@media (min-width: 320px) and (max-width: 480px) {
    
.navbar-toggle {
    background-color: #d6432f;
    margin: 2.7em 1em;
}

.navbar-toggle .icon-bar {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 1px;
    background: #fff;
}

.itemslider .item{
    height:320px;
}
.itemslider .item img{
    height:100%;
    object-fit:cover;
    object-position: center;
}

.caption_title {
    width: 100%;
    text-align: left;
    max-width: 100%;
    margin: 0 auto;
    position: absolute;
    top: 10%;
    left: 0;
    padding: 0px 18px;
}

.caption_title h1 {
    color: #fff;
    text-transform: uppercase;
    font-size: 25px;
    font-weight: 600;
    line-height: inherit;
}

.tab_url ul li {
    display: grid;
    float: initial;
    width: 100%;
}

.tab_url ul li a {
    display: block;
    padding: 18px 69.9px;
    font-size: 17px;
    color: #000;
    float: initial;
    border: none;
    border-radius: 0;
    text-align: center;
}

.nav_sec ul {
    padding: 0;
}

}
