/* ===== If three tabs need to be displayed in the footer,
the following styles will handle the responsiveness ================ */


.footer_banner_box {
    cursor: pointer;
    float: left;
    height: 20px;
    padding: 20px 30px;
    background-color: #2E2E2E;
    width: 270px;
}
@media screen and (max-width: 1009px) {
    .footer_banner_box {
        padding: 20px 23px 30px;
        width: 204px;
    }
}
@media screen and (max-width: 767px) {
    .footer_banner_box {
        padding: 20px 0px 30px;
        width: 154px;
    }
    .footer_banner_box p.footerHeader {
        font-size: 18px;
        text-align: center;
    }
}
@media screen and (max-width: 479px) {
    .footer_banner_box {
        padding: 20px 0px 30px;
        width: 100px;
    }
    .footer_banner_box p.footerHeader {
        font-size: 16px;
        text-align: center;
    }
}