* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    line-height: 1.7;
    color: #463F3A;
}

.header {
    height: 60vh;
    background-image: url(../images/hero-banner-bg.jpg);
    background-size: contain;
    background-position: top;
    position: relative;
}

.logo-box {
    position: absolute;
    top: 24%;
    left: 20%;
}

.logo {
    width: 300px;
}

.subscribe-box {
    position:absolute;
    top: 50%;
    left: 60%;
    transform: translate(-50%,-50%);
}


.heading-primary {
    font-weight: 700;
    text-transform: uppercase;
}

.heading-primary-main {
    color: #FFF;
    display: block;
    font-size: 50px;
}

.heading-primary-sub {
    color: #DC1A22;
    display: block;
    font-size: 53px;
}

.header-with-border h2 {
    font-weight: 600;
    margin-bottom: 0px;
}

.header-with-border span {
    border: 3px solid #DC1A22;
    width: 150px;
    display: inline-block;
    text-align: center;
}


.design-3d {
}

.design-3d h2.sketching-on-paper {
    color: #DC1A22;
}

.info-box {
    text-align: center;
}

.info-box img {
    width: 130px;
    display: inline-block;
}
.info-box span {
    font-size: 20px;
    display: block;
    margin-top: 10px;
}

.industries {
    margin-top: 100px 0;
    padding: 50px 0;
    background: #f6f4f2;
}

.footer {
    padding: 30px;
    text-align: center;
    color: #FFF;
    background: #202020;
    font-size: 20px;

}
.footer a {
    color: #FFF;
    text-decoration: none;
    font-size: 18px;
    padding: 0 10px;
}

@media (max-width: 576px) {
    .header {
        height: 55vh;
        background-image: url(../images/hero-banner-bg.jpg);
        background-size: contain;
        background-position: top;
        position: relative;
    }
    
    .logo-box {
        position: absolute;
        top: 5%;
        left: 25%;
    }
    
    .logo {
        width: 200px;
    }
    
    .subscribe-box {
        position:absolute;
        top: 70%;
        left: 50%;
        transform: translate(-50%,-50%);
    }
    
    
    .heading-primary {
        font-weight: 700;
        text-transform: uppercase;
    }
    
    .heading-primary-main {
        color: #FFF;
        display: block;
        font-size: 40px;
    }
    
    .heading-primary-sub {
        color: #DC1A22;
        display: block;
        font-size: 43px;
    }
    
    .header-with-border h2 {
        font-weight: 600;
        margin-bottom: 0px;
    }
    
    .header-with-border span {
        border: 3px solid #DC1A22;
        width: 150px;
        display: inline-block;
        text-align: center;
    }
}