shorting-menu {
  display: inline-block;
  -webkit-box-shadow: 0 0 30px 0 rgba(67, 67, 67, 0.15);
          box-shadow: 0 0 30px 0 rgba(67, 67, 67, 0.15);
  padding: 18px 20px;
  border-radius: 50px;
}

.shorting-menu .filter {
  border: none;
  background: #f4f4f4;
  padding: 9px 24px;
  text-transform: capitalize;
  font-size: 16px;
  cursor: pointer;
  -webkit-transition: .4s;
  transition: .4s;
  border-radius: 30px;
  color: #000000;
}

.shorting-menu .filter.mixitup-control-active, .shorting-menu .filter:hover {
  background: #003d98;
  color: #ffffff;
}

.shorting {
  margin-top: 40px;
}

.single-work {
  overflow: hidden;
  position: relative;
  padding: 5px;
}

.single-work img {
  width: 100%;
}

.single-work::before {
  content: '';
  position: absolute;
  top: 15px;
  width: 95%;
  height: 93%;
  background: #000000;
  left: 14px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: .4s;
  transition: .4s;
}

.single-work:hover::before {
  top: 21px;
  width: 93%;
  height: 91%;
  left: 21px;
  opacity: .66;
  visibility: visible;
}

.single-work .work-content {
  position: absolute;
  bottom: 20px;
  width: 86%;
  background: #ffffff;
  left: 40px;
  text-align: center;
  padding-top: 20px;
  padding-bottom: 20px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: .4s;
  transition: .4s;
}

.single-work .work-content h4 {
  font-size: 22px;
  margin-bottom: 10px;
}

.single-work .work-content ul li {
  display: inline-block;
  font-size: 14px;
}

.single-work:hover .work-content {
  bottom: 35px;
  opacity: 1;
  visibility: visible;
}

.single-work .popup-btn {
  position: absolute;
  top: 20px;
  right: 40px;
  width: 45px;
  text-align: center;
  height: 45px;
  line-height: 46px;
  border-radius: 50%;
  color: #ffffff;
  font-size: 22px;
  opacity: 0;
  visibility: hidden;
  border: 1px solid #ffffff;
  -webkit-transition: .4s;
  transition: .4s;
}

.single-work .popup-btn:hover {
  background: #003d98;
  border-color: #003d98;
}

.single-work:hover .popup-btn {
  top: 36px;
  opacity: 1;
  visibility: visible;
}

/*