@charset "UTF-8";
/* CSS Document */
/* Tom Hunter Photography © */


/* Slideshow */

@keyframes fader { from { opacity: 1.0; } to { opacity: 0.0; } }

.fading-slideshow { position: relative; margin: 0px; padding: 0; list-style-type: none; }

.fading-slideshow > li { position: absolute; left: 0; top: 0; width: 100%; height: 100%; overflow: hidden; background-color: #888; display: flex; justify-content: center; align-items: center; } /* current slide */

.fading-slideshow > li:first-of-type { animation-name: fader; animation-delay: 1.6s; animation-duration: 2.5s; z-index: 20; } /* next slide to display */

.fading-slideshow > li:nth-of-type(2) { z-index: 10; }


/* all other slides */

/*
.fading-slideshow > li:nth-of-type(n+3) { display: none; }
*/


/* Slideshow 2 */

.fading-slideshow2 { position: relative; margin: 0px; padding: 0; list-style-type: none;}

.fading-slideshow2 > li { position: absolute; left: 0; top: 0; width: 100%; height: 100%; overflow: hidden; background-color: #888; display: flex; justify-content: center; align-items: center; } /* current slide */

.fading-slideshow2 > li:first-of-type { animation-name: fader; animation-delay: 1.8s; animation-duration: 2.5s; z-index: 20; } /* next slide to display */

.fading-slideshow2 > li:nth-of-type(2) { z-index: 10; }


/* all other slides */

/*
  .fading-slideshow2 > li:nth-of-type(n+3) {
    display: none;
  }
*/




/* Slideshow 3 */

.fading-slideshow3 { position: relative; margin: 0px; padding: 0; list-style-type: none;}

.fading-slideshow3 > li { position: absolute; left: 0; top: 0; width: 100%; height: 100%; overflow: hidden; background-color: #888; display: flex; justify-content: center; align-items: center; } /* current slide */

.fading-slideshow3 > li:first-of-type { animation-name: fader; animation-delay: 2.0s; animation-duration: 2.5s; z-index: 20; } /* next slide to display */

.fading-slideshow3 > li:nth-of-type(2) { z-index: 10; }


/* all other slides */

/*
  .fading-slideshow2 > li:nth-of-type(n+3) {
    display: none;
  }
*/