/* =====*===== Start Global =====*===== */

* {
    padding: 0;
    margin: 0;
    text-decoration: none !important;
    list-style: none !important;
    outline: none !important;
}

img {
    width: 100%;
    height: auto;
}

span {
    display: inline-block;
}

a, a:hover, a:focus{
    color: inherit;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
}

/* --- Custom Framework --- */

body {
    font-family: 'Source Sans Pro', sans-serif;
    color: #111;
    overflow-x: hidden;
}

p {
    color: #777;
    line-height: 1.8;
    margin: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Raleway', sans-serif;
}

.section-padding {
    padding: 100px 0;
}

.v-middle {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 0;
    -webkit-transform: translate(0%, -50%);
    -moz-transform: translate(0%, -50%);
    -ms-transform: translate(0%, -50%);
    -o-transform: translate(0%, -50%);
    transform: translate(0%, -50%);
}

.logo {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    color: #EEE;
    font-size: 25px;
    font-weight: 900;
}

.logo span {
    color: #FF1744;
}

/* --- Preloader --- */

.loading {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: #FFF;
    z-index: 9999999;
}

.load-circle {
    margin: 50vh auto;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border-top: 2px solid #FF1744;
    -webkit-animation: rotate 1.2s infinite linear;
    -moz-animation: rotate 1.2s infinite linear;
    -ms-animation: rotate 1.2s infinite linear;
    -o-animation: rotate 1.2s infinite linear;
    animation: rotate 1.2s infinite linear;
}

@-webkit-keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* --- Button Top --- */

.button-top {
    position: fixed;
    right: 20px;
    bottom: 10px;
    z-index: 99999;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-size: 16px;
    background: #515A5F;
    color: #FFF;
    border-radius: 50%;
    opacity: .5;
    cursor: pointer;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    display: none;
}

.button-top:hover {
    opacity: .8;
}

/* =====*===== End Global =====*===== */

/* =====*===== Start Header =====*===== */

.header {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.header .wraper {
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.header .wraper .item {
    height: 100vh !important;
    width: 100%;
}

.header .wraper .item:after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 4;
}

.header .wraper .item .v-middle {
    z-index: 99;
}

.header .caption {
    font-family: 'Raleway', sans-serif;
    text-align: center;
    color: #FFF;
    padding: 0 15px;
}

.header .caption .logo {
    font-size: 35px;
    margin-bottom: 30px;
}

.header .caption h5 {
    font-size: 55px;
    letter-spacing: 2px;
    font-weight: 500;
    text-transform: capitalize;
    margin-bottom: 50px;
    color: #FFF;
}

.header .caption .bg-button {
    color: #FFF;
    border: 1px solid #FF1744;
    border-radius: 3px;
    width: 165px;
    padding: 10px 25px;
    margin: 5px;
    background: #FF1744;
    font-size: 16px;
    display: inline-block;
    text-transform: capitalize;
}

.header .caption .border-button {
    background: transparent;
    color: #FFF;
    border: 1px solid #FFF;
    font-size: 16px;
    text-transform: capitalize;
    width: 165px;
    padding: 10px 25px;
    margin: 5px;
    border-radius: 3px;
    display: inline-block;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.header .caption .border-button:hover {
    background: transparent;
    color: #FF1744;
    border: 1px solid #FF1744;
}

.bg5 {
    background-image: url(http://via.placeholder.com/1920x1080);
    background-size: cover;
    background-attachment: fixed;
}

/* =====*===== End Header =====*===== */

/* =====*===== Start Demos =====*===== */


.demos{
    background-color: red;
}

.demos .intro h2
{
    color: #fff;
    font-weight: bold
}

.demos .intro p
{
    font-size: 18px;
    color: #fff;
    margin-bottom: 35px;
}

.demos .demo-item {
    margin-bottom: 50px;
}

.demos .demo-item img {
    border-radius: 3px;
    margin-bottom: 25px;
}

.demos .demo-item img:hover {
    opacity: .8;
}

.demos .demo-item h6 {
    text-align: center;
    color: white !important;
    font-weight: 500 !important;
    font-size: 16px;
}

/* =====*===== End Demos =====*===== */

/* =====*===== Start Footer =====*===== */

footer {
    background: #111;
    color: #EEE;
}

footer .main-footer {
    padding: 50px 15px 0;
}

footer .main-footer .social-icons h5 {
    margin-bottom: 20px;
}

footer .main-footer .social-icons span {
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 50%;
    margin: 0 1px;
    background: #222;
    -webkit-transition: all .3s;
            transition: all .3s;
}

footer .main-footer .social-icons span:hover {
    background: #FF1744;
    color: #FFF;
}

footer .main-footer .copyright {
    padding: 15px 0;
    color: #777;
}

/* =====*===== End Footer =====*===== */