

.h6x6__modal-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: #0808081f;
        display: none;
        justify-content: center;
        align-items: center;
        z-index: 9999;
    }

    .h6x6__loader-wrapper {
        background: var(--h6x6__main_white);
        padding: 20px 30px;
        border-radius: 8px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
        font-size: 16px;
        color: var(--h6x6__pastel_dark);
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
        max-width: 300px;
        text-align: center;
    }

    .h6x6__spinner {
        width: 24px;
        height: 24px;
        border: 3px solid var(--h6x6__pastel_dark);
        border-top: 3px solid var(--h6x6__main_color);
        border-radius: 50%;
        animation: spin 1s linear infinite;
    }

    @keyframes spin {
        0% {
            transform: rotate(0deg);
        }

        100% {
            transform: rotate(360deg);
        }
    }



.h6x6_c4sf-card-hover {
        transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    }

    .h6x6_c4sf-card-hover:hover {
        transform: translateY(-10px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    }






/*** Service ***/
.h6x6_defc3-service .h6x6_defc3-service-item {
    position: relative;
    margin-top: 45px;
}

.h6x6_defc3-service .h6x6_defc3-service-inner {
    position: relative;
    height: 100%;
    margin-top: 45px;
    background: var(--bs-white);
    box-shadow: 0 0 45px rgba(0, 0, 0, .05);
}

.h6x6_defc3-service .h6x6_defc3-service-inner::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    left: 0;
    bottom: 0;
    transition: 1s;
    background: var(--bs-primary);
}

.h6x6_defc3-service .h6x6_defc3-service-inner:hover::before {
    height: 100%;
    top: 0;
}

.h6x6_defc3-service .h6x6_defc3-service-item img {
    margin-top: -45px;
    padding-left: 45px;
}

.h6x6_defc3-service .h6x6_defc3-service-item * {
    position: relative;
    transition: .5s;
    z-index: 1;
}

.h6x6_defc3-service .h6x6_defc3-service-item:hover h5,
.h6x6_defc3-service .h6x6_defc3-service-item:hover p {
    color: var(--bs-white);
}

.h6x6_defc3-service .h6x6_defc3-service-item:hover a {
    padding-left: 45px !important;
}









