.contact_buttons_container{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding-bottom: 40px;
}
.aclaration{
    width: 100%;
    font-size: 1em;
    text-align: center;
    margin: 0;
    margin-bottom: 60px;
    margin-top: 10px;
}
.contactButton{
    border: none;
    background:none;
    color: #202020;
    font-size: 1.3em;
    margin: 0 10px;
    margin-bottom: 30px;
    position: relative; 
    user-select: none;
    transition: transform 0.3s;
    padding-right: 0;
}
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
.contactButton.activeButton::before {
    content: url('../images/bulletMobile.jpg'); /* Ruta de la imagen que deseas mostrar */
    position: absolute;
    left: -15px; /* Ajusta la posición según tus necesidades */
    top: 15px;
    transform: translateY(-50%);
    animation: fadeIn 0.3s ease forwards; /* Animación de fade in */
}
.contactButton::after{
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    background-color:#227827;
    bottom: -5px;
    left: 20%;
    transform: translateY(-50%);
    animation: fadeIn 0.3s ease forwards; /* Animación de fade in */
    transition: width 0.3s;
}
.contactButton:hover::after{
    width: 80%;
}

@media only screen and (min-width: 600px) {
    .contact_buttons_container{
        flex-direction: row;
        padding-bottom:60px;
        padding-top: 60px ;
    }
    .contactButton{
        padding-left: 20px;
    }
    .contactButton.activeButton::before {
      
        left: -1px; /* Ajusta la posición según tus necesidades */
    }
    .aclaration{
        margin: 0;
    }
}
