
.sub-banner {
    background: #f7f7f7;
    text-align: center;
    top: 0;
    width: 100%;
    bottom: 0;
    opacity: 1;
    height: 250px;
    position: relative;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
}

.demo-section .container {
    max-width: 1540px;
}

.sub-banner h1{
    font-weight: 400;
    font-size: 27px;
}

.sub-banner .logo{
    margin: 0 auto 20px;
    text-align: center;
}

.sub-banner .logo img{
    height: 35px;
}

.demo-item{
    margin: 0 5px 50px;
}

.demo-item img{
    width: 100%;
    padding: 5px;
    background: #fff;
    box-shadow: 0 0 35px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    margin-bottom: 20px;
}

.demo-item img:hover{
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.demo-section{
    padding: 100px 0 50px;
}

.footer {
    padding: 30px 0;
    background: #f7f7f7;
    text-align: center;
}

.footer p {
    font-size: 16px;
    color: #5d5d5d;
    margin-bottom: 0;
}

/** OVERVIEW BGI **/
.overview-bgi {
    position: relative;
}

.overview-bgi:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
}

.btn-home{
    color: #191919;
    font-size: 16px;
    font-weight: 600;
    border-radius: 2px;
    display: inline-block;
    text-decoration: none;
}

.btn-home:hover{
    text-decoration: none;
    color: #ff214f;
}

@media (max-width: 992px) {
    .demo-section {
        padding: 80px 0 30px;
    }
}

@media (max-width: 768px) {
    .demo-section {
        padding: 60px 0 20px;
    }

    .demo-item {
        margin: 0 0 40px;
    }

}