/*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) {
  
  /*body{
    background: purple;
  }*/


}

/* 
  ##Device = Tablets, Ipads (landscape)
  ##Screen = B/w 768px to 1024px
*/

@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
  
 /*body{
    background: blue;
  }*/

  
}

/* 
  ##Device = Low Resolution Tablets, Mobiles (Landscape)
  ##Screen = B/w 481px to 767px
*/

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

    .navbar-toggler{
        background-color: #ff6666;
    }

   .navbar-toggler-icon {
    display: block;
    width: 1.5em;
    height: 4px;
    vertical-align: middle;
    content: "";
    background: no-repeat center center;
    background-size: 100% 100%;
    background: #fff;
    margin: 3px 0px;
}

.top_bar.hidde-xs {
    display: none;
}

.header-sec .navBar a.nav-link {
    color: #000;
    text-transform: uppercase;
    font-size: 0.9em;
    padding: 0.3em 0.5em;
    border-bottom: 1px solid #3333;
}

.slider-caption{
    padding: 3em 0em;
}

.slider-caption h1 {
    font-size: 1.7em;
    color: #143c6f;
    padding-bottom: 0.3em;
    font-weight: 600;
}

.slider-caption .caption-detail p {
    color: #000;
    padding-bottom: 1em;
    font-size: 1.1em;
    position: relative;
    padding-left: 0;
    padding-top: 1.5em;
}

.trustinfo img {
    width: auto;
    display: block;
    margin: auto;
}
.trustinfo ul {
    text-align: center;
    padding: 10px 0px;
    margin-bottom: 0;
}
  

.maincontent {
    width: 100%;
    padding: 0;
    padding-top: 5em;
}

.besassignment .offset-3 {
    margin-left: 0;
}


.colapse_data .btn-link {
    color: #0a3d79;
    font-size: 19px;
    font-weight: 600;
    display: block;
    width: 100%;
    text-align: left;
    text-decoration: none;
    padding-right: 2em;
}

.breadcrumb {
    width: 100%;
    padding: 46px 0;
    background: #002e34;
}

}


/* 
  ##Device = Most of the Smartphones Mobiles (Portrait)
  ##Screen = B/w 320px to 479px
*/

@media (min-width: 320px) and (max-width: 480px) {
    
  .navbar-toggler{
        background-color: #ff6666;
    }
  
  .navbar-toggler-icon {
    display: block;
    width: 1.5em;
    height: 4px;
    vertical-align: middle;
    content: "";
    background: no-repeat center center;
    background-size: 100% 100%;
    background: #fff;
    margin: 3px 0px;
}

.top_bar.hidde-xs {
    display: none;
}

.header-sec .navBar a.nav-link {
    color: #000;
    text-transform: uppercase;
    font-size: 0.9em;
    padding: 0.3em 0.5em;
    border-bottom: 1px solid #3333;
}

.slider-caption{
    padding: 3em 0em;
}

.slider-caption h1 {
    font-size: 1.7em;
    color: #143c6f;
    padding-bottom: 0.3em;
    font-weight: 600;
}

.slider-caption .caption-detail p {
    color: #000;
    padding-bottom: 1em;
    font-size: 1.1em;
    position: relative;
    padding-left: 0;
    padding-top: 1.5em;
}

.trustinfo img {
    width: auto;
    display: block;
    margin: auto;
}
.trustinfo ul {
    text-align: center;
    padding: 10px 0px;
    margin-bottom: 0;
}

.maincontent {
    width: 100%;
    padding: 0;
    padding-top: 5em;
}

.besassignment .offset-3 {
    margin-left: 0;
}

.colapse_data .btn-link {
    color: #0a3d79;
    font-size: 19px;
    font-weight: 600;
    display: block;
    width: 100%;
    text-align: left;
    text-decoration: none;
    padding-right: 2em;
}


.breadcrumb {
    width: 100%;
    padding: 46px 0;
    background: #002e34;
}

}
