.albumsSlideShow__Slides {
    display: none;
    cursor: pointer;
}
.section__albumsSlideShow{
    border-bottom: 0!important;
}
.albumsSlideShow__image {
    display: flex;
    min-height: 500px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-end;
    align-content: center;
    align-items: center;
    text-decoration: none;
}

.albumsSlideShow__container {
    max-width: 1000px;
    position: relative;
    margin: 0;
    width: 100%;
}

.albumsSlideShow__title {
    color: var(--white);
    font-size: large;
    padding: 5px 10px;
    bottom: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    background: var(--albums-title);
    width: -webkit-fill-available;
    text-shadow: 1px 1px var(--black);
}
.albumsSlideShow__desc {
    background: var(--albums-desc);
    color: var(--white);
    width: -webkit-fill-available;
    padding: 5px 10px;
    text-shadow: 1px 1px var(--black);
}



.albumsSlideShow__fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

@media only screen and (max-width: 300px) {
  .albumsSlideShow__text {font-size: 11px}
}

.section__albumsSlideShow > p > a.section__button-link{
  margin: 5px;
  background: transparent;
  color: var(--default);
  font-size: large;
  font-weight: 400;
}

.section__albumsSlideShow > p > a.section__button-link:hover{
  color: var(--Mustard);
  background: transparent;
  box-shadow: 0 0px 0px 0 transparent;
}


/*  
/////////////////////////////////////////////////////////    
///////////////////gallerySlideShow//////////////////////    
/////////////////////////////////////////////////////////    
*/

.gallerySlideShow__container {
  position: relative;
}

.gallerySlideShow__Slides {
  position: relative;
  transition: .25s;
  min-height: 450px;
  aspect-ratio: 16/9;
}

.gallerySlideShow__Slides-hidden{
  display: none;
  transition: .5s;
}

.gallerySlideShow__Slides-visible{
  display: block;
  background-position: left;
  background-repeat: no-repeat;
  background-size: cover;
  transition: .5s;
  min-height: 450px;
  aspect-ratio: 16/9;
  width: 100%;
}

.gallerySlideShow__cursor {
  cursor: pointer;
}

.gallerySlideShow__prev,
.gallerySlideShow__next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 10px 25px 10px 25px;
  color: var(--white);
  font-weight: bold;
  font-size: 2rem;
  border-radius: 0 3px 3px 0;
  user-select: none;
  -webkit-user-select: none;
  background-color: var(--albums-bg);
}

.gallerySlideShow__next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.gallerySlideShow__prev:hover,
.gallerySlideShow__next:hover {
  background-color: var(--main);
}

.gallerySlideShow__caption-container {
    text-align: center;
    background-color: var(--albums-bg);
    padding: 3px;
    position: absolute;
    top: 0px;
    width: -webkit-fill-available;
    max-height: 4rem;
    text-overflow: ellipsis;
    overflow: hidden;
}
.gallerySlideShow__caption-container > p{
  margin: 0;
  color: var(--light);
  font-weight: 300;
  text-shadow: 1px 1px var(--black);
}

.gallerySlideShow__row {
  display: none!important;
  justify-content: center;
  margin: 0;
  flex-wrap: wrap;
  position: relative;
  top: 0;
  background: var(--section-footer-bg);
  padding: 6px 0px 0px 0px;

}

.gallerySlideShow__column {
  width: 13%;
  height: auto;
  margin: 5px;
  position: relative;
}

.gallerySlideShow__demo {
  width: 100%;
  opacity: 0.5;
  transition: .25s;
  cursor: pointer;
}

.gallerySlideShow__active,
.gallerySlideShow__demo:hover {
  opacity: 1;
  transition: .25s;
}

.gallerySlideShow__image{
  width: 100%;
  max-height: 500px;
  cursor: pointer;
  opacity: 0;
  transition: .25s;
}