.footer {
    background-color: #ece6e6;
    color: #0b0101;
    /* padding: 40px 0; */
    /* font-size: 14px; */
    position: relative;
}
.container {
    /* max-width: 1200px; */
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    /* justify-content: space-between; */
}
.row {
    text-align: center;
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}
.footer-section {
    flex: 1 1 200px;
    text-align: center;
    margin: 20px;
}
.footer-section h4 {
    text-align: center;
    font-size: 16px;
    margin-bottom: 10px;
}
.social-media img, .payments img {
    /* width: 70px; */
    margin: 5px;
}
.social-media {
    text-align: center;
    flex: 33%;
}
.contact-info {
    text-align: center;
    flex: 33%;
}
.payments {
    text-align: center;
    flex: 33%;
}
.footer-bottom {
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    /* padding-top: 20px; */
    border-top: 1px solid #444;
    position: absolute;
    bottom: 0;
    width: 98%;
}
@media (max-width: 768px) {
    .row {
        flex-direction: column;
        margin-bottom: 0px;
    }
    .footer-section {
        text-align: center;
    }
    .contact-info {
        text-align: center;
    }
    .social-media {
        text-align: center;
    }
    .payments {
        text-align: center;
    }
    .footer-bottom {
        position: relative;
        padding-top: 20px;
    }
}