/* 
  ##Device = Desktops
  ##Screen = 1281px to higher resolution desktops
*/
@media (min-width: 1281px) {
  /* CSS */
}
/* 
    ##Device = Laptops, Desktops
    ##Screen = B/w 1025px to 1280px
  */
@media (min-width: 1025px) and (max-width: 1280px) {
  /* CSS */
}
/* 
    ##Device = Tablets, Ipads (portrait)
    ##Screen = B/w 768px to 1024px
  */
@media (min-width: 768px) and (max-width: 1024px) {
  /* CSS */
}
/* 
    ##Device = Tablets, Ipads (landscape)
    ##Screen = B/w 768px to 1024px
  */
@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
  /* CSS */
}
/* 
    ##Device = Low Resolution Tablets, Mobiles (Landscape)
    ##Screen = B/w 481px to 767px
  */
@media (min-width: 481px) and (max-width: 767px) {
  /* CSS */
}
/* 
    ##Device = Most of the Smartphones Mobiles (Portrait)
    ##Screen = B/w 320px to 479px
  */
@media (min-width: 320px) and (max-width: 480px) {
  .inner-minus-sec {
    padding: 15px;
    margin-top: -190px;
    background-color: #ffffff;
    padding-top: 80px;
  }
  h1 {
    font-size: 24px;
    line-height: 26px;
  }
  .brd-left {
    display: none;
  }
  .inner-subhd {
    font-size: 18px;
    line-height: 24px;
    font-weight: 500;
  }
  .inner-banner-bg {
    margin-top: 0px;
  }
  .navbar-nav.inner-nav .nav-item {
    padding: 0px;
  }
  .navbar-nav.inner-nav .nav-item a {
    position: relative;
  }
  .navbar-nav.inner-nav .nav-item a.nav-link {
    color: #27354c;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    padding: 10px 0px;
  }
  .navbar-nav.inner-nav .nav-item a.nav-link.active::before {
    content: "";
    background-color: #4fb5be !important;
    height: 3px;
    position: absolute;
    width: 100%;
    transition: 0.3s ease all;
  }
  .navbar-nav.inner-nav .nav-item a::before {
    content: "";
    background-color: #4fb5be;
    height: 3px;
    position: absolute;
    width: 0%;
    transition: 0.3s ease all;
    left: 0px;
    bottom: 3px;
  }
  .navbar-nav.inner-nav .nav-item a:hover::before {
    content: "";
    background-color: #4fb5be;
    height: 3px;
    position: absolute;
    width: 100%;
    transition: 0.3s ease all;
  }
  .navbar-nav.inner-nav .nav-item a.active::before {
    content: "";
    background-color: #4fb5be;
    height: 3px;
    position: absolute;
    width: 100%;
    transition: 0.3s ease all;
  }
  .navbar-toggler {
    position: absolute;
    top: 30px;
    right: 0px;
  }
  .megamenu-cnt {
    background-color: #f2f2f2;
    padding: 25px 10px;
    border-radius: 15px;
    overflow: scroll;
    height: 315px;
  }
  .navbar-toggler:focus {
    text-decoration: none;
    outline: 0;
    box-shadow: none !important;
  }
  .navbar-brand {
    padding: 10px 0px 0px 0px;
    margin: 0px;
  }
  .inner-banner-bg {
    height: auto;
  }
  .btn {
    border-radius: 5px;
    background-color: #27354c;
    color: #fff;
    text-transform: uppercase;
    font-weight: 500;
    display: inline-block;
    padding: 13px 15px;
    font-size: 13px;
  }
  .btn:hover {
    background-color: #4fb5be;
    color: #fff;
  }
  .btn-inverse {
    display: inline-block;
    border-radius: 5px;
    background-color: #4fb5be;
    color: #fff;
    text-transform: uppercase;
    font-weight: 500;
    padding: 14px 15px;
    font-size: 13px;
  }
  .btn-inverse:hover {
    background-color: #27354c;
    color: #fff;
  }
  section {
    padding: 60px 0px;
  }
  footer {
    color: #dfdfdf;
    background: url(../images/footer-bg.jpg) center center no-repeat;
    background-attachment: fixed;
    background-size: cover;
    font-size: 14px;
  }
  footer p {
    font-size: 14px;
  }
  footer a {
    text-decoration: none;
    color: #dfdfdf;
  }
  footer a:hover {
    color: #fff;
  }
  footer h4 {
    color: #fff;
    text-transform: uppercase;
    margin: 0px;
    padding: 0px;
    margin-bottom: 15px;
    font-size: 18px;
  }
  footer ul {
    margin: 0px;
    padding: 0px;
    list-style: none;
    margin-bottom: 30px;
  }
  footer ul li {
    margin: 0px;
    padding: 0px;
    list-style: none;
    margin-bottom: 5px;
  }
  footer ul li a {
    text-decoration: none;
    color: #dfdfdf;
    font-size: 14px;
  }
  footer ul li a:hover {
    color: #fff;
    transition: 0.3s ease all;
  }
}
