.slideshow-container {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.mySlides {
  display: flex;
  transition: transform 0.5s ease-in-out;
  column-gap: 1rem;
  margin-block: 1rem;
  /* margin-inline-start: -1rem; */
}

.projects {
  display: flex;
  justify-content: center;
  margin-inline: auto;
  margin-block-start: 5%;
  flex-direction: column;
  position: relative;
}

.project-title {
  color: var(--colors-nav-active-color);
  font-family: poppins-Black;
  font-size: clamp(30px, 2.08333333vw, 40px);
  margin-block-end: 4%;
  display: flex;
  margin-inline: auto;
}

.project-body {
  /* width: 90%; */
  width: 95%;
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  height: auto;
}

.project-card {
  display: flex;
  flex-direction: column;
  min-width: 30%;
  width: 300px;
  margin: 0 auto;
  box-sizing: border-box;
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.5s ease, box-shadow 0.3s ease;
  z-index: 9999;
  box-shadow: 3px 2px 17px rgb(22 125 156 / 20%);
  padding-block-end: 2rem;
  /* border: 1px solid #ddd; */
}

.PC-content {
  display: flex;
  flex-direction: column;
  /* align-items: center; */
  /* padding: 20px; */
  row-gap: 2rem;
}

.PCC-title {
  color: #333;
  font-family: 'poppins-Black', sans-serif;
  font-size: clamp(12px, 1.0416666666vw, 20px);
  /* font-size: clamp(30px, 2.08333333vw, 40px); */
  margin-bottom: 10px;
  text-align: center;
}

.PCC-text {
  color: #666;
  font-family: 'poppins-Regular', sans-serif;
  font-size: clamp(12px, 1.0416666666vw, 20px);
  padding-inline: 20px;
}

.PCC-btn {
  background-color: #3498db;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  font-family: 'poppins-Regular', sans-serif;
  font-size: clamp(12px, 1.0416666666vw, 20px);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.PCC-btn:hover {
  background-color: #2980b9;
}

.PC-content img {
  width: 100%;
  height: 220px;
  border-radius: 12px;
}

.navigation-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 28px;
  cursor: pointer;
  background: none;
  border: none;
  outline: none;
  z-index: 99999;
  transition: all 0.2s ease;
}

.next:hover,.prev:hover{
  font-size: 30px;
  color: #2980b9;
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}

.projects-mobile {
  display: none;
}

@media screen and (max-width: 700px) {
  .mySlides{
    column-gap:0 !important;
    flex-direction: row;
  }
  .project-card {
    min-width: 100%;
}
}