.slideshow-container {
  position: relative;
  overflow: hidden;
}
.slide-wrapper {
    width: 100%;    
  display: none;
}


.slide-wrapper.active {
    width: 100%;    
  display: block;
}

.pic-wrapper{
    width: 100%;     
  aspect-ratio: 16 / 12!important;      
  overflow: hidden!important;  
}

.pic-wrapper a{
    width: 100%;     
  overflow: hidden!important;
  aspect-ratio: 16 / 12!important;      
}

.pic-wrapper a img{
    cursor: pointer;
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 100%;
    display: block;
    margin: auto ;   
}


.caption {
  width: 100%;
  padding: .3em 0 .3em 0;
  color: white;
  font-size: .9rem;
  line-height: 1.1em;
  text-align: center;
  box-sizing: border-box;
}


.nav-container {
  width: 100%;
  padding: 0 25%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin:0;
  position: static;
  transform: none;
}

.nav-container button{
     background-color: transparent!important;   
}

button.nav.next, button.nav.previous{
    background-color: transparent!important;
    border: none;
}

.nav {
  width: 50%;
  font-size: 1.2rem;
  background-color: transparent;
  background-image: none;
  border: none;
  cursor: pointer;
  text-align: center;
  transition: .5s;
}

.prev, .next{
   transition: .5s;   
    background-color: transparent;
  background-image: none;
  border: none;  
  font-weight:500;
}

.prev:hover{
    background-image: linear-gradient(270deg, #095263, transparent);
    font-weight: 900!important;   
}

.next:hover{
    background-image: linear-gradient(90deg, #095263, transparent);  
    font-weight: 900!important; 
    
}
























