* {
    padding: 0px;
    margin: 0px;
    border-radius: 0px;
  }
  
  body {
    overflow-x: hidden;
  }
  
  .strong {
    font-weight: bold;
  }
  
  #topbar {
    width: 100%;
    /*min-height: 50px;*/
    z-index: 999;
    overflow: visible;
  }
  
  @media (min-width: 300px) {
    .top-logo {
      width: 50% !important;
      height: auto;
    }
  }
  
  @media (min-width: 768px) {
    .top-logo {
      width: 35% !important;
      height: auto;
    }
  }
  
  @media (min-width: 992px) {
    .top-logo {
      width: 25% !important;
      height: auto;
    }
  }
  
  #logo-container {
    z-index: 9999;
    /*position: absolute;*/
    /*height: 50px;*/
    /*overflow: visible;*/
  }
  
  @media (min-width: 768px) {
    .navbar {
      padding-bottom: 0px;
      padding-top: 0px;
      margin-bottom: 5px;
      margin-top: 5px;
    }
  }
  
  @media (min-width: 992px) {
    .navbar {
      padding-bottom: 0px;
      padding-top: 0px;
      margin-bottom: 0px;
      margin-top: 0px;
    }
  }
  
  .navbar-nav {
    /*display: flex;*/
    /*flex: 1;*/
    min-width: 0;
    /*width: 50px;*/
    /*align-items: center;*/
  }
  
  @media (min-width: 300px) {
    .nav-fill .nav-item, .nav-fill > .nav-link {
      text-align: left;
    }
  }
  
  @media (min-width: 576px) {
    .nav-fill .nav-item {
      flex: 1 0 25%;
      text-align: center;
      /*border: 1px solid red;*/
    }
  }
  
  .nav-item .nav-link {
    height: 48px;
    margin-top: 0.8rem;
  }
  
  @media all and (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
      /*display: block;*/
      opacity: 0;
      visibility: hidden;
      transition: .3s;
      margin-top: 0;
    }
  }
  
  @media all and (min-width: 992px) {
    .navbar .nav-item:hover .nav-link {
      color: #000000;
    }
  }
  
  @media all and (min-width: 992px) {
    .navbar .dropdown-menu.fade-down {
      top: 80%;
      transform: rotateX(-75deg);
      transform-origin: 0% 0%;
    }
  }
  
  @media all and (min-width: 992px) {
    .navbar .dropdown-menu.fade-up {
      top: 180%;
    }
  }
  
  @media all and (min-width: 992px) {
    .navbar .nav-item:hover .dropdown-menu {
      transition: .3s;
      opacity: 1;
      visibility: visible;
      top: 100%;
      transform: rotateX(0deg);
    }
  }
  
  #main-content {
    min-height: 500px;
  }
  
  @media all and (min-width: 300px) {
    .section-bstripbg {
      background-image: url('../../assets/img/blue-strip-sm.svg');
      background-position: right;
      background-repeat: no-repeat;
      background-size: calc(20%);
    }
  }
  
  @media all and (min-width: 768px) {
    .section-bstripbg {
      background-image: url('../../assets/img/blue-strip.svg');
      background-position: right;
      background-repeat: no-repeat;
      background-size: calc(66%);
    }
  }
  
  .parallex {
    position: relative;
    background-image: url('../img/industry-bg2.jpg');
    min-height: 600px;
    background-size: cover;
    background-position: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .parallex .container {
    color: #fff;
    z-index: 1;
    text-align: center;
  }
  
  .parallex.bg-dim:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: rgba(0,0,0,0.8);
  }
  
  .parallex {
    background-attachment: fixed;
    background-position: 50% 0;
  }
  
  .feature-img {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
  }
  
  .overlay {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: 0.5s ease;
    background-color: #000000;
  }
  
  .feature-img:hover img {
    filter: blur(5px);
  }
  
  .feature-img:hover .overlay {
    opacity: 0.7;
  }
  
  .overlay-caption {
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -70%);
    transform: translate(-50%, -50%);
  }
  
  .strip {
    height: 10px;
    width: 100%;
  }
  
  #footer {
    color: #090909;
  }
  
  #footer a {
    color: #090909;
  }
  
  .footer-content {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  
  .social-links {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .social-links li {
    display: inline-block;
    margin-right: 10px;
  }

  .social-links li a {
    color: #090909;
  }

  #copyright a {
    color: #F0F0F0;
  }
  
  .page-banner {
    width: 100%;
    background-image: url(../img/industry-bg.jpg);
    background-size: cover;
    background-position: center;
    height: 240px;
    display: flex;
  }
 
.page-banner h2 a {
    color: #0093AA;
}

.description {
    width: 100%;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    line-clamp: 5;
    overflow: hidden;
}

.text-justify {
    text-align: justify !important;
}

ol li {
    padding-left: 1em;
}

#topBtn {
    display: none;
    background-color: #0093AA;
    color: #ffffff;
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 99;
}

.product-box {
  min-height:480px;
}

.product-img {
height:auto;
}

.product-name {
  min-height:60px !important;
}

.product-tag {
min-height:75px !important;
}

.product-detail-link {
min-height:30px !important;
}

#loader {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  background: rgb(25,31,38,0.9) url(../img/loader.gif) no-repeat center center;
  z-index: 10000;
}

.kf-btn {
  background-color:0093AA;
  color:#ffffff;
}

.kf-btn:hover{
  background-color:darkgrey;
  color:#909090;
  transform: all 0.5s linear;
}

.btn:hover {
  background-color: #909090;
  color: black;
}