   footer {
        background-color: white;
        padding: 15px;
    }

    .footer_content {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
    }

    .footer_logo {
        height: 40px;
        margin-top: 10px;
        margin-bottom: 30px;
    }

    .footer_links button {
        position: relative;
        background: transparent;
        padding: 9px 10px;
        overflow: hidden;
        border: none;
        z-index: 1;
        border: 1px solid black;
        cursor: pointer;
        border-radius: 50px;
        color: black;
        font-size: 25px;
    }

    .footer_links button::before {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 0%;
        background: rgb(10 228 72);
        z-index: -1;
        transition: height 0.3s ease;
        color: black !important;

    }

    .footer_links button:hover::before {
        height: 100%;
        color: black !important;
    }

    .newsletter-box {
        margin-top: 20px;
        display: flex;
        align-items: center;
        background: #ffffff;
        border: 1px solid black;
        padding: 5px 7px;
        width: fit-content;
        border-radius: 40px;
        gap: 13px;
    }

    .newsletter-box input {
        border: none;
        outline: none;
        font-size: 12px;
        font-family: "Montserrat Alternates", sans-serif !important;
        background: transparent;
    }

    .newsletter-box button {
        width: 32px;
        border: 1px solid black !important;
        height: 32px;
        background: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
    }

    .newsletter-box button i {
        color: black;
        font-size: 16px;
    }

    .footer_location_text{
        font-weight: 500;
        margin-top: 30px;
        margin-bottom: 30px;
        text-align: center;
    }

    .phone-box{
        padding: 10px 0px;
        justify-content: center;
        display: flex;
        text-decoration: none;
        color: black;
    }

    .phone-box a{
        color: black;
    }
