.AllRadio{
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    width: 100%;
}

.texte-radio-div{
    width: 800px;
    text-align: center;
}
.texte-radio-div p{
    text-align: center;
    font-size: 20px;
    font-weight: bold;
}
.texte-radio-div iframe{
    margin: 0 auto 50px auto;
}
.divDon{
    text-align: center;
    height: 180px !important;
    width: 450px !important;
    margin: 0 auto 30px auto !important;
}

.radio-link-img{
    width: 300px;
}
.radio-link-img img{
    width: 300px;
    animation: animUpradio 2s infinite;
}
@keyframes animUpradio {
    0%{
        transform: scale(1);
    }
    50%{
        transform: scale(0.9);
    }
    1000%{
        transform: scale(1);
    }
}

@media screen and (max-width: 1024px) {
    .texte-radio-div{
        width: 100%;
        overflow: hidden;
    }
    .texte-radio-div p{
        text-align: center;
        font-size: 15px;
        font-weight: bold;
    }
    
    .divDon{
        text-align: center;
    }
}
@media screen and (max-width: 500px) {
    .texte-radio-div iframe{
        margin: 0 auto 50px auto;
        overflow: hidden;
        transform: scale(0.7) translateX(-60px);
        left: 0;
    }
}