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

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

  .fading-slideshow {
    position: relative;
    width: 100%;
    height: 700px;
    margin: 0em auto;
    padding: 0;
    list-style-type: none;
  }
  .fading-slideshow > li {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  /* current slide */

  .fading-slideshow > li:first-of-type {
    animation-name: fader;
    animation-delay: 1.5s;
    animation-duration: 1.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;
  }
*/


/* No Caption */




/* Image Fix */

.img, a img {
    border:none;
    outline:none;
    max-width: 100%;
    height: auto;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    float: none;
    margin-left: 0px;
    width: auto;
	}


#fading-slideshow a:link {
	color: #777;
	text-decoration: none;
}
#fading-slideshow a:visited {
	color: #777;
	text-decoration: none;
}
#fading-slideshow a:hover {
	text-decoration: none;
	color: #777;
}
#fading-slideshow a:active {
	color: #777;
	text-decoration: none;
}


/* Responsive Gallery Images */

@media (min-width: 1200px)  {
 
  .fading-slideshow {

      width: 100%;
      height: 550px;
 
  }  
    
}


@media (max-width: 1200px)  {
 
  .fading-slideshow {

      width: 100%;
      height: 550px;
 
  }  
    
}


@media (max-width: 1050px)  {
 
  .fading-slideshow {

      width: 100%;
      height: 480px;
 
  }  
    
}



@media (max-width: 900px)  {
 
  .fading-slideshow {

      width: 100%;
      height: 450px;
 
  }  
    
}



