/* ========== footer ========== */
footer {
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    color: whitesmoke;
    position: relative;
    display: inline-block;
    font-size: 0.8em;
    text-align: left;
}

#footer1,
#footer2 {
    width: 100%;
    padding: 1%;
    float: left;
}

#footer3 {
    width: 100%;
    padding: 1%;
    float: left;
}

#footer1 a,
#footer2 a,
#footer3 a,
#footer4 a {
    text-decoration: none;
    color: whitesmoke;
    text-align: left;
    cursor: pointer;
}

#footer1 a:hover,
#footer2 a:hover,
#footer3 a:hover,
#footer4 a:hover {
    color: #9a9af7;
}

footer b {
    display: inline-block;
}

.footer-grid {
    width: 100%;
    display: grid;
    grid-template-columns: 1.1fr 1fr 1fr;
    gap: 1em;
    justify-items: flex-start;
    margin: 0.5em;
}

.fii-pregatit {
    width: 7rem;
    height: auto;
    border-radius: 10px
}

.design {
    background-color: #0046FF;
    color: whitesmoke;
    width: 100%;
    position: relative;
    text-align: center;
    display: inline-block;
    font-size: 0.7rem;
    line-height: 1.4;
}

.design a {
    text-decoration: none;
    color: whitesmoke;
}

.design p {
    text-align: center;
}

/* ******************************* MOBIL ***************************** */
@media (max-width: 640px) {

    /* ========== footer ========== */

    footer {
        background-color: rgba(0, 0, 0, 0.5);
        color: whitesmoke;
        display: inline-block;
        font-size: 0.7rem;
        text-align: left;
    }

    .footer-grid {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr;
        gap: 1rem;
        /* justify-items: flex-start; */
        /* margin: 0.5em; */
    }

    .facebook_like {
        display: none;
    }

}


/* ******************************* TABLETA ***************************** */
@media (min-width: 641px) and (max-width: 980px) {
    footer {
        width: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        color: whitesmoke;
        position: relative;
        display: inline-block;
        font-size: 1.5vw;
        text-align: left;
    }
}


/* ******************************* PC ***************************** */
@media (min-width: 981px) {
    footer {
        position: relative;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        color: whitesmoke;
        margin: auto;
        display: inline-block;
        font-size: 1vw;
        text-align: left;
        /* margin-top: 10%; */
    }
}