:root {
    --dark-blue: #0d2c3b;
    --orange: #d1730f;
    --green: #5c8a6f;
}

body{
    background-color: var(--dark-blue);
    font-family: "Heebo", sans-serif;
}

h1, h2, h3, h4, h5{
    font-family: "Poppins", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 500;
}

p,a{
    font-family: "Heebo", sans-serif;
    font-style: normal;
}

p{
    font-size: 18px;
    line-height: 30px;
}

p strong{
    font-weight: 600;
}

a{
    transition: all .3s;
}

*, *::before, *::after {
    box-sizing: border-box;
}


.container-main{
    margin: 20px 30px;
}

.container{

}

.page-template-default .page {
    padding-top: 120px;
}

.home .page{
    padding-top: 0;
}


.top-header{
    display: flex;
    justify-content: space-between;
    gap: 10px;
    transition: all .5s;
}

.top-header-social-links{
    display: flex;
    gap: 20px;
}

.logo-header g path{
    fill: #ffffff;
}

.top-header__col svg path{
    fill: #fff;
    transition: all .3s;
}

.top-header__col a:hover svg path{
    fill: var(--orange);
    transition: all .3s;
}

.menu-top-header-menu{
    display: flex;
    gap: 20px;
}

.menu-top-header-menu a{
    color: #fff;
    transition: all .3s;
    cursor: pointer;
    font-weight: 400;
    font-size: 15px;
    text-decoration: none;
}

.menu-top-header-menu a:hover{
    color: var(--orange);
}

.menu-top-header-menu a::after{
    content: "";
    border-bottom: 1px solid var(--orange);
    width: 0;
    display: block;
    transition: all .3s;
    padding-bottom: 3px;
}

.menu-top-header-menu a:hover::after{
    width: 100%;
}

.bottom-header{
    display: flex;
    gap: 50px;
    justify-content: space-between;
    align-items: center;
    padding: 40px 0 20px 0;
}

.bottom-header .menu{
    display: flex;
    gap: 40px;
}

.bottom-header .menu a{
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    line-height: 21px;
    font-weight: 500;
    color: #ffffff;
    text-decoration: none;
    cursor: pointer;
}

.bottom-header .menu a::after{
    content: "";
    border-bottom: 2px solid var(--orange);
    width: 0;
    display: block;
    transition: all .3s;
    padding-bottom: 3px;
}

.bottom-header .menu .current-menu-item a::after{
    content: "";
    border-bottom: 2px solid var(--orange);
    width: 100%;
    display: block;
    transition: all .3s;
    padding-bottom: 3px;
}

.header-box .menu-top-header-menu .current-menu-item a::after{
    content: "";
    border-bottom: 1px solid var(--orange);
    width: 100%;
    display: block;
    transition: all .3s;
    padding-bottom: 3px;
}

.bottom-header .menu li:nth-of-type(4).current-menu-item a::after{
    border-bottom: 2px solid #5c8a6f;
}

.bottom-header .bottom-menu-right{
    flex: 1;
}

.bottom-header .menu a:hover::after{
    width: 100%;
}

h1{
    font-size: clamp(2.4rem, 1.2vw + 1.7vw, 3rem);
    line-height: 1.3em;
    font-weight: 700;
    padding: 0 0 20px 0;
}

h1 strong,
h2 strong{
    text-decoration: underline;
    text-decoration-color: #7fa398;
}

.home h1{
    font-size: 8vh;
    line-height: 1.1em;
    font-weight: 700;
    padding: 0 0 20px 0;
}

.home h1::after{
    content: "";
    background-color: var(--orange);
    height: 6px;
    width: 30vw;
    max-width: 300px;
    position: absolute;
    bottom: -10px;
    left: 0;
}

h2{
    font-size: clamp(1.8rem, 0.8vw + 1.5vw, 2.7rem);
    line-height: 1.2;
    font-weight: 700;
    text-wrap: balance;
    padding: 10px 0 10px 0;
}

h3{
    font-size: clamp(1rem, 0.6vw + 1.1vw, 1.4rem);
    line-height: 1.4;
    font-weight: 500;
    text-wrap: balance;
    padding: 0 0 0 0;
}

h4{
    font-size: clamp(1.1rem, 1vw + 1.3vw, 2.1rem);
    line-height: 1.3;
    font-weight: 700;
    text-wrap: balance;
    padding: 0 0 0 0;
}

.btn-play-video{

}

.text-white p,
.text-white h2,
.text-white h3{
    color: #ffffff;
}

.btn-play-video .stk--svg-wrapper{
    background-color: #7fa398;
    display: flex;
    padding: 21px 11px 21px 23px;
    border-radius: 50px;
    position: relative;
    animation: pulseBorder 4s ease-out infinite;
}


.btn-play-video-orange .stk--svg-wrapper{
    background-color: var(--orange);
    animation: pulseBorderOrange 4s ease-out infinite;
}

@keyframes pulseBorder {
    0% {
        box-shadow: 0 0 0 0 rgba(127, 163, 152, 0.6);
    }

    50% {
        box-shadow: 0 0 0 15px rgba(127, 163, 152, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(127, 163, 152, 0);
    }
}

@keyframes pulseBorderOrange {
    0% {
        box-shadow: 0 0 0 0 var(--orange);
    }

    50% {
        box-shadow: 0 0 0 15px rgba(127, 163, 152, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(127, 163, 152, 0);
    }
}



.btn-play-video .stk-button__inner-text{
    padding-left: 10px;
    font-size: 18px;
}


.unieke-combinatie__col .stk-column-wrapper .stk-block-content{
    padding: 9% 9% 9% 9%;
}

.unieke-combinatie__col p,
.unieke-combinatie__col h3{
    color: #0d2c3b;
}

.unieke-combinatie__col .stk-column-wrapper .stk-block-content .wp-block-stackable-image{
    box-shadow: 0 0 30px 10px hsl(0deg 0% 0% / 10%);
    transition: all .5s;
}

.unieke-combinatie__col:hover .stk-column-wrapper .stk-block-content .wp-block-stackable-image{
    box-shadow: 0 0 30px 15px hsl(0deg 0% 0% / 5%);
}

.unieke-combinatie__col:hover .stk-column-wrapper .stk-block-content .wp-block-stackable-image{
    overflow: hidden;
    transition: all .5s;
    scale: 0.95;
}

.unieke-combinatie__col .stk-column-wrapper .stk-block-content .wp-block-stackable-image img,
.video-frame .wp-block-stackable-image img{
    transition: all .5s;
}

.unieke-combinatie__col:hover .stk-column-wrapper .stk-block-content .wp-block-stackable-image img{
    scale: 1.1;
    transition: all .6s;
}

.unieke-combinatie__col:hover h3{
    color: #7fa398;
}

.video-frame .wp-block-stackable-image{
    overflow: hidden;
    transition: all .6s;
}

.video-frame:hover .wp-block-stackable-image{
    transition: all .8s;
    scale: 0.99;
}

.video-frame:hover .wp-block-stackable-image img{
    scale: 1.02;
    transition: all .8s;
}

.second-menu-mobile{
    display: none;
}

.vacatur__col{
    transition: all .4s;
    background-color: hsl(0deg 0% 0% / 15%);
    background-blend-mode: color;
    cursor: pointer;
    box-shadow: 0 0 50px hsl(0deg 0% 0% / 0%);
    position: relative;
    z-index: 2;
}

.vacatur__col:hover{
    scale: 1.05;
    background-color: hsl(0deg 0% 0% / 40%);
    background-blend-mode: color;
    box-shadow: 0 0 100px hsl(0deg 0% 0% / 40%);
    position: relative;
    z-index: 3;
    transition: all .6s;
}

@media only screen and (min-width: 1930px){
    h2 {
        font-size: clamp(1.9rem, 0.9vw + 1.6vw, 3.6rem);
        line-height: 1.4;
        font-weight: 700;
        text-wrap: balance;
        padding: 10px 0 10px 0;
        max-width: 1200px;
    }

    p {
        font-size: 22px;
        line-height: 38px;
    }

    h3 {
        font-size: clamp(1.2rem, 0.7vw + 1.4vw, 1.9rem);
        text-wrap: balance;
        font-weight: 600;
    }
}

@media only screen and (min-width: 1024px){
    .menu-toggle{
        display: none;
    }

}

.menu-toggle {
    border: none;
    cursor: pointer;
    padding: 10px 10px 7px 10px;
    background-color: #000;
    border-radius: 60px;
}

.menu-toggle svg {
    width: 32px;
    height: 32px;
}

.line {
    fill: none;
    stroke: #fff;
    stroke-width: 6;
    stroke-linecap: round;
    transition:
            transform 0.4s cubic-bezier(.68,-0.55,.27,1.55),
            opacity 0.3s ease;
}

/* ACTIVE STATE */
.menu-toggle.is-active .line1 {
    transform: rotate(45deg) translate(22px, -32px);
}

.menu-toggle.is-active .line2 {
    opacity: 0;
}

.menu-toggle.is-active .line3 {
    transform: rotate(-45deg) translate(-48px, 2px);
}

.header-box{
    position: fixed;
    z-index: 2;
    top: 0;
    left: 0;
    width: 100%;
    margin: auto;
    padding: 20px 30px;
    background-color: var(--dark-blue);
    box-shadow: 0 -24px 50px hsl(0deg 0% 0% / 50%);
}

.header-box-scroll{

}

.header-box-scroll .top-header{
    transition: all 0.6s;
    transform: translateY(-50px);
    margin-bottom: -50px;
}

.header-contact-info{
    display: none;
}

.title-col h2::after{
    content: "";
    display: block;
    border-bottom: 5px solid var(--orange);
    width: 70px;
    padding: 0 0 10px 0;
}

.link-btn *{
    transition: all .6s !important;
}

.link-btn span,
.link-btn svg path{
    color: var(--orange) !important;
    fill: var(--orange) !important;
    font-size: 19px;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
}

.link-btn:hover svg,
.link-btn:hover .stk-button__inner-text{
    transform: translateX(10px);
}

.link-btn a::before{
    inset: auto !important;
    width: 30px !important;
    height: 2px !important;
    z-index: 2222 !important;
    left: 0 !important;
    background-color: var(--orange);
}

.link-btn-green span,
.link-btn-green svg path{
    color: var(--green) !important;
    fill: var(--green) !important;
}

.link-btn-green a::before{
    background-color: var(--green);
}

.ucp-block__item h3,
.ucp-block__item p{
    transition: all .3s;
}

.ucp-block__item:hover h3,
.ucp-block__item:hover p{
    color: #ffffff !important;
}

.ucp-block__item:hover picture img{
    filter: brightness(1.5);
}

.oplossing-col .stk-block-heading__bottom-line{
    width: 90px;
    transition: all .5s !important;
}

.forminator-button{
    font-size: 18px !important;
    font-weight: 600 !important;
    font-family: "Poppins", Sans-serif !important;
    padding: 18px 54px !important;
    border-radius: 6px !important;
    color: #ffffff !important;
    background: #7fa398 !important;
}

@media only screen and (max-width: 1024px){
    .home h1{
        font-size: 6.6vh;
        line-height: 1.1em;
        font-weight: 700;
        padding: 0 0 20px 0;
    }

    .oplossing-col .stk-block-heading__bottom-line{
        width: 40px;
    }

    h3 {
        font-size: clamp(1.3rem, 0.6vw + 1.1vw, 1.4rem);
    }

    h4 {
        font-size: clamp(1.5rem, 1.2vw + 1.4vw, 2.2rem);
        padding: 0 20px 0 20px;
    }

    p{
        font-size: 17px;
        line-height: 28px;
    }

    .bottom-header {
        gap: 40px;
        padding: 30px 0 0 0;
    }

    .bottom-header .logo svg{
        max-width: 200px;
    }

    .bottom-header .bottom-menu-right {
        flex: 1;
        display: flex;
        height: 100%;
        position: fixed;
        background-color: hsl(199.57deg 63.89% 14.12% / 90%);
        bottom: 0;
        left: 0;
        z-index: 2;
        width: 100%;
        transition: all .3s;
        opacity: 0;
        flex-direction: row;
        justify-content: space-around;
        align-self: flex-end;
        align-items: end;
        transform: translateY(-20px);
        pointer-events: none;
    }

    .bottom-header .bottom-menu-right.menu-open-box{
        opacity: 1;
        transform: translateY(0px);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        pointer-events: all;
    }

    .bottom-header .menu {
        gap: 40px;
        bottom: 110px;
        display: flex;
        flex-direction: column;
        padding-bottom: 100px;
    }

    .bottom-header .menu a {
        font-size: 31px;
        line-height: 26px;
        font-weight: 700;
        color: #ffffff;
        width: auto;
        display: inline-block;
    }

    .bottom-header .menu a,
    .header-contact-info{
        opacity: 0;
        transition: all .2s;
    }

    .menu-open .bottom-header .menu a,
    .header-contact-info{
        opacity: 1;
        transition: all .6s;
    }

    .bottom-header .menu a::after {
        border-bottom: 3px solid var(--orange);
        padding-bottom: 6px;
    }

    .header-box .top-header,
    .header-box .logo,
    .header-box .menu-toggle{
        z-index: 3;
        position: relative;
    }

    .header-contact-info{
        gap: 23px;
        padding-bottom: 110px;
        display: flex;
        flex-direction: column;
        color: #ffffff;
    }

    .header-contact-info__label{
        font-size: 20px;
        font-family: "Poppins", sans-serif;
        text-transform: uppercase;
        font-weight: 700;
    }

    .header-contact-info__adress{
        line-height: 1.6;
        color: #cecece;
    }

    .header-contact-info__contacts a{
        line-height: 1.6;
        color: #cecece;
        text-decoration: underline;
    }

    .header-contact-info__contacts a:hover,
    .header-contact-info__social-links a:hover svg{
        color: #ffffff;
        fill: #ffffff;
    }

    .header-contact-info__social-links{
        gap: 20px;
        display: flex;
    }

    .header-contact-info__social-links a{
        text-decoration: none;
    }

    .header-contact-info__social-links a svg{
        color: #cecece;
        fill: #cecece;
    }
}

@media only screen and (max-width: 767px){
    .page-template-default .page {
        padding-top: 60px;
    }

    .forminator-button {
        font-size: 15px !important;
        font-weight: 500 !important;
        padding: 16px 54px !important;
        letter-spacing: 0.1px;
    }

    .btn-play-video .stk--svg-wrapper {
        padding: 18px 9px 18px 19px;
    }

    h1 {
        font-size: clamp(1.8rem, 1.3vw + 1.8vw, 3rem);
        line-height: 1.2em;
        padding: 0 0 20px 0;
        text-wrap: balance;
    }

    h4 {
        font-size: clamp(1.5rem, 1.5vw + 1.5vw, 2.3rem);
        padding: 0 0 0 20px;
        line-height: 1.3;
        font-weight: 700;
    }

    .header-box {
        padding: 15px;
    }

    .home h1 {
        font-size: 5vh;
        line-height: 1.3em;
        font-weight: 700;
        padding: 0 0 20px 0;
    }

    .top-header{
        display: none;
    }

    .bottom-header {
        gap: 20px;
        padding: 0;
    }

    .bottom-header .logo svg {
        max-width: 180px;
    }

    .menu-toggle {
        padding: 6px 7px 4px 7px;
    }

    .bottom-header .bottom-menu-right{
        flex-direction: column;
        align-self: center;
        align-items: flex-start;
        justify-content: space-between;
    }

    .bottom-header .menu {
        gap: 22px;
        display: flex;
        flex-direction: column;
        padding-bottom: 50px;
    }

    .second-menu-mobile{
        display: flex;
        flex: 1;
    }

    .bottom-header .menu a,
    .menu-top-header-menu a{
        font-size: 22px;
        line-height: 6px;
        font-weight: 600;
    }

    .bottom-header .bottom-menu-right{
        z-index: -2;
        visibility: hidden;
    }

    .menu-open .bottom-header .bottom-menu-right{
        z-index: 2;
        visibility: visible;
    }

    .bottom-header .bottom-menu-right{
        padding: 110px 10% 15% 10%;
        position: fixed;
        height: 100vh !important;
        width: 100%;
        top: 0;
    }

    .menu-top-header-menu{
        flex-direction: column;
    }

    .header-contact-info__label {
        font-size: 16px;
        font-weight: 600;
    }

    .header-contact-info {
        gap: 20px;
        padding-bottom: 0;
        padding-top: 50px;
    }

    h2 {
        font-size: clamp(1.7rem, 0.9vw + 1.5vw, 2.7rem);
        line-height: 1.3;
    }

    .unieke-combinatie__col .stk-column-wrapper .stk-block-content {
        padding: 7% 7% 8% 7%;
    }

    p {
        font-size: 16px;
        line-height: 26px;
    }

    .logo-header{
        max-width: 190px;
        z-index: 5;
        position: relative;
    }

    .stk-2d18638:before {
        opacity: 0.8 !important;
    }
}