.trust {
    padding: 20px 0;
}
.line-block {
    width: 40%;
    background-color: black;
    margin: 20px auto;
    padding: 1px 0;
    border-radius: 50%;
}
.trust-block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
}
.trust-block__description {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
}
.trust-block__title {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 50px;
}
.trust-block__list {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-left: 20px;
    text-align: left;
    width: 60%;
    margin: 0 auto;
    list-style-type:square;
}
.trust-block__item {
    padding-bottom: 10px;
}
.trust-block__item p {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1.2rem;
    line-height: 1;
    color: rgb(34, 32, 32);
}
.trust-block__block-img {
    border-radius: 15px;
    overflow: hidden;
    width: 100%;
}
.trust-block__img {
    object-fit: cover;
}

/* адаптив */
@media (max-width:768px) {
    .trust-block {
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
    }
    .trust-block__block-img {
        width: 95%;
    }
}