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 > ul{
    width: 220px;
    height: 36px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 35px;
}

footer > ul li{
    width: 100%;
    height: 100%;
}

footer > ul li > 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 > p{
    font-size: 12px;
    font-weight: 500;
    color: var(--gray-color);
    margin: 15px 0 12px;
    text-align: center;
    line-height: 22px;
    width: 100%;
}

footer > 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 > p br{
        display: none;
    }
}