<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">footer{
    width: 100%;
    padding: 80px 40px 95px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

footer .footer__logo{
    width: 128px;
    height: auto;
    display: block;
}

footer &gt; ul{
    width: 220px;
    height: 36px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 35px;
}

footer &gt; ul li{
    width: 100%;
    height: 100%;
}

footer &gt; ul li &gt; a{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 500;
    color: var(--white-color);
    border: 1px solid #343434;
}

footer &gt; p{
    font-size: 12px;
    font-weight: 500;
    color: var(--gray-color);
    margin: 15px 0 12px;
    text-align: center;
    line-height: 22px;
    width: 100%;
}

footer &gt; strong{
    font-size: 12px;
    font-weight: 500;
    color: var(--white-color);
}

@media screen and (max-width: 768px){
    footer{
        padding: 80px 20px 95px;
    }
}

@media screen and (max-width: 680px){
    footer{
        padding: 40px 20px;
    }
}

@media screen and (max-width: 500px){
    footer &gt; p br{
        display: none;
    }
}</pre></body></html>