

.slideshow-wrapper{
    margin:0;
    padding:0;
    font-size: 0;
    width: 100vw;
    height: 80vh;
    white-space: nowrap;
    overflow: hidden;
    position: relative;
    margin-top:8.5rem;
}

.slideshow-track{
    width: 100%;
    height: 100%;
    transition: transform 0.6s, opacity 0.6s;
}

.slideshow-image-wrapper{
    display: inline-block;
    position: relative;
    width: 100%;
    height: 100%;
}

.slideshow-image-wrapper img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.slideshow-image-overlay{
    position: absolute;
    width: 100%;
    height: 100%;
    top:0;
    left:0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slideshow-text-window{
    padding:1rem 1rem;
    background-color: rgba(0,0,0,0.6);
    color:white;
    font-size:20px;
    max-width: 60%;
}

.slideshow-text-window h3{
    margin:0;
    padding: 0;
    margin-bottom:3rem;
    font-size:42px;
    word-wrap: break-word;
    white-space: pre-wrap;
    word-break: break-word;
}

.slideshow-text-window-button{
    background-color:#6a4174;
    padding:1rem 2rem;
    display: block;
    width: fit-content;
    color: white;
}

#slideshow-left{
    position: absolute;
    top:0%;
    left:1%;
    height: 100%;
    z-index:200;
    color:white;
    font-size:30px;
    background:transparent;
    border:none;
    cursor: pointer;
    width:5%;
}

#slideshow-right{
    position: absolute;
    top:0%;
    right:1%;
    height: 100%;
    z-index:200;
    color:white;
    font-size:30px;
    background:transparent;
    border:none;
    cursor: pointer;
    width:5%;
}

#slideshow-left:hover{
    background-color: rgba(0,0,0,0.3);
}

#slideshow-right:hover{
    background-color: rgba(0,0,0,0.3);
}

.slideshow-skeleton{
    background-color: #f0f0f0;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
    display: inline-block;
}


.slideshow-skeleton::before {
    content: '';
    position: absolute;
    left: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #f0f0f0, #ccc, #f0f0f0);
    animation: loading 1s infinite;
}

.slideshow-graident-overlay{
    position: absolute;
    bottom:0;
    left:0;
    width: 100%;
    z-index:201;
    display: flex;
    justify-content: end;
    align-items: center;
    flex-direction: column;
}

.slideshow-graident-overlay img{
    width: 100%;
}

#slideshow-bullets{
    display: flex;
    align-items: center;
    gap:0.7rem;
    margin-bottom:-3rem;
    z-index:100;
}

.slideshow-bullet{
    background-color: #7aca7b;
    border-radius:50%;
    width:1.2rem;
    height: 1.2rem;
    border: 4px solid #7aca7b;
    cursor: pointer;
}

.slideshow-bullet-active{
    background: transparent;
}

  @keyframes loading {
    100% {
      left: 100%;
    }
  }


  @media screen and (max-width:1024px){
    
    .slideshow-wrapper{
        margin-top:2rem;
    }

    #slideshow-bullets{
        margin-bottom:0rem;
    }
  }

