@font-face {
    font-family: 'SourceSerif4-Light'; 
    src: url('../fonts/SourceSerif4-Light.ttf') format('opentype'); 
    font-weight: normal; 
    font-style: normal;
    font-display: swap;
  }

.logof img{
    width: 7.5rem;
}

footer{
    background-color: #242729;
    height: auto;
    width: 100%;
    font-family: 'TT_Prosto_Sans_Trial_Light', sans-serif;
    padding-top: 5px;
    color: #fff;
}
.footer-content{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}
.footer-content p{
    max-width: 500px;
    margin: 10px auto;
    line-height: 22px;
    font-size: 14.5px;
}
.socials{
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 5px 0 0 0;
    gap: 20px;
    padding: 0;
}
.socials a{
    text-decoration: none;
    color: #fff;
}
.socials a i{
    font-size: 1.1rem;
    transition: color .4s ease;
}
.socials a:hover i{
    color: #708564;
}
.footer-bottom{
    width: 100vw;
    padding: 0 0 10px 0;
    text-align: center;
}
.footer-bottom p{
    font-size: 14.5px;
    word-spacing: 2px;
    text-transform: capitalize;
}
.footer-bottom span{
    font-family: 'SourceSerif4-Light';
    text-transform: uppercase;
    opacity: .4;
    font-size: 17px;
    text-decoration: underline;
}
.footer-bottom a{
    text-decoration: none;
    color: unset;
}
.footerHighlight{
    color: #fff;
    font-family: unset;
    text-transform: uppercase;
    opacity: 1 !important;
    font-weight: unset;
    text-decoration: underline;
}

#footerBr{
    display: none;
}

@media (max-width: 600px) {
    .footer-bottom{
        margin-top: 10px;
    }
    .footer-bottom p{
        font-size: 13px;
        word-spacing: 2px;
        text-transform: capitalize;
        width: 95%;
        margin: 0 auto;
        line-height: 16px;
    }
    .footerHighlight{
        color: #fff;
        font-family: unset;
        text-transform: uppercase;
        opacity: 1 !important;
        font-weight: unset;
        text-decoration: underline;
    }
    #footerBr{
        display: block;
    }
    .footer-content p{
        max-width: 500px;
        margin: 10px auto;
        line-height: 18px;
        font-size: 13px;
        width: 95%;
    }
    .socials{
        margin: 0;
    }
    .socials a:hover i{
        color: white;
    }
}