

.h1-slideshow {
color: white;
margin-left: 250px;
width: 100%;
}


.p-slideshow {
    font-size: 14px;
    color: white;
    font-weight: 400;
    margin-left: 300px;

    margin-top: -50px;
    text-align: justify;

}

.slideshow-buttons {
    display: flex;
    flex-direction: row;
    width: 100%;
   margin-bottom: 20px;
}
.slideshow-button {
    background-color: transparent;
    color: white; 
    padding: 10px 20px; 
    font-size: 16px; 
    border-radius: 5px; 
    cursor: pointer; 
    margin-left: 300px;
    border: 2px solid #3b84f2;
    margin-right: 10px;
    width: 150px;
    height: 40px;
}

.slideshow-button-alt {
    width: 150px;
    background-color: #3b84f2;
    color: white; 
    padding: 10px 20px; 
    font-size: 16px; 
    border-radius: 5px; 
    cursor: pointer; 
    border: none;
    height: 40px;

}

.slideshow-button:hover {

}


.slideshow-container {
    position: relative;
     width: 100%; /* Make the image fill the entire slide */
    height: auto;
}

.slide {
    position: relative;
    height: 100%;
    width: 100%;
    display: flex; /* Hide all slides initially */
    transition: opacity 0.5s ease; /* Smooth transition */
}


.slide.active {
    display: block; /* Show only the active slide */
    opacity: 1; /* Make it visible */
}



.slide img {
    width: 100%; /* Make the image fill the entire slide */
     height:100vh;
    z-index: -1; /* Send the image to the background */
    object-fit: cover; 
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0b2d5f56;
    z-index: 1;
}

.p-slideshow {
    font-size: 16px;
    text-align: justify; /* Center the text horizontally */
    max-width: 100%;
    margin-top: -50px;
}

.text-animation {
    position: absolute;
    top: 50%;
    margin-left: 30px;
    transform: translate(-50%, -50%);
    z-index: 2;
    color: white;
    font-size: 24px;
    font-weight: bold;
    text-align: justify;

}

.slide-img-mobile {display: block;}
.slide-img-desktop {display: none;}

/*Dots*/

.slideshow-dots {
    text-align: center;
    margin-left: 100px;
    
}

.dot {
    height: 10px;
    width: 10px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    margin: 0 5px;
}

#dot-active {
 background-color: white;
}

.h1-slideshow {

    max-width:300px

    }


@keyframes fadeInLetter {
    to {
      opacity: 1;
    }
  }

  @media screen and (min-width: 768px) {


        

    .slide img {
        height:700px; 
        max-width: 100vw 
    }

    .slideshow-container {
        position: relative;
         width: 100vw; 
         height:700px;
        margin-bottom: auto;
        
    }

    .h1-slideshow {
        font-size: 70px;
        width: 1000px;
        max-width:2000px;
    

        }
        .text-animation {
            position: absolute;
            top: 30%; /* Adjust this value to move the text higher */
            left: 20%; /* Adjust this value to center the text horizontally */
            transform: translateX(-50%);
            z-index: 2;
            color: white;
            font-size: 24px;
            text-align: justify;
            margin-left: 200px;
        }
        
        
        .p-slideshow {
            font-size: 20px;
            text-align: justify; /* Center the text horizontally */
            max-width: 100%;
            margin-top: -75px;
        }
        
        .slideshow-buttons {
            display: flex;
            flex-direction: row;
            justify-content:first baseline; /* Center the buttons horizontally */
            margin-top: 10px; /* Adjust the margin as needed */
        }
        

        .slide-img-mobile {display: none;}
        .slide-img-desktop {display: block;}

        .slideshow-dots {
            margin-left: -500px;
            justify-content: flex-start;
        }
}
