/* =========================================================
   TRUST HOME
========================================================= */

.trust-home {

    padding: 60px 40px;

    background: var(--color-white);

}

/* =========================================================
   HEADER
========================================================= */

.trust-home__header {

    text-align: center;

    margin-bottom: 45px;

}

/* =========================================================
   TITLE
========================================================= */

.trust-home__title {

    font-size: 30px;

    font-weight: 800;

    line-height: 1.3;

    color: var(--color-primary);

    margin-bottom: 12px;

}

/* =========================================================
   LINE
========================================================= */

.trust-home__line {

    width: 55px;
    height: 3px;

    background: var(--color-secondary);

    border-radius: 50px;

    margin: 0 auto;

}

/* =========================================================
   GRID
========================================================= */

.trust-home__grid {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 0;

    max-width: var(--container-width);

    margin: 0 auto;

}

/* =========================================================
   ITEM
========================================================= */

.trust-item {

    position: relative;

    text-align: center;

    padding: 0 22px;

}

/* =========================================================
   SEPARATOR
========================================================= */

.trust-item:not(:last-child)::after {

    content: "";

    position: absolute;

    top: 5px;
    right: 0;

    width: 1px;
    height: 120px;

    background: var(--color-border);

}

/* =========================================================
   ICON
========================================================= */

.trust-item__icon {

    margin-bottom: 18px;

}

.trust-item__icon svg {

    width: 42px;
    height: 42px;

    stroke: var(--color-primary);

    stroke-width: 1.8;

}

/* =========================================================
   TITLE
========================================================= */

.trust-item__title {

    font-size: 18px;

    font-weight: 700;

    line-height: 1.4;

    color: var(--color-primary);

    margin-bottom: 10px;

}

/* =========================================================
   TEXT
========================================================= */

.trust-item__text {

    font-size: 13px;

    line-height: 1.7;

    color: var(--color-text-muted);

}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1100px) {

    .trust-home {

        padding: 50px 30px;

    }

    .trust-home__grid {

        grid-template-columns: repeat(2, 1fr);

        gap: 40px 0;

    }

    .trust-item:nth-child(2)::after {

        display: none;

    }

}

@media (max-width: 768px) {

    .trust-home {

        padding: 50px 25px;

    }

    .trust-home__grid {

        grid-template-columns: 1fr;

        gap: 40px;

    }

    .trust-item {

        padding: 0;

    }

    .trust-item::after {

        display: none;

    }

    .trust-home__title {

        font-size: 26px;

    }

    .trust-item__title {

        font-size: 17px;

    }

    .trust-item__text {

        font-size: 13px;

    }

}