.footer{
    /* background-color:rgb(240, 240, 240); */
    background-color:rgb(250, 250, 250);
    padding-top:3rem;
}

.footerIcons{
    width:max-content;
    margin:1rem auto;
}
.footer ul{
    list-style: none;
    width:max-content;
}

.footerIcons li{
    width:40px;
    height:40px;
    display:inline-block;
    margin:0.5rem 0.2rem;
}
.footerIcons img{
    width:100%;
    height:100%;
    object-fit: cover;
}
.footer div:nth-of-type(2){
    display:grid;
    display:-ms-grid;
    display:-moz-grid;
    grid-template-columns: 30% 30% 30%;
    justify-content: center;
    margin-top:1rem;
    padding-bottom:3rem;
}
@media (max-width:883px){
    .footer div:nth-of-type(2){
        grid-template-columns: 40% 40%;
    }
    .footer div:nth-of-type(2) ul{
        display:block;
        padding-bottom:2rem;
    }
}
@media (max-width:630px){
    .footer div:nth-of-type(2){
        grid-template-columns:auto;
        grid-template-rows:auto auto auto;
    }
}
.footer div:nth-of-type(2) ul{
    text-align:center;
    margin:0rem auto;
}
.footer div:nth-of-type(2) ul a{
    display:block;
    color:black;
    text-decoration:none;
    font-size:1.2rem;
    margin-bottom:1rem;
}
.footer div:nth-of-type(2) ul li{
    font-size:1.7rem;
    font-weight:500;
    margin-bottom:1rem;
}
.footerContacts{
    /* width:max-content; 
    margin:1rem auto;
    text-align:center;*/
}
/*.footerContacts a{
    width:max-content;
    text-decoration:none;
    font-size:1rem;
}*/
.footerCopyright{
    background-color:rgb(15, 15, 15);
    color:rgb(210, 210, 210);
    text-align:center;
    padding:0.5rem;
    font-size:1rem;
}