#categoryBtns {
  margin: 0 auto 25px;
  padding: 15px 20px;
  display: table;
  background-color: var(--bclr3);
  border-radius: 30px
}

#categoryBtns > .btn {
  margin-right: 5px;
  background-color: var(--bclr3);
  color: #DEDEDE!important;
  transition: all 200ms ease;
  font-size: 14px
}
#categoryBtns > .btn:last-child {
  margin-right: 0
}
#categoryBtns > .btn:hover {
  color: var(--wclr)!important
}
#categoryBtns > .btn.selected {
  background-color: var(--wclr);
  color: var(--bclr3)!important
}

.workList {
  width: 100%;
  flex-direction: column
}

.workPanel {
  padding: 25px 25px 54px;
  width: calc(100% - 50px);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--bclr2);
  min-height: 265px;
  align-items: center;
  max-width: 1800px;
  transition: all 300ms ease;
  margin-bottom: 35px;
  position: relative;
  flex-direction: column-reverse;
  animation-duration: .8s!important
}
.workPanel:hover {
  box-shadow: var(--shadow);
  transform: scale(1.005)
}

.workPanel:last-child {
  margin-bottom: 0
}

.workPanel > .contentFlex {
  width: 100%;
  max-width: 1100px;
  flex-direction: column-reverse
}

.workDes {
  text-align: left
}
.workDes > h3 {
  line-height: 23px;
  margin: 18px 0 12px
}
.workDes > p {
  margin: 0;
  letter-spacing: .5px
}

.workPanel > .contentFlex > img {
  width: 100%;
	max-width: 460px;
  height: 264px;
  object-fit: cover
}

.workType {
  position: absolute;
  bottom: 15px;
  left: 25px
}
.workType > span {
  transition: all 200ms ease;
  text-transform: capitalize;
  cursor: pointer
}
.workType > span:hover {
  color: var(--wclr)
}

.workBtn {
  margin: 15px 10px 0 0;
  font-size: 13px
}

@media screen and (min-width: 850px) {
  section {
    margin-top: 250px
  }
  #categoryBtns > .btn {
    font-size: initial
  }
  .workList {
    margin-top: 25px
  }
  .workPanel {
    padding: 50px 25px
  }
  .workPanel > .contentFlex {
    flex-direction: row
  }
  .workPanel > .contentFlex > img {
    width: auto
  }
  .workDes {
    min-height: 200px;
    max-width: 400px
  }
  .workDes > h3 {
    margin: 0 0 10px
  }
}