#my-project-sectn{
  padding: 5% 0 10% 0;
  overflow: auto;
  background-color: #04091e;
}

#project-sectn-head{
  color: white;
  font-size: calc(15px + 1.3vw);
  text-align: center;
  padding: 5% 0 5% 0;
}

.slide-container{
  width: 50%;
  position: relative;
  margin: auto;
}

.slides{
  display: none;
}

.prev, .next{
  cursor: pointer;
  position: absolute;
  top: 30%;
  width: auto;
  padding: 10px;
  color: black;
  background-color: white;
  font-weight: bold;
  font-size: calc(10px + 1vw);
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  margin-left: -20%;
  box-shadow: 0 4px 8px 2px rgba(255, 255, 255, 0.2);
  z-index: 5;
}

.next{
  right: 0;
  border-radius: 3px 0 0 3px;
  margin-right: -20%;
}

.prev:hover, .next:hover{
  background-color: rgba(255, 255, 255, 0.5);
}

.project-item{
  text-decoration: none;
}

.project-item img{
  width: 50vw;
  height: 50vh;
  box-shadow: 0 4px 8px 4px rgba(255, 255, 255, 0.2);
  z-index: 5;
}

.project-item div{
  color: #fff;
  font-size: calc(5px + 1vw);
  padding: 10% 12px;
  bottom: 8px;
  text-align: center;
}

.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}
}

@media screen and (max-width: 750px){
  .prev{
    margin-left: -30%;
    top: 40%;
  }
  .next{
    margin-right: -30%;
    top: 40%;
  }
  .project-item img{
    height: 30vh;
  }
}