/* Reset CSS by Eric Meyer */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}



/* New footer class */
.footer {
    background-color: #282424;
    width: 100%;
    display: flex;
    justify-content: space-between;
    font-family: "Sans", sans-serif;
    font-size: 1.5vw;
    padding-left: 0;
    height: 90px; /* Adjust the height as needed for your footer */

    @media (max-width: 840px) {
        height: 74px;
        font-size: 2.1vw;
    }

    @media (max-width: 500px) {
        height: 54px;

        font-size: 2.1vw; /* Decrease image height as browser width decreases */
    }
}

.left {
    display: flex;
    align-items: center;
}



.bar-item {
    padding-left: 10px;
    padding-right: 10px;

    @media (max-width: 840px) {
        padding-left: 5px;
        padding-right: 5px;
    }
}

.image-container {
    max-width: 7vw;
    padding-right: 15px;

    @media (max-width: 840px) {
        max-width: 13vw;
        padding-right: 5px;
    }
}

.image {
    width: 100%;
    height: auto;
    padding-top: 10px;
    padding-bottom: 6px;
}

a:active,
a:focus {
    outline: none;
}

a {
    color: white;
    text-decoration: none;
}


/* Your existing CSS code... */

.right_b {
    display: flex;
    flex-direction: column; /* Make the child elements stack vertically */
    align-items: flex-start; /* Align child elements to the left */
    padding-right: 20px;

    height: 90px; /* Adjust the height as needed for your footer */


    @media (max-width: 840px) {
        padding-right: 8px;
        height: 74px;
    }

}

.top_b, .bottom_b {
    display: flex;
    align-items: center;
    height: 45px;

    @media (max-width: 840px) {
        height: 37px;
    }

    @media (max-width: 500px) {
        height: 27px;

    }
}

.image_tb, .image_bb {
    width: 2vw; /* Adjust the width as needed */
    height: 2vw;
    padding-right: 15px;

    @media (max-width: 840px) {
        width: 3vw; /* Adjust the width for smaller screens */
        height: 3vw; /* Adjust the width for smaller screens */

        padding-right: 5px;
    }

    @media (max-width: 500px) {
        width: 5vw; /* Adjust the width for smaller screens */
        height: 5vw; /* Adjust the width for smaller screens */

        padding-right: 5px;
    }
}

.right_b-text {
    color: white;
}

/* Rest of your CSS... */











