*{
  margin: 0;
  padding: 0;
}



.slider-container{
  width: 100%;
  background-color: rgb(200, 255, 0);
  min-height: 450px;
  /* margin-top: 100px; */
  padding-top: 35px;
  padding-bottom: 50px;
  overflow: hidden;
}

.slide-container{
  padding-left: 30px;
  padding-right: 30px;
}

.card{
  /* width: 300px; */
  border-radius: 15px;
  position: relative;
}

.card .image-box{
  height: 450px;
}

.card .image-box img{
  width: 100%;
  height: 100%;
  border-radius: 15px;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
}

.card:hover .image-box img {
  transform: scale(1.1);
}
.card:hover .chabnelebistvis{
  transform: scale(1.1);
  background-color: hsla(0, 0%, 0%, 0.85);
  opacity: 1;
}

.card:hover .card-satauri,
.card:hover .card-ganmarteba,
.card:hover .card-gilaki {
  opacity: 1;
}

.chabnelebistvis{
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 15px;
  /* width: 300px; */
  width: 100%;
  height: 450px;
  opacity: 0;
  background-color: hsla(0, 0%, 0%, 0);
  transition: all 0.3s ease-in-out;
}

.card .card-satauri{
  position: absolute;
  top: 5%;
  right: 50%;
  transform: translateX(50%);
  font-size: 20px;
  line-height: 22px;
  text-align: center;
  min-width: 190px;
  max-width: 220px;
  font-weight: 700;
  color: rgb(255, 187, 0);
  opacity: 0;
  transition: 0.3s all ease-in-out;
}

.card .card-ganmarteba{
  bottom: 35%;
  right: 50%;
  justify-content: center;
  transform: translateX(50%);
  position: absolute;
  font-size: 16px;
  max-height: 130px;
  min-width: 190px;
  max-width: 220px;
  text-align: center;
  font-weight: 500;
  color: white;
  opacity: 0;
  transition: 0.3s all ease-in-out;
}

.card .card-gilaki{
  padding-top: 10px;
  padding-bottom: 10px;
  min-width: 120px;
  position: absolute;
  text-align: center;
  background-color: #FF5901;
  color: #ffffff;
  outline: none;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  bottom: 5%;
  right: 50%;
  transform: translateX(50%);
  opacity: 0;
  transition: 0.3s all ease-in-out;
}

.swiper-navBtn{
  color: white;
  width: 40px;
  height: 40px;
  background-color: #FF5901;
  border-radius: 8px;
}

.swiper-navBtn::before,
.swiper-navBtn::after{
  font-size: 35px;
}

.swiper-pagination-bullet{
  background-color: #FF5901;
}

@media (max-width: 768px) {
  .swiper-navBtn{
    display: none;
  }
  
}