:root {
    --arrow-btn-bg: var(--color-beek-red);
    --arrow-btn-bg-hover: var(--color-dark-red);
    --site-color: var(--color-beek-red);
}

body {
    &:has(.project-slider-sec) {
        overflow-x: hidden;
    }
}

.global-btn {
    background: #D71019;
    border-radius: 31px;
    padding: 15px 17px 12px 50px;
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
    display: inline-block;
    align-items: center;
    column-gap: 11px;
    position: relative;
    overflow: hidden;

}

.global-btn .arrow-btn {
    display: inline-block;
    width: 35px;
    height: 35px;
    background: #980C12;
    border-radius: 50%;
    text-align: center;
    line-height: 38px;
    position: absolute;
    left: 6px;
    top: 7px;
}

.global-btn .text-btn {
    position: relative;
    z-index: 1;
    display: inline-block;
    top: -2px;
    margin: 0;

}

.global-btn:hover .arrow-btn {
    width: 160%;
    height: 127%;
    left: 0;
    top: -8px;
    border-radius: 0px;
}

.global-btn:hover .arrow-btn img {
    margin: 25px 0 0 16px;
}


.header-container {
    width: 100%;
    position: relative;
    z-index: 1;
    background: #fff;
    transition: all 0.0s ease;
}


.header-container.sticky {
    position: fixed;
    width: calc(100% - 66px);
    left: 0;
    top: 0;
    /* padding: 0 48px; */
    margin: 0 33px;
    /* z-index: 9; */
    z-index: 12;
    transition: all 0.0s ease;
    border-bottom: 1px solid var(--color-greyish);

    &::before {
        content: '';
        width: 100vw;
        position: absolute;
        bottom: 0;
        left: 0;
        height: 1px;
        background-color: white;
        z-index: 3;
        max-width: 394px;


        @media (max-width: 1100px) {
            max-width: 277px;
        }

        @media (max-width: 991px) {
            max-width: 179px;
        }
    }
}


.header-container-inner {
    max-width: 1728px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding: 22px 15px;
    align-items: center;
    background-color: var(--color-white);

    &::after {
        content: '';
        width: 32px;
        height: 32px;
        background-color: white;
        position: fixed;
        top: 117px;
        left: 0;

        @media (max-width: 1099px) {
            top: 113px;
        }

        @media (max-width: 991px) {
            display: none;
        }
    }
}

.header-container:after {
    position: absolute;
    width: 56%;
    content: "";
    height: 100%;
    bottom: -28px;
    left: 0;
    background: #fff;
    transform: skewY(-4deg);
    transform-origin: bottom left;
    border-bottom: 1px solid var(--color-greyish);
    max-width: 380px;
}

header.header {
    &.skinny-menu {
        .header-container-inner {
            @media (min-width: 992px) {
                padding-block: 12px;
            }
        }
    }
}

.header-lft {
    width: 12%;
    position: relative;
    z-index: 10;
}

.header-rht {
    width: 88%;
}


/* .main-nav .main-nav-menu{

  }

  .main-nav .header-contact{

  } */

.main-nav {
    align-items: center;
    column-gap: 11px;
    justify-content: flex-end;
}

.main-nav ul li a {
    color: #1D1D1B;
    font-size: 1rem;
    font-weight: 300;
}

.main-nav ul li a i {
    font-size: 18px;
    display: inline-block;
    /* margin: 4px 0 0; */
    position: relative;
    top: 2px;
    transform: rotate(0deg);
}

.main-nav ul li a:hover i, .main-nav ul li a.active i {
    transform: rotate(180deg);
    color: #D71019;
}

.main-nav ul li a:hover, .main-nav ul li a.active {
    color: #D71019;
}

.main-nav .sub-menu {
    position: relative;
    padding: 0 11px;
}

.main-nav li {
    padding: 0 11px;
}

.main-nav .dropdown-menu {
    position: absolute;
    background: #fff;
    width: 245px;
    padding: 22px 30px 0;
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    transition: max-height 2.1s ease-out, opacity 0.8s ease, visibility 0.8s;
    /* display: none; */
}

.main-nav ul li.sub-menu:hover .dropdown-menu {
    max-height: 650px; /* Adjust this based on content height */
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.main-nav .dropdown-menu ul {
    padding: 0;
    position: relative;
    z-index: 1;
}

.main-nav .dropdown-menu ul li {
    margin: 0;
    padding: 0;
}

.main-nav .dropdown-menu ul li a {
    padding: 6px 0;
    display: block;
    margin: 2px 0;
    line-height: 1.5;
}

.dropdown-menu-bg {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 35px;
    background: #fff;
    transform: skewY(-4deg);
    transform-origin: bottom right;
}

.header-contact {
    align-items: center;
    padding: 0 0 0 20px;
    column-gap: 20px;
    border-left: 1px solid #dcdcdc;
}

.header-contact a:first-child {
    color: #1D1D1B;
    font-weight: 500;
    /* font-size:16px; */
    font-size: 1rem;

    @media (max-width: 1540px) {
        display: none;
    }
}

.header-contact a:first-child span {
    padding: 0 5px 0 0;
}


.banner {
    /* min-height:800px; */
    position: relative;
    /* background:url(../img/montage-home-banner.jpg) no-repeat;
    background-size:cover;
    background-position:center center; */
}

.banner-media {
    position: relative;

    img {
        max-width: 100%;
        height: auto;
    }

}

.banner-home .banner-media {
    clip-path: polygon(0 0, 100% 0, 100% 86%, 0 97.5%);
    background: #000;
}

.banner-media:after {
    content: "";
    position: absolute;
    background: url(../img/banner-overlay-bg.png) no-repeat;
    background-size: cover;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* .banner-media img{
    width:100%;
  } */

.banner-media img {
    width: 100%;
    height: 700px;
    object-fit: cover;
}

.inner-hero-banner .banner-media img {
    clip-path: polygon(0 0, 100% 0, 100% 97%, 0 85%);
}


.banner-media video, .banner-media iframe {
    object-fit: cover;
    width: 100%;
    height: 800px;
}

.banner-transform-bg {
    background: #fff;
    transform: skewY(-3deg);
    width: 100%;
    height: 11%;
    position: absolute;
    bottom: 0;
    left: 0;
    transform-origin: bottom right;
}


.banner-description {
    position: absolute;
    bottom: 20%;
    left: 9%;
    max-width: 574px;
    width: 100%;
}

.banner-description h1 {
    color: #fff;
    font-size: 6.25rem;
    line-height: 1.5;
    font-weight: normal;
    overflow: hidden;
}

.banner-description h1 .f-subTittle-text {
    display: block;
    font-weight: bold;
    background: url(../img/banner-text-path.png) no-repeat;
    background-position: left 68px;
    margin: -24px 0 0;
    padding: 0 0 0 86px;
}

.banner-description-links {
    align-items: flex-end;
    gap: 24px;
    margin: 22px 0 0;
}

.banner-description-links .global-btn {
    padding: 15px 22px 12px 50px;
}


.body-sec {
    position: relative;
    z-index: 1;
    /* overflow: hidden; */
}

.text-sidebar-sec {
    margin: -140px 0 0;
}

.text-sidebar-lft {
    width: 60%;
    padding-right: 50px;
}

.text-sidebar-rht {
    width: 40%;
}

.text-sidebar-lnkBox {
    width: 100%;
    background: url(../img/side-bar-img.jpg) no-repeat;
    background-size: 100%;
    position: relative;
    background-position: right bottom;
}

.text-sidebar-lnkBox:after {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 100%;

    background: url(../img/side-bar-link-bg.png) no-repeat;
    background-size: cover;
    background-position: center;
}

.text-sidebar-inner {
    align-items: flex-end;
}

.text-sidebar-content p {
    font-size: 1.125rem;
    color: #1D1D1B;
    max-width: 655px;
    line-height: 1.9;
}


.text-sidebar-transform {
    background: #1d1d1b;
    transform: skewY(-3deg);
    width: 100%;
    height: 11%;
    position: absolute;
    top: -30px;
    left: 0;
    transform-origin: top right;
}

.text-sidebar-content {
    padding: 80px 0 0;
}

.text-sidebar-rhtContent {
    position: relative;
    z-index: 1;
    padding: 30px 50px 50px;
}

.text-sidebar-rhtContent h2 {
    color: #AAAAAA;
    font-weight: bold;
    /* font-size:38px; */
    font-size: 2.375rem;
    opacity: 0.6;

}

.text-sidebar-rhtContent ul {
    padding: 0;
    margin: 14px 0 48px;

    @media (max-width: 767px) {
        margin: 14px 0 23px;
    }
}

.text-sidebar-rhtContent ul li {
    margin: 4px 0px;
}

.text-sidebar-rhtContent ul a {
    /* font-size: 20px; */
    font-size: 1.25rem;
    font-weight: 300;
    color: #fff;
    display: flex;
    column-gap: 11px;
    align-items: center;
    justify-content: space-between;
    padding: 22px 0 26px;
    border-bottom: 1px solid #333333;
}

.text-sidebar-rhtContent ul a:hover {
    padding: 22px 25px 26px;
    color: white;
}

.text-sidebar-rhtContent .global-btn {
    background: rgba(255, 255, 255, 0);
    border: 1px solid #474747;

}

.text-sidebar-rhtContent .global-btn .arrow-btn {
    background: #fff;
}

.text-sidebar-rhtContent .global-btn:hover {

    border: 1px solid #fff;
    color: #1D1D1B;

}

.text-sidebar-rhtContent .global-btn:hover .arrow-btn {
    background: #fff;
}


.overview-three-subpages-sec {
    padding: 115px 0 0;
    margin: 66px 0 0;
}

.overview-three-subpages-sec h2 {
    color: #1D1D1B;
    font-size: 4rem;
    font-weight: 500;
}

.overview-three-subpages-sec p {
    font-size: 1rem;
    color: #AAAAAA;
    font-weight: 300;
    max-width: 447px;
    line-height: 2;
    margin: 24px 0 0;
}


.gallery {
    display: grid;
    grid-template-columns:auto auto;
    grid-template-rows: auto auto;
    gap: 10px;
    max-width: 100%;
    width: 100%;
    padding: 64px 0 0;
}

.gallery-item {
    position: relative;
    overflow: hidden;


    &:hover, &:focus {
        picture {
            clip-path: polygon(2% 2%, 98% 2%, 98% 98%, 2% 98%)
        }

        h3 {
            left: 8%;
            bottom: 12%;
        }

        .icon {
            top: calc(40px + 4%) !important;
            right: calc(50px + 4%) !important;
        }

    }

    &:first-child {

        &:hover, &:focus {
            h3 {
                left: 8%;
                bottom: 12%;
            }

            .icon {
                top: calc(75px + 2%);
                right: calc(86px + 2%);
            }
        }

        h3 {
            font-size: 2.75rem;
            left: 6%;
            bottom: 9%;

            @media (max-width: 767px) {
                font-size: 1.5rem;
                left: 3%;
                bottom: 5%;
            }
        }
    }


    .icon {
        top: 36px;
        right: 36px;

        @media (max-width: 767px) {


            top: 24px;
            right: 34px;


        }
    }

    picture {
        display: block;
        position: relative;
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
        transition: all ease-out 0.2s;
        height: 100%;
        line-height: 0;


        &::before {
            content: '';
            inset: 0;
            position: absolute;
            /* width: 100%; */
            height: 100%;
            background-image: url('/assets/templates/img/gallery-item-overlay.svg');
            z-index: 1;
            background-size: cover;
        }

    }

    h3 {
        color: white;
        padding: 10px;
        font-weight: 500;
        font-size: 1.75rem;
        position: absolute;
        left: 5%;
        bottom: 10%;
        line-height: 1;
        transition: all ease-out .2s;

        @media (max-width: 767px) {


            font-size: 1.5rem;
            left: 4%;
            bottom: 5%;


        }
    }

}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-description {
    position: relative;
    z-index: 2;
}

.gallery-item .icon {
    position: absolute;
    /* top: 40px; */
    /* right: 50px; */
    background: #980C12;
    color: white;
    padding: 10px;
    border-radius: 48px;
    font-size: 18px;
    z-index: 1;
    width: 91px;
    height: 48px;
    transition: all ease-out 0.2s;
}

.gallery-item:first-child .icon {
    width: 138px;
    height: 76px;
}

.gallery-item .icon img {
    width: auto;
    max-width: 100%;
    height: auto;
    margin: 6px 2px;
}

.gallery-item:first-child .icon img {
    margin: 14px 6px;
}

.gallery-item .icon .icon-arrow {
    position: absolute;
    width: 65px;
    height: 65px;
    line-height: 65px;
    background: #D71019;
    border-radius: 50%;
    text-align: center;
    top: -11px;
    right: -20px;
    overflow: hidden;
}

.global-btn-mobile {
    display: none;
}

.gallery-item .icon .icon-arrow i {
    display: block;
}

.hungerMenu-icon {
    display: none;
}

.gallery-item:first-child .icon .icon-arrow {
    width: 100px;
    height: 100px;
    line-height: 100px;
}

.gallery-item .icon .icon-arrow {
    font-size: 32px;
}

.gallery-item:first-child .icon .icon-arrow {
    font-size: 62px;
}

.gallery-item:first-child {
    grid-row: span 2;
}


.gallery-description .overlay h3 span {
    display: inline-block;
    margin: 0 -2.5px;
    animation: wave 1.5s infinite ease-in-out;

}

/* .gallery-item .gallery-description .overlay h3:hover span{
    animation: wave 1.5s infinite ease-in-out;
    display: inline-block;

} */

.gallery-item .overlay.overlay-show {
    opacity: 0;
    display: none;
    transition: all 0.01s ease;
}

.gallery-item:hover .overlay.overlay-show {
    opacity: 1;

}

.gallery-item:hover .overlay.overlay-first {
    /* opacity:0; */
    transition: all 0.01s ease;
}

.gallery-item:first-child .gallery-description .overlay h3 span {
    margin: 0 -3.5px;
}

.tittle-wave-hover span {
    display: block;
}

.tittle-wave-hover .drop-anim-tittle {
    animation: drop-in-tittle2 1000ms ease 100ms backwards;
    transform: translateY(0px);
}

.gallery-item:hover .drop-anim-tittle {
    transform: translateY(-30px);
}


/* @keyframes drop-in-tittle2 {

    0% {
        opacity: 0;
        transform: translateY(200px);
    }

    100% {
        opacity: 1;
        transform: translate(0px);
    }

} */


/* Creating the wave effect */
/* @keyframes wave {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
} */

/* Apply a delay for each letter */
/* .gallery-description .overlay h3 span:nth-child(1) { animation-delay: 0s; }
.gallery-description .overlay h3 span:nth-child(2) { animation-delay: 0.1s; }
.gallery-description .overlay h3 span:nth-child(3) { animation-delay: 0.2s; }
.gallery-description .overlay h3 span:nth-child(4) { animation-delay: 0.3s; }
.gallery-description .overlay h3 span:nth-child(5) { animation-delay: 0.4s; }
.gallery-description .overlay h3 span:nth-child(6) { animation-delay: 0.5s; }
.gallery-description .overlay h3 span:nth-child(7) { animation-delay: 0.6s; }
.gallery-description .overlay h3 span:nth-child(8) { animation-delay: 0.7s; }
.gallery-description .overlay h3 span:nth-child(9) { animation-delay: 0.8s; }
.gallery-description .overlay h3 span:nth-child(10) { animation-delay: 0.9s; }
.gallery-description .overlay h3 span:nth-child(11) { animation-delay: 0.10s; }
.gallery-description .overlay h3 span:nth-child(12) { animation-delay: 0.11s; }
.gallery-description .overlay h3 span:nth-child(13) { animation-delay: 0.12s; } */


.call-toAction-sec {
    padding: 150px 0 0;

    @media (max-width: 1199px) {
        padding-top: 80px;
    }
}

.call-toAction-inner {
    max-width: 894px;
    margin: 0 auto;
}

.call-toAction-inner-lft {
    width: 52%;
    border-right: 1px solid #e9e9e9;
    padding: 0 50px 0 0;
}

.call-toAction-inner-rht {
    width: 48%;
    padding: 0 0 0 69px;
}

.call-toAction-img {
    width: 30%;
    position: relative;

    @media (max-width: 767px) {
        width: 27%;
    }

    img {
        max-width: 100%;
        height: auto;
    }
}

.call-toAction-img .live {
    position: absolute;
    background: #e8f5d9;
    border: 3px solid #fff;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    z-index: 1;
    right: 0;
    bottom: 0;
}

.call-toAction-img .live:after {
    position: absolute;
    content: "";
    border-radius: 50%;
    top: 5px;
    right: 5px;
    background: #7EC828;
    width: 10px;
    height: 10px;
    /* transform: translate(-50%, 10px); */
}

.call-toAction-contentBox-lft {
    align-items: center;
}

.call-toAction-parg {
    width: 70%;
    padding: 0 0 0 35px;
}

.call-toAction-img {
    /* background:#DADADA; */
}

.call-toAction-img img {
    width: 100%;
    background: #dadada3b;
}

.call-toAction-parg h2 {
    font-size: 1.125rem;
    color: #1D1D1B;
    font-weight: bold;
}

.call-toAction-parg p {
    font-size: 1rem;
    font-weight: normal;
    color: #1D1D1BCC;
    line-height: 1.5;

    @media (max-width: 767px) {
        margin-top: 12px;
    }
}

.call-toAction-btn-block {
    margin: 0;
    gap: 15px;
}

.call-toAction-btn-block span {
    display: inline-block;
    padding: 0 0 0 2px;
}

.call-toAction-btn-block a {
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    background: #D71019;
    padding: 11px 19px;
    border-radius: 31px;
    border: 1px solid transparent;
    transition: all 0.45s ease;
    display: flex;
    gap: 14px;
    align-items: center;


    @media (max-width: 767px) {
        padding: 11px 24px 11px 14px;
        gap: 7px;
    }

    &:has(span[data-text]) {
        overflow: hidden;

        span[data-text] {
            transition: all ease-out 0.2s;
            display: inline-block;
            /*opacity: 1;*/
            position: relative;
            top: 0;

            &::after {
                content: attr(data-text);
                position: absolute;
                left: 0;
                top: 40px;
                color: inherit;
                opacity: 0;
            }
        }

        &:hover, &:focus {
            span[data-text] {
                top: -40px;

                &::after {
                    opacity: 1;
                }
            }
        }
    }
}

/*.call-toAction-btn-block a i {*/
/*    color: #980C12;*/
/*    line-height: 1;*/
/*    text-align: unset;*/
/*    vertical-align: baseline;*/
/*}*/

/*.call-toAction-btn-block a:hover {*/
/*    background: #fff;*/
/*    color: #D71019;*/
/*    border: 1px solid #D71019;*/
/*}*/

.call-toAction-btn-block a.black {
    background: #1D1D1B;
}

/*.call-toAction-btn-block a.black i {*/
/*    color: #414140;*/
/*}*/

/*.call-toAction-btn-block a.black:hover {*/
/*    background: #fff;*/
/*    color: #1D1D1B;*/
/*    border: 1px solid #1D1D1B;*/
/*}*/

.call-toAction-btn-block a.green {
    background: #74C11B;
}

/*.call-toAction-btn-block a.green i {*/
/*    color: #6cac22;*/
/*}*/

/*.call-toAction-btn-block a.green:hover {*/
/*    background: #fff;*/
/*    color: #74C11B;*/
/*    border: 1px solid #74C11B;*/
/*}*/


.contains-tittleText-sec {
    padding: 115px 0 0;
    margin: 115px 0 0;
}

.contains-tittleText-lft {
    width: 50%;

    h1 strong {
        font-weight: 500;
    }
}

.contains-tittleText-rht {
    width: 50%;
    padding: 80px 0 0 30px;
    /* display: flex; */
    /* flex-direction: column; */
    /* align-items: flex-end; */
    /* justify-content: end; */

    @media (max-width: 1200px) {
        padding-top: 0;
        p {
            &:first-child {
                margin-top: 0;
            }
        }
    }
}


.contains-tittleText-inner-montage-over-ons .contains-tittleText-lft {
    width: 54%;
}

.contains-tittleText-inner-montage-over-ons .contains-tittleText-rht {
    width: 46%;
}

.contains-tittleText-lft h2 {
    color: #1D1D1B;
    font-weight: 500;
    font-size: 3rem;
    line-height: 1.2;
}

.contains-tittleText-lft p {
    color: #AAAAAA;
    font-weight: 500;
    font-size: 1.125rem;
    margin: 26px 0 0;
}


.contains-tittleText-rht p {
    color: #000000CC;
    font-size: 1rem;
    line-height: 1.8;
    margin: 40px 0 0;
    /* margin-left:auto;
    max-width:638px; */
}


.quotation-slider-sec {
    background: #1D1D1B0A;
    /* margin:150px -48px 0; */
    margin: 150px 0px 0;
    padding: 120px 0 150px;
}


.quotation-slider-sec .slider-container {
    display: flex;
    width: 100%;
    /* height: 100vh; */
    min-height: 710px;
    position: relative;
}

/* Left Column - Image */
.quotation-slider-sec .left-column {
    flex: 1;
    /* overflow: hidden; */
    position: relative;
}

.quotation-slider-sec .slides {
    /* display: flex; */
    flex-direction: column;
    height: 300%; /* Adjust based on the number of slides */
    transition: transform 1s ease-in-out;


    @media (max-width: 767px) {
        height: auto;
    }
}

.quotation-slider-sec .slide {
    flex: 1;
    width: 100%;
    background-size: cover;
    background-position: center;


    @media (max-width: 767px) {
        /*flex: 1 1 100%;*/
        flex: 1 0 auto;
        max-height: 228px;
        overflow: hidden;

        img {
            height: auto;
            max-width: 100%;
            width: 100%;
        }
    }
}

/* Right Column - Titles and Quotes */
.quotation-slider-sec .right-column {
    flex: 1;
    /* background: #f5f5f5; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px 20px 20px 80px;
}

.quotation-slider-sec .titles {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.quotation-slider-sec .title {
    font-size: 2rem;
    font-weight: 500;
    color: #AAAAAA;
    cursor: pointer;
    position: relative;
    width: 30%;
}

.quotation-slider-sec .title.active {
    color: #1D1D1B;
}

/* .quotation-slider-sec .title::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    height: 4px;
    width:100%;
    background:#000;
    animation: progress 5s linear forwards;
  } */

/* Progress Bar */
.quotation-slider-sec .title:before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    height: 3px;
    width: 100%;
    background: transparent;

    @media (max-width: 767px) {
        bottom: -5px;
    }
}

.quotation-slider-sec .title.active::before {

    background: #DADADA;
}

.quotation-slider-sec .title.active::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    height: 3px;
    width: 100%;
    background: #f00;
    animation: progress 5s linear forwards;

    @media (max-width: 767px) {
        bottom: -5px;
    }
}

@keyframes progress {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}

.quotation-slider-sec .quote-slides .quote-slide:not(.swiper-slide-visible),
.quotation-slider-sec .slides .slide:not(.swiper-slide-visible) {
    opacity: 0 !important;
}

.quotation-slider-sec .quote-slides q {
    &:before {
        content: '“'
    }

    &:after {
        content: '”'
    }
}

.quotation-slider-sec .quote {
    margin-top: 20px;
    font-size: 1.5rem;
    font-weight: 300;
    color: #000000CC;
    line-height: 1.5;
    padding: 65px 0 0;
    max-width: 518px;
}

.quotation-slider-sec .author {
    margin-top: 10px;
    font-weight: 500;
    font-size: 1.313rem;
    color: #333;
    margin: 30px 0 0;

    @media (max-width: 767px) {
        margin-top: 60px;
    }
}


.right-column-topTittle {

    margin: 0 0 50px;
    position: absolute;
    top: 0;
    /* left: 0; */
}

.right-column-topTittle h2 {
    color: #AAAAAA;
    font-size: 1rem;
    font-weight: 300;
}

.quotation-icon {
    position: absolute;
    top: -10px;
    z-index: 2;
    left: 38px;
}


.project-slider-sec {
    position: relative;
    background: #1D1D1B;
    padding: 70px 0 125px;
    /* overflow: hidden; */
    position: relative;
    /* clip-path: polygon(0% 0%, 100% 3%, 100% 100%, 0% 100%); */
    margin: -40px 0 0;
}

.project-slider-sec:after {
    position: absolute;
    top: 0;
    content: "";
    left: 0;
    width: 50%;
    height: 100%;
    background: #1D1D1B;
}

.project-slider-block .project-slider .slick-list {
    overflow: inherit;
    left: 86px;
}

.project-slider-transformBg {
    background: #1d1d1b;
    transform: skewY(1deg);
    width: 100%;
    height: 15%;
    position: absolute;
    top: -50px;
    left: 0;
    transform-origin: top left;
    display: none;
}


.project-slider-block {
    display: flex;
    /* flex-direction: row; */
    align-items: center;
    padding: 50px 0 100px;
    width: 100%;
    grid-template-columns: minmax(auto, 432px) auto;
}

.project-slider-block .text-section {
    padding: 0;
    position: relative;
    z-index: 1;
    max-width: 432px;
    width: 100%;
    flex: 0 0 432px;
}

/* .project-slider-block .text-section h2 {
    font-size: 4rem;
    color:#fff;
    font-weight:300;
    line-height:1.3;
    margin-bottom:42px;
} */

.project-slider-block .text-section h2 {
    font-size: 4rem;
    color: #fff;
    font-weight: 400;
    line-height: 1.31;
    margin-bottom: 54px;


    span, strong, b {
        font-weight: 600;
    }
}

.project-slider-block .text-section p {
    color: #ccc;
    font-size: 1rem;
    font-weight: normal;
    margin-bottom: 20px;
}

.project-slider-block .btn {
    display: inline-block;
    padding: 0 0 6px;
    /* background: white; */
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    /* border-radius: 5px; */
    font-size: 1rem;
    margin: 19px 0 0;
    border-bottom: 1px solid #fff;
}

.project-slider-block .btn:hover {
    border-color: #D71019;
}

.project-slider {
    width: 100%;
}

.project-slider.projecten-gallery-list {
    display: block;
}

.project-slider-sec .container {
    padding-right: 0px;
}

.project-slider .slide {
    position: relative;
    /* padding:15px; */
    margin: 0 15px;
    left: -65px;

}

.project-slider img {
    /* width: 100%; */
    /* height: 100%; */
    object-fit: cover;
    border-radius: 0px;
}

.project-slider .caption {
    position: absolute;
    bottom: 55px;
    left: 55px;
}

.project-slider .caption h3 {
    color: #fff;
    font-weight: 500;
    font-size: 2rem;
}

.project-slider .caption p {
    font-size: 1rem;
    color: #fff;
    font-weight: 300;
}

.project-slider .slick-arrow i {
    font-size: 26px;
    color: #8e8e8e;
}

.project-slider .slick-next:before, .project-slider .slick-prev:before {
    display: none;
}

.project-slider .slick-prev {
    left: -22%;
}

.project-slider .slick-next {
    left: -15%;
}

.project-slider .slick-prev, .project-slider .slick-next {
    width: 51px;
    height: 51px;
    line-height: 51px;
    border-radius: 50%;
    z-index: 1;
    background: #AAAAAA40;
}

.project-slider .slick-prev:hover i, .project-slider .slick-next:hover i {
    color: #fff;
}

.slide-overlay-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}


.footer-transformBg {
    background: #D71019;
    transform: skewY(2deg);
    width: 100%;
    height: 41%;
    position: absolute;
    top: -60px;
    left: 0;
    z-index: 1;
    transform-origin: top left;
}

.footer-transformBg-half {
    background: #980c12;
    transform: skewY(-8.4deg);
    width: 28%;
    height: 16%;
    position: absolute;
    top: -80px;
    right: 0;
    transform-origin: top right;
}

.footer {
    background: #D71019;

    position: relative;
    z-index: 1;
    background-image: url(../img/footer-beek-borderLine.svg);
    background-repeat: no-repeat;
    background-position: bottom 40% left;
    margin-bottom: 31px;


}

.footer:after {
    content: "";
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #D71019;
    background-image: url(../img/footer-beek-borderLine.svg);
    background-repeat: no-repeat;
    background-position: bottom 27% left;

}

.footer-top {
    padding: 50px 0;
    position: relative;
}

.footer ul {
    margin: 0;
    padding: 0;
}

.footer .container {
    position: relative;
    z-index: 1;
}

.footer-top-item {
    width: 20%;
}

.footer-top-item.footer-address-item2 {
    width: 37%;
    padding: 0 0 0 100px;
}

.footer-top i {
    display: none;
}

.footer-top .footer-social i {
    display: block;
    font-size: 22px;
}

.footer-top h2 {
    color: #83080D;
    font-weight: 500;
    font-size: 1.125rem;
    margin: 0 0 11px;
}

.footer-menu-itemM3 .bb {
    display: none;
}

.footer-top ul li {
    margin: 0 0 11px;
}

.footer-top ul li, .footer-top ul li a {
    font-size: 1.313rem;
    color: #fff;
    font-weight: 500;

}

.footer-top ul li a {
    display: inline-block;
}

.footer-top ul li a:hover {
    transform: translate(17px, 0px);
}

.footer-menu-item .footer-menu2 {
    margin: 30px 0 0;
}

.footer-top .footer-address-item2 h2 {
    margin: 0;
}

.footer-address-box {
    margin: 0 0 45px;
}

.footer-address-box a {
    font-size: 2rem;
    font-weight: 500;
    color: #fff;
}

.footer-social {
    margin: 35px 0 0;
}

.footer-social a {
    font-size: 19px;
    color: #fff;
    display: inline-block;
    margin: 0 13px 0 0;
    padding: 0 2px 0 0;
}

.footer-social a:hover {
    transform: scale(1.2);
}

.footer-address-book {
    background: #fff;
    padding: 19px 150px 19px 19px;
    position: relative;
    /* height:126px; */
    /* overflow: hidden; */
}

.footer-address-book > img {
    position: absolute;
    top: -25px;
    right: 0;
    max-width: 199px;
}

.footer-address-book p {
    font-size: 1.125rem;
    color: #1D1D1B;
    font-weight: bold;
    margin: 0 0 15px;
}

.footer-address-book p span {
    color: #D71019;
}

.footer-address-book a {
    font-size: 1rem;
    color: #D71019;
    font-weight: 500;
}

.footer-address-book a i {
    transform: translate(0px, 0px);
    display: inline-block;
}

.footer-address-book a:hover {
    text-decoration: underline;
}

.footer-address-book a:hover i {
    transform: translate(2px, -7px);
}


.footer-bottom {
    /* border-top: 1px solid #cb0f18; */
    position: relative;
    align-items: center;
    padding: 35px 0;
}

/* .footer-bottom:after{
    position:absolute;
    top:0;
    left:0;
    content:"";
    width:100%;
    height:150px;

} */

.footer-bottom-lft {
    width: 48.8%;
}

.footer-bottom-rht {
    width: 50%;
}


.merketeers-icon {
    position: absolute;
    bottom: 1%;
    left: 1%;
    z-index: 1;
    margin: 0 0 40px;
}

.footer-bottom ul {
    gap: 30px;
}

.footer-bottom ul li {
    font-size: 1rem;
    font-weight: normal;
    color: #fff;
}

.footer-bottom ul .copyRtext {
    padding: 0 22px 0 0;
}

.footer-bottom ul li a {
    color: #fff;
    display: block;
}


.footer-bottom-rht {
    justify-content: flex-end;
}

.footer-bottom-rht-btn {
    gap: 12px;
    align-items: center;
}

.footer-btnTittle {
    padding: 0 27px 0 0;
}

.footer-bottom-rht-btn span {
    font-size: 1rem;
    color: #fff;
    font-weight: 300;
}

.footer-bottom-rht-btn a {
    display: flex;
    align-items: center;

    border-radius: 25px;
    column-gap: 12px;
    padding: 5px 22px 5px 9px;
    overflow: hidden;
}

.footer-bottom-rht-btn .agriLink {
    background: #44A13F;

    img {
        max-width: 100%;
        height: auto;
    }
}

.footer-bottom-rht-btn .deurenLink {
    background: #0F4372;

    img {
        max-width: 100%;
        height: auto;
    }
}

.footer-btn-split {
    display: flex;
    flex-direction: column;
}

.footer-btn-split span {
    transition: all 0.35s ease;
}

.footer-btn-split span:first-child {
    transform: translate(0px, 11px);
}

.footer-btn-split span:last-child {
    transform: translate(0px, 30px);
}


.footer-btn-split:hover span:first-child {
    transform: translate(0px, -30px);
}

.footer-btn-split:hover span:last-child {
    transform: translate(0px, -11px);
}


.address-book-mobile {
    display: none;
}

.main-mobile-menu {
    display: none;
}


/* montage-over-ons css start */

.inner-hero-banner .banner-media:after {
    display: none;
}

.inner-hero-banner .banner-transform-bg {
    transform: skewY(3deg);
    transform-origin: bottom left;
    height: 16%;
    bottom: 5px;
}

.scrollTo-down {
    width: 86px;
    height: 86px;
    background: url(../img/transform-sm-bg.png) no-repeat;
    position: absolute;
    background-size: 100%;
    right: 4%;
    bottom: -28px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.scroll-down-anim {
    position: relative;
    width: 20px;
    display: block;
    border: 1px solid #fff;
    height: 32px;
    overflow: hidden;
    border-radius: 15px;
}

.scroll-down-anim:after {
    content: "";
    width: 5px;
    height: 7px;
    display: block;
    position: absolute;
    background: #fff;
    border-radius: 8px;
    top: 2px;
    left: 7px;
    animation: downAnim 0.95s linear 0s infinite;
}

@keyframes downAnim {
    0% {
        transform: translate(0px, -12px);
    }
    100% {
        transform: translate(0px, 35px);
    }

}

.inner-hero-banner .contains-tittleText-lft h1 {
    color: #1D1D1B;
    font-weight: 600;
    font-size: 4.625rem;
    line-height: 1.27;
}

.inner-hero-banner .container {
    position: relative;
    z-index: 1;
}

.inner-hero-banner .contains-tittleText-rht p {
    font-size: 1.125rem;
}

.sub-parg p:first-child {
    font-size: 1.125rem !important;
    color: #1D1D1B !important;
}

.inner-hero-banner .contains-tittleText-rht {
    padding: 45px 0 0 38px;
}


.inner-hero-banner .contains-tittleText-inner {
    padding: 15px 0 170px;

    @media (max-width: 1199px) {
        padding-bottom: 80px;
    }
}


.montage-group-sec {
    background: #fff;
    position: relative;
    overflow: hidden;
    padding: 0 0 164px;
}

/* .transform-bg-montage-group {
    background: #ffffff;
    transform: skewY(11deg);
    width: 100%;
    height:20%;
    position: absolute;
    top: 0;
    right: 0;
    transform-origin: bottom right;
} */


.transform-bg-montage-group {
    /* background: #1D1D1B0A; */
    /* transform: skewY(11deg); */
    width: 100%;
    height: 100%;
    position: absolute;
    top: 19px;
    right: 0;
    transform-origin: bottom right;
    clip-path: polygon(0% 0%, 100% 10%, 100% 100%, 0 100%);
}


#horizontal-scoll {
    padding: 0px 0 !important;
}

.horizontal-scoll-wrapper {
    /*overflow: hidden;*/
    /* transform: skewY(-5deg); */
}

/* .horizontal-scoll-wrapper .horizontal .card .img-fluid{
    clip-path:polygon(5% 0, 100% 0, 95% 100%, 0% 100%);
} */


.scroll-horizontally-slide-sec .slide-scroll-sec {
    transform: skewY(-2deg);

}

.horizontal {
    display: flex;
    height: 100%;
}

.horizontal > div {
    display: flex;
    flex-shrink: 0;
    padding: 0 5px;
    width: 29%;
}

.horizontal > div:first-child {
    padding: 0 5px 0 15px;
}

.horizontal > div:last-child {
    padding: 0 15px 0 5px;
}

.horizontal .card {
    align-items: stretch;
    width: auto;
    padding: 0px;
    margin: 0 15px;

    color: #f6f2e8;
}


.usp-list-sec {
    padding: 150px 0;
}

.usp-list-sec .container {
    display: flex;
    max-width: 1300px;
    flex-wrap: wrap;


}

.usp-list-sec .tabs {
    width: 52%;
    padding: 0 11px 0 0;
}

.usp-list-sec .tabs-tittle {
    padding: 0 0 25px;
}

.usp-list-sec .tab {
    padding: 35px 0px 25px;
    cursor: pointer;
    display: flex;
    align-items: center;
    color: #1D1D1B;
    border-bottom: 1px solid #eaeaea;
    transition: all 0.3s ease;
    font-size: 1.563rem;
    font-weight: 500;
}

.usp-list-sec .tab span {
    font-size: 0.938rem;
    color: #AAAAAA;
    margin-right: 21px;
    position: relative;
    top: -9px;
}

.usp-list-sec .tab.active, .usp-list-sec .tab:hover {
    padding: 35px 0px 27px 30px;
}

/* .usp-list-sec .tab.active::after {
    content: "→";
    color: red;
    margin-left: auto;
    font-size: 20px;
} */
.usp-list-sec .content {
    width: 48%;
    padding: 11px 0 0 59px;
}

.usp-list-sec .content img {
    width: 100%;
    height: auto;
    border-radius: 0px;
}

.usp-list-sec .content p {
    font-size: 1rem;
    margin-top: 26px;
    color: #1D1D1BCC;
    font-weight: normal;
    line-height: 1.8;
}

/* .scroll-horizontally-slide-sec{
    overflow: hidden;
} */


.usp-list-sec h2 {
    font-size: 3rem;
    font-weight: 500;
    overflow: hidden;
    color: #1D1D1B;
}


.usp-list-sec .arrow {
    display: inline-block;
    width: 38px;
    height: 38px;
    background: #D71019;
    border-radius: 50%;
    margin-right: 0px;
    margin-left: auto;
    text-align: center;
    line-height: 38px;
    top: 0 !important;
    opacity: 0;
    position: relative;
    right: -13px;
}

.usp-list-sec .tab.active .arrow, .usp-list-sec .tab:hover .arrow {
    opacity: 1;
}

.usp-list-sec .arrow i {
    color: #fff;
    font-size: 22px;
}


/* Video Container */
.video-container {
    position: relative;
    width: 100%;
    /* max-width: 900px; */
    margin: 50px auto;
    /* cursor: pointer; */
}

/* Background Video */
.video-lightBox-sec video, .video-lightBox-sec iframe {
    width: 100%;

}

/* Play Button */
.video-lightBox-sec .play-btn-inner {
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    cursor: pointer;
    transition: transform 0.2s ease-in-out;
    background: #fff;
    width: 115px;
    text-align: center;
    min-height: 174px;
    border-radius: 85px 85px 0 0;
    padding: 8px 8px 0;
    justify-content: center;
}

.video-lightBox-sec .play-btn-inner .play-btn {
    background: red;
    color: white;
    border-radius: 50%;
    width: 98px;
    height: 98px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    margin: 0 auto;
    margin-bottom: -5px;
}

.video-lightBox-sec .play-btn-inner:hover {
    transform: translateX(-50%) scale(1.1);
}

/* Lightbox */
.video-lightBox-sec .lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 99;
}

.video-lightBox-sec .lightbox video, .video-lightBox-sec .lightbox iframe {
    max-width: 80%;
    max-height: 80%;
    border-radius: 10px;
}

/* Close Button */
.video-lightBox-sec .close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 30px;
    color: white;
    cursor: pointer;
}


.tittle-box-number-inner {
    display: flex;
    /* justify-content: space-between; */
    align-items: center;
    max-width: 100%;
    margin: auto;
}

/* Left Section (Text) */
.tittle-box-number-inner .text-section {
    max-width: 50%;
    padding: 0 55px 0 0;

    a.btn-arrow {
        margin-top: 30px;
    }
}

.tittle-box-number-inner h2 {
    font-size: 3rem;
    font-weight: 300;
    margin: 0 0 26px;
}

.tittle-box-number-inner .highlight {
    font-weight: 500;
    position: relative;
    padding: 0 0 0 60px;
    font-size: 3rem;
}

.tittle-box-number-inner .highlight::before {
    content: "";

    background: url(../img/banner-text-path.png) no-repeat;
    position: absolute;
    left: 0px;
    font-size: 24px;
    top: 22px;
    width: 45px;
    height: 21px;
    background-size: cover;
}

.tittle-box-number-inner p {
    font-size: 1rem;
    color: #000000CC;
    line-height: 2.1;
    font-weight: 500;
}


.tittle-box-number-sec {
    padding: 35px 0 150px;
}

/* Right Section (Stats Cards) */
.tittle-box-number-inner .stats {
    display: grid;
    /* grid-template-columns: repeat(2, 50%); */
    grid-template-columns: repeat(2, auto);
    /* gap: 20px; */
    width: 50%;
    column-gap: 19px;
    padding: 0 0 0 140px;

}

.tittle-box-number-inner .stat-card {
    position: relative;
    margin: 0 0 20px;
    background: white;
    padding: 30px;
    text-align: center;
    border-radius: 2px;
    border: 1px solid #1D1D1B1A;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    margin: 20px 0 0;
}

.tittle-box-number-inner .stat-card:nth-child(3) {
    margin: 0;
}

.tittle-box-number-inner .stat-card:first-child {
    /* margin: -40px 0 0; */
    max-height: 180px;
    margin: 0;
}

.tittle-box-number-inner .stat-card:last-child {
    /* margin: -40px 0 0; */
    bottom: -20px;
    margin: 0;
}

.tittle-box-number-inner .stat-card {


}

.tittle-box-number-inner .stat-card h2 {
    font-size: 2.375rem;
    margin: 0;
    color: #1D1D1B;
    font-weight: 600;
}

.tittle-box-number-inner .stat-card p {
    font-size: 1.063rem;
    color: #AAAAAA;
    margin: 5px 0 0;
}


.team-gallery-sec {
    padding: 180px 0;
    border-top: 1px solid #eaeaea;
}


.team-gallery-text-lft {
    width: 40%;
}

.team-gallery-text-rht {
    width: 60%;
    padding: 0 0 0 60px;
}

.team-gallery-text {
    align-items: flex-end;
}

.team-gallery-text-lft h2 {
    font-size: 3rem;
    font-weight: normal;
    color: #1D1D1B;
}

.team-gallery-text-lft h2 span {
    display: block;
    font-weight: 500;
}

.team-gallery-text-rht p {
    font-size: 1rem;
    color: #000000CC;
    font-weight: normal;
    line-height: 1.9;
}


.team-gallery-img {
    padding: 200px 0 0;
}

.team-gallery-img ul {
    margin: 0;
    padding: 0;
    gap: 2%;
    row-gap: 28px;
}

.team-gallery-item {
    width: 23.5%;
    position: relative;
}


.team-gallery-img .team-gallery-item:nth-child(even) {

    top: -72px;
}

.team-gallery-item:nth-child(3n+1) .team-gallery-inner-item {

}

.team-gallery-item:nth-child(3n+2) .team-gallery-inner-item {

}

.team-gallery-item:nth-child(3n+3) .team-gallery-inner-item {

}

.team-gallery-item:nth-child(3n+4) .team-gallery-inner-item {

}

.team-gallery-inner-item {
    position: relative;
    overflow: hidden;


    &.vacancies-cta {
        height: 100%;

        .gallery-description {
            transform: unset;
        }
    }
}

.team-gallery-inner-item .gallery-tittle {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 35px 35px 43px 40px;
}

.team-gallery-inner-item .gallery-tittle h3 {
    color: #FFFFFF;
    font-size: 1.25rem;
    font-weight: 500;
}

.team-gallery-inner-item .gallery-tittle h4 {
    color: #AAAAAA;
    font-size: 1.125rem;
    font-weight: normal;
}


.team-gallery-inner-item .gallery-description {
    /*position: absolute;*/
    z-index: 1;
    width: 100%;
    height: 100%;
    background: #D71019;
    padding: 35px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    row-gap: 15px;
    transform: translate(0%, 104%);
}

.team-gallery-inner-item:hover .gallery-description {
    transform: translate(0%, 0%);
}

.team-gallery-inner-item .gallery-description-bottom .global-btn {
    background: rgba(255, 255, 255, 0);
    border: 1px solid #e4454c;
}

.team-gallery-inner-item .gallery-description-bottom .global-btn .arrow-btn {
    background: #fff;
}

.team-gallery-inner-item .gallery-description-bottom .global-btn:hover {
    color: #1D1D1B;
}

.team-gallery-inner-item .gallery-description-top h5 {
    font-size: 1.563rem;
    color: #fff;
    font-weight: 500;
}

.team-gallery-inner-item .gallery-description-top p {
    font-size: 1.125rem;
    color: #FFFFFF67;
    font-weight: normal;
    margin: 15px 0 0;
}


.breadcrumb ul li, .breadcrumb ul li a {
    color: #DADADA;
}

.breadcrumb ul li a:hover {
    color: #1D1D1B;
}

/* montage-over-ons css end */


/* css Werken bij Beek  start  */


.banner-add {
    position: relative;
    max-width: 638px;
    height: 276px;
    /* margin-left:auto; */
    background: url('../img/vaca-img.jpg') no-repeat center center/cover;
    overflow: hidden;
    margin-top: 100px;

    @media (max-width: 1199px) {
        margin-top: 40px;
    }
}

.banner-add .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('../img/vaca-img-overlay.png') no-repeat center center/cover;
    color: white;
    padding: 41px 35px 35px 42px;
}


.inner-hero-banner .banner-add h2 {
    margin: 0;
    font-weight: 600;
    color: #FFFFFF;
    font-size: 1.563rem;
    max-width: 261px;
}

.inner-hero-banner .banner-add p {
    font-size: 1.125rem !important;
    color: #FFFFFF67 !important;
    margin: 11px 0 0 !important;
    padding: 0 !important;
}


.inner-hero-banner .banner-add .global-btn {
    background: rgba(255, 255, 255, 0);
    border: 1px solid #474747;

}

.text-sidebar-rhtContent .global-btn .arrow-btn {
    background: #fff;
}

.text-sidebar-rhtContent .global-btn:hover {

    border: 1px solid #fff;
    color: #1D1D1B;

}

.text-sidebar-rhtContent .global-btn:hover .arrow-btn {
    background: #fff;
}


.overview-three-subpages-sec {
    padding: 115px 0 0;
    margin: 66px 0 0;
}

.overview-three-subpages-sec h2 {
    color: #1D1D1B;
    font-size: 4rem;
    font-weight: 500;
}

.overview-three-subpages-sec p {
    font-size: 1rem;
    color: #AAAAAA;
    font-weight: 300;
    max-width: 447px;
    line-height: 2;
    margin: 24px 0 0;
}


.gallery {
    display: grid;
    grid-template-columns:auto auto;
    grid-template-rows: auto auto;
    gap: 10px;
    max-width: 100%;
    width: 100%;
    padding: 64px 0 0;
}

.gallery-item {
    position: relative;
    overflow: hidden;


    &:hover, &:focus {
        picture {
            clip-path: polygon(2% 2%, 98% 2%, 98% 98%, 2% 98%)
        }

        h3 {
            left: 8%;
            bottom: 12%;
        }

        .icon {
            top: calc(40px + 4%) !important;
            right: calc(50px + 4%) !important;
        }

    }

    &:first-child {

        &:hover, &:focus {
            h3 {
                left: 8%;
                bottom: 12%;
            }

            .icon {
                top: calc(75px + 2%);
                right: calc(86px + 2%);
            }
        }

        h3 {
            font-size: 2.75rem;
            left: 6%;
            bottom: 9%;

            @media (max-width: 767px) {
                font-size: 1.5rem;
                left: 3%;
                bottom: 5%;
            }
        }
    }


    .icon {
        top: 36px;
        right: 36px;

        @media (max-width: 767px) {


            top: 24px;
            right: 34px;


        }
    }

    picture {
        display: block;
        position: relative;
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
        transition: all ease-out 0.2s;
        height: 100%;
        line-height: 0;


        &::before {
            content: '';
            inset: 0;
            position: absolute;
            /* width: 100%; */
            height: 100%;
            background-image: url('/assets/templates/img/gallery-item-overlay.svg');
            z-index: 1;
            background-size: cover;
        }

    }

    h3 {
        color: white;
        padding: 10px;
        font-weight: 500;
        font-size: 1.75rem;
        position: absolute;
        left: 5%;
        bottom: 10%;
        line-height: 1;
        transition: all ease-out .2s;

        @media (max-width: 767px) {


            font-size: 1.5rem;
            left: 4%;
            bottom: 5%;


        }
    }

}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-description {
    position: relative;
    z-index: 2;
}

.gallery-item .icon {
    position: absolute;
    /* top: 40px; */
    /* right: 50px; */
    background: #980C12;
    color: white;
    padding: 10px;
    border-radius: 48px;
    font-size: 18px;
    z-index: 1;
    width: 91px;
    height: 48px;
    transition: all ease-out 0.2s;
}

.gallery-item:first-child .icon {
    width: 138px;
    height: 76px;
}

.gallery-item .icon img {
    width: auto;
    max-width: 100%;
    height: auto;
    margin: 6px 2px;
}

.gallery-item:first-child .icon img {
    margin: 14px 6px;
}

.gallery-item .icon .icon-arrow {
    position: absolute;
    width: 65px;
    height: 65px;
    line-height: 65px;
    background: #D71019;
    border-radius: 50%;
    text-align: center;
    top: -11px;
    right: -20px;
    overflow: hidden;
}

.global-btn-mobile {
    display: none;
}

.gallery-item .icon .icon-arrow i {
    display: block;
}

.hungerMenu-icon {
    display: none;
}

.gallery-item:first-child .icon .icon-arrow {
    width: 100px;
    height: 100px;
    line-height: 100px;
}

.gallery-item .icon .icon-arrow {
    font-size: 32px;
}

.gallery-item:first-child .icon .icon-arrow {
    font-size: 62px;
}

.gallery-item:first-child {
    grid-row: span 2;
}


.gallery-description .overlay h3 span {
    display: inline-block;
    margin: 0 -2.5px;
    animation: wave 1.5s infinite ease-in-out;

}

/* .gallery-item .gallery-description .overlay h3:hover span{
    animation: wave 1.5s infinite ease-in-out;
    display: inline-block;

} */

.gallery-item .overlay.overlay-show {
    opacity: 0;
    display: none;
    transition: all 0.01s ease;
}

.gallery-item:hover .overlay.overlay-show {
    opacity: 1;

}

.gallery-item:hover .overlay.overlay-first {
    /* opacity:0; */
    transition: all 0.01s ease;
}

.gallery-item:first-child .gallery-description .overlay h3 span {
    margin: 0 -3.5px;
}

.tittle-wave-hover span {
    display: block;
}

.tittle-wave-hover .drop-anim-tittle {
    animation: drop-in-tittle2 1000ms ease 100ms backwards;
    transform: translateY(0px);
}

.gallery-item:hover .drop-anim-tittle {
    transform: translateY(-30px);
}

.call-toAction-inner {
    max-width: 894px;
    margin: 0 auto;
}

.call-toAction-inner-lft {
    width: 52%;
    border-right: 1px solid #e9e9e9;
    padding: 0 50px 0 0;
}

.call-toAction-inner-rht {
    width: 48%;
    padding: 0 0 0 69px;
}

.call-toAction-img {
    width: 30%;
    position: relative;

    @media (max-width: 767px) {
        width: 27%;
    }

    img {
        max-width: 100%;
        height: auto;
    }
}

.call-toAction-img .live {
    position: absolute;
    background: #e8f5d9;
    border: 3px solid #fff;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    z-index: 1;
    right: 0;
    bottom: 0;
}

.call-toAction-img .live:after {
    position: absolute;
    content: "";
    border-radius: 50%;
    top: 5px;
    right: 5px;
    background: #7EC828;
    width: 10px;
    height: 10px;
    /* transform: translate(-50%, 10px); */
}

.call-toAction-contentBox-lft {
    align-items: center;
}

.call-toAction-parg {
    width: 70%;
    padding: 0 0 0 35px;
}

.call-toAction-img {
    /* background:#DADADA; */
}

.call-toAction-img img {
    width: 100%;
    background: #dadada3b;
}

.call-toAction-parg h2 {
    font-size: 1.125rem;
    color: #1D1D1B;
    font-weight: bold;
}

.call-toAction-parg p {
    font-size: 1rem;
    font-weight: normal;
    color: #1D1D1BCC;
    line-height: 1.5;

    @media (max-width: 767px) {
        margin-top: 12px;
    }
}

.call-toAction-btn-block {
    margin: 0;
    gap: 15px;
}

.call-toAction-btn-block span {
    display: inline-block;
    padding: 0 0 0 2px;
}


.contains-tittleText-sec {
    padding: 115px 0 0;
    margin: 115px 0 0;

    @media (max-width: 1199px) {
        margin-top: 0;
    }
}

.contains-tittleText-lft {
    width: 50%;

    h1 strong {
        font-weight: 500;
    }
}

/*.contains-tittleText-rht {*/
/*    width: 50%;*/
/*    padding: 80px 0 0 30px;*/
/*    !* display: flex; *!*/
/*    !* flex-direction: column; *!*/
/*    !* align-items: flex-end; *!*/
/*    !* justify-content: end; *!*/
/*}*/


.contains-tittleText-inner-montage-over-ons .contains-tittleText-lft {
    width: 54%;
}

.contains-tittleText-inner-montage-over-ons .contains-tittleText-rht {
    width: 46%;
}

.contains-tittleText-lft h2 {
    color: #1D1D1B;
    font-weight: 500;
    font-size: 3rem;
    line-height: 1.2;
}

.contains-tittleText-lft p {
    color: #AAAAAA;
    font-weight: 500;
    font-size: 1.125rem;
    margin: 26px 0 0;
}


.contains-tittleText-rht p {
    color: #000000CC;
    font-size: 1rem;
    line-height: 1.8;
    margin: 40px 0 0;
    /* margin-left:auto;
    max-width:638px; */

    + a.btn-arrow {
        margin-top: 60px;

        @media (max-width: 1199px) {
            margin-top: 30px;
        }
    }
}


.montage-werken-bij-detail-banner .contains-tittleText-rht p {
    margin: 0 0 33px;
}

.montage-werken-bij-detail-banner .contains-tittleText-rht .text-list ul p {
    margin: 0 0 6px;
}

.inner-hero-banner.montage-werken-bij-detail-banner .contains-tittleText-rht {
    padding: 22px 0 0 30px;
}


.quotation-slider-sec {
    background: #1D1D1B0A;
    /* margin:150px -48px 0; */
    margin: 150px 0px 0;
    padding: 120px 0 150px;
}


.quotation-slider-sec .slider-container {
    display: flex;
    width: 100%;
    /* height: 100vh; */
    min-height: 710px;
    position: relative;
}

/* Left Column - Image */

.quotation-slider-sec .left-column {
    flex: 1;
    /* overflow: hidden; */
    position: relative;
}

.quotation-slider-sec .slides {
    /* display: flex; */
    flex-direction: column;
    height: 300%; /* Adjust based on the number of slides */
    transition: transform 1s ease-in-out;


    @media (max-width: 767px) {
        height: auto;
    }
}

.quotation-slider-sec .slide {
    flex: 1;
    width: 100%;
    background-size: cover;
    background-position: center;


    @media (max-width: 767px) {


        /*flex: 1 1 100%;*/
        flex: 1 0 auto;
        max-height: 228px;
        overflow: hidden;

        img {
            height: auto;
            max-width: 100%;
            width: 100%;
        }
    }
}

/* Right Column - Titles and Quotes */

.quotation-slider-sec .right-column {
    flex: 1;
    /* background: #f5f5f5; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px 20px 20px 80px;

    @media (max-width: 1600px) {
        width: 40%;
    }
}

.quotation-slider-sec .titles {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.quotation-slider-sec .title {
    font-size: 2rem;
    font-weight: 500;
    color: #AAAAAA;
    cursor: pointer;
    position: relative;
    width: 30%;
}

.quotation-slider-sec .title.active {
    color: #1D1D1B;
}

/* .quotation-slider-sec .title::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    height: 4px;
    width:100%;
    background:#000;
    animation: progress 5s linear forwards;
  } */

/* Progress Bar */

.quotation-slider-sec .title:before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    height: 3px;
    width: 100%;
    background: transparent;

    @media (max-width: 767px) {
        bottom: -5px;
    }
}

.quotation-slider-sec .title.active::before {

    background: #DADADA;
}

.quotation-slider-sec .title.active::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    height: 3px;
    width: 100%;
    background: var(--color-beek-red);
    animation: progress 5s linear forwards;

    @media (max-width: 767px) {
        bottom: -5px;
    }
}

@keyframes progress {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}

.quotation-slider-sec .quote-slides .quote-slide:not(.swiper-slide-visible),
.quotation-slider-sec .slides .slide:not(.swiper-slide-visible) {
    opacity: 0 !important;
}

.quotation-slider-sec .quote-slides q {
    &:before {
        content: '“'
    }

    &:after {
        content: '”'
    }
}

.quotation-slider-sec .quote {
    margin-top: 20px;
    font-size: 1.5rem;
    font-weight: 300;
    color: #000000CC;
    line-height: 1.5;
    padding: 65px 0 0;
    max-width: 518px;
}

.quotation-slider-sec .author {
    margin-top: 10px;
    font-weight: 500;
    font-size: 1.313rem;
    color: #333;
    margin: 30px 0 0;

    @media (max-width: 767px) {
        margin-top: 60px;
    }
}


.right-column-topTittle {

    margin: 0 0 50px;
    position: absolute;
    top: 0;
    /* left: 0; */
}

.right-column-topTittle h2 {
    color: #AAAAAA;
    font-size: 1rem;
    font-weight: 300;
}

.quotation-icon {
    position: absolute;
    top: -10px;
    z-index: 2;
    left: 38px;
}


.project-slider-sec {
    position: relative;
    background: #1D1D1B;
    padding: 70px 0 125px;
    /* overflow: hidden; */
    position: relative;
    clip-path: polygon(0% 0%, 100% 3%, 100% 100%, 0% 100%);
    margin: -40px 0 0;
}

.project-slider-sec:after {
    position: absolute;
    top: 0;
    content: "";
    left: 0;
    width: 50%;
    height: 100%;
    background: #1D1D1B;
}

.project-slider-block .project-slider .slick-list {
    overflow: inherit;
    left: 86px;
}

/* .project-slider-block .project-slider .slick-list .slick-slide{
    opacity:0;
}

.project-slider-block .project-slider .slick-list .slick-slide .slide-overlay-bg{

    background:#1D1D1B;
}

.project-slider-block .project-slider .slick-list .slick-slide.slick-active{
    opacity:1;
}

.project-slider-block .project-slider .slick-list .slick-slide.slick-active .slide-overlay-bg{
    background:rgba(0, 0, 0, 0.3);
}

.project-slider-block .project-slider .slick-list .slick-slide.slick-active ~ .slick-slide{
    opacity:1;
}

.project-slider-block .project-slider .slick-list .slick-slide.slick-active ~ .slick-slide .slide-overlay-bg{

    background:rgba(0, 0, 0, 0.3);
} */

.project-slider-transformBg {
    background: #1d1d1b;
    transform: skewY(1deg);
    width: 100%;
    height: 15%;
    position: absolute;
    top: -50px;
    left: 0;
    transform-origin: top left;
    display: none;
}


.project-slider-block {
    display: flex;
    grid-template-columns: 42% 58%;
    align-items: center;
    padding: 50px 0 100px;
    gap: 136px;
}

.project-slider-block .text-section {
    /* padding: 0 90px 0 0; */
    position: relative;
    z-index: 1;
}

/* .project-slider-block .text-section h2 {
    font-size: 4rem;
    color:#fff;
    font-weight:300;
    line-height:1.3;
    margin-bottom:42px;
} */

.project-slider-block .text-section h2 {
    font-size: 4rem;
    color: #fff;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 66px;

    span, strong, b {
        font-weight: 600;
    }
}

.project-slider-block .text-section p {
    color: #ccc;
    font-size: 1rem;
    font-weight: normal;
    margin-bottom: 20px;
}

.project-slider-block .btn {
    display: inline-block;
    padding: 0 0 6px;
    /* background: white; */
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    /* border-radius: 5px; */
    font-size: 1rem;
    margin: 19px 0 0;
    border-bottom: 1px solid #fff;
}

.project-slider-block .btn:hover {
    border-color: #D71019;
}

.project-slider {
    width: 100%;
}

.project-slider.projecten-gallery-list {
    display: block;
    /* overflow: hidden; */
    position: relative;
    /* clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%); */
    /* width: calc(100% + 149px); */
    max-width: unset;
    overflow-x: clip;
    /*z-index: 19999;*/

    @media (max-width: 767px) {
        overflow: unset;

        .projecten-slider-item {
            max-width: unset;
        }
    }
}

.project-slider-sec .container {
    padding-right: 0px;
}

.project-slider .slide {
    position: relative;
    /* padding:15px; */
    margin: 0 15px;
    left: -65px;

}

.project-slider img {
    /* width: 100%; */
    /* height: 100%; */
    object-fit: cover;
    border-radius: 0px;
}

.project-slider .caption {
    position: absolute;
    bottom: 55px;
    left: 55px;
}

.project-slider .caption h3 {
    color: #fff;
    font-weight: 500;
    font-size: 2rem;
}

.project-slider .caption p {
    font-size: 1rem;
    color: #fff;
    font-weight: 300;
}

.project-slider .slick-arrow i {
    font-size: 26px;
    color: #8e8e8e;
}

.project-slider .slick-next:before, .project-slider .slick-prev:before {
    display: none;
}

.project-slider .slick-prev {
    left: -22%;
}

.project-slider .slick-next {
    left: -15%;
}

.project-slider .slick-prev, .project-slider .slick-next {
    width: 51px;
    height: 51px;
    line-height: 51px;
    border-radius: 50%;
    z-index: 1;
    background: #AAAAAA40;
}

.project-slider .slick-prev:hover i, .project-slider .slick-next:hover i {
    color: #fff;
}

.slide-overlay-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}


.footer-transformBg {
    background: #D71019;
    transform: skewY(2deg);
    width: 100%;
    height: 41%;
    position: absolute;
    top: -60px;
    left: 0;
    z-index: 1;
    transform-origin: top left;
}

.footer-transformBg-half {
    background: #980c12;
    transform: skewY(-8.4deg);
    width: 28%;
    height: 16%;
    position: absolute;
    top: -80px;
    right: 0;
    transform-origin: top right;
}

.footer {
    background: #D71019;

    position: relative;
    z-index: 1;
    background-image: url(../img/footer-beek-borderLine.svg);
    background-repeat: no-repeat;
    background-position: bottom 40% left;


}

.footer:after {
    content: "";
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #D71019;
    background-image: url(../img/footer-beek-borderLine.svg);
    background-repeat: no-repeat;
    background-position: bottom 27% left;

}

.footer-top {
    padding: 50px 0;
    position: relative;
}

.footer ul {
    margin: 0;
    padding: 0;
}

.footer .container {
    position: relative;
    z-index: 1;
}

.footer-top-item {
    width: 20%;
}

.footer-top-item.footer-address-item2 {
    width: 37%;
    padding: 0 0 0 100px;
}

.footer-top i {
    display: none;
}

.footer-top .footer-social i {
    display: block;
    font-size: 22px;
}

.footer-top h2 {
    color: #83080D;
    font-weight: 500;
    font-size: 1.125rem;
    margin: 0 0 11px;
}

.footer-menu-itemM3 .bb {
    display: none;
}

.footer-top ul li {
    margin: 0 0 11px;
}

.footer-top ul li, .footer-top ul li a {
    font-size: 1.313rem;
    color: #fff;
    font-weight: 500;

}

.footer-top ul li a {
    display: inline-block;
}

.footer-top ul li a:hover {
    transform: translate(17px, 0px);
}

.footer-menu-item .footer-menu2 {
    margin: 30px 0 0;
}

.footer-top .footer-address-item2 h2 {
    margin: 0;
}

.footer-address-box {
    margin: 0 0 45px;
}

.footer-address-box a {
    font-size: 2rem;
    font-weight: 500;
    color: #fff;

    &:has(span[data-text]) {
        & span[data-text] {
            &::after {
                color: var(--color-white);
            }
        }
    }
}

.footer-social {
    margin: 35px 0 0;
}

.footer-social a {
    font-size: 19px;
    color: #fff;
    display: inline-block;
    margin: 0 13px 0 0;
    padding: 0 2px 0 0;
}

.footer-social a:hover {
    transform: scale(1.2);
}

.footer-address-book {
    background: #fff;
    padding: 19px 150px 19px 19px;
    position: relative;
    /* height:126px; */
    /* overflow: hidden; */
}

.footer-address-book > img {
    position: absolute;
    top: -25px;
    right: 0;
    max-width: 199px;
}

.footer-address-book p {
    font-size: 1.125rem;
    color: #1D1D1B;
    font-weight: bold;
    margin: 0 0 15px;
}

.footer-address-book p span {
    color: #D71019;
}

.footer-address-book a {
    font-size: 1rem;
    color: #D71019;
    font-weight: 500;
}

.footer-address-book a i {
    transform: translate(0px, 0px);
    display: inline-block;
}

.footer-address-book a:hover {
    text-decoration: underline;
}

.footer-address-book a:hover i {
    transform: translate(2px, -7px);
}


.footer-bottom {
    /* border-top: 1px solid #cb0f18; */
    position: relative;
    align-items: center;
    padding: 35px 0;
}

/* .footer-bottom:after{
    position:absolute;
    top:0;
    left:0;
    content:"";
    width:100%;
    height:150px;

} */

.footer-bottom-lft {
    width: 48.8%;
}

.footer-bottom-rht {
    width: 50%;
}


.merketeers-icon {
    position: absolute;
    bottom: 1%;
    left: 1%;
    z-index: 1;
    margin: 0 0 40px;
}

.footer-bottom ul {
    gap: 30px;
}

.footer-bottom ul li {
    font-size: 1rem;
    font-weight: normal;
    color: #fff;
}

.footer-bottom ul .copyRtext {
    padding: 0 22px 0 0;
}

.footer-bottom ul li a {
    color: #fff;
    display: block;
}

.footer-bottom-rht {
    justify-content: flex-end;
}

.footer-bottom-rht-btn {
    gap: 12px;
    align-items: center;
}

.footer-btnTittle {
    padding: 0 27px 0 0;
}

.footer-bottom-rht-btn span {
    font-size: 1rem;
    color: #fff;
    font-weight: 300;
}

.footer-bottom-rht-btn a {
    display: flex;
    align-items: center;

    border-radius: 25px;
    column-gap: 12px;
    padding: 5px 22px 5px 9px;
    overflow: hidden;
}

.footer-bottom-rht-btn .agriLink {
    background: #44A13F;

    img {
        max-width: 100%;
        height: auto;
    }
}

.footer-bottom-rht-btn .deurenLink {
    background: #0F4372;

    img {
        max-width: 100%;
        height: auto;
    }
}

.footer-btn-split {
    display: flex;
    flex-direction: column;
}

.footer-btn-split span {
    transition: all 0.35s ease;
}

.footer-btn-split span:first-child {
    transform: translate(0px, 11px);
}

.footer-btn-split span:last-child {
    transform: translate(0px, 30px);
}


.footer-btn-split:hover span:first-child {
    transform: translate(0px, -30px);
}

.footer-btn-split:hover span:last-child {
    transform: translate(0px, -11px);
}


.address-book-mobile {
    display: none;
}

.main-mobile-menu {
    display: none;
}


/* montage-over-ons css start */

.inner-hero-banner .banner-media:after {
    display: none;
}

.inner-hero-banner .banner-transform-bg {
    transform: skewY(3deg);
    transform-origin: bottom left;
    height: 16%;
    bottom: 5px;
}

.scrollTo-down {
    width: 86px;
    height: 86px;
    background: url(../img/transform-sm-bg.png) no-repeat;
    position: absolute;
    background-size: 100%;
    right: 4%;
    bottom: -28px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.scroll-down-anim {
    position: relative;
    width: 20px;
    display: block;
    border: 1px solid #fff;
    height: 32px;
    overflow: hidden;
    border-radius: 15px;
}

.scroll-down-anim:after {
    content: "";
    width: 5px;
    height: 7px;
    display: block;
    position: absolute;
    background: #fff;
    border-radius: 8px;
    top: 2px;
    left: 7px;
    animation: downAnim 0.95s linear 0s infinite;
}

@keyframes downAnim {
    0% {
        transform: translate(0px, -12px);
    }
    100% {
        transform: translate(0px, 35px);
    }

}

.inner-hero-banner .contains-tittleText-lft h1 {
    color: #1D1D1B;
    font-weight: 600;
    font-size: 4.625rem;
    line-height: 1.27;
}

.inner-hero-banner .container {
    position: relative;
    z-index: 1;
}

.inner-hero-banner .contains-tittleText-rht p {
    font-size: 1.125rem;
}

.sub-parg p:first-child {
    font-size: 1.125rem !important;
    color: #1D1D1B !important;
}

.inner-hero-banner .contains-tittleText-rht {
    padding: 45px 0 0 28px;
}

.montage-group-sec {
    background: #fff;
    position: relative;
    overflow: hidden;
    padding: 0 0 142px;

    @media (max-width: 1199px) {
        padding-bottom: 60px;
    }
}

/* .transform-bg-montage-group {
    background: #ffffff;
    transform: skewY(11deg);
    width: 100%;
    height:20%;
    position: absolute;
    top: 0;
    right: 0;
    transform-origin: bottom right;
} */


.transform-bg-montage-group {
    /* background: #1D1D1B0A; */
    /* transform: skewY(11deg); */
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    transform-origin: bottom right;
    clip-path: polygon(0% 0%, 100% 30%, 100% 100%, 0 100%);
}


#horizontal-scoll {
    padding: 0px 0 !important;
}

.horizontal-scoll-wrapper {
    /*overflow: hidden;*/
    /* transform: skewY(-5deg); */
}

/* .horizontal-scoll-wrapper .horizontal .card .img-fluid{
    clip-path:polygon(5% 0, 100% 0, 95% 100%, 0% 100%);
} */


.scroll-horizontally-slide-sec .slide-scroll-sec {
    transform: skewY(-2deg);

}

.horizontal {
    display: flex;
    height: 100%;
}

.horizontal > div {
    display: flex;
    flex-shrink: 0;
    padding: 0 5px;
    width: 29%;
}

.horizontal > div:first-child {
    padding: 0 5px 0 15px;
}

.horizontal > div:last-child {
    padding: 0 15px 0 5px;
}

.horizontal .card {
    align-items: stretch;
    width: auto;
    padding: 0px;
    margin: 0 15px;

    color: #f6f2e8;
}


.usp-list-sec {
    padding: 150px 0;

    @media (max-width: 1199px) {
        padding-block: 60px;
    }
}

.usp-list-sec .container {
    display: flex;
    max-width: 1300px;
    flex-wrap: wrap;


}

.usp-list-sec .tabs {
    width: 52%;
    padding: 0 11px 0 0;
}

.usp-list-sec .tabs-tittle {
    padding: 0 0 25px;
}

.usp-list-sec .tab {
    padding: 35px 0px 25px;
    cursor: pointer;
    display: flex;
    align-items: center;
    color: #1D1D1B;
    border-bottom: 1px solid #eaeaea;
    transition: all 0.3s ease;
    font-size: 1.563rem;
    font-weight: 500;
}

.usp-list-sec .tab span {
    font-size: 0.938rem;
    color: #AAAAAA;
    margin-right: 21px;
    position: relative;
    top: -9px;
}

.usp-list-sec .tab.active, .usp-list-sec .tab:hover {
    padding: 35px 0px 27px 30px;
}

/* .usp-list-sec .tab.active::after {
    content: "→";
    color: red;
    margin-left: auto;
    font-size: 20px;
} */

.usp-list-sec .content {
    width: 48%;
    padding: 11px 0 0 59px;
}

.usp-list-sec .content img {
    width: 100%;
    height: auto;
    border-radius: 0px;
}

.usp-list-sec .content p {
    font-size: 1rem;
    margin-top: 26px;
    color: #1D1D1BCC;
    font-weight: normal;
    line-height: 1.8;
}

/* .scroll-horizontally-slide-sec{
    overflow: hidden;
} */


.usp-list-sec h2 {
    font-size: 3rem;
    font-weight: 500;
    overflow: hidden;
    color: #1D1D1B;
}


.usp-list-sec .arrow {
    display: inline-block;
    width: 38px;
    height: 38px;
    background: #D71019;
    border-radius: 50%;
    margin-right: 0px;
    margin-left: auto;
    text-align: center;
    line-height: 38px;
    top: 0 !important;
    opacity: 0;
    position: relative;
    right: -13px;
}

.usp-list-sec .tab.active .arrow, .usp-list-sec .tab:hover .arrow {
    opacity: 1;
}

.usp-list-sec .arrow i {
    color: #fff;
    font-size: 22px;
}


/* Video Container */

.video-container {
    position: relative;
    width: 100%;
    /* max-width: 900px; */
    margin: 50px auto;
    /* cursor: pointer; */
}

/* Background Video */

.video-lightBox-sec video, .video-lightBox-sec iframe {
    width: 100%;
}

.video-lightBox-sec .video-container iframe {
    aspect-ratio: 16/9;
    height: auto !important;
    position: unset !important;
}

/* Play Button */

.video-lightBox-sec .play-btn-inner {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    cursor: pointer;
    transition: transform 0.2s ease-in-out;
    background: #fff;
    width: 115px;
    text-align: center;
    min-height: 174px;
    border-radius: 85px 85px 0 0;
    padding: 8px 8px 0;
    justify-content: center;
}

.video-lightBox-sec .play-btn-inner .play-btn {
    background: red;
    color: white;
    border-radius: 50%;
    width: 98px;
    height: 98px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    margin: 0 auto;
    margin-bottom: -5px;
}

.video-lightBox-sec .play-btn-inner:hover {
    transform: translateX(-50%) scale(1.1);
}

/* Lightbox */

.video-lightBox-sec .lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 99;
}

.video-lightBox-sec .lightbox video, .video-lightBox-sec .lightbox iframe {
    max-width: 80%;
    max-height: 80%;
    border-radius: 10px;
}

.video-lightBox-sec .lightbox iframe {
    left: 50% !important;
    transform: translateX(-50%) !important;
}

/* Close Button */

.video-lightBox-sec .close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 30px;
    color: white;
    cursor: pointer;
}


.tittle-box-number-inner {
    display: flex;
    /* justify-content: space-between; */
    align-items: center;
    max-width: 100%;
    margin: auto;
}

/* Left Section (Text) */

.tittle-box-number-inner .text-section {
    max-width: 50%;
    padding: 0 55px 0 0;
}

.tittle-box-number-inner h2 {
    font-size: 3rem;
    font-weight: 300;
    margin: 0 0 32px;
}

.tittle-box-number-inner .highlight {
    font-weight: 500;
    position: relative;
    padding: 0 0 0 60px;
    font-size: 3rem;
}

.tittle-box-number-inner .highlight::before {
    content: "";

    background: url(../img/banner-text-path.png) no-repeat;
    position: absolute;
    left: 0px;
    font-size: 24px;
    top: 22px;
    width: 45px;
    height: 21px;
    background-size: cover;
}

.tittle-box-number-inner p {
    font-size: 1rem;
    color: #000000CC;
    line-height: 2.375;
    font-weight: 500;

    + a.btn-arrow {
        margin-top: 2rem;
    }
}


.tittle-box-number-sec {
    padding: 35px 0 150px;
}

/* Right Section (Stats Cards) */

.tittle-box-number-inner .stats {
    display: grid;
    /* grid-template-columns: repeat(2, 50%); */
    grid-template-columns: repeat(2, auto);
    /* gap: 20px; */
    width: 50%;
    column-gap: 19px;
    padding: 0 0 0 140px;
}

.tittle-box-number-inner .stat-card {
    position: relative;
    margin: 0 0 20px;
    background: white;
    padding: 30px;
    text-align: center;
    border-radius: 2px;
    border: 1px solid #1D1D1B1A;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    margin: 20px 0 0;
}

.tittle-box-number-inner .stat-card:nth-child(3) {
    margin: 0;
}

.tittle-box-number-inner .stat-card:first-child {
    /* margin: -40px 0 0; */
    max-height: 180px;
    margin: 0;
}

.tittle-box-number-inner .stat-card:last-child {
    /* margin: -40px 0 0; */
    bottom: -20px;
    margin: 0;
}

.tittle-box-number-inner .stat-card {


}

.tittle-box-number-inner .stat-card h2 {
    font-size: 2.375rem;
    margin: 0;
    color: #1D1D1B;
    font-weight: 600;
}

.tittle-box-number-inner .stat-card p {
    font-size: 1.063rem;
    color: #AAAAAA;
    margin: 5px 0 0;
}


.team-gallery-sec {
    padding: 180px 0;
    border-top: 1px solid #eaeaea;
}


.team-gallery-text-lft {
    width: 40%;
}

.team-gallery-text-rht {
    width: 60%;
    padding: 0 0 0 60px;
}

.team-gallery-text {
    align-items: flex-end;
}

.team-gallery-text-lft h2 {
    font-size: 3rem;
    font-weight: normal;
    color: #1D1D1B;
}

.team-gallery-text-lft h2 span {
    display: block;
    font-weight: 500;
}

.team-gallery-text-rht p {
    font-size: 1rem;
    color: #000000CC;
    font-weight: normal;
    line-height: 1.9;
}


.team-gallery-img {
    padding: 200px 0 0;
}

.team-gallery-img ul {
    margin: 0;
    padding: 0;
    gap: 2%;
    row-gap: 28px;
}

.team-gallery-item {
    width: 23.5%;
    position: relative;
}


.team-gallery-img .team-gallery-item:nth-child(even) {

    top: -72px;
}

.team-gallery-item:nth-child(3n+1) .team-gallery-inner-item {

}

.team-gallery-item:nth-child(3n+2) .team-gallery-inner-item {

}

.team-gallery-item:nth-child(3n+3) .team-gallery-inner-item {

}

.team-gallery-item:nth-child(3n+4) .team-gallery-inner-item {

}

.team-gallery-inner-item {
    position: relative;
    overflow: hidden;


    &.vacancies-cta {
        height: 100%;

        .gallery-description {
            transform: unset;
        }

        .btn-arrow {
            border-color: rgba(255,255,255,0.2);
        }
    }
}

.team-gallery-inner-item .gallery-tittle {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 35px 35px 43px 40px;
}

.team-gallery-inner-item .gallery-tittle h3 {
    color: #FFFFFF;
    font-size: 1.25rem;
    font-weight: 500;
}

.team-gallery-inner-item .gallery-tittle h4 {
    color: #AAAAAA;
    font-size: 1.125rem;
    font-weight: normal;
}


.team-gallery-inner-item .gallery-description {
    /*position: absolute;*/
    z-index: 1;
    width: 100%;
    height: 100%;
    background: #D71019;
    padding: 35px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    row-gap: 15px;
    transform: translate(0%, 104%);
}

.team-gallery-inner-item:hover .gallery-description {
    transform: translate(0%, 0%);
}

.team-gallery-inner-item .gallery-description-bottom .global-btn {
    background: rgba(255, 255, 255, 0);
    border: 1px solid #e4454c;
}

.team-gallery-inner-item .gallery-description-bottom .global-btn .arrow-btn {
    background: #fff;
}

.team-gallery-inner-item .gallery-description-bottom .global-btn:hover {
    color: #1D1D1B;
}

.team-gallery-inner-item .gallery-description-top h5 {
    font-size: 1.563rem;
    color: #fff;
    font-weight: 500;
}

.team-gallery-inner-item .gallery-description-top p {
    font-size: 1.125rem;
    color: #FFFFFF67;
    font-weight: normal;
    margin: 15px 0 0;
}

/* montage-over-ons css end */


/* css Werken bij Beek  start  */


.inner-hero-banner .banner-add .btn-arrow {
    margin: 25px 0 0;
    border-color: rgba(255,255,255,0.2);
}

.contains-tittleText-sec .global-btn {
    margin: 42px 0 0 0px;
}

.global-btn.global-btn-black {
    background: #fff;
    color: #000000CC;
    border: 1px solid #DADADA;
    line-height: initial;

}

.global-btn.global-btn-black:hover {
    color: #fff;
}

.global-btn.global-btn-black .arrow-btn {
    background: #1D1D1B;

}


.global-btn.global-btn-down-arrow .arrow-btn img {
    transform: rotate(90deg);
}


.vacature-container-sec {
    padding: 147px 0 0;

    @media (max-width: 1199px) {
        padding-top: 60px;
    }
}

.vacature-container-sec h2 {
    font-size: 18px;
    color: gray;
}

.vacature-container-sec .vacature {
    position: relative;
    padding: 72px 0;
    border-bottom: 1px solid #e8e8e8;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
    /* display: block; */

    @media (max-width: 1199px) {
        padding-block: 40px;
    }

    @media (max-width: 767px) {
        align-items: start;
        .vacature-details {
            flex-direction: column;
        }
    }
}

/* .vacature-container-sec .vacature:last-child {
    border-bottom: none;
} */

.vacature-container-sec .vacature-title h3 {
    font-size: 2rem;
    font-weight: 300;
    color: #1D1D1B;
    opacity: 0.5;
    transition: color 0.3s ease;
}

.vacature-container-sec .vacature:hover .vacature-title h3 {
    opacity: 1;
}


.vacature-container-sec .vacature-details {
    font-size: 1rem;
    color: #1D1D1BCC;
    display: flex;
    row-gap: 19px;
    font-weight: normal;
    column-gap: 61px;
    padding-right: 10px;
}

.vacature-container-sec .vacature-details i {
    color: #AAAAAA;
    font-size: 24px;
    margin: 0px 9px 0 0px;
    position: relative;
    top: 2px;
}

.vacature-container-sec .vacature-hover {
    position: absolute;
    left: 33%;
    top: 58%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 15px;
    opacity: 0;
    visibility: hidden;
    z-index: 1;
    transition: opacity 0.3s ease-in-out;
}

.vacature-container-sec .vacature-hover img {
    width: 446px;
    height: auto;
    border-radius: 0px;
}

.vacature-container-sec .arrow-btn {
    width: 76px;
    height: 76px;
    background: #D71019;
    color: white;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 144px 0 0 -50px;
}

.vacature-container-sec .arrow-btn i {
    font-size: 36px;
}

.vacature-container-sec .vacature:hover .vacature-hover {
    opacity: 1;
    visibility: visible;
}


.vacature-container-sec h2 {
    font-size: 1rem;
    color: #AAAAAA;
    font-weight: 500;
    margin: 0 0 15px;
}


.employees-speak-sec {
    position: relative;
    margin: 153px 0 0;


    @media (max-width: 1199px) {
        margin-top: 80px;
    }

    @media (max-width: 767px) {
        margin-top: 40px;
    }
}


.employees-speak-slider {
    background: #1D1D1B;
    color: #fff;
}


.speek-person-block {
    margin: 45px 0 0 11px;
    align-items: center;
}

.employees-speak-slider-item-lft {
    width: 53%;
    position: relative;
}

.employees-speak-slider-item-lft:after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: url(../img/speek-slide-img-overlay.png);
}

.employees-speak-slider .slick-prev:before, .slick-next:before {
    display: none;
}

.employees-speak-slider .slick-prev, .employees-speak-slider .slick-next {
    top: inherit;
    bottom: 4%;
    width: 52px;
    height: 52px;
    background: #AAAAAA40;
    border-radius: 50%;
    z-index: 1;
    line-height: 50px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.employees-speak-slider .slick-prev i, .employees-speak-slider .slick-next i {
    font-size: 25px;
    color: #fff;
}

.employees-speak-slider .slick-next {
    right: inherit;
    left: 45.9%;
}

.employees-speak-slider .slick-prev {
    left: 42%;
}

.employees-speak-slider-item-lft img {
    height: 100%;
    object-fit: cover;
}

.employees-speak-slider-item-rht {
    width: 47%;
    padding: 95px 70px 90px 66px;
}

.employees-speak-slider-item-rht h2 {
    font-size: 1rem;
    font-weight: 500;
    color: #AAAAAA;
}

.qMark img {
    height: 18px;
}

.speek-person-block .speekPer {
    width: 85px;
    background: #373737;
}

.speek-person-text {
    padding: 0 0 0 32px;
}

.speek-person-text h3 {
    font-size: 1rem;
    font-weight: 500;
}

.speek-person-text h4 {
    font-size: 1rem;
    font-weight: 300;
}

.qMark {
    margin: 73px 0 0 5px;
}

.employees-speak-slider-item-rht p {
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.71;
    margin: 23px 0 0 11px;
}


.cta-card {
    background: #D71019;
    color: white;
    display: flex;
    align-items: center;
    padding: 27px 30px 34px;
    border-radius: 0px;
    width: 360px;
    gap: 25px;
    text-align: left;
    /* font-family: Arial, sans-serif; */
    position: fixed;
    z-index: 9;
    bottom: 30px;
    right: 0;
    transition: right ease-out 0.3s;

    &.hidden {
        right: -100%;
    }
}

.cta-card .profile-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid white;
}

.cta-card .text {
    flex: 1;
}

.cta-card .text h2 {
    margin: 0;
    font-size: 1.25rem;
    line-height: 1.4;
    font-weight: 600;
}

.cta-card .text p {
    margin: 5px 0;
    font-size: 1rem;
    font-weight: 400;
}

.cta-card .link {
    display: inline-block;
    color: white;
    text-decoration: none;
    font-weight: 300;
    padding-bottom: 2px;

}

.cta-card img {
    width: 87px;
    height: 87px;
    object-fit: cover;
    background: #Fff;
    border-radius: 50%;
}

.cta-card .link span {
    border-bottom: 1px solid white;
}

.cta-card .link:hover {
    opacity: 0.8;
}

.contact-formSidebar-lft .call-toAction-inner {
    max-width: 450px;
    flex-direction: column;
    margin: 61px 0 0;
}

.contact-formSidebar-lft .call-toAction-inner-rht {
    width: 100%;
    padding: 0;
}

.contact-formSidebar-lft .call-toAction-inner-lft {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #e9e9e9;
    padding: 0 0 16px;
    margin: 0 0 24px;
}

.contact-formSidebar-lft .call-toAction-inner-lft h3 {
    font-size: 1.125rem;
    color: #1D1D1B;
    font-weight: bold;
}


.contact-formSidebar-lft {
    width: 40%;
    padding: 68px 0 0;

    @media (max-width: 1199px) {
        padding-top: 0;
    }
}

.contact-formSidebar-rht {
    width: 60%;
}

.contact-formSidebar-text {
    max-width: 479px;
}


.contact-formSidebar-text h2 {
    color: #1D1D1B;
    font-size: 3rem;
    font-weight: 500;
    line-height: 1.3;
    margin: 0 0 30px;
    text-wrap: balance;
    max-width: 450px;
}

.contact-formSidebar-text p {
    font-size: 1rem;
    line-height: 2;
    color: #1D1D1B;
    font-weight: normal;
}

.contact-formSidebar-sec {
    padding: 152px 0 106px;
    position: relative;
}


.form-container {
    background: white;
    padding: 71px 65px;
    border-radius: 0px;
    max-width: 679px;
    margin-left: auto;
}

.form-container form {
    /* display: flex;
    flex-direction: column; */
}

.form-container label {
    font-weight: 500;
    margin-top: 10px;
    display: inline-block;
    /* color: #b2b2b2; */
    color: #1D1D1B;
    font-size: 1rem;
    /* opacity: 0; */
    position: relative;
    background: none;
    padding: 2px 6px;
    width: auto;
    margin: 0 0 0 14px;


}

.form-container .form-group label {
    z-index: 1;
    top: -7px;
    left: 3px;
    position: absolute;
    background: #ffffff;
}

.form-container .form-group input:focus ~ label,
.form-container input:not(:placeholder-shown) ~ label,
.form-container textarea:not(:placeholder-shown) ~ label {
    color: #b2b2b2;
}

.form-container input, .form-container textarea {
    width: 100%;
    padding: 25px 22px 21px 22px;
    margin-top: 5px;
    border: 1px solid #00564026;
    border-radius: 0px;
    font-size: 1rem;
    font-weight: 600;
    font-family: var(--font-family);
}

.form-container textarea {
    min-height: 150px;
    resize: none;
}

.form-container input::placeholder, .form-container textarea::placeholder {
    color: #d3d3d2;
    opacity: 1; /* Firefox */
    font-weight: 400;
}

.form-container input::-ms-input-placeholder, .form-container textarea::-ms-input-placeholder { /* Edge 12 -18 */
    color: #d3d3d2;
    font-weight: 400;
}

.form-container input:focus-visible, .form-container textarea:focus-visible {
    outline: none;
}

.form-container input:focus, .form-container textarea:focus,
.form-container input:not(:placeholder-shown), .form-container textarea:not(:placeholder-shown) {
    border: 1px solid #1D1D1B;
}


.form-container .file-upload {
    margin-top: -9px;
    text-align: center;
    padding: 19px 20px 8px;
    background-color: #f5f5f5;
    border-radius: 5px;
}

.form-container .file-upload span {
    color: #1D1D1B;
    text-decoration: none;

    position: relative;
}

.form-container .file-upload span::after {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background-color: red;
    position: absolute;
    bottom: -2px;
    left: 0;
}

.form-container .file-upload p {
    color: #AAAAAA;
    font-size: 0.75rem;
    margin-top: 5px;
}

.form-container .file-name {
    margin-top: 5px;
    font-size: 14px;
    color: black;
}

.form-container .submit-btn {
    background-color: red;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 15px;
}

.form-container .submit-btn:hover {
    background-color: darkred;
}

.form-container .form-group {
    position: relative;
    margin: 0 0 34px;
}

.form-container button.global-btn {
    border: none;
    margin-left: auto;
    cursor: pointer;
    /* float: right; */
    margin: 45px 0 0;
    padding: 18px 33px 15px 52px;
}

.submit-contact-btn {
    text-align: right;
    margin-top: 46px;
}

/* css Werken bij Beek  end  */


/* css Werken bij Beek details  start  */


.inner-hero-banner .contains-tittleText-inner-mDetails .contains-tittleText-rht p {
    font-size: 1rem;

    &:first-child {
        font-size: 1.125rem;
        line-height: 2.33;
        margin-bottom: 79px;
    }

    + .btn-arrow {
        @media (min-width: 1024px) {
            margin-top: 47px;
        }
    }
}

.text-list ul {
    list-style-type: square;
    margin-left: auto;
    max-width: 638px;
    margin-top: 30px;
    line-height: 2;
    font-size: 1rem;
}

.inner-hero-banner .text-list ul {
    margin-bottom: 32px;
}

.text-list li p {
    padding: 0;
    margin: 0;
}

.text-list li {
    margin: 7px 0 0 -22px;
}


.project-slider-sec.day-slider-sec {
    background: none;
    padding: 184px 0 25px;

    @media (max-width: 1199px) {
        padding-block: 100px 25px;
    }

    @media (max-width: 767px) {
        padding-block: 75px 25px;

        .text-section p {
            display: block;
        }
    }

    a.btn-arrow {
        display: none;

        @media (max-width: 767px) {
            display: inline-block;
        }
    }
}

.day-slider-sec .project-slider-block .text-section h2, .day-slider-sec .project-slider-block .text-section p, .day-slider-sec .project-slider-block .btn {
    color: #1D1D1B;
}

.project-slider-sec.day-slider-sec:after {
    display: none;
}

.day-slide-item {
    background: #ededed;
    padding: 50px;
    margin: 0;
    position: relative;
    max-width: 410px;
    width: 100%;
    height: auto;

    @media (max-width: 767px) {
        width: auto;
        padding: 30px;
        max-width: calc(100% - 60px);
        /*flex: 1 1 auto;*/
    }
}

.day-slide-inner h3 {
    color: #1D1D1B;
    font-weight: bold;
    font-size: 1.25rem;
    margin: 0 0 48px;
}

.day-slide-inner p {
    font-size: 1rem;
    color: #1D1D1B;
    font-weight: normal;
    line-height: 1.875;
}

.project-slider-block.day-slider-sec {

    grid-template-columns: 29% 71%;

}


.day-slider-sec .slick-prev, .day-slider-sec .slick-next {
    width: 51px;
    height: 51px;
    line-height: 51px;
    border-radius: 50%;
    z-index: 1;
    background: #AAAAAA40;
    display: block;
}

.day-slider-sec .slick-arrow:hover {
    background: #D71019;
}

.day-slider-sec .slick-arrow:hover i {
    color: #fff;
}

.day-slider-sec .slick-arrow i {
    font-size: 32px;
    color: #8e8e8e;
}

.day-slider-sec .slick-prev {
    left: -22%;
}

.day-slider-sec .slick-next {
    right: 36%;
}

.day-slider-sec .slick-prev:before, .day-slider-sec .slick-next:before {
    display: none;
}

.montage-full-im-sec {
    position: relative;
    margin: 55px 0 0;
    min-height: 840px;
}

.montage-full-im-sec img {
    width: 100%;
    height: 840px;
    object-fit: cover;

    @media (max-width: 767px) {
        height: 400px !important;
    }
}

.montage-wer-details-number-sec {

    background: #fff;
}

.day-slider-sec .project-slider-block .btn {

    border-bottom: 2px solid #D71019;
}

.tittle-box-number-sec.montage-wer-details-number-sec {
    padding: 126px 0 150px;
    background: #fff;
    position: relative;

    @media (max-width: 767px) {
        padding: 35px 0 120px;
    }
}


.submit-contact-btn .global-btn .arrow-btn {
    top: 8px;
    width: 37px;
    height: 37px;
}

.submit-contact-btn .global-btn:hover .arrow-btn {
    width: 160%;
    height: 127%;
}

.submit-contact-btn .global-btn:hover .arrow-btn {
    top: -8px;
}

.submit-contact-btn .global-btn:hover .arrow-btn img {
    margin: 26px 0 0 16px;
}

/* css Werken bij Beek details  end  */


/* Projecten css start */

.custom-filters-block-lft h3 {
    color: #8e8e8d;
    font-size: 1rem;
    font-weight: 500;
}

.projecten-banner-filters-sec, .montage-werkwijze-banner-text-sec {
    background: #1D1D1B0A;
    padding: 100px 0 140px;

    @media(max-width: 1600px) {
        padding-top: 180px;
    }
}

.projecten-banner-filters-sec {
    .contains-tittleText-inner {
        justify-content: space-between;
        flex-wrap: unset;

        @media (max-width: 767px) {
            flex-wrap: wrap;

            .custom-filters-block-rht {
                width: 100%;
                margin-top: 20px;
            }

            .custom-filter-item {
                width: 100%;
            }
        }

        > div {
            width: auto;
        }

        .contains-tittleText-rht {
            @media (max-width: 1199px) {
                padding-top: 15px;
            }
        }
    }
}

.inner-hero-banner.projecten-banner-filters-sec .contains-tittleText-inner {
    padding: 35px 0 0;
}


.custom-filters-style .custom-filter-inner {
    display: block;
    position: relative;
    padding-left: 40px;
    margin-bottom: 3px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-size: 1.125rem;
    font-weight: 500;
    color: #1D1D1B;
    margin-left: 9px;
}

/* Hide the browser's default checkbox */
.custom-filters-style .custom-filter-inner input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create a custom checkbox */
.custom-filters-style .checkmark {
    position: absolute;
    top: 2px;
    left: 0;
    height: 25px;
    width: 25px;
    border: 1px solid #DADADA;
    background-color: #FFFFFF;
}

.montage-offerte-aanvragen-form .custom-filters-style .checkmark {
    border-radius: 3px;
}

.montage-offerte-aanvragen-form .custom-filters-style .custom-filter-inner .checkmark:after {
    border-radius: 2px;
}

/* On mouse-over, add a grey background color */
.custom-filters-style .custom-filter-item:hover input ~ .checkmark {
    background-color: #FFFFFF;
}

/* When the checkbox is checked, add a blue background */
/* .custom-filter-inner input:checked ~ .checkmark {
  background-color: #2196F3;
} */

/* Create the checkmark/indicator (hidden when not checked) */
.custom-filters-style .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.custom-filters-style .custom-filter-inner input:checked ~ .checkmark:after, .custom-filters-style .custom-filter-item:hover .custom-filter-inner .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.custom-filters-style .custom-filter-inner .checkmark:after {
    left: 5px;
    top: 5px;
    width: 13px;
    height: 13px;
    background: #D71019;
}

.custom-filters-style {
    column-gap: 0px;
    row-gap: 19px;
    margin: 0;
    padding: 0;
}

.custom-filters-style .custom-filter-item {
    width: auto;
}

.custom-filters-block-lft {
    width: 15%;
}

.custom-filters-block-rht {
    width: 80%;
}


.projecten-gallery-sec {
    background: #1D1D1B;
    /* position: relative; */
    padding: 90px 0 140px;
}

.projecten-gallery-transform-bg {
    background: url('../img/skew-bg.png') no-repeat;
    background-position: top;
    background-size: 100% 100%;
    width: 100%;
    height: 120px;
    position: absolute;
    top: -93px;
    transform: skew(0deg, -1deg);
}

/* .projecten-gallery-sec:after {
    content:"";
    background:#1D1D1B;
    transform: skewY(-3deg);
    width: 100%;
    height: 35%;
    position: absolute;
    top: -32%;
    left: 0;
    transform-origin: bottom right;
} */

.scrollTo-down.scrollTo-down-floatPosition {
    position: absolute;
    z-index: 2;
    left: 50%;
    bottom: 6px;
    transform: translate(-50%, 0%);
}


.projecten-gallery-item-inner {
    position: relative;
    overflow: hidden;
}

.projecten-gallery-item-inner .prj-img {
    width: 100%;
    /* height: 100%; */
    object-fit: cover;
    display: block;


    @media (max-width: 767px) {
        height: 354px;
    }
}

.projecten-gallery-item {

    &:hover,&:focus {
        picture {
            &:after {
                opacity: 1;
            }
        }
    }
    picture {
        position: relative;
        display: block;
        line-height: 0;

        &:before {
            content: '';
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            background-image: url('/assets/templates/img/project-slider-overlay.svg');

        }

        &:after {
            content: '';
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            background-image: url('/assets/templates/img/project-slider-item-after-hover.svg');
            opacity: 0;
            transition: opacity ease-out 0.2s;
        }

        img {
            max-width: 100%;
            height: auto;
        }
    }
}


.projecten-gallery-list .projecten-gallery-item {
    position: relative;
    cursor: pointer;
}

.projecten-gallery-list .projecten-gallery-item:nth-child(even) {
    /* padding: 0; */
    top: 55px;
}

.projecten-gallery-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 55px;
    row-gap: 55px;
    align-items: start;
}

.projecten-gallery-name {
    position: absolute;
    z-index: 1;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 50px;
    color: #fff;

    @media (max-width: 767px) {
        padding: 19px 19px 35px 21px !important;
    }
}

.projecten-gallery-name h2 {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 0;
}

.projecten-gallery-name h3,
.projecten-gallery-name span {
    font-size: 1rem;
    font-weight: normal;
    /* position: relative; */
}

.projecten-gallery-name .arrow {
    position: absolute;
    width: 66px;
    height: 66px;
    background: #D71019;
    border-radius: 50%;
    line-height: 66px;
    text-align: center;
    opacity: 0;

}

.projecten-gallery-name .arrow i {
    font-size: 30px;
}

.projecten-gallery-name .prj-name-inner {
    position: relative;
    transform: translate(0px, -4px);
}

.projecten-gallery-item:hover .projecten-gallery-name .prj-name-inner {
    transform: translate(85px, -4px);
}

.projecten-gallery-item:hover .projecten-gallery-name .arrow {
    opacity: 1;
}


.custom-pagination {
    /* margin: 130px 0 0; */
}

.pagination-list {
    align-items: center;
    justify-content: center;
    gap: 19px;
    padding: 0;
}

.pagination-list .pagination-item {
    border: 1px solid #FFFFFF1A;

    color: #FFFFFF;
    font-weight: 500;
    font-size: 1.188rem;
}

.pagination-list .pagination-item .pagination-link {
    color: #FFFFFF;
    font-weight: 500;
    padding: 9px 20px;
    font-size: 1.188rem;
    display: block;
}

.pagination-list .pagination-item .pagination-link:hover, .pagination-list .pagination-item .pagination-link.active {
    background: #D71019;
}


.projecten-formSidebar-sec .contact-formSidebar-rht {
    border-left: 1px solid #1D1D1B0A;
}

/* Projecten css end */


/* montage-project-detail CSS start */

.inner-hero-banner .tittleText-motage-projectDetails .contains-tittleText-lft h1 {
    font-size: 4rem;
}

.inner-hero-banner .tittleText-motage-projectDetails .contains-tittleText-lft h1 .f-normal {
    font-weight: normal;
}


.inner-hero-banner .tittleText-motage-projectDetails .contains-tittleText-lft {
    width: 100%;
}

.inner-hero-banner .tittleText-motage-projectDetails .contains-tittleText-rht {
    width: 100%;
    padding: 0;
}

.montage-project-type {
    margin: 60px 0 0;
    padding: 0;
    display: grid;
    grid-template-columns:repeat(3, auto);
    max-width: 860px;
}

.montage-project-type-item {
    font-size: 1.125rem;
}

.montage-project-type .montage-project-type-item span:first-child {
    color: #AAAAAA;
}

.montage-project-type .montage-project-type-item span:last-child {
    display: block;
    color: #1D1D1B;
    font-weight: 500;
    margin: 11px 0 0;
}


.inner-hero-banner .contains-tittleText-inner.tittleText-motage-projectDetails {
    padding: 0 0 40px;
    /* border-bottom: 1px; */
}


.montage-project-details-contentTwo-sec {
    position: relative;
    padding: 100px 0 0;

    @media (max-width: 1199px) {
        padding-top: 50px;
    }
}

.montage-project-details-contentTwo-inner {
    column-gap: 4%;
    row-gap: 30px;
    align-items: flex-end;
}

.montage-project-details-contentTwo-lft {
    width: 47%;
}

.montage-project-details-contentTwo-lft p {
    color: #1D1D1B;
    font-weight: 500;
    font-size: 1.563rem;
    line-height: 1.8;

    @media (max-width: 1199px) {
        font-size: 1.2rem;
    }
}

.montage-project-details-contentTwo-rht {
    width: 48%;
    margin-bottom: -30px;
}

.montage-project-details-contentTwo-rht p {
    color: #000000CC;
    font-size: 1rem;
    font-weight: normal;
    line-height: 1.8;
}


.montage-project-detail-gallery-inner {
    display: grid;
    grid-template-columns: repeat(2, auto);
    gap: 29px 19px;
}


.montage-project-detail-gallery-inner .montage-project-detail-gallery-item:nth-child(3) {
    grid-column-start: 1;
    grid-column-end: 3;
}

.montage-project-detail-gallery-inner .montage-project-detail-gallery-item:nth-child(6) {
    grid-column-start: 1;
    grid-column-end: 3;
}

.montage-project-detail-gallery-item-inner .img-fluid {
    width: 100%;
}

.montage-project-detail-gallery-sec {
    padding: 150px 0 0;
    position: relative;
    z-index: 1;

    @media (max-width: 1199px) {
        padding-top: 100px;
    }
}


.projecten-gallery-sec.related-projects-sec {
    background: unset;
    position: relative;
    padding-bottom: 0px;
}


.related-projects-sec .projecten-gallery-list .projecten-gallery-item:nth-child(even) {
    padding: 0;
    top: 0px;
}


.montage-group-sec.montage-group-project-detail-sec {
    overflow: inherit;
}

.related-projects-btn-tittle {
    align-items: center;
    column-gap: 20px;
    row-gap: 15px;
    justify-content: space-between;
    margin: 15px 0 50px;
}

.related-projects-btn-tittle h2 {
    font-size: 3rem;
    font-weight: 500;
    color: #1D1D1B;
}

.related-projects-btn-tittle .global-btn.global-btn-black {
    margin: 11px 0 0;
}

.montage-group-project-detail-sec .contact-formSidebar-sec {
    padding: 140px 0 120px;
}


/* montage-project-detail CSS end */


/* montage-werkwijze css start */


.inner-hero-banner.montage-werkwijze-banner-text-sec .contains-tittleText-inner {
    align-items: flex-end;
    padding: 15px 0 100px;

    @media (max-width: 1199px) {
        padding: 15px 0 40px;
    }

    @media (max-width: 767px) {
        padding-block: 15px 0;
    }
}

.montage-werkwijze-contentTwo-sec .btn-arrow {
    float: right;
}

.montage-project-details-contentTwo-rht .btn-arrow {
    margin: 50px 0 0;
}


.montage-werkwijze-contentTwo-sec .montage-project-details-contentTwo-inner {
    align-items: inherit;
}

.montage-werkwijze-contentTwo-sec .montage-project-details-contentTwo-rht {
    padding-top: 60px;
    align-self: flex-end;

    @media (max-width: 767px) {
        padding-top: 0;
    }
}


.montage-werkwijze-gallery-sec {
    margin: 140px 0 0;
    padding: 120px 0;

    @media (max-width: 1199px) {
        margin-top: 100px;
        padding: 60px 0;
    }
}


.montage-werkwijze-gallery-item {
    align-items: center;
}

.montage-werkwijze-gallery-item-lft {
    width: 50%;
}

.montage-werkwijze-gallery-item-rht {
    width: 50%;
    padding: 75px;
    position: relative;
}


.ontage-werkwijze-gallery-img {
    position: relative;
    z-index: 1;
}

.montage-werkwijze-gallery-item h2 {
    font-size: 3rem;
    color: #1D1D1B;
    font-weight: 500;
}

.montage-werkwijze-gallery-item p {
    font-size: 1rem;
    font-weight: normal;
    color: #000000CC;
    line-height: 2;
    margin: 30px 0 60px;

    @media (max-width: 1199px) {
        margin-bottom: 30px;
    }
}

.montage-werkwijze-gallery-item .global-btn-black {
    margin: 40px 0 0;
}

.montage-werkwijze-gallery-item .number {
    font-size: 15.313rem;
    color: #fff;
    font-weight: 500;
    line-height: 0.8;
    position: absolute;
    top: -10%;
    left: -6.5%;
    -webkit-text-stroke: 2px #1D1D1B1A;
}

.montage-werkwijze-gallery-description {
    position: relative;
    z-index: 1;
}

.montage-werkwijze-gallery-item.f-direction-reverse .number {
    left: inherit;
    top: -8%;
    right: -5.5%;

}

.ontage-werkwijze-gallery-img img {
    display: block;
}

.montage-werkwijze-gallery-inner .montage-werkwijze-gallery-item:first-child .ontage-werkwijze-gallery-img:after, .montage-werkwijze-gallery-inner .montage-werkwijze-gallery-item:last-child .ontage-werkwijze-gallery-img:after {
    width: 100%;
    height: 50px;
    content: "";
    position: absolute;
    left: 0;
    z-index: 1;

}

.montage-werkwijze-gallery-inner .montage-werkwijze-gallery-item:first-child .ontage-werkwijze-gallery-img:after {
    background: url('../img/img-top-skew.png') no-repeat;
    background-size: cover;
    top: 0;
}

.montage-werkwijze-gallery-inner .montage-werkwijze-gallery-item:last-child .ontage-werkwijze-gallery-img:after {
    background: url('../img/img-bottom-skew.png') no-repeat;
    background-size: cover;
    bottom: 0;
}

.montage-diensten-gallery .montage-werkwijze-gallery-inner .montage-werkwijze-gallery-item:last-child .ontage-werkwijze-gallery-img:after {
    background: url('../img/last-img-block-diensten-skew.png') no-repeat;
    bottom: -1px;
    width: 101%;
    left: -1px;
}

.montage-werkwijze-formSidebar-sec {
    background: #1D1D1B0A;
}

/* montage-werkwijze css end */


/* montage-toepassingen css start */

.inner-hero-banner .montage-toepassingen-tittleText-inner .contains-tittleText-lft h1 {
    font-size: 4rem;
    font-weight: normal;
}

.montage-toepassingen-tittleText-inner .call-toAction-inner {
    max-width: 436px;
    flex-direction: column;
}

.montage-toepassingen-tittleText-inner .call-toAction-inner .call-toAction-inner-lft {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #e9e9e9;
    padding: 0 0 20px;
    margin: 0 0 20px;
}

.montage-toepassingen-tittleText-inner .call-toAction-inner .call-toAction-inner-rht {
    width: 100%;
    padding: 0;
}

.montage-toepassingen-tittleText-inner .call-toAction-inner-lft h3 {
    font-size: 1.125rem;
    color: #1D1D1B;
    font-weight: bold;
}

.montage-toepassingen-tittleText-inner .call-toAction-inner-lft p {
    color: #1D1D1BCC;
    font-weight: normal;
    font-size: 1rem;
    margin: 15px 0 0;
    line-height: 1.4;
}

.montage-toepassingen-tittleText-inner .contains-tittleText-lft p {
    color: #1D1D1B;
    font-weight: normal;
    line-height: 2.3;
    margin: 35px 0 0;
}

.inner-hero-banner .contains-tittleText-inner.montage-toepassingen-tittleText-inner {
    padding: 15px 0 0px;
}

.montage-toepassingen-gallery-sec .montage-werkwijze-gallery-inner .montage-werkwijze-gallery-item:last-child .ontage-werkwijze-gallery-img:after {
    background: url('../img/montage-toepassingen-bottom-skew.png') no-repeat;
}

.montage-toepassingen-gallery-sec .gallery-item {
    overflow: inherit;
}

.montage-toepassingen-gallery-sec .gallery-item .icon {
    right: inherit;
    width: auto;
    position: inherit;
    display: inline-block;
    padding: 10px 70px 10px 10px;
}

.montage-toepassingen-gallery-sec .gallery-item .icon .img-fluid {
    float: left;
    width: 20px;
    margin: 5px 2px;
}

.montage-toepassingen-gallery-sec .gallery-item .icon .text {
    display: inline-block;
    font-size: 1rem;
    font-weight: 500;
    padding: 0 15px 0;
}

.montage-toepassingen-gallery-sec .gallery-item .icon .icon-arrow {
    right: -10px;
}


.contact-formSidebar-sec.montage-toepassingen-contact-form-sec {
    /* background:#1D1D1B0A; */
}

.contact-formSidebar-sec.contact-formSidebar-skew-bg {
    background: #1D1D1B0A;
}

.contact-formSidebar-skew-bg:after {
    position: absolute;
    width: 100%;
    height: 100px;
    background: url('../img/contact-skew-bg.png') no-repeat;
    background-size: 100% 100%;
    top: 0;
    content: "";
    left: 0;
}


.contact-accordion {
    padding: 40px 0 0 30px;
}

.contact-accordion .accordion {
    width: 100%;
    max-width: 700px;
    margin-left: auto;
    padding: 0;
}

.contact-accordion .accordion-item {
    border-bottom: 1px solid #ddd;
    overflow: hidden;
    padding: 8px 0 20px;
}

.contact-accordion .accordion-item:first-child {
    border-top: 1px solid #ddd;
}

.contact-accordion .accordion-header {
    width: 100%;
    background: none;
    border: none;
    padding: 9px 0px 0;
    font-size: 1.32rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /*opacity: 0.4;*/
    color: #000000;

    span:first-child {
        opacity: 0.4;
    }
}

.contact-accordion .accordion-header.active {

    span:first-child {
        opacity: 1;
    }
}

.contact-accordion .accordion-content {
    padding: 0 0px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out, padding 0.3s ease-in-out;
}

.contact-accordion .accordion-content p {
    margin: 0;
    font-size: 1rem;
    color: #000000CC;
    font-weight: normal;
    line-height: 2;
}

.contact-accordion .icon {
    font-size: 24px;
    font-weight: 500;
    transition: transform 0.3s ease-in-out;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #F4F4F4;
    color: #000000;
    text-align: center;
    line-height: 42px;
}

/* Rotate icon when active */
.contact-accordion .accordion-header.active .icon {
    transform: rotate(180deg);
    background: #1D1D1B;
    color: #fff;
}


/* montage-toepassingen css end */


/* css start montage-toepassingen-detail */

.image-block-animate-sec {
    padding: 140px 0 0;

    @media (max-width: 1199px) {
        padding-top: 70px;
    }
}

.image-block-animate-sec img {
    width: 100%;
}


.contains-tittleText-sec.montage-toepassingen-detail-tittleText-sec .global-btn {
    margin: 0px 0 0 0px;
}

.contains-tittleText-sec.montage-toepassingen-detail-tittleText-sec {
    padding: 120px 0 0;

    @media (max-width: 1199px) {
        padding-top: 60px;
    }
}

.montage-toepassingen-detail-contact-form-sec {
    background: #1D1D1B0A;
}


.project-slider-sec.montage-toepassingen-detail-project-slider-sec {
    padding: 40px 0 0;
    margin: 120px 0 0;

    @media (max-width: 1199px) {
        margin-top: 60px;
        padding-block: 60px;
    }
}


.custom-image-gallery.u-gap\:1\/2, .custom-image-gallery .u-gap\:1\/2 {
    gap: clamp(.78125rem, .6640625007rem + .52083333vw, 1.25rem);
}

.custom-image-gallery.g-cols\:2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (min-width: 768px) {

    .custom-image-gallery.g-cols\:3\>sm {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

}

.custom-image-gallery .align-self-start {
    align-self: flex-start !important;
}


/*.custom-image-gallery.align-content-start {*/
/*    align-content: flex-start !important;*/
/*}*/


/* .custom-image-gallery.c-gallery {
        padding-inline: 2.5rem;
    }
     */
.custom-image-gallery.c-gallery {

    overflow: hidden;
    /* padding-inline: .78125rem; */
    padding-inline: 0rem;
    max-height: 39vw;

    @media (min-width: 1680px) {
        max-height: 653px;
    }
}

[class*=u-gap], [class^=g-] {
    display: grid;
}

/*.custom-image-gallery .u-4\/3 {*/
/*    padding-bottom: 75%;*/
/*}*/

.custom-image-gallery .u-relative {
    position: relative !important;
}

/*.custom-image-gallery .u-fill {*/
/*    bottom: 0;*/
/*    left: 0;*/
/*    position: absolute;*/
/*    right: 0;*/
/*    top: 0;*/
/*}*/

.custom-image-gallery .o-img, .custom-image-gallery .o-video {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
}

.custom-image-gallery img, .custom-image-gallery svg {
    vertical-align: middle;
}


/* css end montage-toepassingen-detail */


/* montage-contact css start */

.montage-contact-banner {
    padding: 100px 0 100px;
    position: relative;
    /* clip-path:polygon(0% 0%, 100% 0%, 100% 88%, 0% 100%); */
    background-color: var(--color-beek-red);
    overflow: hidden;

    &::after {
        content: '';
        position: absolute;
        bottom: -1px;
        left: -47px;
        width: calc(100% + 47px);
        background-image: url('/assets/templates/img/contact-bg-bottom.svg');
        display: block;
        height: 341px;

        @media (max-width: 767px) {
            height: 200px;
        }

        @media(min-width: 1935px) {
            background-repeat: no-repeat;
            background-size: cover;
            width: 105vw;
        }
    }

    picture {
        position: relative;
        display: block;
        line-height: 0;

        &::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('/assets/templates/img/contact-banner-img-overlay.svg');
            z-index: 1;
        }
    }

    .overlay-img {
        position: absolute;
        z-index: 0;
        bottom: 133px;
    }
}

.inner-hero-banner.montage-contact-banner .contains-tittleText-lft h1 {
    font-size: 4rem;
    font-weight: bold;
    color: #fff;
}


.montage-contact-banner .breadcrumb ul li, .montage-contact-banner .breadcrumb ul li a {
    color: #FFFFFF67;
}

.montage-contact-banner .breadcrumb ul li a:hover {
    color: #fff;
}

.montage-contact-banner .call-toAction-inner-rht {
    width: 100%;
    padding: 0 0 0 0;
}

.montage-contact-banner .call-toAction-btn-block {
    max-width: 550px;
}

.montage-contact-banner .call-toAction-btn-block a:last-child {
    background: #FFFFFF;
    color: #1D1D1B;
}

.montage-contact-banner .call-toAction-btn-block a:last-child i {
    color: #D71019;
}


.montage-contact-banner .call-toAction-inner {
    max-width: 460px;
    margin: 32px 0 0;
}

.montage-contact-banner .call-toAction-address h2 {
    color: #FFFFFF;
    font-size: 1.125rem;
    font-weight: bold;
    margin: 0 0 7px;
}

.montage-contact-banner .call-toAction-address p {
    color: #FFFFFF;
    font-size: 1rem;
    font-weight: normal;
    margin: 8px 0;
}

.montage-contact-banner .call-toAction-address p a {
    color: #FFFFFF;
    text-decoration: none;
}

.montage-contact-banner .call-toAction-address p a:hover {
    text-decoration: underline;
}

.montage-contact-banner .call-toAction-address {
    border-top: 1px solid rgba(112, 112, 112, 0.25);
    padding: 30px 0 0;
    margin: 40px 0 0;
}

.montage-contact-banner .call-toAction-address-top-inner {
    justify-content: space-between;
    column-gap: 5%;
    row-gap: 15px;
}

.montage-contact-banner .call-toAction-address-bottom {
    margin: 25px 0 0;

    @media (max-width: 767px) {
        margin-bottom: 30px !important;
    }
}

.inner-hero-banner.montage-contact-banner .contains-tittleText-inner {
    padding: 25px 0 0px;
}


.inner-hero-banner.montage-contact-banner .contains-tittleText-rht {
    /* padding: 0px; */
}

.montage-contact-banner .form-container button.global-btn {
    margin: 0;
}


.montage-contact-banner .form-container {

    padding: 60px 70px 120px;
    height: 100%;

}


.contact-banner-skew {
    width: 100%;
    height: 175px;
    position: absolute;

    left: 0;
    bottom: -72px;
    background: url('../img/contact-skew-banner-bg.png') no-repeat;
    background-size: 100% 100%;
    z-index: 1;
}

.montage-body-banner-sec .img-fluid {
    width: 100%;
    clip-path: polygon(0% 12%, 100% 0%, 100% 100%, 0% 100%);
    max-width: 100%;
    height: auto;
}

.montage-body-banner-sec .container {
    position: relative;
}

section.montage-body-banner-sec {
    /* margin: -20px 0 0; */
    position: relative;
    z-index: 1;
    padding: 0 0 150px;

    img {
        max-width: 100%;
        height: auto;
    }
}


/* montage-contact css end */


.montage-diensten-gallery .global-btn {
    margin: 60px 0 0;
}


/* css start montage-offerte-aanvragen  */

.montage-offerte-aanvragen-banner .call-toAction-inner-lft {
    width: 100%;
    border: none;
}


.montage-offerte-aanvragen-banner .call-toAction-parg h3 {
    font-size: 1.125rem;
    font-weight: bold;
    color: #FFFFFFCC;
}

.montage-contact-banner.montage-offerte-aanvragen-banner .contains-tittleText-lft p {
    font-size: 1rem;
    color: #FFFFFFCC;
    font-weight: normal;
    margin: 27px 0 0;
    line-height: 2;
    max-width: 473px;
}

.montage-contact-banner.montage-offerte-aanvragen-banner .contains-tittleText-lft .call-toAction-inner p {
    line-height: 1.5;
    max-width: 100%;
}

.montage-contact-banner.montage-offerte-aanvragen-banner {
    background: #D71019;
    padding: 100px 0;
    margin: 0 0 32px;

    @media (max-width: 1199px) {
        padding-top: 120px;
        padding-bottom: 50px;
    }
}

.montage-contact-banner.montage-offerte-aanvragen-banner:after {
    display: none;
}

.montage-offerte-aanvragen-banner .contact-banner-skew {
    display: none;
}


.montage-contact-banner.montage-offerte-aanvragen-banner .call-toAction-btn-block {
    max-width: 550px;
    border-top: 1px solid #bb0e15;
    padding: 20px 0 0;
    margin: 20px 0 0;
}


.montage-offerte-aanvragen-banner .call-toAction-img {
    background: #cb0e17;

    picture {
        &::after {
            display: none;
        }
    }

    .live {
        border-color: #D71019;
        background-color: #D71019;
        right: -12px;
        bottom: -9px;
    }
}

.montage-contact-banner.montage-offerte-aanvragen-banner .call-toAction-inner {

    margin: 55px 0 0;
}

.form-group-inner-item {
    position: relative;
    width: 49%;

}

.form-container .form-group.d-flex {
    column-gap: 2%;
    row-gap: 11px;
}

.form-container.montage-offerte-aanvragen-form {
    form {
        display: grid;
        grid-template-columns: 1fr 1fr;
        column-gap: 24px;
    }

    .custom-filters-style,
    .file-upload,
    .submit-contact-btn {
        grid-column: 1/2 span;
    }

    .form-group {
        grid-column: 1/2 span;

        &:has(input[name="huisnummer"]) {
            grid-column: 1;

            @media (max-width: 1199px) {
                grid-column: 1/2 span;
            }

            + .form-group {
                grid-column: 2;

                @media (max-width: 1199px) {
                    grid-column: 1/2 span;
                }
            }
        }
    }
}

.form-container.montage-offerte-aanvragen-form input, .form-container.montage-offerte-aanvragen-form textarea {
    border-radius: 10px;
}

.montage-contact-banner.montage-offerte-aanvragen-banner .form-container {
    padding: 60px 70px;
    height: 100%;
}

.montage-offerte-aanvragen-form .submit-contact-btn {

    margin: 36px 0 0;
}

.custom-filters-style .custom-filter-inner {
    font-size: 1.125rem;
    font-weight: 400;
}

.form-container .form-group .custom-filter-inner {
    margin-left: 0;
}

.form-container.montage-offerte-aanvragen-form .file-upload {
    margin: 0 0 22px;
}

.form-container.montage-offerte-aanvragen-form .file-upload {
    border-radius: 10px;
}


.form-container.montage-offerte-aanvragen-form .custom-filters-style {
    column-gap: 0px;
    row-gap: 0px;
    /* margin: 28px 0 40px; */
    margin: -20px 0 29px;

}

/* css end montage-offerte-aanvragen  */


/* montage-magazine css start */

.montage-magazine-banner-lft {
    width: 50%;
}

.montage-magazine-banner-lft .img-fluid {
    width: 100%;
    display: block;
    height: 100%;
    object-fit: cover;
}

.montage-magazine-banner-rht {
    width: 50%;
    background: #D71019;
    padding: 35px;
    position: relative;

    flex-direction: column;
    justify-content: center;
}

.montage-magazine-banner-rht:after {
    position: absolute;
    top: 0;
    left: -56px;
    content: "";
    width: 120px;
    height: 100%;
    background: #D71019;
    clip-path: polygon(4% 0, 100% 0, 100% 100%, 9% 100%);

    @media (max-width: 767px) {
        display: none;
    }
}

.montage-magazine-banner-transparent {
    position: absolute;
    top: 0;
    left: -115px;
    width: 83px;
    height: 100%;
    background: rgba(215, 16, 25, 0.6);
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 64% 100%);

    @media (max-width: 767px) {
        top: -405px;
        left: 0;
        rotate: 90deg;
    }
}


.montage-magazine-banner .breadcrumb .container {
    position: relative;
    padding: 0;
}

.montage-magazine-banner-rht-inner {
    position: relative;
    z-index: 1;
    max-width: 630px;
    padding-top: 129px;

    @media (max-width: 767px) {
        padding-top: 0;
    }
}

.montage-magazine-banner-rht-inner h1 {
    font-size: 3rem;
    font-weight: bold;
    color: #fff;
    margin: 0 0 22px;

}

.montage-magazine-banner-rht-inner p {
    color: #FFFFFFCC;
    font-size: 1rem;
    font-weight: normal;
    line-height: 1.7;
    margin: 15px 0 0;
    opacity: 0.8;

}

.form-container.montage-magazine-form button.global-btn {
    margin: 8px 0 0;
}

.form-container.montage-magazine-form {
    margin: 63px 0 0;
}

.montage-magazine-banner {
    margin: 0 0 80px;
    display: flex;
    justify-content: space-between;
    max-width: unset !important;

    @media (max-width: 767px) {
        flex-direction: column;
    }

    .montage-magazine-banner-lft {
        width: 50%;
        flex: 1 1 50%;

        @media (max-width: 1600px) {
            width: 50%;
            flex: 1 1 50%;
        }

        @media (max-width: 767px) {
            width: 100%;
        }

        img {
            height: 100%;
            object-fit: cover;
            width: 100%;
        }
    }
}

/* montage-magazine css end */


/* montage-algemene-voorwaarden css start */

.montage-algemene-voorwaarden-banner .scrollTo-down {
    z-index: 11;
    bottom: 56px;
}

.montage-contact-banner.montage-algemene-voorwaarden-banner:after {
    /* background: linear-gradient(to right, rgba(215, 16, 25, 1) 0%, rgba(215, 16, 25, 1) 52%, rgba(215, 16, 25, 0.5) 100%); */
}


.montage-algemene-voorwaarden-banner .contains-tittleText-lft {
    width: 100%;
}

.montage-contact-banner.montage-algemene-voorwaarden-banner {
    /* background: url('../img/montage-algemene-voorwaarden-banner-img.jpg') no-repeat; */
    background-position: right 70%;
    background-size: 50%;
    padding: 100px 0 200px;
}


.montage-algemene-voorwaarden-content {
    padding: 10px 0 226px;
}


.montage-algemene-voorwaarden-content-lft {
    width: 60%;
}

.montage-algemene-voorwaarden-content-rht {
    width: 40%;
}


.montage-algemene-voorwaarden-content-rht .contact-formSidebar-lft {
    width: 100%;
    max-width: 460px;
    margin-left: auto;
}

.montage-algemene-voorwaarden-content-rht .call-toAction-parg p {
    margin: 8px 0 0;
}

/* montage-algemene-voorwaarden css end */


.tittle-box-number-sec .global-btn.global-btn-black {

    margin: 60px 0 0;
}

.montage-werkwijze-gallery-item-rht {
    padding: 42px;
    padding-right: 0;

}

.f-direction-reverse .montage-werkwijze-gallery-item-rht {
    padding-right: 42px;
    padding-left: 0;
}

.overview-three-subpages-btn {
    display: none;
}

.quotation-slider-sec .left-column {
    @media (max-width: 1599px) {
        flex: inherit;
        width: 53%;
        padding: 0 52px 0 0;
        max-height: 670px;
        overflow: hidden;
    }
}


@media (min-width: 1600px) {

    /* .banner-description-content {
        margin: 0 0 132px;
    } */
    .banner-media video, .banner-media iframe {
        height: 1100px;
    }

    .main-nav li, .main-nav .sub-menu {
        padding: 0 23.5px;
    }

    .header-contact {
        padding: 0 0 0 42px;
        column-gap: 12px;

        .language-switch {
            margin-left: 30px;
        }
    }

    .main-nav {
        column-gap: 20px;
    }

    .header-contact .global-btn, .banner-description-links .global-btn {
        max-width: 232px;
        min-width: 232px;
        max-height: 54px;
        min-height: 54px;
        padding: 17px 17px 12px 55px;
    }

    .header-contact .global-btn .arrow-btn, .banner-description-links .global-btn .arrow-btn {
        width: 38px;
        height: 38px;
        top: 8px;
    }

    .header-contact .global-btn .arrow-btn img, .banner-description-links .global-btn .arrow-btn img {
        margin: 11px;
    }

    .header-contact .global-btn:hover .arrow-btn, .banner-description-links .global-btn:hover .arrow-btn {
        width: 160%;
        height: 127%;
        left: 0;
        top: -8px;
        border-radius: 0px;
    }

    .header-contact .global-btn:hover .arrow-btn img, .banner-description-links .global-btn:hover .arrow-btn img {
        margin: 27px 0 0 17px;
    }

    .header-container-inner {
        max-width: 1730px;
        padding: 22px 0px;
    }

    .text-sidebar-lnkBox {
        max-width: 551px;
        margin-left: auto;
    }

    .header-contact {
        border-left: none;
        position: relative;
    }

    .header-contact:after {
        position: absolute;
        content: "";
        width: 1px;
        height: 36px;
        left: 0;
        top: 7px;
        background: #dadada;

    }

    .banner-description {
        bottom: 26%;
        left: 210px;
    }

    .banner-description-links {

        margin: 24px 0 0;
    }

    .banner-description h1 {
        line-height: 1.4;
    }


    .banner-description h1 .f-subTittle-text {
        background-position: left 63px;
    }

    .text-sidebar-sec {
        margin: -196px 0 0;
    }

    .text-sidebar-rhtContent {

        padding: 54px 52px 51px 69px;

    }

    .text-sidebar-rhtContent ul a i {
        font-size: 24px;
        margin: 0 7px 0 0;
    }

    .text-sidebar-rhtContent ul a {
        padding: 18px 4px 25px;
    }

    .text-sidebar-rhtContent ul a:hover {
        padding: 18px 25px 25px;
    }

    .text-sidebar-rhtBtn {
        padding: 6px 0 15px 3px;
    }

    .text-sidebar-rhtContent .global-btn {
        min-width: 252px;
        max-width: 252px;
        padding: 15px 17px 12px 58px;
    }

    .text-sidebar-content {
        padding: 0 0 110px;
    }

    .text-sidebar-content p {
        line-height: 2.333;
    }

    .overview-three-subpages-sec {
        margin: 79px 0 0;
        padding: 155px 0 0;
    }

    .overview-three-subpages-sec p {
        margin: 27px 0 0;
    }


    .gallery-item .overlay h3 {
        padding: 29px;
    }

    .gallery-item:first-child .overlay h3 {
        padding: 52px 58px 54px 58px;
    }

    .overview-three-subpages-sec .gallery {
        gap: inherit;
        column-gap: 23px;
        row-gap: 23px;
    }

    /* .overview-three-subpages-sec .gallery-overlay-bg, .overview-three-subpages-sec .gallery-item img{
        height:96%;
    }


    .overview-three-subpages-sec .gallery-item:first-child .gallery-overlay-bg, .overview-three-subpages-sec .gallery-item:first-child img{
        height:97%;
    } */
    /*.overview-three-subpages-sec .gallery-item {*/
    /*    height: 96%;*/
    /*}*/
    /*.overview-three-subpages-sec .gallery-item:first-child {*/
    /*    height: 100%;*/
    /*}*/
    .overview-three-subpages-sec .gallery-item:not(:hover,:focus) .icon {
        top: 48px;
        right: 59px;
    }

    .overview-three-subpages-sec .gallery-item:first-child .icon {
        top: 75px;
        right: 86px;
    }

    .overview-three-subpages-sec .gallery-item:first-child .icon {
        width: 155px;
    }

    .overview-three-subpages-sec .gallery-item:not(:first-child) .icon img {
        position: relative;
        top: 0px;
        left: 5px;
    }

    .overview-three-subpages-sec .gallery-item:last-child .icon img {
        top: -3px;
    }

    .overview-three-subpages-sec .gallery-item:first-child .icon img {
        margin: 14px 15px;
        height: 58%;
    }

    .overview-three-subpages-sec .gallery-item .icon img {
        /* height: 50%; */
    }

    .call-toAction-btn-block a {
        padding: 15px 19px;
        min-height: 50px;
        /* max-height: 50px; */
        min-width: 170px;
        /* max-width: 170px; */
    }

    .call-toAction-btn-block a.call-toAction-email {
        min-width: 252px;
        max-width: 254px;

    }

    .call-toAction-sec {
        padding: 155px 0 0;

        @media (max-width: 1199px) {
            padding: 60px 0 0;
        }
    }

    .call-toAction-btn-block {
        margin: 0;
        gap: 16px;
        gap: inherit;
        column-gap: 11px;
        row-gap: 19px;
        margin: 0 0 0 -2px;
    }

    .call-toAction-img {
        width: 27%;

    }

    .call-toAction-parg {
        width: 100%;
        padding: 0 0 0 38px;
        margin: 0 0 0;
        max-width: 286px;
    }

    .call-toAction-parg p {
        margin: 15px 0 0;
    }

    .call-toAction-img img {
        width: 94%;
        /* height: 119px; */
        margin: 7px 0px 0 0;
    }

    .montage-offerte-aanvragen-banner .call-toAction-img img {
        width: 100%;
        /* height: 119px; */
        margin: 0px 0px 0 0;
    }

    .call-toAction-img .live {
        right: -1px;
        bottom: -2px;
    }

    .contains-tittleText-sec {
        margin: 163px 0 0;
        padding: 156px 0 0;
    }

    .contains-tittleText-lft h2 {
        line-height: 1.3;
    }

    .contains-tittleText-lft {
        width: 53%;
    }

    .contains-tittleText-rht {
        width: 47%;
        padding: 76px 0 0 38px;
    }

    .quotation-slider-sec .left-column {
        flex: inherit;
        width: 53%;
        padding: 0 52px 0 0;
        max-height: 670px;
        overflow: hidden;
    }

    .quotation-slider-sec .right-column {
        flex: inherit;
        width: 47%;
        padding: 20px 20px 20px 40px;
        justify-content: inherit;
    }

    .contains-tittleText-rht p {
        /* line-height: 2.33; */
    }

    .quotation-slider-sec {
        margin: 184px 0 0;
        padding: 149px 0 160px;
    }

    .quotation-slider-sec .titles {
        gap: 27px;
        margin: 35px 0 0;
    }

    .quotation-slider-sec .quote {
        padding: 72px 0 0;
        line-height: 1.7;
    }

    /* .quotation-slider-sec .slides{
        height:280%;
    } */
    /* project slider start 18-02-25 */
    .project-slider-sec {
        padding: 102px 0 125px;
    }

    .project-slider-sec:after {
        width: 42%;
    }

    .project-slider .slide {
        left: 0;
        margin: 0;
    }

    .project-slider .slick-arrow {
        top: 44%;
    }

    .project-slider .slick-prev {
        left: -32%;
    }

    .project-slider .slick-next {
        left: -25%;
    }

    .project-slider-block .text-section p {
        max-width: 430px;
    }

    /* project slider end 18-02-25 */
    .project-slider-sec {
        padding: 102px 0 185px;
    }


    .footer-top {
        padding: 106px 0 0;
    }

    .footer-address-book {
        margin: 85px 0 0;
        padding: 31px 191px 32px 28px;
    }

    .footer-address-box {
        margin: 0px 0 48px;
    }

    .footer-address-book > img {
        position: absolute;
        top: -16px;
        right: 0;
        max-width: 219px;
        /* height: 100%; */
    }

    .footer-top-item {
        width: 18.5%;

        &.footer-menu-itemM3 {
            width: 19%;
        }

        &.footer-address-item {
            width: 18%;
        }
    }

    .footer-top-item.footer-address-item2 {
        width: 44.4%;
        padding: 0 0 0 184px;
    }

    .footer-bottom {
        margin: 46px 0 0;
        padding: 46px 0 28px;
    }

    .footer-menu-item .footer-menu2 {
        margin: 37px 0 0;
    }

    .footer-bottom-lft {
        width: 48%;
    }

    .footer-bottom-rht {
        width: 51.6%;
    }

    .footer-bottom-rht-btn a {
        padding: 5px 30px 5px 9px;
    }

    .inner-hero-banner .banner-media img {
        height: 823px;
    }

    .inner-hero-banner .banner-media img {
        clip-path: polygon(0 0, 100% 0, 100% 95%, 0 76%);
    }

    .inner-hero-banner .scrollTo-down {
        bottom: -12px;
    }

    .scrollTo-down {
        right: 3.4%;
        bottom: -46px;
    }

    .breadcrumb ul li a i {
        font-size: 19px;
    }

    .inner-hero-banner .montage-over-ons-twoCol .contains-tittleText-lft h1 {
        max-width: 640px;
    }

    .inner-hero-banner .montage-over-ons-twoCol .contains-tittleText-rht p {

        margin: 18px 0 0;
        line-height: 2.3;
    }

    .scroll-horizontally-slide-sec .slide-scroll-sec {
        margin: 90px 0 0;
    }


    .global-btn.global-btn-black {
        background: #d9d9d90a;
        max-width: 256px;
        min-width: 256px;
        min-height: 54px;
        max-height: 54px;
    }

    .montage-werken-bij-detail-banner .global-btn.global-btn-black {
        min-width: inherit;
        max-width: inherit;
        margin: -9px;
    }

    .global-btn.global-btn-black {
        padding: 16px 17px 12px 60px;
    }

    .global-btn.global-btn-black .arrow-btn {
        background: #1D1D1B;
        width: 38px;
        height: 38px;
    }

    .global-btn.global-btn-black .arrow-btn img {
        margin: 12px;
    }

    .global-btn.global-btn-black:hover .arrow-btn {
        width: 160%;
        height: 127%;
    }

    .global-btn.global-btn-black:hover .arrow-btn img {
        margin: 27px 0 0 18px;
    }

    .montage-group-sec .call-toAction-sec {
        padding: 130px 0 0;
    }

    .usp-list-sec .container {
        max-width: 1264px;
    }

    .usp-list-sec .tabs-tittle {
        padding: 0px 0 37px;
    }

    .usp-list-sec .tab {
        padding: 52px 0px 26px;
    }

    .usp-list-sec {
        padding: 150px 0 102px;
    }


    .video-lightBox-sec video, .video-lightBox-sec iframe {
        width: 100%;
        max-height: 999px;
        object-fit: cover;
        height: 100vh;
    }


    .tittle-box-number-sec {
        padding: 51px 0 150px;
    }


    .team-gallery-img {
        padding: 200px 0 0;
    }


    .team-gallery-sec {
        padding: 180px 0 275px;
    }

    .tittle-box-number-inner .stats {
        padding: 0 0 0 120px;
    }

    .montage-wer-details-number-sec .tittle-box-number-inner .stats {
        padding: 0 0 0 120px;
        position: relative;
        top: 0px;
    }

    .w-custom h1 {
        max-width: 530px;
    }

    .inner-hero-banner .montage-werken-bi-two-colText .contains-tittleText-rht {
        padding: 27px 0 0 38px;
    }

    .montage-werken-bi-two-colText .banner-add {
        margin-top: 122px;
    }


    .inner-hero-banner .contains-tittleText-inner.montage-werken-bi-two-colText {
        padding: 25px 0 80px;
    }

    .vacature-container-sec .vacature {
        padding: 63px 0;
    }

    .montage-werken-bij-detail-banner .w-custom h1 {
        max-width: 456px;
    }

    .day-slider-sec .slick-prev, .day-slider-sec .slick-next {
        top: 36%;
    }

    .day-slider-sec .slick-prev {
        left: 72%;
    }

    .day-slider-sec .slick-next {
        left: 86%;
    }

    .tittle-box-number-sec.montage-wer-details-number-sec {
        padding: 162px 0 190px;
    }

    .tittle-box-number-sec .global-btn.global-btn-black {
        min-width: inherit;
        max-width: inherit;
    }

    .montage-werkwijze-banner-text-sec {
        padding: 259px 0 107px;
    }

    .projecten-banner-filters-sec {
        padding: 259px 0 210px;
    }

    .projecten-banner-filters-sec .contains-tittleText-lft {
        width: 45%;
    }


    .projecten-banner-filters-sec .contains-tittleText-rht {
        width: 55%;
    }


    .montage-werkwijze-banner-text-sec .contains-tittleText-lft {
        width: 55%;
    }

    .montage-werkwijze-banner-text-sec .contains-tittleText-rht {
        width: 45%;
    }

    .projecten-banner-filters-sec.inner-hero-banner .contains-tittleText-rht {
        padding: 13px 0 0 34px;
    }


    .projecten-gallery-list {
        column-gap: 74px;
        row-gap: 74px;
    }


    .projecten-gallery-sec {
        padding: 116px 0;
    }

    .projecten-gallery-list .projecten-gallery-item {
        height: 498px;
        overflow: hidden;
    }

    .projecten-gallery-item-inner {
        /* height: 100%; */
    }

    .projecten-gallery-name {
        padding: 54px 55px 41px 59px;
    }

    .projecten-gallery-list .projecten-gallery-item:nth-child(even) {
        /* padding: 0; */
        top: 70px;
    }

    .projecten-gallery-sec .pagination-list .pagination-item .pagination-link {
        padding: 14px 24px;
    }


    .projecten-gallery-sec .custom-pagination {
        margin: 130px 0 0;
    }

    .contact-formSidebar-sec.projecten-formSidebar-sec {
        padding: 125px 0 195px;
    }


    .contact-formSidebar-sec.projecten-formSidebar-sec .contact-formSidebar-lft {
        width: 50%;

    }

    .contact-formSidebar-sec.projecten-formSidebar-sec .contact-formSidebar-rht {
        width: 50%;
    }

    .contact-formSidebar-sec.projecten-formSidebar-sec .contact-formSidebar-rht .form-container {
        padding: 68px 0px 68px 126px;
    }

    .montage-project-detail-banner .breadcrumb {
        margin: -49px 0 11px;
    }

    .inner-hero-banner .contains-tittleText-inner.tittleText-motage-projectDetails {
        padding: 20px 0 40px;
        /* border-bottom: 1px; */
    }

    .montage-project-type {
        margin: 67px 0 0;
    }

    .montage-project-type {
        display: flex;
        flex-wrap: wrap;
        gap: 102px;
    }


    .montage-project-details-contentTwo-sec {

        padding: 126px 0 0;
    }

    .montage-project-details-contentTwo-lft p {
        line-height: 2;
    }

    .montage-project-details-contentTwo-rht p {
        line-height: 2;
        margin: 0 0 -16px;
    }

    .montage-project-detail-gallery-sec {
        padding: 195px 0 0;
    }

    .montage-werken-bij-detail-banner .breadcrumb {
        margin: 25px 0 11px;
    }

    .inner-hero-banner.montage-werken-bij-detail-banner .contains-tittleText-inner {
        padding: 22px 0 170px;
    }

    .montage-project-detail-banner .scrollTo-down {
        right: 3.4%;
        bottom: 16px;
    }

    .related-projects-sec .projecten-gallery-item-inner {
        height: 92%;
    }

    .related-projects-btn-tittle {
        margin: 25px 0 79px;
    }

    .montage-group-project-detail-sec .contact-formSidebar-sec {
        padding: 104px 0 105px;
    }


    .inner-hero-banner.montage-werkwijze-banner-text-sec .contains-tittleText-inner {
        padding: 30px 0 100px;
    }

    .montage-project-details-contentTwo-sec.montage-werkwijze-contentTwo-sec {
        padding: 147px 0 0;
    }

    .montage-werkwijze-contentTwo-sec .montage-project-details-contentTwo-lft {
        width: 50%;
    }

    .montage-werkwijze-contentTwo-sec .montage-project-details-contentTwo-rht {
        width: 46%;
        padding-left: 40px;
        padding-top: 72px;
    }

    .montage-werkwijze-contentTwo-sec .montage-project-details-contentTwo-rht .global-btn.global-btn-right {
        margin: 56px 0 0;
        padding: 15px 42px 12px 50px;
    }

    .montage-werkwijze-gallery-sec {
        margin: 232px 0 0;
    }


    .montage-werkwijze-gallery-item-rht {
        padding: 57px 70px 75px 98px;
    }

    .montage-werkwijze-gallery-item .global-btn-black {
        margin: 60px 0 0;
    }

    .montage-werkwijze-gallery-inner .global-btn.global-btn-black {
        min-width: 230px;
        max-width: 230px;
    }

    .f-direction-reverse .montage-werkwijze-gallery-item-rht {
        padding: 78px 70px 75px 1px;
    }

    .montage-werkwijze-gallery-sec {
        padding: 162px 0 149px;
    }

    .contact-formSidebar-sec.contact-formSidebar-bt-lgPadding {
        padding-bottom: 256px;
    }

    .montage-toepassingen-banner .banner-media .img-fluid {
        object-position: 0px -115px;
    }


    .montage-tittle-custom-width {

    }

    .inner-hero-banner .montage-toepassingen-tittleText-inner .contains-tittleText-lft h1 {
        line-height: 1.3;
    }

    .montage-toepassingen-tittleText-inner .contains-tittleText-lft p {
        margin: 42px 0 0;
    }

    .inner-hero-banner.montage-toepassingen-banner .contains-tittleText-rht {
        padding: 30px 0 0 25px;
    }

    .montage-toepassingen-tittleText-inner .call-toAction-inner {
        max-width: 490px;
    }

    .montage-toepassingen-banner .call-toAction-parg {
        padding: 18px 0 0 35px;
    }

    .montage-toepassingen-banner .call-toAction-img {
        width: 23%;
    }

    .montage-werkwijze-gallery-sec.montage-toepassingen-gallery-sec {
        margin: 166px 0 0;
        padding: 153px 0 82px;
    }

    .montage-toepassingen-gallery-sec .montage-werkwijze-gallery-item-rht {
        padding: 43px 2px 75px 144px;
    }


    .montage-toepassingen-gallery-sec .gallery-item {
        margin: 22px 0 0;
    }

    .montage-toepassingen-gallery-sec .gallery-item .icon .text {
        padding: 0 24px 0;
    }

    .montage-toepassingen-gallery-sec .gallery-item .icon {
        padding: 17px 78px 12px 23px;
        height: 60px;
    }

    .montage-toepassingen-gallery-sec .montage-werkwijze-gallery-item p {
        line-height: 1.9;
    }

    .montage-toepassingen-gallery-sec .gallery-item .icon .icon-arrow {
        width: 80px;
        height: 80px;
        line-height: 80px;
    }

    .montage-toepassingen-gallery-sec .f-direction-reverse .montage-werkwijze-gallery-item-rht {
        padding: 34px 113px 75px 0px;
    }

    .montage-toepassingen-gallery-sec .f-direction-reverse .gallery-item {
        margin: 12px 0 0;
    }

    .contact-formSidebar-skew-bg:after {
        display: none;
    }

    .montage-toepassingen-banner .scrollTo-down {
        right: 3.4%;
        bottom: 15px;
    }

    .contact-formSidebar-sec.contact-formSidebar-skew-bg {
        clip-path: polygon(0 0, 100% 15%, 100% 100%, 0% 100%);
    }


    .contact-formSidebar-sec.contact-formSidebar-skew-bg {
        padding: 193px 0 273px;
    }

    .contact-accordion {
        padding: 70px 0 0 30px;
    }

    .contact-accordion .accordion-content p {
        padding: 7px 40px 0 0;
    }

    .contact-accordion .accordion-item {
        padding: 9px 0 14px;
    }


    /* .montage-toepassingen-detail-banner .banner-media .img-fluid {
        object-position: 0px -115px;
    }

    .montage-toepassingen-detail-banner .contains-tittleText-lft {
        width: 46%;
    }

    .montage-toepassingen-detail-banner .contains-tittleText-rht {
        width: 54%;

    }

    .montage-toepassingen-detail-banner .montage-toepassingen-tittleText-inner .contains-tittleText-lft p{
        line-height:2.2;
    } */
    .montage-toepassingen-detail-banner .montage-toepassingen-tittleText-inner .contains-tittleText-lft p {
        margin: 42px 80px 0 0;
    }


    .image-block-animate-sec {
        padding: 144px 0 0;
    }

    .contains-tittleText-sec.montage-toepassingen-detail-tittleText-sec {
        margin: 0;
        padding: 140px 0 0;
    }


    .montage-toepassingen-detail-tittleText-sec .contains-tittleText-lft {
        width: 50%;
    }

    .montage-toepassingen-detail-tittleText-sec .contains-tittleText-rht {
        width: 50%;
        padding: 80px 0 0 22px;
    }

    .montage-toepassingen-detail-tittleText-sec .contains-tittleText-rht p {
        margin: 36px 0 0;
    }

    .montage-toepassingen-detail-tittleText-sec .global-btn.global-btn-black {
        min-width: inherit;
        max-width: inherit;
        margin: 0 11px 0 0;
    }

    .montage-toepassingen-detail-tittleText-sec .contains-tittleText-lft h2 {
        margin-bottom: 28px;
    }

    .project-slider-sec.montage-toepassingen-detail-project-slider-sec {
        margin: 138px 0 0;
        padding: 104px 0 50px;
    }

    .montage-toepassingen-detail-project-slider-sec .project-slider-block .text-section h2 {
        margin-bottom: 86px;
    }

    .contact-formSidebar-sec.montage-toepassingen-detail-contact-form-sec {
        padding: 166px 0 252px;

    }

    .contact-formSidebar-sec.montage-toepassingen-detail-contact-form-sec .contact-formSidebar-text {
        max-width: 100%;
    }

    .contact-formSidebar-sec.montage-toepassingen-detail-contact-form-sec .contact-formSidebar-lft {
        width: 46%;
        padding: 66px 0 0;
    }

    .contact-formSidebar-sec.montage-toepassingen-detail-contact-form-sec .contact-formSidebar-rht {
        width: 54%;
    }

    .contact-formSidebar-sec.montage-toepassingen-detail-contact-form-sec .contact-formSidebar-text p {
        max-width: 492px;
    }


    .montage-diensten-banner .montage-toepassingen-tittleText-inner .contains-tittleText-lft p {
        max-width: 626px;
    }

    .montage-werkwijze-gallery-sec {
        margin: 156px 0 0;
    }

    .montage-werkwijze-gallery-sec.montage-diensten-gallery {
        margin: 156px 0 0;
    }


    .montage-werkwijze-gallery-sec.montage-diensten-gallery {
        padding: 152px 0 82px;

    }

    .montage-diensten-gallery .montage-werkwijze-gallery-item-rht {
        padding: 58px 0px 75px 144px;
    }

    .montage-diensten-gallery .montage-werkwijze-gallery-item p {
        line-height: 1.9;
    }

    .montage-diensten-gallery .global-btn {
        margin: 76px 0 0;
    }

    .montage-diensten-gallery .global-btn {
        padding: 16px 45px 14px 65px;
    }

    .montage-diensten-gallery .f-direction-reverse .montage-werkwijze-gallery-item-rht {
        padding: 60px 106px 75px 0px;
    }


    .montage-dienst-detail-banner .montage-toepassingen-tittleText-inner .contains-tittleText-lft p {
        max-width: 630px;
        line-height: 2.2;
    }


    .contains-tittleText-sec.montage-toepassingen-detail-tittleText-sec.montage-dienst-detail-tittleText {
        margin: 0;
        padding: 133px 0 0;
    }


    .montage-contact-banner {
        padding: 260px 0 233px;
    }

    .montage-contact-banner .call-toAction-address {
        margin: 56px 0 0;
        padding: 40px 0 0;
    }


    .montage-contact-banner .contains-tittleText-lft {
        width: 50%;
        /* padding-top:28px; */
    }

    .montage-contact-banner .contains-tittleText-rht {
        width: 50%;
        padding: 44px 0 0;
    }

    .montage-contact-banner .form-container {
        max-width: 712px;
    }

    .montage-contact-banner .form-container {
        padding: 84px 82px 120px;
        height: 110%;
        margin-top: -34px;
    }


    .montage-body-banner-sec.montage-contact-body-banner {
        padding: 6px 0 24px;
        margin-top: -119px;


        picture {
            display: block;
            clip-path: polygon(0% 13%, 100% 0%, 100% 100%, 0% 100%);
        }
    }

    .call-toAction-address-top-rht {
        margin: 0 65px 0 0;
    }


    .contact-formSidebar-sec.contact-formSidebar-contact-page {
        padding: 80px 0 258px;
    }


    .contact-formSidebar-contact-page .contact-accordion .accordion {
        max-width: 680px;
    }


    .montage-contact-banner.montage-offerte-aanvragen-banner {
        padding: 236px 0 125px;

        .breadcrumb {
            margin-bottom: 20px;
        }
    }

    .montage-contact-banner.montage-offerte-aanvragen-banner .call-toAction-inner {
        margin: 66px 0 0;
    }

    .montage-contact-banner.montage-offerte-aanvragen-banner .form-container {
        padding: 84px 80px 110px;
        margin-top: -48px;
    }

    .form-container.montage-offerte-aanvragen-form .custom-filters-style {

        margin: -20px -8px 29px;
    }


    .montage-magazine-banner-lft {
        width: 53%;
    }

    .montage-magazine-banner-rht {
        width: auto;
        flex: 1 1 auto;
        max-width: 890px;
    }

    .montage-magazine-banner-transparent {
        left: -142px;
    }

    .montage-magazine-banner-rht:after {
        left: -87px;
    }

    .montage-magazine-banner-lft .img-fluid {
        object-position: -26px -24px;
    }

    .montage-magazine-banner-rht-inner .breadcrumb {
        margin: -15px 0 16px;
    }

    .montage-magazine-banner-rht-inner h1 {
        margin: 26px 0 22px;
    }

    .montage-magazine-banner-rht-inner p {
        margin: 27px 0 0;
    }


    .montage-magazine-banner {
        /* height: 960px; */
        overflow: hidden;
        max-width: 1900px;
    }

    .montage-magazine-banner-rht-inner .form-container {
        padding: 64px 80px 60px;
    }

    .form-container.montage-magazine-form {
        clip-path: polygon(0 0, 100% 0%, 100% 96%, 2% 96%);
    }

    .form-container.montage-magazine-form button.global-btn {
        margin: 8px 0 0;
        position: relative;
        top: -13px;
        left: -6px;
    }

    .montage-contact-banner.montage-algemene-voorwaarden-banner .contains-tittleText-lft {
        width: 100%;
        /* padding-top: 28px; */
    }

    .montage-contact-banner.montage-algemene-voorwaarden-banner {
        background-size: 100%;
        padding: 251px 0 258px;
    }

    .contact-banner-skew {
        transform: skewy(-1deg);
    }

    .inner-hero-banner.montage-algemene-voorwaarden-banner .scrollTo-down {
        bottom: 86px;
        right: 3%;
    }

    .montage-algemene-voorwaarden-content-rht .contact-formSidebar-lft {
        padding: 9px 0 0px 26px;
    }

    .montage-algemene-voorwaarden-content-inner .contact-formSidebar-lft .call-toAction-inner {
        margin: 12px 0 0;
    }

    .montage-algemene-voorwaarden-content-rht .call-toAction-img {
        width: 25%;
    }

    .montage-algemene-voorwaarden-content-inner .contact-formSidebar-lft .call-toAction-inner-rht {
        width: 100%;
        padding: 8px 0 0;
    }


    .scroll-horizontally-slide-montage-over-ons .horizontal > div {
        padding: 0 15px;
        width: fit-content;
    }

    .inner-hero-banner.montage-over-ons-banner .scrollTo-down {
        bottom: -46px;
    }

    .footer-bottom ul {
        gap: 39px;
    }


    .team-gallery-text-rht {
        padding: 0 0 0 156px;
    }

    /* .team-gallery-img ul{
        gap:2.5%;
    } */
    .inner-hero-banner.montage-werken-bij-detail-banner .contains-tittleText-inner.montage-werken-bij-detail-padding {
        padding: 10px 0 10px;
    }

    .horizontal-scoll-lg-sec .horizontal > div {
        width: 38%;
    }

    .scroll-horizontally-slide-sec.horizontal-scoll-lg-sec {
        padding-bottom: 72px;
    }

    .montage-werken-bij-detail-conSidebar {
        padding: 150px 0 120px;
    }

    .usp-list-sec .content p {
        margin-top: 35px;
    }


    .inner-hero-banner.projecten-banner-filters-sec .scrollTo-down {
        bottom: 12px;
    }

    .montage-werkwijze-gallery-sec.montage-werkwijze-gallery-align {
        margin: 190px 0 0;
    }


}


@media (min-width: 1401px) and (max-width: 1440.98px) {

    .header-lft {
        width: 16%;
    }

    .header-rht {
        width: 84%;
    }

    .day-slide-item {
        min-height: 400px;
    }

}


@media (min-width: 1200px) {


    .inner-hero-banner .contains-tittleText-lft.projecten-banner-filters-tittle h1 {
        font-size: 5.25rem;
        position: relative;
        top: -7px;
    }


    /* .montage-werkwijze-gallery-align .montage-werkwijze-gallery-item-rht{
        padding-right:0px;
    } */


}


@media (min-width: 768px) {


    .banner-home .banner-description {
        width: 100%;
        top: 0;
        left: 0;
        height: 100%;
        bottom: 0;
        max-width: 100%;
    }

    .banner-home .banner-description-inner {
        max-width: var(--container-max-width);
        margin: 0 auto;
        padding-inline: var(--container-padding);
        display: flex;
        align-items: flex-end;
        height: 100%;
    }

    .banner-description-content {
        margin: 0 0 265px;
    }


}


@media (max-width: 1599px) {
    .footer:after {
        background-position: bottom 47% left 26%;
    }

    .project-slider .slick-prev, .project-slider .slick-next {
        top: 44%;
    }

    .project-slider .slick-prev {
        left: -30%;
    }

    .project-slider .slick-next {
        left: -22%;
    }

    .day-slider-sec .slick-prev, .day-slider-sec .slick-next {
        top: 41%;
    }


}


@media (max-width: 1400px) {

    .main-nav .main-nav-menu {
        width: auto;
    }

    .main-nav .header-contact {
        width: auto;
        padding: 2px 0 0 15px;
        column-gap: 15px;
    }

    .main-nav ul li a, .header-contact a:first-child, .global-btn .text-btn {
        font-size: 0.875rem;
    }

    .main-nav .sub-menu {
        padding: 0 9px;
    }

    .header-logo {
        max-width: 160px;
    }

    .header-lft {
        width: 15%;
    }

    .header-rht {
        width: 85%;
    }

    .banner-description h1 {
        font-size: 4.25rem;
        line-height: 1.4;
    }

    .banner-description h1 .f-subTittle-text {
        background-position: left 40px;
    }

    .project-slider .slick-next {
        left: -20%;
    }


    .quotation-slider-sec .title {
        width: 45%;
    }

    .footer-top ul li, .footer-top ul li a {
        font-size: 1.213rem;
    }

    .footer-address-box a {
        font-size: 1.6rem;
    }

    .footer-address-book p {
        font-size: 1.000rem;
    }

    .footer-address-book {
        padding: 20px 140px 20px 20px;
    }

    .footer-address-book > img {
        max-width: 165px;
        height: 147px;
        object-fit: cover;
    }

    .footer-address-book {
        height: auto;
    }

    .footer-address-book a {
        font-size: 1rem;
    }

    .footer-bottom ul {
        gap: 25px;
    }

    .footer-bottom ul li, .footer-bottom-rht-btn span {
        font-size: 0.88rem;
    }

    .team-gallery-item {
        width: 23%;
    }

    .montage-werkwijze-gallery-item h2 {
        font-size: 2.6rem;
        line-height: 1.3;
    }

    .montage-werkwijze-gallery-item.f-direction-reverse .number, .montage-werkwijze-gallery-item .number {
        font-size: 12.313rem;
        top: 8%;
    }


    .inner-hero-banner .montage-toepassingen-tittleText-inner .contains-tittleText-lft h1 {
        font-size: 3.4rem;
    }


    .banner-media img {
        height: 500px;
    }

    .contact-banner-skew {
        height: 100px;
        background-size: cover;
        bottom: 0;
    }

    .montage-contact-banner .call-toAction-address-bottom {
        margin: 25px 0 70px;
    }

    .transform-bg-montage-group {
        clip-path: polygon(0% 0%, 100% 6%, 100% 100%, 0 100%);
    }


    .montage-full-im-sec {
        min-height: 620px;
    }

    .montage-full-im-sec img {
        height: 620px;

    }

    .footer:after {
        background-image: none;
    }

    .footer-bottom {
        border-top: 1px solid #cb0f18;

    }

    .employees-speak-slider .slick-prev {
        left: 35%;
    }

    .employees-speak-slider .slick-next {
        right: inherit;
        left: 42%;
    }

    .day-slider-sec .slick-prev {
        left: -24%;
    }

    .day-slide-item {
        min-height: 500px;
        max-height: 500px;
        overflow-y: auto;
    }

}


@media (max-width: 1299px) {

    .header-lft {
        width: 12%;
    }

    .header-rht {
        width: 88%;
    }

    .header-logo {
        max-width: 120px;
    }

    .main-nav ul li a, .header-contact a:first-child, .global-btn .text-btn {
        font-size: 0.770rem;
    }

    .main-nav .sub-menu {
        padding: 0 7px;
    }

    .global-btn {
        padding: 15px 12px 11px 42px;
        font-size: 0.790rem;
    }

    .global-btn .arrow-btn, .submit-contact-btn .global-btn .arrow-btn {
        width: 30px;
        height: 30px;
    }

    .submit-contact-btn .global-btn .arrow-btn {
        top: 10px;

    }

    .submit-contact-btn .global-btn:hover .arrow-btn img {
        margin: 26px 0 0 15px;
    }

    .global-btn:hover .arrow-btn img {
        margin: 23px 0 0 15px;
    }

    .global-btn .arrow-btn img {
        margin: 8px;
    }

    .header-contact a img {
        max-width: 12px;
    }

    .main-nav li {
        padding: 0 7px;
    }

    .project-slider-block .text-section h2 {
        font-size: 3rem;
    }

    .footer-top ul li, .footer-top ul li a {
        font-size: 1rem;
    }

    .footer-address-box a {
        font-size: 1.5rem;
    }

    .footer-top h2 {
        font-size: 1.005rem;
    }

    .footer-bottom ul .copyRtext {
        padding: 0 15px 0 0;
    }

    .footer-bottom ul {
        gap: 16px;
    }

    .project-slider .caption h3, .quotation-slider-sec .title {
        font-size: 1.8rem;
    }

    .quotation-slider-sec .quote {
        font-size: 1.4rem;
    }

    .quotation-slider-sec .author {
        font-size: 1.215rem;
    }

    .footer-bottom ul li, .footer-bottom-rht-btn span {
        font-size: 1rem;
    }


    .tittle-box-number-inner .stats {
        padding: 0 0 0 20px;
    }

    .contains-tittleText-sec .global-btn {
        margin: 42px 0 0 0;
    }

    .tittle-box-number-inner .stat-card h2 {
        font-size: 1.8rem;
    }

    .tittle-box-number-inner p {
        line-height: 2.36;
    }

    .custom-filters-style .custom-filter-item {
        width: auto;
    }

    .montage-contact-banner .form-container {
        padding: 40px 30px 120px;
        height: 100%;
    }

    .call-toAction-address-top-lft {
        width: 100%;
    }

    .call-toAction-address-top-rht {
        width: 100%;
    }


    .montage-contact-banner.montage-offerte-aanvragen-banner .form-container {
        padding: 40px;

    }


    .montage-contact-banner.montage-algemene-voorwaarden-banner {
        background-size: 100%;
    }


    .team-gallery-inner-item .gallery-tittle h3 {
        font-size: 1.15rem;
    }

    .team-gallery-inner-item .gallery-tittle {
        padding: 19px;
    }

    .team-gallery-inner-item .gallery-tittle h4 {
        font-size: 1.10rem;
    }

    .team-gallery-img ul {
        row-gap: 22px;
    }


}

@media (max-width: 1199px) {

    .banner-description {
        left: 33px;
    }

    /*.day-slide-item {*/
    /*    min-height: 500px;*/
    /*    max-height: 500px;*/
    /*    overflow-y: auto;*/
    /*}*/


}


@media (max-width: 1099px) {

    .header-lft {
        width: 13%;
    }

    .header-rht {
        width: 87%;
    }

    .main-nav {
        column-gap: 8px;
    }

    .main-nav .main-nav-menu {
        width: auto;
    }

    .main-nav .header-contact {
        width: auto;
        padding: 2px 0 0 11px;
    }

    .header-container:after {
        bottom: -20px;
    }

    .header-logo {
        max-width: 100%;
    }

    .footer-top {
        gap: 25px;
    }

    .footer-top-item {
        width: 45%;
    }

    .footer-top-item.footer-address-item2 {

        padding: 0 0 0 0px;
    }

    .footer-transformBg-half {
        top: -71px;
    }

    .header-contact {
        row-gap: 8px;
    }

    .banner-description h1 {
        font-size: 3.05rem;
        line-height: 1.7;
    }

    .banner-description {
        left: 26px;
        bottom: 25%;
    }

    .banner-description h1 .f-subTittle-text {
        background-position: left 35px;
    }

    .text-sidebar-rhtContent h2 {
        font-size: 1.675rem;
        line-height: 1.3;
    }

    .text-sidebar-rhtContent {
        padding: 15px 41px 50px;
    }

    .text-sidebar-rhtContent ul a {
        font-size: 1.05rem;
    }

    .text-sidebar-sec {
        margin: -160px 0 0;
    }

    .overview-three-subpages-sec {
        padding: 60px 0 0;
    }

    .text-sidebar-content p {
        font-size: 1.100rem;
        line-height: 1.8;
    }

    .overview-three-subpages-sec h2 {
        font-size: 3rem;
    }

    .gallery {
        padding: 50px 0 0;
    }

    .gallery-item:first-child .icon {
        width: 125px;
        height: 62px;
    }

    .gallery-item:first-child .icon img {
        margin: 6px 8px;
    }

    .gallery-item:first-child .icon .icon-arrow {
        width: 75px;
        height: 75px;
        line-height: 75px;
    }

    .gallery-item:first-child .icon .icon-arrow i {
        font-size: 42px;
    }

    .gallery-item .icon {
        width: 80px;
        height: 44px;
    }

    .gallery-item .icon .icon-arrow {
        width: 55px;
        height: 55px;
        top: -7px;
        line-height: 55px;
    }

    .gallery-item .icon .icon-arrow i {
        font-size: 25px;
    }

    .gallery-item .icon img {
        margin: 4px 2px;
    }

    .gallery-item:first-child .overlay h3 {
        font-size: 2.25rem;
    }

    .gallery-item .overlay h3 {
        font-size: 1.55rem;
    }

    .contains-tittleText-lft h2 {
        font-size: 2.4rem;
    }

    .contains-tittleText-sec {
        padding: 80px 0 0;
    }

    .quotation-slider-sec .right-column {
        padding: 20px 20px 20px 30px;
    }

    .project-slider .caption h3, .quotation-slider-sec .title {
        font-size: 1.6rem;
    }

    .quotation-slider-sec .quote {
        padding: 45px 0 0;
        font-size: 1.3rem;
        line-height: 1.4;
    }

    .quotation-slider-sec {
        padding: 80px 0 120px;
        margin-top: 60px;
    }

    .footer-address-box a {
        font-size: 1.4rem;
    }

    .footer-bottom-lft {
        width: 100%;
    }

    .footer-bottom-rht {
        width: 100%;
        justify-content: flex-start;
        padding: 30px 0 0;
    }

    .project-slider .slide {
        left: -40px;
    }

    .project-slider-block .text-section h2 {
        font-size: 2.1rem;
    }

    .project-slider .slide {
        margin: 0 11px;
    }

    .project-slider .caption h3, .quotation-slider-sec .title {
        font-size: 1.4rem;
    }

    .project-slider .caption {

        bottom: 15px;
        left: 15px;
    }

    .project-slider .slick-prev, .project-slider .slick-next {
        width: 45px;
        height: 45px;
        line-height: 45px;
    }

    .project-slider .slick-next {
        left: -8%;
    }


    .tittle-box-number-inner .highlight, .tittle-box-number-inner h2, .usp-list-sec h2 {
        font-size: 2.2rem;
    }

    .usp-list-sec .tab {
        font-size: 1.363rem;
    }

    .inner-hero-banner .contains-tittleText-lft h1 {
        font-size: 3rem;
    }

    .team-gallery-inner-item .gallery-tittle h3 {
        font-size: 1.25rem;
    }

    .team-gallery-inner-item .gallery-tittle h4 {
        font-size: 1.125rem;
    }

    .team-gallery-inner-item .gallery-tittle {
        padding: 25px;
    }

    .team-gallery-item {
        width: 49%;
        max-width: 340px;
    }


    .video-lightBox-sec .close-btn {
        top: 25%;
    }

    .employees-speak-slider .slick-prev {
        left: 32%;
    }

    .employees-speak-slider-item-rht {
        width: 47%;
        padding: 56px 36px;
    }

    .speek-person-text {
        padding: 0 0 0 19px;
        width: 60%;
    }

    .employees-speak-slider-item-rht p {
        font-size: 1.8rem;
        line-height: 1.5;

    }

    .contact-formSidebar-text h2 {
        font-size: 2rem;
    }

    .form-container {
        padding: 30px;
    }

    .contact-formSidebar-lft {
        width: 45%;
    }

    .contact-formSidebar-rht {
        width: 55%;
        padding: 0 0 0 15px;
    }


    .day-slider-sec .slick-prev {
        left: 0%;
    }

    .day-slider-sec .slick-next {
        left: inherit;
        right: 68%;
    }

    .day-slider-sec .slick-prev, .day-slider-sec .slick-next {
        top: inherit;
        bottom: -96px;
    }


    .horizontal > div {
        width: 65%;
    }

    .custom-filters-block-lft {
        width: 20%;
    }


    .projecten-gallery-list {
        column-gap: 25px;
        row-gap: 25px;
    }

    .projecten-gallery-name {
        padding: 19px;
    }

    .projecten-gallery-name h2 {
        font-size: 1.5rem;
    }

    .projecten-gallery-name h3, .projecten-gallery-name span {
        font-size: 0.9rem;
    }

    .projecten-gallery-name .arrow {
        width: 50px;
        height: 50px;
        line-height: 49px;
    }

    .projecten-gallery-item:hover .projecten-gallery-name .prj-name-inner {
        transform: translate(62px, -4px);
    }

    .projecten-gallery-transform-bg {
        background-size: cover;
    }

    .contact-formSidebar-sec, .montage-group-project-detail-sec .contact-formSidebar-sec {
        padding: 100px 0 84px;
    }

    .related-projects-btn-tittle h2 {
        font-size: 2.5rem;
    }

    .inner-hero-banner .tittleText-motage-projectDetails .contains-tittleText-lft h1 {
        font-size: 3rem;
    }

    .inner-hero-banner .tittleText-motage-projectDetails .contains-tittleText-lft h1 {
        font-size: 3rem;
    }

    .montage-werkwijze-gallery-item.f-direction-reverse .number, .montage-werkwijze-gallery-item .number {
        font-size: 10.313rem;
        top: 18%;
    }

    .montage-werkwijze-gallery-item h2 {
        font-size: 2.4rem;
        line-height: 1.2;
    }

    .montage-toepassingen-gallery-sec .gallery-item .icon .text {
        display: inline-block;
        font-size: 0.8rem;
        font-weight: 500;
        padding: 0 4px 0;
    }

    /* .montage-toepassingen-gallery-sec .gallery-item .icon .icon-arrow {
        width: 42px;
        height: 42px;
        top: 2px;
        line-height: 42px;
    } */
    .montage-toepassingen-gallery-sec .gallery-item .icon .icon-arrow {
        width: 52px;
        height: 52px;
        top: -6px;
        line-height: 52px;
    }


    .contact-formSidebar-sec.montage-toepassingen-contact-form-sec {

        padding-bottom: 130px;
    }

    .banner-media img {
        height: 350px;
    }

    .inner-hero-banner .montage-toepassingen-tittleText-inner .contains-tittleText-lft h1 {
        font-size: 3rem;
    }

    .section.montage-body-banner-sec {
        padding: 0 0 90px;
    }

    section.montage-body-banner-sec {
        padding: 30px 0 30px;
    }

    .inner-hero-banner.montage-contact-banner .contains-tittleText-lft h1 {
        font-size: 3rem;
    }

    .montage-contact-banner {
        background-size: 100%;
        background-position: bottom;
        padding-block: 150px 100px;
    }

    .montage-magazine-banner-rht {
        padding: 25px;
    }

    .montage-magazine-banner-rht-inner h1 {
        font-size: 2.4rem;
        line-height: 1.2;
    }

    .project-slider-block .project-slider .slick-list {

        left: 50px;
    }

    .project-slider-sec:after {
        width: 51%;
    }

    .project-slider .slick-prev {
        left: -13%;
    }

    .project-slider .slick-next {
        left: 0%;
    }

    .merketeers-icon {
        left: 5px;
    }


    .call-toAction-inner-rht {

        padding: 0 0 0 40px;
    }

    .contains-tittleText-inner-montage-over-ons .contains-tittleText-lft {
        width: 56%;
    }

    .contains-tittleText-inner-montage-over-ons .contains-tittleText-rht {
        width: 44%;
    }

    .employees-speak-slider .slick-next {
        left: 42%;
    }


    .transform-bg-montage-group {
        clip-path: polygon(0% 0%, 100% 4%, 100% 100%, 0 100%);
    }


    .montage-full-im-sec {
        min-height: inherit;
    }

    .montage-full-im-sec img {
        height: auto;

    }

    /* css start 22-02-25 */
    .main-nav .sub-menu {
        padding: 0 5px;
    }

    .main-nav ul li a, .header-contact a:first-child, .global-btn .text-btn {
        font-size: 0.730rem;
    }

    .header-contact .global-btn {
        padding: 13px 10px 11px 35px;
        font-size: 0.730rem;
    }

    .header-contact a img {
        max-width: 9px;
    }

    .header-contact {
        column-gap: 8px;
    }

    .main-nav li {
        padding: 0 6px;
    }

    .header-contact .global-btn .arrow-btn {
        width: 25px;
        height: 25px;
    }

    .header-contact .global-btn:hover .arrow-btn {
        width: 160%;
        height: 127%;
    }

    .header-contact .global-btn:hover .arrow-btn img {
        margin: 23px 0 0 14px;
    }

    /* css end 22-02-25 */
    .video-lightBox-sec .play-btn-inner {
        bottom: 0;
    }


    .day-slide-item {
        /* margin: 0; */
        left: 0;
    }

    .tittle-box-number-inner .highlight::before {
        top: 15px;
    }

    .montage-toepassingen-gallery-sec .gallery-item .icon .img-fluid {
        width: 16px;
        margin: 5px 2px;
    }

    .montage-toepassingen-gallery-sec .gallery-item .icon .text {
        position: relative;
        top: -2px;
    }

}


@media (min-width: 768px) and (max-width: 991.98px) {


    body {
        padding: 0 0px;
    }

    .container {
        padding: 0 33px;
    }


    /* mobile menu css start  */
    .header-container:after {
        bottom: -13px;
    }

    .hungerMenu-icon {
        width: 47px;
        height: 47px;
        background: url(../img/hunger-menü-bg.svg);
        margin-left: auto;
        text-align: center;
        line-height: 47px;
        position: relative;
    }

    .header-container.sticky {
        z-index: 999;
    }

    .header-container {
        z-index: 999;
    }

    .main-mobile-menu {
        position: fixed;
        z-index: 99;
        width: 100%;
        height: 100%;
        top: 90px;
        left: 0;
        background: #D71019;
        display: block;
        overflow-x: hidden;
        padding: 0 0;
        transform: translate(102%, 0%);
    }

    .hungerMenu-icon .ri-close-large-fill {
        opacity: 0;
    }

    .hungerMenu-icon.menuIconChange .ri-close-large-fill {
        opacity: 1;
    }

    .hungerMenu-icon.menuIconChange .ri-menu-line {
        opacity: 0;
    }


    .main-mobile-menu.main-mobile-menu-show {
        transform: translate(0%, 0%);
    }

    .hungerMenu-icon i {
        font-size: 25px;
        color: #fff;
        position: absolute;
        top: 2px;
        left: 10px;
    }

    .main-nav-desktop {
        display: none;
    }


    .header-container.sticky {
        margin: 0;
        width: 100%;
    }

    .hungerMenu-icon {
        display: block;
        margin-left: unset;
    }


    .main-mobile-menu ul {
        margin: 0;
        padding: 0;
    }

    .main-mobile-menu .mobile-menu-scroll a {
        text-decoration: none;
        display: block;
        padding: 1.313em 11px;
        color: #f3efe0;

        letter-spacing: 1px;
        font-weight: 400;
        border-bottom: 1px solid #c40e16;
    }

    .main-mobile-menu .nav-title {
        /* height: 100vh; */
        background: #D71019;
        padding: 28px 19px 0;

    }

    .main-mobile-menu ul li {
        list-style: none;
        background: #D71019;
    }

    .main-mobile-menu ul li a:hover {
        background: #83080D;
    }

    .main-mobile-menu .side-menu {
        position: absolute;
        top: 0;
        /*width: 300px;*/
        width: 100%;
        height: 100%;
        background-color: #D71019;
        transform: translateX(-100%);
        padding: 28px 19px 0;
        transition: transform 0.5s ease;
    }

    .main-mobile-menu .side-menu li .back {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .main-mobile-menu .side-menu li .back span:last-child {
        color: #83080D;
    }

    .main-mobile-menu .side-menu.active {
        transform: translateX(0);
    }

    .mobile-menu-scroll {
        height: 70vh;
        overflow-y: scroll;
    }

    .main-mobile-menu .header-contact {
        position: relative;
        z-index: 1;
        flex-direction: column;
        margin: 0 0 69px;
        /* bottom: 31px; */
        row-gap: 19px;
        padding: 0;
    }

    .main-mobile-menu .header-contact a:first-child {
        font-size: 1rem;
        font-weight: 300;
        color: #fff;
    }

    .main-mobile-menu .header-contact a:first-child i {
        color: #83080D;
        font-size: 19px;
    }

    .main-mobile-menu .header-contact .global-btn {
        background: #FFFFFF;
        color: #1D1D1B;
        font-weight: 500;
    }

    .main-mobile-menu .global-btn .arrow-btn {
        background: #1D1D1B;
    }

    /* mobile menu css end  */
    .header-container-inner {
        padding: 22px 33px;
    }

    .gallery {
        grid-template-columns:59.2% 39.3%;
    }

    .header-lft {
        width: 22%;
    }

    .header-rht {
        width: 78%;
        display: inline-flex;
        justify-content: flex-end;
        gap: 20px;
        align-items: center;
    }

    .banner-media video, .banner-media iframe {
        height: 700px;
    }

    .text-sidebar-content {
        padding: 140px 0 0;
    }


    .project-slider-sec .project-slider .slick-prev, .project-slider-sec .project-slider .slick-next {
        top: -22%;
    }

    .project-slider-sec .project-slider .slick-next {
        left: inherit;
        right: 6%;
    }

    .project-slider-sec .project-slider .slick-prev {
        left: inherit;
        right: 22%;
    }

    .project-slider-sec {
        padding: 88px 0 125px;
    }


    .video-lightBox-sec .video-container {
        padding: 0 33px;
    }

    .contact-accordion .accordion-header span:first-child {
        width: 84%;

    }

    .contact-accordion .icon {
        margin-right: 1px;
    }


}


@media (max-width: 767px) {


    /* mobile menu css start  */
    .header-container:after {
        bottom: -13px;
    }

    .hungerMenu-icon {
        width: 47px;
        height: 47px;
        background: url(../img/hunger-menü-bg.svg);
        /*margin-left: auto;*/
        text-align: center;
        line-height: 47px;
        position: relative;
    }

    .header-container.sticky {
        z-index: 999;
    }

    .header-container {
        z-index: 999;
    }

    .main-mobile-menu {
        position: fixed;
        z-index: 99;
        width: 100%;
        height: calc(100% - 80px);
        top: 80px;
        left: 0;
        background: #D71019;
        display: flex;
        overflow-x: hidden;
        padding: 0 0;
        transform: translate(102%, 0%);
        flex-direction: column;
        justify-content: space-between;
    }

    .hungerMenu-icon .ri-close-large-fill {
        opacity: 0;
    }

    .hungerMenu-icon.menuIconChange .ri-close-large-fill {
        opacity: 1;
    }

    .hungerMenu-icon.menuIconChange .ri-menu-line {
        opacity: 0;
    }


    .main-mobile-menu.main-mobile-menu-show {
        transform: translate(0%, 0%);
    }

    .hungerMenu-icon i {
        font-size: 25px;
        color: #fff;
        position: absolute;
        top: 2px;
        left: 10px;
    }

    .main-nav-desktop {
        display: none;
    }


    .header-container.sticky {
        margin-inline: 0;
        width: 100%;
    }

    .hungerMenu-icon {
        display: block;
    }


    .main-mobile-menu ul {
        margin: 0;
        padding: 0;
        margin-top: 13px;
    }

    .main-mobile-menu .mobile-menu-scroll a {
        text-decoration: none;
        display: flex;
        padding: 20px 2px;
        color: #f3efe0;
        /* letter-spacing: 1px; */
        font-weight: 600;
        border-bottom: 1px solid #c40e16;
        /*font-size1 /*/
        /*FONT-VARIANT: JIS83;*/
        font-size: 1.31rem;
        justify-content: space-between;


        span {
            position: relative;
            right: 12px;
        }
    }

    .main-mobile-menu .nav-title {
        /* height: 100vh; */
        background: #D71019;
        padding: 28px 19px 0;

    }

    .main-mobile-menu ul li {
        list-style: none;
        background: #D71019;
    }

    .main-mobile-menu ul li a:hover {
        background: #83080D;
    }

    .main-mobile-menu .side-menu {
        position: absolute;
        top: 0;
        /*width: 300px;*/
        width: 100%;
        height: 100%;
        background-color: #D71019;
        transform: translateX(-100%);
        padding: 28px 19px 0;
        transition: transform 0.5s ease;
        z-index: 1;
    }

    .main-mobile-menu .side-menu li .back {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-left: 0px;
        padding-block: 24px 18px;

        span {
            position: unset;

            &:first-child {
                position: unset;
                display: flex;
                gap: 14px;
                align-items: center;
            }
        }
    }

    .main-mobile-menu .side-menu li .back span:last-child {
        color: #83080D;
    }

    .main-mobile-menu .side-menu.active {
        transform: translateX(-4%);
    }

    .mobile-menu-scroll {
        height: auto;
        overflow-y: auto;
    }

    .main-mobile-menu .header-contact {
        position: relative;
        z-index: 1;
        flex-direction: column;
        margin: 0 0 69px;
        /* bottom: 31px; */
        row-gap: 19px;
        padding: 0;
    }

    .main-mobile-menu .header-contact a:first-child {
        font-size: 1rem;
        font-weight: 600;
        color: #fff;
    }

    .main-mobile-menu .header-contact a:first-child i {
        color: #83080D;
        font-size: 19px;
    }

    .main-mobile-menu .header-contact .global-btn {
        background: #FFFFFF;
        color: #1D1D1B;
        font-weight: 500;
    }

    .main-mobile-menu .global-btn .arrow-btn {
        background: #1D1D1B;
    }

    /* mobile menu css end  */
    .banner-description h1 {
        font-size: 3.125rem;
        line-height: 1.6;
    }

    .text-sidebar-rht {
        order: 1;
        width: 100%;
        padding: 0;
    }

    header.header {

    }

    .text-sidebar-lft {
        order: 2;
        width: 100%;
        padding: 0;
    }

    .banner {
        min-height: 596px;
    }

    .banner-media img {
        width: 100%;
        object-fit: cover;
        height: 400px;
    }

    .banner-description {
        left: 6px;
        bottom: inherit;
        max-width: 90%;
        top: 53%;
        padding: 4%;
        transform: translate(0%, -29%);
    }

    .banner-description h1 .f-subTittle-text {
        background: none;
        padding: 0;
    }

    .banner-description-links {
        align-items: center;
        gap: 15px;
        flex-direction: column;
        align-items: flex-start;
        padding: 5px 0 0;
    }

    .text-sidebar-rhtContent h2 {
        font-size: 1.5rem;
        line-height: 1.3;
        color: #AAAAAA;
        opacity: 0.5;
    }

    .text-sidebar-rhtContent ul a {
        font-size: 1.125rem;
        padding: 24px 0;
        padding-inline: 2px;
        font-weight: 500;


        i {
            font-size: 1.6rem;
            position: relative;
            top: -2px;
            right: -8px;
        }
    }

    .text-sidebar-rhtContent ul li {
        margin: 0px 0px 2px;
    }

    .global-btn {
        padding: 13px 16px 11px 49px;
        font-size: 0.875rem;
    }


    .text-sidebar-content {
        padding: 64px 0 0;
    }

    .text-sidebar-content p {
        font-size: 1.125rem;
        line-height: 2.33;
    }

    .overview-three-subpages-sec h2 {
        font-size: 2.188rem;
    }

    .overview-three-subpages-sec {
        padding: 60px 0 0;
        border-top: 1px solid #e3e3e3;
        margin: 71px 24px 0;
    }

    .overview-three-subpages-sec .container {
        padding: 0;
    }

    .overview-three-subpages-sec p {
        font-size: 0.875rem;
        line-height: 2.14;
        margin: 12px 0 0;
    }

    .gallery {
        grid-template-columns:1fr;
        padding-top: 45px;
        gap: 31px;
    }

    .gallery-item:first-child .overlay h3, .gallery-item .overlay h3 {
        font-size: 1.5rem;
    }

    .gallery-item:first-child .icon .icon-arrow {
        width: 55px;
        height: 55px;
        top: -7px;
        line-height: 55px;
    }

    .gallery-item:first-child .icon {
        width: 80px;
        height: 44px;
        top: 21px;
        right: 35px;
    }

    .gallery-item:first-child .icon .icon-arrow i {
        font-size: 25px;
    }

    .gallery-item:first-child .icon img {
        margin: 1px 5px;
        max-width: 20px;
    }

    .call-toAction-sec {
        padding: 60px 0;
    }

    .call-toAction-inner-lft {
        width: 100%;
        padding: 0;
        border: none;
    }

    .call-toAction-inner-rht {
        width: 100%;
        padding: 39px 0 0;
    }

    .call-toAction-parg h2, .call-toAction-parg p, .call-toAction-btn-block a {
        font-size: 0.875rem;
    }

    .call-toAction-parg {
        padding: 0 0 0 14px;
    }

    .container {
        padding: 0 24px;
    }

    .contains-tittleText-sec {
        border-top: 1px solid #e3e3e3;
        padding: 40px 0 0;
        margin: 40px 24px 0;
    }

    .contains-tittleText-sec .container {
        padding: 0 0px;
    }

    .contains-tittleText-lft {
        width: 100%;
    }

    .contains-tittleText-rht {
        width: 100%;
        padding: 40px 0 0;
    }

    .contains-tittleText-rht p {
        font-size: 0.875rem;
        line-height: 2.28;
    }

    .contains-tittleText-lft h2 {
        font-size: 2.188rem;
        font-weight: 500;
        line-height: 1.28;
    }

    .contains-tittleText-lft p {
        font-size: 0.875rem;
        margin-top: 24px;
    }

    .quotation-slider-sec .slider-container {
        flex-wrap: wrap;
    }

    .quotation-slider-sec .left-column {
        flex: 100%;
        width: 100%;
    }

    .quotation-slider-sec .right-column {
        flex: 100%;
        width: 100%;
    }

    .quotation-slider-sec .left-column {
        height: auto;
    }

    .right-column-topTittle {
        margin: 0 0 0;
        position: initial;
    }

    .quotation-icon {
        width: 45px;
        top: -22px;
        z-index: 2;
        left: 15px;
    }


    .quotation-slider-sec .slides, .quotation-slider-sec .left-column {
        padding: 0 0;
    }

    .quotation-slider-sec .right-column {
        padding: 43px 0px 0;
    }

    .right-column-topTittle h2 {
        font-size: 0.813rem;
        margin: 0 0 27px;
    }

    .project-slider .caption h3, .quotation-slider-sec .title {
        font-size: 1.375rem;
    }

    .quotation-slider-sec .title.active::after {
        height: 2px;
    }

    .quotation-slider-sec .titles {
        gap: 20px;
    }

    .quotation-slider-sec .quote {
        margin-top: 8px;
    }

    .quotation-slider-sec .quote {
        padding: 36px 0 0;
        font-size: 1.125rem;
        line-height: 2.33;
    }

    .quotation-slider-sec .author {
        font-size: 1.063rem;
    }

    .project-slider .slide {
        left: 0;
    }


    .quotation-slider-sec {
        margin: 76px 0px 0;
        padding: 105px 0 108px;
    }


    .quotation-slider-sec .slider-container {
        padding: 0 0px;
    }

    .project-slider-block {
        display: block;
        position: relative;
        z-index: 1;
        padding: 0 0 100px;
    }

    .project-slider-sec {
        padding: 75px 0px 126px;
        clip-path: polygon(0% 0%, 100% 1%, 100% 100%, 0% 100%);

        .banner-project-link {
            display: none;
        }
    }

    .project-slider .slide {
        margin: 0 0px;
    }

    .project-slider .slick-prev, .project-slider .slick-next {
        top: inherit;
        bottom: -100px;
    }

    .project-slider .slick-next {
        left: 51%;
    }

    .project-slider .slick-prev {
        left: 35%;
    }

    .footer-transformBg-half {
        width: 80%;
    }

    .project-slider-block .text-section h2 {
        font-size: 1.75rem;
    }

    .project-slider-block .text-section p {
        display: none;
    }

    .project-slider .slide {
        left: 0;
        /* padding: 0; */

    }


    .project-slider-block .project-slider .slick-list {
        left: 0px;
        overflow: hidden;
    }

    .project-slider {
        width: 100%;
        margin: 55px 0 0;
    }

    .footer-bottom-rht-btn span {
        width: 100%;
        text-align: center;
        padding: 0;
        font-weight: 700;
    }

    .footer-bottom-rht-btn a {
        width: auto;
    }

    .footer-bottom-lft ul li {
        display: none;
    }

    .footer-bottom-lft ul li:first-child {
        display: block;
        text-align: center;
        width: 100%;
        padding: 0;
        border-top: 1px solid #cb0f18;
        margin: 46px 0 0;
        padding: 30px 0;
    }

    .footer-bottom-lft {
        text-align: center;
        order: 2;
    }

    .footer-bottom-rht {
        order: 1;
    }

    .footer-bottom {
        padding: 0;
        border: none;
    }

    .footer-bottom-rht-btn {
        gap: 12px;
        align-items: center;
        row-gap: 22px;
        justify-content: space-between;
    }

    .footer-top-item {
        width: 100%;
    }

    .footer-top-item.footer-address-item2 {
        width: 100%;
    }

    .footer-address-book > img {
        max-width: 165px;
        top: initial;
        bottom: 0;
        height: 120px;
    }

    .footer-address-book {
        padding: 21px 137px 20px 20px;
        margin-top: 46px;
    }

    .footer-social {
        display: none;
    }

    .footer-top-item .footer-address-book {
        display: none;
    }

    .address-book-mobile {
        display: block;
    }

    .footer-menu-item .footer-menu2 {
        margin: 0px 0 0;
    }

    .footer-top {
        padding: 7px 0;
        position: relative;
    }

    .footer-top-item.footer-menu-item.footer-menu-itemM3 {
        order: 4;
    }

    .footer-top-item.footer-menu-item {
        order: 2;
    }

    .footer-top-item.footer-address-item {
        order: 3;
    }

    .footer-top-item.footer-address-item2 {
        order: 1;
    }

    .footer-address-box {
        margin: 0 0 22px;
    }

    .project-slider-sec .container {
        padding: 0 24px;
    }

    .footer-top-item.footer-menu-item h2, .footer-top-item.footer-address-item h2 {
        color: #fff;

    }

    .footer-address-box a {
        font-size: 1.313rem;
        font-weight: 600;
        margin-top: 3px;
    }

    .footer-top i {
        display: inline-block;
    }

    .footer-top-item .content {
        display: none;
    }

    .footer-top-item .bb {
        transition: all 0.4s linear;
        display: flex;
        justify-content: space-between;
        column-gap: 5px;
    }

    .footer-top-item .bb i {
        font-size: 25px;
    }

    .footer-top .set ul li, .footer-top .set ul li a {
        font-size: 0.90rem;
        padding: 0 0 0 11px;
    }


    .header-lft {
        width: 35%;
    }

    .header-rht {
        width: 65%;
        display: flex;
        justify-content: flex-end;
        gap: 15px;
        align-items: center;
    }


    .global-btn-mobile {
        display: inline-block;
    }

    .project-slider-block .desktop-btn {
        display: none;
    }

    .overview-three-subpages-btn {
        /*text-align: center;*/
        display: flex;
        /* align-items: center; */
        justify-content: center;
        margin-top: 62px;


        a {
            border-color: var(--color-black) !important;
            color: var(--color-black);

            &::before {
                background-color: var(--color-black) !important;
            }

            &::after {
                background-image: url(/assets/templates/img/btn-arrow.svg) !important;
            }

            span {
                &::after {
                    color: white !important;
                }
            }
        }
    }

    .overview-three-subpages-btn .global-btn {

        border: 1px solid #1D1D1B1A;
        background: #fff;
        color: #1D1D1B;
        font-size: 0.875rem;
        font-weight: 500;
        display: inline-block;
        padding: 13px 22px 11px 49px;
        margin: 45px 0 0;
    }

    .overview-three-subpages-btn .global-btn .arrow-btn {
        background: #1D1D1B;
    }

    .project-slider-block .global-btn {
        font-weight: 500;
        border: 1px solid #FFFFFF34;
        background: #1d1d1b;
        display: inline-block;
        padding: 13px 25px 11px 52px;
    }

    .project-slider-block .global-btn .arrow-btn {
        background: #fff;
    }

    .project-slider-block .text-section h2 {
        margin-bottom: 35px;
    }

    .team-gallery-text-lft h2 {
        font-size: 2rem;
    }

    .usp-list-sec .tabs {
        width: 100%;
    }

    .inner-hero-banner .contains-tittleText-rht {
        padding: 25px 0 30px 0;
    }

    .usp-list-sec .content {
        width: 100%;
        padding: 15px 0 0;
    }

    .horizontal > div {
        width: 90%;
    }

    .tittle-box-number-inner .text-section {
        max-width: 100%;
        padding: 0 0px 0 0;
    }

    .tittle-box-number-inner .stats {
        width: 100%;
        padding: 40px 0 0;
    }

    .tittle-box-number-inner {
        flex-wrap: wrap;
    }

    .tittle-box-number-inner .stats {
        grid-template-columns: repeat(1, 100%);
    }

    .usp-list-sec .tab {
        font-size: 1.263rem;
    }

    .inner-hero-banner .contains-tittleText-lft h1 {
        font-size: 2rem;
    }


    .cta-card {
        display: none;
    }

    .inner-hero-banner .contains-tittleText-inner {
        padding: 0 0 50px;
    }

    .employees-speak-slider-inner {
        flex-direction: column;
    }

    .employees-speak-slider-item-lft {
        width: 100%;
    }

    .employees-speak-slider-item-rht {
        width: 100%;
        padding: 35px;
    }

    .speek-person-block {
        /*flex-direction: column;*/
    }

    .speek-person-block .speekPer {
        width: 50%;
    }

    .speek-person-text {
        width: 100%;
        padding: 15px 0 0;
    }

    .employees-speak-slider .slick-prev, .employees-speak-slider .slick-next {
        bottom: inherit;
        top: 22%;
    }

    .vacature-container-sec .vacature {
        flex-direction: column;
    }

    .vacature-title {
        width: 100%;
        text-align: left;
        margin: 0 0 15px;
    }

    .vacature-container-sec .vacature-title h3 {
        font-size: 1.4rem;
    }

    .contact-formSidebar-inner {
        flex-direction: column;
    }

    .contact-formSidebar-lft {
        width: 100%;
    }

    .contact-formSidebar-rht {
        width: 100%;
    }

    .form-container {
        padding: 19px;
    }

    .contact-formSidebar-rht {
        width: 100%;
        padding: 39px 0 0;
    }

    .contact-formSidebar-sec, .montage-group-project-detail-sec .contact-formSidebar-sec {
        padding: 60px 0;
    }


    .day-slide-item {
        left: 0;
    }

    .day-slider-sec .slick-next {
        left: inherit;
        right: 30%;
    }

    .day-slider-sec .slick-prev {
        left: 30%;
    }

    .day-slider-sec .text-section {
        padding: 0 24px 19px;
    }

    .team-gallery-text-lft {
        width: 100%;
    }

    .team-gallery-text-rht {
        width: 100%;
        padding: 20px 0 0 0px;
    }

    .team-gallery-sec {
        padding: 70px 0 150px;

    }

    .team-gallery-img {
        padding: 140px 0 0;
    }

    .team-gallery-img ul {
        row-gap: 17px;
    }

    .tittle-box-number-sec {
        padding: 35px 0 120px;
    }

    .projecten-gallery-list {
        display: flex;
        row-gap: 35px;
        flex-direction: column;
    }

    .projecten-gallery-list .projecten-gallery-item:nth-child(even) {
        padding: 0;
        top: 0;
    }

    .projecten-gallery-name .arrow {
        opacity: 1;
    }

    .projecten-gallery-item:hover .projecten-gallery-name .prj-name-inner {
        transform: translate(0px, -4px);
    }

    .projecten-gallery-name .prj-name-inner {
        position: relative;
        transform: translate(0px, -4px);
        padding: 0 0 0 60px;
    }

    .projecten-gallery-name h2 {
        font-size: 1.375rem;
        margin-bottom: 0;
    }

    .projecten-formSidebar-sec .contact-formSidebar-rht {
        border-left: none;
    }

    .related-projects-btn-tittle h2 {
        font-size: 1.9rem;
    }


    .inner-hero-banner .tittleText-motage-projectDetails .contains-tittleText-lft h1 {
        font-size: 2.3rem;
    }

    .montage-project-type {
        grid-template-columns: repeat(2, auto);
        column-gap: 27px;
        row-gap: 19px;
        margin: 40px 0 0;
    }

    .tittle-box-number-inner .stat-card:nth-child(3) {
        margin: 20px 0 0;
    }

    .montage-project-type-item {
        font-size: 1.05rem;
    }

    .montage-project-details-contentTwo-lft {
        width: 100%;
    }

    .montage-project-details-contentTwo-rht {
        width: 100%;
        margin-bottom: 0px;
    }

    .montage-project-details-contentTwo-sec {
        padding: 60px 0 0;
    }

    .montage-project-detail-gallery-sec {
        padding: 55px 0 0;
    }

    .scrollTo-down {
        width: 66px;
        height: 66px;
        bottom: -19px;
    }

    .submit-contact-btn {
        text-align: center;
    }


    .montage-werkwijze-gallery-item-lft {
        width: 100%;
    }

    .montage-werkwijze-gallery-item-rht {
        width: 100%;
        padding: 25px 0px;
    }

    .montage-werkwijze-gallery-item .number, .montage-werkwijze-gallery-item.f-direction-reverse .number {
        right: inherit;
        left: 0%;
        top: -6%;
        font-size: 12.313rem;
    }

    .montage-werkwijze-gallery-item h2 {
        font-size: 2.2rem;

    }

    .montage-werkwijze-gallery-item {
        align-items: center;
        padding: 20px 0;
    }

    .montage-werkwijze-gallery-sec {
        margin: 80px 0 0;
        padding: 50px 0;

        @media (max-width: 767px) {
            padding-bottom: 0;
        }
    }


    .inner-hero-banner .montage-toepassingen-tittleText-inner .contains-tittleText-lft h1 {
        font-size: 2.4rem;
    }


    .montage-toepassingen-gallery-sec .montage-werkwijze-gallery-item {
        align-items: center;
        padding: 20px 0 75px;
    }

    .contact-accordion {
        padding: 40px 0 0 0px;
    }

    .project-slider-sec.montage-toepassingen-detail-project-slider-sec {
        padding: 40px 20px 50px;
    }

    .contact-banner-skew {
        height: 60px;
        background-size: cover;
        bottom: 0;
    }

    .montage-body-banner-skew {
        height: 40px;
        background-size: cover;
        top: -2px;
    }


    .montage-contact-banner.montage-offerte-aanvragen-banner .form-container {
        padding: 30px;
    }

    .inner-hero-banner.montage-contact-banner .contains-tittleText-rht {
        padding: 50px 0 0;
    }


    .montage-magazine-banner-lft {
        width: 100%;
    }

    .montage-magazine-banner-rht {
        width: 100%;
        padding: 60px 24px;

        .breadcrumb {
            margin-bottom: 30px;
        }
    }

    .montage-magazine-banner {
        margin: 0;
    }


    .montage-algemene-voorwaarden-content-lft {
        width: 100%;
    }


    .montage-algemene-voorwaarden-content-rht {
        width: 100%;
    }

    .montage-contact-banner.montage-algemene-voorwaarden-banner {
        min-height: 420px;
        background-size: cover;
    }

    .montage-algemene-voorwaarden-banner .scrollTo-down {

        bottom: 0;
    }


    .custom-image-gallery .u-hide\<sm {
        display: none !important;
    }

    /* .footer-menu-itemM3 .bb{
        display:block;
    } */
    .banner-home .banner-media {
        clip-path: polygon(0 0, 100% 0, 100% 96%, 0 100%);
    }

    .text-sidebar-sec {
        margin: -10px 0 0;
    }

    .merketeers-icon {
        bottom: 4%;
        left: 4%;
        margin: 0;
    }

    .banner.banner-home {
        min-height: inherit;
    }

    .banner-media video, .banner-media iframe {
        height: 588px;
    }


    .contains-tittleText-inner-montage-over-ons .contains-tittleText-lft {
        width: 100%;
    }

    .contains-tittleText-inner-montage-over-ons .contains-tittleText-rht {
        width: 100%;
    }

    .contains-tittleText-rht p {
        margin-top: 31px;
    }

    .usp-list-sec {
        padding: 20px 0 60px;
    }

    .project-slider .projecten-gallery-name .arrow {
        display: none;
    }

    .project-slider .projecten-gallery-name .prj-name-inner {
        padding: 0 0 0 15px;
    }

    .employees-speak-slider-item-rht p {
        font-size: 1.4rem;
    }

    .employees-speak-slider .slick-prev {
        left: 32%;
    }

    .employees-speak-slider .slick-next {
        left: 54%;
    }


    .transform-bg-montage-group {
        clip-path: polygon(0% 0%, 100% 2%, 100% 100%, 0 100%);
    }

    .inner-hero-banner.montage-werken-bij-detail-banner .contains-tittleText-rht {
        padding: 22px 0 0 0;
    }

    .montage-werken-bij-detail-banner .contains-tittleText-rht p {
        margin: 0 0 35px;
    }

    .inner-hero-banner.montage-werken-bij-detail-banner .contains-tittleText-inner {
        padding: 45px 0 60px;
    }


    .header-container-inner {
        padding: 22px 24px 13px;
    }

    .text-sidebar-rhtBtn .global-btn .arrow-btn {
        top: 6px;
    }

    .text-sidebar-rhtBtn .global-btn:hover .arrow-btn {
        top: -8px;
    }

    .text-sidebar-rhtBtn .global-btn:hover .arrow-btn img {
        margin: 22px 0 0 15px;
    }

    .main-mobile-menu .global-btn:hover .text-btn {
        color: #fff;
    }


    .footer-btn-split span:first-child {
        transform: translate(0px, 9px);
    }

    .footer-bottom-rht-btn a {
        column-gap: 6px;
    }

    .footer-bottom .footer-bottom-rht-btn {
        width: 100%;
    }

    .video-lightBox-sec .play-btn-inner {
        width: 78px;
        min-height: 100px;
    }

    .video-lightBox-sec .play-btn-inner .play-btn {
        width: 58px;
        height: 58px;
    }

    .video-lightBox-sec .play-btn-inner span {
        font-size: 0.9rem;
    }

    .tittle-box-number-inner .highlight::before {
        left: 4px;
    }


    .vacature-container-sec .vacature-hover img {
        max-width: 100%;
    }

    .vacature-container-sec .vacature-hover {
        left: 4%;
    }


    .vacature-container-sec .arrow-btn {
        width: 60px;
        height: 60px;
    }

    .vacature-container-sec .arrow-btn i {
        font-size: 22px;
    }

    .vacature-container-sec .arrow-btn {
        width: 74px;
        height: 35px;
    }

    .day-slide-item {
        margin: 0;
    }

    .day-slide-item {
        min-height: inherit;
        max-height: inherit;
        overflow-y: auto;
    }

    .contact-accordion .accordion-header span:first-child {
        width: 84%;
    }

    .contact-accordion .icon {
        margin-right: 1px;
    }

    .montage-toepassingen-gallery-sec .gallery-item .icon .img-fluid {
        width: 18px;
        margin: 4px 2px;
    }

    .inner-hero-banner.montage-toepassingen-detail-banner .scrollTo-down {
        bottom: 6px;
    }


    .banner-description-links .global-btn .arrow-btn {
        top: 8px;
    }

    .banner-description-links .global-btn:hover .arrow-btn {

        top: -8px;

    }

    .footer-top h2 {
        font-size: 1.125rem;
        /*marign-bo: ;*/
    }

}


@media (max-width: 575px) {

    .team-gallery-item {
        width: 100%;
    }

    .cta-card {
        flex-direction: column;
        text-align: center;
        width: 90%;
    }

    .cta-card .profile-img {
        width: 60px;
        height: 60px;
    }

    .montage-project-detail-gallery-inner {
        display: flex;
        row-gap: 20px;
        flex-direction: column;
    }


    .form-group-inner-item {
        position: relative;
        width: 100%;
    }


    .project-slider-sec:after {
        display: none;
    }

    .project-slider-block .project-slider .slick-list {
        left: inherit;
    }


    .team-gallery-img .team-gallery-item:nth-child(even) {
        top: 0;
    }


    .team-gallery-img ul {
        row-gap: 26px;
    }

    .team-gallery-inner-item .gallery-tittle {
        padding: 30px;
    }

    .team-gallery-img {
        padding: 60px 0 0;
    }

}


@media (max-width: 375px) {

    .employees-speak-slider-item-lft img {
        height: 290px;
        object-fit: cover;
        width: 100%;
    }

}

.inner-hero-banner.montage-over-ons-banner {
    img {
        height: 789px;
        clip-path: polygon(0 0, 100% 0, 100% 99%, 0 79%)
    }
}

.template-werken-bij-beek {
    .banner.inner-hero-banner {
        .banner-media {
            + .breadcrumb {
                @media (min-width: 1200px) {
                    margin-top: -35px;
                }
            }
        }


    }

    .contact-formSidebar-sec, .vacature-container-sec {
        background-color: rgba(29, 29, 27, 0.04);
    }

    .montage-group-sec {
        padding-top: 30px;
    }

    .contains-tittleText-sec {
        padding: 120px 0;

        @media (max-width: 1199px) {
            padding-block: 60px;
        }

        @media (min-width: 1600px) {
            margin: 80px 0 0;
            padding: 155px 0 132px;
        }

        @media (max-width: 767px) {
            padding: 50px 0;
        }
    }
}

/*Census adjustments*/

.inner-hero-banner.montage-over-ons-banner {
    img {
        height: 789px;
        clip-path: polygon(0 0, 100% 0, 100% 99%, 0 79%);

        @media (max-width: 1199px) {
            height: 400px;
        }
    }
}

.template-werken-bij-beek, .template-werken-bij-detail {
    .banner.inner-hero-banner {
        .banner-media {
            + .breadcrumb {
                @media (min-width: 1200px) {
                    margin-top: -35px;
                }

                @media (max-width: 767px) {
                    margin-block: 30px 20px;
                }
            }
        }
    }

    .montage-group-sec {
        @media (min-width: 1024px) {
            padding-top: 30px;
        }
    }
}

.template-werken-bij-detail {
    .banner.inner-hero-banner {

        .banner-media {
            + .breadcrumb {
                @media (min-width: 1024px) {
                    margin-top: -5px;
                }
            }
        }

        .contains-tittleText-rht {
            padding: 19px 0 0 39px;

            @media (max-width: 767px) {
                padding-left: 0;
            }

            p {
                margin: 0 0 35px;

                &:first-child {
                    @media (min-width: 1600px) {
                        margin-bottom: 16px;
                    }
                }
            }

            .text-list ul p {
                margin: 0 0 6px;
            }
        }

        .contains-tittleText-inner {
            padding: 10px 0 170px;

            @media (max-width: 1199px) {
                padding-bottom: 60px;
            }

            @media (max-width: 767px) {
                padding-bottom: 45px;
            }
        }
    }

    .inner-hero-banner .contains-tittleText-lft h1 {
        @media (min-width: 1200px) {
            font-size: 5.25rem;
            max-width: 500px;
        }
    }

    .montage-group-sec {
        @media (min-width: 1024px) {
            margin-top: 105px;
            padding-top: 0;
        }
    }

    .contact-formSidebar-sec {
        background-color: rgba(29, 29, 27, 0.04);
    }

    .horizontal-scroller {
        @media (min-width: 1024px) {
            margin-top: -18px;
        }
        &::after {
            clip-path: polygon(0 0, 100% 76%, 100% 100%, 0 100%);
        }
    }

    .project-slider-sec.day-slider-sec {
        background-color: #F7F7F7;
    }

    .montage-full-im-sec {
        margin: 0;
    }
}

.template-projecten {
    .projecten-gallery-sec {
        position: relative;

        @media (max-width: 1199px) {
            padding-block: 90px;
        }

        .projecten-gallery-list {
            @media (min-width: 1024px) {
                .projecten-slider-item {
                    &:nth-child(even) {
                        margin-top: 65px;
                    }
                }
            }
        }
    }
}

.template-project-detail {
    .banner {
        .scrollTo-down {
            @media (max-width: 767px) {
                bottom: 20px;
            }
        }
    }

    .inner-hero-banner {
        @media (max-width: 1199px) {
            .breadcrumb {
                margin-block: 0 20px;
            }
        }
    }

    .projecten-gallery-name {
        @media (min-width: 1024px) {
            padding: 54px 55px 62px 59px;
        }
    }

    .contact-formSidebar-sec, .related-projects-sec {
        background-color: #F7F7F7;
    }

    .montage-project-detail-gallery-sec {
        &::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 21%;
            background-color: #F7F7F7;
            /*background-color: red;*/
            z-index: -1;
            clip-path: polygon(0 0, 100% 97%, 100% 100%, 0 100%);
        }
    }
}

.template-werkwijze {
    .inner-hero-banner {
        @media (max-width: 1199px) {
            padding-top: 160px;
            padding-bottom: 20px;
        }

        @media (max-width: 767px) {
            padding-block: 140px 0;
            min-height: auto;
        }

        .scrollTo-down {
            bottom: -30px;
            @media (min-width: 1024px) {
                bottom: -46px;
            }
        }
    }
}

.template-toepassingen {
    .breadcrumb {
        @media (min-width: 1200px) {
            margin-top: -40px;
            margin-bottom: 13px;
        }
    }

    .contact-formSidebar-lft {
        h2 {
            max-width: 400px;
        }
    }
}

.template-toepassingen-detail {
    .breadcrumb {
        @media (min-width: 1200px) {
            margin-top: -40px;
            margin-bottom: 13px;
        }
    }
}

.template-over-ons {
    .contains-tittleText-sec {
        background-color: #f7f7f7;
        @media (min-width: 1600px) {
            padding: 248px 0 0;
            margin-top: 0;

            .contains-tittleText-rht {
                padding: 80px 0 0 26px;
            }

            .btn-arrow {
                margin: 34px 0 0 0;
            }
        }
    }

    .call-toAction-sec {
        background-color: #f7f7f7;
        @media(min-width: 1024px) {
            padding-block: 155px;
        }

        /*+ .usp-list-sec {*/
        /*    @media (min-width: 1600px) {*/
        /*        padding-top: 7px;*/
        /*    }*/
        /*}*/
    }

}

.project-slider-block {
    .text-section {
        .slick-prev, .slick-next {
            width: 52px;
            height: 52px;
            background-color: rgba(170, 170, 170, 0.25);
            border-radius: 50%;
            top: 36%;
            position: unset;


            &::before {
                display: none;
            }
        }

        .slick-prev {
            right: 8%;
            left: unset;
        }
    }

    .project-slider {
        .swiper-slide {
            width: fit-content;
        }
    }

    a.btn-arrow {
        display: none;

        @media (max-width: 767px) {
            display: inline-block;
        }
    }
}

.projecten-slider-item {
    position: relative;
    max-width: 708px;
    width: 100%;
    display: block;


    &:hover, &:focus {
        .projecten-slider-name {
            left: 120px;

            &:before {
                opacity: 1;
            }
        }

        picture {
            &:after {
                opacity: 1;
            }
        }
    }

    picture {
        position: relative;
        display: block;
        line-height: 0;

        &:before {
            content: '';
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            background-image: url('/assets/templates/img/project-slider-overlay.svg');

        }

        &:after {
            content: '';
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            background-image: url('/assets/templates/img/project-slider-item-after-hover.svg');
            opacity: 0;
            transition: opacity ease-out 0.2s;
        }

        img {
            max-width: 100%;
            height: auto;
        }
    }

    .projecten-slider-name {
        color: var(--color-white);
        position: absolute;
        bottom: 60px;
        left: 60px;
        transition: all 0.2s ease-out;

        @media (max-width: 1199px) {
            bottom: 40px;
            left: 40px;
        }

        @media (max-width: 767px) {
            bottom: 20px;
            left: 20px;
        }

        h2 {
            font-size: 2rem;
            font-weight: 600;

            @media (max-width: 1199px) {
                font-size: 1.5rem;
            }
        }

        span {
            font-size: 1rem;
            font-weight: 400;
        }

        &:before {
            content: '';
            position: absolute;
            background-image: url('/assets/templates/img/project-slider-item-btn.svg');
            width: 68px;
            height: 68px;
            background-size: contain;
            background-position: center;
            background-repeat: no-repeat;
            left: -100px;
            top: 0;
            opacity: 0;
            transition: all 0.2s ease-out;

            @media (max-width: 1199px) {
                width: 50px;
                height: 50px;
            }
        }
    }
}

.content-banner {
    position: relative;
    padding: 258px 0 366px;
    background-color: var(--color-beek-red);
    overflow-x: clip;

    .container {
        z-index: 1;
        position: relative;
    }

    &::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: -47px;
        width: calc(100% + 85px);
        height: 280px;
        background: url('/assets/templates/img/contact-banner-btm.svg') no-repeat;
        background-size: cover;

        @media (max-width: 1600px) {
            /*background-size: unset;*/
        }
    }

    h1 {
        font-size: 2.5rem;
        color: var(--color-white);

        @media (min-width: 1024px) {
            font-size: 4rem;
            margin-top: 20px;
        }
    }

    picture {
        position: absolute;
        top: 0;
        right: 0;
        display: block;


        &:before {
            content: '';
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(86deg, rgba(215, 16, 25, 1) 0%, rgba(215, 16, 25, 0.5) 100%);
        }
    }

    .scrollTo-down {
        @media (min-width: 768px) {
            bottom: 16%;
            z-index: 1;
            right: 3%;
        }

        @media (max-width: 767px) {
            bottom: 16%;
            z-index: 1;
            right: 3%;
        }
    }
}

.montage-algemene-voorwaarden-content-par {
    max-width: 792px;
}


.rte {
    a {
        color: var(--color-beek-red);
        transition: all ease-out 0.2s;
        font-weight: 600;
        position: relative;

        &:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 1px;
            background-color: var(--color-beek-red);
            transform-origin: bottom left;
            transform: scaleX(0);
            transition: transform ease-out 0.2s;
        }


        &:hover, &:focus {
            color: var(--color-dark-red);

            &:after {
                transform-origin: bottom left;
                transform: scaleX(1);
            }
        }
    }
}

.template-offerte-aanvragen {
    @media (max-width: 1199px) {
        .breadcrumb {
            margin-bottom: 30px;
        }
    }
}

.day-slider-wrapper {
    /* overflow: hidden; */
    /* margin-top: 20px; */
    /* width: auto; */
    /* position: relative; */
    overflow-x: clip;
    width: 100%;
    position: relative;
    max-width: min(100%, 910px);
    /* z-index: 9999; */


    .swiper-slide {
        /* width: fit-content !important; */
        /*flex: 0 0 auto;*/
    }
}

.day-slider-sec {
    .text-section {
        h2 {
            line-height: 1.31;
            margin-bottom: 12px;
        }

        .buttons {
            display: flex;
            gap: 7px;
            position: relative;
            bottom: 42px;
            align-items: flex-end;
            justify-content: end;
            max-width: 426px;

            @media (max-width: 1199px) {
                bottom: 30px;
                left: -25px
            }

            @media (max-width: 767px) {
                bottom: 10px;
            }
        }

        .slick-prev, .slick-next {
            /*top: 39%;*/
            position: unset;

            &:hover, &:focus {
                background-color: var(--color-beek-red);
            }
        }

    }
}

.project-slider-block {

    @media (max-width: 1200px) {
        /*flex-direction: column;*/
        padding-block: 20px 0;
        align-items: unset;
        gap: 20px;

        .text-section {
            max-width: 300px;

            h2 {
                margin-bottom: 20px;
            }
        }
    }

    .buttons {
        display: flex;
        gap: 7px;
        position: relative;
        bottom: 97px;
        align-items: flex-end;
        justify-content: end;
        max-width: 450px;
        @media (max-width: 1200px) {
            bottom: 20px;
            left: -10px;
        }

        @media (max-width: 767px) {
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);

            button {
                transform: unset;
            }
        }
    }

    .text-section {
        @media (max-width: 767px) {
            position: unset;
        }
    }

    .slick-prev, .slick-next {
        /*top: 39%;*/
        position: unset;

        &:hover, &:focus {
            background-color: var(--color-beek-red);
        }

        i {
            font-size: 2rem;
        }
    }
}

section.img-fluid {
    @media (min-width: 1800px) {
        img {
            max-height: 842px;
            object-fit: cover;
            max-width: unset;
            width: 100%;
        }
    }
}

.horizontal-scroller {
    overflow-x: clip;
    position: relative;

    &::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 121%;
        background-color: #F7F7F7;
        /*background-color: red;*/
        z-index: -1;
        clip-path: polygon(0 0, 100% 93%, 100% 100%, 0 100%);
    }
}

.main-nav {
    @media (max-width: 1720px) {
        li, .sub-menu {
            padding: 0 9px;
        }
    }

    @media(max-width: 1200px) {
        .btn-arrow {
            padding-inline: 56px 20px;
        }

        .language-switch {
            padding: 13px 14px;
            display: flex;
        }
    }


    @media(min-width: 991px) and (max-width: 1170px) {
        .btn-arrow {
            display: none;
        }
    }
}
