.bg-slideshow,
.bg-slideshow:after { 
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    z-index: 0; 
}
.bg-slideshow li span { 
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    color: transparent;
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: none;
    opacity: 0;
    z-index: 0;
    animation: imageAnimation 48s linear infinite 0s; 
}
.bg-slideshow li span + span {
    top: 95%;
    padding-right: 6%;
    color: #fff;
    font-size: 1.25em;
    font-style: italic;
    text-align: right;
    background: none !important;
}
.bg-slideshow li div { 
    z-index: 1000;
    position: absolute;
    bottom: 75px;
    left: 0px;
    width: 100%;
    text-align: center;
    opacity: 0;
    color: #fff;
    animation: titleAnimation 48s linear infinite 0s; 
}
.bg-slideshow li div h3 { 
    font-family: 'BebasNeueRegular', 'Arial Narrow', Arial, sans-serif;
    padding: 0 30px;
    font-size: 6vw;
    letter-spacing: -.005em;
    word-spacing: .25em;
    line-height: .825;
    text-shadow: 2px 2px #333;
    color: #fff;
}
.bg-slideshow li:nth-child(1) span {
    background-image: url("https://coastalmillworkandsupply.com/_assets/img/gallery/projects/SCJC/x-large/Spartanburg-County-Judicial-Center-05.jpg");
}
.bg-slideshow li:nth-child(2) span {
    background-image: url("https://coastalmillworkandsupply.com/_assets/img/gallery/projects/Credit-One-Stadium/x-large/credit-one-stadium-09.jpg");
    animation-delay: 6s;
}
.bg-slideshow li:nth-child(3) span {
    background-image: url("https://coastalmillworkandsupply.com/_assets/img/gallery/projects/Rock-Tenn-Corp-Office/x-large/rock-tenn-corp-office-02.jpg");
    animation-delay: 12s;
}
.bg-slideshow li:nth-child(4) span {
    background-image: url("https://coastalmillworkandsupply.com/_assets/img/gallery/projects/SCJC/x-large/Spartanburg-County-Judicial-Center-14.jpg");
    animation-delay: 18s;
}
.bg-slideshow li:nth-child(5) span {
    background-image: url("https://coastalmillworkandsupply.com/_assets/img/gallery/projects/Cougar-Point-Clubhouse/x-large/cougar-point-01.jpg");
    animation-delay: 24s;
}
.bg-slideshow li:nth-child(6) span {
    background-image: url("https://coastalmillworkandsupply.com/_assets/img/gallery/projects/Lexington-Performing-Arts-Center/x-large/lexington-performing-arts-center-10.jpg");
    animation-delay: 30s;
}
.bg-slideshow li:nth-child(7) span {
    background-image: url("https://coastalmillworkandsupply.com/_assets/img/gallery/projects/Ruths-Chris/x-large/ruths-chris-02.jpg");
    animation-delay: 36s;
}
.bg-slideshow li:nth-child(8) span {
    background-image: url("https://coastalmillworkandsupply.com/_assets/img/gallery/projects/Jerry-Richardson-Indoor-Stadium/x-large/jerry-richardson-indoor-stadium-01.jpg");
    animation-delay: 42s;
}
.bg-slideshow li:nth-child(2) div {
    animation-delay: 6s;
}
.bg-slideshow li:nth-child(3) div {
    animation-delay: 12s;
}
.bg-slideshow li:nth-child(4) div {
    animation-delay: 18s;
}
.bg-slideshow li:nth-child(5) div {
    animation-delay: 24s;
}
.bg-slideshow li:nth-child(6) div {
    animation-delay: 30s;
}
.bg-slideshow li:nth-child(7) div {
    animation-delay: 36s;
}
.bg-slideshow li:nth-child(8) div {
    animation-delay: 42s;
}
/* Animation for the slideshow images */
@keyframes imageAnimation { 
	0% {
	    opacity: 0;
	    animation-timing-function: ease-in;
	}
	5% {
	    opacity: 1;
	    transform: scale(1.05);
	    animation-timing-function: ease-out;
	}
	10% {
	    opacity: 1;
	    transform: scale(1.1);
	}
	15% {
		opacity: 0;
	}
	17.5% {
	    opacity: 0;
	    -transform: scale(1.1) translateY(-100%);
	}
	100% { opacity: 0 }
}
/* Animation for the title */
@keyframes titleAnimation { 
    0% { opacity: 0 }
    5% { opacity: 1 }
    10% { opacity: 1 }
    15% { opacity: 0 }
    100% { opacity: 0 }
}
/* Show at least something when animations not supported */
.no-cssanimations .bg-slideshow li span{
	opacity: 1;
}