.triangle {
    position: absolute;
    left: 50%;
    width: 30px;
    height: 30px;
    transform: translate(-50%, -50%);
    background-size: contain;
    animation: tri-move 1s ease-in-out infinite alternate;
    background-image: url('https://candlewickinternational.com/main/wp-content/themes/candlewick/good-mountain/images/marker-1.svg');
}

.speech_bubble {
    width: 400px;
    height: 100px;
    font-size: 20px;
    border-radius: 10px;
    padding: 20px 20px;
    text-align: center;
    font-family: "Nunito Sans";
    border: 2px solid #000;
    background-color: rgba(255, 255, 255, 0.5);
}

.triangle-container-01, .triangle-container-02, .triangle-container-03, .triangle-container-04,
.triangle-container-05, .triangle-container-06, .triangle-container-07, .triangle-container-08 {
    position: absolute;
    display: none;
}
 
#tri_speech_bubble-01, #tri_speech_bubble-02, #tri_speech_bubble-03, #tri_speech_bubble-04,
#tri_speech_bubble-05, #tri_speech_bubble-06, #tri_speech_bubble-07, #tri_speech_bubble-08 {
    left: 15px;
    z-index: 5;
    display: none;
    cursor: pointer;
    position: absolute;
    transform: translate(-50%, -50%);
}

#tri_speech_bubble-01 a, #tri_speech_bubble-02 a, #tri_speech_bubble-03 a, #tri_speech_bubble-04 a, 
#tri_speech_bubble-05 a, #tri_speech_bubble-06 a, #tri_speech_bubble-07 a, #tri_speech_bubble-08 a {
    text-decoration: none;
    color: black;
    font-weight: 500;
}

@keyframes tri-move {
    from {
       transform: translateY(0);
    }
   
    to {
       transform: translateY(-10px);
    }
}