.map{
    background-color: var(--grey);
    flex: auto;
    position: relative;
    margin-top: 121px;
}
#mapInit{
    min-height: 415px;
}
#mapInit .load{
    animation: pulse 2s infinite alternate ease-in-out;
    max-width: 150px;
    filter:grayscale(200);
}
.map .sppb-row-container{
    top: 0;
    bottom: 0;
    margin: 0 auto;
    left: 0;
    right: 0;
    position: absolute;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    z-index: inherit;
}
.map .sppb-row-container .infomap{
    z-index: 100;
    border-radius: 15px;
    background: var(--c1);
    padding: 55px 55px 40px;
    color: var(--white);
}
.map .infomap h4{
    font-weight: 700;
    font-size: 25px;
    line-height: 35px;
}
.map .infomap h4 strong{
    color: var(--main-color);
    font-weight: 700;
}
.map .infomap p{
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    margin-top: 13px;;
}
.map .infomap a{
    border: 2px solid var(--main-color);
    border-radius: 30px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    min-width: 170px;
    justify-content: center;
    padding: 0 20px;
    margin-top: 20px;
    color: var(--white);
}
.map .infomap a:hover{
    background-color: var(--main-color);
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.2);
    }
}