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


/************************
Fonts
************************/

@font-face {
	font-family: 'Source Sans';
	src: url(../epk-fonts/SourceSansPro-Regular.eot);
	src: url(../epk-fonts/SourceSansPro-Regular.otf);
	src: url(../epk-fonts/SourceSansPro-Regular.woff);
	src: url(../epk-fonts/SourceSansPro-Regular.woff2);
    src: url(../epk-fonts/SourceSansPro-Regular.ttf);
}

@font-face {
	font-family: 'Source Sans Light';
	src: url(../epk-fonts/SourceSansPro-Light.eot);
	src: url(../epk-fonts/SourceSansPro-Light.otf);
	src: url(../epk-fonts/SourceSansPro-Light.woff);
	src: url(../epk-fonts/SourceSansPro-Light.woff2);
	src: url(../epk-fonts/SourceSansPro-Light.ttf);
}

@font-face {
	font-family: 'Source Sans Bold';
	src: url(../epk-fonts/SourceSansPro-Bold.eot);
	src: url(../epk-fonts/SourceSansPro-Bold.otf);
	src: url(../epk-fonts/SourceSansPro-Bold.woff);
	src: url(../epk-fonts/SourceSansPro-Bold.woff2);
	src: url(../epk-fonts/SourceSansPro-Bold.ttf);
}



/************************
Background
************************/

.body {
  background-image: url(epk-img/unsubscribe-epk-bgd.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  background-color: #000000;
}


/************************
StyleSheets
************************/

h1{
	font-family: 'Source Sans Bold', Sans-serif;
    color: white;
	line-height: 0.3;
}


h2{
	font-family: 'Source Sans Reg', Sans-serif;
    color: white;
	line-height: 0.4;
}


h3{
	font-family: 'Source Sans Light', Sans-serif;
	font-size: 30px;
    color: white;	
}

h4{
	font-family: 'Source Sans Bold', Sans-serif;
	font-size: 40px;
    color: white;	
	padding-top: 40px;
}


p{
	font-family: 'Source Sans Light', Sans-serif;
    color: white;
	line-height: 1.3;
	font-size: 20px;
}

.bold{
	font-family: 'Source Sans Bold', Sans-serif;
    color: white;
}


.container{
	padding-right: 60px;
    padding-left: 60px;
	padding-top: 30px;
	padding-bottom: 30px;
}

.container-divider{
	padding-right: 20px;
    padding-left: 20px;
	padding-top: 30px;
	padding-bottom: 30px;
}

.container-footer{
	padding-right: 20px;
    padding-left: 20px;
	padding-top: 30px;
	padding-bottom: 60px;
}

.container-top{
	padding-right: 20px;
    padding-left: 20px;
	padding-top: 60px;
	padding-bottom: 30px;
}


.quote{
	font-size: 40px;
	margin:auto;
	padding-top: 40px;
	vertical-align: middle;
}

.djquote{
	font-family: "Source Sans Bold"; 
	font-size: 18px;
}


.responsive {
  width: 100%;
  height: auto;
}




.carousel {
    margin-left: 15%;
    margin-right: 15%;
}

ul.slides {
    display: block;
    position: relative;
    height: 600px;
    margin: 0;
    padding: 0;
    overflow: hidden;
    list-style: none;
}

.slides * {
    user-select: none;
    -ms-user-select: none;
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
}

ul.slides input {
    display: none; 
}


.slide-container { 
    display: block;
}

.slide-image {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    opacity: 0;
    transition: all .7s ease-in-out;
}   

.slide-image img {
    width: auto;
    min-width: auto;
    height: 100%;
}

.carousel-controls {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    font-size: 100px;
    line-height: 600px;
    color: #fff;
}

.carousel-controls label {
    display: none;
    position: absolute;
    padding: 0 20px;
    opacity: 0;
    transition: opacity .2s;
    cursor: pointer;
}

.slide-image:hover + .carousel-controls label{
    opacity: 0.5;
}

.carousel-controls label:hover {
    opacity: 1;
}

.carousel-controls .prev-slide {
    width: 49%;
    text-align: left;
    left: 0;
}

.carousel-controls .next-slide {
    width: 49%;
    text-align: right;
    right: 0;
}

.carousel-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 20px;
    z-index: 999;
    text-align: center;
}

.carousel-dots .carousel-dot {
    display: inline-block;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #fff;
    opacity: 0.5;
    margin: 10px;
}

input:checked + .slide-container .slide-image {
    opacity: 1;
    transform: scale(1);
    transition: opacity 1s ease-in-out;
}

input:checked + .slide-container .carousel-controls label {
     display: block; 
}

input#img-1:checked ~ .carousel-dots label#img-dot-1,
input#img-2:checked ~ .carousel-dots label#img-dot-2,
input#img-3:checked ~ .carousel-dots label#img-dot-3,
input#img-4:checked ~ .carousel-dots label#img-dot-4,
input#img-5:checked ~ .carousel-dots label#img-dot-5,
input#img-6:checked ~ .carousel-dots label#img-dot-6 {
	opacity: 1;
}


input:checked + .slide-container .nav label { display: block; }