
.sliderr-container {
  position: relative;
  overflow: hidden;
  width: 100vw;
}

.sliderr {
  display: flex;
  transition: transform 1s ease; /* Geçiş efekti */
}

.slidee {
  min-width: 100vw;
  height: 400px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative; /* Başlıkları içeride hizala */
}

.sliderr .slidee-title {
  position: absolute;
  bottom: 10px;
  right: 10px;
  color: #C8102E;
  font-size: 24px;
  background: rgba(193, 193, 193, 0.5);
  padding: 10px 20px;
  border-radius: 5px;
  text-align: right;
  z-index: 2; /* Başlıkları öne taşı */
  opacity: 1; /* Görünür yap */
}

.dots {
  position: absolute;
  bottom: 20px;
  width: 100%;
  text-align: center;
}

.dots span {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 5px;
  background-color: #ccc;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s;
}

.dots .active {
  background-color: #333;
}


@media (max-width: 575px) {
  .sliderr-container{
    display: none;
  }
}