.mywallet-footer {
    position: relative;
    padding: 5% 0 2% 0;
    background: url("../imgs/background/bg-footer.svg");
    background-size: cover;

    img {
        width: 25%;
    }
    .address {
        width: 50%;
    }

    .footer-head-link {
        position: relative;
        display: inline-block;
    }
    .footer-head-link:after {
        content: "";
        display: block;
        width: 100%; /* Adjust width as needed */
        height: 2px; /* Adjust height as needed */
        background-color: #3b68f3; /* Adjust color as needed */
        position: absolute;
        left: 0;
        bottom: -5px; /* Adjust to place the line appropriately */
    }
    .footer-copy-right {
        padding-top: 5% !important;

        .on-top-line {
            border: 1px black;
            border-style: dashed;
        }
    }
}

@media (max-width: 991px) {
    .mywallet-footer {
        .address {
            width: 75%;
        }
    }
}

@media (max-width: 767px) {
    .mywallet-footer {
        .address {
            width: 100%;
        }
    }
}
