.footer {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 5%;
    grid-row-gap: 5%;
    padding: 5% 5% 2% 5%;
    background-color: black;
    color: white;
}
.foot1 {
    grid-area: 1 / 1 / 2 / 2;
}
.foot2 {
    grid-area: 1 / 2 / 2 / 3;
}
.foot3 {
    grid-area: 1 / 3 / 2 / 4;
}
.foot4 {
    grid-area: 1 / 4 / 2 / 5;
}
.footer a{
    color: lightgray;
}
.footer a:hover{
    color: white;
}
.footer p{
    margin-bottom: 5%;
}
.footer input{
    margin: 1% 0 1% 0;
    padding: 1% 4% 1% 4%;
    border-radius: 0px;
    border: 0;
}
.footer button{
    background-color: #A30821FF;
    border-radius: 0px;
    color: white;
    border: 0;
    padding: 1% 5% 1% 5%;
}
.rights_box{
    background-color: black;
    color: white;
    text-align: center;
    padding: 2% 0 2% 0;
}
.rights_box hr{
    margin: 0;
}
@media (max-width: 950px) {
    .footer {display: block;}
}