/*
---------------------------------------------
Products Page
---------------------------------------------
*/
.page-heading {
  margin-top: 80px;
  background-image: url("../images/Group28@1x.png");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
.page-heading .inner-content {
  text-align: left;
  padding-top: 150px;
}
.page-heading .inner-content h2 {
  font-size: 32px;
  color: #fff;
  font-weight: 600;
  margin-bottom: 30px;
}
.nav-content {
  text-align: center;
  background-color: rgba(75,122,192,0.098);
}
.nav-content .container .row {
  align-items: center;
}
.nav-content .container .row .main-nav .nav {
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: 100%;
  height: 100%;
}
.nav-content .container .row .main-nav .nav li {
  width: 160px;
  height: 100%;
}
.nav-content .container .row .main-nav .nav li a {
  color: #4b7ac0;
  font-size: 14px;
  display: block;
  display: block;
  font-weight: 600;
  text-transform: capitalize;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  height: 50px;
  line-height: 50px;
  border: transparent;
  letter-spacing: 1px;
}
.nav-content .container .row .main-nav .nav .submenu {
  position: relative;
  padding-right: 19px;
  width: 230px;
}
.nav-content .container .row .main-nav .nav .submenu ul {
  position: absolute;
  width: 184px;
  box-shadow: 0 2px 28px 0 rgba(0,0,0,0.06);
  overflow: hidden;
/*top: 50px;*/
  /*opacity: 0;*/
/*transform: translateY(+2em);*/
  /*visibility: hidden;*/
  z-index: 2;
  transition: all 0.3s ease-in-out 0s, visibility 0s linear 0.3s, z-index 0s linear 0.01s;
}
.nav-content .container .row .main-nav .nav .submenu ul li {
  margin-left: 0px;
  padding-left: 0px;
  padding-right: 0px;
}
.nav-content .container .row .main-nav .nav .submenu ul li a {
  opacity: 1;
  display: block;
  background: #fff;
  color: #4b7ac0 !important;
/*padding-left: 20px;*/
  height: 50px;
  line-height: 50px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  position: relative;
  font-size: 13px;
  font-weight: 400;
  border-bottom: 1px solid #eee;
}
.nav-content .container .row .main-nav .nav .submenu ul li a:hover {
  background: #4b7ac0;
  color: #fff !important;
  padding-left: 10px;
  font-size: 15px;
}
.nav-content .container .row .main-nav .nav .submenu ul li a:hover:before {
  width: 3px;
}
.nav-content .container .row .main-nav .nav .submenu:after {
  font-family: FontAwesome;
  content: "\f107";
  font-size: 12px;
  color: #2a2a2a;
  position: absolute;
  right: 18px;
  top: 15px;
}
.nav-content .container .row .main-nav .nav .submenu:hover ul {
  visibility: visible;
  opacity: 1;
  z-index: 1;
  transform: translateY(0%);
  transition-delay: 0s, 0s, 0.3s;
}
.nav-content .container .row .main-nav .nav .active {
  color: #fff;
  background-color: #4b7ac0;
}
.nav-content .container .row .main-nav .nav .active a {
  color: #fff;
}
.nav-content .container .row .main-nav .nav .active:after {
  color: #fff;
}
#products .item {
  margin-bottom: 30px;
  cursor: pointer;
}
#products .item .thumb img {
  width: 100%;
  height:250px;
  overflow: hidden;
}
#products .item .down-content {
  padding-top: 20px;
  position: relative;
  z-index: 3;
  background-color: #fff;
}
#products .item .down-content h4 {
  font-size: 16px;
  color: #4b7ac0;
  font-weight: 600;
  margin-bottom: 8px;
}
#products .item .down-content span {
  font-size: 14px;
  color: #686868;
  font-weight: 500;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
