button {
  border: none;
  cursor: pointer;
  color: rgb(188, 36, 36);
  background: none;
  transition: all 0.3s ease-in-out;
}

.scrollInvisible::-webkit-scrollbar {
  background: black;
}

.scrollInvisible::-webkit-scrollbar-thumb {
  background: rgb(48, 48, 48);
  border-radius: 10px;
}

.scrollInvisible::-webkit-scrollbar-thumb:hover {
  background: rgb(53, 53, 53);
}

.container {
  width: 100%;
  height: 450px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgb(0, 0, 0);
}

.carousel-view {
    width: 100%;
  background-color: black;
  display: flex;
  justify-content: center;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 44px 0;
  transition: all 0.25s ease-in;
  padding-bottom: 0px;
}

.carousel-view .item-list {
  padding: 50px 10px;
  display: flex;
  gap: 10px;
  scroll-behavior: smooth;
  transition: all 0.25s ease-in;
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
  overflow: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 0px;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.item-list::-webkit-scrollbar {
  display: none;
}

.prev-btn {
  background: none;
  cursor: pointer;
}

.next-btn {
  cursor: pointer;
}

.item {
  scroll-snap-align: center;
  min-width: 120px;
  height: 120px;
  background-color: deeppink;
  border-radius: 8px;
}

#li {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}

.height {
  height: 360px;
}

.width {
  width: 260px;
  min-width: 260px;
  max-width: 260px;
}

#li-images-list {
  display: flex;
  width: 100%;
  height: 400px;
  position: relative;
  justify-content: center;
}

.li-image {
  position: relative;
  margin: 10px;
  margin-top: 0;
}

.li-image-header-section {
  width: 100%;
  height: 50px;
  background-color: black;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.li-image-header {
  position: relative;
  vertical-align: middle;
  font-size: 20px;
  color: #e6e6e6;
  font-weight: 600;
  font-family: "Saira Extra Condensed", sans-serif;
}

.li-image-section {
  width: 100%;
  position: relative;
}

.li-image-img {
  width: 100%;
  position: relative;
}

.li-image-overlay {
  display: none;
  background-color: rgba(8, 104, 106, 1);
  width: 100%;
  position: absolute;
  top: 0;
  justify-content: center;
}

.li-image-overlay p {
  position: relative;
  text-align: center;
  font-size: 14px;
  color: #e6e6e6;
  font-family: "Saira Extra Condensed", sans-serif;
  font-weight: 500;
  letter-spacing: 2;
  margin-top: 2vh;
  overflow: hidden;

  width: 90%;
}

.li-image:hover .li-image-overlay {
  display: flex;
}

.li-image:hover .li-image-header-section {
  background-color: #058f92;
}

@media (max-width: 550px) {
  .height {
    height: 360px;
  }

  .width {
    width: 260px;
    min-width: 260px;
    max-width: 260px;
  }

  .li-image {
    position: relative;
    margin: 1vh;
  }

  #li-images-list {
    height: 310px;
  }

  .li-image-overlay p {
  }
}

#li-nav {
  width: fit-content;
  height: 3vh;
  display: flex;
  justify-content: right;
  align-items: center;
  background-color: black;
  margin-top: 3vh;
  position: relative;
}

#li-nav-dots {
  position: relative;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

#li-nav-dots img {
  margin-left: 10px;
  height: 30%;
}

#li-nav-arrow {
  position: relative;
  height: 100%;
}

#li-nav-arrow img {
  position: relative;
  width: 3vh;
  height: 3vh;
}
