@charset "utf-8";
/* CSS Document */

#slideshow_con {
    width: 100%;
    max-width: 1054px;
    min-height: 400px;
    margin-left: auto;
    margin-right: auto;
    padding: 180px 0 80px 0;
    clear: both;
    position: relative;
    color: #fff;
}
/************************/
/* set border-box so that percents can be used for width, padding, etc (personal preference) */

.cycle-slideshow,
.cycle-slideshow * {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.cycle-slideshow {
    /*! overflow: auto; */
}
.cycle-slide {
    width: 100%;
    padding: 0 15px;
}
.cycle-slide div {
    box-sizing: border-box;
}
/* slideshow images (for most of the demos, these are the actual "slides") */

.cycle-slideshow img {
    /* 
    some of these styles will be set by the plugin (by default) but setting them here
    helps avoid flash-of-unstyled-content
    */
    
    position: absolute;
    top: 0;
    left: 0;
    padding: 0;
    margin: 0 8px 8px 0;
    display: block;
    box-shadow: 4px 4px 8px 0px rgba(0, 0, 0, 0.75);
    z-index: 98;
}
/* in case script does not load */

.cycle-slideshow img:first-child {
    position: static;
    z-index: 100;
}
/* pager */

.pager {
    text-align: center;
    width: 100%;
    z-index: 500;
    position: absolute;
    bottom: 10px;
    overflow: hidden;
}
.pager span {
    width: 15px;
    height: 15px;
    border-radius: 8px;
    display: inline-block;
    margin: 5px;
    background: #ccc;
    cursor: pointer;
    color: transparent;
    background: rgba(52, 60, 70, 0.6);
    border: solid 1px #000;
}
.pager span.cycle-pager-active,
.pager span:hover {
    background: #8995A0;
}
/*slider content*/

.cycle-slideshow {
    text-shadow: 3px 3px 4px #000;
}
.cycle-slideshow p {
    padding-left: 10px;
    padding-right: 10px;
}
.cycle-slideshow a {
    color: #fff;
}
.cycle-slideshow a:hover {
    color: #979595;
    text-decoration: underline;
}
.cycle-slideshow h1,
.cycle-slideshow h2,
.cycle-slideshow h3,
.cycle-slideshow h4,
.cycle-slideshow h5,
.cycle-slideshow h1 a,
.cycle-slideshow h2 a,
.cycle-slideshow h3 a,
.cycle-slideshow h4 a,
.cycle-slideshow h5 a {
    color: white;
    text-decoration: none;
    /*! outline: 1px solid white; */
}
.cycle-slideshow h1 a:hover,
.cycle-slideshow h2 a:hover,
.cycle-slideshow h3 a:hover,
.cycle-slideshow h4 a:hover,
.cycle-slideshow h5 a:hover {
    text-decoration: underline;
    color: #e9510e;
    !important;
}
.cycle-slideshow h1 {
    font-size: 75px;
    font-weight: 700;
    padding: 20px 0;
}
.cycle-slideshow h2 {
    font-size: 30px;
    padding: 15px 0;
}
@media (max-width: 980px) {
    .cycle-slideshow h1 {
        font-size: 55px;
    }
    .cycle-slideshow h2 {
        font-size: 25px;
    }
}
@media (max-width: 500px) {
    .cycle-slideshow h1 {
        font-size: 50px;
    }
}
/*Specail classes for john*/

.col-half {
    width: 50%;
    float: left;
    box-sizing: border-box;
}
@media (max-width: 750px) {
    #slideshow_con {
        min-height: 200px;
        padding-top: 50px;
        padding-bottom: 40px;
    }
    .col-half {
        width: 100%;
        margin: 0 auto;
        float: none;
        padding-bottom: 10px;
    }
    .cycle-slideshow img {
        margin: 0 auto;
    }
}
/* Product Promotion Slideshow Styles */

div.promo_slides a,
div.promo_slides h3 a,
div.promo_slides h2 a {
    color: black;
    text-shadow: none;
}