.tr {
  transition: all linear 0.3s;
}
.btncs-block {
  display: inline-block;
  border: 1px solid #b62062;
  background: #b62062;
  color: white;
  text-transform: capitalize;
  border-radius: 25px;
  height: 50px;
  width: 138px;
  line-height: 50px;
  text-align: center;
  font-size: 18px;
}
.btncs-block:hover {
  text-decoration: none;
  background: transparent;
  color: #ffffff;
}
.btncs-outline {
  display: inline-block;
  border: 1px solid #b62062;
  background: transparent;
  color: #ffffff;
  text-transform: capitalize;
  border-radius: 25px;
  height: 50px;
  width: 138px;
  line-height: 50px;
  text-align: center;
  font-size: 18px;
}
.btncs-outline:hover {
  text-decoration: none;
  background: #b62062;
  color: #ffffff;
}
#network {
  background: #f5f5f5;
}
#network .controls ul {
  display: inline-block;
  background: #e6e6e6;
}
#network .controls ul li {
  float: left;
  padding: 5px 10px;
  text-transform: capitalize;
  padding: 10px 20px;
  cursor: pointer;
  font-weight: 600;
  border-right: 1px solid rgba(128, 128, 128, 0.109);
}
#network .controls ul .active {
  background: white;
  position: relative;
}
#network .controls ul .active::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 3px;
  background: #b62062;
  top: 0;
  left: 0;
}
#network .filtr-item .img {
  margin-bottom: 5px;
  overflow: hidden;
  position: relative;
}
#network .filtr-item .img .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  left: 0;
  top: 0;
  opacity: 0;
  visibility: hidden;
  transition: all linear 0.3s;
}
#network .filtr-item .img .overlay h5 {
  color: white;
  font-size: 20px;
  font-weight: bold;
  display: inline-block;
  height: 50px;
  width: 50px;
  line-height: 50px;
  text-align: center;
  /* border: 1px solid #b62062; */
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#network .filtr-item .img:hover .overlay {
  visibility: visible;
  opacity: 1;
}
