.why-trust-section {
    padding: 48px 0;
    position: relative;
    overflow:  hidden;
}

.why-trust-section__site-bg {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
}

.why-trust-section__site-bg-mobile {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;

    display: none;
}

.why-trust-section__container {
    position: relative;
}

.why-trust-section__title {
    color: #FFF;
    font-family: 'Karla';
    font-size: 28px;
    font-style: normal;
    font-weight: 800;
    line-height: 48px;
    letter-spacing: -0.56px;
    margin-bottom: 4px;
    max-width: 460px;
    text-transform: capitalize;
}

.why-trust-section__summary {
    color: var(--text-secondary, rgba(255, 255, 255, 0.70));
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    max-width: 556px;
    margin-bottom: 24px;
}

.why-trust-section__indicators {
    display: flex;
    gap: 30px;
    margin-top: 24px;
}

.why-trust-section__indicator {
    border-radius: 16px;
    background: #FFF;
    padding: 16px 8px;
    text-align: center;
    width: 50%;
    max-width: 195px;
}

.why-trust-section__top {
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

.why-trust-section__top img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.why-trust-section__indicator-value {
    color: var(--text-secondary, #757575);
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}

.why-trust-section__indicator-label {
    color: var(--text-primary, #000);
    text-align: center;
    font-family: 'Karla';
    font-size: 24px;
    font-style: normal;
    font-weight: 800;
    line-height: 32px;
    letter-spacing: -0.24px;
    text-transform: capitalize;
}

.why-trust-section__more-btn {
    border-radius: 24px;
    border: 2px solid var(--additional-divider, #BDBDBD);
    padding: 8px 24px;
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    width: 202px;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

@media only screen and (max-width: 991px) {
    .why-trust-section__indicators {
        flex-wrap: wrap;

    }

    .why-trust-section__site-bg {
        display: none;
    }

    .why-trust-section__site-bg-mobile {
        display: block;
    }

    .why-trust-section__indicator {
        width: calc(50% - 15px);
        max-width: unset;
    }
}

@media only screen and (max-width: 767px) {
    .why-trust-section {
        padding: 32px 0;
    }

    .why-trust-section__title {
        font-size: 24px;
        line-height: 28px;
        width: 100%;
    }

    .why-trust-section__summary {
        width: 100%;
    }

    .why-trust-section__indicators {
        gap: 24px
    }

    .why-trust-section__more-btn {
        width: 100%;
        max-width: 204px;
    }

    .why-trust-section__indicator {
        width: calc(50% - 12px);
    }
}