/*
============================================================
 VOLTCORE AFRICA
 EXACT FOUR PRODUCT CARDS
============================================================
*/


/*
============================================================
 ONLY THE FOUR PRODUCT CARDS
============================================================
*/

.vc-exact-product-card {

    /*
    THIS IS THE IMPORTANT PART.

    The individual card becomes much taller.
    */

    min-height: 430px !important;

    height: 430px !important;

    max-height: none !important;

    width: 100% !important;

    box-sizing: border-box !important;

    overflow: hidden !important;

    display: flex !important;

    flex-direction: column !important;

    cursor: pointer !important;

    position: relative !important;

    transition:
        transform .18s ease,
        border-color .18s ease,
        box-shadow .18s ease !important;
}


/*
============================================================
 CARD HOVER
============================================================
*/

.vc-exact-product-card:hover {

    transform:
        translateY(-4px) !important;

    border-color:
        #54d842 !important;

    box-shadow:
        0 10px 28px rgba(0,0,0,.45) !important;
}


/*
============================================================
 PRODUCT IMAGE
============================================================
*/

.vc-exact-product-card
.vc-exact-product-image {

    display: block !important;

    width: 100% !important;

    height: 190px !important;

    min-height: 190px !important;

    max-height: 190px !important;

    object-fit: cover !important;

    object-position: center !important;

    flex: 0 0 190px !important;
}


/*
============================================================
 PRODUCT CONTENT AREA
============================================================
*/

.vc-exact-product-card
.vc-exact-product-content {

    display: flex !important;

    flex-direction: column !important;

    flex: 1 1 auto !important;

    min-height: 0 !important;

    padding:
        17px 18px 18px 18px !important;

    box-sizing: border-box !important;
}


/*
============================================================
 PRODUCT TITLE
============================================================
*/

.vc-exact-product-card
.vc-exact-product-title {

    display: block !important;

    width: 100% !important;

    margin:
        0 0 10px 0 !important;

    padding: 0 !important;

    font-size:
        25px !important;

    line-height:
        1.2 !important;

    font-weight:
        900 !important;

    color:
        #ffffff !important;

    letter-spacing:
        0 !important;

}


/*
============================================================
 DESCRIPTION
============================================================
*/

.vc-exact-product-card
.vc-exact-product-description {

    display: block !important;

    width: 100% !important;

    margin:
        0 !important;

    padding: 0 !important;

    font-size:
        18px !important;

    line-height:
        1.48 !important;

    font-weight:
        500 !important;

    color:
        #f4f7f8 !important;

}


/*
============================================================
 BOTTOM AREA
============================================================
*/

.vc-exact-product-card
.vc-exact-product-bottom {

    display: flex !important;

    align-items: center !important;

    justify-content: space-between !important;

    gap: 12px !important;

    width: 100% !important;

    margin-top: auto !important;

    padding-top: 15px !important;

    box-sizing: border-box !important;

}


/*
============================================================
 SPECIFICATION
============================================================
*/

.vc-exact-product-card
.vc-exact-product-spec {

    display: inline-flex !important;

    align-items: center !important;

    justify-content: center !important;

    min-height:
        40px !important;

    padding:
        8px 11px !important;

    box-sizing:
        border-box !important;

    background:
        #092615 !important;

    border:
        2px solid #45c83a !important;

    border-radius:
        7px !important;

    color:
        #7af06a !important;

    font-size:
        14px !important;

    line-height:
        1.15 !important;

    font-weight:
        900 !important;

    white-space:
        nowrap !important;
}


/*
============================================================
 VIEW PRODUCT
============================================================
*/

.vc-exact-product-card
.vc-exact-product-button {

    display: inline-flex !important;

    align-items: center !important;

    justify-content: center !important;

    min-height:
        44px !important;

    padding:
        10px 16px !important;

    box-sizing:
        border-box !important;

    background:
        #06100a !important;

    border:
        2px solid #55d645 !important;

    border-radius:
        7px !important;

    color:
        #ffffff !important;

    font-size:
        15px !important;

    line-height:
        1.1 !important;

    font-weight:
        900 !important;

    text-decoration:
        none !important;

    white-space:
        nowrap !important;

    cursor:
        pointer !important;
}


/*
============================================================
 LARGE DESKTOP
============================================================
*/

@media (min-width: 1400px) {

    .vc-exact-product-card {

        min-height:
            455px !important;

        height:
            455px !important;
    }


    .vc-exact-product-card
    .vc-exact-product-image {

        height:
            205px !important;

        min-height:
            205px !important;

        max-height:
            205px !important;

        flex-basis:
            205px !important;
    }


    .vc-exact-product-card
    .vc-exact-product-title {

        font-size:
            27px !important;
    }


    .vc-exact-product-card
    .vc-exact-product-description {

        font-size:
            19px !important;

        line-height:
            1.5 !important;
    }


    .vc-exact-product-card
    .vc-exact-product-button {

        font-size:
            15px !important;

        min-height:
            46px !important;
    }

}


/*
============================================================
 TABLET
============================================================
*/

@media (max-width: 1100px) {

    .vc-exact-product-card {

        min-height:
            410px !important;

        height:
            410px !important;
    }


    .vc-exact-product-card
    .vc-exact-product-title {

        font-size:
            23px !important;
    }


    .vc-exact-product-card
    .vc-exact-product-description {

        font-size:
            17px !important;
    }

}


/*
============================================================
 MOBILE
============================================================
*/

@media (max-width: 700px) {

    .vc-exact-product-card {

        height:
            auto !important;

        min-height:
            0 !important;

        max-height:
            none !important;
    }


    .vc-exact-product-card
    .vc-exact-product-image {

        height:
            auto !important;

        min-height:
            0 !important;

        max-height:
            none !important;

        aspect-ratio:
            16 / 9 !important;

        flex:
            0 0 auto !important;
    }


    .vc-exact-product-card
    .vc-exact-product-content {

        padding:
            18px !important;
    }


    .vc-exact-product-card
    .vc-exact-product-title {

        font-size:
            24px !important;

        line-height:
            1.25 !important;
    }


    .vc-exact-product-card
    .vc-exact-product-description {

        font-size:
            18px !important;

        line-height:
            1.55 !important;
    }


    .vc-exact-product-card
    .vc-exact-product-bottom {

        flex-direction:
            column !important;

        align-items:
            stretch !important;

        margin-top:
            18px !important;
    }


    .vc-exact-product-card
    .vc-exact-product-spec {

        width:
            fit-content !important;
    }


    .vc-exact-product-card
    .vc-exact-product-button {

        width:
            100% !important;

        min-height:
            50px !important;

        font-size:
            16px !important;
    }

}
