/*
Skin Name: Nivo Slider Default Theme - modified for navigation inside
Skin URI: http://nivo.dev7studios.com
Description: The default skin for the Nivo Slider.
Version: 1.3
Author: Gilbert Pellegrom
Author URI: http://dev7studios.com
Supports Thumbs: true
*/

.slider-wrapper {
    position: relative;
}
.nivoSlider {
	position: relative;
}
.nivoSlider a {
	display: block;
}

.nivo-directionNav a {
	position: absolute;
    top: 50%;
	width: 50px;
	height: 50px;
    margin: -25px 0 0;
    background-color: #1f1f1f;
    opacity: .6;
    font-size: 0;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.nivo-directionNav a:before {
    font-family: "venture-font";
    text-transform: none;
    font-size: 8px;
    width: 9px;
    height: 8px;
    color: #f3cc2e;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}
.nivo-directionNav a.nivo-prevNav {
	left: -50px;
}
.slider-wrapper:hover .nivo-directionNav a.nivo-prevNav {
    left: 0;
}
.nivo-directionNav a.nivo-prevNav:before {
    content: "r";
}
.nivo-directionNav a.nivo-nextNav {
	right: -50px;
}
.slider-wrapper:hover .nivo-directionNav a.nivo-nextNav {
    right: 0;
}
.nivo-directionNav a.nivo-nextNav:before {
    content: "q";
}
.nivo-directionNav a:hover {
	opacity: 1;
}

.nivo-controlNav {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    padding: 9px;
    text-align: center;
    font-size: 0;
    z-index: 10;
    opacity: 0.5;
}
.nivo-controlNav:before {
    content: '';
    position: absolute;
    top: 0;
    left: -7px;
    right: -7px;
    bottom: 0;
    background: #f5f5f5;
    z-index: 1;
    -o-transform: skewX(-20deg);
    -webkit-transform: skewX(-20deg);
    -moz-transform: skewX(-20deg);
    -ms-transform: skewX(-20deg);
    transform: skewX(-20deg);
}
.nivo-controlNav a {
    width: 9px;
    height: 9px;
    display: inline-block;
    margin: 5px;
    font-size: 0;
    border-width: 0;
    background: #939393;
    border-radius: 50%;
    position: relative;
    z-index: 2;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.nivo-controlNav a:hover,
.nivo-controlNav a.active {
    background-color: #f3cc2e;
}

.nivo-thumbs-enabled {
    left: 0;
    background: rgba(44,44,44,.7);
}
.nivo-thumbs-enabled:before {
    display: none;
}
.nivo-thumbs-enabled a {
    width: 120px;
    height: auto;
    background-color: transparent;
}

.nivo-caption {
	/*display: none;*/ /*uncomment to hide caption*/
    top: 50%;
    left: 50%;
    width: auto;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    bottom: auto;
	z-index: 10;
    background-color: transparent;
    padding: 15px;
	text-align: center;
    font-size: 18px;
}
.nivo-caption p {
	margin: 0;
	padding: 0;
}
.nivo-caption:empty {
	display: none !important;
}


/* HOME PAGE BANNERS */

.home-page-footer-banners {
    display: none;
}

@media all and (min-width: 1201px) {

    .home-page-footer-banners {
        display: table;
        width: 100%;
        background: #2c2c2c;
    }
    .light-theme .home-page-footer-banners {
        background: #fff;
    }
    .home-page-footer-banners .slider-wrapper {
        display: table-cell;
    }

}