/* Portfolio slideshow */

.slide-container,
.imgGrid-container{
  max-width: 1000px;
  position: relative;
  margin: auto;
}

.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -110px;
  padding: 100px 16px 100px 25px;
  color: #fff;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

.prev{
  padding: 100px 25px 100px 16px;
}

.next{
  right:0;
  border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover{
  background-color: rgba(0,0,0,0.65);
}

.dot{
  cursor: pointer;
  height: 8px;
  width: 8px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover{
  background-color: #333;
}

.fade{
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}


/* Filtering */



.btnFilter{
  padding: 0px 30px;
  color:rgba(99, 99, 99,0.60);
  border: none;
  background: none;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
}

.btnFilter:hover,
.btnFilter.activeFilter{
  color:rgb(99, 99, 99);
}

@media screen and (max-width: 980px){
  .btnFilter{
    padding: 0 15px;
  }
}

