/* width: 100%;
max-width: calc(100vw - 100px); */
/* .slider {
  width: 1900px;
  max-width: 100%;
  padding-top: 100px;
  height: 700px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  transition: all 1s ease;
} */

/* .slider .list {
  position: absolute;
  width: max-content;
  height: 100%;
  left: 0;
  top: 0;
  display: flex;
  transition: all 1s ease;
} */

/* width: 1900px;
  max-width: 100vw; */
/* object-fit: cover; */
/* .slider .list img {
  height: 100%;
  width: calc(100vw - 100px);
  object-fit: contain;
} */

/* .overlay-image {
  position: absolute;
  width: 60%;
  height: 60%;
  top: 0;
  top: 20%;
  left: 20%;
  object-fit: cover;
  z-index: 2;
} */

/* .slider .buttons {
  position: absolute;
  top: 45%;
  left: 5%;
  width: 90%;
  display: flex;
  justify-content: space-between;
  z-index: 999;
}

.slider .buttons button {
  width: 60px;
  height: 60px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.3);
  color: #fff;
  border: 1.5px solid #fff;
  font-family: monospace;
  font-size: 27px;
}

.slider .dots {
  position: absolute;
  bottom: 10px;
  left: 0;
  color: #fff;
  width: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  z-index: 999;
}

.slider .dots li {
  background-color: #e6e6e6;
  list-style: none;
  width: 10px;
  height: 10px;
  margin: 10px;
  -webkit-border-radius: 20px;
  border-radius: 20px;
  transition: 0.5s;
  cursor: pointer;
}

.slider .dots li.active {
  width: 50px;
  background-color: #ca1d1d;
} */

/* NEW ONE */
.slider {
  height: 650px;
  width: 100vw;
  max-width: 100vw;
  position: relative;
  margin: auto;
  overflow: hidden;
  z-index: 0;
}

.slider-images {
  display: flex;
  transition: transform 0.5s ease;
  height: 100%;
}

.slide {
  position: relative;
  min-width: 100%;
  box-sizing: border-box;
  height: 100%;
}

.image-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.original-image,
.blurred-image {
  position: absolute;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.original-image {
  z-index: 2;
  width: auto;
  height: 100%;
}

.smaller .original-image {
  height: 100%;
}

.blurred-image {
  z-index: 1;
  filter: blur(30px);
  transform: scale(1.5);
}

.smaller .blurred-image {
  transform: scale(1.5);
}

button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  font-size: 18px;
  z-index: 5;
}

.prev {
  left: 30px;
  border-radius: 50px;
  font-size: 40px;
  height: 80px;
  width: 80px;
}

.next {
  right: 30px;
  border-radius: 50px;
  font-size: 40px;
  height: 80px;
  width: 80px;
}

.slider .dots {
  position: absolute;
  bottom: 20px;
  left: 0;
  color: #fff;
  width: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  z-index: 5;
}

.slider .dots li {
  background-color: #f8f8f8;
  list-style: none;
  width: 15px;
  height: 15px;
  margin: 10px;
  -webkit-border-radius: 20px;
  border-radius: 20px;
  transition: 0.5s;
  cursor: pointer;
}

.slider .dots li.active {
  width: 50px;
  background-color: #ca1d1d;
}

@media screen and (max-width: 1440px) {
  .slider {
    height: 1000px;
  }
}

@media screen and (max-width: 1024px) {
  .slider {
    height: 800px;
  }
}

@media screen and (max-width: 912px) {
  .slider {
    height: 700px;
  }
}

@media screen and (max-width: 768px) {
  .slider .list {
    transition: all 0.8s ease;
  }
}

@media screen and (max-width: 672px) {
  .slider {
    height: 400px;
  }

  .slider .list {
    transition: all 0.7s ease;
  }

  .slider .buttons button {
    height: 50px;
    width: 50px;
    font-size: 20px;
  }
}

@media screen and (max-width: 512px) {
  .slider {
    height: 300px;
  }

  .slider .list {
    transition: all 0.5s ease;
  }

  .slider .buttons button {
    font-size: 18px;
  }

  .slider .dots li {
    width: 10px;
    height: 10px;
  }
}

@media screen and (max-width: 448px) {
  .slider .buttons button {
    height: 40px;
    width: 40px;
  }

  .slider .buttons button {
    font-size: 16px;
  }
}
