.text-with-logo-section {
    padding-top: 120px;
}
.text-with-logo-row {
    padding: 20px 0 120px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    border-top: 1px solid #555;
}

.text-with-logo-row .title {
    width: 36%;
}

.text-with-logo-row .text-with-logo {
    width: 40%;
}

.text-with-logo-row .text-with-logo p {
    font-size: 15px;
    text-align: right;
}

.card-logo {
    display: flex;
    align-items: center;
    justify-content: end;
}

.card-logo img:not(:last-child) {
    padding-right: 47px;
    margin-right: 47px;
    border-right: 1px solid rgb(255 255 255 / 50%);
    padding-top: 8px;
    padding-bottom: 8px;
}
@media only screen and (max-width:991px){
    .text-with-logo-section {
        padding-top: 80px;
    }
    .text-with-logo-row .text-with-logo {
        width: 45%;
    }
    .text-with-logo-row .title {
        width: 45%;
    }
    .text-with-logo-row {
        padding: 20px 0 80px 0;
    }
    .card-logo img:not(:last-child) {
        padding-right: 25px;
        margin-right: 25px;
    }
}
@media only screen and (max-width:767px){
    .text-with-logo-section {
        padding-top: 60px;
    }
    .text-with-logo-row {
        padding: 20px 0 60px 0;
    }
}
@media only screen and (max-width:575px){
    .text-with-logo-row .title {
        width: 100%;
    }
    .text-with-logo-row .text-with-logo {
        width: 100%;
    }
    .card-logo {
        justify-content: start;
    }
    .text-with-logo-row .text-with-logo p {
        text-align: left;
    }
}