.footer{
    width: 100%;
    background-color: #426a68;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
}



.footer-1{
    width: 40%;
    height: 100%;
    /* background-color: red; */
    display: flex;
    justify-content: center;
    align-items: center;

}

.footer-2{
    width: 70%;
    height: 100%;
    /* background-color: rgb(145, 95, 95); */
    display: flex;
    align-items: center;
}

.footer-1 div{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 17%;
}

.footer-1 img{
    width: 25px; 
}

.footer-2 h6{
    margin-left: 100px;
    color: rgb(25, 26, 28);
}

@media screen and (max-width:500px){
    .footer{
        flex-direction: column;
        height: 150px;
    }
    .footer-2{
        align-items: center;
        justify-content: center;
        width: 100%;
    }
    .footer-1 {
        width: 99%;
        height: 100%;
        /* background-color: red; */
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .footer-2 h6{
        margin-left: 0px;
        color: rgb(25, 26, 28);
        text-align: center;
    }
    .footer-1 div{
        display: flex;
        justify-content: space-evenly;
        align-items: center;
        width: 47%;
    }
}