.module-003 {
    background: #E8644D;
    padding: 0 0 60px;
}

.hero_item img {
    width: 100%;
}

.hero_cnt {
    padding-bottom: 58px;
}

.hero_cnt p {
    font-size: 18px;
    font-weight: 300;
    color: #000000;
    display: block;
    margin-bottom: 11px;
    position: relative;
}

.hero_cnt p::after {
    content: "";
    width: 100%;
    height: 8px;
    display: block;
    background: #000000;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.hero_cnt p span {
    padding-right: 8px;
    background: #E8644D;
    position: relative;
    z-index: 9;
}

.hero_cnt h1 {
    font-size: 42px;
    line-height: 1;
    font-weight: 800;
    color: #000000;
    text-transform: uppercase;
    margin: 0;
    /*hyphens:auto;*/
}


/* ==================== Medium Screen - Others ===================== */
@media screen and (min-width: 992px) and (max-width: 1199px) {

    .hero_cnt h1 {
        font-size: 34px;
    }

    .hero_cnt {
        padding-bottom: 50px;
    }

}

/* ======================= Small Screen - Tablate ====================== */
@media screen and (min-width: 768px) and (max-width: 991px) {

    .hero_cnt h1 {
        font-size: 28px;
    } 

    .hero_cnt p span {
        font-size: 15px;
    }

    .hero_cnt p::after {
        height: 6px;
    }

    .hero_cnt {
        padding-bottom: 25px;
    }

}

/* ==================== Small Screen - Mobile ===================== */
@media screen and (max-width: 767px) {

    .module-003 {
        padding-top: 40px;
    }

    .hero_cnt h1 {
        font-size: 30px;
    } 

    .hero_cnt p span {
        font-size: 16px;
    }

    .hero_cnt p::after {
        height: 6px;
    }

    .hero_cnt {
        padding-bottom: 0px;
        max-width: 280px;
        width: 100%;
        margin-top: 25px;
    }

}

body {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 400;
    background: #E5E5E5;
    color: #000000;
}


