#ia-footer-map {
    aspect-ratio: 16 / 9;
    width: 100%;
}

#ia-footer-map__marker {
    display: flex;
    justify-content: center;
    align-items: center;

    padding: 2px;

    aspect-ratio: 1 / 1;

    background-color: var(--e-global-color-accent);

    position: relative;
}

#ia-footer-map__marker::before {
    content: '';

    position: absolute;
    left: 50%;
    bottom: 0;

    aspect-ratio: 1 / 1;
    width: 8px;

    transform-origin: center;
    transform: translate(-50%, 50%) rotate(45deg);;
    /* transform: rotate(45deg); */

    background-color: var(--e-global-color-accent);

    z-index: -1;
}

#ia-footer-map__marker__img {
    width: 32px;
}


/* MOBILE BEGIN */
@media (max-width: 767px) {
    #ia-footer-map {
        aspect-ratio: 1 / 1;
        width: 100%;
    }
}
/* MOBILE END */