.mySlides {
    width: 100%;
    height: 90vh;
    overflow: hidden;
    position: relative;
    margin-bottom: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
img {vertical-align: middle; height: 90vh; object-fit: cover; }

/* Slideshow container */
.slideshow-container {
    max-width: 100%;
    height: 90vh;
    position: relative;
    margin: auto;
    overflow:hidden ;
  }
  
/* Style for the slide content (text) */
.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff; /* Adjust text color as needed */
}

/* Rest of your existing styles... */

  
  /* Next & previous buttons */
  .prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
  }
  
  /* Position the "next button" to the right */
  .next {
    right: 0;
    border-radius: 3px 0 0 3px;
  }
  
  /* On hover, add a black background color with a little bit see-through */
  .prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.8);
  }
  

  /* The dots/bullets/indicators */
  .dots{
    position: absolute;
    top: 95%;
}
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: rgb(255, 255, 255);
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #717171;
}
.slide-h1{
    text-transform: capitalize;
    color: var(--White, #FFF);
    text-align: center;
    font-family: Cairo;
    font-size: 56px;
    font-style: normal;
    font-weight: 400;
}
.slide-p{
    position: relative;
    font-family: Cairo;
}

.slide-button{
    text-transform: capitalize;
    color: black;
    font-family: Cairo;
    width: 150px;
    height: 50px;
    border:none;
    border:solid 2px rgb(255, 255, 255);
    border-radius: 5px;
    background: white;
    margin-top:50px;

}
.slide-button:hover{
    background:rgb(255, 255, 255);
    color:rgb(0, 0, 0); 
}


.parent-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.dots {
  text-align: center;
}