@import url('https://fonts.googleapis.com/css?family=Roboto:100,100i,300,300i,400,400i,500,500i,700,700i,900,900i');
@font-face {
    font-family: 'MoonHouse';
    src: url('../fonts/moonhouse.eot');
    src: url('../fonts/moonhouse.eot?#iefix') format('embedded-opentype'),
         url('../fonts/moonhouse.ttf') format('truetype');
}

*{
    margin: 0;
    padding: 0;
}
body{
    /*background-color: #f7f7f7;*/
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
}

body:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 450px;
    background-color: #242424;
    background: url(../img/header.jpg) 0% 0% no-repeat;
    background-size: 100% 100%;;
}


.header{
    position: relative;
    color: #fff;
    height: 450px;
}
.logo{   
    font-family: 'MoonHouse' !important;
    font-size: 48px;
    position: absolute;
    top:0;
    left:20px;
}
.logo span{
    font-family: 'MoonHouse' !important;
    color: #DD1B16;
}
.intro-text{
    font-size: 36px;
}
.desc{
    font-weight: 300;
    letter-spacing: 0.03rem;
}

.btn-outline-secondary:hover,
.btn-outline-secondary:focus{
    background-color: rgba(255,255,255, 0.1);
    color: #fff !important;
    box-shadow: none;
}

.demo img{
    box-shadow: 0px 1px 5px 2px #999;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}
.demo:hover img{
    opacity: 0.3;
}
.demo span{
    width: 150px;
    padding: 6px;
    position: absolute;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    top: 50%;
    background-color: rgba(0,0,0, 0.75);
    border: 1px solid rgba(0,0,0, 0.75);
    color: #fff;
    text-transform: uppercase;
    font-size: 14px;
    opacity: 0;
     -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
    pointer-events: none;
}
.demo:hover span{
    opacity: 1;
}
.demo-text{
    font-size: 16px;
    text-transform: uppercase;
}

.btn{
    border-radius: 1.5rem;
}

.footer{
    background-color: #010101;
    font-size: 13px;
    padding: 10px 0;
    color: #9a9a9a;
}
.footer a{
    color: #fff;
}
.footer a:hover{
    color: #9a9a9a;
    text-decoration: none;
}

.skins div img{
    box-shadow: 0px 1px 5px 2px #999;
}

@media (max-width: 575px) { 
    body:before, .header{
        height: 300px;
    }
    .logo{
        font-size: 24px;
    }
    .intro-text{
        font-size: 18px;
    }
    .desc{
        font-size: 14px;
    }

}


@media (min-width: 576px) and (max-width: 767px) { 
    body:before, .header{
        height: 350px;
    }
    .logo{
        font-size: 36px;
    }
    .intro-text{
        font-size: 24px;
    }
}


@media (min-width: 768px) and (max-width: 991px) { 
    body:before, .header{
        height: 400px;
    }
}


@media (min-width: 992px) and (max-width: 1199px) {  }


@media (min-width: 1200px) {  }