/* FONTS */
@import url(http://fonts.googleapis.com/css?family=Raleway);
@font-face {
  font-family: 'Blazing Italic';
  src: url('../fonts/BlazingItalic.eot'); /* IE9 Compat Modes */
  src: url('../fonts/BlazingItalic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/BlazingItalic.woff') format('woff'), /* Pretty Modern Browsers */
       url('../fonts/BlazingItalic.ttf')  format('truetype'), /* Safari, Android, iOS */
       url('../fonts/BlazingItalic.svg#BlazingItalic') format('svg'); /* Legacy iOS */
  font-weight:normal;
  font-style:normal;
}
 
body {
    background: rgb(5, 5, 5);
    color: #fff;
}
 
/* NAVBAR */
.navbar {
    text-align: center;
    margin-bottom: 0;
}
header {
    padding: 40px 20px;
    text-align: center;
}
 
header img.logo {
    max-width: 100%;
}
 
.navbar header > ul {
    list-style: none;
    margin: 20px 0 0 0;
    padding: 0;
}
 
.navbar header > ul li {
    padding: 15px;
    font-family: Raleway;
    font-size: 16px;
}
 
.content {
    background-color: rgb(0, 0, 0);
}
 
.items {
    margin: 10px 0;
}
 
.items .item {
    padding: 5px;
}
 
.video {
    display: block;
    width: 100%;
    position: relative;
    height: 0;
    padding-top: 62.25%;
    overflow: hidden;
}
 
.video video,
.video img {
    position: absolute;
    display: block;
    width: 100%;
    max-height: 100%;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}
 
a {
    color: rgb(153,12,97);
}
 
a:hover,
a:active,
a:focus {
    color: rgb(201,30,133);
    text-decoration: none;
}
 
.btn-close {
    position: relative;
    width: 100%;
    text-align: center;
    margin-top: 20px;
}
 
.btn-close img {
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -ms-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
    cursor: pointer;
}
 
.btn-close img:hover {
    transform: rotate(90deg);
}
 
.modal-content-wrapper {
    position: relative;
    padding: 20px;
    margin: 0 auto;
    max-width: 800px;
}
 
/* FOOTER */
footer {
    color: rgb(153,12,97);
    padding: 40px;
    position: relative;
    bottom: 0;
    text-align: center;
    width: 100%;
}
 
footer > ul.social{
    list-style: none;
    margin: 20px 0 0 0;
    padding: 0;
}
 
footer > ul.social li{
    display: inline-block;
    position: relative;
    margin: 0 5px 5px 0;
}
 
footer > ul.social li:last-child {
    margin: 0 0 5px 5px;
}
 
footer > ul.social li a{
    display: block;
    width: 30px;
    height: 30px;
    background: url('../img/sm.png') no-repeat;
    background-position: 0 0;
}
 
footer > ul.social li a:hover{
    background: url('../img/sm_hover.png') no-repeat;
}
 
footer > ul.social li a.fb,
footer > ul.social li a.fb:hover{
    background-position: 0 0;
}
 
footer > ul.social li a.google,
footer > ul.social li a.google:hover{
    background-position: -31px 0;
}
 
footer > ul.social li a.behance,
footer > ul.social li a.behance:hover{
    background-position: -62px 0;
}
 
footer > ul.social li a.twitter,
footer > ul.social li a.twitter:hover{
    background-position: -93px 0;
}
 
footer > ul.social li a.dribble,
footer > ul.social li a.dribble:hover{
    background-position: -124px 0;
}
 
footer > ul.social li a.rss,
footer > ul.social li a.rss:hover{
    background-position: -155px 0;
}

@media screen and (max-width: 419px) {
    .items .item {
        width: 100%;
    }
}
 
@media screen and (min-width: 420px) and (max-width: 991px) {
    .items .item {
        width: 50%;
    }
}

@media screen and (max-width: 767px) {
    .items .item video {
        display: none;
    }
    .items {
        margin: 0;
    }
}

@media screen and (max-width: 991px) {
	.navbar header > ul {
		margin: 0;
	}
	footer {
		position: fixed;
    	bottom: 0;
    	left: 0;
    	right: 0;
    	z-index: 20;
    	background-color: rgba(0, 0, 0, 0.6);
    	padding: 0 0 5px;
	}
	.content {
		padding-bottom: 100px;
	}
}
 
@media screen and (min-width: 768px) and (max-width: 991px) {
    .items .item {
        width: 50%;
    }
    .items .item video {
        display: none;
    }
    .items {
        margin: 0;
    }
}
 
@media screen and (min-width: 992px) {
    .items .item img {
        display: none;
    }
    footer {
        margin-top: 125px;
    }
}
 
@media screen and (min-width: 992px) and (max-width: 1199px) {
    .items .item {
        width: 50%;
    }
    footer {
        margin-top: 150px;
    }
}
@media screen and (min-width: 1200px) {
    .items .item {
        width: 33.3333%;
    }
    footer {
        margin-top: 200px;
    }
}