.footer {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 40px;
    background-color: #e6e6e6f3;
    color: #111;
    z-index: 0;
    /* Optional */
    overflow: hidden;
}

.footer::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("https://biofly-zone.b-cdn.net/img/biofly/images/logo-full.png");
    background-repeat: no-repeat;
    background-position: right;
    filter: blur(20px);
    z-index: -2;
}

.footer::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.footer-column {
    flex: 1 1 220px;
    margin: 10px;
}

.footer-column h3 {
    color: #7aaf3e;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.footer-column p,
.footer-column li,
.footer-column a {
    font-size: 0.95rem;
    color: #111;
    line-height: 1.5;
    text-decoration: none;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
    border-bottom: 1px solid #999;
    padding-bottom: 5px;
}

.footer .location {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;

}


.footer .socials-container {
    display: flex;
    flex-direction: column;
    margin-top: 15rem;
    gap: 20px;
}

.socials-container .socials {
    display: flex;
    flex-direction: row;
    gap: 30px;
    z-index: 100;
}

.footer .socials-container .socials .icon-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    background: none;
    border-radius: 50px;
    transition: 0.2s ease-out;
    cursor: pointer;
    border: none;
    text-decoration: none;
    background-color: rgba(255, 255, 255, 0.644);
    font-size: 1.2rem;
    padding: 15px;
    overflow: hidden;
}

.footer .socials-container .abz-icon {
    height: 30px;
}

.footer .socials-container .abz-icon-a {
    padding: 10px !important;
}

.icon-btn:hover {
    transform: scale(1.2);
    background-color: rgb(255, 255, 255);
}

.footer .socials-container i {
    color: #52742c;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.contact-form input {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    background-color: rgba(204, 204, 204, 0.466);
}

.contact-form button {
    background: #7aaf3e;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 10px;
    transition: background 0.3s ease;
}

.contact-form button:hover {
    background: #427536;
}

.footer .rights {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.footer hr {
    width: 100%;
    border: none;
    height: 1px;
    background-color: #111;
    margin: 1rem 0;
}


@media (max-width: 1000px) {

    .footer .socials-container {
        margin: 2rem 0;
    }

    .footer::before {
        background-position: center;
        top: 25%;
    }

}

@media (max-width: 700px) {

    .footer .rights{
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }

    .footer .rights .legal{
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }

     .footer .rights .property{
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        gap: 2rem;
    }

    .footer .rights .property .design{
        text-align: end;
    }

}