.section_heading_wrapper {}

.section_heading {
    margin: 0;
    font-size: 40px;
    font-weight: 300;
    color: #ffffff;
    font-family: 'Exo';
    display: flex;
    flex-wrap: wrap;
}

.section_heading_highlight {
    background: #d79a08;
    color: #202020;
    padding: 2px 10px;
    font-weight: 700;
    font-style: italic;
    clip-path: polygon(5% 0%, 100% 0%, 95% 100%, 0% 100%);
    width: fit-content;
    /* display: block; */
}

.section_heading_line {
    width: 220px;
    height: 2px;
    background: #d79a08;
    margin-top: 18px;
}


/* =============== Media Queries ================ */

@media (min-width:0px) and (max-width:575px) {
    .section_heading {
        font-size: 25px;
    }

    .section_heading_highlight {
        display: block;
    }
}

@media (min-width:576px) and (max-width:991px) {
    .section_heading {
        font-size: 28px;
    }
}

@media (min-width:992px) and (max-width:1199px) {
    .section_heading {
        font-size: 30px;
    }
}