::-webkit-scrollbar {
  width: 5px;
  height: 5px;
  background-color: rgba(211, 211, 211, 1);
}

::-webkit-scrollbar-track {
  box-shadow: inset 0 0 0px rgba(211, 211, 211, 0.3);
  border-radius: 10px;
  background-color: rgba(211, 211, 211, 1);
}

::-webkit-scrollbar-thumb {
  border-radius: 10px;
  box-shadow: inset 0 0 0px rgba(0, 64, 125, 0.3);
  background-color: rgba(0, 0, 0, 0.3);
}

.imgs-hover {
  transition: all 0.3s ease 0.1s;
  cursor: pointer;
}

.imgs-hover:hover {
  transform: scale(1.05);
}

.view-more {
  width: 200px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  border-radius: 6px;
  border: 1px solid #333333;
  margin: 0 auto;
  margin-top: 40px;

  font-size: 16px;
  font-weight: bold;
  color: #333333;
  cursor: pointer;
}

.view-more:hover {
  border: 1px solid #FE7106;
  color: #FE7106;
}