
/** {*/
/*  padding: 10px;*/
/*  margin: 0;*/
/*}*/
.img-container_slider {
  width: 100vw;
  height: 55vh;
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.img-container_slider img {
  width: 600px;
  height: 400px;
  background-color: #87A0E2;
  border-radius: 16px;
  position: absolute;
  user-select: none;
  transition-property: transform, opacity, zIndex ;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
}

.arrows {
  width: 900px;
  height: auto;
  display: flex;
  justify-content: space-between;
  z-index: 100;
}
.arrows svg {
  width: 60px;
  height: 60px;
  position: relative;
  fill: rgba(98, 112, 204, 0.98);
  opacity: 0.8;
  cursor: pointer;
}

.arrows svg:active {
  transform: scale(0.9);
  opacity: 1;
  transition-property: transform, opacity;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
}
@media (max-width: 768px) {
  .img-container_slider {
    width: 100%; /* Use 100% instead of 100vw */
    /*padding: 10px 5px; !* Add some padding for mobile *!*/
    margin: 0 40px 20px 5px;

  }

  .img-container_slider img {
    width: 100%; /* Scale image to fit container width */
    height: auto; /* Maintain aspect ratio */
    /*position: relative; !* Remove absolute positioning for mobile *!*/
  }

  .arrows {
    width: 100%;
    padding: 0 5px;
  }

  body {
    overflow-x: hidden; /* Prevent horizontal scrolling */
  }
}


/*================================================*/
/*famous gallery*/
#slideshow {
    /*margin: 50px auto;*/
    position: relative;
    width: 200px;
    height: 200px;
    padding: 10px;

}

#slideshow > div {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
}

.image {
  opacity: 1;
  display: block;
  width: 100%;
  height: auto;
  transition: opacity 1s ease;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 150px;
  max-height: 150px;
  object-fit: cover;
  border-radius: 50%;
}
 .celebrity_name{
     position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 5px 10px;
  border-radius: 12px;
  font-size: 0.9em;
  font-weight: bold;
  white-space: nowrap;
 }
/* end famous gallery*/

/*=============================*/
.description_desert {
   background-color: rgba(255, 255, 255, 0.228);
    border-radius: 10px;
    /*border: 1px solid rgb(255, 255, 255);*/
    backdrop-filter: blur(2px);
    padding: 10px;
    text-align: justify;
    direction: rtl;
}

@media screen and (max-width: 992px) {
    .description_desert {
    font-size: 13px;
        padding: 1rem;
}
}
.carousel-image {
  height: 600px;
  object-fit: cover; /* Ensure the image covers the fixed area */
}