.alliance-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
    margin-top: 30px;
    background-image: url(../../images/degradado_celular.svg);
    background-position: 1%; /* or background-position: 10px center; */
    background-repeat: no-repeat;
    background-size: 45%;
}
.alliance-text {
    font-size: 24px;
    color:var(--color-dark-2);
    text-align: justify;
    text-justify: inter-word;
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    max-width: 500px;
    margin-bottom: 20px;
}
.phone-image img {
    width: 200px;
    border-radius: 10px;
    margin-right: 50px;
}
@media screen and (max-width: 700px) {
    .phone-image img {
        display:none;
    }
    .alliance-content {
        background-image: none;
        background-position: 0; /* or background-position: 10px center; */
        background-repeat: no-repeat;
        background-size: 0;
    }
}