/* TRUST ELEMENT */
.trust-element {
    font-family: "Open Sans", sans-serif;
}
.trust-element.trust-element--light-blue {
    background: #e6f2ff;
}

.trust-element.trust-element--white {
    background: #ffffff;
}
.trust-element__logo {
    max-width: 95px;
    width: 100%;
}
.trust-element__title {
    font-size: 48px;
    line-height: 60px;
    font-weight: 600;
    color: #202939;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-bottom: 0;
}

@media (max-width: 992px) {
    .trust-element__title {
        font-size: 36px;
        line-height: 44px;
    }
}
@media (max-width: 480px) {
    .trust-element__title {
        font-size: 24px;
        line-height: 32px;
    }
}

.trust-element__description {
    font-size: 18px;
    line-height: 28px;
    color: #364152;
    max-width: 750px;
    margin: 0 auto;
    text-align: center;
    margin-top: 20px;
}
.trust-element__items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 64px;
    column-gap: 32px;
    margin-top: 80px;
}
.trust-element__item {
    max-width: 311px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
@media (max-width: 480px) {
    .trust-element__item {
        max-width: 100%;
    }
}
.trust-element__item-title {
    font-size: 20px;
    line-height: 1.5;
    margin-top: 24px;
    margin-bottom: 0;
}
.trust-element__item-description {
    margin-top: 8px;
    font-size: 14px;
    line-height: 1.5;
}
.trust-element__items.logos .trust-element__item-icon {
    max-width: 80px;
    max-height: 80px;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.trust-element__items.icon_items .trust-element__item {
    justify-content: flex-start;
}
.trust-element__items.icon_items .trust-element__item-icon {
    max-width: 56px;
    max-height: 56px;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 16px;
    border: 1px solid #e3e8ef;
    border-radius: 12px;
    background: #fff;
}
.trust-element__items.logos .trust-element__item-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
}

.trust-element__items--3 .trust-element__item {
    flex: 0 0 calc(33.333% - 22px);
    max-width: calc(33.333% - 22px);
}

.trust-element__items--4 .trust-element__item {
    flex: 0 0 calc(25% - 24px);
    max-width: calc(25% - 24px);
}

@media (max-width: 992px) {
    .trust-element__items--3 .trust-element__item,
    .trust-element__items--4 .trust-element__item {
        flex: 0 0 calc(50% - 16px);
        max-width: calc(50% - 16px);
    }
}

@media (max-width: 480px) {
    .trust-element__items--3 .trust-element__item,
    .trust-element__items--4 .trust-element__item {
        flex: 0 0 100%;
        max-width: 100%;
    }
}
