@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@100;300;400;500;600;700&display=swap');

/* font-family: 'Josefin Sans', sans-serif; */

.footer-wrapper {
    background-color: var(--primary-blue);
    color: var(--primary-white);    
}


.footer-wrap {
    width: 80%;
    height: 4vh;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;    
}

.footer-content {
    font-size: 1.4rem;
    width: 33.3%;
    text-align: center;
}

.footer-content:first-child {
    text-align: left;
}

.last-foot {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    text-align: right;
    font-family: 'Josefin Sans', sans-serif;;
} 

.last-foot img {
    margin-left: .5rem;
}

div.footer-content:nth-child(1) > a:nth-child(2) {
    text-decoration: none;
    color: var(--primary-white);
    margin-left: .5rem;
}

@media screen and (max-width: 650px){

    .footer-content:not(:first-child) {
        display:none
    }

    .footer-content:first-child {
        width: 100%;
        text-align: center;
    }

}
