﻿a {
    text-decoration: none;
}

    a:hover {
        color: var(--grey-700);
        text-decoration: none !important;
    }


.newProductCrousel {
    margin: 3%;
}

/*-------------------------------*/




::selection {
    background: #8e44ad;
    color: #fff;
}

.containerx {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 0px;
    max-width: 1600px;
    margin: auto;
}

    .containerx .box {
        width: calc(20%);
        background: #dedede;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 0px 0px;
    }

.box .quote i {
    margin-top: 10px;
    font-size: 45px;
    color: #17c0eb
}

.containerx .box .image {
    margin: 0px 0;
    height: 100%;
    width: 100%;
    padding: 0px;
}

.box .image img {
    height: 100%;
    width: 100%;
}

.box p {
    text-align: justify;
    margin-top: 8px;
    font-size: 16px;
    font-weight: 400;
}

.box .name_job {
    margin: 10px 0 3px 0;
    color: #8e44ad;
    font-size: 18px;
    font-weight: 600;
}

.rating i {
    font-size: 18px;
    color: #8e44ad;
    margin-bottom: 5px;
}

.btns {
    margin-top: 20px;
    margin-bottom: 5px;
    display: flex;
    justify-content: space-between;
    width: 100%;
}

    .btns button {
        background: #8e44ad;
        width: 100%;
        padding: 9px 0px;
        outline: none;
        border: 2px solid #8e44ad;
        border-radius: 5px;
        cursor: pointer;
        font-size: 18px;
        font-weight: 400;
        color: #8e44ad;
        transition: all 0.3s linear;
    }

        .btns button:first-child {
            background: none;
            margin-right: 5px;
        }

        .btns button:last-child {
            color: #fff;
            margin-left: 5px;
        }

        .btns button:first-child:hover {
            background: #8e44ad;
            color: #fff;
        }

        .btns button:hover {
            color: #fff;
        }

@media (max-width:800px) {
    .containerx .box {
        width: calc(50%);
    }
}

.techCardImageProduct {
    width: 100%;
    transition: transform 0.3s;
}

    .techCardImageProduct:hover {
        transform: scale(1.1);
    }
