/* =========================================================
   HEAVEN TOUCH - FOOTER FEATURES
========================================================= */

.ht-footer-features {
    width: 100%;

    padding: 38px 0 34px;

    background: #ffffff;

    border-top: 1px solid #eeeeee;
    border-bottom: 1px solid #eeeeee;

    overflow: hidden;
}

.ht-footer-features-track {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));

    align-items: start;
}

.ht-footer-feature-item {
    min-width: 0;

    padding: 0 28px;

    text-align: center;
}


/* Icon */

.ht-footer-feature-icon {
    height: 45px;

    margin-bottom: 12px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #9b9b9b;

    font-size: 34px;
    font-weight: 300;
}


/* Heading */

.ht-footer-feature-item h3 {
    margin: 0 0 8px;

    color: #111111;

    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;

    text-transform: uppercase;
}


/* Text */

.ht-footer-feature-item p {
    margin: 0;

    color: #909090;

    font-size: 14px;
    font-weight: 400;
    line-height: 1.7;
}


/* Desktop dots hidden */

.ht-footer-feature-dots {
    display: none;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .ht-footer-features {
        padding: 32px 0 30px;
    }

    .ht-footer-feature-item {
        padding: 0 18px;
    }

    .ht-footer-feature-item h3 {
        font-size: 15px;
    }

    .ht-footer-feature-item p {
        font-size: 13px;
    }

}


/* =========================================================
   MOBILE CAROUSEL
========================================================= */

@media (max-width: 575px) {

    .ht-footer-features {
        padding: 30px 0 24px;
    }

    .ht-footer-features .container {
        overflow: hidden;
    }

    .ht-footer-features-track {
        width: 300%;

        display: flex;

        align-items: stretch;

        transition: transform 0.45s ease;
    }

    .ht-footer-feature-item {
        width: 33.333333%;
        flex: 0 0 33.333333%;

        padding: 0 24px;

        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;

        text-align: center;
    }

    .ht-footer-feature-icon {
        height: 42px;

        margin-bottom: 10px;

        font-size: 31px;

        color: #9a9a9a;
    }

    .ht-footer-feature-item h3 {
        margin-bottom: 7px;

        font-size: 15px;
    }

    .ht-footer-feature-item p {
        max-width: 310px;

        font-size: 13px;
        line-height: 1.65;
    }


    /* Dots */

    .ht-footer-feature-dots {
        margin-top: 20px;

        display: flex;
        align-items: center;
        justify-content: center;

        gap: 7px;
    }

    .ht-footer-feature-dots button {
        width: 6px;
        height: 6px;

        padding: 0;

        border: 0;
        border-radius: 50%;

        background: #cccccc;

        cursor: pointer;

        transition:
            width 0.25s ease,
            border-radius 0.25s ease,
            background 0.25s ease;
    }

    .ht-footer-feature-dots button.is-active {
        width: 18px;

        border-radius: 20px;

        background: #f58220;
    }

}


/* =========================================
   FOOTER FEATURES - DESKTOP ALIGNMENT FIX
========================================= */

@media (min-width: 992px) {

    .ht-footer-features {
        padding: 48px 0 44px;
    }

    .ht-footer-features .container {
        width: 100%;
        max-width: 1400px;
        margin: 0 auto;
        padding-left: 30px;
        padding-right: 30px;
    }

    .ht-footer-features-track {
        width: 100%;

        display: grid;
        grid-template-columns: repeat(3, 1fr);
        align-items: start;

        gap: 0;
    }

    .ht-footer-feature-item {
        width: 100%;
        min-width: 0;

        padding: 0 40px;

        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;

        text-align: center;
    }

    .ht-footer-feature-icon {
        width: 100%;
        height: 42px;

        margin: 0 0 12px;

        display: flex;
        align-items: center;
        justify-content: center;

        text-align: center;
    }

    .ht-footer-feature-item h3 {
        width: 100%;

        margin: 0 0 9px;

        text-align: center;

        font-size: 16px;
        line-height: 1.35;
    }

    .ht-footer-feature-item p {
        width: 100%;
        max-width: 420px;

        margin: 0 auto;

        text-align: center;

        font-size: 14px;
        line-height: 1.7;
    }
}