.project-slider-wrapper{
  display: flex;
  flex-direction: column;
}
.project-slick-slider{width: 100%;}
.project{
  width: 100%;
  min-height: 75vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 2.4rem;
  font-weight: 600;
  color:white;
  background-position: center;
  background-size: cover;
  position: relative;
}

.project-title{
  top: 50%;
  left: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
  line-height: 1;
  gap: 20px;
  display: flex;
  flex-direction: column;
}

.project:hover .project-name{
  transition: all .5s;
}


.center-flex-content{
  position: relative;
  min-height: 75vh;
  height: 75vh;
}
.project:hover  .center-flex-content{
    background: #00000080;
    width: 100%;
    height: 100%;
    align-items: center;
    display: flex;
    justify-content: center;
    flex-direction: column;
    transition: all .5s;
    
}
.project-label{
  position: absolute;
  bottom:35px;
  right: 50px;
  background-color: #00000080;
  padding: 10px;
  font-size: 1.4rem;
}

.slick-next {
    right: 25px;
}

.slick-prev {
    left: 15px;
    z-index: 1000;
}

.slick-prev:before, .slick-next:before {
    font-size: 35px;
}

.slick-prev:hover::before,
.slick-next:hover::before,
.slick-prev:focus::before,
.slick-next:focus::before {
	opacity:1;
	color: #bfa36c;
	transition: all 0.2s ease;
}


@media (min-width: 768px) {
  .project-slider-wrapper{
    flex-direction: row;
    justify-content: space-around;
  }
  .project-slick-slider{width: 49%;}
  .project {
    width: 49%;
    min-height: 75vh;
  }
  .center-flex-content{
    min-height: 75vh;
  }
 
}