.skills-wrapper {
  width: 100%;
  margin: 120px auto 0;
  background-color: #23242d;
  padding: 80px 0 40px;
}

.skills-title {
  text-align: center;
  margin: 0 0 40px;
  font-size: 22px;
  color: white;
}

.skills-scroll-container {
  position: relative;
  display: flex;
  align-items: center;
}

.skills-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  background-color: rgba(40, 41, 50, 0.85);
  color: #d8d8d8;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 28px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  transition:
    background-color 0.2s,
    opacity 0.2s;
  opacity: 0.7;
}
.skills-arrow:hover {
  background-color: rgba(60, 61, 75, 0.95);
  opacity: 1;
}
.skills-arrow.hidden {
  opacity: 0;
  pointer-events: none;
}
.skills-arrow-left {
  left: 8px;
}
.skills-arrow-right {
  right: 8px;
}

.skills {
  max-width: 100%;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  overflow-x: scroll;
  scrollbar-width: thin;
  scrollbar-color: #b8a9d9 #2d2e3a;

  gap: 20px;
  padding: 20px 60px 30px;
  box-sizing: border-box;
}
.skill {
  background-color: rgb(27, 27, 36);
  min-width: 100px;
  max-width: 100px;
  min-height: 175px;
  max-height: 175px;
  padding: 2%;
  border-radius: 20px;
  overflow: hidden;

  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 10px;
}

.title {
  font-size: 23px;
  color: #e0dfaa;
}
.paragraph {
  font-size: 16px;
  color: rgb(200, 209, 186);
  display: none;
}

.paragraph button {
  background: #292a36;
  border: 1px solid #4e4f5e;
}
.paragraph button:hover {
  background-color: #363745;
}
.circle {
  min-width: 70px;
  min-height: 70px;
  border-radius: 50%;
  background-color: transparent;

  display: flex;
  align-items: center;
  justify-content: center;
}
.icon {
  width: 52px;
  height: 52px;
  object-fit: contain;
}
.skill-circle-text {
  background-color: #3a3b4e;
  color: #e0dfaa;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.skills::-webkit-scrollbar {
  height: 30px;
}
.skills::-webkit-scrollbar-track {
  background: #2d2e3a;
  border-radius: 10px;
}
.skills::-webkit-scrollbar-thumb {
  background: #b8a9d9;
  border-radius: 10px;
}
.skills::-webkit-scrollbar-thumb:hover {
  background: #cbbfea;
}
