.project-section {
  padding: 4rem 2rem;
  padding-top: 6rem;
  border-radius: 75px 75px 0 0;
  width: 100%;
  background-color: #252525;
}
.ps-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.caraousel {
}
.slider-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(255, 255, 255, 0.2);
}

.slider {
  display: flex;
  width: 100%;
  transition: transform 1s ease-in-out;
}

.slide {
  width: 100%;
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: scale(0.8);
  transition: transform 0.5s ease-in-out;
}

.slide img {
  width: 100%;
  height: 85vh;
  border-radius: 10px;
  transition: transform 0.5s ease-in-out;
  object-fit: cover;
}

.active {
  transform: scale(1);
}

.prev,
.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 10;
}

.prev {
  left: 10px;
}
.next {
  right: 10px;
}

/* .caraousel.next .arrows button,
.caraousel.prev .arrows button{
 pointer-events: none;
} */

@media (max-width: 1024px) {
  .caraousel {
    height: 85vh;
  }
  /* .thumbnail .item {
 height: 180px;
 width: 125px;
 flex-shrink: 0;
} */
}

@media (max-width: 900px) {
  /* .thumbnail {
  bottom: 14px;
 } */
  /* .thumbnail .item {
  height: 150px;
  width: 105px;
} */
  .caraousel {
    height: 75vh;
  }
}

@media (max-width: 765px) {
  .caraousel {
    height: 65vh;
  }
  .slide img {
    height: 65vh;
  }
}

@media (max-width: 600px) {
  .slide img {
    height: 53vh;
  }
}

@media (max-width: 500px) {
  .ps-link {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 2rem;
  }
}
