footer {
    /* background: #560834; */
    background-image: url('../assets/images/footer-bg.webp');
    background-repeat: no-repeat;
    background-size: cover;
    color: white;
    text-align: center;
    padding-top: 50px;
    img{
        width: 100%;
        height: 50px;
        object-fit: contain;
        /* margin-bottom: 70px; */
    }
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    margin: 0 120px;
    font-family: 'Montserrat';
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
}
.footer-links a:hover {
    text-decoration: none;
    color: #fff;
}
.footer-bottom {
    background-color: rgba(255, 255, 255, 0.3);
    padding: 10px 0;
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 50px;
    span {
        font-family: 'Montserrat';
        font-size: 16px;
        color: #fff;

    }
    a{
        text-decoration: none;
        font-family: 'Montserrat';
        font-size: 16px;
        color: #fff;
    }
}


@media (max-width:768px) {
    .footer-bottom {
        background-color: rgba(255, 255, 255, 0.3);
        padding: 10px 0;
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-top: 40px;
        span {
            font-size: 13px;
    
        }
        a{
            font-size: 13px;
        }
    }

    footer {
        color: white;
        text-align: center;
        padding-top: 40px;
        background-image: url('../assets/images/mb-footer-bg.webp');
        background-repeat: no-repeat;
        background-size: cover;
        img{
            width: 100%;
            height: 37px;
            object-fit: contain;
            margin-bottom: 0px;
        }
    }
    .footer-links a {
        margin: 20px 0px;
        font-size: 14px;
        display: block;
    }
}