/* =========================================================
   07. TRUST INDICATORS
========================================================= */

.trust-indicators {
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
    border-top: 1px solid #9C0000;
     
}

.trust-item {
    flex: 0 0 20%;
    width: 20%;
    background: transparent !important;
    border-radius: 0 !important;
    box-shadow: none !important;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
}


/* Trust Icon */

.trust-item .elementor-icon {
    width: 55px;
    height: 55px;
    background: #FBF4E0 !important;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;
    margin-bottom: 8px;

    box-shadow: 0 4px 12px rgba(118, 1, 15, 0.12);
}

.trust-item .elementor-icon i {
    color: #76010F !important;
    font-size: 23px !important;
}

/* Last Trust Item */

.trust-item:last-child .elementor-icon {
    transform: translateY(30px);
}

.trust-item:last-child .elementor-widget-heading h3 {
    margin-top: 20px !important;
}
/* =========================================================
   TABLET
   5 ITEMS IN ONE ROW
========================================================= */

@media (min-width: 768px) and (max-width: 1024px) {

    .trust-indicators {
        flex-wrap: nowrap;
    }

    .trust-item {
        flex: 0 0 20%;
        width: 20%;
        margin-bottom: 0;
    }

    /* Smaller icon on tablet */
    .trust-item .elementor-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 6px;
    }

    .trust-item .elementor-icon i {
        font-size: 19px !important;
    }

    /* Smaller text on tablet */
    .trust-item .elementor-widget-heading h3 {
        font-size: 16px !important;
        line-height: 1.25 !important;
    }

    /* Reset 5th item special positioning */
    .trust-item:last-child .elementor-icon {
        transform: none;
    }

    .trust-item:last-child .elementor-widget-heading h3 {
        margin-top: 0 !important;
    }
}


/* =========================================================
   MOBILE
   3 ITEMS + 2 ITEMS
========================================================= */



 @media (max-width: 767px) {

     .trust-indicators {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: wrap !important;

        justify-content: center !important;
        align-items: flex-start !important;
        align-content: center !important;

        width: 100% !important;
        box-sizing: border-box !important;

        /* Mobile spacing */
        padding: 30px 24px !important;
        margin: 15px 0 !important;

        /* No border */
        border: none !important;
        box-shadow: none !important;

        /* Space between rows */
        gap: 12px 0 !important;
    }

    .trust-indicators > .trust-item {
        flex: 0 0 50% !important;
        width: 50% !important;
        max-width: 50% !important;

        min-width: 0 !important;
        margin: 0 !important;
        padding: 5px 8px !important;

        box-sizing: border-box !important;
    }

    .trust-indicators > .trust-item:nth-child(5) {
        flex: 0 0 100% !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .trust-item .elementor-icon {
        width: 42px !important;
        height: 42px !important;
        margin-bottom: 7px !important;
        border-radius: 50% !important;
    }

    .trust-item .elementor-icon i {
        font-size: 18px !important;
    }

    .trust-item .elementor-widget-heading h3 {
        font-size: 14px !important;
        line-height: 1.3 !important;
        margin-top: 0 !important;
    }

   
   
}