.footer .footer-bg-wrapper {
    max-height: 400px;
}
.footer .footer-bg-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
    z-index: -1;
    filter: blur(2px) brightness(30%);


}
.footer {

    position: relative;
    width: 100%;

}
.footerContainer {
    width: 90%;
    display: flex;
    justify-content: space-between;
    padding: 2em 0;
    margin: 0 auto;
}
.footer .footerContainer img {
    max-width: 200px;
    border-radius: 20px;
}
.footerContainer .map {
    cursor: pointer;
}

.link-cols a {
    display: block;
    text-decoration: none;
    color: #d5d4d4;
    transition: color 0.3s ease-in-out;
    margin-bottom: 0.25em;
}
.link-cols a:hover {
    text-decoration: none;
    color: white;
}

.link-cols p {
    color: white;
}
.link-cols span {
    display: block;
    color: #429eb8;
    margin-bottom: 0.5em;
    font-size: 18px;
}
.footer .link-cols {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4em;
}

@media screen and (max-width: 1200px) {
    .footerContainer {
        flex-direction: column;
        align-items: center;
    }
    .link-cols {
        order: -1;
    }
}
@media screen and (max-width: 550px) {
    .footerContainer {
        flex-direction: column;
        align-items: flex-start;
    }
    .footer .link-cols {
        flex-direction: column;
        align-items: flex-start;
        gap: 4em;
    }

}