.projectCardWrapper {
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: 280px;
    height: 350px;
    margin: 30px 20px;
    border-radius: 30px 30px 30px 0;
    overflow: hidden;
    perspective: 1px;
    background: #000000;
    color: #FFFFFF;
    cursor: pointer;
    text-align: left;
}

.projectCardImg {
    width: 100%;
    height: 100%;
    background-size: cover;
    object-fit: cover;
    opacity: .4;
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    transition: .4s ease;
}

.projectCardWrapper:hover > .projectCardImg {
    transform: scale(1.2);
    filter: none;
    -webkit-filter: none;
    opacity: .7;
}

.projectCardServicesWrapper {
    position: absolute;
    top: 25px;
    left: 25px;
}

.projectCardService {
    font-family: sans_regular;
    font-size: 14px;
    margin-top: 3px;
    text-shadow: 0 2px 3px rgba(0, 0, 0, 0.9);
}

.projectCardService > span {
    display: inline-block;
    vertical-align: bottom;
    width: 10px;
    height: 10px;
    border-radius: 2px;
    margin-right: 5px;
    margin-bottom: 3px;
    background: var(--primary-color);
}

.projectCardTitleWrapper {
    position: absolute;
    bottom: 25px;
    left: 25px;
}

.projectCardTitle {
    font-family: bellega;
    font-size: 26px;
    text-shadow: 0 6px 6px rgba(0, 0, 0, .9);
}

.projectCardDesc {
    font-family: sans_regular;
    font-size: 14px;
    opacity: .8;
    text-shadow: 0 3px 5px rgba(0, 0, 0, .9);
}





@media screen and (max-width: 380px) {
    .projectCardWrapper {
        transform: scale(0.9);
    }
}