.jcms_portrait_container {
    max-width: var(--page-max-width);
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: space-evenly;
    padding: 40px 0;
    margin: auto;
}

.jcms_portrait {
    width: 25%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    margin: 15px 0;
}

.portrait * {
    margin: 0;
}

.hoverblock {
    width: 200px;
    height: 200px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    margin-bottom: 10px;
}

.portrait img {
    width: 200px;
    height: 200px;
    display: none;
}

.portrait h1 {
    font-size: 1.3em;
    font-weight: 700;
    text-align: center;
    line-height: 1;
}

.portrait .ctabtn {
    background-color: #0A66C2;
    margin-bottom: 30px;
}

.portrait h2 {
    font-size: 0.8em;
    width: 80%;
    text-align: center;
}

@media screen and (max-width: 1366px) {
    .jcms_portrait_container {
        width: 100% !important;
    }
}


@media screen and (max-width: 750px) {
    .portrait h2 {
        font-size: 1em;

    }

    .jcms_portrait_container {
        flex-direction: column;
        flex-wrap: nowrap;
    }

    .jcms_portrait {
        width: 100%;
    }
}