/*!
README - STYLEGUIDE BRIEFLY
Find the style by section component, using Find or CTRL + F
BREADCRUMB STYLE,  CONTENT STYLE, LISTING STYLE, FOOTER STYLE
Make this stylesheet still readable and after using this file, dont forget to use beautify after development
Thankyou Whello Developer
*/
/*===============================
    STYLING GENERAL 
================================*/
.row-display-flex,
.row-full-width-container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-flow: row wrap;
    -moz-box-orient: horizontal;
    -moz-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
}

.vc_row.row-full-width-container:before,
.vc_row.row-full-width-container:after,
.vc_row.wpb_row.row-display-flex:before,
.vc_row.wpb_row.row-display-flex:after {
    display: none;
}

.vc_row.row-width-auto>.wpb_column {
    width: auto;
}

.justify-space-between,
.vc_row.justify-space-between {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.justify-center,
.vc_row.justify-center {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.justify-flex-start,
.vc_row.justify-flex-start {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -moz-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.justify-flex-end,
.vc_row.justify-flex-end {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -moz-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.justify-space-around,
.vc_row.justify-space-around {
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
}

.align-items-space-between,
.vc_row.align-items-space-between {
    -webkit-box-align: space-between;
    -webkit-align-items: space-between;
    -moz-box-align: space-between;
    -ms-flex-align: space-between;
    align-items: space-between;
}

.align-items-center,
.vc_row.align-items-center {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.align-items-stretch,
.vc_row.align-items-stretch {
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -moz-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
}

.align-items-flex-start,
.vc_row.align-items-flex-start {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -moz-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.align-items-flex-end,
.vc_row.align-items-flex-end {
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -moz-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.col-flex-wrapper.wpb_column>.vc_column-inner>.wpb_wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-flow: row wrap;
    -moz-box-orient: horizontal;
    -moz-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.vc_section.section-overflow-visible[data-vc-full-width],
.vc_row.row-overflow-visible[data-vc-full-width] {
    overflow: visible;
}

.vc_section.vc_section-has-fill {
    padding-top: 0px;
}

.col-auto.wpb_column {
    width: auto;
}

.col-auto.wpb_column:last-child {
    margin-left: auto;
}

.col-auto.wpb_column:first-child {
    margin-right: auto;
}

.vc_row.col-same-height {
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
       -moz-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
}

.vc_row.col-same-height>.wpb_column>.vc_column-inner,
.vc_row.col-same-height>.wpb_column>.vc_column-inner>.wpb_wrapper {
    height: 100%;
}

.text-white *,
.title-white *,
.wpb_text_column.title-white * {
    color: var(--white) !important;
}

.heading-white h1,
.heading-white h2,
.heading-white h3,
.heading-white h4,
.heading-white h5,
.heading-white h6 {
    color: var(--white);
}

.wpb_single_image .vc_single_image-wrapper.vc_box_rounded,
.wpb_single_image .vc_single_image-wrapper.vc_box_rounded img {
    -webkit-border-radius: var(--rounded-lg);
       -moz-border-radius: var(--rounded-lg);
            border-radius: var(--rounded-lg);
}

*+h2:not(:first-of-type),
*+h3:not(:first-of-type),
*+h4:not(:first-of-type) {
	margin-top: 32px;
}

*+h5:not(:first-of-type),
*+h6:not(:first-of-type) {
	margin-top: 24px;
}

/* font weight */
.fw-p-500 p,
.fw-500 * {
    font-weight: 500;
}

.fw-p-600 p,
.fw-600 * {
    font-weight: 600;
}

/* line-height */
.line-height-1-3 * {
    --lineheight-s: 1.3;
    line-height: var(--lineheight-s);
}

.line-height-p-normal p,
.line-height-normal {
    line-height: var(--lineheight-xs);
}

.line-height-heading-1-4 h1,
.line-height-heading-1-4 h2,
.line-height-heading-1-4 h3,
.line-height-heading-1-4 h4 {
    --lineheight: 1.4;
    line-height: var(--lineheight);
}

.line-height-heading-medium h1,
.line-height-heading-medium h2,
.line-height-heading-medium h3,
.line-height-heading-medium h4 {
    line-height: var(--lineheight-m);
}

.line-height-p-medium p,
.line-height-medium {
    line-height: var(--lineheight);
}

.line-height-p-1-7 p {
    --lineheight-m: 1.7;
    line-height: var(--lineheight-m);
}

/* custom gap paragpraph */
.custom-gap-p-medium p+p {
    margin-top: 25.6px;
}

/* font size */
.text-sm {
    font-size: var(--text-sm);
}

.text-sm-15 {
    --text-base: 15px;
    font-size: var(--text-base);
}

.text-large-40 * {
    --text-3xl: 40px;
    font-size: var(--text-3xl);
}

/* list image check */
.vc_row.row-content-image ul,
.list-image-green ul {
    padding-left: 0;
    list-style-type: none;
    margin-top: 32px;
}

.vc_row.row-content-image ul li,
.list-image-green ul li {
    position: relative; 
}

.vc_row.row-content-image ul li,
.list-image-green ul li {
    padding-left: -webkit-calc(24px + 8px);
    padding-left: -moz-calc(24px + 8px);
    padding-left: calc(24px + 8px);
}

.vc_row.row-content-image ul li:before,
.list-image-green ul li:before {
    position: absolute;
    content: '';
    top: 1px;
    left: 0;
    background: var(--transparent) url(../images/ic-list-item.svg) center/contain no-repeat;
}

.vc_row.row-content-image ul li:before,
.list-image-green ul li:before {
    width: 24px;
    height: 24px;
}

.vc_row.row-content-image ul li+li,
.list-image-green ul li+li {
    margin-top: 12px;
}

section.vc_section.vc_section-has-fill {
    padding-top: 0;
}

h1 + p,
h2 + p,
h3 + p,
h4 + p,
h5 + p,
h6 + p {
    margin-top: 0;
}

/* custom wh button -------------------------*/
.whbutton-wrapper.label-fw-normal .label-cta {
    font-weight: 400;
}

/* custom position image----------------------------- */
.wpb_single_image {
    position: relative;
}

/* btn */
.btn {
    position: relative;
    display: inline-block;
    font-size: var(--text-md);
    font-weight: 700;
    line-height: var(--lineheight);
}

/* display none */
.display-none {
    display: none;
}

/* background yellow */
.bg-yellow {
    background-color: var(--yellow);
    -webkit-animation: show-section 2s;
       -moz-animation: show-section 2s;
         -o-animation: show-section 2s;
            animation: show-section 2s;
}

/* rounded yellow */
.rounded-yellow {
    background-color: var(--yellow);
    -webkit-border-radius: var(--rounded-xl);
       -moz-border-radius: var(--rounded-xl);
            border-radius: var(--rounded-xl);
}

/* sidebar position sticky */
.sidebar-content-post,
.aside-sticky,
.sidebar-sticky.wpb_column>.vc_column-inner {
    position: -webkit-sticky;
    position: sticky;
    top: var(--sticky-offset);
}

/* icon pattern */
i.icons {
    display: inline-block;
    background-position: center;
    -webkit-background-size: cover;
       -moz-background-size: cover;
         -o-background-size: cover;
            background-size: cover;
    background-repeat: no-repeat;
}

.icon-arrow-right-black,
.icon-arrow-course,
.meta-info-course .icon-info .icons {
    width: 24px;
    height: 24px;
    min-width: 24px;
    min-height: 24px;
}

.icon-arrow-right-black,
.icon-arrow-course,
.meta-info-course .icon-info .icons, 
.btn-boeken:after {
    -webkit-transition: var(--duration);
    -o-transition: var(--duration);
    -moz-transition: var(--duration);
    transition: var(--duration);
}

.icon-arrow-right-black {
    background-image: url(../icons/arrow-black-right-line.svg);
}

.icon-arrow-course {
    background-image: url(../images/icon-arrow-listing-course.svg);
}

.listitem-wrapper:hover .icon-arrow-right-black,
.listitem-wrapper:hover .icon-arrow-course {
    -webkit-transform: translateX(3px);
       -moz-transform: translateX(3px);
        -ms-transform: translateX(3px);
         -o-transform: translateX(3px);
            transform: translateX(3px);
}

/* z-index */
.z-index-2 {
    position: relative;
    z-index: 2;
}
 
/*-------------------------------------------
        STYLING FOOTER
---------------------------------------------*/
/* menu footer */
.site-footer .menu {
    padding-left: 0;
}

.site-footer .menu {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-flow: row wrap;
       -moz-box-orient: horizontal;
       -moz-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.site-footer .menu .menu-item a {
    color: var(--black);
    -webkit-transition: var(--duration);
    -o-transition: var(--duration);
    -moz-transition: var(--duration);
    transition: var(--duration);
}

.site-footer .menu .menu-item a:hover {
    text-decoration: underline;
}

.site-footer .row-copyright {
    font-size: var(--text-xs);
}

.site-footer .row-copyright a {
    text-decoration: underline;
    color: var(--black);
}

.site-footer p {
    line-height: var(--lineheight);
}

.site-footer .vc_row.row-bottom-content-footer:before {
    display: inline-block;
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--green);
    height: 1px;
}

/* media-social footer */
.logo-label-wrapper.media-social-footer .logo-group-item:not(:last-child) {
    margin-right: 16px;
}

.logo-label-wrapper.media-social-footer .image-wrapper {
    overflow: hidden;
}

.logo-label-wrapper.media-social-footer .logo-group-item img {
        --rounded: 5px;
    -webkit-border-radius: var(--rounded);
       -moz-border-radius: var(--rounded);
            border-radius: var(--rounded);
}

.logo-label-wrapper.media-social-footer .logo-group-item {
    -webkit-transition: var(--duration);
    -o-transition: var(--duration);
    -moz-transition: var(--duration);
    transition: var(--duration);
    -webkit-transform: translateY(0px);
       -moz-transform: translateY(0px);
        -ms-transform: translateY(0px);
         -o-transform: translateY(0px);
            transform: translateY(0px);
}

.logo-label-wrapper.media-social-footer .logo-group-item:hover {
    -webkit-transform: translateY(-2px);
       -moz-transform: translateY(-2px);
        -ms-transform: translateY(-2px);
         -o-transform: translateY(-2px);
            transform: translateY(-2px);
}

/* ------------------------------------
    WH ELEMENT AI CARD
--------------------------------------*/
.wh-ai-card-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-flow: row wrap;
       -moz-box-orient: horizontal;
       -moz-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
       -moz-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    margin: 0 -16px -16px;
    position: relative;
    z-index: 2;
}

.wh-ai-card-wrapper .card-ai-item {
    position: relative;
    padding: 0 16px;
    margin-bottom: 16px;
}

.wh-ai-card-wrapper .card-ai-item--wrapper {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    border: 2px solid var(--black);
    background-color: var(--white);
    -webkit-border-radius: var(--rounded-lg);
       -moz-border-radius: var(--rounded-lg);
            border-radius: var(--rounded-lg);
    padding: 24px;
    padding-right: 16.5px;
    top: 0;
    right: 0;
    -webkit-transition: var(--duration);
    -o-transition: var(--duration);
    -moz-transition: var(--duration);
    transition: var(--duration);
    height: 100%;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.wh-ai-card-wrapper .card-ai-item--wrapper:before {
    content: "";
    display: inline-block;
    position: absolute;
    top: 10px;
    left: -11px;
    z-index: -1;
    width: 100%;
    height: 100%;
    -webkit-border-radius: var(--rounded-lg);
       -moz-border-radius: var(--rounded-lg);
            border-radius: var(--rounded-lg);
    opacity: 0;
    -webkit-transition: var(--duration);
    -o-transition: var(--duration);
    -moz-transition: var(--duration);
    transition: var(--duration);
}

.wh-ai-card-wrapper .card-ai-item--wrapper:hover:before {
    opacity: 1;
}

.wh-ai-card-wrapper .card-ai-item--wrapper:hover {
    top: -10px;
    right: -11px;
}

.wh-ai-card-wrapper .content-card {
    position: relative;
    padding-right: 24px;
}

.wh-ai-card-wrapper .content-card:after {
    position: absolute;
    content: '';
    right: 0;
    bottom: -4px;
    width: 32px;
    height: 32px;
    background: var(--transparent) url(../images/icon-arrow-right-black.svg) center/cover no-repeat;
}

.wh-ai-card-wrapper h2,
.wh-ai-card-wrapper h3,
.wh-ai-card-wrapper h4 {
    margin-bottom: 8px;
}

.wh-ai-card-wrapper p {
    --lineheight: 1.4;
    opacity: .5;
    line-height: var(--lineheight);
}

.wh-ai-card-wrapper .icon-card {
    margin-bottom: 16px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    width: 48px;
    height: 48px;
}

/* -----------------------------------
        WH REVIEWS
-------------------------------------*/
.wh-review-wrapper {
    margin: 0 auto;
    max-width: 928px;
}

.wh-review-wrapper .profile-review--wrapper {
    -webkit-border-radius: var(--rounded-full);
       -moz-border-radius: var(--rounded-full);
            border-radius: var(--rounded-full);
    overflow: hidden;
    background-color: var(--green);
}

.wh-review-wrapper .profile-review--wrapper img {
    -webkit-transform: scale(1.01);
       -moz-transform: scale(1.01);
        -ms-transform: scale(1.01);
         -o-transform: scale(1.01);
            transform: scale(1.01);
}

.wh-review-wrapper .sub-review-info-nav,
.wh-review-wrapper .sub-info--wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}

.wh-review-wrapper .sub-review-info {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-flow: row wrap;
       -moz-box-orient: horizontal;
       -moz-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
}

.profile-review--wrapper.profile-small {
    margin-right: 10px;
}

.vc_row.row-content-testimonial>.wpb_column>.vc_column-inner>.wpb_wrapper {
    position: relative;
}

.wh-review-wrapper blockquote h2,
.wh-review-wrapper blockquote h3,
.wh-review-wrapper blockquote h4 {
    margin-bottom: 12px;
}

.show-review.slick-initialized .review--item-show.slick-slide,
.review-nav.slick-initialized .review--item-show.slick-slide {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-flow: row wrap;
       -moz-box-orient: horizontal;
       -moz-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
} 

.review-nav.slick-initialized .review--item-show.slick-slide {
    width: auto !important;
}

.review-nav.slick-slider .slick-track {
    min-width: 100%;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.review-nav.slick-slider .slick-track:before,
.review-nav.slick-slider .slick-track:after {
    display: none !important;
}

.show-review.slick-initialized .review--item-show.slick-slide {
    -webkit-border-radius: var(--rounded-xl);
       -moz-border-radius: var(--rounded-xl);
            border-radius: var(--rounded-xl);
    background-color: var(--white);
    border: 2px solid var(--black);
    overflow: hidden;
}

/* show review */
.show-review {
    margin-bottom: 32px;
}

.show-review .review--item-show .profile-review--wrapper.profile-small {
    width: 48px;
    height: 48px;
}

.show-review .sub-review-info {
    margin-top: 24px;
}

.show-review .name-review {
    --lineheight-xs: 1.333;
    font-size: var(--text-md);
    font-weight: 600;
    line-height: var(--lineheight-xs);
}

.show-review .sub-review {
    --lineheight: 1.5;
    line-height: var(--lineheight);
}

/* review nav */
.review-nav .review--item-show {
    cursor: pointer;
}

.review-nav .review--item-show .profile-review--wrapper {
    width: 56px;
    height: 56px;
}

.review-nav .review--item-show .content-review--wrapper {
    width: -webkit-calc(100% - 56px);
    width: -moz-calc(100% - 56px);
    width: calc(100% - 56px);
    padding-left: 16px;
}

.review-nav .name-review {
    --lineheight: 1.5;
    font-weight: 700;
    line-height: var(--lineheight);
}

.review-nav .sub-review {
    --lineheight: 1.714;
    font-size: var(--text-sm);
    line-height: var(--lineheight);
}

.review-nav.slick-slider {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 0 53px;
}

.review--item-show:not(.is-active) {
    opacity: .5;
}

.review--item-show-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.show-review.slick-slider .slick-arrow {
    width: 40px;
    height: 40px;
    background: var(--black) url("data:image/svg+xml,%3Csvg width='25' height='25' viewBox='0 0 25 25' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_1896_1301)'%3E%3Cpath d='M5.03005 11.5H16.2L11.32 6.62C10.93 6.23 10.93 5.59 11.32 5.2C11.71 4.81 12.34 4.81 12.73 5.2L19.32 11.79C19.71 12.18 19.71 12.81 19.32 13.2L12.73 19.79C12.34 20.18 11.71 20.18 11.32 19.79C10.93 19.4 10.93 18.77 11.32 18.38L16.2 13.5H5.03005C4.48005 13.5 4.03005 13.05 4.03005 12.5C4.03005 11.95 4.48005 11.5 5.03005 11.5Z' fill='white'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_1896_1301'%3E%3Crect width='24' height='24' fill='white' transform='matrix(-1 0 0 1 24.03 0.5)'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E") center/25px no-repeat;
}

.show-review.slick-slider .slick-prev.slick-arrow {
    left: -20px;
    -webkit-transform: scale(-1) translateY(50%);
       -moz-transform: scale(-1) translateY(50%);
        -ms-transform: scale(-1) translateY(50%);
         -o-transform: scale(-1) translateY(50%);
            transform: scale(-1) translateY(50%);
}

.show-review.slick-slider .slick-next.slick-arrow {
    right: -20px;
}

.show-review.slick-slider .slick-arrow.slick-disabled {
    opacity: 1;
}

/* -----------------------------------
        LAYOUT SLIDER BLOG
-------------------------------------*/
.whbutton-wrapper.btn-layout-slider-blog {
    width: 100%;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
       -moz-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
}

/* ------------------------------------
        STYLING LISTING GENERAL
---------------------------------------*/
.listing .thumbnail-item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
}

.listing .image-wrapper {
    width: 100%;
    height: 100%;
}

.listing .thumbnail-item img,
.feature-blog .thumbnail-item img {
    --duration: .4s;
    -webkit-transition: var(--duration);
    -o-transition: var(--duration);
    -moz-transition: var(--duration);
    transition: var(--duration);
}

.listing .listitem-wrapper:hover .thumbnail-item img,
.feature-blog .listitem-wrapper:hover .thumbnail-item img {
    -webkit-transform: scale(1.04);
       -moz-transform: scale(1.04);
        -ms-transform: scale(1.04);
         -o-transform: scale(1.04);
            transform: scale(1.04);
}

.cta-meta,
.blog-info {
    --lineheight-xs: 1.1;
    line-height: var(--lineheight-xs);
}

.cta-meta {
    padding: 0;
    font-size: var(--text-sm);
}

.feature-blog .cta-meta {
    color: var(--black);
}

.blog-info {
    margin-top: auto;
    font-size: var(--text-sm);
    color: var(--gray-400);
}

/* ------------------------------------
    STYLING LISTING BLOG GENERAL
---------------------------------------*/
.listing[class*="listing-blog"] .listitem-wrapper {
    border: 2px solid var(--black);
    background-color: var(--white);
    -webkit-border-radius: var(--rounded-xl);
       -moz-border-radius: var(--rounded-xl);
            border-radius: var(--rounded-xl);
    overflow: hidden;
    height: 100%;
}

.listing[class*="listing-blog"] .image-wrapper {
    width: 100%;
    height: 100%;
}

.listing.listing-blog .title-listing {
    -webkit-line-clamp: 2;
    margin-bottom: 0;
}

/* ------------------------------------
    STYLING LISTING BLOG
---------------------------------------*/
.listing.listing-blog .blog-info {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.listing.listing-blog .cta-meta {
    color: var(--black);
    opacity: .5;
}

.listing.listing-blog .date-post {
    margin-right: 22px;
}

.listing .blog-info-wrapper {
    padding-right: 16px;
}

/* -----------------------------------
    STYLING LISTING BLOG SLIDER
-------------------------------------*/
.listing.listing-blog-slider .date-post {
    margin-right: 40px;
}

/* -----------------------------------
    STYLING LISTING COURSE
-------------------------------------*/
.listing.listing-course {
    --listing-gap-bottom: 16px;
}

.listing.listing-course.list-gap-small {
    --listing-gap-bottom: 8px;
} 

.listing.listing-course > .listing-item {
    --listing-column:1;
    --listing-gap-bottom: 16px;
}

.listing.listing-course.list-gap-small > .listing-item {
    --listing-gap-bottom: 8px;
}

.listing.listing-course .listitem-wrapper {
        --rounded-lg: 12px;
    border: 2px solid var(--black);
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
       -moz-box-orient: horizontal;
       -moz-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    background-color: var(--white);
    overflow: hidden;
}

.listing.listing-course .listitem-wrapper.listing-default {
    -webkit-border-radius: var(--rounded-lg);
       -moz-border-radius: var(--rounded-lg);
            border-radius: var(--rounded-lg);
}

.listing.listing-course .listing-default {
    padding: 14px;
    padding-left: 8px;
    padding-right: 30px;
}

.listing-course .listing-default .title-listing {
    --text-2xl: 24px;
    margin-bottom: 8px;
}

.listing-course .wrapper-date {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 64px;
    min-height: 100%;
}

.listing-course .wrapper-date span {
    display: block;
}

.listing-course .display-date {
    font-size: 28px;
}

.listing-course .wrapper-course-info {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.listing-course .listing-default .wrapper-course-info {
    width: -webkit-calc(100% - 64px);
    width: -moz-calc(100% - 64px);
    width: calc(100% - 64px);
    padding-left: 24px;
    border-left: 1px solid rgba(0,0,0,0.15);
    margin-left: 8px;
}

.listing-course .listing-default .course-info-content {
    padding-right: 8px;
}

.meta-info-course {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-flow: row wrap;
       -moz-box-orient: horizontal;
       -moz-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    margin: 0 -16px -8px;
}

.meta-info-course span {
    --lineheight-xs: 1.1;
    position: relative;
    display: inline;
    font-size: var(--text-sm);
    line-height: var(--lineheight-xs);
    opacity: .5;
}

.meta-info-course .icon-info {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding: 0 16px 8px;
}

.meta-info-course .course-location {
    background-image: url(../images/ic-location-grey.svg);
}

.meta-info-course .course-time {
    background-image: url(../images/ic-time-grey.svg);
}

.meta-info-course .inclusief-lunch {
     background-image: url(../images/icon-Info.svg);   
}

/* listing course listing image */
.listing-course .listing-image .wrapper-course-info {
    background-color: var(--white);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
       -moz-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
}

.listing-course .listing-image .excerpt-course {
    -webkit-line-clamp: 5;
}

.listing-course .listing-image .date-course {
    display: inline-block;
    opacity: .5;
    font-size: var(--text-sm);
    line-height: var(--lineheight-xs);
}

.listing-course .excerpt-course {
    line-height: var(--lineheight);
}

.listing.listing-course .listitem-wrapper.listing-image {
    -webkit-border-radius: var(--rounded-xl);
       -moz-border-radius: var(--rounded-xl);
            border-radius: var(--rounded-xl);
}

.listing.listing-course .btn-boeken {
    color: var(--green);
    padding-right: 34px;
}

.listing.listing-course .btn-boeken:after {
    position: absolute;
    content: '';
    right: 0;
    top: 50%;
    width: 18px;
    height: 17px;
    -webkit-transform: translate(0, -50%);
       -moz-transform: translate(0, -50%);
        -ms-transform: translate(0, -50%);
         -o-transform: translate(0, -50%);
            transform: translate(0, -50%);

    background: url(../icons/arrow-icon-right-green.svg) center/cover no-repeat;
}

.listing.listing-course .listitem-wrapper:hover .btn-boeken:after {
    -webkit-transform: translate(3px, -50%);
       -moz-transform: translate(3px, -50%);
        -ms-transform: translate(3px, -50%);
         -o-transform: translate(3px, -50%);
            transform: translate(3px, -50%);
}

.vc_row.row-course-latest {
    position: relative;
    margin-top: -185px;
}

/* -------------------------------------
            STYLING SINGLE
---------------------------------------*/
.single .site-article--content-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
}

.single .content-article--sidebar a:not(.cta-link-card),
.single .content-article--sidebar p a {
    color: var(--green);
    font-weight: 800;
    text-decoration: underline;
}

/* -------------------------------------
        STYLING SINGLE BLOG
---------------------------------------*/
.single-post .banner-header-single {
    background-color: var(--yellow);
}

.single-post .content-header-single {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 0 auto;
    max-width: 928px;
    text-align: center;
    padding-bottom: 76px;
}

.single-post .feature-banner-post {
    position: relative;
}

.single-post .wrapper-thumbnail {
    position: relative;
    display: block;
    content: "";
    width: 100%;
    padding-top: 56.3279857398%;
    overflow: hidden;
    -webkit-border-radius: var(--rounded-xl);
       -moz-border-radius: var(--rounded-xl);
            border-radius: var(--rounded-xl);
    border: 2px solid var(--black);
}

.single-post .wrapper-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    -webkit-background-size: cover;
       -moz-background-size: cover;
         -o-background-size: cover;
            background-size: cover;
}

.single-post .date-post-single {
    margin-top: 24px;
    margin-bottom: 24px;
}

.single-post .excerpt-post {
    max-width: 660px;
    margin: 0 auto;
    margin-bottom: 24px;
}

.single-post .content-post-full {
    position: relative;
    padding: 100px 0;
    z-index: 2;
}

.single-post .content-post-full>.wpb_column:nth-child(1) h2 {
    --text-4xl: 40px;
}

.single-post .content-article--sidebar .vc_single_image-wrapper {
    -webkit-border-radius: var(--rounded-xl);
       -moz-border-radius: var(--rounded-xl);
            border-radius: var(--rounded-xl);
    border: 2px solid var(--black);
    overflow: hidden;
}

.single-post .content-article--sidebar .vc_figure-caption {
    margin-top: 16px;
}

.single-post .content-article--sidebar .vc_single_image-wrapper {
    width: 100%;
    height: 100%;
}


/* content single post */
.single-post .content-article--sidebar h2 {
    --text-4xl: var(--text-2xl);
}

.single-post .content-article--sidebar h3 {
    --text-2xl: var(--text-xl);
}

.single-post .content-article--sidebar h4 {
    --text-xl: var(--text-lg);
}

.single-post .content-article--sidebar h5 {
    --text-lg: var(--text-md);
}

.single-post .content-article--sidebar h6 {
    --text-md: var(--text-base);
}

.single-post .content-article--sidebar p+p,
.single-post .content-article--sidebar p+ul {
    margin-top: 24px;
}

/* footer-single post */
.vc_row.row-content-related-post>.wpb_column:nth-child(1) {
    padding-left: var(--padding-container);
}

.vc_row.row-content-related-post>.wpb_column:nth-child(2) {
    padding-left: 96px;
}

.space-related-blog {
    margin-top: -285px;
}

/* related post blog --------------- */
.listing-blog.related-blog {
    margin-bottom: 0;
}

.listing-blog.related-blog .icon-arrow-right-black {
    display: none;
}

.listing.listing-blog.related-blog .cta-meta {
    opacity: 1;
}

.listing.listing-blog.related-blog .date-post {
    margin-right: 32px;
}

/* custom */
.single-post .wh-quotes-wrapper,
.single-post .wh-cta-card-wrapper {
   position: relative;
} 

/* author */
.infolist-author {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-flow: row wrap;
       -moz-box-orient: horizontal;
       -moz-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.photo-author-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    width: 48px;
    height: 48px;
    -webkit-border-radius: var(--rounded-full);
       -moz-border-radius: var(--rounded-full);
            border-radius: var(--rounded-full);
    overflow: hidden;
}

.name-author {
    --lineheight: 1.714;
    font-size: var(--text-sm);
    width: -webkit-calc(100% - 48px);
    width: -moz-calc(100% - 48px);
    width: calc(100% - 48px);
    padding-left: 16px;
    line-height: var(--lineheight);
}

/* ------------------------------------
      STYLING SINGLE COURSE
---------------------------------------*/
.single-course .site-article--wrapper {
    background-color: var(--yellow);
}

.wrapper-card-info {
    background-color: var(--white);
    -webkit-border-radius: var(--rounded-xl);
       -moz-border-radius: var(--rounded-xl);
            border-radius: var(--rounded-xl);
    border: 2px solid var(--black);
}

.info-course-wrapper {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.item--full {
    width: 100%;
}

.info-course-wrapper  span {
    display: inline-block;
    line-height: var(--lineheight-xs);
}

.info-course-wrapper > div {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}

.info-course-wrapper > div + div {
    margin-top: 32px;
}

.info-course-wrapper > div span:nth-child(2) {
    padding-left: 2px;
}

.info-course-wrapper .label-item {
    position: relative;
    padding-left: 28px;
    margin-bottom: 8px;
}

.info-course-wrapper .label-item:before {
    display: inline-block;
    position: absolute;
    content: '';
    top: -3px;
    left: 0;
    width: 24px;
    height: 24px;
    background: var(--transparent) center/cover no-repeat;
}

.info-course-wrapper .item-date:before {
    background-image: url(../images/ic-date-green.svg);
}

.info-course-wrapper .item-count:before {
    background-image: url(../images/ic-calendar-count.svg);
}

.info-course-wrapper .item-time:before {
    background-image: url(../images/ic-time-green.svg);
}

.info-course-wrapper .item-lunch:before {
    background-image: url(../images/ic-lunch-green.svg);
}

.info-course-wrapper .item-certification:before {
    background-image: url(../images/ic-certificaat-green.svg);
}

.info-course-wrapper .item-location:before {
    background-image: url(../images/ic-location-green-big-wraiter.svg);
}

.wrapper-info-course > div {
    position: relative;
}

.info-course-content {
    margin-top: -115px;
}

.wrapper-info-course {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.content-who-course ul {
    padding-left: 0;
    list-style-type: none;
}

.content-who-course ul li {
    position: relative;
    padding-left: 32px;
}

.content-who-course ul li:before {
    display: inline-block;
    position: absolute;
    content: '';
    top: -2px;
    left: 0;
    width: 24px;
    height: 24px;
    background: url(../images/ic-list-item.svg) center/cover no-repeat;
}

.content-who-course ul li+li {
    margin-top: 16px;
}

.content-wrappers {
    position: relative;
    z-index: 3;
}

.single-course .locaties a {
    -webkit-transition: var(--duration);
    -o-transition: var(--duration);
    -moz-transition: var(--duration);
    transition: var(--duration);
}

.single-course .locaties a:hover {
    text-decoration: underline;
}

/* -------------------------------
    STYLING OVERVIEW BLOG
----------------------------------*/
.row-blog {
    position: relative;
    margin-top: -185px;
    z-index: 2;
}

.wrapper-filter-blog select {
    background-color: var(--transparent);
    border: none;
    max-width: 138px;
    margin-left: auto;
    background-image: url(../images/icon-dropdown.svg);
    background-position: -webkit-calc(100% - 5px) 50%;
    background-position: -moz-calc(100% - 5px) 50%;
    background-position: calc(100% - 5px) 50%;
    padding-right: 32px;
}

/* -------------------------------
    STYLING OVERVIEW CATEGORY
----------------------------------*/
.space-review-bottom,
.row-filter-category {
    background-color: var(--yellow);
}

.container-padding {
    padding-left: var(--padding-container);
    padding-right: var(--padding-container);
}

.row-header-category {
    margin: 0;
    background-color: var(--yellow);
}

.row-filter-category {
    padding-top: 64px;
    padding-bottom: 217px;
}

.break-line {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    background-color: var(--yellow);
}

.break-line hr {
    height: 2px;
    width: 100%;
    background-color: var(--black);
    border: none;
}

.row-filter-category>.vc_row {
    width: 100%;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin: 0 auto;
}

.row-filter-category h3 {
    margin-bottom: 0;
}

/* -------------------------------
    STYLING FEATURE BLOG
----------------------------------*/
.feature-blog .listitem-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-flow: row wrap;
       -moz-box-orient: horizontal;
       -moz-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.feature-blog .thumbnail-item {
    -webkit-border-radius: var(--rounded-xl);
       -moz-border-radius: var(--rounded-xl);
            border-radius: var(--rounded-xl);
    border: 2px solid var(--black);
    overflow: hidden;
}
 
.feature-blog .image-wrapper {
    width: 100%;
    /* height: 100%; */
}

.feature-blog .cta-meta,
.feature-blog .title-listing {
    margin-bottom: 12px;
}

.feature-blog .excerpt-listing {
    margin-bottom: 24px;
}

.feature-blog .date-post {
    margin-right: 32px;
}

.feature-blog .excerpt-listing {
    -webkit-line-clamp: 7;
    line-height: var(--lineheight);
}

/* -----------------------------------
    STYLING WH QUOTES
-------------------------------------*/
.wh-quotes-wrapper .wh-quotes-content {
    position: relative;
}

.wh-quotes-wrapper .caption-quotes {
    --text-2xl: 28px;
    font-size: var(--text-2xl);
    font-family: var(--fontfamily-prata);
}

.wh-quotes-wrapper .icon-quotes {
    position: absolute;
    left: -21px;
    top: 45px;
    background-image: url(../images/icon-quotes.svg);
}

/* -----------------------------------
      STYLING WH CTA CARD
-------------------------------------*/
.wh-cta-card-wrapper {
    max-width: 928px;
    margin: 0 auto;
}

.wh-cta-card-wrapper .wh-cta-content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-flow: row wrap;
       -moz-box-orient: horizontal;
       -moz-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.wh-cta-card-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.caption-cta-wrapper h2,
.caption-cta-wrapper h3,
.caption-cta-wrapper h4,
.caption-cta-wrapper h5 {
    margin-bottom: 12px;
}

.wrapper-photo-profile {
    width: 128px;
    height: 128px;
    -webkit-border-radius: var(--rounded-full);
       -moz-border-radius: var(--rounded-full);
            border-radius: var(--rounded-full);
    overflow: hidden;
    background-color: var(--gray-300);
}

.wh-cta-card-wrapper span {
    width: 100%;
    display: inline-block;
    text-align: center;
}

.wh-cta-card-wrapper .profile-name {
    --lineheight-xs: 1.333;
    font-size: var(--text-md);
    font-weight: 600;
    line-height: var(--lineheight-xs);
    margin-top: 24px;
}

.wh-cta-card-wrapper .button-cta-wrapper {
    margin-top: 24px;
}

.wh-cta-card-wrapper .cta-link-card {
    position: relative;
    display: inline-block;
    padding: 16px 32px;
    padding-right: 72px;
    -webkit-border-radius: var(--rounded-2xl);
       -moz-border-radius: var(--rounded-2xl);
            border-radius: var(--rounded-2xl);
    color: var(--white);
    font-weight: 700;
    font-size: var(--text-md);
    line-height: var(--lineheight);
    background-color: var(--black);
}

.wh-cta-card-wrapper .cta-link-card:after {
    position: absolute;
    content: '';
    top: 50%;
    right: 32px;
    -webkit-transform: translateY(-50%);
       -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
         -o-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background: url(../icons/arrow-white-right.svg) center/cover no-repeat;
}

.wh-cta-card-wrapper .cta-link-card:hover {
    -webkit-box-shadow: var(--shadow-third);
       -moz-box-shadow: var(--shadow-third);
            box-shadow: var(--shadow-third);
}

.wh-cta-card-wrapper .profile-wrapper-cta {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    max-width: 128px;
}

/* -------------------------------
    STYLING BUTON CONTACT
----------------------------------*/ 
.vc_row.row-btn-contact {
    margin: -16px;
}

.vc_row.row-btn-contact>.wpb_column {
    width: auto;
    padding: 16px;
}

.whbutton-wrapper.btn-contact-detail .cta-whbutton {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
       -moz-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
}

.whbutton-wrapper.btn-contact-detail .icon-cta {
    width: 32px;
    height: 32px;
    margin-right: 0;
}

.whbutton-wrapper.btn-contact-detail .label-cta {
    width: -webkit-calc(100% - 32px);
    width: -moz-calc(100% - 32px);
    width: calc(100% - 32px);
    padding-left: 16px;
    color: var(--gray-700);
    line-height: var(--lineheight);
    font-weight: 400;
    font-size: var(--text-base);
}

.whbutton-wrapper.btn-contact-detail .label-cta strong {
    display: block;
}

/* --------------------------------------
     STYLING SINGLE SERVICE
----------------------------------------*/
.vc_row.row-feature-service-image .wpb_wrapper.vc_figure {
    overflow: hidden;
    -webkit-border-radius: var(--rounded-xl);
       -moz-border-radius: var(--rounded-xl);
            border-radius: var(--rounded-xl);
    border: 2px solid var(--black);
}

.vc_row.row-feature-service-image .wpb_wrapper.vc_figure,
.vc_row.row-feature-service-image .vc_single_image-wrapper {
    width: 100%;
}

.vc_row.row-feature-service-image .vc_single_image-wrapper,
.vc_row.row-feature-service-image img {
    height: 100%;
}

.col-image-world-stand.wpb_column {
    margin-left: -27px;
    z-index: 1;
}

.vc_row.row-full-width-container.row-form-single-service {
    position: relative;
    z-index: 2;
    margin-bottom: -202px;
    overflow: visible;
}

/* -------------------------------------
    STYLING PAGE AI DIENSTEN
----------------------------------------*/
.col-image-side-copywriting.wpb_column {
    position: relative;
    right: -148px;
}

.col-image-side-consultancy.wpb_column {
    position: relative;
    margin-bottom: -120px;
    z-index: 2;
}

.image-side-copywriting .vc_single_image-wrapper {
    width: 100%;
}

.page-id-448 .cta-layout-testimonial {
    display: none;
}

/* ---------------------------------
    STYLING PAGE 404    
-----------------------------------*/
.vc_row.section-404-content {
    border-bottom: 1px solid var(--black);
}

/* ------------------------------
    STYLING KEYFRAME CSS
---------------------------------*/
@-webkit-keyframes show-section {
  0%    { opacity: 0; }
  100%  { opacity: 1; }
}
@-moz-keyframes show-section {
  0%    { opacity: 0; }
  100%  { opacity: 1; }
}
@-o-keyframes show-section {
  0%    { opacity: 0; }
  100%  { opacity: 1; }
}
@keyframes show-section {
  0%    { opacity: 0; }
  100%  { opacity: 1; }
}