/* Start custom CSS for html, class: .elementor-element-a2a4d06 */.map-placeholder-wrap {
    text-align: center;
}

.map-placeholder-wrap h2{
        font-size: 17px !important;
    font-weight: bold;
}

.map-icon-container {
    display: flex
;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    background: #026257;
    border-radius: 50%;
    margin: 30px auto 30px;
    position: relative;
    animation: pulse 2s ease-in-out infinite;
}

.map-icon-container::after {
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    border: 2px solid #026257;
    border-radius: 50%;
    opacity: 0.3;
    animation: ripple 2s ease-out infinite;
}

.map-icon {
    width: 50px;
    height: 50px;
    fill: white;
}

.subtitle {
    font-size: 14px;
    font-weight: bold;
}

.description {
    
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes ripple {
    0% { transform: scale(1); opacity: 0.3; }
    100% { transform: scale(1.2); opacity: 0; }
}/* End custom CSS */