.ec-footer {

    background: #000;
    color: #fff;
    font-family: 'DM Sans', sans-serif;

}

.ec-container {

    max-width: 1280px;
    margin: auto;
    padding: 70px 25px;

}

.ec-footer-map {

    position: relative;
    height: 250px;
    overflow: hidden;

}

.ec-footer-map iframe {

    width: 100%;
    height: 100%;
    border: 0;
    opacity:80%;
    filter: invert(.9) hue-rotate(180deg);

}

.ec-footer-overlay {

    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 60%, #000);
    pointer-events: none;

}

.ec-footer-grid {

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
    margin-bottom: 60px;

}

.ec-brand {

    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;

}

.ec-brand img {
    width: auto;
    height: 52px;
}

.ec-brand h3 {

    margin: 0;
    font-size: 20px;

}

.ec-brand span {

    color: #999;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;

}

.ec-footer p {

    color: #99a1af;
    line-height: 1.8;
    font-size: 14px;

}

.ec-footer h4 {

    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;

}

.ec-footer ul {

    list-style: none;
    padding: 0;
    margin: 0;

}

.ec-footer li {

    margin-bottom: 12px;
    color: #bbb;

}

.ec-footer a {

    color: #bbb;
    text-decoration: none;
    transition: .3s;
    font-size: 14px;

}

.ec-footer a:hover {

    color: #00A650;

}

.ec-social {

    display: flex;
    gap: 12px;
    margin-top: 25px;

}

.ec-social a {

    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(255, 255, 255, .08);

}

.ec-social a:hover {
    
    background: #00A650;
    color: #fff;
    
}
.ec-social a:hover path{
    fill: #fff;
}

.ec-contact-col{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
}

.ec-contact li {

    margin-bottom: 18px;
    display: flex;
    align-items: center;
    font-size: 14px;
    gap: 12px;

}

.ec-social{
    display: flex;
    gap: 12px
}

.ec-social svg{
    width: 20px;
}

.ec-footer-bottom {

    border-top: 1px solid rgba(255, 255, 255, .1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;

}

.ec-footer-bottom p {

    margin: 0;
    color: #777;

}

.ec-footer-bottom div {

    display: flex;
    gap: 20px;

}

.ec-footer-bottom a {

    font-size: 14px;
    color: #888;

}

@media(max-width:992px) {

    .ec-footer-grid {

        grid-template-columns: 1fr 1fr;

    }

}

@media(max-width:768px) {

    .ec-footer-grid {

        grid-template-columns: 1fr;

    }

    .ec-footer-bottom {

        flex-direction: column;
        text-align: center;

    }

}