/* =========================================================
   HEADER TOP TEXT
   ISOLATED STYLE
   ========================================================= */

.header-top-text {

    width: 100%;

    padding:
        7px
        15px;

    box-sizing: border-box;

    text-align: center;

    background: #f6f2eb;

    color: #063f3d;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 9px;

    font-weight: 700;

    line-height: 1.4;

    letter-spacing: 2px;

    text-transform: uppercase;

    border-bottom:
        1px solid
        rgba(6, 63, 61, 0.08);
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .header-top-text {

        padding:
            6px
            12px;

        font-size: 8px;

        letter-spacing: 1.5px;

        line-height: 1.45;
    }

}