/* Timeline */
 .onw-timeline {
     display: flex;
     align-items: center;
     counter-reset: timeline-counter;
     padding-bottom: 50px;
}
 .onw-timeline-logo {
     width: 75px;
     transform: scale(2.5) translateX(15px);
     position: relative;
     z-index: 1;
}
 .onw-timeline-content {
     display: flex;
     position: relative;
     width: calc(100% - 75px);
}
 .onw-timeline-content li {
     list-style: none;
     display: flex;
     flex-direction: column;
     align-items: center;
     margin: 0 -50px;
     width: calc(30% + 100px);
     margin-top: 187px;
}
 .onw-timeline-content li:before {
     counter-increment: timeline-counter;
     content: counter(timeline-counter);
     background-color: #009fe3;
     color: #ffffff;
     font-weight: 600;
     font-size: 2.25em;
     width: 75px;
     height: 75px;
     display: inline-block;
     text-align: center;
     line-height: 75px;
     border-radius: 100%;
     z-index: 1;
}
 .onw-timeline-content li:nth-child(odd) {
     flex-direction: column-reverse;
     margin-bottom: 189px;
     margin-top: 0;
}
 .onw-timeline-content li:first-child {
     margin-left: 0;
     width: calc(30% + 50px);
}
 .onw-timeline-content li:last-child {
     margin-right: 0;
     width: calc(20% + 50px);
}
 .onw-timeline-content li h4 {
     margin: 15px 0;
}
 .onw-timeline-content:before {
     content: '';
     background-color: #000000;
     width: calc(100% - 165px);
     height: 10px;
     position: absolute;
     top: 50%;
     transform: translateY(-50%);
     z-index: 0;
}
 .onw-timeline-content li p {
     margin: 0;
}
 @media (max-width: 1340px) {
     .onw-timeline {
         flex-direction: column;
         align-items: unset;
    }
     .onw-timeline-content {
         flex-direction: column;
         padding: 0;
         width: 100%;
    }
     .onw-timeline-content li {
         margin: 0 0 50px!important;
         display: grid;
         grid-template-columns: 100px 1fr;
        /* grid-template-rows: repeat(2, 1fr);
         */
         width: auto!important;
         min-height: 160px;
    }
     .onw-timeline-content li:first-child {
         margin-top: 75px!important;
    }
     .onw-timeline-content li:before {
         grid-area: 1 / 1 / 3 / 2;
         align-self: center;
         justify-self: center;
    }
     .onw-timeline-content li h4 {
         margin: 0 0 5px;
         align-self: flex-end;
    }
     .onw-timeline-content:before {
         width: 10px;
         height: calc(100% - 70px);
         top: 0;
         left: 45px;
         transform: none;
    }
     .onw-timeline-logo {
         transform: scale(2) translate(30px, 15px);
    }
}
/* END Timeline */
/* Landingspagina */
 .onw-colour-custom .gform_footer input[type=submit] {
     background-color: var(--theme-button-background-hover-color);
     transition: all 100ms ease-in-out;
}
 .onw-post-grid {
     display: flex;
     flex-wrap: wrap;
     gap: 20px;
}
 .onw-post-item {
     flex: 1 1 calc(33.333% - 20px);
     box-sizing: border-box;
     border-radius: 5px;
     display: flex;
}
 .onw-post-link {
     text-decoration: none;
     color: inherit;
     display: flex;
     flex-direction: column;
}
 .onw-post-date {font-size: 0.85em;color: #ef8d2c!important;margin-bottom: 5px;}
 .onw-post-thumbnail {
     margin-bottom: 15px;
     border: solid 1px #f2f2f2;
     padding: 15px;
     border-radius: 2px;
     overflow: hidden;
}
 .onw-post-title {
     font-size: 18px;
     color: #333;
     margin: 0 0 10px;
     transition: all 200ms ease-in-out;
}
 .onw-post-excerpt {
     margin-bottom: 25px;
}
.onw-post-thumbnail img {
    height: 250px;
    object-fit: cover;
    width: 100%;
}

.onw-post-item .button {
    color: #ffffff;
    display: inline-block;
    line-height: normal;
    min-height: auto;
    padding: 15px 25px;
    font-weight: 400;
    margin-top: auto;
}

.onw-post-link:hover {
    color: inherit;
}

.onw-post-link:hover h3 {
    color: #009fe3;
}

.onw-post-link .onw-post-thumbnail img {
    transition: all 200ms ease-in-out;
}

.onw-post-link:hover .onw-post-thumbnail img {
    transform: scale(1.1);
}
.onw-hero {
    padding: 125px 0;
}

.onw-content h2 {
    font-size: 2em;
}

.onw-content h1 {
    font-size: 2.5em;
}

.onw-content h3 {
    font-size: 1.5em;
}
.button + .button {
    background-color: transparent!important;
    color: inherit;
    text-decoration: underline!important;
}

.button + .button:hover {
    text-decoration: none!important;
    transform: none!important
}

.onw-content .button {
    font-weight: 400;
}

.onw-colour-custom .button {
    background-color: #c3a62e;
}

.onw-content .button:hover {
    transform: scale(1.05);
}
.onw-content :not(.onw-no-underline):is(h1, h2, h3):after {
    content: '';
    width: 150px;
    max-width: 100%;
    height: 3px;
    background-color: #f6b934;
    display: block;
    margin: 10px 0 0;
    border-radius: 99px;
}

.onw-content [style*="center"]:not(.onw-no-underline):is(h1, h2, h3):after {
    margin: 10px auto 0;
}

.onw-colour-custom :not(.onw-no-underline):is(h1, h2, h3):after {
    background-color: #ffffff;
}
.onw-breadcrumb-row {
    padding: 5px 0;
    border-bottom: solid 1px #e5e5e5;
}
 @media (max-width: 768px) {
     .onw-post-item {
         flex: 1 1 100%;
    }.onw-breadcrumb-row .onw-text {
         padding: 0;
    }.onw-content .button {
    display: block;
    min-height: unset;
    padding: 10px 15px;
}

.onw-testimonials img {
    max-height: 150px;
}

.onw-content [style*="center"]:is(h1, h2, h3) {
    text-align: left!important;
}

.onw-content [style*="center"]:not(.onw-no-underline):is(h1, h2, h3):after {
    margin: 10px 0 0!important;
}
}
/* END Landingspagina */
/* Misc */
 .entry-content > .wp-block-cover:first-child img {
     max-height: 350px;
     object-fit: cover;
}
/* END Misc */
