.footer_container{
    background-color: var(--primary-color);
    color: #fff;;
}
.footer_grid{
    display: grid;
    grid-template-columns: 35% 35% 25%;
    justify-content: space-between;
}
.footer_details{
    display: grid;
    grid-template-columns: 15% 80%;
    justify-content: space-between;
}
.copyright{
    font-size: 14px;
    text-transform: uppercase;
    display: block;
    text-align: center;
    margin-top: 6em;
    font-weight: 300;
}
@media (max-width: 768px){
    .footer_grid{
        display: block;
    }
}