footer{
    font-family: roboto;
    color: #D1D1D1;
    padding-top: 3.5rem;
    background-color: #2B2B2B;
}

footer h1 a, footer h2, footer h3{
    font-family: Oswald;
    color: #D1D1D1;
}

footer a{
    text-decoration: none;
    color: var(--primary-color);
}

footer h1 a{
    color: var(--primary-color);
    font-size: 5.8rem;
}

footer li{
    list-style: none;
}

footer img {
    padding: .5rem;
    padding-right: 2.5rem;

    border-radius: .8rem;

    background-color: var(--primary-color);
}

footer .container{
    display: flex;
    flex-direction: column;
    max-width: 115rem;
}

footer .footer-links{
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 6rem;
    align-items: baseline;
   
}

footer .footer-contacts{
    max-width: 40rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

footer .footer-contacts p, footer .newsletter p{
    font-size: 2rem;
}

footer .footer-contacts li{
    display: flex;
    align-items: center;

    margin-bottom: 1rem;
}

footer .footer-contacts li p{
    font-size: 1.6rem;
    
}

footer .footer-contacts li a{
    color: #fff;
}

.icons__footer {
    display: flex;
    gap: 15px;
}

footer .others-links h2,
footer .newsletter h2{
    font-size: 2.8rem;
    margin-bottom: 2rem;
}

footer .others-links h3{
    text-transform: uppercase;
    font-size: 1.8em;
    margin-bottom: 2rem;
}

footer .others-links div{
    display: flex;
    gap: 3rem;
}

footer .others-links div li
{
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
}

footer .footer-links .newsletter{
    display: flex;
    flex-direction: column;
}

footer .newsletter{
    max-width: 35rem;
    
}


footer .rights{
    font-size: 1.6rem;
    color: fff;

    border-top: .1rem solid white;

    line-height: 3.2rem; /* 200% */
    margin-top: 3rem;

    max-width: 60rem;

    align-self: center;
}

footer .rights span{
    color: var(--primary-color);
}

@media (max-width: 769px) {
    footer .footer-contacts li p{
        font-size: 1.4rem;
        text-align: initial;
    }

    footer .footer-contacts {
        margin: 0 auto;
    }

    .icons__footer {
        display: flex;
        gap: 15px;
        margin: 0 auto;
    }
    
    .footer-logo {
        margin: 0 auto;
    }
}