
.portfolio-project-card {
    border: none;
    border-radius: 0px;
    overflow: hidden;
    min-width: 400px;
    height: 400px;
}

.porfolio-project-card-background {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    transform:scale(1);
    transition:all 1s ease-in-out;

}

.porfolio-project-card-background.background-zoom {
    transform:scale(1.1);
}

.porfolio-project-card-overlay {
    height: 100%;
    width: 100%;
    position: absolute;
    background-color: rgba(255, 255, 255, 0.8);
    text-align: center;
    color: #C71441;
}

.porfolio-project-card-overlay-title {
    font-family: 'AkrobatBold';
    text-transform: uppercase;
    font-size: 3.2rem;
    line-height: 56px;
}

.porfolio-project-card-overlay-description {
    font-family: 'AkrobatLight';
    color: #C71441;
    font-size: 1.5rem;
    margin-bottom: 0px;
    line-height: 28px;
}


.porfolio-project-card-overlay-location {
    font-family: 'AkrobatLight';
    font-size: 1rem;
    color: #C71441;
}

.portfolio-project-card-goto-icn {
    margin-top: 20px;
    height: 24px !important;
    width: 24px !important;
    color: #C71441;
}

.portfolio-project-card-goto-icn-hint {
    color: #C71441;
    font-family: 'AkrobatLight';
    font-size: 1.0rem;  
}

@media (min-width: 0px) and (max-width: 992px) {
    .porfolio-project-card-overlay-title {
        margin-bottom: 10px;
        font-size: 2.5rem;
        line-height: 42px;
    }

    .portfolio-project-card {
       min-width: 300px !important;
    }
}