.carousel-inner {
    width: 100% !important;
    max-height: 500px !important;
    margin: 0;
    padding: 0;
}



.carousel-item {
    padding: 0;
    margin: 0;
}

.card {
    border-radius: 4px;
    background: #fff;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.08), 0 0 6px rgba(0, 0, 0, 0.05);
    transition: 0.1s transform cubic-bezier(0.155, 1.105, 0.295, 1.12),
        0.1s box-shadow,
        0.1s -webkit-transform cubic-bezier(0.155, 1.105, 0.295, 1.12);
    margin-bottom: 20px;
    cursor: pointer;
}

.card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12), 0 4px 8px rgba(0, 0, 0, 0.06);
}

/*containerPortfolioCSS*/
.containerPortfolio {
    position: relative;
    width: 100%;
}

.image {
    display: block;
    width: 100%;
    height: auto;
}

.containerPortfolio .overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    transition: 0.5s ease;
    background-color: #14a72f;
}

.containerPortfolio:hover .overlay {
    opacity: 1;
}

.text {
    color: white;
    font-size: 18px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
}
