.wysiwyg--inner {
    padding: 34px 0 40px;
}

@media(min-width: 1200px) {
    .wysiwyg--inner {
        padding: 80px 0;
    }

    .wysiwyg--inner h2 {
        padding-bottom: 12px;
    }
}

.work-process {
    padding: 0 0 40px;
}

.work-process-headline p {
    padding: 0 0 30px;
}

.process-link {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    cursor: pointer;
    margin-right: 11px;
    transition: all 0.3s ease-in-out;
    background-color: var(--color-black);
    position: relative;
}

.process-link:last-child {
    margin-right: 0;
}

.process-link h2 {
    position: absolute;
    top: 50%;
    left: 50%;
    padding: 0;
    margin: 0;
    font-size: 44px;
    color: var(--color-white);
    transform: translate(-50% , -50%);
    z-index: 1;
}

.process-link img {
    opacity: 0.5;
    border-radius: 50%;
}

.process-link.current {
    width: 105px;
    height: 105px;
    border: 2px solid var(--color-blue);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}

.process-link.current img {
    opacity: 1;
}

.process-link.current h2 {
    font-size: 0px;
}

.process-link.current::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 8px solid var(--color-white);
    z-index: 1;
}

.process-link::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    width: 23px;
    height: 9px;
    opacity: 0;
    transition: all 0.5s ease-in-out;
    background-color: #012537;
    transform: translate(-50% , 0%);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.process-link.current::after {
    opacity: 1;
}

.work-process-col-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    height: 105px;
}

.work-process-col {
    display: none;
    margin-top: 18px;
    background-color: #012537;
    padding: 10px 20px 32px;
}

.work-process-col.current {
    display: block;
}

.work-process-col h2 {
    font-size: 68px;
    line-height: 1.147em;
    color: rgba(255, 255, 255, 0.50);
    padding: 0;
}

.work-process-col h3 {
    text-transform: uppercase;
    font-size: 16px;
    letter-spacing: 0.2em;
    color: var(--color-white);
    font-family: 'DM Sans', sans-serif;
    line-height: 1.5em;
}

.work-process-col p {
    color: rgba(255, 255, 255, 0.80);
}

@media(min-width: 1200px) {

    .work-process-flex {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .work-process-col {
        display: block;
        margin-top: 0;
        width: calc(25% - 14px);
        padding: 0;
        background-color: transparent;
    }

    .work-process-headline p {
        padding: 0 0 53px;
    }

    .work-process-image {
        width: 96px;
        height: 96px;
        border-radius: 50%;
        overflow: hidden;
    }

    .work-process-col h2 {
        font-size: 84px;
        line-height: 1.11em;
        color: rgba(8, 97, 118, 0.50);
        position: absolute;
        top: 26px;
        left: 68px;
        z-index: 1;
    }

    .work-process-col h3 {
        color: var(--color-blue);
        padding-bottom: 13px;
    }

    .work-process-col p {
        font-size: 15px;
        color: rgba(62, 56, 49, 0.80);
        line-height: 1.6em;
    }

    .work-process {
        padding: 0 0 82px;
    }

    .work-process-col-bottom {
        padding: 0 39px 0 10px;
    }

    .work-process-col-top {
        position: relative;
        margin-bottom: 34px;
    }
}