/* ===== Buttons Css ===== */
.card-style-four .card-content .card-btn .primary-btn-outline {
    border-color: var(--primary);
    color: var(--primary);
}

    .card-style-four .card-content .card-btn .active.primary-btn-outline, .card-style-four .card-content .card-btn .primary-btn-outline:hover, .card-style-four .card-content .card-btn .primary-btn-outline:focus {
        background: var(--primary-dark);
        color: var(--white);
    }

.card-style-four .card-content .card-btn .deactive.primary-btn-outline {
    color: var(--dark-3);
    border-color: var(--gray-4);
    pointer-events: none;
}

/*===========================
  card-04 css 
===========================*/
.card-style-four {
    box-shadow: var(--shadow-1);
    border-radius: 8px;
    overflow: hidden;
    margin-top: 30px;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

    .card-style-four:hover {
        box-shadow: var(--shadow-4);
    }

    .card-style-four .card-image img {
        width: 100%;
        height: 100%;
    }

    .card-style-four .card-content {
        padding: 25px;
    }

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .card-style-four .card-content {
        padding: 14px;
        padding-left: 5px;
    }
}

@media (max-width: 767px) {
    .card-style-four .card-content {
        padding: 18px;
    }
}

.card-style-four .card-content .card-title {
    margin-bottom: 0;
}

    .card-style-four .card-content .card-title a {
        color: var(--black);
        -webkit-transition: all 0.3s ease-out 0s;
        -moz-transition: all 0.3s ease-out 0s;
        -ms-transition: all 0.3s ease-out 0s;
        -o-transition: all 0.3s ease-out 0s;
        transition: all 0.3s ease-out 0s;
    }

        .card-style-four .card-content .card-title a:hover {
            color: var(--primary);
        }

.card-style-four .card-content .text {
    color: var(--dark-3);
    margin-top: 8px;
}

.card-style-four .card-content .card-btn {
    margin-top: 24px;
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .card-style-four .card-content .card-btn {
        margin-top: 16px;
    }
}
