/*
|--------------------------------------------------------------------------
| Bali Indo Tour
| Homepage Why Choose Us
|--------------------------------------------------------------------------
*/

.home-why {
    background: var(--surface);
}


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

.home-feature-item {

    position: relative;

    height: 100%;

    padding: 28px 24px;

    text-align: left;

    background: var(--surface);

    border: 1px solid var(--border);

    border-radius: var(--radius-lg);

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;
}


.home-feature-item:hover {

    transform: translateY(-4px);

    border-color: rgba(244, 180, 0, .35);

    box-shadow:
        0 14px 35px rgba(15, 23, 42, .08);

}


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

.home-feature-icon {

    width: 48px;
    height: 48px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin: 0 0 20px;

    color: var(--primary);

    background: var(--primary-light);

    border-radius: 14px;

    font-size: 18px;

    transition:
        transform .25s ease,
        background .25s ease;
}


.home-feature-item:hover .home-feature-icon {

    transform: translateY(-2px);

    background: rgba(244, 180, 0, .16);

}


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

.home-feature-item h3 {

    margin-bottom: 8px;

    color: var(--text);

    font-size: var(--font-md);

    font-weight: var(--fw-bold);

    line-height: 1.3;

}


/*
|--------------------------------------------------------------------------
| Description
|--------------------------------------------------------------------------
*/

.home-feature-item p {

    max-width: 300px;

    margin: 0;

    color: var(--text-muted);

    font-size: var(--font-sm);

    line-height: 1.65;

}


/*
|--------------------------------------------------------------------------
| Mobile
|--------------------------------------------------------------------------
*/

@media (max-width: 767.98px) {

    .home-feature-item {

        padding: 20px;

        border-radius: var(--radius);

    }


    .home-feature-icon {

        width: 42px;
        height: 42px;

        margin-bottom: 14px;

        border-radius: 12px;

        font-size: 16px;

    }


    .home-feature-item h3 {

        margin-bottom: 6px;

        font-size: 15px;

    }


    .home-feature-item p {

        font-size: 13px;

        line-height: 1.55;

    }

}