/* Custom CSS for the scrollable menu */
.submenu-products {
  max-height: 500px;
  overflow-y: scroll;
  overflow-x: hidden;
}

/* header custom css */
.top-bar .container h2 {
  font-size: 16px;
  color: #fff;
}

/* more-products section */
.more-products .container .row .thumbnail {
  border: 4px solid red;
  border-radius: 14px;
  height: 350px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
}
.more-products .container .row .thumbnail:hover {
  box-shadow: 0 -5px 10px black;
  transition: .3s ease-out;
}
.more-products .container .row .thumbnail .btn:hover{
    background: red;
    color: white;
    transition: .3s ease-out;
}
.more-products .container .row .thumbnail .caption h4{
  font-weight: 700;
}
.more-products .container .row .thumbnail .caption a{
  font-weight: 700;
}