body {
    background-color: #000847;
    background-image: url(fondo.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom;
    height: 100vh;
    overflow: hidden;
}

body {
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-container {
    padding: 3.2rem 0.8rem;
    position: relative;
    display: inline-block;
    left: 57%;
    transform: translateX(-50%);
    z-index: 20;
    overflow: hidden;
}

.plant_one {
    position: absolute;
    bottom: -4rem;
    left: 0;
    width: 40%;
    overflow: hidden;
}

.plant_cuatro {
    overflow: hidden;
    position: absolute;
    bottom: -4rem;
    right: 0;
    width: 40%;
}

.plant_dos {
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
}

.plant_tres {
    overflow: hidden;
    position: absolute;
    top: -1rem;
    right: 0;
    width: 40%;
}

#logo {
    overflow: hidden;
    position: absolute;
    top: 32%;
    left: 17%;
    width: 30%;
}

#planta {
    overflow: hidden;
    animation: swing ease-in-out 1s infinite alternate;
    transform-origin: center -20px;
    transform-box: fill-box;
    float: left;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5);
}

.hoja-1 {
    animation: swing ease-in-out 1s infinite alternate;
    transform-origin: center -20px;
    transform-box: fill-box;
    float: left;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5);
}

path {
    stroke-width: 1px;
}

.cls-3 {
    -webkit-animation: shake-bottom 6s cubic-bezier(0.455, 0.03, 0.515, 0.955) infinite both;
    animation: shake-bottom ease-in-out 6s cubic-bezier(0.455, 0.03, 0.515, 0.955) infinite both;
    transform-box: fill-box;
}

.cls-2 {
    -webkit-animation: shake-bottom ease-in-out 6s cubic-bezier(0.455, 0.03, 0.515, 0.955) infinite both;
    animation: shake-bottom 6s cubic-bezier(0.455, 0.03, 0.515, 0.955) infinite both;
    transform-box: fill-box;
}

.hoja-2 {
    -webkit-animation: shake-bottom ease-in-out 6s cubic-bezier(0.455, 0.03, 0.515, 0.955) infinite both;
    animation: shake-bottom 6s cubic-bezier(0.455, 0.03, 0.515, 0.955) infinite both;
    transform-box: fill-box;
}

.map-container img {
    width: 100%;
}

.map-container .point {
    cursor: pointer;
    position: absolute;
    width: 1.6rem;
    height: 1.6rem;
    background-color: #1c1e61;
    border-radius: 50%;
    transition: all 0.3s ease;
    will-change: transform, box-shadow;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 0 rgba(249, 194, 8, 0.4);
    animation: pulse 3s infinite;
}

.map-container .point:hover {
    animation: none;
    transform: translate(-50%, -50%) scale3D(1.35, 1.35, 1);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}

.map-container .redominicana {
    top: 19.5%;
    left: 57%;
}

.map-container .haiti {
    top: 19.5%;
    left: 55%;
}

.map-container .venezuela {
    top: 32%;
    left: 60%;
}

.map-container .d63 {
    top: 36%;
    left: 69%;
}

.map-container .uruguay {
    top: 72.5%;
    left: 76%;
}

.map-container .colombia {
    top: 35%;
    left: 51%;
}

.map-container .paraguay {
    top: 62%;
    left: 70%;
}

.map-container .mexico {
    top: 17%;
    left: 20%;
}

.map-container .centroamerica {
    top: 25%;
    left: 37%;
}

.map-container .peru {
    top: 47%;
    left: 47%;
}

.map-container .ecuador {
    top: 40%;
    left: 45%;
}

.map-container .chile {
    top: 68%;
    left: 58%;
}

.map-container .bolivia {
    top: 56%;
    left: 62%;
}

.map-container .argentina {
    top: 72%;
    left: 67%;
}

.map-container .brasil-1 {
    top: 42%;
    left: 67%;
}

.map-container .brasil-2 {
    top: 52%;
    left: 75%;
}

.map-container .brasil-3 {
    top: 57%;
    left: 86%;
}

.map-container .brasil-4 {
    top: 47%;
    left: 83%;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(28, 30, 97, 0.5);
    }
    70% {
        box-shadow: 0 0 0 25px rgba(0, 172, 193, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 172, 193, 0);
    }
}

@-webkit-keyframes shake-bottom {
    0%,
    100% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
        -webkit-transform-origin: 50% 100%;
        transform-origin: 50% 100%;
    }
    10% {
        -webkit-transform: rotate(2deg);
        transform: rotate(2deg);
    }
    20%,
    40%,
    60% {
        -webkit-transform: rotate(-4deg);
        transform: rotate(-4deg);
    }
    30%,
    50%,
    70% {
        -webkit-transform: rotate(4deg);
        transform: rotate(4deg);
    }
    80% {
        -webkit-transform: rotate(-2deg);
        transform: rotate(-2deg);
    }
    90% {
        -webkit-transform: rotate(2deg);
        transform: rotate(2deg);
    }
}

@keyframes shake-bottom {
    0%,
    100% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
        -webkit-transform-origin: 50% 100%;
        transform-origin: 50% 100%;
    }
    10% {
        -webkit-transform: rotate(2deg);
        transform: rotate(2deg);
    }
    20%,
    40%,
    60% {
        -webkit-transform: rotate(-4deg);
        transform: rotate(-4deg);
    }
    30%,
    50%,
    70% {
        -webkit-transform: rotate(4deg);
        transform: rotate(4deg);
    }
    80% {
        -webkit-transform: rotate(-2deg);
        transform: rotate(-2deg);
    }
    90% {
        -webkit-transform: rotate(2deg);
        transform: rotate(2deg);
    }
}

@keyframes swing {
    0% {
        transform: rotate(9deg);
    }
    100% {
        transform: rotate(-9deg);
    }
}

@media only screen and (max-width: 600px) {
    #logo {
        position: absolute;
        top: 59%;
        left: 7%;
        width: 39% !important;
        display: block;
    }
    .plant_tres {
        position: absolute;
        top: -1rem;
        right: 0;
        width: 10% !important;
    }
    svg#svg1926 {
        width: 350px;
        height: 429px;
        margin-left: -10%;
    }
    body {
        height: 200vw;
        overflow-y: hidden;
        overflow-x: hidden;
    }
    .map-container .point {
        cursor: pointer;
        position: absolute;
        width: 0.8rem;
        height: 0.8rem;
        background-color: #1c1e61;
        border-radius: 50%;
        transition: all 0.3s ease;
        will-change: transform, box-shadow;
        transform: translate(-50%, -50%);
        box-shadow: 0 0 0 rgba(249, 194, 8, 0.4);
        animation: pulse 3s infinite;
    }
    .map-container .redominicana {
        top: 20.5%;
        left: 46%;
    }
    .map-container .haiti {
        top: 20.5%;
        left: 44%;
    }
    .map-container .venezuela {
        top: 33%;
        left: 51%;
    }
    .map-container .d63 {
        top: 34%;
        left: 59%;
    }
    .map-container .uruguay {
        top: 69.5%;
        left: 67%;
    }
    .map-container .colombia {
        top: 34%;
        left: 41%;
    }
    .map-container .paraguay {
        top: 62%;
        left: 70%;
    }
    .map-container .mexico {
        top: 17%;
        left: 11%;
    }
    .map-container .centroamerica {
        top: 30%;
        left: 30%;
    }
    .map-container .peru {
        top: 47%;
        left: 37%;
    }
    .map-container .ecuador {
        top: 40%;
        left: 35%;
    }
    .map-container .chile {
        top: 68%;
        left: 48%;
    }
    .map-container .bolivia {
        top: 57%;
        left: 52%;
    }
    .map-container .argentina {
        top: 72%;
        left: 56%;
    }
    .map-container .brasil-1 {
        top: 40%;
        left: 57%;
    }
    .map-container .brasil-2 {
        top: 50%;
        left: 65%;
    }
    .map-container .brasil-3 {
        top: 53%;
        left: 77%;
    }
    .map-container .brasil-4 {
        top: 47%;
        left: 83%;
    }
    .plant_tres {
        position: absolute;
        top: -1rem;
        right: -14px;
        width: 80% !important;
    }
    .plant_dos {
        position: absolute;
        top: 0;
        left: 0;
        width: 104%;
    }
    .plant_one {
        position: absolute;
        bottom: 0rem;
        left: 0;
        width: 104%;
    }
    .plant_cuatro {
        position: absolute;
        bottom: 0rem;
        right: 0;
        width: 107%;
    }
}