
.container-boton{
    background-color: #2e6329;
    border: 1px solid #fff;
    position: fixed;
    z-index: 999;
    border-radius: 50%;
    bottom: 16px;
    right: 16px;
    padding: 16px;
    transition: ease 0.3s;
    animation: efecto 1.2s infinite;
}

.container-boton:hover{
    transform: scale(1.1);
    transition: 0.3s;
}

.arial{
    font-family: 'Open Sans', sans-serif;}
.boton{
    width: 35px;
    transition: ease 1s;
}

.map-cont{
    height:900px;
    justify-content: space-evenly;
}
.text1{
    align-items:right;
    display: inline-block;
    height: 300px;
    font-size: small;
    border-top: 10px;
    padding: 60px;
    border: 1px 1px 1px 1px;
}
.map{
    display: inline-block;
    align-items:left;
    width: 100%;    
    height: 300px;
    border-top: 10px;
    padding: 60px;

    border: 1 1 1 1;
}
@keyframes efecto{
    0%{
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.75);
    }
    100%{
        box-shadow: 0 0 0 16px rgba(0, 0, 0, 0);
    }
}