﻿/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
    background-color: var(--light-color);
    text-align: center;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
    padding: 80px 20px;
    height: 100%;
    transition: all ease-in-out 0.3s;
}

    .services .service-item .icon {
        background: var(--accent-color);
        color: var(--contrast-color);
        margin: 0 auto;
        width: 64px;
        height: 64px;
        border-radius: 4px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
        transition: 0.3s;
    }

        .services .service-item .icon i {
            font-size: 28px;
            transition: ease-in-out 0.3s;
        }

    .services .service-item .text-4 {
        /*font-weight: 700;*/ 
        margin: 10px 0 15px 0;
        transition: 0.3s;
    }

    /*.services .service-item p {
        line-height: 24px;
        font-size: 14px;
        margin-bottom: 0;
    }*/

    .services .service-item:hover {
        box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
        transform: translateY(-10px);
    }
