
section.proj {
  height: 75vh;
  width: 100%;
  position: relative;
}
section.proj > .title {
  color: #333333;
}

section.proj > .container {
  position: relative;
  margin: 0 8%;
  padding: 2.5% 0;
  display: flex;
  gap: 10%;
  height: calc(100% - 92px);
  overflow-x: hidden;
}

section.proj .next {
  position: absolute;
  top: 45%;
  height: 50px;
  width: 50px;
  cursor: pointer;
}

section.proj .next.right {
  right: 2%;
}
section.proj .next.left {
  display: none;
  left: 2%;
}

.project {
  display: flex;
  flex-shrink: 0;
  flex-direction: column;
  gap: 10px;
  padding: 10px;
  width: 25%;
}

.project > .image {
  width: 75%;
  display: flex;
  align-items: center;
  min-height: 150px;
  margin: 0 auto;
}

.image.na {
  width: 50%;
  margin: 0 auto;
}

.project > .image > img {
  width: 100%;
  max-height: 100%;
  border-radius: 8px;
}

.project > .title {
  padding: 0 10px;
  font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 700;
  font-size: 1.5em;
}

.project > .description {
  padding: 0 10px;
  font-family: Tahoma, sans-serif;
  font-size: 0.9em;
  text-indent: 20px;
  line-height: 25px;
  height: 55%;
  text-align: justify;
  overflow: auto;
}

/* width */
::-webkit-scrollbar {
  width: 8px;
  margin-left: 5px;
}

/* Track */
::-webkit-scrollbar-track {
  background: transparent; 
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: #444444; 
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555; 
}
