/* ==========================================================================
   HOME TRUST BAR
   ========================================================================== */


/*
|--------------------------------------------------------------------------
| Section
|--------------------------------------------------------------------------
*/

.home-trust {
    position: relative;

    width: 100%;

    padding: 24px 0;

    background: #FFFFFF;

    border-bottom: 1px solid #E7E7E7;

    z-index: 10;
}


/*
|--------------------------------------------------------------------------
| Grid
|--------------------------------------------------------------------------
*/

.home-trust__grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    width: 100%;
}


/*
|--------------------------------------------------------------------------
| Item
|--------------------------------------------------------------------------
*/

.home-trust__item {
    display: flex;
    align-items: center;

    min-width: 0;

    padding: 6px 22px;

    border-right: 1px solid #E7E7E7;
}


.home-trust__item:first-child {
    padding-left: 0;
}


.home-trust__item:last-child {
    padding-right: 0;

    border-right: 0;
}


/*
|--------------------------------------------------------------------------
| Icon
|--------------------------------------------------------------------------
*/

.home-trust__icon {
    display: flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 44px;

    width: 44px;
    height: 44px;

    margin-right: 13px;

    background: #F0F0F0;

    border-radius: 8px;

    color: #002EBE;

    font-size: 19px;
}


/*
|--------------------------------------------------------------------------
| Content
|--------------------------------------------------------------------------
*/

.home-trust__content {
    min-width: 0;
}


/*
|--------------------------------------------------------------------------
| Title
|--------------------------------------------------------------------------
*/

.home-trust__title {
    margin: 0 0 4px;

    color: #262626;

    font-family: "Raleway", sans-serif;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.35;

    text-transform: none;
}


/*
|--------------------------------------------------------------------------
| Text
|--------------------------------------------------------------------------
*/

.home-trust__text {
    margin: 0;

    color: #666666;

    font-family: "Open Sans", sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.5;
}


/* ==========================================================================
   TABLET
   ========================================================================== */

@media only screen
and (min-width: 768px)
and (max-width: 991px) {

    .home-trust {
        padding: 18px 0;
    }


    .home-trust__grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }


    .home-trust__item {
        padding: 16px 20px;

        border-right: 1px solid #E7E7E7;
        border-bottom: 1px solid #E7E7E7;
    }


    .home-trust__item:nth-child(2n) {
        border-right: 0;
    }


    .home-trust__item:nth-last-child(-n + 2) {
        border-bottom: 0;
    }


    .home-trust__item:first-child {
        padding-left: 20px;
    }


    .home-trust__item:last-child {
        padding-right: 20px;
    }

}


/* ==========================================================================
   MOBILE
   ========================================================================== */

@media screen and (max-width: 767px) {

    .home-trust {
        padding: 8px 0;

        background: #FFFFFF;
    }


    .home-trust__grid {
        display: block;
    }


    .home-trust__item {
        width: 100%;

        padding: 15px 0;

        border-right: 0;
        border-bottom: 1px solid #E7E7E7;
    }


    .home-trust__item:first-child {
        padding-left: 0;
    }


    .home-trust__item:last-child {
        padding-right: 0;

        border-bottom: 0;
    }


    .home-trust__icon {
        flex-basis: 42px;

        width: 42px;
        height: 42px;

        margin-right: 12px;

        font-size: 18px;
    }


    .home-trust__title {
        font-size: 13px;
    }


    .home-trust__text {
        font-size: 12px;
    }

}